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

/*********** friend-certificate ******************/

.friend-certificate {
  /* min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; */
}

.friend-certificate__wrapper {
  padding: 60px 0;
}

.friend-certificate__title {
  font-family: Evolventa;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  text-align: left;
  margin-bottom: 20px;
}

.friend-certificate__title>span {
  position: relative;
  color: #fff;
  padding: 10px;
  box-sizing: border-box;
  z-index: 1;
}

.friend-certificate__title-span-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f7598d;
  transform: skew(-13deg);
  z-index: -1;
}

.friend-certificate .payment-form {
  padding: 0;
  max-width: 488px;
  box-sizing: border-box;
}

.friend-certificate__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 145%;
  letter-spacing: 0%;
}

.friend-certificate__subtext {
  font-weight: 400;
  font-style: Oblique;
  font-size: 14px;
  line-height: 145%;
  letter-spacing: 0%;
  color: #b2b2b2;
  margin-bottom: 20px;
}

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

.friend-certificate__cert__color-wrapper {
  margin-top: 25px;
  font-family: Evolventa;
  font-weight: 700;
  font-size: 20px;
  line-height: 145%;
  letter-spacing: 0%;
  color: #171717;
  display: flex;
  justify-content: center;
}

.friend-certificate__cert__colors {
  display: flex;
  margin-left: 30px;
}

.friend-certificate__cert__color {
  border-radius: 50%;
  cursor: pointer;
  margin-right: 16px;
  height: 28px;
  width: 28px;
  position: relative;
}

.friend-certificate__cert__color--active::before {
  position: absolute;
  height: 39px;
  width: 39px;
  background-color: transparent;
  border: 3px solid #e2e2e3;
  box-sizing: border-box;
  border-radius: 50%;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.friend-certificate__success-content {
  padding: 250px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}

.friend-certificate__success-content-title {
  font-family: Evolventa;
  font-weight: 700;
  font-size: 50px;
  text-align: center;
  line-height: 114.99999999999999%;
}

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

  .friend-certificate__form-wrapper {
    flex-direction: column;
  }

  .friend-certificate__title {
    font-size: 34px;
  }

  .friend-certificate__text {
    font-size: 18px;
  }

  .friend-certificate__subtext {
    font-size: 13px;
  }

  .friend-certificate__cert {
    margin-bottom: 20px;
    padding-top: 10px;
  }

  .friend-certificate__cert__color-wrapper {
    font-size: 18px;
  }

  .friend-certificate__cert__color {
    height: 21px;
    width: 21px;
  }

  .friend-certificate__cert__color--active::before {
    height: 29px;
    width: 29px;
  }

  .friend-certificate__success-content {
    padding-top: 160px;
    padding-bottom: 226px;
  }

  .friend-certificate__success-content img {
    max-width: 100%;
  }

  .friend-certificate__success-content-title {
    font-size: 34px;
  }
}

