@import url("./fonts/evolventa.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body,
html,
main {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Evolventa", sans-serif;
  color: #171717;
}
body.overlay {
  overflow: hidden;
}
.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 {
  overflow: hidden;
  min-height: 700px;
  padding-top: 40px;
}
.header-top {
  padding: 22px 0 0;
}

.header-wrapper {
  display: grid;
  grid-template-columns: 1fr 535px;
  gap: 97px;
}

.header-wrapper_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header-wrapper_content {
  display: flex;
  flex-direction: column;
}

.header-advantages {
  display: flex;
  gap: 15px;
  margin-top: 50px;
}

.header-advantages > div {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  display: flex;
  align-items: center;
  height: 43px;
  padding: 0 24px;
  background: #f1f2fd;
  border-radius: 22px;
}

.header-wrapper_content > div:nth-child(3) {
  font-weight: 700;
  font-size: 70px;
  line-height: 110%;
  padding-top: 10px;
}

.header-wrapper_content > div:nth-child(4) {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  padding-top: 20px;
}

.header-wrapper_content > div:nth-child(5) {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}

.header-wrapper_content > div:nth-child(5) > div {
  min-height: 32px;
  background: no-repeat left center;
  padding-left: 34px;
  display: flex;
  align-items: center;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='27' viewBox='0 0 25 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75957 12.6243C1.40021 10.5056 -0.283059 10.7958 0.441495 13.2004C2.14535 18.8621 2.38778 18.8305 4.39704 23.1161C6.9558 28.5192 8.90851 27.4851 11.3886 23.3466C15.7354 16.0476 20.6975 10.2868 22.9792 6.36886C26.0773 1.04991 22.0965 -0.896566 19.4281 2.06851C17.1787 4.56799 7.41999 18.0288 7.30026 18.8038C7.14491 19.964 6.17175 14.7831 3.75957 12.6243Z' fill='%23171717'/%3E%3C/svg%3E%0A");
}

.header-wrapper__buttons {
  display: flex;
  gap: 16px;
  padding-bottom: 60px;
}

.header-wrapper__buttons > a:active {
  transform: translate(2px, 2px);
}

.header-wrapper__buttons > a:first-child {
  background: #f42468;
  max-width: 384px;
  width: 100%;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 115%;
  z-index: 1000;
  position: relative;
}

.header-wrapper__buttons > a:nth-child(2) {
  background: #fff;
  border: solid 2px #c5caf9;
  max-width: 384px;
  width: 100%;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5061ec;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 115%;
  z-index: 1000;
  position: relative;
}

.header-wrapper_right > div,
.header-wrapper_right img,
.header-wrapper_right video{
  width: 100%;
  border-radius: 21px;
}


.header-pagination_wrapper {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 20000;
  background: #fff;
  height: 34px;
  width: 284px;
  border-radius: 17px;
  padding: 0 20px;
  box-sizing: border-box;
}

.header-pagination {
  justify-content: space-between;
  font-weight: 700;
  font-size: 13px;
  line-height: 100%;
  display: flex;
  align-items: center;
  height: 34px;
}

.header-pagination > div:last-child {
  display: flex;
  gap: 5px;
}

.header-pagination > div:last-child > div {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e5fc;
}

.header-pagination > div:last-child > div.active {
  background: #5061ec;
}

@media (max-width: 1024px) {
  header {
    min-height: auto;

    padding-top: 16px;
  }
  .header-top {
    padding: 22px 0 0;
  }

  .header-top > img {
    height: 30px;
  }

  .header-advantages {
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
  }

  .header-advantages > div {
    height: 29px;
    padding: 0 20px;
    font-size: 13px;
  }

  .header-wrapper {
    grid-template-columns: 100%;
    gap: 20px;
  }

  .header-wrapper_content > div:nth-child(3) {
    font-size: 42px;
    padding-top: 20px;
    text-align: center;
  }

  .header-wrapper_content > div:nth-child(4) {
    font-size: 16px;
    padding-top: 16px;
    text-align: center;
  }

  .header-wrapper_content > div:nth-child(5) {
    justify-content: center;
    gap: 16px;
    padding-top: 20px;
    flex-wrap: wrap;
  }

  .header-wrapper__buttons {
    margin-top: 50px;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 0;
  }

  .header-wrapper_right {
    width: 100%;
  }
}

/*********** WHY AI *****************/

.whyai {
  padding: 60px 0;
}

.whyai-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
  text-align: center;
  padding-bottom: 60px;
}

