:root {
  --iti-hover-color: rgba(0, 0, 0, 0.05);
  --iti-border-color: #ccc;
  --iti-dialcode-color: #999;
  --iti-dropdown-bg: white;
  --iti-spacer-horizontal: 8px;
  --iti-flag-height: 12px;
  --iti-flag-width: 16px;
  --iti-border-width: 1px;
  --iti-arrow-height: 4px;
  --iti-arrow-width: 6px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 6px;
  --iti-arrow-color: #555;
  --iti-path-flags-1x: url(/images/vendor/intl-tel-input/build/flags.webp?bd95ef49b665a571ca041e845485f680);
  --iti-path-flags-2x: url(/images/vendor/intl-tel-input/build/flags@2x.webp?bea0200ba7ea874b359fd5423614fef5);
  --iti-path-globe-1x: url(/images/vendor/intl-tel-input/build/globe.webp?7fb216c936a98b90918e505af20b71d9);
  --iti-path-globe-2x: url(/images/vendor/intl-tel-input/build/globe@2x.webp?5dc7e51d6b5d42fc2be450b5e5e1c54d);
  --iti-flag-sprite-width: 3904px;
  --iti-flag-sprite-height: 12px;
  --iti-mobile-popup-margin: 30px;
}

.iti {
  position: relative;
  display: inline-block;
}
.iti * {
  box-sizing: border-box;
}
.iti__hide {
  display: none;
}
.iti__v-hide {
  visibility: hidden;
}
.iti__a11y-text {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
}
.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  position: relative;
  z-index: 0;
  margin: 0 !important;
}
.iti__country-container {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: var(--iti-border-width);
}
.iti__selected-country {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}
.iti__selected-country-primary {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
}
.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  width: 0;
  height: 0;
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-arrow-color);
}
[dir=rtl] .iti__arrow {
  margin-right: var(--iti-arrow-padding);
  margin-left: 0;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-arrow-color);
}
.iti__dropdown-content {
  border-radius: 3px;
  background-color: var(--iti-dropdown-bg);
}
.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 2;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--iti-border-color);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
}
.iti__search-input + .iti__country-list {
  border-top: 1px solid var(--iti-border-color);
}
.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}
.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}
@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}
.iti__country {
  display: flex;
  align-items: center;
  padding: 8px var(--iti-spacer-horizontal);
  outline: none;
}
.iti__dial-code {
  color: var(--iti-dialcode-color);
}
.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}
.iti__country-list .iti__flag, .iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}
[dir=rtl] .iti__country-list .iti__flag, [dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover, .iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover button {
  cursor: pointer;
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: var(--iti-hover-color);
}
.iti .iti__selected-dial-code {
  margin-left: 4px;
}
[dir=rtl] .iti .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 4px;
}
.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: var(--iti-border-width);
}
.iti--container:hover {
  cursor: pointer;
}

.iti--fullscreen-popup.iti--container {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: var(--iti-mobile-popup-margin);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}
.iti--fullscreen-popup .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  --iti-flag-offset: 100px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  border-radius: 1px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: var(--iti-path-flags-1x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
}

.iti__ac {
  --iti-flag-offset: 0px;
}

.iti__ad {
  --iti-flag-offset: -16px;
}

.iti__ae {
  --iti-flag-offset: -32px;
}

.iti__af {
  --iti-flag-offset: -48px;
}

.iti__ag {
  --iti-flag-offset: -64px;
}

.iti__ai {
  --iti-flag-offset: -80px;
}

.iti__al {
  --iti-flag-offset: -96px;
}

.iti__am {
  --iti-flag-offset: -112px;
}

.iti__ao {
  --iti-flag-offset: -128px;
}

.iti__ar {
  --iti-flag-offset: -144px;
}

.iti__as {
  --iti-flag-offset: -160px;
}

.iti__at {
  --iti-flag-offset: -176px;
}

.iti__au {
  --iti-flag-offset: -192px;
}

.iti__aw {
  --iti-flag-offset: -208px;
}

.iti__ax {
  --iti-flag-offset: -224px;
}

.iti__az {
  --iti-flag-offset: -240px;
}

.iti__ba {
  --iti-flag-offset: -256px;
}

.iti__bb {
  --iti-flag-offset: -272px;
}

.iti__bd {
  --iti-flag-offset: -288px;
}

.iti__be {
  --iti-flag-offset: -304px;
}

.iti__bf {
  --iti-flag-offset: -320px;
}

.iti__bg {
  --iti-flag-offset: -336px;
}

.iti__bh {
  --iti-flag-offset: -352px;
}

.iti__bi {
  --iti-flag-offset: -368px;
}

.iti__bj {
  --iti-flag-offset: -384px;
}

.iti__bl {
  --iti-flag-offset: -400px;
}

.iti__bm {
  --iti-flag-offset: -416px;
}

.iti__bn {
  --iti-flag-offset: -432px;
}

.iti__bo {
  --iti-flag-offset: -448px;
}

.iti__bq {
  --iti-flag-offset: -464px;
}

.iti__br {
  --iti-flag-offset: -480px;
}

.iti__bs {
  --iti-flag-offset: -496px;
}

.iti__bt {
  --iti-flag-offset: -512px;
}

.iti__bw {
  --iti-flag-offset: -528px;
}

.iti__by {
  --iti-flag-offset: -544px;
}

.iti__bz {
  --iti-flag-offset: -560px;
}

.iti__ca {
  --iti-flag-offset: -576px;
}

.iti__cc {
  --iti-flag-offset: -592px;
}

.iti__cd {
  --iti-flag-offset: -608px;
}

.iti__cf {
  --iti-flag-offset: -624px;
}

.iti__cg {
  --iti-flag-offset: -640px;
}

.iti__ch {
  --iti-flag-offset: -656px;
}

.iti__ci {
  --iti-flag-offset: -672px;
}

.iti__ck {
  --iti-flag-offset: -688px;
}

.iti__cl {
  --iti-flag-offset: -704px;
}

.iti__cm {
  --iti-flag-offset: -720px;
}

.iti__cn {
  --iti-flag-offset: -736px;
}

.iti__co {
  --iti-flag-offset: -752px;
}

.iti__cr {
  --iti-flag-offset: -768px;
}

.iti__cu {
  --iti-flag-offset: -784px;
}

.iti__cv {
  --iti-flag-offset: -800px;
}

.iti__cw {
  --iti-flag-offset: -816px;
}

.iti__cx {
  --iti-flag-offset: -832px;
}

.iti__cy {
  --iti-flag-offset: -848px;
}

.iti__cz {
  --iti-flag-offset: -864px;
}

.iti__de {
  --iti-flag-offset: -880px;
}

.iti__dj {
  --iti-flag-offset: -896px;
}

.iti__dk {
  --iti-flag-offset: -912px;
}

.iti__dm {
  --iti-flag-offset: -928px;
}

.iti__do {
  --iti-flag-offset: -944px;
}

.iti__dz {
  --iti-flag-offset: -960px;
}

.iti__ec {
  --iti-flag-offset: -976px;
}

.iti__ee {
  --iti-flag-offset: -992px;
}

.iti__eg {
  --iti-flag-offset: -1008px;
}

.iti__eh {
  --iti-flag-offset: -1024px;
}

.iti__er {
  --iti-flag-offset: -1040px;
}

.iti__es {
  --iti-flag-offset: -1056px;
}

.iti__et {
  --iti-flag-offset: -1072px;
}

.iti__fi {
  --iti-flag-offset: -1088px;
}

.iti__fj {
  --iti-flag-offset: -1104px;
}

.iti__fk {
  --iti-flag-offset: -1120px;
}

.iti__fm {
  --iti-flag-offset: -1136px;
}

.iti__fo {
  --iti-flag-offset: -1152px;
}

.iti__fr {
  --iti-flag-offset: -1168px;
}

.iti__ga {
  --iti-flag-offset: -1184px;
}

.iti__gb {
  --iti-flag-offset: -1200px;
}

.iti__gd {
  --iti-flag-offset: -1216px;
}

.iti__ge {
  --iti-flag-offset: -1232px;
}

.iti__gf {
  --iti-flag-offset: -1248px;
}

.iti__gg {
  --iti-flag-offset: -1264px;
}

.iti__gh {
  --iti-flag-offset: -1280px;
}

.iti__gi {
  --iti-flag-offset: -1296px;
}

.iti__gl {
  --iti-flag-offset: -1312px;
}

.iti__gm {
  --iti-flag-offset: -1328px;
}

.iti__gn {
  --iti-flag-offset: -1344px;
}

.iti__gp {
  --iti-flag-offset: -1360px;
}

.iti__gq {
  --iti-flag-offset: -1376px;
}

.iti__gr {
  --iti-flag-offset: -1392px;
}

.iti__gt {
  --iti-flag-offset: -1408px;
}

.iti__gu {
  --iti-flag-offset: -1424px;
}

.iti__gw {
  --iti-flag-offset: -1440px;
}

.iti__gy {
  --iti-flag-offset: -1456px;
}

