/* CSS by 3DGROUND */

/* @import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap') layer(fonts); */

:root {
    --primary-color: #041154;
    --secondary-color: #BF89A4;
    --tertiary-color: #E6D2DC;
    --font-family: 'Roboto Flex', sans-serif;
    --font-size: 16px;
    --font-size-h1: 56px;
    --font-size-h2: 44px;
    --font-size-h3: 24px;
    --font-weight: 400;
    --line-height: 130%;
    --background-color: #F1EDE5;
    --text-color: #161616;
    --text-color-secondary: #F1EDE5;
    --border-radius: 2px;
    --border-color: #F1EDE580;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --padding-inline: 32px;
    --transition: all 0.2s ease;
    --sticky-top: 86px;
    --marquee-duration: 160s;
}

.iti__selected-flag {
    bottom: 0 !important;
    position: absolute !important;
    height: 54px !important;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    line-height: 110%;
    letter-spacing: -1%;
    font-weight: 500;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }

picture {
    width: 100%;
}

input, textarea {
    border-radius: none;
    outline: none;
}

p + ul, p + ol {
    margin-top: 0;
}

.bg-ternary { background-color: var(--tertiary-color); }

.font-roboto-flex {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
}

.lazy {
    opacity: 0;
    transition: .8s linear opacity
}

.dummy-loader {
    position: relative;
    width: 100%;
    background-color: #0000001a;
    display: flex;
    animation: breathe 1.4s alternate-reverse infinite;
    animation-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
    /* cursor: pointer; */
}

@keyframes breathe {
    0% {
        background-color: #0000000f
    }

    50% {
        background-color: #00000038
    }

    0% {
        background-color: #0000000f
    }
}

.dummy-loader img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.font-weight-100 { font-weight: 100; }
.font-weight-200 { font-weight: 200; }
.font-weight-300 { font-weight: 300; }
.font-weight-400 { font-weight: 400; }
.font-weight-500 { font-weight: 500; }
.font-weight-600 { font-weight: 600; }
.font-weight-700 { font-weight: 700; }
.font-weight-800 { font-weight: 800; }

.font-spacing-0 { letter-spacing: 0; }
.font-spacing-1 { letter-spacing: 0.01em; }
.font-spacing--1 { letter-spacing: -0.01em; }

.font-12 { font-size: 12px; }
.font-14 { font-size: 14px; }
.font-16 { font-size: 16px; }
.font-18 { font-size: 18px; }
.font-20 { font-size: 20px; }
.font-24 { font-size: 24px; }
.font-32 { font-size: 32px; }
.font-44 { font-size: 44px; }
.font-56 { font-size: 56px; }
.font-72 { font-size: 72px; }
.font-100 { font-size: 100px; }
.font-120 { font-size: 120px; }

.text-center { text-align: center; }
.text-ternary { color: var(--tertiary-color); }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-upper { text-transform: uppercase; }
.text-regular { font-weight: 200; }
.text-bold { font-weight: 500; }
.text-medium { font-weight: 400; }

* {
    box-sizing: border-box;
    outline: 0 !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.5) transparent
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    line-height: var(--line-height);
    background-color: var(--background-color);
    color: var(--text-color);
    scroll-behavior: smooth;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--text-color);
    text-decoration: underline;
}

a.underline {
    text-decoration: underline;
}
a.underline:hover {
    text-decoration: none;
}

.dark a {
    color: var(--text-color-secondary);
}

header {
    width: 100%;
    background-color: var(--background-color);
    position: sticky;
    top: 0;
    z-index: 400;
}

header.dark {
    background-color: var(--primary-color);
    color: var(--text-color-secondary);
}

ol.numbered {
    list-style: none;
    margin: 0;
    padding: 0;

    counter-reset: item calc(var(--start, 1) - 1);

    display: flex;
    flex-direction: column;
}

ol.numbered li {
    counter-increment: item;
    padding-left: 24px;
    position: relative;
}

ol.numbered li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.numbered ol {
    margin: 0;
    padding: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--padding-inline);
    position: relative;
}

