@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Michroma";
  src: url("../fonts/Michroma-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --dark: #000;
  --light: #fff;
  --color-txt: rgba(0, 0, 0, 0.8);
  --color-brand: #2aec7c;
  --color-bg: #f7f7f7;
  --font-main: "Gilroy", sans-serif;
  --font-sec: "Michroma", sans-serif;
}

/* GLOBAL */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  background-color: var(--color-bg);
  min-width: 320px;
  -webkit-overflow-scrolling: touch;
  font: 400 20px/1.2 var(--font-main);
  color: var(--color-txt);
}
@media (max-width: 767px) {
  body {
    font-size: 18px;
  }
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: underline;
  transition: all 0.3s;
  color: var(--color-brand);
}
a:hover {
  text-decoration: none;
}

p {
  margin: 0 0 20px;
}
p:last-child {
  margin-bottom: 0;
}

input[type=search], input[type=submit], input[type=text], textarea {
  -webkit-appearance: none;
}

input, textarea {
  width: 100%;
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--color-bg);
  border: 1px solid transparent;
  outline: none;
  font-weight: 600;
  color: var(--dark);
}
input:focus, textarea:focus {
  border-color: var(--color-brand);
}
@media (max-width: 767px) {
  input, textarea {
    font-size: 16px;
  }
}

input {
  height: 3.45em;
}

