@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 2000px;
}
body .sticky {
  height: 80px;
}
body .sticky .banner {
  opacity: 0.5;
}
body .sticky .logo {
  position: absolute;
  font-size: 2em;
  left: 50px;
  transform: translate(0, -50%);
}
body .sticky nav ul {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.75s;
  visibility: visible;
}
body header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0 50px;
  background: #000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: 1s;
}
body header .banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s;
}
body header a.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13vw;
  color: white;
  font-weight: 700;
  text-decoration: none;
  z-index: 1;
  transition: 1s;
}
body header nav {
  position: relative;
  display: flex;
  z-index: 1;
}
body header nav ul {
  position: relative;
  display: flex;
  transition: 0.25s;
  transform: translateX(100px);
  opacity: 0;
}
body header nav ul li {
  list-style: none;
}
body header nav ul li a {
  display: inline-block;
  padding: 10px 15px;
  font-size: 1.2em;
  text-decoration: none;
  color: white;
}
body header nav ul li a:hover {
  color: #ff275f;
}
body section {
  margin-top: 30vh;
  padding: 100px;
}
body section h2 {
  font-size: 3em;
}
body section p {
  font-size: 1.2em;
}

@media (max-width: 991px) {
  body header {
    padding: 40px;
  }
  body header nav ul {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  body header nav ul li a {
    font-size: 1.5em;
    padding: 5px 15px;
  }
  body header nav.active ul {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  body header.sticky .toggle {
    position: fixed;
    top: 15px;
    right: 40px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: url(/menu.png) #fff;
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
  }
  body header.sticky .active {
    background: url(/close.png) #fff;
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
  }
  body header.sticky .banner {
    opacity: 0;
  }
  body header.sticky .logo {
    left: 40px;
  }
  body section {
    padding: 40px;
  }
  body section h2 {
    font-size: 2em;
  }
}/*# sourceMappingURL=style.css.map */