.whyai-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.whyai-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px;
  box-shadow: 10px 10px 30px 0px #0000001a;
  border-radius: 20px;
}

.whyai-block1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  display: flex;
  align-items: center;
  padding: 30px;
}

.whyai-block > div:first-child {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #f42468;
}

.whyai-block > div:nth-child(2) {
  font-weight: 400;
  font-size: 24px;
  line-height: 135%;
}

@media (max-width: 1024px) {
  .whyai {
    padding: 53px 0 0;
  }

  .whyai-title {
    font-size: 32px;
    text-align: center;
    padding-bottom: 20px;
  }

  .whyai-title > br {
    display: none;
  }

  .whyai-blocks {
    grid-template-columns: 100%;
    gap: 15px;
  }

  .whyai-block {
    gap: 10px;
    padding: 20px;
  }

  .whyai-block1 {
    font-size: 16px;
    padding: 20px;
  }

  .whyai-block > div:first-child {
    font-size: 16px;
  }

  .whyai-block > div:nth-child(2) {
    font-size: 16px;
  }
}

/*********** HOWTO *****************/
.howto {
  background: #5061ec;
  padding: 85px 0;
}

.howto-title {
  font-weight: 700;
  font-size: 42px;
  line-height: 60px;
  color: #fff;
}

.howto-steps {
  padding: 45px 0 20px;
  display: flex;
  gap: 20px;
}

.howto-steps > div {
  display: flex;
  align-items: center;
  padding: 0 27px;
  background: #a1dc00;
  height: 56px;
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  border-radius: 33px;
}

.howto-info {
  background: #fff url("/static/images/ai-howto.svg") no-repeat right 30px
    bottom;
  min-height: 300px;
  border-radius: 20px;
  padding: 46px 400px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  box-sizing: border-box;
}

.howto-info > div:nth-child(1) {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
}

.howto-info > div:nth-child(2) {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 1024px) {
  .howto {
    padding: 40px 0;
    overflow: hidden;
    position: relative;
  }

  .howto-title {
    font-size: 32px;
    text-align: center;

    line-height: 40px;
  }

  .howto-title > br {
    display: none;
  }

  .howto-steps {
    gap: 12px;
    padding: 32px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  .howto-steps > div {
    padding: 0 12px;
    height: 46px;
    font-size: 20px;
  }

  .howto-info {
    background: #fff;
    min-height: auto;
    border-radius: 20px;
    padding: 20px;
    gap: 16px;
    z-index: 2;
    position: relative;
  }

  .howto-info > div:nth-child(1) {
    font-size: 20px;
    line-height: 140%;
  }

  .howto-info > div:nth-child(2) {
    font-size: 20px;
  }

  .howto-owl-mobile {
    position: absolute;
    z-index: 1;
    right: 0;
    transform: translate(20px, -55%);
  }
}

/**** PROGRAMM *****/

.programm {
  padding: 45px 0 80px;
}

.programm-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
  text-align: center;
}

.programm-description {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  padding-top: 12px;
  text-align: center;
}