.container.nodplr { padding-inline: 0; }

.dplr {padding-inline: var(--padding-inline); }

.wrapper {
    width: 100%;
    max-width: 100%;
    background-color: var(--background-color);
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.wrapper.dark {
    background-color: var(--primary-color);
    color: var(--text-color-secondary);
}

.btn {
    display: inline-block;
    padding: 16px 20px;
    background-color: var(--primary-color);
    color: var(--text-color-secondary);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    /* line-height: 120%; */
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 100% !important;
}

.dark .btn {
    background-color: var(--tertiary-color);
    color: var(--primary-color);
}

.dark .btn:hover,
.btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-color-secondary);
    text-decoration: none;
}

.btn-light,
.dark .btn-light {
    color: #161616;
    background-color: var(--text-color-secondary);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-hollow {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}


.btn-hollow:hover {
    background-color: var(--primary-color);
    color: var(--text-color-secondary);
    text-decoration: none;
}


.dark .btn-hollow {
    background-color: transparent;      
    border-color: var(--background-color);
    color: var(--background-color);
}

.dark .btn-hollow:hover {
    background-color: var(--background-color);
    color: var(--primary-color);
    text-decoration: none;
}

.btn-arrow {
    display: inline-flex;
    padding: 10px 12px;
    text-decoration: none;
    transition: .35s linear all;
    min-height: 45px;
    min-width: 45px;
    cursor: pointer;
    position: relative;
    font-size: 17px;
    line-height: 100%;
    user-select: none !important;
    align-items: center;
    gap: 12px;
    font-weight: 300;
    width: max-content;
    border: 1px solid white;
    color: var(--text-color);
}

.btn-arrow.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}


.btn-arrow:hover {
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
}


.btn-arrow>.arrow-mask {
    transition: .35s linear all;
    background-color: white;
}

.btn-arrow:hover>.arrow-mask {
    background-color: var(--primary-color);
}

.arrow-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 43px;
    height: 43px
}

.arrow-mask.left {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 43 43'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='m13.016 21 5.755-3.575-.527-.85-7.244 4.5v.85l7.244 4.5.527-.85L13.016 22H32v-1H13.016Z' clip-rule='evenodd'/%3E%3C/svg%3E")
}

.arrow-mask.right {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 43 43'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='m29.984 21-5.755-3.575.527-.85 7.244 4.5v.85l-7.244 4.5-.527-.85L29.984 22H11v-1h18.984Z' clip-rule='evenodd'/%3E%3C/svg%3E")
}

.ico-arrow-left {
    display: inline-block;
    width: 43px;
    height: 27px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='var(--primary-color)' viewBox='0 0 43 43'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='m13.016 21 5.755-3.575-.527-.85-7.244 4.5v.85l7.244 4.5.527-.85L13.016 22H32v-1H13.016Z' clip-rule='evenodd'/%3E%3C/svg%3E")
}

.pointer { cursor: pointer; }
.flex { display: flex; }
.flex-1 { flex: 1; }
.flex-inline { display: inline-flex !important; }
.flex-center { align-items: center; }
.flex-space-between { justify-content: space-between; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-v-center { align-items: center; }
.flex-h-center { justify-content: center; }
.flex-h-left { justify-content: flex-start; }
.flex-h-right { justify-content: flex-end; }
.flex-v-top { align-items: flex-start !important; }
.flex-no-wrap { flex-wrap: nowrap; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }

.g-60 { gap: 60px; }
.g-44 { gap: 44px; }
.g-32 { gap: 32px; }
.g-24 { gap: 24px; }
.g-20 { gap: 20px; }
.g-16 { gap: 16px; }
.g-8 { gap: 8px; }
.g-4 { gap: 4px; }

.text-limit-678 { max-width: 678px; }
.text-limit-600 { max-width: 600px; }
.text-limit-536 { max-width: 536px; }
.text-limit-477 { max-width: 477px; }
.text-limit-415 { max-width: 415px; }

.sticky { position: sticky; top: 0;}
.fixed { position: fixed; }
.top-32 { top: 32px; }

.lh-100 { line-height: 100%; }
.lh-110 { line-height: 110%; }
.lh-120 { line-height: 120%; }
.lh-130 { line-height: 130%; }
.lh-150 { line-height: 150%; }

.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}


