*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  background: linear-gradient(270deg, #284297 0%, #3e63ae 48.56%, #3353a3 100%);
  overflow-x: hidden;
}

nav {
  width: 100%;
  position: relative;
}

.navwrap {
  width: 90%;
  max-width: 1624px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}

.navlist {
  list-style: none;
  display: flex;
  gap: 6.88rem;
}

.navitem {
  color: #fff;
  text-align: center;
  font-family: "futura-pt";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  transition: color 0.3s ease;
}

.navitem:hover {
  color: #ccc;
}

.navitem.pink {
  color: #ff69b4;
}

.navlogo {
  z-index: 1001;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(270deg, #284297 0%, #3e63ae 48.56%, #3353a3 100%);
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-overlay.active {
  right: 0;
}

.mobile-navlist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: center;
}

.mobile-navlist .navitem {
  font-size: 2rem;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.3s ease;
}

.mobile-overlay.active .mobile-navlist .navitem {
  opacity: 1;
  transform: translateX(0);
}

.mobile-overlay.active .mobile-navlist .navitem:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-overlay.active .mobile-navlist .navitem:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-overlay.active .mobile-navlist .navitem:nth-child(3) {
  transition-delay: 0.3s;
}

.hero {
  background: url(img/obrub.png);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 108rem;
  min-height: 76rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.herowrap {
  width: 90%;
  margin: 0 auto;
  max-width: 70rem;
}

.title {
  color: var(--White, #fff);
  text-align: center;
  font-family: "futura-pt";
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 3.75rem;
  max-width: 58rem;
  margin: 0 auto;
}

.subtitle {
  color: #fff;
  text-align: center;
  font-family: "futura-pt";
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 2.5rem;
  max-width: 58rem;
  margin: 0 auto;
  text-align: center;
}

.lead {
  color: #fff;
  font-family: "futura-pt";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 1.88rem;
  max-width: 58rem;
  margin: 0 auto;
  text-align: left;
}

.girl1 {
  position: absolute;
  left: -5rem;
  bottom: 0;
  max-width: 30rem;
}

.content {
  width: 90%;
  max-width: 1348px;
  margin: 0 auto;
  padding: 3rem 0;
  position: relative;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.rowr {
  flex-direction: row-reverse;
}

.conimg {
  max-width: 32rem;
  position: relative;
  z-index: 10;
}

.minititle {
  color: #fff;
  font-family: "futura-pt";
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 2.5rem;
}

.forma {
  width: 90%;
  max-width: 42rem;
  margin: 0 auto;
  position: relative;
}

.frmtitle {
  color: var(--White, #fff);
  font-family: "futura-pt";
  text-align: center;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 3.75rem;
}

.frmrow {
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
}

.labela {
  color: #fff;
  font-family: "futura-pt";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 1.25rem;
}

.textbox {
  border-radius: 1.25rem;
  background: #e187c3;
  padding: 1rem;
  outline: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "futura-pt";
}

.pravilaforma {
  color: var(--Pink---form, #fcccec);
  font-family: "futura-pt";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.pravilaforma a {
  color: var(--Pink---form, #fcccec);
  text-decoration: none;
  font-weight: 700;
}

.consent {
  color: var(--Pink---form, #fcccec);
  font-family: "futura-pt";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.0625rem; /* 106.25% */
  display: flex;
  gap: 0.5rem;
}

.checker {
  scale: 1.4;
  margin-left: 6px;
  background: none;
}

.checker {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: 1px solid #fcccec;
  border-radius: 3px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.rrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}

.checker:checked::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 9px;
  border: solid #fcccec;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent {
  cursor: pointer;
}

.pink {
  color: var(--Pink, #ff78ca);
}

.btn {
  border-radius: 1.25rem;
  background: var(--Pink, #ff78ca);
  color: var(--White, #fff);
  font-family: "futura-pt";
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border: none;
  outline: none;
  cursor: pointer;
  max-width: 16.25rem;
  display: block;
  margin: 2rem auto 0 auto;
  padding: 1rem 1.5rem;
}

.product {
  width: 90%;
  max-width: 1348px;
  margin: 0 auto;
  padding: 9rem 0 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.protitle {
  color: var(--Pink, #ff78ca);
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  font-family: "futura-pt";
}

.prosubtitle {
  color: #fff;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  font-family: "futura-pt";
  padding-bottom: 1rem;
}

.proimg {
  position: relative;
  z-index: 10;
}

.mx0 {
  margin: 0;
}

.footer {
  text-align: center;
  padding: 9rem 0;
}

.pero {
  position: absolute;
}

.pero0 {
  left: 0;
  top: 15%;
  aspect-ratio: 217.87/181.25;
}

.pero1 {
  left: 15%;
  top: 85%;
  z-index: 20;
}

.pero2 {
  left: 5%;
  top: 95%;
}

.pero3 {
  left: 90%;
  top: 55%;
}

.pero4 {
  left: 80%;
  top: 60%;
}

.pero5 {
  left: -50%;
  top: 30%;
}

.pero6 {
  left: -45%;
  top: 55%;
}

.pero7 {
  left: 110%;
  top: 70%;
  width: 135px;
}

.lenta1 {
  position: absolute;
  left: -25%;
  top: 10%;
  z-index: 0;
}

.lenta2 {
  position: absolute;
  right: -25%;
  bottom: -15%;
  z-index: 0;
}

@media screen and (max-width: 1460px) {
  html {
    font-size: 14px;
  }
  .herowrap {
    margin-top: -6rem;
  }
}

@media screen and (max-width: 1080px) {
  html {
    font-size: 14px;
  }
  .herowrap {
    margin-top: -16rem;
  }
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 12px;
  }
  .herowrap {
    margin-top: -16rem;
  }
  .girl1 {
    width: 30vw;
  }
}

@media screen and (max-width: 969px) {
  .flex {
    flex-direction: column;
  }
  .hero {
    background-size: 160%;
  }
  .herowrap {
    margin-top: 30%;
  }
  .subtitle {
    margin-top: 35%;
  }
  .girl1 {
    position: static;
    width: 80%;
  }
  .proimg,
  .footerlogo,
  .conimg {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .navlist {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navwrap {
    padding: 1.5rem 0;
  }
  .navlogo {
    max-height: 50px;
  }

  .pero0 {
    left: 50%;
    top: 0%;
    width: 100px;
  }

  .pero1 {
    left: 0%;
    top: 30%;
    width: 90px;
  }

  .pero2 {
    left: 15%;
    top: 29%;
    z-index: 20;
    width: 60px;
  }

  .pero3 {
    left: 0%;
    top: 155%;
    width: 60px;
  }

  .pero4 {
    left: 75%;
    top: 130%;
    width: 90px;
  }

  .pero5 {
    left: 50%;
    top: 30%;
    display: none;
  }

  .pero6 {
    left: 75%;
    top: 90%;
    width: 60px;
  }

  .pero7 {
    left: 80%;
    top: 95%;
    width: 95px;
  }

  .lenta1 {
    position: absolute;
    left: -25%;
    top: 50%;
    width: 150%;
    z-index: 0;
  }

  .lenta2 {
    position: absolute;
    right: -15%;
    width: 100%;
    bottom: -5%;
    z-index: 0;
  }
}

@media screen and (max-width: 480px) {
  .navwrap {
    padding: 1rem 0;
  }

  .mobile-navlist .navitem {
    font-size: 1.5rem;
  }
}