/*********** 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;
  cursor: pointer;
}

.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(2)>span {
  font-weight: 700;
  font-size: 20px;
  line-height: 135%;
}

.courses-price>div:nth-child(2)>div:nth-child(3) {
  font-weight: 700;
  font-size: 20px;
  line-height: 135%;
  margin-top: -15px;
}

.courses-price>div:nth-child(2)>div:nth-child(4) {
  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(2)>span>span {
    font-size: 16px;
  }

  .courses-price>div:nth-child(2)>div:nth-child(3) {
    font-size: 16px;
    margin-top: -10px;
  }

  .courses-price>div:nth-child(2)>div:nth-child(4) {
    font-size: 22px;
    width: 73px;
    height: 73px;
    top: 50%;
    left: auto;
    right: 250px;
    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: #f7598d;
  padding: 80px 0;
}

.payment-wrapper {
  display: flex;
  gap: 94px;
}

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

.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: #e2e2e3;
}

.payment-form form>div.button {
  padding-top: 30px;
  position: relative;
}

.payment-form form>div.promosale {
  height: 56px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}

.payment-form form>div.button>div {
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  position: absolute;
  top: 5px;
}

.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 form>div.button>button:disabled {
  background: #f0f0f0;
  color: #8b8b8b;
}

.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: #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;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.request-wrapper form button img {
  display: none;
}

.request-wrapper form button:disabled {
  cursor: default;
}

.request-wrapper form button:disabled>img {
  display: block;
}

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

  .request-wrapper form button img {
    height: 30px;
  }
}

/***************** 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: 30px;
  justify-content: space-between;
}

.footer_last>div {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.footer_last>div>div>label {
  padding-bottom: 8px;
}

.footer_last>div>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: 20px;
    grid-template-areas: "footer_logo footer_logo" "footer_second footer_last" "footer_first footer_first";
  }

  .footer_logo {
    grid-area: footer_logo;
  }

  .footer_second {
    grid-area: footer_second;
  }

  .footer_first {
    grid-area: footer_first;
  }

  .footer_last {
    grid-area: footer_last;
  }

  .footer_logo img {
    width: 128px;
  }

  .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 {
    gap: 18px;
  }

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

  .footer_last>div>div>label {
    padding-bottom: 3px;
  }

  .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;
    border-top: solid 1px #171717;
    padding-top: 20px;
  }

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

/******************** CERTIFICATE-CONGRATS *********************/

.certificate-congrats__header {
  display: flex;
  margin-top: 30px;
  padding-bottom: 90px;
  gap: 60px;
}

.certificate-congrats__header-title {
  font-family: Evolventa;
  font-weight: 700;
  font-style: Bold;
  font-size: 60px;
  margin: 40px 0 24px;
}

.certificate-congrats__header .header-button {
  margin-top: 70px;
}

.certificate-congrats__header .header-button a {
  font-size: 20px;
}

.certificate-congrats__header-text {
  font-family: Evolventa;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 145%;
  margin-bottom: 30px;
}

.certificate-congrats__header-image>img {
  max-width: 728px;

}

.certificate-congrats__list-wrapper {
  background-color: #5061ec;
  padding: 60px 0 84px;
  position: relative;
  overflow: hidden;
}

.certificate-congrats__list-wrapper--pink {
  background-color: #f7598d;
}

.certificate-congrats__list-wrapper .title {
  font-family: Evolventa;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0px;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

.direction-list {
  display: flex;
  flex-wrap: wrap;
}

.direction-list__item {
  background-color: #e2e5fc;
  border-radius: 21px;
  padding: 8px 17px;
  color: #5061ec;
  font-family: Evolventa;
  font-weight: 400;
  font-style: Regular;
  font-size: 17px;
  line-height: 140%;
  margin: 4px;
}

.direction-list--gray>.direction-list__item {
  background-color: #f0f0f0;
  color: #8b8b8b;
}

.direction-subtext {
  font-weight: 700;
  font-style: Bold Oblique;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: 0%;
  margin-top: 8px;
  font-style: italic;
  color: #b2b2b2;
}

.cards-list {
  display: flex;
  justify-content: space-between;
}

.cards-list__item {
  background-color: #fff;
  border-radius: 24px;
  padding: 136px 35px 22px;
  box-sizing: border-box;
  width: 384px;
  height: 290px;
  position: relative;
  margin: 0 3px;
}

.cards-list__item-title {
  font-family: Evolventa;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 120%;
  color: #111827;
  margin-bottom: 12px;
}

.cards-list__item-text {
  font-family: Evolventa;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 145%;
  color: #171717;
}

.container--wide {
  max-width: 1320px;
}

.cards-list__item>.icon {
  background-color: #5061ec;
  border-radius: 50%;
  height: 74px;
  width: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 8px solid #fff;
  position: absolute;
  right: 57px;
  top: -20px;
}

.cards-list__item--pink>.icon {
  background-color: #f7598d;
}

.cards-list__item--pink {
  width: 404px;
  padding: 127px 18px 35px 35px;
}

.cards-list__item--bottom {
  margin-top: 32px;
  padding-top: 60px;
  padding-bottom: 88px;
  width: 100%;
  height: unset;
  position: relative;
}

.cards-list__item--bottom>.boy-image {
  position: absolute;
  bottom: 0px;
  right: -15px;
  max-width: 590px;
}

.certificate-congrats__phone-block {
  background-color: #f1f2fd;
  padding: 60px 0 47px;
  position: relative;
}

.certificate-congrats__phone-block--pink {
  background-color: #fff1f5;
}

.contacts--pink>a {
  background-color: #f7598d;
}

.certificate-congrats__phone-block .title {
  font-family: Evolventa;
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0px;
}

.certificate-congrats__phone-block .text {
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #5061ec;
  margin-top: 45px;
}

.certificate-congrats__contacts-inner {
  max-width: 800px;
}

.certificate-congrats__contacts-inner>.right>img {
  position: absolute;
  bottom: 0;
  right: 50px;
}

.contacts {
  display: flex;
  gap: 40px;
}

.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;
  max-width: 322px;
}