.programm-grid {
  padding-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.programm-item {
  min-height: 290px;
  box-sizing: border-box;
  padding: 30px 260px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: no-repeat right bottom;
  box-shadow: 10px 10px 30px 0px #0000001a;
  border-radius: 20px;
  background-size: contain;
}

.programm-item > div:nth-child(1) {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
}

.programm-item > div:nth-child(2) {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
}

.programm-info {
  padding: 64px 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.programm-info > div:nth-child(1) {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
}

.programm-info > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.programm-info > div:nth-child(2) > div {
  min-height: 27px;
  background: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='27' viewBox='0 0 25 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75957 12.6248C1.40021 10.506 -0.283059 10.7963 0.441495 13.2009C2.14535 18.8626 2.38778 18.831 4.39704 23.1166C6.9558 28.5197 8.90851 27.4856 11.3886 23.3471C15.7354 16.048 20.6975 10.2873 22.9792 6.36935C26.0773 1.0504 22.0965 -0.896078 19.4281 2.06899C17.1787 4.56848 7.41999 18.0293 7.30026 18.8043C7.14491 19.9645 6.17175 14.7836 3.75957 12.6248Z' fill='%23171717'/%3E%3C/svg%3E%0A");
  display: flex;
  align-items: center;
  padding-left: 35px;

  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}

.programm-info > img {
  position: absolute;
  right: 163px;
  top: 23px;
}

@media (max-width: 1024px) {
  .programm {
    padding: 40px 0 60px;
  }

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

  .programm-description {
    font-size: 20px;
    padding-top: 14px;
  }

  .program-swiper-wrapper {
    overflow: hidden;
    padding: 30px 20px;
    margin: 0 -20px;
  }

  .program-swiper-wrapper .swiper {
    overflow: initial;
  }

  .programm-item {
    height: 303px;
    padding: 20px;
    gap: 14px;
  }

  .programm-item > div:nth-child(1) {
    font-size: 16px;
  }

  .programm-item > div:nth-child(2) {
    font-size: 16px;
  }

  .programm-info > img {
    display: none;
  }

  .programm-info {
    padding: 10px 0 0;
    gap: 14px;
  }

  .programm-info > div:nth-child(1) {
    font-size: 20px;
  }

  .programm-info > div:nth-child(2) {
    gap: 14px;
  }

  .programm-info > div:nth-child(2) > div {
    font-size: 16px;
  }

  .programm-info > img {
    position: absolute;
    right: 163px;
    top: 23px;
  }
}

/*** WHAT ****/
.what {
  background: #a1dc00;
  padding: 148px 0 62px;
}

.what-wrapper {
  display: grid;
  grid-template-columns: 1fr 525px;
  gap: 86px;
}

.what-wrapper__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.what-wrapper__content > div:first-child {
  position: relative;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
}

.what-wrapper__content > div:nth-child(2) {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
}

.what-wrapper__buttons > a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f42468;
  border-radius: 8px;
  width: 100%;
  height: 45px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  max-width: 447px;
}

.what-wrapper__blocks {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.what-wrapper__blocks > div {
  display: grid;
  grid-template-columns: auto auto;
  gap: 15px;
}

.what-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  box-shadow: 10px 10px 30px 0px #0000001a;
  border-radius: 24px;
  background: #fff;

  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  position: relative;
}

.what-square-owl {
  position: absolute;
  top: -110px;
  right: -23px;
}

@media (max-width: 1024px) {
  .what {
    padding: 40px 0;
  }

  .what-wrapper {
    grid-template-columns: 100%;
  }

  .what-wrapper__content > div:first-child {
    font-size: 32px;
  }

  .what-wrapper__content > div:nth-child(2) {
    padding: 20px 0 52px;
    font-size: 20px;
  }

  .what-wrapper__slider {
    position: relative;
  }

  .what-wrapper__slider > div:first-child {
    margin: 0 -20px;
    padding: 0 20px;
    overflow: hidden;
    padding-bottom: 30px;
    position: relative;
  }

  .what-square-owl {
    position: absolute;
    top: -91px;
    left: 144px;
    z-index: 1;
  }

  .what-square-owl > img {
    width: 170px;
  }

  .what-block {
    gap: 13px;
    padding: 20px;
    border-radius: 20px;
  }

  .what-swiper.swiper {
    overflow: initial;
  }

  .what-swiper .swiper-slide {
    width: 263px;
  }
}

/*********** TEACHERS *****************/
.teachers {
  padding: 52px 0 97px;
}

.teachers-wrapper {
  display: flex;
  flex-direction: column;
}

.teachers-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
}

.teachers-description {
  padding: 15px 0 74px;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
}

.teachers-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.teachers-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 71px 25px 30px;
  border-radius: 24px;
  background: #fafafb;
  position: relative;
}

.teachers-block > div:nth-child(1) {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
}