.top {
    width: 100%;
    background-color: var(--background-color);
    min-height: 140vh;
    display: flex;
    flex-direction: column;    
    z-index: 0;
    position: relative;
    color: var(--primary-color);
}

.top-cta-text {
    font-size: 100px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1%;    
    position: fixed;
    top: 0;
    padding: 32px var(--padding-inline);
    margin: 0;
}

.md-top-cta-text {
    font-size: 56px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1%;
    margin-top: 44px;
}

.top-cta-logo {
    position: fixed;
    bottom: 32px;
    padding: 0 var(--padding-inline);
}

.top-cta-subtext {
    position: fixed;
    bottom: 32px;
    left: 50%;
    padding-inline: var(--padding-inline);
    max-width: 477px;
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 1%;
    color: var(--text-color);
}

.top-cta-subvideo {
    position: absolute;
    width: 50%;
    bottom: 32px;
    left: 50%;
    padding-inline: var(--padding-inline);
}

.top-cta-video {
    align-self: center;
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    transform: scale(0.2) translateY(-50%);
    transform-origin: center;
    animation: scaleUp linear forwards;
    animation-timeline: scroll();
    animation-range: 0% 30vh;
    animation-timing-function: ease-out;
    z-index: 5;
}

.top.dark {
    background-color: var(--primary-color);
    color: var(--text-color-secondary);
}

