@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}
.header {
  width: 100%;
  height: 100vh;
  background-image: url(images/image-1.png);
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  background-position: center;
  background-size: cover;
  padding: 0 7%;
  transition: background-image 1s ease-out;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
}
.logo {
  width: 320px;
  cursor: pointer;
}

nav ul {
  flex: 1;
  text-align: center;
}
nav ul li {
  display: inline-block;
  margin: 10px 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
}

nav .btn {
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 10px 30px;
  border-radius: 30px;
}

.info {
  width: 100%;
  padding: 0 7%;
  display: flex;
  align-items: center;
  color: #fff;
  position: fixed;
  bottom: 50px;
  left: 0;
}

.info div {
  margin: 0 20px;
}

.info div h2 {
  font-size: 44px;
  font-weight: 400px;
}

.info .line{
  flex: 1;
  background: #fff;
  height: 4px;
}