.teachers-block > div:nth-child(2) {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

.teachers-block > div:nth-child(3) {
  position: absolute;
  top: -44px;
  left: 30px;
}

.teachers-count {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
}

.teachers-count > div:nth-child(1) {
  font-weight: 700;
  font-size: 50.92px;
  line-height: 135%;
  padding-top: 10px;
}

.teachers-count > div:nth-child(2) {
  color: #5061ec;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.teachers-count > div:nth-child(2) > div:nth-child(1) {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 155.87px;
  line-height: 100%;
}

.teachers-count > div:nth-child(2) > div:nth-child(2) {
  font-weight: 700;
  font-size: 50.92px;
  line-height: 120%;
  margin-top: -50px;
}

@media (max-width: 1024px) {
  .teachers {
    padding: 30px 0 55px;
  }

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

  .teachers-description {
    padding: 14px 0 30px;
    font-size: 20px;
  }

  .teachers-count {
    flex-direction: column;
    padding-top: 30px;
    gap: 10px;
  }

  .teachers-count > div:nth-child(1) {
    font-size: 32px;
    padding-top: 0px;
  }

  .teachers-count > div:nth-child(2) {
    color: #5061ec;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .teachers-count > div:nth-child(2) > div:nth-child(1) {
    font-size: 85px;
  }

  .teachers-count > div:nth-child(2) > div:nth-child(2) {
    font-size: 27px;
    margin-top: -30px;
  }

  .teachers-slider_wrapper {
    padding: 0 20px;
    margin: 0 -20px;
    overflow: hidden;
    padding-top: 44px;
  }

  .teachers-slider.swiper {
    overflow: initial;
  }

  .teachers-slider .swiper-slide {
    width: 290px;
  }

  .teachers-block {
    gap: 15px;
  }

  .teachers-block > div:nth-child(2) {
    font-size: 16px;
  }
}

/********************* REVIEWS *********************/
.reviews {
  background: #f1f2fd;
}
.reviews-wrapper {
  position: relative;
  padding: 40px 0 44px;
}
.reviews-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  text-align: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}
.reviews-mark {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  min-height: 294px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.reviews-mark > div:nth-child(1) > div:nth-child(1) {
  font-weight: 700;
  font-size: 84px;
  line-height: 100%;
}
.reviews-mark > div:nth-child(1) > img {
  margin-top: -10px;
}
.reviews-mark > div:nth-child(2) {
  font-weight: 400;
  font-size: 13.2px;
  line-height: 27.6px;
  color: #bebebe;
}
.review-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-item > img {
  border-radius: 8px;
  width: 100%;
}
.reviews-owl {
  position: absolute;
  bottom: 0;
  right: 200px;
  display: flex;
}
.reviews-list.swiper {
  display: none;
}
@media (max-width: 1024px) {
  .reviews {
    overflow: hidden;
  }
  .reviews-wrapper {
    padding: 30px 0;
  }
  .reviews-title {
    font-size: 28px;
    text-align: left;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
  .reviews-mark {
    border-radius: 14px;
    padding: 20px;
    flex-direction: row;
    min-height: auto;
    gap: 46px;
  }
  .reviews-mark > div:nth-child(1) > div:nth-child(1) {
    font-size: 49px;
  }
  .reviews-mark > div:nth-child(1) > img {
    height: 18px;
  }
  .reviews-mark > div:nth-child(2) img {
    height: 31px;
  }
  .reviews-mark > div:nth-child(2) > div:nth-child(2) {
    font-size: 10px;
    line-height: 14px;
  }
  .reviews-list {
    margin-top: 20px;
  }
  .reviews-list.swiper {
    display: block;
    overflow: visible;
  }
  .reviews-list img {
    width: 100%;
    border-radius: 6px;
  }
  .reviews-list .swiper-pagination {
    bottom: auto !important;
  }
  .reviews-list .swiper-pagination > .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    margin: 0 2px !important;
  }
  .reviews-list
    .swiper-pagination
    > .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #80def1;
  }
}

/***** format *****/
.format {
  padding: 82px;
}
.format-title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.format-title > div:nth-child(1) {
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
}

.format-title > div:nth-child(2) {
  font-weight: 400;
  font-size: 24px;
  line-height: 145%;
}

