@import url("./fonts/evolventa.css");

body,
html,
main {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Evolventa", sans-serif;
  color: #171717;
}

.container {
  max-width: 1260px;
  padding: 0 20px;
  margin: 0 auto;

  box-sizing: border-box;
}

input,
button {
  font-family: "Evolventa", sans-serif;
}

.mobile {
  display: none;
}

@media (max-width: 1280px) and (min-width: 1025px) {
  main {
    transform: scale(0.8);
    transform-origin: left top;
    width: 125%;
  }
}

@media (max-width: 1024px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: block;
  }
}

/************* HEADER ******************/

header {
  background: #dff7fc url(/static/images/header-background.svg) no-repeat center
    top;
  overflow: hidden;
  padding-top: 57px;
}

.header-menu {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  position: absolute;
  padding: 20px 0;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  /* background: linear-gradient(to bottom, transparent, red); */
}

.header-menu.fixed {
  padding: 10px 0;
  position: fixed;
  background: #dff7fc;
}

.header-menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-menu menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.header-menu a {
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}

.header-menu a:hover {
  text-decoration: underline;
}

.header-menu a.order-button {
  background: #a1dc00;
  display: flex;
  height: 32px;
  min-width: 94px;
  padding: 0 5px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

.header-menu a.order-button:hover {
  text-decoration: none;
}

.header-menu a.order-button:active {
  transform: translate(1px, 1px);
}

.header-info {
  display: flex;
  justify-content: space-between;

  padding: 55px 0 45px;
}

.header-info > div:first-child {
  display: flex;
  flex-direction: column;
}

.header-tags {
  display: flex;
  gap: 6px;
  margin: 0 0 6px 16px;
}

.header-tags > div {
  background: #61d5ed;
  transform: skew(-15deg);
}

.header-tags > div > div {
  transform: skew(15deg);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  padding: 4px 10px 0 10px;
}

.header-title {
  background: #fff;
  transform: skew(-15deg);
  padding: 5px 20px 5px 20px;
}

.header-title > div {
  transform: skew(15deg);

  font-weight: 700;
  font-size: 66.29px;
  line-height: 120%;
}

.header-reb {
  font-weight: 700;
  font-size: 131.67px;
  line-height: 120%;
}

.header-description {
  margin-top: -10px;
  color: #111827;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
}

.header-images {
  position: relative;
}

.header-images > img {
  position: absolute;
  right: -80px;
  bottom: -90px;
}

.header-form {
  background: #16543a;
}

.header-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 32px;
}

.header-features .item {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: #fff;

  background: url(/static/images/header-check.svg) no-repeat left center;
  padding-left: 47px;

  margin-top: 67px;
}

.header-cost {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 43px 0 52px;
}

.header-cost > div {
  display: flex;
  background: #32815f;
  transform: skew(-15deg);
  width: 100%;
  max-width: 560px;
}

.header-cost > div > div {
  transform: skew(15deg);
  height: 81px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  padding-left: 40px;
  align-items: flex-start;
}

.header-cost > div > div > img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(56px, -100px);
}

.header-cost > div > div > div:first-child {
  background: #fff;
  transform: skew(-15deg);
}

.header-cost > div > div > div:first-child > div {
  font-weight: 700;
  font-size: 15.99px;
  line-height: 26.65px;
  color: #fff;
  transform: skew(15deg);
  color: #16543a;
  padding: 0 10px;
}

.header-cost > div > div > div:nth-child(2) {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  color: #fff;
}

/* .header-cost > div:last-child > div:first-child {
  display: flex;
}

.header-cost > div:last-child > div:first-child > div {
  transform: skew(15deg);
  height: 81px;
  position: relative;
}

.header-cost > div:last-child > div:first-child img {
  position: absolute;
  right: -20px;
  top: center;
} */

.header-cost a {
  font-family: "Evolventa", sans-serif;
  color: #171717;
  border-radius: 8px;
  background-color: #a1dc00;
  border: none;
  outline: none;
  width: 410px;
  display: flex;
  align-items: center;
  justify-content: center;

  height: 56px;
  padding: 0px 8px;
  margin: 0;

  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-decoration: none;
}

.header-cost a:active {
  transform: translate(1px, 1px);
}

/*~~~~~~~~~~ HEADER-MOBILE ~~~~~~~~~~~~~~*/
header.mobile {
  background: #dff7fc;
  overflow: hidden;
  padding-top: 0;
}

.header-top-mobile {
  position: relative;
}

.header-top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
  padding: 0 20px;
}

.header-menu-mobile {
  z-index: 10000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #dff7fc;
  display: none;
}

.header-menu-mobile.shown {
  display: block;
}

.header-menu-mobile > menu {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  list-style: none;
}

.header-menu-mobile > menu a {
  color: #111827;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-decoration: none;
}

.header-info-mobile {
  display: flex;
  padding: 0 0 35px;
}

.header-tags.mobile {
  gap: 3px;
  margin: 0 0 8px 11px;
}

.header-tags.mobile > div > div {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  padding: 4px 10px;
}

.header-title.mobile {
  justify-self: flex-start;
  padding: 5px 10px 5px 10px;
}

.header-title.mobile > div {
  font-weight: 700;
  font-size: 28.04px;
  line-height: 130%;
  letter-spacing: 0%;
}

.header-reb.mobile {
  font-weight: 700;
  font-size: 56.18px;
  line-height: 130%;
}

.header-description.mobile {
  font-weight: 400;
  font-size: 14.95px;
  line-height: 120%;
}

.header-images.mobile > img {
  right: auto;
  left: 10px;
  bottom: -55px;
}