.vhr {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: var(--secondary-color);
    align-self: center;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.hhr {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}

.dark .vhr {
    background-color: var(--border-color);
}

.hr {
    width: 100%;
    height: 1px;
    background-color: var(--secondary-color);
    margin: 0;
}

.dark .hr,
.hr.dark {
    background-color: #7B7F9D;
}

@keyframes scaleUp {
    0% {
        transform: scale(0.2);
    }   
    100% {
        transform: scale(1.0); 
    }
}


.header-secondary {
    font-weight: 500;
    font-size: 14px;
    line-height: 117%;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.header-secondary::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    margin-right: 16px;
    vertical-align: middle;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.dark .header-secondary::before {
    background-color: var(--tertiary-color);
}

.dark .header-secondary {
   color: var(--tertiary-color);
}

.perks-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.perk {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--secondary-color);
    min-height: 112px;
    background-color: var(--background-color);
    position: sticky;
    top: var(--sticky-top);
}

.dark .perk {
    background-color: var(--primary-color);
    color: var(--text-color-secondary);
    border-color: var(--border-color);
}

.perk:first-child::before {
    display: none;
}

.perk > * {
    flex: 1;
}

.perk:last-child {
    padding-bottom: 0;
    min-height: calc(112px - 24px);
}

.round {
    width: 20px;
    height: 20px;
    border-radius: 50%;  
    box-sizing: content-box;    
    background-color: var(--secondary-color);
    border: 12px solid var(--tertiary-color);
}

.dark .round {
    background-color: transparent;
}

.blocks-wrapper {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.block {
    display: flex;
    flex-direction: column;
    padding: 32px 16px;
    border: 1px solid #0411547d;
    flex: 1;
    color: var(--primary-color)
}

.dark .block {
    border-color: var(--border-color);
    color: var(--text-color-secondary);
}

.block h3, .block .text {
    padding-inline: 16px;
}

.block .text {
    border-top: 1px solid #0411547d;
}

.dark .block .text {
    border-color: var(--border-color);
}

.double-grid {
    display: flex;
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.double-grid > div {
    flex: 1;
}

.double-grid > div:first-child {
    border-right: 1px solid var(--secondary-color);
}

.grid-perks-wrapper,
.grid-qna-wrapper,
.grid-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.grid-perk {
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-top: 1px solid var(--secondary-color);
    min-height: 150px;
    background-color: var(--background-color);
    position: sticky;
    top: var(--sticky-top);
}

.grid-perk:first-child::before {
    display: none;
}

.grid-sticky {
    position: sticky;
    top: var(--sticky-top);
}

.grid-faq {
    display: flex;
    flex-direction: column;
    padding: 24px 32px;
    border-top: 1px solid var(--secondary-color);
    background-color: var(--background-color);        
}

.grid-qna {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    border-top: 1px solid var(--secondary-color);
    background-color: var(--background-color);        
}

.grid-faq:first-child {
    border-top: none;
}

.grid-faq .text {
    opacity: 0.65;
}

.fake-grid-footer {
    width: 100%;
    background-color: var(--background-color);
    border-top: 1px solid var(--secondary-color);
    margin-top: -1px;
    z-index: 100;
    position: relative;
    will-change: transform;
    transform: translateZ(-1px)
}

.fix-z-index-issue {
    will-change: transform;
    transform: translateZ(0);
}

.sup {
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.dark .sup {
    color: var(--tertiary-color);    
}

.dark .grid-faq {
    background-color: var(--primary-color);
    color: var(--text-color-secondary);
    border-color: var(--border-color);
}

.dark .double-grid,
.dark .double-grid > div:first-child {
    border-color: var(--border-color);
}

.accordeon-text {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: .25s ease-out grid-template-rows;
    font-weight: 300;
    font-size: 15px;
    line-height: 130%;
    letter-spacing: .04em;
}

.accordeon label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.accordeon-text>div {
    overflow: hidden;
    opacity: 0;
    transition: .4s linear opacity;
    transition-delay: .15s
}

.accordeon input:checked~.accordeon-text {
    grid-template-rows: 1fr;
}

.accordeon input:checked~.accordeon-text>div {
    opacity: 1;
    transition-delay: 0
}

.accordeon input:checked~label .small-plus::after {
    transform: rotate(-45deg);
}

.accordeon input:checked~label .small-plus::before {
    transform: rotate(45deg);
}


.small-plus {
    width: 27px;
    min-width: 27px;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.small-plus-15 {
    width: 15px;
    min-width: 15px;
}

.small-plus::before,
.small-plus:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--secondary-color);
    position: absolute
}

.dark .small-plus::before,
.dark .small-plus:after {
    background-color: var(--secondary-color);
}

.small-plus:after{
    transition: .2s ease-out transform, .1s ease-out opacity;
    transform: rotate(-90deg);
    opacity: 1
}

.small-plus::before {
    transition: .2s ease-out transform, .1s ease-out opacity;
    opacity: 1
}


.counter {
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    display: flex;
    user-select: none;
}

.marquee-item {
    display: flex;
    animation: marquee var(--marquee-duration, 160s) linear infinite;
    position: relative;
    will-change: transform;
}

.speakers-wrapper {
    display: flex;
    overflow: hidden; 
    border-bottom: 1px solid var(--border-color);
}

 #speakers {
    --f-carousel-spacing: 0;
    --f-carousel-slide-width: 50%;    
}

.speaker {
    display: flex;
    --f-carousel-slide-padding: 0 var(--padding-inline) var(--padding-inline) var(--padding-inline);    
    width: 50%;
    border-right: 1px solid var(--border-color);
}

.speaker:last-child {
    border-right: none;
    padding-right: 0;
}

.speaker:first-child {
    padding-left: 0;
}

.counters-wrapper {
    display: flex;
}

.counters-wrapper .cnt {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--tertiary-color);
    padding-inline: 32px;
    padding-bottom: 32px;
    flex: 1;
}

.counters-wrapper .cnt:last-child {
    border-right: none;
}

.client-wrapper {
    display: flex;
    height: 80px;
    position: relative;
}

.client-wrapper img {
    height: var(--svg-height);
    width: auto;
    flex-shrink: 0;
}

.client {
    display: flex;
    align-items: center;
    padding: 0 36px;
    width: auto;
    height: 100%;
}

#testimonials {
    display: flex;
    --f-carousel-spacing: 80px;
    --f-carousel-slide-width: calc(clamp(200px, 40%, 500px));
}