.format-info {
  margin-top: 50px;
  box-shadow: 10px 10px 30px 0px #0000001a;
  border-radius: 20px;
  padding: 50px 60px;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.format-advantages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.format-advantages > div {
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  background: no-repeat left top 4px;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.20333 3.52022C8.82119 3.22764 11.5271 3.22764 14.1449 3.52022C15.1278 3.63007 15.9906 4.16158 16.5364 4.93348L9.75022 11.7197L7.65625 9.62569C7.40791 9.37736 7.00528 9.37736 6.75694 9.62569C6.50861 9.87403 6.50861 10.2767 6.75694 10.525L9.30056 13.0686C9.5489 13.317 9.95153 13.317 10.1999 13.0686L17.0807 6.18775C17.0998 6.28065 17.115 6.37498 17.1262 6.47059C17.4392 9.14726 17.4392 11.8513 17.1262 14.528C16.944 16.0855 15.6935 17.3053 14.1449 17.4783C11.5271 17.7709 8.82119 17.7709 6.20333 17.4783C4.65479 17.3053 3.40427 16.0855 3.2221 14.528C2.90904 11.8513 2.90904 9.14726 3.2221 6.47059C3.40427 4.91308 4.65479 3.69329 6.20333 3.52022Z' fill='%23A1DC00'/%3E%3C/svg%3E%0A");
  padding-left: 39px;
}

.format-price {
  display: flex;
  flex-direction: column;
}

.format-price > div:first-child {
  font-weight: 700;
  font-size: 114.88px;
  line-height: 1em;
  position: relative;
}

.format-price > div:first-child > div:last-child {
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  position: absolute;
  bottom: 0;
  transform: translateY(20px);
}

.format-price > div:last-child {
  padding-top: 60px;
}

.format-price > div:last-child a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f42468;
  border-radius: 8px;
  width: 100%;
  height: 45px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
}