.header-form.mobile {
  background: #16543a url(/static/images/header-features-mobile.png) no-repeat
    left bottom;
  background-size: 100% 350px;
}

.header-features.mobile {
  grid-template-columns: 1fr;
  gap: 16px;
  padding-top: 20px;
}

.header-features.mobile .item {
  background: url(/static/images/header-check-mobile.svg) no-repeat left center;
  padding-left: 47px;

  margin-top: 0;
}

.header-buy-mobile {
  margin-top: 20px;

  color: #171717;
  border-radius: 8px;
  background-color: #a1dc00;
  border: none;
  outline: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  height: 56px;

  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-decoration: none;
}

.header-cost-mobile {
  display: flex;
  padding: 52px 0;
  position: relative;
}

.header-cost-mobile > div:nth-child(1) {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.header-cost-mobile > div:nth-child(1) > div:nth-child(1) {
  background: #fff;
  transform: skew(-15deg);
  margin: 0 10px;  
  box-sizing: border-box;
}

.header-cost-mobile > div:nth-child(1) > div:nth-child(1) > div {
  font-weight: 700;
  font-size: 14px;
  line-height: 110%;
  color: #16543a;
  transform: skew(15deg);
  padding: 5px 10px;  
}

.header-cost-mobile > div:nth-child(1) > div:nth-child(2) {
  font-weight: 700;
  font-size: 26px;
  line-height: 38.68px;
  color: #ffffff;
}

.header-cost-mobile > div:nth-child(2) {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(15px, -90px);
}

.header-cost-mobile > div:nth-child(2) > img {
  width: 158px;
}

/* .header-cost-mobile > div:first-child {
  display: flex;
  flex-direction: column;
  color: #fff;
  align-items: flex-start;
}

.header-cost-mobile > div > div:nth-child(1) {
  margin-top: 46px;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
}

.header-cost-mobile > div > div:nth-child(2) {
  font-weight: 400;
  font-size: 15.99px;
  line-height: 100%;
  padding-top: 6px;
}

.header-cost-mobile > div > div:nth-child(3) {
  font-weight: 700;
  font-size: 62.32px;
  line-height: 120%;
  margin-top: 18px;
}

.header-cost-mobile > div > div:nth-child(4) {
  font-weight: 400;
  font-size: 27.01px;
  line-height: 31.76px;
  color: #c0eef8;
  position: relative;
}

.header-cost-mobile > div > div:nth-child(4)::after {
  content: "";
  border: solid 1px #c0eef8;
  position: absolute;
  width: 106%;
  left: -3%;
  top: calc(50% - 3px);
}

.header-cost-mobile > div:last-child {
  position: relative;
}

.header-cost-mobile > div:last-child > img {
  position: absolute;
  bottom: -70px;
  left: -30px;
} */

/******************* PARENTS ****************/
.parents {
  background: #dff7fc url(/static/images/parents-background.svg) no-repeat
    center top;
  height: 657px;
}

.parents-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.parents-title {
  margin-top: 75px;
  transform: skew(-15deg);
  background: #fff;
}

.parents-title > div {
  transform: skew(15deg);

  font-weight: 700;
  font-size: 70px;
  line-height: 130%;
  padding: 0 20px;
}

.parents-wrapper ul {
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;

  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 40px;

  margin-top: 61px;
}

.parents-wrapper ul > li {
  display: grid;
  grid-template-columns: 87px 1fr;
  gap: 25px;
  align-items: center;
}

.parents-wrapper ul > li > div:first-child {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*~~~~~~~~~~~~ PARENTS-MOBILE ~~~~~~~~~~~*/
@media (max-width: 1024px) {
  .parents {
    background-image: url(/static/images/parents-background-mobile.svg);
    background-position: center bottom;
    height: auto;
    padding-bottom: 250px;
  }

  .parents-title {
    margin: 40px 16px;
  }

  .parents-title > div {
    font-size: 32px;
    text-align: center;
  }

  .parents-wrapper ul {
    font-size: 18px;
    gap: 25px;
    margin-top: 31px;
  }

  .parents-wrapper ul > li:nth-child(1) img {
    height: 72px;
  }

  .parents-wrapper ul > li:nth-child(2) img {
    height: 73px;
  }

  .parents-wrapper ul > li:nth-child(2) img {
    height: 76px;
  }

  .parents-wrapper ul > li {
    display: grid;
    grid-template-columns: 67px 1fr;
    gap: 25px;
    align-items: center;
  }

  .parents-wrapper ul > li br {
    display: none;
  }
}

/***************** ABOUT ******************/
.about-wrapper {
  display: flex;
  justify-content: space-between;
}

.about-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 130%;

  margin-top: 62px;
}

.about-subititle {
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
  padding: 30px 0 20px;
}

.about-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  padding-bottom: 26px;
}

