@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;
}
.header-top {
  padding: 22px 0 0;
}
.header-wrapper {
  position: relative;
}
.header-wrapper .title {
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  margin: 72px 0 40px;
}
.header-wrapper > img {
  position: absolute;
  top: -80px;
  left: 208px;
}
.header-button > a {
  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;
}
@media (max-width: 1024px) {
  header {
    min-height: auto;
  }
  .header-top {
    padding: 11px 0 0;
  }
  .header-wrapper-mobile {
    display: flex;
    flex-direction: column;
    margin-top: 28px;
  }
  .header-wrapper-mobile > .content {
    background: linear-gradient(
      to top,
      #fff,
      #fff 1%,
      #a1dc00 1%,
      #a1dc00 99%,
      #fff 99%
    );
  }
  .header-wrapper-mobile > .content > div {
    background: url(/static/images/header-ticket2.svg) no-repeat;
    background-size: contain;
  }
  .header-wrapper-mobile > .content > div > div {
    background: url(/static/images/header-ticket3.svg) no-repeat left bottom;
    background-size: contain;
    padding: 30px 20px 0;
    box-sizing: border-box;
  }
  .header-wrapper-mobile .text {
    font-weight: 700;
    font-size: 17px;
    line-height: 135%;
  }
  .header-wrapper-mobile .button {
    padding: 20px 0 13px;
    display: flex;
    justify-content: center;
  }
  .header-wrapper-mobile .button > a {
    width: 100%;
    max-width: 500px;
    background-color: #f42468;
    border-radius: 8px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 115%;
    color: #fff;
    text-decoration: none;
  }
  .header-wrapper-mobile .img {
    display: flex;
    justify-content: center;
  }
}
/*********** HOWTO *****************/
.howto {
  padding: 64px 0 94px 0;
}
.howto-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 130%;
}
.howto-steps {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  position: relative;
  padding-right: 450px;
}
.howto-steps > div {
  position: relative;
  display: flex;
  margin-left: 26px;
  padding-left: 80px;
  border-left: solid 6px #fff;
}
.howto-steps > div:first-child {
  border-left: solid 6px #f0f0f0;
  padding-bottom: 34px;
}
.howto-steps > div > div:first-child {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7598d;
  width: 51px;
  height: 51px;
  box-sizing: border-box;
  border: solid 6px #fff;
  border-radius: 26px;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  padding-top: 4px;
  left: -29px;
  top: -6px;
}
.howto-steps > div > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.howto-steps > div > div:nth-child(2) > div:nth-child(1) {
  color: #111827;
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
}
.howto-steps > div > div:nth-child(2) > div:nth-child(2) {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
}
.howto-steps > div > div:nth-child(2) > div:nth-child(3) {
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 145%;
  color: #8b8b8b;
}
.howto-steps > div > div:nth-child(2) > div:nth-child(3) > a {
  color: #8b8b8b;
}
.howto-steps > img {
  position: absolute;
  z-index: 100;
  right: 128px;
  top: -40px;
}
.howto-certificate {
  background: #fff1f5;
  border-radius: 20px;
  margin-top: 52px;
  padding: 63px 148px 50px 72px;
  position: relative;
  margin-right: 36px;
}
.howto-certificate > .title {
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
  color: #f42468;
}
.howto-certificate > .description {
  padding-top: 20px;
  display: flex;
  gap: 32px;
}
.howto-certificate > .description > div {
  display: flex;
  gap: 6px;
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
}
.howto-certificate > .howto-bonus {
  position: absolute;
  left: 0;
  background-color: #f7598d;
  height: 51px;
  border-radius: 26px;
  min-width: 208px;
  display: flex;
  gap: 7px;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  top: 0;
  transform: translate(0, -50%);
}
.howto-certificate .img1 {
  position: absolute;
  width: 88px;
}
.howto-certificate .img1 {
  position: absolute;
  width: 88px;
  right: -17px;
  bottom: -4px;
}
.howto-certificate .img2 {
  position: absolute;
  width: 98px;
  right: -43px;
  top: 29px;
}
.howto-certificate .img3 {
  position: absolute;
  width: 85px;
  right: 43px;
  bottom: 58px;
}
@media (max-width: 1024px) {
  .howto {
    padding: 43px 0 60px 0;
  }
  .howto-title {
    font-size: 32px;
  }
  .howto-steps {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    padding-right: 0;
  }
  .howto-steps > div {
    margin-left: 20px;
    padding-left: 30px;
    border-left: solid 4px #fff;
  }
  .howto-steps > div:first-child {
    border-left: solid 4px #f0f0f0;
    padding-bottom: 30px;
  }
  .howto-steps > div > div:first-child {
    width: 36px;
    height: 36px;
    border: solid 4px #fff;
    border-radius: 18px;
    font-size: 20px;
    left: -19px;
    top: -4px;
  }
  .howto-steps > div > div:nth-child(2) {
    gap: 4px;
  }
  .howto-steps > div > div:nth-child(2) > div:nth-child(1) {
    font-size: 16px;
  }
  .howto-steps > div > div:nth-child(2) > div:nth-child(2) {
    font-size: 16px;
  }
  .howto-steps > div > div:nth-child(2) > div:nth-child(3) {
    font-size: 14px;
    line-height: 145%;
  }
  .howto-certificate {
    border-radius: 12px;
    margin-top: 34px;
    padding: 62px 15px 33px 15px;
    margin-right: 0;
  }
  .howto-certificate > .title {
    font-size: 18px;
  }
  .howto-certificate > .description {
    padding-top: 10px;
    flex-direction: column;
    gap: 18px;
  }
  .howto-certificate > .description > div {
    font-size: 16px;
  }
  .howto-certificate > .howto-bonus {
    height: 38px;
    border-radius: 18px;
    min-width: 133px;
    gap: 10px;
    font-size: 20px;
  }
  .howto-certificate > .howto-bonus > img {
    width: 20px;
  }
  .howto-certificate .img1 {
    position: absolute;
    width: 73px;
    right: -4px;
    bottom: -22px;
  }
  .howto-certificate .img2 {
    position: absolute;
    width: 79px;
    right: 32px;
    top: -30px;
  }
  .howto-certificate .img3 {
    position: absolute;
    width: 70px;
    right: 70px;
    bottom: -46px;
  }
}
/**** WISH *****/
.wish {
  background: #f7598d url("/static/images/wish-background.png") no-repeat right
    center;
  background-size: contain;
}
.wish-wrapper {
  min-height: 333px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.wish-wrapper > div:first-child {
  color: #fff;
  font-weight: 700;
  font-size: 52.1px;
  line-height: 130%;
}
.wish-wrapper > div:nth-child(2) {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.wish-wrapper > div:nth-child(2) > a {
  min-width: 343px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  color: #171717;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 115%;
}
.wish-wrapper > div:nth-child(2) > img {
  position: absolute;
  top: 24px;
  left: 343px;
}
@media (max-width: 1024px) {
  .wish {
    background: #f7598d url("/static/images/wish-background-mobile.png")
      no-repeat right bottom;
    background-size: contain;
  }
  .wish-wrapper {
    min-height: 220px;
    gap: 10px;
  }
  .wish-wrapper > div:first-child {
    font-size: 30px;
  }
  .wish-wrapper > div:nth-child(2) {
    padding-right: 75px;
  }
  .wish-wrapper > div:nth-child(2) > a {
    min-width: auto;
    width: 100%;
    max-width: 500px;
    height: 48px;
    font-size: 18px;
  }
}
/*********** courseS ******************/
.courses {
  padding: 50px 0 94px;
}
.courses-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
  text-align: center;
  padding-bottom: 23px;
}
.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.courses-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 10px 10px 30px 0px #0000001a;
  box-sizing: border-box;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.courses-item > div:nth-child(1) {
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  padding: 7px 10px;
  background: #f0f0f0;
  border-radius: 14px;
}
.courses-item > a:nth-child(2) {
  display: flex;
  margin-top: 8px;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  line-height: 115%;
}
.courses-item > a:nth-child(2) > img {
  width: 24px;
}
.courses-item > div:nth-child(3) {
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
}
.courses-item > div:nth-child(4) {
  align-self: flex-end;
}
.courses-item > div:nth-child(4) > a {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-decoration: underline;
  cursor: pointer;
  color: #b2b2b2;
}
.courses-item > div:nth-child(4) > a:hover {
  text-decoration: none;
}
.courses-achievements {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.courses-achievements > div:first-child {
  position: relative;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
}
.courses-achievements > div:first-child > img {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 40%);
}
.courses-achievements > div:nth-child(2) {
  text-align: right;
}
.courses-achievements > div:nth-child(2) > div:first-child {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 86px;
  line-height: 100%;
}
.courses-achievements > div:nth-child(2) > div:nth-child(2) {
  font-weight: 700;
  font-size: 28.59px;
  line-height: 100%;
  margin-top: -20px;
}
@media (max-width: 1024px) {
  .courses {
    padding: 32px 0 44px;
  }
  .courses-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 115%;
    text-align: center;
    padding-bottom: 2px;
  }
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }
  .courses-grid:last-child {
    grid-template-areas: "b" "a";
  }
  .courses-grid:last-child > div:first-child {
    grid-area: a;
  }
  .courses-grid:last-child > div:last-child {
    grid-area: b;
  }
  .courses-item {
    border-radius: 12px;
    padding: 20px;
    gap: 6px;
  }
  .courses-item > div:nth-child(1) {
    font-size: 11px;
    padding: 6px 17px;
  }
  .courses-item > div:nth-child(2) {
    margin-top: 4px;
    gap: 8px;
    font-size: 20px;
  }
  .courses-item > div:nth-child(2) > img {
    width: 24px;
  }
  .courses-achievements {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 30px;
    gap: 10px;
  }
  .courses-achievements > div:first-child {
    font-size: 32px;
  }
  .courses-achievements > div:first-child > br {
    display: none;
  }
  .courses-achievements > div:first-child > img {
    display: none;
  }
  .courses-achievements > div:nth-child(2) {
    text-align: left;
    position: relative;
  }
  .courses-achievements > div:nth-child(2) > div:first-child {
    font-size: 92px;
  }
  .courses-achievements > div:nth-child(2) > div:nth-child(2) {
    font-size: 32px;
  }
  .courses-achievements > div:nth-child(2) > img {
    position: absolute;
    left: 190px;
    top: 100%;
    transform: translate(0, -20px);
    z-index: 100;
  }
}
/*********** COURSES-MODAL ************/
.courses-modal-overlay {
  background: rgba(23, 23, 23, 0.75);
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  overflow-x: auto;
  overflow-y: scroll;
}
.courses-modal-overlay.hidden {
  display: none;
}
.courses-modal-overlay > div {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.courses-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 664px;
  z-index: 100002;
}
.courses-modal-wrapper {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  box-sizing: border-box;
  padding: 32px 24px 24px 24px;
}
.courses-modal-wrapper > .courses-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
}
.courses-modal-wrapper > .courses-modal-close > a {
  cursor: pointer;
}
.courses-modal-wrapper > .title {
  font-weight: 700;
  font-size: 25px;
  line-height: 115%;
}
.courses-modal-wrapper > .subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  padding: 10px 0 14px 0;
}
.courses-advantages {
  display: flex;
  flex-direction: column;
}
.courses-advantages > label {
  border-top: solid 2px #f0f0f0;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.courses-advantages > label input {
  position: absolute;
  opacity: 0;
}
.courses-advantages > label > div:nth-child(2) {
  font-weight: 700;
  font-size: 16px;
  line-height: 135%;
  padding: 9px 0 9px;
  position: relative;
}
.courses-advantages > label > div:nth-child(2)::after {
  content: "";
  width: 27px;
  height: 27px;
  background: url(/static/images/courses-modal-hide.svg) no-repeat right top;
  right: 0;
  top: 6px;
  position: absolute;
  transition: transform 0.3s;
}
.courses-advantages > label > div:nth-child(3) {
  transition: all 0.35s;
  max-height: 0;
  overflow: hidden;
}
.courses-advantages > label > div:nth-child(3) > ul {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.courses-advantages > label > div:nth-child(3) > ul > li {
  background: url(/static/images/courses-modal-list.svg) no-repeat left top;
  padding-left: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
}
.courses-advantages > label input:checked + div::after {
  transform: rotate(180deg);
}
.courses-advantages > label input:checked + div + div {
  max-height: 25rem;
}
.courses-price {
  display: grid;
  grid-template-areas: "a b" "c c";
  grid-template-columns: 1fr auto;
  margin-top: 30px;
  gap: 23px 45px;
}
.courses-price > div:nth-child(1) {
  grid-area: a;
  font-weight: 700;
  font-size: 20px;
  line-height: 135%;
}
.courses-price > div:nth-child(2) {
  grid-area: b;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}
.courses-price > div:nth-child(2) > div:first-child {
  font-weight: 700;
  font-size: 29px;
  line-height: 120%;
  color: #8b8b8b;
  position: relative;
}
.courses-price > div:nth-child(2) > div:first-child::after {
  content: "";
  position: absolute;
  width: 102%;
  top: 15px;
  left: -1%;
  border-top: solid 2px #8b8b8b;
}
.courses-price > div:nth-child(2) > div:nth-child(2) {
  font-weight: 700;
  font-size: 68px;
  line-height: 120%;
  margin-top: -10px;
}
.courses-price > div:nth-child(2) > div:nth-child(3) {
  position: absolute;
  width: 72px;
  height: 72px;
  background: url(/static/images/courses-modal-sale.svg) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  padding-top: 4px;
  box-sizing: border-box;
  transform: rotate(-15deg);
  left: 41px;
  top: -40px;
}
.courses-price > div:nth-child(3) {
  grid-area: c;
}
.courses-price > div:nth-child(3) > 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) {
  .courses-modal-wrapper {
    padding: 30px 20px 20px 20px;
  }
  .courses-modal-wrapper > .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
  }
  .courses-modal-wrapper > .subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    padding: 8px 0 12px 0;
  }
  .courses-advantages > label {
    border-top: solid 1px #f0f0f0;
  }
  .courses-advantages > label > div:nth-child(2) {
    font-size: 16px;
    padding: 8px 0 10px;
  }
  .courses-advantages > label > div:nth-child(2)::after {
    content: "";
    width: 22px;
    height: 22px;
    background-size: contain;
    top: 8px;
  }
  .courses-advantages > label > div:nth-child(3) > ul {
    margin-bottom: 10px;
  }
  .courses-advantages > label > div:nth-child(3) > ul > li {
    background-size: 22px 22px;
    padding-left: 30px;
    font-size: 16px;
  }
  .courses-price {
    margin-top: 10px;
    grid-template-areas: "a" "b" "c";
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .courses-price > div:nth-child(1) {
    font-size: 16px;
  }
  .courses-price > div:nth-child(2) {
    grid-area: b;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .courses-price > div:nth-child(2) > div:first-child {
    font-size: 22.67px;
  }
  .courses-price > div:nth-child(2) > div:first-child::after {
    top: 12px;
  }
  .courses-price > div:nth-child(2) > div:nth-child(2) {
    font-size: 53.85px;
    margin-top: -5px;
  }
  .courses-price > div:nth-child(2) > div:nth-child(3) {
    font-size: 22px;
    width: 73px;
    height: 73px;
    top: 50%;
    left: auto;
    right: 200px;
    transform: translate(0, -50%) rotate(-15deg);
  }
  .courses-price > div:nth-child(3) {
    grid-area: c;
  }
  .courses-price > div:nth-child(3) > a {
    height: 48px;
    font-size: 18px;
  }
}
/********************* REVIEWS *********************/
.reviews {
  background: #dff7fc;
}
.reviews-wrapper {
  position: relative;
  padding: 40px 0 100px;
}
.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;
  }
}
/**** PAYMENTS ****/
.payment {
  background: #5061ec url(/static/images/clouds.svg) no-repeat center bottom -240px;
  padding: 40px 0;
  position: relative;
}
.payment-wrapper {
  display: flex;
  position: relative;
  gap: 94px;
}