@media (max-width: 1024px) {
  .format {
    padding: 50px 0px 63px;
  }

  .format-title {
    grid-template-columns: 100%;
    gap: 20px;
  }

  .format-title > div:nth-child(1) {
    font-size: 32px;
    text-align: center;
  }

  .format-title > div:nth-child(2) {
    font-size: 20px;
    line-height: 145%;
    text-align: center;
  }

  .format-info {
    margin-top: 30px;

    padding: 30px 20px;

    grid-template-columns: 100%;
    gap: 40px;
  }

  .format-advantages {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .format-advantages > div {
    font-size: 16px;
    line-height: 135%;
    padding-left: 30px;
    background-size: 22px 22px;
  }

  .format-price > div:first-child {
    font-size: 83px;
    text-align: right;
    padding-top: 40px;
  }

  .format-price > div:first-child > div:last-child {
    bottom: auto;
    font-size: 14px;
    top: 15px;
    left: auto;
    right: 0;
    transform: translate(0);
  }
}

/**** PAYMENTS ****/
.payment {
  background: #5061ec;
  padding: 80px 0;
}
.payment-wrapper {
  display: flex;
  gap: 78px;
}

.payment-wrapper > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.payment-title {
  color: #fff;
  font-weight: 700;
  font-size: 55px;
  line-height: 115%;
}
.payment-description {
  padding: 20px 0 0;
  color: #fff;
  font-weight: 400;
  font-size: 30px;
  line-height: 145%;
}
.payment-arrow {
  position: relative;
  text-align: right;
}

.payment-hint {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #fff;
}

.payment-arrow > img {
  transform: translate(26px, -30px);
}
.payment-form-wrapper {
  width: 100%;
  max-width: 540px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.payment-form-wrapper > div:first-child {
  position: relative;
  width: 200%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: margin 0.3s;
}
.payment-form-wrapper div.preloader {
  position: absolute;
  display: none;
  z-index: 1000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8) url(/static/images/payment-preloader.gif)
    no-repeat center center;
}
.payment-form-wrapper.step2 > div {
  margin-left: -100%;
}
.payment-form-step {
  padding: 0 0 20px 40px;
  color: #fff;
  font-weight: 400;
  font-size: 26.7px;
  line-height: 40.05px;
}
.payment-form {
  border-radius: 30px;
  background: #fff;
  padding: 40px;
  box-sizing: border-box;
  position: relative;
  min-height: 570px;
}
.payment-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-form form > div input,
.payment-form form > div select {
  width: 100%;
  height: 56px;
  box-sizing: border-box;
  padding: 0 16px;
  border: solid 2px #e2e2e3;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}
.payment-form form > div input::placeholder,
.payment-form form > div select::placeholder {
  color: #b2b2b2;
}
.payment-form form > div.select {
  position: relative;
}
.payment-form form > div.select::after {
  --size: 4px;
  content: "";
  position: absolute;
  right: 16px;
  pointer-events: none;
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid #b2b2b2;
  top: 50%;
  transform: translateY(-50%);
}
.payment-form form > div.select > select {
  appearance: none;
}
.payment-form form > div.select > select:invalid {
  color: #b2b2b2;
}
.payment-form form > div.select > select > option {
  color: #171717;
}
.payment-form form > div.button {
  padding-top: 30px;
}
.payment-form form > div.button > button {
  background: #f42468;
  border: none;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
  cursor: pointer;
}
.payment-form form > div.button > button:active {
  transform: translate(1px, 1px);
}
.payment-form > div.politics {
  padding-top: 20px;
  color: #b2b2b2;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
}
.payment-form > div.politics > a {
  color: #b2b2b2;
}
@media (max-width: 1024px) {
  .payment {
    padding: 40px 0;
  }
  .payment-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .payment-title {
    font-size: 27px;
    text-align: left;
    width: 100%;
    padding-left: 20px;
  }
  .payment-description {
    padding: 10px 0 20px 20px;
    font-size: 16px;
    text-align: left;
    width: 100%;
  }
  .payment-form-step {
    padding: 0 0 10px 20px;
    font-size: 16px;
  }
  .payment-arrow {
    display: none;
  }
  .payment-form-wrapper {
    margin: 0;
  }
  .payment-form {
    padding: 20px;
  }
  .payment-form form {
    gap: 8px;
  }
  .payment-form form > div.button {
    padding-top: 10px;
  }
  .payment-form > div:last-child {
    padding-top: 10px;
    font-weight: 400;
    font-size: 10px;
    line-height: 130%;
  }
  .payment-form > div:last-child > br {
    display: none;
  }
}

/*********** REQUEST **************/
.request {
  background: #a1dc00;
  padding: 74px 0 58px;
  position: relative;
}

.request div.preloader {
  position: absolute;
  z-index: 1000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8) url(/static/images/payment-preloader.gif)
    no-repeat center center;
  display: none;
}

.request-wrapper {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.request-content {
  display: grid;
  grid-template-columns: 490px 1fr;
  gap: 12px;
}

.request-content > div:first-child {
  font-weight: 700;
  font-size: 62.69px;
  line-height: 130%;
}

.request-content > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.request-content > div:last-child > div:first-child {
  padding-top: 15px;
  font-weight: 400;
  font-size: 24px;
  line-height: 145%;
}

.request-content > div:last-child > div:last-child {
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
}

.request-content > div:last-child > div:last-child a {
  color: #171717;
  text-decoration: underline;
  font-weight: 700;
}

.request form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.request form > div > input {
  width: 100%;
  height: 56px;
  box-sizing: border-box;
  padding: 0 16px;
  border: solid 2px #e2e2e3;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}
.request form > div input::placeholder {
  color: #b2b2b2;
}

.request form > div > button {
  background: #f42468;
  max-width: 384px;
  width: 100%;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 115%;
  z-index: 1000;
  position: relative;
  border: none;
  cursor: pointer;
}

.request form > div > button:active {
  transform: translate(2px, 2px);
}

.request-additional {
  padding-top: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 145%;
}

@media (max-width: 1024px) {
  .request {
    padding: 40px 0;
  }
  .request-wrapper {
    gap: 40;
  }
  .request-content {
    grid-template-columns: 100%;
    gap: 20px;
  }

  .request-content > div:first-child {
    font-size: 32px;
  }

  .request-content > div:last-child {
    gap: 14px;
  }

  .request-content > div:last-child > div:first-child {
    padding-top: 0;
    font-size: 20px;
  }

  .request-content > div:last-child > div:last-child {
    font-size: 20px;
  }

  .request form {
    grid-template-columns: 100%;
    gap: 10px;
  }

  .request form > div:last-child {
    padding-top: 14px;
  }
}

/***************** FAQ *******************/
.faq {
  padding: 50px 0 70px;
}
.faq_title {
  font-size: 57px;
  font-weight: 700;
  line-height: 52.8px;
}
.faq_wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
.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 {
    padding: 16px 0 0px;
  }
  .faq_title {
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: center;
  }
  .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;
  }
}
/************ FOOTER  *****************/
footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  margin: 70px 0 50px 0;
  gap: 90px;
}
.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;
  }
}