.about-wrapper > div:nth-child(2) {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.about-directions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-directions > div {
  background: #dff7fc no-repeat;
  border-radius: 20px;
  height: 280px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.about-directions > div > div:first-child > div:first-child {
  font-weight: 700;
  font-size: 80px;
  line-height: 120%;
}

.about-directions > div > div:first-child > div:nth-child(2) {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

.about-directions > div:first-child {
  background-image: url(/static/images/about-roblox.png);
  background-position: left bottom;
  align-items: flex-end;
}

.about-directions > div a {
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #5061ec;
  cursor: pointer;
}

.about-directions > div:last-child {
  background-image: url(/static/images/about-design.png);
  background-position: right bottom;
}

/*~~~~~~~~~~~~MOBILE_ABOUT~~~~~~~~~~~~*/
@media (max-width: 1024px) {
  .about-title {
    font-size: 32px;
    margin-top: 40px;
  }

  .about-subititle {
    font-size: 16px;
    padding: 10px 0 10px;
  }

  .about-description {
    font-size: 14px;
    padding-bottom: 14px;
  }

  .about-wrapper > div:last-child {
    display: none;
  }

  .about-directions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-directions > div {
    background: #dff7fc no-repeat;
    border-radius: 12px;
    height: 158px;
    padding: 19px;
  }

  .about-directions > div > div:first-child > div:first-child {
    font-size: 42px;
  }

  .about-directions > div > div:first-child > div:nth-child(2) {
    font-size: 12px;
  }

  .about-directions > div a {
    font-size: 12px;
  }

  .about-directions > div:first-child {
    background-image: url(/static/images/about-roblox-mobile.png);
    background-position: right bottom;
    align-items: flex-start;
  }

  .about-directions > div:last-child {
    background-image: url(/static/images/about-design-mobile.png);
  }
}

/**************** SHIFT **************/
.shift {
  margin: 120px;
}

.shift-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  position: relative;
}

.shift-title > div {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translate(-100%, 0);
}

.shift-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  text-align: center;
}

.shift-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 912px;
  margin-top: 10px;
}

.shift-item {
  height: 264px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  /* padding: 20px; */
  /* display: flex;
  align-items: flex-end; */
}

.shift-item > div {
  position: absolute;
  width: 160px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  left: 20px;
  bottom: 20px;
}

/*~~~~~~~~~~SHIFT-MOBILE~~~~~~~~~~~~~~*/
@media (max-width: 1024px) {
  .shift {
    margin: 45px 0 32px 0;
    overflow: hidden;
  }
  .shift-title {
    font-size: 32px;
  }

  .shift-title > div {
    display: none;
  }

  .shift-description {
    font-size: 14px;
    text-align: left;
  }

  .shift-swiper {
    width: 100%;
    &.swiper {
      overflow: visible;
    }

    & .shift-item {
      width: 100%;
      height: auto;
      border-radius: 0;
    }
    & .shift-item > video {
      width: 100%;
      height: auto;
      aspect-ratio: 440/264;
      object-fit: fill;
      border-radius: 20px;
    }
  }
}

/********************* COMMAND *********************/
.command {
  background: #dff7fc;
  overflow: hidden;
}

.command-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 467px;
}

.command-title {
  background: #fff;
  transform: skew(-15deg);
  height: 75px;
  display: flex;
  align-items: center;
  margin-left: -20px;
}

.command-title > div {
  transform: skew(15deg);
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  padding: 0 20px;
  white-space: nowrap;
}

.command-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  margin-top: 20px;
}

.command-wrapper > div:last-child {
  margin-right: -40px;
}

/*~~~~~~~~~COMMAND-MOBILE ~~~~~~~~*/
@media (max-width: 1024px) {
  .command-wrapper {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 43px 0 34px 0;
  }

  .command-wrapper > div:last-child {
    display: flex;
    justify-content: center;
  }

  .command-wrapper > div:last-child > img {
    max-width: 500px;
    width: 100%;
  }

  .command-title-mobile {
    font-weight: 700;
    font-size: 24px;
    line-height: 115%;
    letter-spacing: 0%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .command-title-mobile > div {
    background: #fff;
    transform: skew(-10deg);
    height: 40px;
    padding: 0 10px 0 15px;
    display: flex;
    align-items: center;
  }

  .command-title-mobile > div:first-child {
    margin-left: 5px;
    padding-left: 10px;
  }

  .command-title-mobile > div > div {
    transform: skew(10deg);
  }

  .command-description {
    font-size: 14px;
    margin-top: 10px;
  }
}

/******** PRESENTATION **************/
.presentation-wrapper {
  display: flex;
  align-items: center;
}

.presentation-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
}

.presentation-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  padding-top: 20px;
}

/* ~~~~~~~~~~~~ PRESENTATION_MOBILE ~~~~~~~~~*/

@media (max-width: 1024px) {
  .presentation-wrapper {
    flex-direction: column-reverse;
    padding: 40px 0 32px 0;
    width: 100%;
    align-items: flex-start;
  }

  .presentation-title {
    font-size: 25px;
  }

  .presentation-description {
    font-size: 14px;
    padding-top: 10px;
  }

  .presentation-wrapper > div:first-child {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    width: 100%;
  }

  .presentation-wrapper > div:first-child > img {
    width: 100%;
    max-width: 500px;
  }
}
/************************ RESERVATION *******************/
.reservation {
  background: #dff7fc;
  overflow-x: clip;
}

.reservation-top {
  display: flex;
  padding: 60px 0 30px;
}

.reservation-title {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 52.1px;
  line-height: 100%;
}

.reservation-title > div {
  background: #fff;
  transform: skew(-15deg);
  margin-left: -20px;
  white-space: nowrap;
  margin-top: 10px;
}

.reservation-title > div > div {
  display: flex;
  align-items: center;
  height: 76px;

  padding: 0 20px;
  transform: skew(15deg);
}

.reservation-top > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.reservation-button {
  background: #f42468;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-decoration: none;
  color: #fff;
  width: 343px;
  height: 55px;
  border-radius: 8px;
}

.reservation-images {
  position: relative;
  width: 100%;
}

.reservation-images > img {
  position: absolute;
}

.reservation-images > img:first-child {
  bottom: -50px;
  right: -220px;
}

.reservation-images > img:last-child {
  bottom: -90px;
  left: 100px;
}

.reservation-grass {
  background: #16543a;
  height: 90px;
  display: flex;
  align-items: center;
}

.reservation-form > div {
  width: 100%;
}

.reservation-form > div > div:first-child {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  padding-bottom: 26px;
}