.payment-wrapper > div:first-child {
  position: relative;
}

.payment-title {
  color: #fff;
  padding-top: 180px;
}

.payment-title > div:first-child {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
}

.payment-title > div:last-child {
  padding-top: 10px;
  font-weight: 700;
  font-size: 80px;
  line-height: 100%;
}

.payment-description {
  padding: 30px 0 0;
  color: #fff;
  font-weight: 400;
  font-size: 26px;
  line-height: 145%;
}
.payment-more {
  padding-top: 30px;
}

.payment-more > a {
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  line-height: 145%;
}

.payment-more > a:hover {
  text-decoration: none;
}

.payment-info {
  color: #fff;
  padding-top: 100px;
  font-weight: 700;
  font-size: 17px;
  line-height: 145%;
}

.payment-info a {
  color: #fff;
}

.payment-info a:hover {
  text-decoration: none;
}

.payment-arrow {
  position: absolute;
  text-align: right;
  right: -40px;
  top: 320px;
}
.payment-arrow > img {
  width: 224px;
  /* 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;
}
.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.select > select > option:disabled {
  color: #b2b2b2;
}

.payment-form form > div.button {
  padding-top: 0px;
}
.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;
}

.full-cost-block {
  display: inline-flex;
  flex-direction: column;
  position: relative;
}

.full-cost-block > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 42px;
}

.full-cost-block > div:first-child > div:first-child {
  font-weight: 700;
  font-size: 23.35px;
  line-height: 100%;
}

.full-cost-block > div:first-child > div:nth-child(2) {
  color: #8b8b8b;
  font-weight: 700;
  font-size: 34.51px;
  line-height: 100%;
  position: relative;
  transform: translateY(6px);
}

.full-cost-block > div:first-child > div:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 102%;
  top: 15px;
  left: -1%;
  border-top: solid 2px #8b8b8b;
}

.full-cost-block > div:nth-child(2) {
  font-weight: 700;
  font-size: 78.23px;
  line-height: 100%;
  text-align: right;
  transform: translateY(0px);
}

.tale-owl {
  opacity: 0;
  position: absolute;
  bottom: -40px;
  right: -57px;
  display: flex;
  pointer-events: none;
  /* display: none; */
  transition: opacity 1s ease-in-out;
}

