@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;
}

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

.button:hover {
  background: #d60a4d;
}

.button:active {
  background: #f42468;
}

.button1 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  color: #171717;
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
  cursor: pointer;
  text-decoration: none;
}

.button1:hover {
  background: #f1f2fd;
}

.button1:active {
  background: #fff;
}

.button2 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5061ec;
  border: none;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
  cursor: pointer;
  text-decoration: none;
}

.button2:hover {
  background: #2036e7;
}

.button2:active {
  background: #5061ec;
}

@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 {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.header_logo {
  padding: 20px 0 0;
}

.header_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header_banner {
  position: relative;
  margin-top: 75px;
}

.header_banner img:nth-child(2) {
  position: absolute;
  top: -55px;
  right: -112px;
}

.header_title {
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
}

.header_list {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.header_list > span {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  gap: 12px;
}

.header_button {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 50px 0;
}

.header_button > .button {
  max-width: 460px;
}

@media (max-width: 1024px) {
  .header_banner {
    margin-top: 0;
  }
  .header_banner img {
    width: 100%;
  }
  .header_title {
    margin-top: 12px;
    font-weight: 700;
    font-size: 18px;
    line-height: 135%;
    text-align: center;
  }

  .header_list {
    margin-top: 30px;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    gap: 12px;
  }

  .header_list > span > img {
    width: 24px;
    height: 24px;
  }

  .header_list > span {
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;

    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
}

/** PROFITS */
.profits {
  background: #dff7fc;
  height: 290px;
  display: flex;
  align-items: center;
}

.profits_container {
  display: flex;
  gap: 72px;
}

.profits_container > div:nth-child(1) {
  font-weight: 700;
  font-size: 65px;
  line-height: 120%;
  display: flex;
  justify-content: flex-end;
}

.profits_container > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.profits_container > div:nth-child(2) span {
  min-height: 37px;
  background: url("/static/images/bullet.svg") no-repeat left top;
  display: flex;
  align-items: center;
  padding: 0 0 0 48px;
  font-weight: 400;
  font-size: 24px;
  line-height: 145%;
}

/** GIFT */
.gift {
  background: #5061ec;

  position: relative;
  overflow: hidden;
}

.gift_content {
  display: flex;
  align-items: center;
  height: 438px;
  position: relative;
}

.gift_content > div {
  display: flex;
  flex-direction: column;
}

.gift_content > div > div:nth-child(1) {
  font-weight: 700;
  font-size: 60px;
  line-height: 130%;
  color: #fff;
}

.gift_content > div > div:nth-child(2) {
  background: #fff;
  transform: skew(-15deg);
  height: 75px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  margin: 20px 0 0 -20px;
}

.gift_content > div > div:nth-child(2) > span {
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  transform: skew(15deg);
}

.gift_content > div > div:nth-child(3) {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  line-height: 145%;
}

.gift_button {
  margin-top: 43px;
}

.gift_button > a {
  max-width: 488px;
}

.gift_img {
  position: absolute;
  right: -60px;
  bottom: 0;
}

.gift_mobile {
  background: #5061ec;
  padding: 40px 0;
}

.gift_mobile__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 105%;
  color: #fff;
}

.gift_mobile__line {
  font-weight: 700;
  font-size: 24px;
  line-height: 105%;
  background: #fff;
  padding: 0px 20px;
  margin: 24px -20px 12px -20px;
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.gift_mobile__line img {
  position: absolute;
  right: 0;
}

.gift_mobile__description {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #fff;
}

.gift_mobile__list {
  color: #fff;
}

.gift_mobile__list div:nth-child(1) {
  padding-top: 24px;
  font-weight: 700;
  font-size: 20px;
  line-height: 145%;
}

.gift_mobile__list ul {
  margin: 5px 0 0;
  padding-left: 16px;

  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
}

.gift_mobile_button {
  margin-top: 40px;
}

/** START */
.start {
  padding: 60px 0 86px 0;
  overflow: hidden;
}

.start_container {
  display: flex;
  flex-direction: column;
}

.start_title {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
}
.start_description {
  padding: 10px 0 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
}

.start_wrapper {
  background: #dff7fc;
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.start_left {
  display: flex;
  flex-direction: column;
  width: 570px;
}

.start_left > div:nth-child(1) {
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
}

.start_left > div:nth-child(2) {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.start_left > div:nth-child(2) > span {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;

  background: url("/static/images/bullet.svg") no-repeat left top;
  padding: 0 0 0 48px;
}

.start_left > div:nth-child(4) {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  margin: 15px 0 20px;
}

.start_button a {
  max-width: 488px;
}

.start_img > img {
  width: 640px;
}

.start_img {
  position: absolute;
  right: -10px;
  bottom: -82px;
}

@media (max-width: 1024px) {
  .start {
    padding: 25px 0 30px;
  }
  .start_title {
    font-size: 40px;
    line-height: 110%;
  }
  .start_description {
    font-size: 16px;
    line-height: 135%;
  }

  .start_wrapper {
    padding: 16px;
  }

  .start_left {
    width: 100%;
  }

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

  .start_left > div:nth-child(2) {
    margin-top: 16px;
    gap: 16px;
  }

  .start_left > div:nth-child(2) > span {
    font-size: 16px;
    background-size: 21px 23px;
    padding: 0 0 0 36px;
  }

  .start_left > div:nth-child(4) {
    font-size: 16px;
    margin: 15px 0 20px;
    text-align: center;
  }

  .start_img__mobile img {
    width: 100%;
    margin: 0 0 -20px 0;
  }

  .start_button > a {
    height: 36px;
    font-size: 14px;
  }
}

/**** PAYMENTS ****/
.payment {
  background: #f7598d;
  padding: 80px 0;
}

.payment--blue {
  background: #5061ec;
  padding-bottom: 40px;
  position: relative;
}

.payment-bg--blue {
  pointer-events: none;
  background: url("/static/images/payment-blue-bg.svg") no-repeat left top;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 600px;
  width: 100%;
  background-size: cover;
}

.payment--blue .payment-counter {
  padding-bottom: 100px;
}
.payment-wrapper {
  display: flex;
  gap: 52px;
}
.payment-wrapper > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.payment-title {
  color: #fff;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
}

.payment-title--small {
  font-size: 36px;
}

.payment .link {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 145%;
  text-decoration: underline;
  margin-top: 30px;
}

.payment-description {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.payment-description span {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 145%;
}
.payment-info {
  color: #fff;
  padding: 20px 0 40px;
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
}
.payment-text {
  color: #fff;
  padding: 30px 0 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
}
.payment-counter {
  display: flex;
  gap: 15px;
  align-items: center;
}

.payment-counter > div:first-child {
  display: flex;
  gap: 15px;
}

.payment-counter > div:first-child > div:nth-child(2) {
  color: #fff;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
}

.payment-counter > div:nth-child(2) {
  display: flex;
}
.payment-counter > div:nth-child(2) > span {
  background: #fff;
  width: 82px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 700;
  font-size: 50.52px;
  line-height: 115%;
}

.payment__list {
  color: #fff;
  margin-bottom: 30px;
  display: flex;
}

.payment__list img {
  height: 110px;
}

.payment__price {
  text-align: right;
  margin-top: 40px;
  margin-bottom: -10px;
}

.payment__price-full {
  color: #8b8b8b;
  font-weight: 700;
  font-size: 33px;
  line-height: 120%;
  text-decoration: line-through;
}

.payment__price-final {
  color: #171717;
  font-weight: 700;
  font-size: 78px;
  display: flex;
  flex-direction: column;
  line-height: 120%;
  width: 250px;
  margin-left: auto;
  margin-top: 15px;
}

.payment__price-final__title {
  font-size: 23px;
  line-height: 0.5;
  padding-left: 10px;
  text-align: left;
}

.payment__list div:nth-child(1) {
  padding-top: 25px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 145%;

  max-width: 430px;
}

.payment__list ul {
  margin: 5px 0 0;
  padding-left: 16px;

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

.payment__list li {
  margin-bottom: 20px;
}

.payment-form-wrapper {
  width: 100%;
  max-width: 540px;
  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[type="text"],
.payment-form form > div input[type="tel"],
.payment-form form > div input[type="email"],
.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 .has_equipment {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
}

.payment-form .has_equipment input {
  border-color: #b2b2b2;
  width: 16px;
  min-width: 16px;
  height: 16px;
}

.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.form_button {
  padding-top: 30px;
}

.payment-form form > div.form_button1 {
  padding-top: 10px;
}

.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;
}

.payment_cost {
  font-weight: bold;
  font-size: 16px;
  padding-top: 78px;
}

@media (max-width: 1024px) {
  .payment {
    padding: 40px 0;
  }
  .payment-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .payment-title {
    font-size: 35px;
    text-align: left;
    width: 100%;
  }
  .payment-title--small {
    font-size: 26px;
    line-height: 120%;
  }
  .payment-text {
    font-size: 16px;
    padding-top: 20px;
    line-height: 135%;
  }
  .payment__list div:nth-child(1) {
    padding-top: 20px;
    line-height: 135%;
    font-style: 16px;
    max-width: unset;
  }

  .payment__list img {
    display: none;
  }

  .payment--blue {
    padding-bottom: 80px;
  }

  .payment-bg--blue {
    height: 170px;
  }

  .payment--blue .payment-counter {
    padding-bottom: 10px;
  }

  .payment__list li {
    line-height: 135%;
    font-style: 16px;
    margin-bottom: 15px;
  }

  .payment__desc-wrapper {
    margin-bottom: 40px;
  }
  .payment-title br {
    display: none;
  }
  .payment-description {
    gap: 12px;
  }
  .payment-description > span {
    font-size: 20px;
  }
  .payment-info {
    font-size: 16px;
  }

  .payment-counter {
    gap: 20px;
    flex-direction: column;
    justify-content: center;
  }

  .payment-counter > div:first-child {
    gap: 10px;
  }

  .payment-counter > div:first-child > img {
    width: 24px;
  }

  .payment-counter > div:first-child > div:nth-child(2) {
    font-size: 24px;
  }

  .payment-counter > div:first-child > div:nth-child(2) > br {
    display: none;
  }

  .payment-counter > div:nth-child(2) > span {
    width: 62px;
    height: 72px;
    border-radius: 12px;
    font-size: 38px;
    margin-bottom: 32px;
  }

  .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.politics {
    padding-top: 10px;
    font-weight: 400;
    font-size: 10px;
    line-height: 130%;
  }
  .payment-form div.politics > br {
    display: none;
  }
  .payment_cost {
    font-weight: bold;
    padding-top: 41px;
  }

  .payment_cost.free {
    padding-top: 63px;
  }

  .payment-form .has_equipment {
    font-size: 14px;
  }
}

/** NEXT */
.next > .container {
  background: url("/static/images/nextback.png") no-repeat right bottom;
}

.next_content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 110px 0;
  box-sizing: border-box;
  min-height: 680px;
  align-items: flex-start;
}

.next_title {
  font-weight: 700;
  font-size: 70px;
  line-height: 100%;
}

.next_description {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.next_description > div {
  display: flex;
  gap: 20px;

  font-weight: 700;
  font-size: 28px;
  line-height: 145%;
}

.next_description > div > span:nth-child(1) {
  width: 51px;
  height: 51px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5061ec;
  color: #fff;
  border-radius: 26px;
}

.next_description > div > span:nth-child(2) {
  padding-top: 5px;
}

.next_info {
  position: absolute;
  bottom: -87px;
  right: -77px;
}

@media (max-width: 1024px) {
  .next > .container {
    background: url("/static/images/nextbackmobile.png") no-repeat right bottom;
  }

  .next_content {
    padding: 45px 0 244px 0;
    min-height: auto;
  }

  .next_title {
    font-size: 35px;
  }

  .next_description {
    gap: 12px;
  }

  .next_description > div {
    gap: 15px;
    font-size: 16px;
    font-weight: 400;
  }

  .next_description > div > span:nth-child(1) {
    width: 25px;
    min-width: 25px;
    height: 25px;
    border-radius: 13px;
    font-weight: 700;
  }

  .next_description > div > span:nth-child(2) {
    padding-top: 2px;
  }

  .next_description > div > span:nth-child(2) br {
    display: none;
  }

  .next_info > img {
    max-width: 240px;
  }

  .next_info {
    left: 0;
    bottom: 0;
    right: auto;
    transform: translateY(100%);
  }
}

/** about */
.about {
  background: #dff7fc;
  padding: 80px 0 90px;
}

.about_title {
  font-weight: 700;
  font-size: 48px;
  line-height: 115%;
}

.about_statistic {
  display: flex;
  margin: 60px 0 48px;
  justify-content: space-between;
}

.about_statistic > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about_statistic > div > div:nth-child(1) {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 80px;
  line-height: 110%;
}

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

.about_info {
  background: #fff;
  transform: skew(-5deg);
  padding: 20px 20px 0;
  margin: 0 -20px;
}

.about_info > div:first-child {
  display: flex;
  gap: 6px;
  transform: skew(5deg);
}

.about_content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.about_content > div:nth-child(1) {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  padding-top: 10px;
}

.about_tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about_tags.mobile {
  display: none;
}

.about_tags > span {
  background: #f0f0f0;
  height: 40px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 17px;
  line-height: 140%;
  padding: 0 17px;
  border-radius: 20px;
}

.about_cosmos {
  display: flex;
  align-items: flex-end;
}

@media (max-width: 1024px) {
  .about {
    padding: 40px 0;
  }
  .about_title {
    font-size: 22px;
  }
  .about_statistic {
    flex-direction: column;
    gap: 25px;
    margin: 16px 0 5px;
  }
  .about_statistic > div {
    gap: 0;
  }

  .about_statistic > div > div:nth-child(1) {
    font-size: 70px;
  }

  .about_statistic > div > div:nth-child(2) {
    font-size: 14px;
    margin-top: -4px;
  }

  .about_info {
    background: url("/static/images/about_backmobile.svg") no-repeat center
      center;
    background-size: cover;
    transform: none;
    margin: 0;
    padding: 15px 10px;
    height: 319px;
  }

  .about_info > div:first-child {
    transform: none;
  }

  .about_cosmos {
    display: none;
  }

  .about_info > div:first-child > div:first-child {
    display: none;
  }

  .about_content > div:nth-child(1) {
    font-size: 14px;
    line-height: 110%;
    width: 70%;
  }

  .about_tags.mobile {
    display: flex;
  }

  .about_tags {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
  }

  .about_tags > span {
    height: 28px;
    font-size: 12px;
    line-height: 100%;
    padding: 0 12px;
    border-radius: 14px;
  }
}

/** WRITE */

.write {
  background: #5061ec;
  overflow: hidden;
}

.write_wrapper {
  display: flex;
  flex-direction: column;
  height: 419px;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.write_title {
  color: #fff;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
}

.write_button > a {
  max-width: 488px;
}

.write_img {
  display: flex;
  position: absolute;
  right: -100px;
  bottom: 0;
}

.write_img > img {
  height: 419px;
}

@media (max-width: 1024px) {
  .write {
    padding: 30px 0 0;
  }
  .write_wrapper {
    height: auto;
    gap: 20px;
    padding-bottom: 230px;
  }

  .write_title {
    font-size: 22px;
  }
  .write_button > a {
    max-width: none;
  }
  .write_img {
    right: -20px;
  }
  .write_img > img {
    height: 222px;
  }
}

/** LEARNING */

.learning {
  padding: 40px 0 50px;
}

.learning_content {
  width: 100%;
  background: url("/static/images/learning_back.svg") no-repeat center center;
  background-size: cover;
  height: 340px;
  box-sizing: border-box;
  padding: 99px 0 0 71px;
  position: relative;
}

.learning_content > div {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  max-width: 1000px;
}

.learning_content > div > div {
  display: flex;
  flex-direction: column;
  background: url("/static/images/bullet.svg") no-repeat left top 10px;
  padding-left: 50px;
}

.learning_content > div > div > div:nth-child(1) {
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
}

.learning_content > div > div > div:nth-child(2) {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.learning_owl {
  position: absolute;
  right: -54px;
  bottom: -2px;
  display: flex;
}

@media (max-width: 1024px) {
  .learning {
    padding: 27px 0 0;
  }
  .learning_wrapper > img {
    max-width: 313px;
  }

  .learning_content {
    background: url("/static/images/learning_backmobile.svg") no-repeat center
      center;
    height: auto;
    padding: 33px 10px 92px 10px;
  }

  .learning_content > div {
    gap: 14px;
  }

  .learning_content > div > div {
    padding-left: 20px;
    background-size: 21px 23px;
    padding: 0 0 0 36px;
  }

  .learning_content > div > div > div:nth-child(1) {
    font-size: 20px;
    line-height: 28px;
  }
  .learning_content > div > div > div:nth-child(2) > br {
    display: none;
  }

  .learning_owl {
    right: 0px;
    bottom: 0px;
  }
}

/** WANT */
.want {
  background: #f7598d;
  overflow: hidden;
}

.want_wrapper {
  height: 407px;
  position: relative;
  padding-left: 490px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
}

.want_img {
  display: flex;
  position: absolute;
  left: -80px;
  pointer-events: none;
}

.want_title {
  font-weight: 700;
  font-size: 56px;
  line-height: 115%;
  color: #fff;
}

.want_button > a {
  max-width: 488px;
}

@media (max-width: 1024px) {
  .want {
    padding: 30px 0 0;
  }
  .want_wrapper {
    height: auto;
    gap: 20px;
    padding-left: 0;
    padding-right: 120px;
    padding-bottom: 105px;
  }

  .want_img {
    left: auto;
    right: -20px;
    bottom: 0;
  }

  .want_title {
    font-size: 21px;
  }

  .want_title > br {
    display: none;
  }

  .want_button > a {
    height: 48px;
    font-size: 18px;
    max-width: none;
  }
}

/***************** 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_numbers-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer_numbers-wrapper .footer__number {
  margin-bottom: 20px;
}

.footer_numbers-wrapper .footer__number a {
  font-size: 15.6px;
  line-height: 114.99999999999999%;
  font-weight: 700;
  text-decoration: none;
  color: #171717;
}

.footer_numbers-wrapper .footer__number-caption {
  margin-bottom: 8px;
  font-weight: 400;
  font-style: Regular;
  font-size: 15.6px;
  line-height: 114.99999999999999%;
  letter-spacing: 0%;
}

.footer_copyright--mobile {
  display: none;
}

.footer--promo8 .footer__divider {
  display: none;
}

.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_numbers-wrapper .footer__number a {
    font-size: 10px;
  }
  .footer_numbers-wrapper .footer__number-caption {
    font-size: 10px;
  }

  .footer_numbers-wrapper .footer_copyright {
    display: none;
  }

  .footer_copyright--mobile {
    display: block;
    margin-bottom: 40px;
  }

  .footer--promo8 .footer__divider {
    display: block;
  }

  .footer--promo8 {
    grid-template-columns: 1fr 1fr;
  }

  .footer--promo8 .footer_second {
    order: 2;
  }
  .footer--promo8 .footer_numbers-wrapper {
    order: 3;
  }
  .footer--promo8 .footer_first {
    order: 4;
    grid-column: span 2;
    border-top: 1px solid black;
    padding-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;
  }
}