.reservation-form form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 43px;
}

.reservation-form input {
  font-family: "Evolventa", sans-serif;
  color: #171717;
  width: 100%;
  border-radius: 8px;
  border: none;
  outline: none;
  height: 56px;
  padding: 0px 8px;
  margin: 0;

  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.reservation-form button {
  font-family: "Evolventa", sans-serif;
  color: #171717;
  width: 100%;
  border-radius: 8px;
  background-color: #a1dc00;
  border: none;
  outline: none;

  height: 56px;
  padding: 0px 8px;
  margin: 0;

  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
}

.reservation-form button:active {
  transform: translate(1px, 1px);
}

.reservation-form input::placeholder {
  color: #b2b2b2;
}

.reservation-politic {
  padding: 17px 0 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 115%;
  color: rgba(255, 255, 255, 0.5);
}

.reservation-politic > a {
  color: rgba(255, 255, 255, 0.6);
}

/* ~~~~~~~~~~~~ RESERVATION_MOBILE ~~~~~~~~~*/

@media (max-width: 1024px) {
  .reservation {
    /* overflow-x: auto; */
  }

  .reservation-top {
    padding: 35px 0 0px;
    flex-direction: column;
  }

  .reservation-title {
    font-size: 32px;
  }
  .reservation-title > div {
    white-space: normal;
    margin-top: 0;
  }

  .reservation-title > div > div {
    height: auto;
    padding: 4px 20px;
  }

  .reservation-images {
    height: 87px;
  }

  .reservation-images > img:first-child {
    height: 142px;
    left: auto;
    bottom: -42px;
    right: -60px;
  }

  .reservation-images > img:last-child {
    height: 121px;
    left: auto;
    right: 160px;
    bottom: -62px;
  }

  .reservation-grass {
    height: 208px;
    box-sizing: border-box;
    align-items: flex-end;
    padding-bottom: 35px;
    justify-content: center;
  }

  .reservation-grass-wrapper {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    padding: 0 20px;
  }

  .reservation-button {
    background: #a1dc00;
    color: #171717;
    width: 100%;
    max-width: 500px;
  }
}

/*************** HOWTO *******************/
.howto {
  overflow: hidden;
}

.howto-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 114.99999999999999%;
  margin-top: 43px;
}

.howto-wrapper {
  display: grid;
  grid-template-columns: 1fr 416px;
  gap: 37px;
}

.howto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 69px 0 43px 0;
  gap: 40px;
}

.howto-grid > .item > .title {
  background: #c0eef8;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  height: 33px;
  display: flex;
  align-items: center;
  transform: skew(-15deg);
  width: 216px;
  margin-left: 66px;
}

.howto-grid > .item > .title > div {
  transform: skew(15deg);
  position: relative;
  padding-left: 40px;
}
.howto-grid > .item > .title > div > img {
  position: absolute;
  left: 0;
  top: 16px;
  transform: translate(calc(-100% + 20px), -50%);
}

.howto-grid > .item > .description {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  padding-top: 14px;
  padding-left: 106px;
}

.howto-grid > .item:nth-child(4) > .title > div > img {
  left: 14px;
  top: 10px;
}

.howto-video {
  display: flex;
  align-items: center;
}

.howto-video > video {
  width: 100%;
  border-radius: 20px;
}

/* ~~~~~~~~~~~~ RESERVATION_MOBILE ~~~~~~~~~*/

@media (max-width: 1024px) {
  .howto-title {
    font-size: 32px;
    margin-top: 40px;
  }

  .howto-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .howto-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin: 69px 0 43px 0;
    gap: 30px;
  }

  .howto-grid > .item:nth-child(2) > .title {
    margin-left: 56px;
    width: 226px;
  }

  .howto-grid > .item:nth-child(4) > .title {
    margin-left: 46px;
    width: 236px;
  }

  .howto-video > video {
    max-width: 500px;
  }
}

/****************** SCHEDULE *****************/
.schedule {
  padding: 37px 0 78px;
  overflow: hidden;
}

.schedule-block {
  display: flex;
  flex-direction: column;
  gap: 47px;
  width: 976px;
  padding: 56px 51px;
  box-sizing: border-box;
  border-radius: 20px;
  box-shadow: 10px 10px 30px 0px #0000001a;

  position: relative;
}

.schedule-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
}

.schedule-grid {
  display: grid;
  grid-template-columns: auto 40px 1fr;
  gap: 20px 23px;
}

.schedule-grid > .time {
  font-weight: 700;
  font-size: 32px;
  line-height: 140%;
  text-align: right;
}

.schedule-grid > .icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.schedule-grid > .label {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  display: flex;
  align-items: center;
}

.schedule-grid > .bold {
  font-weight: 700;
}

.schedule-img {
  position: absolute;
  right: -300px;
  top: 30px;
}

/* ~~~~~~~~~~~~ SCHEDULE_MOBILE ~~~~~~~~~*/

@media (max-width: 1024px) {
  .schedule {
    padding: 133px 0 47px 0;
  }

  .schedule-block {
    width: auto;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    gap: 25px;
  }

  .schedule-title {
    font-size: 32px;
  }

  .schedule-grid > .time {
    font-size: 18px;
  }

  .schedule-grid > .icon {
    align-items: flex-start;
  }
  .schedule-grid > .icon > img {
    height: 18px;
  }

  .schedule-grid {
    gap: 23px 6px;
    grid-template-columns: auto 30px 1fr;
  }

  .schedule-grid > .label {
    font-size: 14px;
    align-items: flex-start;
  }

  .schedule-img {
    right: auto;
    top: -123px;
    left: 109px;
  }
}