.img-grayscale {
    filter: grayscale(100%);
}

.quote {
    display: block;
    width: 24px;
    height: 44px;
    background-image: url('/img/quote.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.course-plans-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 64px;
}

.course-plan {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    border: 1px solid var(--border-color);
    padding: 32px;
}

.course-plan-features,
.course-plan-advanced-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    list-style: none;
    padding: 0;
    padding-left: calc(24px + 16px);
}

.course-plan-features li,
.course-plan-advanced-features li {
    position: relative;
    line-height: 120%;
    min-height: 24px;
}

.course-plan-features li b,
.course-plan-advanced-features li b {
    font-weight: 500;
    color: var(--secondary-color);

}

.course-plan-features li::before,
.course-plan-advanced-features li::before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url('/img/tick.svg');
    left: calc(-24px - 16px);
    top: -2px;
}

.course-plan-advanced-features li::before {
    background-image: url('/img/tick-plus.svg');
}

.course-plan-advanced {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--secondary-color);
    border-top: 1px solid var(--secondary-color);
    padding-top: 16px;
}

.course-plan-advanced-block .accordeon-text {
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.course-plan-advanced-block .course-plan-advanced-features {
    margin-top: 0;
    padding-top: 14px;
}


.plan {
    max-width: 455px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid var(--border-color);
}

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

.course-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    transition: var(--transition);
}

.course-card:hover {
    text-decoration: none;  
    scale: 1.02;
}

.auto-scroll-gallery .marquee-wrapper {
    overflow: hidden;
    cursor: grab;
    touch-action: none;
    width: 100%;        
}

.auto-scroll-gallery .marquee-track {
    display: flex;
    gap: 16px;
    will-change: transform;
    user-select: none;
    height: 100%;
}

.auto-scroll-gallery .dummy-loader,
.auto-scroll-gallery .dummy-loader img {
    height: var(--height);
    width: auto !important;
    max-width: calc(100vw - var(--padding-inline));
}

.auto-scroll-gallery .marquee-track > a,
.auto-scroll-gallery .marquee-track > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-decoration: none;
    width: auto;
    height: 100%;       
}

.auto-scroll-gallery .title {
    max-width: 80%;
    color: var(--color-dark);
}

@media screen and (max-width: 1024px) {
    .auto-scroll-gallery .dummy-loader,
    .auto-scroll-gallery .dummy-loader img {
        height: var(--height-md) !important;
    }            
}

@media screen and (max-width: 768px) {
    .auto-scroll-gallery .dummy-loader,
    .auto-scroll-gallery .dummy-loader img{
        height: var(--height-md) !important;
    }            
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px !important;
    height: 90px !important;
    z-index: 20;
    transition: .15s linear all;
    cursor: pointer;
}

.play-icon:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.reviews-wrapper {
    display: flex;
}

.review-card {
    display: flex;
    width: 25%;   
    aspect-ratio: 9 / 16;
    position: relative;
}

#reviews {
    --f-carousel-spacing: 20px;
    --f-carousel-slide-width: 25%;    
}

.review-card:last-child {
    padding-right: 0;
}

.review-card:first-child {
    padding-left: 0;
}

.review-card-info {
    z-index: 30;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fake-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    background-color: transparent;
    z-index: 5;
}

.hover-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-out all;
}

.hover-video:hover {
    opacity: 1;
}

.hover-video iframe {
    width: 100.1%;
    height: 100.1%;
    pointer-events: none;
    position: absolute;    
}

.full-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 1;
    display: none;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-out all;
   /*  pointer-events: none; */
}

.full-video.playing {
    opacity: 1 !important;
}

.full-video iframe {
    width: 100.1%;
    height: 100.1%;
   /*  pointer-events: none; */
    position: absolute;    
}


.slider-progress {
    background-color: #e6d2dc45;
    height: 3px;
    display: flex;
    width: 100%;
    margin-inline: auto;
}

.slider-progress div {
    flex: 1;
    transition: var(--transition);
}

.slider-progress div.active {
    background-color: var(--tertiary-color);
} 