.contacts>span {
  font-family: Evolventa;
  font-weight: 700;
  font-style: Bold;
  font-size: 34.1px;
  letter-spacing: 0px;
  text-align: center;
  color: #171717;
  align-items: center;
  display: flex;
}

.contacts>.contacts__phone>img {
  margin-right: 11px;
}

@media (max-width: 1024px) {
  .certificate-congrats__header {
    flex-wrap: wrap-reverse;
    padding-bottom: 54px;
    gap: 0;
  }

  .certificate-congrats__header-title {
    font-size: 40px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .certificate-congrats__header-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .certificate-congrats__header-image {
    margin: 0;
  }

  .certificate-congrats__header-image>img {
    max-width: 100%;
  }

  .certificate-congrats__header .header-button a {
    max-width: unset;
  }

  .direction-list__item {
    font-size: 13px;
  }

  .certificate-congrats__header .header-button {
    margin-top: 40px;
  }

  .certificate-congrats__list-wrapper {
    padding: 30px 0px 0;
  }

  .certificate-congrats__list-wrapper .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .cards-list {
    flex-direction: column;
    align-items: center;
  }

  .cards-list__item {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 20px 85px 22px 25px;
  }

  .cards-list__item-title {
    font-size: 18px;
  }

  .cards-list__item-text {
    font-size: 16px;
  }

  .cards-list__item>.icon {
    height: 58px;
    width: 58px;
    top: 19px;
    right: 25px;
    border: none;
  }

  .cards-list__item>.icon>img {
    width: 45%;
  }

  .cards-list__item--bottom {
    position: unset;
    padding-right: 133px;
    padding-bottom: 134px;
    height: unset;
    margin-top: 0;
  }

  .cards-list__item--bottom>.boy-image {
    right: -240px;
  }

  .certificate-congrats__contacts-inner {
    max-width: 100%;
  }

  .certificate-congrats__contacts-inner>.right {
    display: flex;
  }

  .certificate-congrats__contacts-inner>.right>img {
    position: unset;
    max-height: 249px;
    margin-left: auto;
  }

  .certificate-congrats__phone-block {
    padding-top: 44px;
    padding-bottom: 0;
  }

  .certificate-congrats__phone-block .title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 24px;
  }

  .contacts {
    display: block;
  }

  .contacts>.contacts__phone {
    font-size: 28px;
  }

  .certificate-congrats__phone-block .text {
    margin-top: 24px;
    font-size: 20px;
  }

  .contacts>a {
    max-width: unset;
    margin-bottom: 30px;
  }
}

/******************** THANKS *********************/