.promo-code > div {
  position: relative;
  display: inline-flex;
}

.promo-code > div::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 30px;
  height: 30px;
  background: url(/static/images/promo-1.svg) no-repeat center center;
  right: 13px;
  top: 13px;
}

.promo-code > div.valid::after {
  background: url(/static/images/promo-2.svg) no-repeat center center;
}

.promo-code > div.invalid::after {
  background: url(/static/images/promo-3.svg) no-repeat center center;
}

.promo-code > div input {
  width: 205px;
}

.payment-info-mobile {
  display: none;
}

.tale-owl-mobile {
  display: none;
}

.payment-arrow-mobile {
  display: none;
}

.promo-only-new {
  background: url(/static/images/promo-new.svg) no-repeat center center;
  background-size: cover;
  width: 113px;
  height: 113px;
  position: absolute;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;

  font-weight: 700;
  font-size: 14.12px;
  line-height: 111%;
  transform: rotate(-17deg);
  left: -120px;

  display: none;
}

@media (max-width: 1024px) {
  .payment {
    padding: 40px 0;
    height: 1150px;
    box-sizing: border-box;
    background: #5061ec url(/static/images/clouds.svg) no-repeat center bottom -140px;
    background-size: 200%;
  }

  .payment-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .payment-title {
    font-size: 27px;
    text-align: left;
    width: 100%;
    padding-left: 0;
    padding-top: 0;
  }
  .payment-title > div:first-child {
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
  }

  .payment-title > div:last-child {
    padding-top: 4px;
    font-size: 42px;
    line-height: 100%;
  }

  .payment-description {
    padding: 0;
    padding-top: 20px;
    font-size: 16px;
    text-align: left;
    width: 100%;
  }

  .payment-more {
    padding-top: 20px;
  }

  .payment-more > a {
    font-size: 16px;
  }

  .payment-form-step {
    padding: 0 0 10px 20px;
    font-size: 16px;
  }
  .payment-arrow {
    display: none;
  }
  .payment-form-wrapper {
    margin: 0;
    margin-top: 40px;
  }
  .payment-form {
    padding: 24px;
  }
  .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;
  }
  .payment-info {
    display: none;
  }

  .promo-code > div {
    width: 100%;
  }
  .promo-code > div input {
    width: 100%;
  }

  .full-cost-block > div:first-child > div:first-child {
    font-size: 17.56px;
  }

  .full-cost-block > div:first-child > div:nth-child(2) {
    font-size: 23px;
    transform: translateY(4px);
  }

  .full-cost-block > div:first-child > div:nth-child(2)::after {
    top: 9px;
  }

  .full-cost-block > div:nth-child(2) {
    font-size: 58px;
    transform: translateY(0px);
  }

  .payment-info-mobile {
    display: block;
    padding-top: 10px;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    line-height: 145%;
  }

  .payment-info-mobile a {
    color: #fff;
  }

  .tale-owl {
    display: none;
  }

  .tale-owl-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tale-owl-mobile img {
    height: 310px;
  }

  .payment-arrow-mobile {
    display: block;
    position: absolute;
    bottom: -60px;
    left: 50%;
  }
}
/*********** REQUEST **************/
.request {
  background: #dff7fc;
}
.request-wrapper {
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(/static/images/request-owl.svg) no-repeat right bottom;
}
.request-wrapper .title {
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
}
.request-wrapper .description {
  max-width: 800px;
  padding: 32px 0 40px;
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
}
.request-wrapper form {
  max-width: 416px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.request-wrapper form input {
  width: 100%;
  height: 56px;
  box-sizing: border-box;
  padding: 0 16px;
  border: solid 2px #c0eef8;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}
.request-wrapper form input::placeholder {
  color: #b2b2b2;
}
.request-wrapper form button {
  background: #f42468;
  border: none;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
}
@media (max-width: 1024px) {
  .request-wrapper {
    min-height: auto;
    padding: 50px 0 135px;
    background-size: 220px;
    background-position: center bottom;
  }
  .request-wrapper .title {
    font-size: 28px;
  }
  .request-wrapper .description {
    padding: 10px 0 16px;
    font-size: 16px;
  }
  .request-wrapper form {
    max-width: 416px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .request-wrapper form input {
    height: 48px;
  }
  .request-wrapper form button {
    height: 48px;
    font-size: 18px;
  }
}
/***************** 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;
  }
}
/******************** 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;
  }
}