.dark .big-card {
    border: 1px solid var(--border-color);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.big-card:hover {
    text-decoration: none;
    scale: 1.02;
}

.mobile-menu { 
    display: flex;
    gap: 32px;
    padding: 12px  calc(var(--padding-inline) * 2);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 300;
    background-color: var(--tertiary-color);
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mobile-menu::-webkit-scrollbar {
    display: none;
}

.mobile-menu a {
    white-space: nowrap;
    font-weight: 500;
    opacity: 0.6;
    text-decoration: none;
}

.mobile-menu a.active {
    opacity: 1;
}

.mobile-menu a:hover {
    text-decoration: none;
}

.mobile-cta {
    position: fixed;
    bottom: 80px;
    z-index: 300;
    bottom: 48px;
    width: 100%;
    padding: 0 var(--padding-inline);
}

.btn-md-cta {
    width: 100%;
    border: 1px solid var(--background-color);
    padding: 16px 24px;    
    border-radius: 2px;
    background-color: var(--primary-color);
    color: var(--text-color-secondary);
    text-align: center;
    font-weight: 500;
}

.pt-120 { padding-top: 120px;}
.pt-100 { padding-top: 100px;}
.pt-80 { padding-top: 80px;}
.pt-64 { padding-top: 64px;}
.pt-44 { padding-top: 44px;}
.pt-32 { padding-top: 32px;}
.pt-16 { padding-top: 16px;}
.pt-8 { padding-top: 8px;}

.pr-32 { padding-right: 32px; }
.pr-0 { padding-right: 0; }

.pl-32 { padding-left: 32px; }
.pl-0 { padding-left: 0; }

.pb-120 { padding-bottom: 120px; }
.pb-100 { padding-bottom: 100px; }
.pb-80 { padding-bottom: 80px; }
.pb-48 { padding-bottom: 48px; }
.pb-32 { padding-bottom: 32px; }
.pb-16 { padding-bottom: 16px; }
.pb-8 { padding-bottom: 8px; }

.mt-160 { margin-top: 160px; }
.mt-120 { margin-top: 120px; }
.mt-100 { margin-top: 100px; }
.mt-96 { margin-top: 96px; }
.mt-80 { margin-top: 80px; }
.mt-76 { margin-top: 76px; }
.mt-72 { margin-top: 72px; }
.mt-64 { margin-top: 64px; }
.mt-56 { margin-top: 56px; }
.mt-52 { margin-top: 52px; }
.mt-44 { margin-top: 44px; }
.mt-36 { margin-top: 36px; }
.mt-32 { margin-top: 32px; }
.mt-24 { margin-top: 24px; }
.mt-16 { margin-top: 16px; }
.mt-auto { margin-top: auto; }

.mb-120 { margin-bottom: 120px; }
.mb-80 { margin-bottom: 80px; }
.mb-64 { margin-bottom: 64px; }
.mb-44 { margin-bottom: 44px; }
.mb-40 { margin-bottom: 40px; }
.mb-32 { margin-bottom: 32px; }
.mb-28 { margin-bottom: 28px; }
.mb-24 { margin-bottom: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 4px; }
.m-auto { margin: 0 auto; }

.ml-32 { margin-left: 32px; }
.ml-16 { margin-left: 16px; }
.ml-8 { margin-left: 8px; }

.mr-24 { margin-right: 24px; }

.mx-auto { margin-left: auto; margin-right: auto; }

.mw-1000 { max-width: 1000px; }
.mw-930 { max-width: 930px; }
.mw-910 { max-width: 910px; }
.mw-800 { max-width: 800px; }
.mw-600 { max-width: 600px; }
.mw-590 { max-width: 590px; }
.mw-530 { max-width: 530px; }
.mw-307 { max-width: 307px; }
.w-120 { width: 120px; }
.w-auto { width: auto; }
.w-100 { width: 100%; }

.h-100 { height: 100%; }

.min-height-100 { min-height: 100vh; }
.min-height-110 { min-height: 110vh; }



.response {
    position: absolute;
    z-index: 601;
    background-color: var(--tertiary-color);
    padding: var(--padding-inline);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@keyframes marquee {
    0% {
        transform: translateX(0);
        will-change: transform;
    }

    100% {
        transform: translateX(-100%);
        will-change: transform;
    }
}

.visible-1220 { display: none; }

@media screen and (max-width: 1220px) {    
    .hidden-1220 { display: none !important; }

    .flex-1220-column { flex-direction: column; }
    .order-1220-1 { order: 1; }
    .order-1220-2 { order: 2; }
    .order-1220-3 { order: 3; }
    .order-1220-4 { order: 4; }

    .hidden-1220 { display: none !important; }
    .visible-1220 { display: flex !important; }

    .block {
        min-width: calc(50% - 12px);
    }

    .counters-wrapper {
        gap: 16px;
        flex-wrap: wrap;
    }

    .counters-wrapper .cnt {
        width: 50%;
        border: none;
        min-width: calc(50% - 8px);
    }

    .min-h-1220-42 { min-height: 42px; }
}

.visible-md { display: none; }



@media screen and (max-width: 1024px) {
    :root {
        --padding-inline: 16px;
        --font-size: 14px;
        --font-weight: 400;
        --line-height: 130%;
        --font-size-h2: 24px;
        --font-size-h3: 20px;
        --sticky-top: 16px;
    }

    .iti__selected-flag {
        height: 50px !important;
    }

    .modal-content {
        width: 100%;
        padding: var(--padding-inline);
        padding-top: 72px;
        max-height: 100%;
        overflow: auto;
    }

    .modal-close {
        top: 16px;
        right: 16px;
        width: 24px;
        height: 24px;
    }
    
    input {
        font-size: 16px;
        padding: 24px 0 16px 0;
    }

    .plan {
        padding: 16px;
    }

    #speakers {
        --f-carousel-spacing: 20px;
        --f-carousel-slide-width: 100% !important;
    }

    .speaker {
        padding: 0;
        --f-carousel-slide-padding: 0;    
        border: none;
    }

     #reviews {
        --f-carousel-spacing: 20px;
        --f-carousel-slide-width: 100% !important;
    }

    .btn-md-block {
        width: 100%;
        text-align: center;
    }

    .text-md-left { text-align: left; }
    .text-md-center { text-align: center; }
    .text-md-right { text-align: right; }

    .mw-md-auto { max-width: 100%; }

    .min-h-md-100 { min-height: 100px; }
    .min-h-md-auto { min-height: auto; }
    .w-md-80 { width: 80px; }

    .flex-md-column { flex-direction: column; }

    .order-md-1 { order: 1; }
    .order-md-2 { order: 2; }
    .order-md-3 { order: 3; }
    .order-md-4 { order: 4; }

    .pl-md-0 { padding-left: 0; }

    .top-md-boder { border-top: 1px solid var(--border-color); }

    .pt-md-0 { padding-top: 0; }
    .pt-md-10 { padding-top: 10px; }
    .pt-md-16 { padding-top: 16px; }
    .pt-md-24 { padding-top: 24px; }
    .pt-md-44 { padding-top: 44px; }
    .pt-md-64 { padding-top: 64px; }
    .pt-md-80 { padding-top: 80px; }

    .pb-md-0 { padding-bottom: 0; }
    .pb-md-10 { padding-bottom: 10px; }
    .pb-md-16 { padding-bottom: 16px; }
    .pb-md-24 { padding-bottom: 24px; }
    .pb-md-44 { padding-bottom: 44px; }
    .pb-md-60 { padding-bottom: 60px; }
    .pb-md-64 { padding-bottom: 64px; }
    .pb-md-51 { padding-bottom: 51px; }
    .pb-md-80 { padding-bottom: 80px; }

    .mt-md-8 { margin-top: 8px; }
    .mt-md-16 { margin-top: 16px; }
    .mt-md-20 { margin-top: 20px; }
    .mt-md-24 { margin-top: 24px; }
    .mt-md-32 { margin-top: 32px; }
    .mt-md-44 { margin-top: 44px; }
    .mt-md-48 { margin-top: 48px; }
    .mt-md-56 { margin-top: 56px; }
    .mt-md-64 { margin-top: 64px; }
    .mt-md-80 { margin-top: 80px; }

    .mb-md-64 { margin-bottom: 64px; }
    .mb-md-44 { margin-bottom: 44px; }
    .mb-md-24 { margin-bottom: 24px; }
    .mb-md-20 { margin-bottom: 20px; }
    .mb-md-16 { margin-bottom: 16px; }
    .ml-md-0 { margin-left: 0; }

    .hidden-md { display: none !important; }
    .visible-md { display: flex !important; }

    header {
        position: relative;
    }

    .m-md-auto { margin: 0 auto; }

    .font-md-12 { font-size: 12px; }
    .font-md-14 { font-size: 14px; }
    .font-md-16 { font-size: 16px; }
    .font-md-18 { font-size: 18px; }
    .font-md-20 { font-size: 20px; }
    .font-md-24 { font-size: 24px; }
    .font-md-32 { font-size: 32px; }
    .font-md-44 { font-size: 44px; }
    .font-md-56 { font-size: 56px; }

    .font-md-spacing--1 { letter-spacing: -0.01em; }
    .font-md-spacing-0 { letter-spacing: 0; }
    .font-md-spacing-1 { letter-spacing: 0.01em; }

    .lh-md-110 { line-height: 110%; }
    .lh-md-130 { line-height: 130%; }
    .lh-md-150 { line-height: 150%; }

    .perks-wrapper {
        gap: 0;
    }

    .perk {
        gap: 8px;
        flex-direction: column;
        min-height: 1px;
        top: 16px;
    }

    .perk > * {
        flex: none; 
    }

    .double-grid {
        border: none;
        flex-direction: column;
    }

    .double-grid > div:first-child {
        border: none;
    }

    .grid-perk {
        padding: 24px 0;
        border-top: 1px solid var(--secondary-color);
        min-height: 100px;
        background-color: var(--background-color);
        position: sticky;
        top: var(--sticky-top);
    }

    .g-md-44 { gap: 44px; }
    .g-md-24 { gap: 24px; }
    .g-md-16 { gap: 16px; }
    .g-md-0 { gap: 0; }

    .text-md-limit-auto { max-width: 100%; }

    .grid-faq:first-child {
        border-top: 1px solid var(--secondary-color);
    }

    .grid-faq:last-child {
        border-bottom: 1px solid var(--secondary-color);
    }

    .dark .grid-faq:first-child {
        border-top: 1px solid var(--border-color);
    }

    .dark .grid-faq:last-child {
        border-bottom: 1px solid var(--border-color);
    }

    .grid-faq {
        padding: 24px 0;
    }   

    #testimonials {
        --f-carousel-spacing: 64px;
        --f-carousel-slide-width: clamp(200px, 100%, 450px);
    }

    .dark .big-card {
        padding: 16px;
    }

    .course-plans-wrapper {
        margin-top: 44px;
    }

    .course-plan {
        padding: 16px;
    }

    .course-plan-features,
    .course-plan-advanced-features {    
        padding-left: calc(16px + 8px);
    }

    .course-plan-features li,
    .course-plan-advanced-features li {
        min-height: 16px;
    }

    .course-plan-features li::before,
    .course-plan-advanced-features li::before {
        width: 16px;
        height: 16px;
        left: calc(-16px - 8px);
        top: -1px;
        background-size: 100%;
    }

    .course-plan-advanced-block .course-plan-advanced-features {

    }

}

@media screen and (max-width: 768px) {
    .block {
        min-width: 100%;
    }

    .block h3, .block .text {
        padding-inline: 0;
    }

    #testimonials {
        --f-carousel-spacing: 24px;
        --f-carousel-slide-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-item {
        animation: none;
    }

    .dummy-loader {
        animation: none;
    }

    .top-cta-video {
        transform: translateY(-50%) scale(1.0);
        animation: none;
    }

    .mb-xs-24 { margin-bottom: 24px; }
}