.help {
  background: #f1f2fd;
  overflow: hidden;
}

.help-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 60px 400px 67px 0;
}

.help-wrapper > div:nth-child(1) {
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
}

.help-wrapper > div:nth-child(2) {
  display: grid;
  grid-template-columns: 322px auto;
  gap: 47px;
  margin: 40px 0 45px;
}

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

.help-wrapper > div:nth-child(2) > span {
  display: flex;
  gap: 11px;
  align-items: center;
  font-weight: 700;
  font-size: 34.1px;
  line-height: 27.28px;
  letter-spacing: 0px;
  text-align: center;
}

.help-wrapper > div:nth-child(3) {
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
  color: #5061ec;
}

.help-wrapper > img {
  position: absolute;
  bottom: 0;
  right: -30px;
}

@media (max-width: 1024px) {
  .help-wrapper {
    padding: 30px 0 165px;
  }

  .help-wrapper > div:nth-child(1) {
    font-size: 28px;
  }

  .help-wrapper > div:nth-child(2) {
    grid-template-columns: 100%;
    gap: 30px;
    margin: 24px 0;
  }

  .help-wrapper > div:nth-child(2) > span {
    font-size: 28px;
  }

  .help-wrapper > img {
    width: 239px;
    right: 0;
  }

  .help-wrapper > div:nth-child(3) {
    font-size: 20px;
  }
}

/******************** SUCCESS-FAIL *********************/
.header-top-result {
  padding: 22px 0 0;
  text-align: right;
}
.result-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.result-wrapper {
  display: flex;
  flex-direction: column;
  margin: 50px 0;
  align-items: center;
}
.result-wrapper > div {
  text-align: center;
}
.result-wrapper > div:nth-child(2) {
  font-weight: 700;
  font-size: 50px;
  line-height: 115%;
}
.result-wrapper > div:nth-child(3) {
  padding: 10px 0 20px 0;
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
  color: #f7598d;
}
.result-wrapper > div:nth-child(4) {
  max-width: 580px;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  margin-bottom: 60px;
}
.result-wrapper .result-contacts {
  display: flex;
  gap: 40px;
}
.result-wrapper .result-contacts > a {
  display: flex;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  align-items: center;
  justify-content: center;
  background: #5061ec;
  height: 56px;
  min-width: 322px;
  border-radius: 8px;
  text-decoration: none;
}
.result-wrapper .result-contacts > span {
  display: flex;
  gap: 11px;
  align-items: center;
  font-weight: 700;
  font-size: 34.1px;
  line-height: 27.28px;
  letter-spacing: 0px;
  text-align: center;
}
.result-page.fail .result-wrapper > div:nth-child(2) {
  margin-top: 40px;
}
.result-page.fail .result-wrapper .result-contacts > a {
  display: none;
}
@media (max-width: 1024px) {
  .header-top-result {
    padding: 20px 0 0;
  }
  .result-wrapper {
    margin: 40px 0;
  }
  .result-wrapper > img:first-child {
    width: 130px;
  }
  .result-wrapper > div:nth-child(2) {
    font-size: 34px;
  }
  .result-wrapper > div:nth-child(3) {
    font-size: 20px;
  }
  .result-wrapper > div:nth-child(4) {
    font-size: 16px;
  }
  .result-wrapper .result-contacts {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 30px;
  }
  .result-wrapper .result-contacts > a {
    width: 100%;
    min-width: auto;
    max-width: 500px;
  }
  .result-wrapper .result-contacts > span {
    gap: 14px;
    font-size: 28px;
  }
  .result-wrapper .result-contacts > span > img {
    width: 34px;
  }
}