/**************** SHIFT-SCHEDULE ************/
.shiftschedule {
  background: #dff7fc url(/static/images/shiftschedule-background.svg) no-repeat
    center top;
  padding: 60px 0 94px;
}

.shiftschedule-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
}

.shiftschedule-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  padding: 20px 0 44px;
}

.shiftschedule-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  border: solid 2px #fff;
  border-radius: 12px;
  background-color: #fff;
}

.shiftschedule-grid > div {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shiftschedule-grid > .item-head {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: #16543a;
}

.shiftschedule-grid > .item-dates {
  background-color: #effbfe;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
}

/* ~~~~~~~~~~~~ SHIFTSCHEDULE_MOBILE ~~~~~~~~~*/

@media (max-width: 1024px) {
  .shiftschedule {
    background: #dff7fc;
    padding: 40px 0;
  }

  .shiftschedule-title {
    font-size: 32px;
  }

  .shiftschedule-description {
    font-size: 14px;
    padding: 12px 0 20px;
  }

  .shiftschedule-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row dense;
  }

  .shiftschedule-grid > .item-dates {
    justify-content: flex-start;
    padding-left: 12px;
    box-sizing: border-box;
  }

  .shiftschedule-grid > div {
    grid-column: 2;
  }

  .shiftschedule-grid > div:nth-child(-n + 6) {
    grid-column: 1;
  }
}

/************* EXAMPLES ****************/
.examples {
  padding: 60px 0;
  overflow: hidden;
}

.examples-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 110%;
  position: relative;
  text-align: center;
}

.examples-title > img {
  position: absolute;
  top: 50%;
}

.examples-tabs {
  display: flex;
  justify-content: center;
  margin-top: 35px;
  gap: 32px;
}

.examples-tabs > a {
  width: 240px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2ffcf;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  cursor: pointer;
}

.examples-tabs > a.selected {
  background: #a1dc00;
}

.examples-video {
  margin: 22px 0 60px 0;
  justify-content: center;
  display: none;
  position: relative;
}

.examples-video > div > video {
  width: 820px;
  border-radius: 20px;
}

.examples-video > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.examples-video.shown {
  display: flex;
  cursor: pointer;
}

/* ~~~~~~~~~~~~ EXAMPPLES_MOBILE ~~~~~~~~~*/

@media (max-width: 1024px) {
  .examples {
    padding: 27px 0 57px;
  }

  .examples-title {
    font-size: 32px;
    text-align: left;
  }

  .examples-title > img {
    position: absolute;
    top: -30px;
    left: 200px;
  }

  .examples-tabs {
    gap: 8px;
  }

  .examples-tabs > a {
    width: 100%;
    font-size: 14px;
    height: 36px;
  }

  .examples-video {
    margin: 10px 0 0;
    justify-content: center;
    display: none;
    position: relative;
  }

  .examples-video > div > video {
    width: 100%;
    border-radius: 20px;
  }
}

/**************** REVIEWS *******************/
.reviews {
  margin: 0px 0 80px 0;
}

.reviews-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2.5%;
  text-align: center;
  padding-bottom: 60px;
}

.reviews-videos {
  display: flex;
}

/* .review-item-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
} */

.reviews .swiper-slide {
  width: 384px;
}