.iti__hk {
  --iti-flag-offset: -1472px;
}

.iti__hn {
  --iti-flag-offset: -1488px;
}

.iti__hr {
  --iti-flag-offset: -1504px;
}

.iti__ht {
  --iti-flag-offset: -1520px;
}

.iti__hu {
  --iti-flag-offset: -1536px;
}

.iti__id {
  --iti-flag-offset: -1552px;
}

.iti__ie {
  --iti-flag-offset: -1568px;
}

.iti__il {
  --iti-flag-offset: -1584px;
}

.iti__im {
  --iti-flag-offset: -1600px;
}

.iti__in {
  --iti-flag-offset: -1616px;
}

.iti__io {
  --iti-flag-offset: -1632px;
}

.iti__iq {
  --iti-flag-offset: -1648px;
}

.iti__ir {
  --iti-flag-offset: -1664px;
}

.iti__is {
  --iti-flag-offset: -1680px;
}

.iti__it {
  --iti-flag-offset: -1696px;
}

.iti__je {
  --iti-flag-offset: -1712px;
}

.iti__jm {
  --iti-flag-offset: -1728px;
}

.iti__jo {
  --iti-flag-offset: -1744px;
}

.iti__jp {
  --iti-flag-offset: -1760px;
}

.iti__ke {
  --iti-flag-offset: -1776px;
}

.iti__kg {
  --iti-flag-offset: -1792px;
}

.iti__kh {
  --iti-flag-offset: -1808px;
}

.iti__ki {
  --iti-flag-offset: -1824px;
}

.iti__km {
  --iti-flag-offset: -1840px;
}

.iti__kn {
  --iti-flag-offset: -1856px;
}

.iti__kp {
  --iti-flag-offset: -1872px;
}

.iti__kr {
  --iti-flag-offset: -1888px;
}

.iti__kw {
  --iti-flag-offset: -1904px;
}

.iti__ky {
  --iti-flag-offset: -1920px;
}

.iti__kz {
  --iti-flag-offset: -1936px;
}

.iti__la {
  --iti-flag-offset: -1952px;
}

.iti__lb {
  --iti-flag-offset: -1968px;
}

.iti__lc {
  --iti-flag-offset: -1984px;
}

.iti__li {
  --iti-flag-offset: -2000px;
}

.iti__lk {
  --iti-flag-offset: -2016px;
}

.iti__lr {
  --iti-flag-offset: -2032px;
}

.iti__ls {
  --iti-flag-offset: -2048px;
}

.iti__lt {
  --iti-flag-offset: -2064px;
}

.iti__lu {
  --iti-flag-offset: -2080px;
}

.iti__lv {
  --iti-flag-offset: -2096px;
}

.iti__ly {
  --iti-flag-offset: -2112px;
}

.iti__ma {
  --iti-flag-offset: -2128px;
}

.iti__mc {
  --iti-flag-offset: -2144px;
}

.iti__md {
  --iti-flag-offset: -2160px;
}

.iti__me {
  --iti-flag-offset: -2176px;
}

.iti__mf {
  --iti-flag-offset: -2192px;
}

.iti__mg {
  --iti-flag-offset: -2208px;
}

.iti__mh {
  --iti-flag-offset: -2224px;
}

.iti__mk {
  --iti-flag-offset: -2240px;
}

.iti__ml {
  --iti-flag-offset: -2256px;
}

.iti__mm {
  --iti-flag-offset: -2272px;
}

.iti__mn {
  --iti-flag-offset: -2288px;
}

.iti__mo {
  --iti-flag-offset: -2304px;
}

.iti__mp {
  --iti-flag-offset: -2320px;
}

.iti__mq {
  --iti-flag-offset: -2336px;
}

.iti__mr {
  --iti-flag-offset: -2352px;
}

.iti__ms {
  --iti-flag-offset: -2368px;
}

.iti__mt {
  --iti-flag-offset: -2384px;
}

.iti__mu {
  --iti-flag-offset: -2400px;
}

.iti__mv {
  --iti-flag-offset: -2416px;
}

.iti__mw {
  --iti-flag-offset: -2432px;
}

.iti__mx {
  --iti-flag-offset: -2448px;
}

.iti__my {
  --iti-flag-offset: -2464px;
}

.iti__mz {
  --iti-flag-offset: -2480px;
}

.iti__na {
  --iti-flag-offset: -2496px;
}

.iti__nc {
  --iti-flag-offset: -2512px;
}

.iti__ne {
  --iti-flag-offset: -2528px;
}

.iti__nf {
  --iti-flag-offset: -2544px;
}

.iti__ng {
  --iti-flag-offset: -2560px;
}

.iti__ni {
  --iti-flag-offset: -2576px;
}

.iti__nl {
  --iti-flag-offset: -2592px;
}

.iti__no {
  --iti-flag-offset: -2608px;
}

.iti__np {
  --iti-flag-offset: -2624px;
}

.iti__nr {
  --iti-flag-offset: -2640px;
}

.iti__nu {
  --iti-flag-offset: -2656px;
}

.iti__nz {
  --iti-flag-offset: -2672px;
}

.iti__om {
  --iti-flag-offset: -2688px;
}

.iti__pa {
  --iti-flag-offset: -2704px;
}

.iti__pe {
  --iti-flag-offset: -2720px;
}

.iti__pf {
  --iti-flag-offset: -2736px;
}

.iti__pg {
  --iti-flag-offset: -2752px;
}

.iti__ph {
  --iti-flag-offset: -2768px;
}

.iti__pk {
  --iti-flag-offset: -2784px;
}

.iti__pl {
  --iti-flag-offset: -2800px;
}

.iti__pm {
  --iti-flag-offset: -2816px;
}

.iti__pr {
  --iti-flag-offset: -2832px;
}

.iti__ps {
  --iti-flag-offset: -2848px;
}

.iti__pt {
  --iti-flag-offset: -2864px;
}

.iti__pw {
  --iti-flag-offset: -2880px;
}

.iti__py {
  --iti-flag-offset: -2896px;
}

.iti__qa {
  --iti-flag-offset: -2912px;
}

.iti__re {
  --iti-flag-offset: -2928px;
}

.iti__ro {
  --iti-flag-offset: -2944px;
}

.iti__rs {
  --iti-flag-offset: -2960px;
}

.iti__ru {
  --iti-flag-offset: -2976px;
}

.iti__rw {
  --iti-flag-offset: -2992px;
}

.iti__sa {
  --iti-flag-offset: -3008px;
}

.iti__sb {
  --iti-flag-offset: -3024px;
}

.iti__sc {
  --iti-flag-offset: -3040px;
}

.iti__sd {
  --iti-flag-offset: -3056px;
}

.iti__se {
  --iti-flag-offset: -3072px;
}

.iti__sg {
  --iti-flag-offset: -3088px;
}

.iti__sh {
  --iti-flag-offset: -3104px;
}

.iti__si {
  --iti-flag-offset: -3120px;
}

.iti__sj {
  --iti-flag-offset: -3136px;
}

.iti__sk {
  --iti-flag-offset: -3152px;
}

.iti__sl {
  --iti-flag-offset: -3168px;
}

.iti__sm {
  --iti-flag-offset: -3184px;
}

.iti__sn {
  --iti-flag-offset: -3200px;
}

.iti__so {
  --iti-flag-offset: -3216px;
}

.iti__sr {
  --iti-flag-offset: -3232px;
}

.iti__ss {
  --iti-flag-offset: -3248px;
}

.iti__st {
  --iti-flag-offset: -3264px;
}

.iti__sv {
  --iti-flag-offset: -3280px;
}

.iti__sx {
  --iti-flag-offset: -3296px;
}

.iti__sy {
  --iti-flag-offset: -3312px;
}

.iti__sz {
  --iti-flag-offset: -3328px;
}

.iti__tc {
  --iti-flag-offset: -3344px;
}

.iti__td {
  --iti-flag-offset: -3360px;
}

.iti__tg {
  --iti-flag-offset: -3376px;
}

.iti__th {
  --iti-flag-offset: -3392px;
}

.iti__tj {
  --iti-flag-offset: -3408px;
}

.iti__tk {
  --iti-flag-offset: -3424px;
}

.iti__tl {
  --iti-flag-offset: -3440px;
}

.iti__tm {
  --iti-flag-offset: -3456px;
}

.iti__tn {
  --iti-flag-offset: -3472px;
}

.iti__to {
  --iti-flag-offset: -3488px;
}

.iti__tr {
  --iti-flag-offset: -3504px;
}

.iti__tt {
  --iti-flag-offset: -3520px;
}

.iti__tv {
  --iti-flag-offset: -3536px;
}

.iti__tw {
  --iti-flag-offset: -3552px;
}

.iti__tz {
  --iti-flag-offset: -3568px;
}

.iti__ua {
  --iti-flag-offset: -3584px;
}

.iti__ug {
  --iti-flag-offset: -3600px;
}

.iti__us {
  --iti-flag-offset: -3616px;
}

.iti__uy {
  --iti-flag-offset: -3632px;
}