textarea {
  resize: vertical;
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

input[placeholder] {
  text-overflow: ellipsis;
}

input::-moz-placeholder {
  text-overflow: ellipsis;
}

input:-moz-placeholder {
  text-overflow: ellipsis;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  outline: none;
}

h1, h2, h3, h4, h5, h6,
.heading {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: var(--dark);
}

h1, h2, .heading {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 1360px) {
  h1, h2, .heading {
    font-size: calc(24px + 36 * (100vw - 390px) / 970);
  }
}

.caption {
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 767px) {
  .caption {
    font-size: 20px;
  }
}

/* COMMON */
.text-up {
  text-transform: uppercase;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-underline {
  text-decoration: underline;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: clip;
}

.content-page {
  flex: 1 0 auto;
  min-height: 1px;
  background-color: var(--color-bg);
  position: relative;
  z-index: 99;
}

.container {
  width: 100%;
  max-width: 1360px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTON */
.button {
  display: inline-flex;
  gap: 0 0.4em;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 1.5em;
  padding: 1em 2.05em;
  font-weight: 600;
  color: var(--dark);
  background-color: var(--color-brand);
  outline: none;
  text-decoration: none;
  transition: all 0.3s;
}
.button:hover {
  background-color: rgba(42, 236, 124, 0.75);
}
.button:hover .button__icon {
  -webkit-transform: translateX(0.5em) rotate(0);
  transform: translateX(0.5em) rotate(0);
}
.button__icon {
  display: flex;
  align-items: center;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  margin-top: 0.08em;
}
.button_v1 {
  background-color: var(--dark);
  color: var(--color-brand);
}
.button_v1:hover {
  color: var(--dark);
}
.button_full {
  width: 100%;
}
.button-wrap {
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 575px) {
  .button {
    font-size: 16px;
    padding: 12px 24px;
  }
  .button-wrap {
    margin-top: 40px;
  }
}
@media (max-width: 500px) {
  .button {
    width: 100%;
  }
}

/* HEADER */
.header {
  padding: 15px 0;
}
.header__container {
  display: flex;
  gap: 0 30px;
  align-items: center;
}
.header__end {
  margin-left: auto;
}
.header__grid {
  display: flex;
  align-items: center;
  gap: 0 40px;
}
@media (max-width: 575px) {
  .header__grid {
    gap: 0 20px;
  }
}

/* SECTION */
.section {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .section {
    margin-bottom: 40px;
  }
}
.section__header {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
  max-width: 776px;
  margin: 0 auto 40px;
}
.section__header-caption {
  font-size: 26px;
  line-height: 1;
  color: var(--dark);
}
@media (max-width: 767px) {
  .section__header {
    margin-bottom: 20px;
  }
  .section__header-caption {
    font-size: 18px;
  }
}
.section__divider:not(:last-child), .section__divider.show:not(:last-child) {
  padding-bottom: 60px;
  margin-bottom: 56px;
  border-bottom: 1px solid #ececec;
}
@media (max-width: 767px) {
  .section__divider:not(:last-child), .section__divider.show:not(:last-child) {
    padding-bottom: 40px;
    margin-bottom: 36px;
  }
}
.section__divider.expert--hidden {
  padding-bottom: 0;
  margin-bottom: 0;
}

.box {
  border-radius: 40px;
  padding: 60px;
  background-color: var(--light);
}
@media (max-width: 767px) {
  .box {
    border-radius: 20px;
    padding: 40px 20px;
  }
}

/* INTRO */
.intro-box {
  padding-top: 95px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.intro {
  display: flex;
  flex-direction: column;
  row-gap: 58px;
}
.intro__caption {
  font: 400 208px/1.1 var(--font-sec);
  color: var(--dark);
}
.intro__caption:not(:last-child) {
  margin-bottom: 32px;
}
.intro__slogan {
  font-size: 32px;
  margin: 0 auto 43px;
}
.intro__title {
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  text-transform: none;
  max-width: 622px;
  margin: 0 auto;
}
.intro .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1360px) {
  .intro__caption {
    font-size: calc(82px + 126 * (100vw - 390px) / 970);
  }
  .intro__slogan {
    font-size: calc(18px + 14 * (100vw - 390px) / 970);
  }
  .intro__title {
    font-size: calc(24px + 24 * (100vw - 390px) / 970);
  }
}
@media (max-width: 767px) {
  .intro-box {
    padding-top: 87px;
    padding-bottom: 87px;
  }
  .intro__caption {
    line-height: 1;
  }
  .intro__caption:not(:last-child) {
    margin-bottom: 17px;
  }
  .intro__title {
    margin-bottom: 20px;
  }
  .intro .mobile-hidden {
    display: none;
  }
}

.btn-scroll {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  color: var(--dark);
  border: 1px solid currentColor;
  cursor: pointer;
  transition: color 0.3s;
  padding-top: 8px;
}
.btn-scroll:hover {
  color: var(--color-brand);
}
.btn-scroll svg {
  -webkit-animation: jump 2s linear infinite;
  animation: jump 2s linear infinite;
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* TARGET */
.target, .target__header {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.target__icon {
  max-width: 24px;
}
.target__title {
  margin-bottom: 0;
}
.target__body p:not(:last-child) {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .target-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -28px;
  }
  .target-grid__item {
    width: 33.333%;
    padding: 28px;
  }
}
@media (max-width: 991px) {
  .target-grid__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .target__icon {
    max-width: 16px;
  }
  .target__body {
    font-size: 17px;
  }
}

.list-default {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  padding: 0 0 0 26px;
}
.list-default li:not(:last-child) {
  margin-bottom: 21px;
}

/* PROGRAM */
.program {
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
}
.program:not(:last-child) {
  margin-bottom: 20px;
}
.program__item {
  width: 33.333%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  background-color: var(--color-bg);
}
.program__item.styled {
  background-color: rgba(42, 236, 124, 0.2);
}
.program__label {
  border-radius: 5px;
  padding: 5px 12px;
  background-color: var(--dark);
  color: var(--color-brand);
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.program__title {
  margin-bottom: 0;
}
.program__caption {
  font-weight: 700;
  color: var(--dark);
}
.program__content {
  font-size: 0.9em;
}
.program__content strong {
  font-weight: 600;
}
@media (min-width: 768px) {
  .program__caption {
    padding-top: 3px;
  }
  .program__content {
    padding-top: 7px;
  }
}
@media (max-width: 750px) {
  .program:not(:last-child) {
    margin-bottom: 40px;
  }
  .program__item {
    width: 100%;
    margin-bottom: 5px;
    row-gap: 10px;
  }
  .program__label {
    margin-bottom: 16px;
  }
}

/* EXPERT */
.expert-media {
  margin-bottom: 20px;
}
.expert-media__img {
  border-radius: 20px;
}
.expert-body {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.expert-block_pl {
  padding-left: 36px;
}
.expert-block__title {
  font-weight: 700;
  margin-bottom: 10px;
}
.expert-block__content {
  font-size: 16px;
}
.expert-info__title {
  margin-bottom: 20px;
}
.expert-about {
  display: flex;
  flex-direction: column;
  row-gap: 37px;
}
@media (min-width: 951px) {
  .expert-grid {
    display: flex;
    margin: 0 -20px;
  }
  .expert-grid__item {
    width: 50%;
    padding: 0 20px;
  }
}
@media (max-width: 950px) {
  .expert-grid__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .expert-media {
    margin-bottom: 40px;
  }
  .expert-media__img {
    border-radius: 10px;
  }
  .expert-body {
    row-gap: 20px;
  }
}

/* COUNTER-BOX */
.counter-box {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}
.counter-box__val {
  color: var(--dark);
  font-weight: 600;
  font-size: 60px;
  text-transform: uppercase;
}
.counter-box__title {
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 1360px) {
  .counter-box__val {
    font-size: calc(50px + 10 * (100vw - 390px) / 970);
  }
}

/* LIST */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 24px;
  color: var(--dark);
}
.list li {
  position: relative;
  padding-left: 1.5em;
  min-height: 1em;
}
.list li:not(:last-child) {
  margin-bottom: 12px;
}
.list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1em;
  height: 1em;
  background: url("../img/star.svg") no-repeat 0 0.025em/1em 1em;
}
@media (max-width: 767px) {
  .list {
    font-size: 20px;
  }
}

@media (min-width: 952px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 951px) {
  .desktop-only {
    display: none;
  }
}

/* INFO-BOX */
.info-box {
  border-radius: 20px;
  padding: 40px 60px 60px;
  background-color: var(--dark);
  color: var(--light);
}
.info-box__header {
  text-align: center;
  margin-bottom: 45px;
}
.info-box__title {
  font-size: 32px;
  color: var(--color-brand);
}
.info-box__body {
  display: flex;
  flex-direction: column;
  row-gap: 47px;
}
.info-box__footer {
  border-top: 1px solid rgba(236, 236, 236, 0.3);
  padding-top: 47px;
  margin-top: 47px;
}
.info-box__slogan {
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 767px) {
  .info-box {
    padding: 40px 20px;
  }
  .info-box__header {
    margin-bottom: 20px;
  }
  .info-box__title {
    font-size: 24px;
  }
  .info-box__body {
    row-gap: 37px;
  }
  .info-box__footer {
    padding-top: 40px;
    margin-top: 40px;
  }
}

.info {
  padding-left: 36px;
  background: url(../img/star.svg) no-repeat 0 0.1em/24px 24px;
}
.info__title:not(:last-child) {
  margin-bottom: 21px;
}
@media (min-width: 901px) {
  .info-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -28px;
  }
  .info-grid__item {
    width: 50%;
    padding: 28px;
  }
}
@media (max-width: 900px) {
  .info-grid__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .info {
    padding-left: 24px;
    background-size: 16px 16px;
    background-position: 0 0.17em;
  }
  .info__title:not(:last-child) {
    margin-bottom: 10px;
  }
}

/* BENEFIT */
.benefit {
  background-color: var(--color-bg);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}
.benefit__icon {
  width: 80px;
  height: 80px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit__icon img {
  max-height: 100%;
}
.benefit__title {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .benefit-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -20px;
  }
  .benefit-grid__item {
    width: 50%;
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .benefit-grid__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .benefit__icon {
    width: 60px;
    height: 60px;
  }
}

/* NOTE */
.note {
  border-radius: 10px;
  padding: 20px;
  background-color: #eaebff;
}
.note__title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1em;
}
.note__content {
  font-size: 0.9em;
}

/* ACCORDION */
.accordion {
  background-color: var(--color-bg);
  border-radius: 10px;
}
.accordion:not(:last-child) {
  margin-bottom: 20px;
}
.accordion.is-open .accordion__header {
  padding-bottom: 10px;
}
.accordion.is-open .accordion__icon img {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.accordion.is-open .accordion__body {
  grid-template-rows: 1fr;
}
.accordion.is-open .accordion__content {
  padding-bottom: 20px;
}
.accordion__header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.accordion__header:hover .accordion__title {
  color: var(--color-brand);
}
.accordion__title {
  color: var(--dark);
  transition: color 0.3s;
}
.accordion__icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-content: center;
  margin-left: auto;
  border-radius: 5px;
  background-color: rgba(42, 236, 124, 0.5);
  flex-shrink: 0;
}
.accordion__icon img {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.accordion__content {
  padding-left: 20px;
  padding-right: 20px;
  min-height: 0;
  transition: 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .accordion {
    font-size: 16px;
  }
}

/* FOOTER */
.footer {
  width: 100%;
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.1);
  border-radius: 40px 40px 0 0;
  padding: 147px 0 45px;
  position: sticky;
  left: 0;
  bottom: 0;
}
.footer__title {
  font: 400 208px/1 var(--font-sec);
  text-align: center;
}
@media (max-width: 1360px) {
  .footer__title {
    font-size: calc(60px + 148 * (100vw - 390px) / 970);
  }
}
@media (max-width: 767px) {
  .footer {
    border-radius: 20px 20px 0 0;
    padding: 90px 0 20px;
  }
}

/* FORM */
.form-row:not(:last-child) {
  margin-bottom: 40px;
}
.form-label {
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .form-row:not(:last-child) {
    margin-bottom: 20px;
  }
  .form-label {
    font-size: 16px;
  }
}

.required {
  color: #fe3232;
}

/* MODAL */
.modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  align-items: center;
  display: flex;
  justify-content: center;
  transition: opacity 0.4s, visibility 0.4s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 10px;
}
.modal.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal.is-show .modal__inner {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.modal__bg {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
}
.modal__inner {
  width: 100%;
  max-width: 800px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.modal__content {
  border-radius: 40px;
  overflow: hidden;
  overflow-y: auto;
  background-color: var(--light);
  padding: 60px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}
.modal__hide {
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-content: center;
  position: absolute;
  z-index: 10;
  top: 25px;
  right: 25px;
  border: none;
  background-color: transparent;
  color: var(--color-brand);
}
.modal__hide svg {
  stroke-width: 3px;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  will-change: transform;
}
.modal__hide:hover svg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.modal__header {
  text-align: center;
  margin-bottom: 40px;
}
.modal__subtitle {
  font-size: 24px;
}
@media (max-width: 767px) {
  .modal__content {
    border-radius: 20px;
    padding: 40px 30px;
  }
  .modal__title {
    margin-bottom: 20px;
  }
  .modal__subtitle {
    font-size: 18px;
  }
  .modal__hide {
    top: 0;
    right: 0;
  }
  .modal__hide svg {
    width: 18px;
    height: 18px;
    stroke-width: 5px;
  }
}

.modal-show {
  overflow: hidden;
}

/* HELPERS */
.color-brand {
  color: var(--color-brand);
}

.color-secondary {
  color: rgba(255, 255, 255, 0.6);
}

.fw-normal {
  font-weight: 400;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

/* Phone input styles for intl-tel-input */

.iti {
    width: 100%;
    position: relative;
}

.iti__tel-input {
    width: 100%;
    box-sizing: border-box;
    padding-left: 92px;
}

.iti .iti__country-name {
    color: black;
}

.iti.iti--fullscreen-popup {
    color: black;
    z-index: 9999 !important;
}

.iti .iti__selected-country-primary {
    padding-left: 20px;
}

.expert--hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.expert--hidden.show {
    max-height: 2400px;
    opacity: 1;
}

.info__title.caption.fast-test {
  display: block; 
  margin: 0 auto;
  max-width: 700px;
}