.thanks {
  padding-top: 84px;
  padding-bottom: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.thanks img {
  width: 170px;
}

.thanks-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 50px;
  line-height: 114.99999999999999%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.thanks-title_content {
  font-size: 24px;
  font-weight: 700;
}

.thanks-text {
  margin-bottom: 40px;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: 0%;
  text-align: center;
  max-width: 580px;
}

.thanks-contacts__phone {
  font-weight: 700;
  font-style: Bold;
  font-size: 34.1px;
  line-height: 27.28px;
  letter-spacing: 0px;
  text-align: center;
  margin-top: 37px;
  position: relative;
  padding-bottom: 40px;
}

.thanks-contacts__phone-wrapper {
  display: flex;
  align-items: center;
}

.thanks-contacts__phone img {
  width: 30px;
  margin-right: 17px;
}

.thanks-contacts__phone-subimage {
  width: auto !important;
  position: absolute;
  bottom: 0;
  right: -95px;
  transform: rotate(-6deg);
}

.thanks-contacts__phone img {
  width: 44px;
}

.thanks-contacts img {
  width: 20px;
}

@media (max-width: 1024px) {
  .thanks-contacts__phone-subimage {
    transform: unset;
    position: unset;
    margin-top: 12px;
  }

  .thanks-contacts__phone {
    font-size: 24px;
  }

  .thanks-contacts__phone-image {
    width: 28px;
  }
}

/******************** ACTIVATE CERTIFICATE *********************/
.activate-certificate__header {
  height: 190px;
  background-color: #5061ec;
  position: relative;
}

.activate-certificate__header-img {
  position: absolute;
  right: 160px;
}

.activate-certificate {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.activate-certificate__main {
  padding: 0 20px;
  max-width: 490px;
  padding-top: 90px;
  padding-bottom: 166px;
}

.activate-certificate__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.activate-certificate__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.activate-certificate__main .button {
  padding-top: 20px !important;
}

@media (max-width: 1024px) {
  .activate-certificate__title {
    font-size: 34px;
  }

  .activate-certificate__header {
    height: 138px;
  }

  .activate-certificate__header-img {
    max-width: 270px;
    right: 10px;
    bottom: 0;
  }
}

/******************** TRY YOUR LUCK *********************/

.try-your-luck {
  background-color: #f7598d;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  padding: 150px 0 119px;
  position: relative;
  overflow: hidden;
}

.try-your-luck__title {
  font-family: Evolventa;
  font-weight: 700;
  font-size: 100px;
  line-height: 114.99999999999999%;
  letter-spacing: 0%;
  margin-bottom: 20px;
  text-align: center;
}

.try-your-luck__subtitle {
  font-family: Evolventa;
  font-weight: 700;
  font-size: 50px;
  line-height: 114.99999999999999%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 67px;
}

.try-your-luck__text {
  margin-bottom: 106px;
  font-weight: 400;
  font-size: 30px;
  line-height: 114.99999999999999%;
  letter-spacing: 0%;
  text-align: center;
}

.try-your-luck__button {
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
  color: #171717;
  height: 56px;
  width: 492px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0 auto;
  text-decoration: none;
}

.try-your-luck__background {
  position: absolute;
  top: 115px;
  left: 0;
}

.try-your-luck__background--right {
  top: 70px;
  right: 0;
  left: unset;
}

.try-your-luck__mobile-background {
  display: none;
}

@media (max-width: 1430px) {
  .try-your-luck__background {
    max-width: 420px;
    top: 165px;
  }

  .try-your-luck__background--right {
    top: 135px;
  }
}

@media (max-width: 1024px) {
  .try-your-luck {
    padding: 152px 0 182px;
  }

  .try-your-luck__title {
    font-size: 46px;
    margin-bottom: 30px;
  }

  .try-your-luck__subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 0 40px;
  }

  .try-your-luck__text {
    font-size: 16px;
    margin-bottom: 60px;
    padding: 0 40px;
  }

  .try-your-luck__button {
    width: 335px;
    height: 56px;
  }

  .try-your-luck__background {
    display: none;
  }

  .try-your-luck__mobile-background {
    display: block;
    position: absolute;
    top: 55px;
    left: 0;
  }

  .try-your-luck__mobile-background--bottom {
    top: unset;
    left: unset;
    bottom: 0;
    right: 0;
  }
}

/******************** GIFT *********************/

.gift-wrapper {
  padding: 66px 30px 128px;
  display: flex;
  justify-content: center;
}

.gift-inner {
  max-width: 500px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gift-inner .title {
  font-family: Evolventa;
  font-weight: 700;
  font-size: 70px;
  line-height: 114.99999999999999%;
  color: #171717;
  margin: 30px 0;
}

.gift-button {
  background: #f42468;
  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%;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .gift-wrapper {
    padding: 0 20px 106px;
  }

  .gift-inner .title {
    font-size: 40px;
    margin: 0px 0 20px;
  }

  .gift-inner svg {
    width: 400px;
    max-width: 90%;
  }
}

/******************** 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;
  }
}


.delete-button {
  position: absolute;
  cursor: pointer;
  top: 12px;
  display: none;
  right: 0;
  transform: translateX(100%);
}

.delete-button>img {
  width: 32px;
}

@media (max-width: 1024px) {
  .delete-button {
    transform: translateX(-10px);
  }
}


.spin-container {
  display: flex;
  gap: 70px;
  padding-top: 40px;
}

.spin-info {
  transition: opacity 1s ease-in;
  opacity: 1;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 40px;
  box-sizing: border-box;
  min-height: 660px;
  ;
}

.spin-info_title {
  color: #F7598D;
  font-weight: 700;
  font-size: 80px;
  line-height: 115%;
  letter-spacing: 0%;
}

.spin-info_text {
  width: 500px;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
}

.spin-info .button {
  padding-top: 30px;
}

.spin-info button,
.spin-button_mobile button {
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  border: none;
  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;
  outline: none;
}

.spin-button_mobile button {
  max-width: 100%;
}

.spin-wheel_wrapper {
  transition: all 1s ease-in;
}

.spin-wheel_wrapper>svg {
  width: 574px;
}

.spin-info button:active,
.spin-button_mobile button:active {
  transform: translate(1px, 1px);
}

.spin-winner {
  transition: opacity 1s ease-in;
  position: absolute;
  left: 0;
  top: 0;
  min-height: 660px;
  ;
  box-sizing: border-box;
  padding-top: 40px;

  display: none;
  opacity: 0;
  flex-direction: column;
  gap: 15px;
}

.spin-winner_title {
  color: #F7598D;
  font-weight: 700;
  font-size: 80px;
  line-height: 115%;
}

.spin-winner_text {
  font-weight: 700;
  font-size: 40px;
  line-height: 115%;
}

.spin-winner_img {
  position: absolute;
  bottom: 0;
}


.spin-winner .button>a {
  margin-top: 65px;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  border: none;
  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;
  outline: none;
}

.spin-winner .button>a:active {
  transform: translate(1px, 1px);
}

.spin-infoblock {
  height: 660px;
  position: relative;
  width: 100%;
}

.spin-container.winner-anim .spin-info {
  opacity: 0;
}

.spin-container.winner-anim .spin-winner {
  opacity: 1;
}

@media (max-width: 1024px) {
  .spin-wrapper-mobile {
    overflow: hidden;
  }

  .spin-container {
    flex-direction: column;
    gap: 30px;
  }

  .spin-info {
    gap: 30px;
    position: relative;
    min-height: auto;

    min-height: 278px;
  }

  .spin-winner_img {
    bottom: -30px;
  }

  .spin-info_title {
    font-weight: 700;
    font-size: 40px;
    line-height: 115%;
    text-align: center;
  }

  .spin-info_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    text-align: center;
    width: 100%;
  }

  .spin-info .button {
    display: none;
  }

  .spin-infoblock {
    height: auto;
  }

  .spin-wheel_wrapper>svg {
    width: 100%;
  }

  .spin-container.winner-anim .spin-wheel_wrapper {
    transform: translate(0, calc(50% + 90px)) scale(2, 2);
  }

  .spin-button_mobile {
    transition: opacity 1s ease-in;
  }

  .spin-container.winner-anim .spin-button_mobile {
    opacity: 0;
  }

  .spin-winner {
    gap: 10px;
    width: 100%;
    min-height: 430px;
  }

  .spin-winner_title {
    font-weight: 700;
    font-size: 40px;
    line-height: 115%;
    text-align: center;

  }

  .spin-winner_text {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-align: center;

  }

  .spin-winner .button>a {
    margin-top: 20px;
  }

  .spin-winner_img>img {
    width: 100%;
  }

  .spin-winner .button>a {
    max-width: 100%;
  }
}