.reviews-description {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reviews-description > div:first-child {
  padding-top: 22px;
  font-weight: 700;
  font-size: 28px;
  line-height: 115%;
}
.reviews-description > div:last-child {
  font-weight: 400;
  font-size: 16px;
  line-height: 115%;
  color: #8b8b8b;
}

.reviews-item {
  width: 384px;
  height: 384px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
.reviews-item img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ~~~~~~~~~~~~ REVIEWS_MOBILE ~~~~~~~~~*/

@media (max-width: 1024px) {
  .reviews {
    margin: 0px 0 34px 0;
  }

  .reviews-title {
    font-size: 32px;
    line-height: 130%;
    padding-bottom: 20px;
  }

  .reviews .swiper-slide {
    width: 220px;
  }

  .reviews-item {
    width: 220px;
    height: 220px;
  }

  .reviews-item video {
    width: 220px;
    height: 220px;
  }

  .reviews-description > div:first-child {
    padding-top: 20px;
    font-size: 24px;
  }
  .reviews-description > div:last-child {
    font-size: 13px;
    padding-top: 8px;
  }
}

/******************* ORDER *******************/
.order {
  background: #dff7fc url(/static/images/order-grass.svg) repeat-x bottom;
  padding: 84px 0 165px 0;
  overflow: hidden;
}

.order-wrapper {
  display: flex;
}

.order-left {
  position: relative;
}

.order-title {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 40px;
}

.order-title > div:first-child {
  font-weight: 700;
  font-size: 80px;
  line-height: 70px;
}

.order-title > div:first-child > div {
  font-weight: 700;
  font-size: 49px;
  line-height: 58px;
  letter-spacing: 0%;
}

.order-title > div:last-child > div:first-child {
  font-weight: 400;
  font-size: 48px;
  line-height: 56.45px;
  position: relative;
  color: #8b8b8b;
}

.order-title > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* .order-title > div:last-child > div:first-child::after {
  content: "";
  position: absolute;
  border-bottom: solid 3px #8b8b8b;
  width: 106%;
  left: -3%;
  top: calc(50% - 8px);
} */

.order-title > div:last-child > div:last-child {
  transform: skew(-15deg);
  background: #a1dc00;
}

.order-title > div:last-child > div:last-child > div {
  font-weight: 700;
  font-size: 59.66px;
  line-height: 120%;
  transform: skew(15deg);
  height: 85px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.order-form {
  display: flex;
  flex-direction: column;
  background: #fff;
  width: 788px;
  padding: 45px 50px;
  box-sizing: border-box;
  border-radius: 40px;
  margin-top: 33px;
}

.order-form .ttl {
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  padding-bottom: 30px;
}

.order-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-form form > input {
  border: solid #f0f0f0 2px;
  border-radius: 10px;
  height: 67px;
  padding: 0 20px;
  margin: 0;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 19.2px;
  line-height: 28.8px;
}

.order-form form > button {
  margin-top: 47px;
  background: #f42468;
  border: none;
  border-radius: 10px;
  height: 67px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;

  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
}

.order-politics {
  font-weight: 400;
  font-size: 15.6px;
  line-height: 18px;
  color: #8b8b8b;
  padding-top: 14px;
}

.order-politics > a {
  color: #8b8b8b;
}

.order-clouds {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(calc(100% + 22px), -40px);
}

.order-clouds > div {
  position: relative;
}

.order-clouds > div > div {
  position: absolute;
  left: 120px;
  top: 110px;
  display: flex;
  align-items: center;
  transform: rotate(-5deg);
}
.order-clouds > div > div > div:first-child > div:first-child {
  font-weight: 700;
  font-size: 20.96px;
  line-height: 120%;
}

.order-clouds > div > div > div:first-child > div:last-child {
  font-weight: 700;
  font-size: 90.05px;
  line-height: 120%;
  color: #f42468;
}

.order-clouds > div > div > div:last-child {
  color: #f42468;
  font-weight: 700;
  font-size: 136.91px;
  line-height: 100%;
}

.order-fire {
  position: absolute;
  right: -420px;
  bottom: -150px;
}

/* ~~~~~~~~~~~~ REVIEWS_MOBILE ~~~~~~~~~*/

@media (max-width: 1024px) {
  .order {
    background: #dff7fc url("/static/images/order-clouds-mobile.svg") no-repeat
      center top;
    padding: 0;
    overflow: visible;
    overflow-x: clip;
  }

  .order > div {
    padding: 43px 0 126px 0;
    background: transparent url(/static/images/order-grass.svg) repeat-x bottom;
  }

  .order-title {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .order-wrapper {
    display: block;
  }

  .order-title > div:first-child {
    text-align: center;
    font-size: 59px;
    line-height: 38px;
  }

  .order-title > div:first-child > div {
    font-size: 32px;
    line-height: 40px;
  }

  .order-title > div:last-child {
    align-items: center;
    text-align: center;
    flex-direction: column-reverse;
    gap: 8px;
  }

  .order-title > div:last-child > div:first-child {
    font-size: 30px;
    line-height: 35.43px;
  }

  .order-title > div:last-child > div:first-child::after {
    top: calc(50% - 4px);
  }

  .order-clouds-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 66px;
  }

  .order-clouds-mobile > div {
    display: flex;
  }
  .order-clouds-mobile > div > div:first-child {
    display: flex;
    flex-direction: column;
  }
  .order-clouds-mobile > div > div:first-child > div:first-child {
    font-size: 12.7px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
  }
  .order-clouds-mobile > div > div:first-child > div:last-child {
    font-weight: 700;
    font-size: 54.58px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #f42468;
  }

  .order-clouds-mobile > div > div:last-child {
    font-weight: 700;
    font-size: 88.61px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #f42468;
    display: flex;
    align-items: center;
  }

  .order-form {
    width: 100%;
    padding: 17px 24px 24px;
  }

  .order-form .ttl {
    font-size: 27px;
    line-height: 110%;
    padding-bottom: 10px;
  }

  .order-form form {
    gap: 8px;
  }

  .order-form form > input {
    height: 48px;
    border-radius: 8px;
    padding: 0 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }

  .order-form form > button {
    margin-top: 20px;
    border-radius: 8px;
    height: 48px;
    font-weight: 700;
    font-size: 18px;
    line-height: 115%;
    width: calc(100% - 87px);
  }

  .order-politics {
    font-weight: 400;
    font-size: 10px;
    line-height: 130%;
    width: calc(100% - 87px);
  }

  .order-fire > img {
    width: 265px;
  }

  .order-fire {
    right: -100px;
    bottom: -177px;
  }
}

/***************** FAQ *******************/
.faq {
  padding: 45px 0;
}

.faq_title {
  font-size: 48px;
  font-weight: 700;
  line-height: 52.8px;
}

.faq_wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.faq_wrapper > label {
  border-top: solid 1px #f0f0f0;
  padding: 20px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.faq_wrapper > label:last-child {
  border-bottom: solid 1px #f0f0f0;
}

.faq_question {
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  position: relative;
}

.faq_question::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: url("/static/images/faq-openclose.svg") no-repeat right top;
  transition: all 0.35s;
}

.faq_answer {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  transition: all 0.35s;

  max-height: 0px;
  overflow: hidden;
  box-sizing: content-box;
}

.faq_wrapper > label > input {
  position: absolute;
  opacity: 0;
}

.faq_wrapper > label > input:checked + .faq_question + .faq_answer {
  max-height: 25rem;
}

.faq_wrapper > label > input:checked + .faq_question::after {
  transform: rotate(180deg);
}

/* ~~~~~~~~~~~~ FAQ_MOBILE ~~~~~~~~~*/

@media (max-width: 1024px) {
  .faq_title {
    font-size: 38px;
    font-weight: 700;
    line-height: 43.7px;
    letter-spacing: -0.025em;
  }
  .faq_question,
  .faq_question a {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
  }

  .faq_answer {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
  }
}

/*************** CONTACT *************/
.contact {
  margin: 40px 0 80px 0;
}
.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.contact-wrapper > div:first-child {
  font-weight: 700;
  font-size: 50px;
  line-height: 110%;
}

.contact-wrapper > div:last-child {
  background: #16543a;
  transform: skew(-15deg);
}

.contact-wrapper > div:last-child > div {
  font-weight: 700;
  font-size: 50.27px;
  line-height: 115%;
  color: #fff;
  transform: skew(15deg);
  padding: 0 20px;
  height: 102px;
  display: flex;
  align-items: center;
}

/* ~~~~~~~~~~~~ CONTACT_MOBILE ~~~~~~~~~*/

@media (max-width: 1024px) {
  .contact {
    margin: 38px 0 30px 0;
    overflow: hidden;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-wrapper > div:first-child {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    text-align: center;
  }

  .contact-wrapper > div:last-child > div {
    font-weight: 700;
    font-size: 35px;
    line-height: 130%;
    letter-spacing: 0%;
    min-height: 70px;
    text-align: center;
    padding: 0 10px;
  }
}

/************ FOOTER  *****************/
footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  margin: 150px 0 50px 0;
  gap: 90px;
}

.footer_logo {
}

.footer_logo img {
  width: 212px;
}

.footer_first {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer_first > div {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer_first a {
  text-decoration: none;
  color: #171717;
  font-size: 13px;
  font-weight: 400;
  line-height: 14.95px;

  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.footer_first a:hover {
  text-decoration: underline;
}

.footer_second {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
}

.footer_second a {
  font-size: 13px;
  font-weight: 700;
  line-height: 14.95px;

  text-underline-position: from-font;
  text-decoration-skip-ink: none;

  color: #171717;
  text-decoration: none;
}

.footer_second a:hover {
  text-decoration: underline;
}

.footer_social {
  display: flex;
  gap: 13px;
}

.footer_last {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer_last > div {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #171717;
}

.footer_last > div > a {
  font-weight: 700;
  text-decoration: none;
  color: #171717;
}

.footer_copyright {
  grid-area: f;
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;

  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #171717;
  opacity: 0.5;
}

/* ~~~~~~~footer - mobile ~~~~~~~~~~~~*/
@media (max-width: 1024px) {
  footer {
    width: 100%;
    grid-template-columns: 1fr auto;
    margin: 50px 0 50px 0;
    gap: 30px;
  }
  .footer_logo img {
    width: 128px;
  }
  .footer_social {
    display: none;
  }
  .footer_second {
    justify-content: space-between;
  }
  .footer_second > a {
    font-size: 10px;
    font-weight: 700;
    line-height: 11.5px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .footer_last > div {
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .footer_last > .footer_social {
    display: flex;
    margin-top: 20px;
  }

  .footer_first a {
    font-size: 10px;
    font-weight: 400;
    line-height: 11.5px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .footer_first {
    position: relative;
  }

  .footer_copyright {
    font-size: 9px;
    font-weight: 400;
    line-height: 11.7px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }
}

/**************** MODAL *****************/
.modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  z-index: 1000;
}

.modal-container {
  background-color: #ffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 10px 10px 30px 0px #0000001a;
  max-width: 1200px;
  max-height: 100vh;
  width: 100%;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.modal-container .title {
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-container .title > a {
  width: 40px;
  height: 40px;
}
.modal-container .title > a > img {
  width: 40px;
  cursor: pointer;
}

.modal-video > video {
  width: 100%;
}

@media (max-width: 1024px) {
  .modal-container .title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .modal-container .title > a {
    width: 20px;
    height: 20px;
  }
  .modal-container .title > a > img {
    width: 20px;
    cursor: pointer;
  }

  .modal-container {
    padding: 16px;
  }
}

.success {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100vh;

  background: url(/static/images/success-glasses.svg) no-repeat right bottom
    42px;
}

.success-top {
  padding: 20px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.success-top > div:last-child {
  display: flex;
  gap: 10px;
}

.success-top > div:last-child > a {
  text-decoration: none;
}

.success > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.success > div:nth-child(2) > div:nth-child(2) {
  font-weight: 700;
  font-size: 70px;
  line-height: 115%;
  letter-spacing: 0%;
}

.success > div:nth-child(2) > div:nth-child(3) {
  font-weight: 400;
  font-size: 30px;
  line-height: 125%;
  letter-spacing: 0%;
  padding: 20px 0 40px;
  text-align: center;
}

.success > div:nth-child(2) > div:nth-child(4) {
  font-weight: 400;
  font-size: 24px;
  line-height: 145%;
  letter-spacing: 0%;
  text-align: center;
  padding-bottom: 12px;
}

.success > div:nth-child(2) > div:nth-child(5) {
  background-color: #dff7fc;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skew(-15deg);
  min-width: 320px;
}

.success > div:nth-child(2) > div:nth-child(5) > div {
  transform: skew(15deg);
  font-weight: 700;
  font-size: 30px;
  line-height: 145%;
}

.success > div:nth-child(2) > div:nth-child(6) {
  padding: 46px 0 60px;
}

.success > div:nth-child(2) > div:nth-child(6) > a {
  min-width: 360px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a1dc00;
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
  color: #171717;
  text-decoration: none;
  border-radius: 8px;
}

.success > div:nth-child(2) > div:nth-child(7) {
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  text-align: center;
}

.success > div:nth-child(2) > div:nth-child(8) {
  background: url(/static/images/success-phone.svg) no-repeat left center;
  font-weight: 700;
  font-size: 24px;
  line-height: 145%;
  padding-left: 40px;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .success-top img {
    height: 30px;
  }

  .success > div:nth-child(2) > div:nth-child(1) img {
    height: 95px;
  }

  .success > div:nth-child(2) > div:nth-child(2) {
    font-weight: 700;
    font-size: 42px;
    line-height: 115%;
    padding-top: 10px;
  }

  .success > div:nth-child(2) > div:nth-child(3) {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    padding: 16px 0 42px;
  }

  .success > div:nth-child(2) > div:nth-child(4) {
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
  }

  .success > div:nth-child(2) > div:nth-child(5) {
    min-width: 234px;
    height: 36px;
  }

  .success > div:nth-child(2) > div:nth-child(5) > div {
    font-weight: 700;
    font-size: 22.15px;
    line-height: 145%;
  }

  .success > div:nth-child(2) > div:nth-child(8) {
    font-weight: 700;
    font-size: 16px;
    line-height: 145%;
    letter-spacing: 0%;
    background-size: 15px;

    padding-left: 26px;
    margin-top: 16px;
  }

  .success {
    background: url(/static/images/success-glasses.svg) no-repeat right bottom
      26px;
    background-size: 85px;
  }
}

/***************** ACTIVATE *****************/

.activate {
  background: #dff7fc url(/static/images/activate-background-1.svg) no-repeat
    center top;
}

.activate > div {
  background: url(/static/images/activate-background-2.svg) no-repeat center
    bottom;
}

.activate > div > div {
  background: url(/static/images/activate-background-3.svg) repeat-x center
    bottom;
}

.activate > div > div > div {
  background: url(/static/images/activate-background-4.svg) no-repeat right
    bottom 50px;
}

.activate-header {
  padding: 20px 0;
}

.activate-wrapper {
  display: grid;
  grid-template-rows: auto 1fr 77px;
  min-height: 100vh;
}

.activate-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.activate-content > div:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.activate-content > div:nth-child(1) > div:nth-child(1) {
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0px;
}

.activate-content > div:nth-child(1) > div:nth-child(2) {
  background: #fff;
  transform: skew(-15deg);

  margin-left: -10px;
  margin-top: 6px;
}

.activate-content > div:nth-child(1) > div:nth-child(2) > div {
  font-weight: 700;
  font-size: 65px;
  line-height: 120%;
  transform: skew(15deg);
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 93px;
}

.activate-content > div:nth-child(1) > div:nth-child(3) {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  margin-top: 40px;
}

.activate-content > div:nth-child(2) {
  padding-top: 118px;
}

.activate-content > div:nth-child(2) > div:first-child {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0px;
}

.activate-content > div:nth-child(2) > div:last-child {
  padding-top: 10px;
  font-weight: 700;
  font-size: 24px;
  line-height: 115%;
}

@media (max-width: 1024px) {
  .activate {
    background: #dff7fc url(/static/images/activate-background-mobile.svg)
      no-repeat center top;
  }

  .activate > div {
    background: none;
  }

  .activate > div > div > div {
    background: url(/static/images/activate-background-4.svg) no-repeat right -40px
      bottom 50px;
    background-size: 300px;
  }

  .activate-content {
    padding-top: 40px;
    justify-content: flex-start;
  }

  .activate-content > div:nth-child(1) {
    align-items: center;
  }
  .activate-content > div:nth-child(1) > div:nth-child(1) {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
  }

  .activate-content > div:nth-child(1) > div:nth-child(2) {
    margin: 6px 10px 0;
  }

  .activate-content > div:nth-child(1) > div:nth-child(2) > div {
    font-weight: 700;
    font-size: 35.86px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
  }

  .activate-content > div:nth-child(1) > div:nth-child(3) {
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    text-align: center;

    margin-top: 40px;
  }

  .activate-content > div:nth-child(2) {
    padding-top: 40px;
  }

  .activate-content > div:nth-child(2) > div:first-child {
    font-weight: 400;
    font-size: 11px;
    line-height: 145%;
    text-align: center;
  }

  .activate-content > div:nth-child(2) > div:last-child {
    padding-top: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 114.99999999999999%;

    text-align: center;
  }
}

/************ TGCONTACT *******************/
.tgcontact {
  background: #dff7fc;
  overflow: hidden;
}

.tgcontact-wrapper {
  min-height: 309px;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 250px;
}

.tgcontact-wrapper > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}

.tgcontact-wrapper > div:first-child > div:nth-child(1) {
  font-weight: 700;
  font-size: 50px;
  line-height: 115%;
}

.tgcontact-wrapper > div:first-child > div:nth-child(2) {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.tgcontact-wrapper > div:first-child > div:nth-child(2) > a {
  display: flex;
  min-width: 296px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  background: #5061ec;
  border-radius: 8px;
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
}

.tgcontact-wrapper > div:first-child > div:nth-child(2) > img {
  position: absolute;
  left: 332px;
  top: -20px;
}

.tgcontact-wrapper > div:last-child {
  display: flex;
  align-items: flex-end;
}

@media (max-width: 1024px) {
  .tgcontact-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .tgcontact-wrapper > div:first-child {
    gap: 20px;
    align-items: center;
  }

  .tgcontact-wrapper > div:first-child > div:nth-child(1) {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    text-align: center;
    padding-top: 28px;
  }

  .tgcontact-wrapper > div:first-child > div:nth-child(2) > a {
    min-width: 267px;
    min-height: 48px;

    font-weight: 700;
    font-size: 18px;
    line-height: 16px;
  }

  .tgcontact-wrapper > div:first-child > div:nth-child(2) > a > img {
    height: 22px;
  }

  .tgcontact-wrapper > div:first-child > div:nth-child(2) > img {
    position: absolute;
    left: 332px;
    top: -20px;
  }

  .tgcontact-wrapper > div:last-child {
    justify-content: center;
  }
}