.iti__uz {
  --iti-flag-offset: -3648px;
}

.iti__va {
  --iti-flag-offset: -3664px;
}

.iti__vc {
  --iti-flag-offset: -3680px;
}

.iti__ve {
  --iti-flag-offset: -3696px;
}

.iti__vg {
  --iti-flag-offset: -3712px;
}

.iti__vi {
  --iti-flag-offset: -3728px;
}

.iti__vn {
  --iti-flag-offset: -3744px;
}

.iti__vu {
  --iti-flag-offset: -3760px;
}

.iti__wf {
  --iti-flag-offset: -3776px;
}

.iti__ws {
  --iti-flag-offset: -3792px;
}

.iti__xk {
  --iti-flag-offset: -3808px;
}

.iti__ye {
  --iti-flag-offset: -3824px;
}

.iti__yt {
  --iti-flag-offset: -3840px;
}

.iti__za {
  --iti-flag-offset: -3856px;
}

.iti__zm {
  --iti-flag-offset: -3872px;
}

.iti__zw {
  --iti-flag-offset: -3888px;
}

.iti__globe {
  background-image: var(--iti-path-globe-1x);
  background-size: contain;
  background-position: right;
  box-shadow: none;
  height: 19px;
}

@media (min-resolution: 2x) {
  .iti__flag {
    background-image: var(--iti-path-flags-2x);
  }
  .iti__globe {
    background-image: var(--iti-path-globe-2x);
  }
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("/landing/fonts/montserrat-v26-cyrillic_latin-regular.woff2") format("woff2"), url("/landing/fonts/montserrat-v26-cyrillic_latin-regular.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("/landing/fonts/montserrat-v26-cyrillic_latin-600.woff2") format("woff2"), url("/landing/fonts/montserrat-v26-cyrillic_latin-600.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("/landing/fonts/montserrat-v26-cyrillic_latin-700.woff2") format("woff2"), url("/landing/fonts/montserrat-v26-cyrillic_latin-700.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  src: url("/landing/fonts/montserrat-v26-cyrillic_latin-800.woff2") format("woff2"), url("/landing/fonts/montserrat-v26-cyrillic_latin-800.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  src: url("/landing/fonts/nunito-v26-cyrillic_latin-700.woff2") format("woff2"), url("/landing/fonts/nunito-v26-cyrillic_latin-700.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 800;
  src: url("/landing/fonts/nunito-v26-cyrillic_latin-800.woff2") format("woff2"), url("/landing/fonts/nunito-v26-cyrillic_latin-800.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 900;
  src: url("/landing/fonts/nunito-v26-cyrillic_latin-900.woff2") format("woff2"), url("/landing/fonts/nunito-v26-cyrillic_latin-900.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  src: url("/landing/fonts/nunito-v26-cyrillic_latin-regular.woff2") format("woff2"), url("/landing/fonts/nunito-v26-cyrillic_latin-regular.woff") format("woff");
}

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

html,
body {
  min-height: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
}

ol,
ul,
li,
body,
p,
a,
input,
button,
select,
textarea,
figure,
figcaption,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

button,
select,
input,
textarea {
  font: inherit;
  color: inherit;
  outline: none;
  border: none;
  background-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

a:hover {
  color: inherit;
}

ul,
li {
  list-style: none;
}

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

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

video,
iframe {
  width: 100%;
  height: 100%;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

svg path {
  fill: currentColor;
  stroke: currentColor;
}

input[type=radio],
input[type=checkbox] {
  position: absolute;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font: 400 0.937rem/1.5 "Montserrat";
  color: #3a184a;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  body {
    font-size: 1.125rem;
  }
}

body.open {
  overflow: hidden;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 36px;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  main {
    gap: 120px;
    margin-bottom: 120px;
  }
}

.container {
  max-width: 1480px;
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}

.container--lg {
  max-width: 1720px;
}

.cover,
picture.cover > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.uppercase {
  text-transform: uppercase;
}

.hide {
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.logo {
  width: 24px;
  height: 28px;
  flex: 0 0 24px;
}

@media (min-width: 768px) {
  .logo {
    width: 54px;
    height: 60px;
    flex: 0 0 54px;
  }
}

.logo--lg {
  width: 54px;
  height: 60px;
  flex: 0 0 54px;
}

.logo--xl {
  width: 54px;
  height: 68px;
  flex: 0 0 54px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  transition: 0.6s;
}

.btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.btn:hover .btn__icon {
  transform: translateX(6px);
}

.btn--xs {
  padding: 8px;
}

@media (min-width: 768px) {
  .btn--xs {
    padding: 12px;
  }
}

.btn--sm {
  padding: 8px;
}

@media (min-width: 768px) {
  .btn--sm {
    padding: 12px 18px;
  }
}

.btn--md {
  padding: 14px;
}

.btn--lg {
  padding: 11px;
}

@media (min-width: 768px) {
  .btn--lg {
    padding: 13px;
  }
}

@media (min-width: 1200px) {
  .btn--lg {
    padding: 16px;
  }
}

.btn--base {
  padding: 10px;
  gap: 8px;
}

.btn--fs-sm {
  font-size: 0.8125rem;
}

.btn--fs-md {
  font-size: 0.75rem;
}

@media (min-width: 1200px) {
  .btn--fs-md {
    font-size: 1rem;
  }
}

.btn--fs-lg {
  font-size: 0.6875rem;
}

@media (min-width: 768px) {
  .btn--fs-lg {
    font-size: 0.875rem;
  }
}

@media (min-width: 1200px) {
  .btn--fs-lg {
    font-size: 1rem;
  }
}

@media (min-width: 1400px) {
  .btn--fs-lg {
    font-size: 1.25rem;
  }
}

.btn--fs-xl {
  font-size: 1.25rem;
}

.btn--round {
  border-radius: 50px;
}

.btn--violet {
  color: #ffffff;
  background-color: #6b298a;
  border: 2px solid #6b298a;
}

.btn--violet .btn__label {
  color: #ebff74;
  transition: 0.4s;
}

@media (hover: hover) {
  .btn--violet:hover:not(:disabled) {
    background-color: #ebff74;
    border-color: #6b298a;
    color: #3a184a;
  }

  .btn--violet:hover:not(:disabled) .btn__label {
    color: #3a184a;
  }
}

.btn--violet:active:not(:disabled) {
  background-color: #ebff74;
  border-color: #6b298a;
  color: #3a184a;
}

.btn--violet:active:not(:disabled) .btn__label {
  color: #3a184a;
}

.btn--yellow {
  background-color: #ebff74;
  border: 2px solid #ebff74;
  color: #3a184a;
}

@media (hover: hover) {
  .btn--yellow:hover:not(:disabled) {
    background-color: #6b298a;
    color: #ffffff;
  }

  .btn--yellow:hover:not(:disabled) .btn__icon {
    color: #ffffff;
    transition: 0.4s;
  }

  .btn--yellow:hover:not(:disabled) .btn__label {
    color: #ebff74;
    transition: 0.4s;
  }
}

.btn--yellow:active:not(:disabled) {
  background-color: #6b298a;
  color: #ffffff;
}

.btn--yellow:active:not(:disabled) .btn__icon {
  color: #ffffff;
  transition: 0.4s;
}

.btn--yellow:active:not(:disabled) .btn__label {
  color: #ebff74;
  transition: 0.4s;
}

@media (min-width: 768px) {
  .btn__text {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transform: translateX(0);
  transition: transform 0.4s;
}

@media (min-width: 768px) {
  .btn__icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }
}

.btn__label {
  font-weight: 800;
}

@media (min-width: 768px) {
  .btn__label {
    font-weight: 700;
  }
}

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

.fw-semi-bold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-extra-bold {
  font-weight: 800;
}

.ff-nunito {
  font-family: "Nunito";
}

.fs-sm {
  font-size: 16px;
}

.fs-md {
  font-size: 18px;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 15;
  cursor: pointer;
  transition: 0.6s;
}

.title {
  font-weight: 800;
  font-size: 1.312rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .title {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .title {
    font-size: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .title {
    font-size: 2.312rem;
  }
}

.title--md {
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .title--md {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .title--md {
    font-size: 2rem;
  }
}

.title--violet {
  color: #9140b7;
}

.title--violet span {
  color: #3a184a;
}

.input {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-size: 1rem;
  padding: 11px 15px;
  color: #3a184a;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px inset #ececec;
  transition: 0.6s;
}

.input::-moz-placeholder {
  font-size: 1rem;
  color: #a8a3aa;
}

.input::placeholder {
  font-size: 1rem;
  color: #a8a3aa;
}

.input:hover {
  box-shadow: 0 0 0 1px inset #a8a3aa;
}

.input:focus {
  box-shadow: 0 0 0 1.5px inset #3a184a;
  color: #3a184a;
}

.input:-webkit-autofill {
  -webkit-text-fill-color: #3a184a !important;
  -webkit-box-shadow: 0 0 0 50px #ffffff inset !important;
  -webkit-background-clip: text;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.input:-webkit-autofill:focus,
.input:-webkit-autofill::first-line {
  -webkit-text-fill-color: #3a184a !important;
  -webkit-box-shadow: 0 0 0 50px #ffffff inset !important;
  font-size: 1rem;
}

.input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 50px #ffffff inset !important;
}

.input--pl-lg {
  padding-left: 44px;
}

.input--pl-xl {
  padding-left: 88px !important;
}

.error-message {
  font-weight: 300;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: #d81153;
}

.checkbox input + .checkbox__text {
  display: inline-block;
  position: relative;
  font-size: 0.875rem;
  padding-left: 30px;
  color: #9140b7;
  cursor: pointer;
}

@media (min-width: 768px) {
  .checkbox input + .checkbox__text {
    font-size: 1rem;
  }
}

.checkbox input + .checkbox__text::before,
.checkbox input + .checkbox__text::after {
  content: "";
  position: absolute;
  transition: 0.4s;
}

.checkbox input + .checkbox__text::before {
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px inset #6b298a;
  background-color: #ffffff;
}

.checkbox input + .checkbox__text::after {
  background-image: url("/landing/img/check.svg");
  background-size: 16px 12px;
  background-repeat: no-repeat;
  background-position: center;
  top: 8px;
  left: 2px;
  width: 16px;
  height: 12px;
}

.checkbox input + .checkbox__text:hover::before,
.checkbox input + .checkbox__text:focus::before {
  box-shadow: 0 0 0 1.5px inset #6b298a;
}

.checkbox input:checked + .checkbox__text::before {
  background-color: #6b298a;
}

.checkbox input:checked + .checkbox__text:hover::before {
  background-color: rgba(107, 41, 138, 0.7);
}

.checkbox input:disabled + .checkbox__text {
  cursor: not-allowed;
}

.checkbox input:disabled + .checkbox__text::before {
  opacity: 0.3;
}

.checkbox .link {
  color: #3a184a;
}

.checkbox .link::before {
  background-color: #3a184a;
}

.link {
  position: relative;
}

.link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: #6b298a;
  transition: 0.6s;
}

.link:hover::before {
  width: 100%;
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid rgba(107, 41, 138, 0.2);
  z-index: 1000;
  transition: 0.4s;
}

@media (min-width: 768px) {
  .floating-btn {
    bottom: 8px;
    right: 8px;
  }
}

.floating-btn:hover {
  background-color: rgba(107, 41, 138, 0.1);
}

.floating-btn img {
  width: 28px;
  height: 28px;
}

.pulse {
  box-shadow: 0 0 0 rgba(128, 0, 128, 0.8);
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

.pulse:hover {
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(128, 0, 128, 0.6);
    scale: 1;
  }

  70% {
    box-shadow: 0 0 0 15px rgba(128, 0, 128, 0);
    scale: 1.05;
  }

  100% {
    box-shadow: 0 0 0 0 rgba(128, 0, 128, 0);
    scale: 1;
  }
}

.lang {
  position: relative;
}

.lang-placeholder {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: #9140b7;
}

.lang-placeholder__icon {
  width: 10px;
  height: 6px;
  color: #9140b7;
  transform: rotate(0deg);
  transition: 0.6s;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 35px);
  right: 50%;
  transform: translateX(50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 0;
  background-color: #ffffff;
  border: 1px solid #f3d1fc;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: 0.6s;
}

.lang-dropdown li {
  display: flex;
}

.lang-dropdown__btn {
  display: flex;
  color: #f3d1fc;
  padding: 0 20px;
  transition: 0.6s;
}

.lang-dropdown__btn:hover,
.lang-dropdown__btn.active {
  color: #9140b7;
}

.lang.open .lang-placeholder__icon {
  transform: rotate(-180deg);
}

.lang.open .lang-dropdown {
  top: calc(100% + 20px);
  opacity: 1;
  pointer-events: initial;
}

@media (min-width: 768px) {
  .lang.open .lang-dropdown {
    top: calc(100% + 10px);
  }
}

.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.burger__icon {
  width: 24px;
  height: 20px;
  color: #6b298a;
}

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

@media (min-width: 992px) {
  .nav {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .nav--row {
    flex-direction: row;
    align-items: center;
  }
}

.nav__link {
  display: flex;
  position: relative;
  transition: 0.6s;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 4px;
  background-color: #3a184a;
  transition: 0.6s;
}

.nav__link.active::after,
.nav__link:hover::after {
  width: 40px;
}

.nav__link:disabled {
  opacity: 0.3;
}

.nav__link--lg {
  padding: 16px 0;
}

.nav__link--lg::after {
  bottom: 14px;
}

.nav__link--white::after {
  background-color: #ffffff;
}

.about-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-inline: 12px;
}

@media (min-width: 768px) {
  .about-block {
    gap: 8px;
    padding: 0;
  }
}

.about-block-title {
  position: relative;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .about-block-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .about-block-title {
    font-size: 1.375rem;
  }
}

.about-block-title--shine {
  padding-left: 46px;
}

@media (min-width: 992px) {
  .about-block-title--shine {
    padding-left: 60px;
  }
}

.about-block-title--shine img {
  width: 36px;
  height: 50px;
  bottom: 0;
  left: 0;
}

@media (min-width: 992px) {
  .about-block-title--shine img {
    width: 48px;
    height: 65px;
  }
}

.about-block-title--arrow {
  padding-left: 26px;
}

@media (min-width: 992px) {
  .about-block-title--arrow {
    padding-left: 45px;
  }
}

.about-block-title--arrow img {
  width: 20px;
  height: 58px;
  top: 15px;
  left: 0;
}

@media (min-width: 992px) {
  .about-block-title--arrow img {
    width: 40px;
    height: 84px;
    top: 22px;
  }
}

.about-block-title--check {
  padding-left: 22px;
}

@media (min-width: 992px) {
  .about-block-title--check {
    padding-left: 28px;
  }
}

.about-block-title--check img {
  top: -3px;
  left: 0;
  width: 22px;
  height: 22px;
}

@media (min-width: 992px) {
  .about-block-title--check img {
    width: 28px;
    height: 28px;
  }
}

.about-block-title img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-block__text {
  padding-right: 6px;
}

@media (min-width: 1200px) {
  .about-block__text {
    padding-right: 20px;
  }
}

.about-block__text span {
  font-weight: 800;
  background-color: #ebff74;
  color: #3a184a;
}

.about-block__goal {
  padding-left: 26px;
  display: flex;
}

@media (min-width: 992px) {
  .about-block__goal {
    padding-left: 44px;
  }
}

.about-block__goal-text {
  padding: 6px;
  background-color: #f3d1fc;
  border: 4.5px solid #ffffff;
  border-radius: 18px;
}

@media (min-width: 992px) {
  .about-block__goal-text {
    border-width: 6px;
    border-radius: 24px;
    padding: 10px 15px;
  }
}

.title-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .title-section {
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0;
  }
}

.title-section--start {
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
}

.title-section--center {
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .title-section--center {
    margin-bottom: 30px;
    gap: 20px;
  }
}

@media (min-width: 992px) {
  .title-section--md {
    max-width: 460px;
    width: 100%;
  }
}

.title-section--sm {
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .title-section--sm {
    margin-bottom: 0;
  }
}

.title-section__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 768px) {
  .title-section__icon {
    width: 114px;
    height: 110px;
  }
}

.title-section__decor {
  display: none;
}

@media (min-width: 992px) {
  .title-section__decor {
    display: flex;
    width: 130px;
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.title-section__heart {
  width: 85px;
  height: 58px;
}

@media (min-width: 992px) {
  .title-section__heart {
    width: 78px;
    height: 100px;
  }
}

@media (min-width: 992px) {
  .title-section__heart--mobile {
    display: none;
  }
}

.title-section__heart--desktop {
  display: none;
}

@media (min-width: 992px) {
  .title-section__heart--desktop {
    display: flex;
  }
}

.title-section-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.title-section-content__decor {
  width: 35px;
  height: 32px;
}

@media (min-width: 768px) {
  .title-section-content__decor {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 992px) {
  .title-section .title {
    font-weight: 800;
  }
}

.card-program {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .card-program {
    border-radius: 24px;
  }
}

@media (min-width: 992px) {
  .card-program:last-child {
    grid-column: span 2;
    width: 70%;
    margin-inline: auto;
  }
}

@media (min-width: 1400px) {
  .card-program:last-child {
    grid-column: span 1;
    width: 100%;
    margin: 0;
  }
}

.card-program--white {
  border: 4px solid #ebff74;
}

@media (min-width: 768px) {
  .card-program--white {
    border-width: 6px;
  }
}

.card-program--white .card-program__bg {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}

@media (min-width: 768px) {
  .card-program--white .card-program__bg {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
  }
}

.card-program--white .card-program__bg img {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
}

@media (min-width: 768px) {
  .card-program--white .card-program__bg img {
    width: calc(100% + 12px);
    height: calc(100% + 12px);
  }
}

.card-program--white .card-program__container {
  padding: 16px;
}

@media (min-width: 768px) {
  .card-program--white .card-program__container {
    padding: 20px 0;
  }
}

.card-program--violet {
  background-color: #6b298a;
  color: #ffffff;
}

.card-program__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.card-program__container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 20px;
  position: relative;
  z-index: 1;
  height: 100%;
}

@media (min-width: 768px) {
  .card-program__container {
    padding: 25px 5px;
    gap: 30px;
  }
}

.card-program__container--center {
  gap: 8px;
  align-items: center;
  text-align: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .card-program__container--center {
    gap: 12px;
  }
}

.card-program__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  .card-program__title {
    font-size: 1.375rem;
  }
}

.card-program__title--regular {
  font-size: 0.9375rem;
  font-weight: 400;
}

.card-program__content {
  display: grid;
  justify-content: space-between;
  gap: 36px;
  max-width: 220px;
  margin-inline: auto;
}

@media (min-width: 576px) {
  .card-program__content {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    width: 100%;
    gap: 12px;
  }
}

@media (min-width: 768px) {
  .card-program__content {
    width: 70%;
  }
}

@media (min-width: 992px) {
  .card-program__content {
    width: 100%;
  }
}

.card-program__icon {
  width: 70px;
  height: 72px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.card-program__title span {
  font-weight: 700;
  font-size: 2.562rem;
  line-height: 0.8;
}

@media (min-width: 768px) {
  .card-program__title span {
    font-size: 3.125rem;
  }
}

.card-program__subtitle {
  color: #f3d1fc;
}

.card-program__subtitle span {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .card-program__subtitle span {
    font-size: 1.5rem;
  }
}

.card-program-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

@media (min-width: 576px) {
  .card-program-box {
    grid-template-columns: 1fr;
  }
}

.card-program-box__num {
  font-weight: 700;
  font-size: 3.375rem;
  line-height: 0.7;
}

.card-program-box__num--sm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 38px;
}

.card-program-box__num img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.card-program-box__num,
.card-program-box__text {
  text-align: center;
}

.card-program-box__text {
  color: #6b298a;
  white-space: nowrap;
}

.card-program-box__img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  grid-column: 2/3;
  grid-row: 1/3;
  align-self: center;
  justify-self: flex-end;
}

@media (min-width: 576px) {
  .card-program-box__img {
    grid-column: 1/2;
    grid-row: 3/4;
    justify-self: center;
    margin-top: 6px;
  }
}

.program-block {
  position: relative;
}

.program-block__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 10px;
  background-color: #f3d1fc;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: 0.6s;
}

@media (min-width: 768px) {
  .program-block__btn {
    gap: 25px;
    padding: 20px 30px;
    font-size: 1.25rem;
    border-radius: 24px;
  }
}

@media (min-width: 1200px) {
  .program-block__btn {
    gap: 50px;
    padding: 20px 60px;
    font-size: 1.375rem;
  }
}

.program-block__count {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: #ffffff;
  -webkit-text-stroke: 1px #3a184a;
  text-stroke: 1px #3a184a;
}

@media (min-width: 768px) {
  .program-block__count {
    font-size: 3.5rem;
    line-height: 0.7;
  }
}

@media (min-width: 1200px) {
  .program-block__count {
    font-size: 4.375rem;
  }
}

.program-block__arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-left: auto;
  color: #3a184a;
  transform: rotate(0deg);
  transition: 0.6s;
}

.program-block__icon {
  display: none;
}

@media (min-width: 992px) {
  .program-block__icon {
    position: absolute;
    bottom: 44px;
    right: 24px;
    display: flex;
    width: 70px;
    height: 96px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.program-block__wrapper {
  height: 0;
  overflow: hidden;
  transition: 0.6s;
}

.program-block__content {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 6px;
  padding: 14px 8px;
  border: 3px solid #f3d1fc;
  background-color: #ffffff;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .program-block__content {
    margin-top: 8px;
    border-width: 6px;
    border-radius: 24px;
    gap: 24px 70px;
    padding: 24px;
  }
}

@media (min-width: 992px) {
  .program-block__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .program-block__content {
    padding: 24px 24px 24px 54px;
  }
}

.program-block__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {
  .program-block__list {
    gap: 24px;
  }
}

.program-block__list--dashed {
  border: 3px dashed #f3d1fc;
  border-radius: 8px;
  padding: 10px 8px;
}

@media (min-width: 768px) {
  .program-block__list--dashed {
    border-width: 6px;
    padding: 14px 24px;
    border-radius: 24px;
  }
}

.program-block__list-title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .program-block__list-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 992px) {
  .program-block__list-title {
    font-size: 1.5rem;
  }
}

.program-block__info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px;
  background-color: #f3d1fc;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .program-block__info {
    border-radius: 24px;
    padding: 25px;
  }
}

@media (min-width: 992px) {
  .program-block__info {
    grid-column: 2/3;
    grid-row: 2/3;
    align-self: center;
    justify-self: center;
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media (min-width: 1200px) {
  .program-block__info {
    padding: 30px 40px;
  }
}

.program-block__info-text,
.program-block__info-label {
  font-weight: 700;
  line-height: 1.3;
}

.program-block__info-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 1.125rem;
  text-align: center;
}

@media (min-width: 768px) {
  .program-block__info-text {
    font-size: 1.25rem;
    display: inline;
  }
}

@media (min-width: 1200px) {
  .program-block__info-text {
    font-size: 1.375rem;
  }
}

.program-block__info-label {
  font-size: 1rem;
  padding: 4px 2px;
  background-color: #ffffff;
  color: #3a184a;
}

@media (min-width: 768px) {
  .program-block__info-label {
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .program-block__info-label {
    font-size: 1.5rem;
  }
}

.program-block__line {
  display: none;
}

@media (min-width: 992px) {
  .program-block__line {
    display: flex;
    position: absolute;
    width: 110px;
    height: 30px;
    left: 52%;
    bottom: 185px;
    transform: translateX(-50%);
  }
}

@media (min-width: 1200px) {
  .program-block__line {
    left: 53%;
  }
}

@media (min-width: 1400px) {
  .program-block__line {
    left: 54%;
  }
}

.program-block-video {
  position: relative;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .program-block-video {
    border-radius: 24px;
  }
}

@media (min-width: 992px) {
  .program-block-video {
    grid-column: 1/2;
    grid-row: 2/3;
    max-width: 610px;
    height: 360px;
  }
}

.program-block-video:hover .copy-icon__circle {
  fill: #6b298a;
}

.program-block-video:hover .copy-icon__triangle {
  fill: #f3d1fc;
}

.program-block-video__poster {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.program-block-video__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 2;
  transition: 0.6s;
}

.program-block-video__btn:disabled {
  opacity: 0.3;
}

.program-block-video .copy-icon path {
  transition: 0.4s;
}

.program-block-video video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.program-block.open .program-block__btn {
  background-color: #ebff74;
}

.program-block.open .program-block__arrow {
  transform: rotate(-180deg);
}

.list--star ul li::before {
  background-image: url("/landing/img/contents/shine-sm.svg");
}

.list--check ul li::before {
  background-image: url("/landing/img/contents/check-sm.svg");
}

.list--sm ul {
  gap: 6px !important;
}

.list--sm ul li {
  gap: 0px !important;
}

.list ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: -moz-fit-content;
  height: fit-content;
}

@media (min-width: 768px) {
  .list ul {
    gap: 16px;
  }
}

.list ul li {
  display: flex;
  gap: 8px;
}

@media (min-width: 768px) {
  .list ul li {
    gap: 12px;
  }
}

.list ul li::before {
  content: "";
  background-position: center;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.video-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 992px) {
  .video-block {
    gap: 24px;
  }
}

.video-block-video {
  position: relative;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .video-block-video {
    height: 440px;
    border-radius: 24px;
  }
}

.video-block-video:hover .play-icon__circle {
  fill: #6b298a;
}

.video-block-video:hover .play-icon__triangle {
  fill: #f3d1fc;
  stroke: #f3d1fc;
}

.video-block-video .play-icon__circle,
.video-block-video .play-icon__triangle {
  transition: 0.6s;
}

.video-block-video__preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.video-block-video__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 2;
}

.video-block-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #6b298a;
  text-align: center;
}

@media (min-width: 768px) {
  .video-block-content {
    gap: 6px;
  }
}

.video-block-content__title {
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .video-block-content__title {
    font-family: "Montserrat";
    font-size: 700;
    font-size: 1.5rem;
    line-height: 1;
  }
}

.slider-pagination {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f3d1fc;
  transition: 0.4s;
  cursor: pointer;
}

.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #6b298a;
}

.slider-navigation {
  display: flex;
  align-items: center;
  gap: 50px;
}

.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.slider-btn svg {
  width: 32px;
  height: 32px;
  color: #3a184a;
  transition: 0.4s;
}

.slider-btn:hover svg {
  color: #9140b7;
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slider-btn--prev {
  transform: rotate(90deg);
}

.slider-btn--next {
  transform: rotate(-90deg);
}

.review-text {
  position: relative;
  height: 180px;
  border: 4px solid #f3d1fc;
  border-radius: 8px;
  padding: 28px 12px 14px;
}

@media (min-width: 992px) {
  .review-text {
    height: 280px;
    border-width: 6px;
    border-radius: 24px;
    padding: 44px 14px 14px;
  }
}

.review-text__quotes {
  position: absolute;
  right: 13px;
  bottom: calc(100% - 20px);
  width: 60px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 992px) {
  .review-text__quotes {
    width: 98px;
    height: 70px;
    bottom: calc(100% - 30px);
    right: 40px;
  }
}

.review-text__img {
  -o-object-fit: contain;
     object-fit: contain;
}

.course-block {
  display: flex;
  flex-direction: column;
  padding: 16px 10px;
  border-radius: 8px;
  background-color: #f3d1fc;
}

@media (min-width: 768px) {
  .course-block {
    border-radius: 24px;
  }
}

@media (min-width: 1200px) {
  .course-block {
    padding: 30px 20px;
  }
}

@media (min-width: 1400px) {
  .course-block {
    min-height: 440px;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .course-block.last-odd {
    width: 50%;
    justify-self: center;
    grid-column: span 2;
  }
}

.course-block__title {
  font-family: "Nunito";
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  text-align: center;
}

@media (min-width: 768px) {
  .course-block__title {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .course-block__title {
    font-family: "Montserrat";
    font-size: 2rem;
    line-height: 1;
  }
}

.course-block__content {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .course-block__content {
    margin-top: 12px;
  }
}

@media (min-width: 768px) {
  .course-block__content {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    gap: 12px;
  }
}

@media (min-width: 1400px) {
  .course-block__content {
    flex-direction: row;
    margin-top: 12px;
  }
}

.course-block__list {
  display: none;
}

@media (min-width: 768px) {
  .course-block__list {
    display: flex;
  }
}

.course-block__img {
  display: block;
  width: 200px;
  height: 106px;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 992px) {
  .course-block__img {
    width: 270px;
    height: 170px;
  }
}

@media (min-width: 1400px) {
  .course-block__img {
    height: 240px;
    margin: 0;
  }
}

.course-block__bottom {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1200px) {
  .course-block__bottom {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

.course-block__boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex: 1;
}

.course-block-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  color: #6b298a;
  border-right: 1px solid #a8a3aa;
  padding-top: 4px;
  padding-bottom: 4px;
}

@media (min-width: 768px) {
  .course-block-box {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.course-block-box:last-child {
  border-right: none;
}

.course-block-box__title {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 0.8;
}

@media (min-width: 992px) {
  .course-block-box__title {
    font-size: 2rem;
    line-height: 1;
  }
}

.course-block-box__title--dark {
  color: #3a184a;
}

.course-block__btn {
  gap: 8px;
  padding: 10px;
}

@media (min-width: 1400px) {
  .course-block__btn {
    flex: 1;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .form {
    gap: 16px;
  }
}

.form__checkbox,
.form__btn {
  margin-top: 4px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field__container {
  position: relative;
}

.field__icon {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transform: translateY(-50%);
  color: #6b298a;
  z-index: 1;
}

.field__text {
  font-weight: 300;
  font-size: 0.8125rem;
  line-height: 1.3;
}

.field__text-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.field.error .input {
  box-shadow: 0 0 0 1.5px inset #d81153;
}

.iti {
  width: 100%;
}

.iti__flag-container {
  left: 44px !important;
}

.header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  max-width: 1720px;
  z-index: 10;
}

@media (min-width: 768px) {
  .header {
    top: 30px;
  }
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: #ebff74;
  border-radius: 8px;
  padding: 8px;
}

@media (min-width: 768px) {
  .header__container {
    padding: 10px 20px;
    border-radius: 24px;
    gap: 5px;
  }
}

@media (min-width: 1200px) {
  .header__container {
    padding-inline: 54px;
    gap: 20px;
  }
}

.header__nav {
  display: none;
}

@media (min-width: 992px) {
  .header__nav {
    display: flex;
    justify-content: space-between;
    flex: 1;
    max-width: 588px;
  }
}

@media (min-width: 1200px) {
  .header__nav {
    max-width: 688px;
  }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .header__actions {
    gap: 10px;
  }
}

@media (min-width: 992px) {
  .header__actions {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1200px) {
  .header__actions {
    gap: 20px;
  }
}

@media (min-width: 992px) {
  .header__burger {
    display: none;
  }
}

.aside {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 15;
  transition: 0.6s;
}

.aside__container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 70px;
  width: 300px;
  height: 100%;
  margin-left: auto;
  padding: 60px 30px;
  background-color: #f3d1fc;
  z-index: 300;
}

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

.aside__close {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
}

.aside__close:hover .aside__icon {
  color: #9140b7;
}

.aside__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #a8a3aa;
  transition: 0.4s;
}

.aside__btn {
  width: 100%;
}

.aside.open {
  right: 0;
  pointer-events: initial;
}

.aside.open .overlay {
  opacity: 1;
  pointer-events: initial;
}

.footer {
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .footer {
    padding-bottom: 30px;
  }
}

.footer__container {
  color: #ffffff;
  background-color: #6b298a;
  border-radius: 8px;
  padding: 24px 16px;
}

@media (min-width: 768px) {
  .footer__container {
    border-radius: 24px;
    padding: 40px 20px;
  }
}

.footer__content {
  max-width: 1440px;
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
  margin-inline: auto;
}

@media (min-width: 1200px) {
  .footer__content {
    flex-direction: row;
    gap: 20px;
  }
}

@media (min-width: 1400px) {
  .footer__content {
    gap: 30px;
  }
}

.footer__left {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

@media (min-width: 1200px) {
  .footer__left {
    justify-content: start;
    width: 100%;
    gap: 20px;
  }
}

@media (min-width: 1400px) {
  .footer__left {
    gap: 30px;
  }
}

.footer__nav {
  gap: 22px;
}

@media (min-width: 1200px) {
  .footer__nav {
    gap: 30px;
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 1400px) {
  .footer__nav {
    gap: 40px;
  }
}

.footer__logo {
  align-self: flex-end;
}

@media (min-width: 768px) {
  .footer__logo {
    align-self: center;
  }
}

.footer__btn {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

@media (min-width: 768px) {
  .footer__btn {
    max-width: 440px;
    margin-left: auto;
  }
}

@media (min-width: 1200px) {
  .footer__btn {
    margin-left: 0;
  }
}

.hero {
  margin-top: 78px;
}

@media (min-width: 768px) {
  .hero {
    margin-top: 140px;
  }
}

.hero__container {
  position: relative;
  height: 700px;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero__container {
    min-height: 700px;
    height: 100%;
    border-radius: 24px;
  }
}

@media (min-width: 992px) {
  .hero__container {
    min-height: 100%;
  }
}

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 20px 8px 10px;
  height: 100%;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 50px;
  }
}

.hero__inner--center {
  gap: 50px;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero__inner--center {
    gap: 0;
  }
}

.hero__title {
  display: flex;
  height: 200px;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 768px) {
  .hero__title {
    max-width: 650px;
    width: 100%;
    height: 300px;
  }
}

@media (min-width: 992px) {
  .hero__title {
    max-width: 100%;
    height: 100%;
    margin: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 992px) {
  .hero__left {
    flex: 0 1 810px;
    gap: 0px;
  }
}

@media (min-width: 992px) {
  .hero__photo {
    flex: 0 1 710px;
  }
}

.hero__img {
  height: 306px;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .hero__img {
    height: 480px;
  }
}

@media (min-width: 992px) {
  .hero__img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    margin: 0;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-inline: auto;
  padding: 10px 0 18px;
  text-align: center;
}

@media (min-width: 576px) {
  .hero__content {
    max-width: 100%;
    width: 80%;
  }
}

@media (min-width: 992px) {
  .hero__content {
    text-align: left;
    width: 100%;
    padding: 0;
    margin: 0;
    gap: 20px;
  }
}

.hero__content .title {
  padding-inline: 34px;
}

@media (min-width: 992px) {
  .hero__content .title {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .hero__btn {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

@media (min-width: 992px) {
  .hero__btn {
    margin: 0;
  }
}

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

.hero__btn--desktop {
  display: none;
}

@media (min-width: 768px) {
  .hero__btn--desktop {
    display: flex;
  }
}

.audience {
  position: relative;
  overflow: hidden;
}

.audience__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 4px solid #ebff74;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .audience__bg {
    border-radius: 24px;
    border-width: 12px;
  }
}

.audience__bg img {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .audience__bg img {
    top: -12px;
    right: -12px;
    left: -12px;
    bottom: -12px;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
  }
}

.audience__content {
  display: grid;
  gap: 12px;
  position: relative;
  padding: 28px 12px;
  z-index: 1;
}

@media (min-width: 768px) {
  .audience__content {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1510px;
    margin-inline: auto;
    padding: 30px;
  }
}

@media (min-width: 1200px) {
  .audience__content {
    grid-template-columns: 1fr 1fr 640px;
    gap: 20px;
    padding-top: 74px;
    padding-bottom: 74px;
  }
}

.audience__title {
  margin-bottom: 8px;
  position: relative;
  padding-right: 60px;
  max-width: 295px;
}

@media (min-width: 768px) {
  .audience__title {
    max-width: 375px;
    grid-column: span 2;
  }
}

@media (min-width: 992px) {
  .audience__title {
    max-width: 550px;
    margin-bottom: 20px;
    padding-right: 110px;
  }
}

.audience__title-img {
  position: absolute;
  top: 6px;
  right: 0;
  width: 48px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 992px) {
  .audience__title-img {
    top: -10px;
    width: 105px;
    height: 118px;
  }
}

.audience-block {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background-color: #f3d1fc;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .audience-block {
    grid-column: span 1;
    border-radius: 24px;
    gap: 16px;
    padding: 20px;
  }
}

@media (min-width: 1200px) {
  .audience-block {
    padding: 26px 30px;
  }
}

@media (min-width: 1200px) {
  .audience-block--first {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}

@media (min-width: 1200px) {
  .audience-block--second {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}

@media (min-width: 1400px) {
  .audience-block--second {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

@media (min-width: 1200px) {
  .audience-block--third {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}

@media (min-width: 1400px) {
  .audience-block--third {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

@media (min-width: 1200px) {
  .audience-block--four {
    grid-column: 1/3;
    grid-row: 4/5;
  }
}

@media (min-width: 1400px) {
  .audience-block--four {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}

.audience-block__img {
  width: 60px;
  height: 58px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 768px) {
  .audience-block__img {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 1200px) {
  .audience-block__img {
    width: 100px;
    height: 100px;
  }
}

.audience-block__text {
  line-height: 1.4;
}

.audience-block__text span {
  font-weight: 800;
}

.audience__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .audience__bottom {
    grid-column: span 2;
  }
}

@media (min-width: 992px) {
  .audience__bottom {
    gap: 20px;
    grid-column: 2/3;
    grid-row: 3/5;
  }
}

@media (min-width: 1200px) {
  .audience__bottom {
    grid-column: 3/4;
    grid-row: 2/5;
  }
}

@media (min-width: 1400px) {
  .audience__bottom {
    grid-column: 3/4;
    grid-row: 2/4;
  }
}

.audience__img {
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 576px) {
  .audience__img {
    height: 100%;
  }
}

.audience__btn {
  width: 100%;
}

@media (min-width: 768px) {
  .audience__btn {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    margin-inline: auto;
  }
}

@media (min-width: 1200px) {
  .audience__btn {
    width: 100%;
  }
}

.audience__btn-label {
  display: none;
}

@media (min-width: 768px) {
  .audience__btn-label {
    display: block;
  }
}

.about {
  position: relative;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .about {
    border-radius: 24px;
    overflow: hidden;
  }
}

.about__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.about__bg img {
  -o-object-position: top;
     object-position: top;
}

@media (min-width: 576px) {
  .about__bg img {
    -o-object-position: center;
       object-position: center;
  }
}

.about__container {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 15px 0 60px;
  z-index: 1;
}

@media (min-width: 768px) {
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
    gap: 20px;
    padding: 65px 20px;
  }
}

@media (min-width: 992px) {
  .about__container {
    align-items: center;
    justify-content: center;
    gap: 35px;
    padding-inline: 30px;
  }
}

@media (min-width: 1200px) {
  .about__container {
    padding-inline: 65px;
    grid-template-columns: minmax(500px, 810px) minmax(485px, 585px);
    gap: 50px;
  }
}

.about__img {
  display: flex;
  height: 320px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}

@media (min-width: 576px) {
  .about__img {
    height: 400px;
  }
}

@media (min-width: 768px) {
  .about__img {
    max-height: 730px;
    height: 100%;
    width: 100%;
    margin: 0;
    -o-object-position: top;
       object-position: top;
  }
}

@media (min-width: 992px) {
  .about__img {
    -o-object-position: center;
       object-position: center;
  }
}

.about__blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 992px) {
  .about__blocks {
    gap: 40px;
  }
}

.about__title {
  position: relative;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  margin: 6px auto 0;
  max-width: 300px;
}

@media (min-width: 768px) {
  .about__title {
    font-size: 1.375rem;
    align-self: center;
    max-width: 100%;
    grid-column: 1/3;
    align-self: center;
  }
}

@media (min-width: 1200px) {
  .about__title {
    margin: auto 0;
  }
}

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

.about__title--desktop {
  display: none;
}

@media (min-width: 1200px) {
  .about__title--desktop {
    display: block;
  }
}

.about__title img {
  position: absolute;
  width: 66px;
  height: 76px;
  top: 30px;
  right: 0;
  transform: rotate(30deg);
}

@media (min-width: 768px) {
  .about__title img {
    width: 115px;
    height: 100px;
    top: 0;
    right: -65px;
  }
}

@media (min-width: 1200px) {
  .about__title img {
    width: 140px;
    height: 120px;
    top: 0;
    right: -80px;
  }
}

.programs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .programs {
    gap: 20px;
  }
}

.programs__cards {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .programs__cards {
    gap: 20px;
  }
}

@media (min-width: 992px) {
  .programs__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1400px) {
  .programs__cards {
    grid-template-columns: 1.7fr 1.7fr 1fr;
  }
}

.programs__blocks {
  display: grid;
  gap: 10px;
}

@media (min-width: 768px) {
  .programs__blocks {
    gap: 16px;
  }
}

.programs__btn {
  margin-top: 6px;
}

@media (min-width: 768px) {
  .programs__btn {
    margin-top: 10px;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.programs__btn-label {
  display: none;
}

@media (min-width: 768px) {
  .programs__btn-label {
    display: block;
  }
}

.study {
  display: grid;
  grid-template-rows: 240px 240px 510px 240px 470px 400px;
  gap: 10px;
}

@media (min-width: 576px) {
  .study {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 300px 560px 470px;
  }
}

@media (min-width: 992px) {
  .study {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 350px 350px 280px;
    gap: 30px;
  }
}

.study-block {
  position: relative;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .study-block:first-child {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

@media (min-width: 992px) {
  .study-block:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

@media (min-width: 992px) {
  .study-block:nth-child(3) {
    grid-column: 3/4;
    grid-row: 1/3;
  }
}

@media (min-width: 992px) {
  .study-block:nth-child(4) {
    grid-column: 1/2;
    grid-row: 2/4;
  }
}

@media (min-width: 1400px) {
  .study-block:nth-child(4) .study-block__text {
    padding-right: 100px;
  }
}

@media (min-width: 992px) {
  .study-block:nth-child(5) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

@media (min-width: 992px) {
  .study-block:last-child {
    grid-column: 2/4;
    grid-row: 3/4;
  }
}

.study-block__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-position: top;
     object-position: top;
}

@media (min-width: 576px) {
  .study-block__img {
    -o-object-position: center;
       object-position: center;
  }
}

.study-block__text {
  position: relative;
  padding: 12px 16px;
  margin-top: auto;
  z-index: 1;
}

@media (min-width: 1200px) {
  .study-block__text {
    padding: 30px;
  }
}

.study-block__text--up {
  margin-top: 0;
}

.study-block__text--p-lg {
  padding: 60px 16px;
}

@media (min-width: 992px) {
  .study-block__text--p-lg {
    width: 45%;
    margin-bottom: auto;
    margin-left: auto;
  }
}

@media (min-width: 1200px) {
  .study-block__text--p-lg {
    padding: 30px 60px;
    width: 50%;
  }
}

@media (min-width: 1400px) {
  .study-block__text--p-lg {
    width: 55%;
  }
}

.study-block__text--p-md {
  padding: 30px 18px;
}

@media (min-width: 1200px) {
  .study-block__text--p-md {
    padding: 40px 30px;
  }
}

.study-block__text--p-sm {
  padding: 20px 16px;
}

@media (min-width: 1200px) {
  .study-block__text--p-sm {
    padding: 30px;
  }
}

@media (min-width: 1400px) {
  .study-block__text--p-sm {
    padding-right: 100px;
  }
}

.study-block__text span {
  font-weight: 800;
}

.banner {
  position: relative;
}

.banner__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.banner__container {
  padding: 40px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 768px) {
  .banner__container {
    flex-direction: row;
    align-items: center;
    padding: 40px 16px;
  }
}

@media (min-width: 992px) {
  .banner__container {
    padding: 50px;
  }
}

@media (min-width: 1400px) {
  .banner__container {
    max-width: 1540px;
    margin-inline: auto;
    padding: 50px;
    min-height: 530px;
  }
}

.banner__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .banner__content {
    flex: 0 0 65%;
  }
}

@media (min-width: 992px) {
  .banner__content {
    gap: 25px;
  }
}

@media (min-width: 1200px) {
  .banner__content {
    max-width: 970px;
    width: 100%;
    flex: 0 0 58%;
    gap: 36px;
  }
}

.banner__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  padding: 0 10px;
  color: #ffffff;
}

@media (min-width: 768px) {
  .banner__text {
    padding: 0;
  }
}

@media (min-width: 992px) {
  .banner__text {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .banner__text {
    font-size: 2rem;
  }
}

.banner__text span {
  font-size: 1.125rem;
  font-weight: 900;
}

@media (min-width: 992px) {
  .banner__text span {
    font-size: 1.625rem;
  }
}

@media (min-width: 1200px) {
  .banner__text span {
    font-size: 2rem;
  }
}

.banner__photo {
  position: relative;
  display: flex;
  height: 225px;
  width: 100%;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 576px) {
  .banner__photo {
    height: 350px;
  }
}

@media (min-width: 768px) {
  .banner__photo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
    margin: 0;
  }
}

@media (min-width: 992px) {
  .banner__photo {
    top: -30px;
    width: 50%;
    height: calc(100% + 30px);
  }
}

@media (min-width: 1200px) {
  .banner__photo {
    top: -60px;
    height: calc(100% + 61px);
  }
}

@media (min-width: 1400px) {
  .banner__photo {
    width: 750px;
  }
}

@media (min-width: 576px) {
  .banner__btn {
    width: 70%;
  }
}

@media (min-width: 768px) {
  .banner__btn {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.banner__btn-label {
  display: none;
}

@media (min-width: 992px) {
  .banner__btn-label {
    display: block;
  }
}

.reviews {
  position: relative;
  overflow: hidden;
}

.reviews__wrapper {
  position: relative;
  width: calc(100% + 40px);
  margin-inline: -20px;
  border-top: 4px solid #ebff74;
  border-bottom: 4px solid #ebff74;
  overflow: hidden;
}

@media (min-width: 768px) {
  .reviews__wrapper {
    border-width: 10px;
  }
}

@media (min-width: 992px) {
  .reviews__wrapper {
    width: 100%;
    margin-inline: 0;
    border: 10px solid #ebff74;
    border-radius: 24px;
  }
}

.reviews__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.reviews__container {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 22px 20px 30px;
  gap: 38px;
}

@media (min-width: 768px) {
  .reviews__container {
    gap: 52px;
  }
}

@media (min-width: 992px) {
  .reviews__container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .reviews__container {
    max-width: 1480px;
    margin-inline: auto;
    overflow: hidden;
  }
}

.reviews__videos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

@media (min-width: 768px) {
  .reviews__videos {
    gap: 30px;
  }
}

.reviews__videos--pt {
  padding-top: 18px;
}

@media (min-width: 768px) {
  .reviews__videos--pt {
    padding-top: 30px;
  }
}

.reviews__slider {
  width: 280px;
}

@media (min-width: 992px) {
  .reviews__slider {
    width: 100%;
  }
}

.reviews__navigation {
  display: none;
}

@media (min-width: 992px) {
  .reviews__navigation {
    display: flex;
    position: absolute;
    right: 20px;
    bottom: calc(100% + 64px);
  }
}

@media (min-width: 1400px) {
  .reviews__navigation {
    right: 0;
  }
}

@media (min-width: 992px) {
  .reviews__navigation--sm {
    bottom: calc(100% + 34px);
  }
}

.reviews__pagination {
  justify-content: center;
}

.reviews__candy {
  position: absolute;
  bottom: 270px;
  right: 14px;
  width: 40px;
  height: 50px;
  z-index: 5;
}

@media (min-width: 992px) {
  .reviews__candy {
    bottom: 20px;
    right: 0;
    width: 138px;
    height: 170px;
  }
}

.reviews__tower {
  display: none;
}

@media (min-width: 1400px) {
  .reviews__tower {
    display: flex;
    position: absolute;
    top: 220px;
    left: -16px;
    width: 96px;
    height: 262px;
    z-index: 2;
  }
}

@media (min-width: 1600px) {
  .reviews__tower {
    left: -50px;
  }
}

.reviews__arrow {
  display: none;
}

@media (min-width: 992px) {
  .reviews__arrow {
    display: flex;
    position: absolute;
    width: 66px;
    height: 174px;
    top: 616px;
    left: 10px;
    z-index: 2;
  }
}

@media (min-width: 1600px) {
  .reviews__arrow {
    top: 590px;
    left: 40px;
  }
}

.courses {
  display: grid;
  gap: 10px;
}

@media (min-width: 768px) {
  .courses {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .courses {
    gap: 20px;
  }
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: 0.6s;
  z-index: 15;
}

.modal.open {
  opacity: 1;
  pointer-events: initial;
}

.modal.open .overlay {
  opacity: 1;
  pointer-events: initial;
}

.modal__wrapper {
  position: relative;
  z-index: 300;
  max-width: 850px;
  width: 100%;
  height: 100%;
  padding: 15px 12px;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .modal__wrapper {
    display: block;
    max-height: calc(100vh - 40px);
    height: auto;
    padding: 20px;
    border-radius: 24px;
    overflow: hidden;
  }
}

@media (min-width: 1200px) {
  .modal__wrapper {
    padding: 40px 40px 40px 40px;
  }
}

.modal__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  margin-top: 16px;
  position: relative;
  overflow-y: auto;
  z-index: 21;
}

@media (min-width: 768px) {
  .modal__container {
    flex-direction: row;
    padding-left: 20px;
    max-height: calc(100vh - 190px);
    overflow-y: auto;
  }
}

@media (min-width: 992px) {
  .modal__container {
    margin-top: 36px;
  }
}

.modal__container::-webkit-scrollbar {
  display: none;
}

.modal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media (min-width: 992px) {
  .modal__content {
    gap: 20px;
  }
}

.modal__content::-webkit-scrollbar {
  display: none;
}

.modal__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.modal__form {
  max-width: 420px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .modal__form {
    margin-inline: 0;
  }
}

.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: auto;
}

.modal-close:hover .modal-close__icon {
  opacity: 1;
}

.modal-close__icon {
  width: 18px;
  height: 18px;
  opacity: 0.5;
  transition: 0.4s;
}

.modal__title {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  .modal__title {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .modal__title {
    font-weight: 800;
    font-size: 2rem;
    margin-top: 12px;
  }
}

.modal__subtitle {
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #6b298a;
  text-align: center;
  max-width: 420px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .modal__subtitle {
    font-size: 1rem;
    text-align: left;
    margin-inline: 0;
  }
}

@media (min-width: 992px) {
  .modal__subtitle {
    font-family: "Nunito";
    font-weight: 800;
    font-size: 1.125rem;
  }
}

.modal__photo {
  height: 288px;
  margin-bottom: -15px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 768px) {
  .modal__photo {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 300px;
    height: 563px;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .modal__photo {
    right: 40px;
  }
}

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

.modal__photo--desktop {
  display: none;
}

@media (min-width: 768px) {
  .modal__photo--desktop {
    display: flex;
  }
}

@media (min-width: 992px) {
  .modal__btn {
    max-width: 290px;
    width: 100%;
    margin-inline: auto;
    padding: 15px;
  }
}

.modal-success__wrapper {
  height: auto;
  max-width: 500px;
  padding: 40px;
}

.modal-success__title {
  margin-top: 0;
  font-size: 1.5rem;
}

.modal-success__container {
  margin-top: 0;
  flex-direction: column;
  gap: 40px;
}

.modal-success__btn {
  width: 100%;
}

/*
$breakpoints
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/

.change-price-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  width: 50%;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 200;
}

@media (max-width: 37.5em) {
  .change-price-modal {
    width: 90%;
  }
}

.change-price-modal__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
}

.change-price-modal__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 37.5em) {
  .change-price-modal__title {
    font-size: 26px;
  }
}

.change-price-modal__text {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 37.5em) {
  .change-price-modal__text {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.change-price-modal__btns {
  display: flex;
  gap: 20px;
}

@media (max-width: 37.5em) {
  .change-price-modal__btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

.change-price-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.change-price-modal__close:focus {
  outline: none;
}

.change-price-modal__close img {
  width: 32px;
  height: 32px;
}

.change-price-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.change-price-modal #price-increase-countdown {
  font-family: "Courier New", monospace;
  font-size: 22px;
  font-weight: bold;
  color: red;
}

.change-price-modal .price-increase-date-text {
  font-size: 14px;
  color: #888;
  margin-top: 8px;
}

.btn-site {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  padding: 10px 18px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: 0.4s;
}

.btn-site:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-site--round {
  border-radius: 28px;
}

.btn-site--green {
  color: #fff;
  background-color: #98b000;
  border: 1px solid #98b000;
}

.btn-site--green:hover {
  color: #98b000 !important;
  background-color: #fff;
}

.btn-site--violet {
  background-color: #6b298a;
  color: #fff;
}

.btn-site--violet:hover {
  color: #fff !important;
  background-color: #98b000;
}

.btn-site--lg {
  padding: 20px 30px;
}

.btn-site--md {
  padding: 14px 20px;
}

.btn-site--outlined-green {
  border: 1px solid #98b000;
  background-color: #fff;
  color: #6b298a;
}

.btn-site--outlined-green:hover {
  background-color: #98b000;
  color: #fff;
}



/*# sourceMappingURL=app.css.map*/