@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/gilroy-regular.ttf");
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/gilroy-medium.ttf");
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/gilroy-semibold.ttf");
    font-weight: 600;
    font-display: swap
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/gilroy-bold.ttf");
    font-weight: 700;
    font-display: swap
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-style: normal
}

html {
    scroll-behavior: smooth
}

body {
    
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Gilroy", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

@media(min-width: 1400px) {
    .container {
        max-width: 100%;
        padding: 0 30px
    }
}

@media(min-width: 1200px) {
    .container {
        max-width: 100%
    }
}

.scroll-locked {
    height: 100vh;
    overflow: hidden
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 10
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0
}

img,
svg {
    max-width: 100%
}

a {
    text-decoration: none;
    cursor: pointer !important
}

a:hover,
a:focus {
    text-decoration: none
}

i {
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.absolute-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0
}

button {
    cursor: pointer
}

.btn-plain {
    border: none;
    background: rgba(0, 0, 0, 0);
    outline: none;
    padding: 0;
    margin: 0
}

.inline-link {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.8px
}

.section-title {
    color: #193b53;
    text-align: center;
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase
}

.section-title span {
    color: #faa318
}

.section-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 14px;
    gap: 5px;
    border-radius: 30px;
    background: #f6f7f8;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto
}

.section-name.light {
    background: #fff
}

.section-name img {
    width: 20px;
    height: 20px
}

.section-name span {
    color: #193b53;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.section-subtitle {
    color: #193b53;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.85px
}

.bg-lightgrey {
    background: #fafafa
}

.scroll-up:hover svg path {
    -webkit-transition: .25s ease;
    -o-transition: .25s ease;
    transition: .25s ease
}

.scroll-up {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    z-index: 8;
    display: none
}

.btn-custom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 26px 80px;
    border-radius: 50px;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.9px;
    border: none;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    text-align: center
}

.btn-orange {
    background: var(--1, #FAA318);
    color: #fff
}

.btn-blue {
    background: #1472c2;
    color: #fff
}

.animatable {
    visibility: hidden;
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.animated {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

@-webkit-keyframes fadeIn {

    0%,
    60% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {

    0%,
    60% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3)
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3)
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    60% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }

    80% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    60% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }

    80% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    60% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    80% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    60% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    80% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes moveUp {
    0% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes moveUp {
    0% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeBgColor {

    0%,
    70% {
        background: none
    }

    100% {
        background: #464646
    }
}

@keyframes fadeBgColor {

    0%,
    70% {
        background: none
    }

    100% {
        background: #464646
    }
}

.animated.animationDelay {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.animated.animationDelayMed {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.animated.animationDelayLong {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s
}

.animated.fadeBgColor {
    -webkit-animation-name: fadeBgColor;
    animation-name: fadeBgColor
}

.animated.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

.animated.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

.animated.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

.animated.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

.animated.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

.animated.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.animated.moveUp {
    -webkit-animation-name: moveUp;
    animation-name: moveUp
}
@keyframes swing {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.i-present {
    background: url("../img/icon/present.svg");
    width: 30px;
    height: 30px;
    display: inline-block; 
    animation: swing 1s infinite ease-in-out; 
}

.i-phone {
    background: url("../img/icon/phone.svg");
    width: 18px;
    height: 18px
}

.i-checkmark {
    background: url("../img/icon/checkmark.svg");
    width: 16px;
    height: 11px
}

.i-arrow-left {
    background: url("../img/icon/arrow-left.svg");
    width: 30px;
    height: 30px
}

.i-arrow-right {
    background: url("../img/icon/arrow-right.svg");
    width: 30px;
    height: 30px
}

.i-telegram {
    background: url("../img/icon/telegram.svg");
    width: 50px;
    height: 50px
}

.i-youtube {
    background: url("../img/icon/youtube.svg");
    width: 50px;
    height: 50px
}

.i-whatsapp {
    background: url("../img/icon/whatsapp.svg");
    width: 50px;
    height: 50px
}

.i-menu {
    background: url("../img/icon/menu.svg");
    width: 30px;
    height: 30px
}

.i-menu-black {
    background: url("../img/icon/menu-black.svg");
    width: 30px;
    height: 30px
}

.i-close {
    background: url("../img/icon/close.svg");
    width: 24px;
    height: 24px
}

.i-insta-sm {
    background: url("../img/icon/insta.svg");
    width: 24px;
    height: 24px
}

.i-whatsapp-sm {
    background: url("../img/icon/whatsapp-sm.svg");
    width: 18px;
    height: 18px
}

.i-youtube-sm {
    background: url("../img/icon/youtube-sm.svg");
    width: 20px;
    height: 20px
}

.i-youtube-play {
    background: url("../img/icon/youtube-play.svg");
    width: 52px;
    height: 38px
}

.wrapper {
    padding: 30px 0 40px;
    width: 100%;
    overflow: hidden
}

.slider {
    border-radius: 60px;
    background: #1472c2;
    position: relative;
    padding: 27px 30px 0;
    overflow: hidden
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 10px 5px 24px;
    min-height: 85px;
    border-radius: 70px;
    background: hsla(0, 0%, 100%, .4);
    z-index: 2;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    width: 100%
}

.secondary-header {
    position: fixed;
    top: -150px;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    background: #fff;
    z-index: 10;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2)
}

.secondary-header .header-logo span {
    color: rgba(25, 59, 83, .6)
}

.secondary-header .navbar-link {
    color: #193b53
}

.secondary-header .header-lang-btn {
    color: #193b53
}

.secondary-header .header-contact {
    border-color: #193b53
}

.secondary-header .header-contact-text {
    color: #193b53
}

.secondary-header.fixed {
    top: 20px;
    background: hsla(0, 0%, 100%);
}

.header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 26px
}

.header-logo img {
    margin-top: -10px
}

.header-logo span {
    color: hsla(0, 0%, 100%, .5);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%
}

.navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px
}

.navbar-link {
    white-space: nowrap;
    color: #fff;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    -webkit-transition: .25s ease;
    -o-transition: .25s ease;
    transition: .25s ease
}

.navbar-dropdown {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.navbar-dropdown-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: calc(100% + 15px);
    background: #fff;
    padding: 20px 25px 20px 20px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    -webkit-transition: .1s ease;
    -o-transition: .1s ease;
    transition: .1s ease;
    z-index: 2
}

.navbar-dropdown-menu.show {
    opacity: 1;
    visibility: visible
}

.navbar-dropdown-menu:before {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid #fff
}

.navbar-dropdown-menu:after {
    content: "";
    width: 100%;
    height: 15px;
    position: absolute;
    top: -15px;
    left: 0;
    background: rgba(0, 0, 0, 0)
}

.navbar-dropdown-link {
    white-space: nowrap;
    color: #193b53;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: .25s ease;
    -o-transition: .25s ease;
    transition: .25s ease
}

.header-lang-contact-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px
}

.header-lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px
}

.header-lang-btn {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    opacity: .5;
    color: #fff;
    -webkit-transition: .25s ease;
    -o-transition: .25s ease;
    transition: .25s ease
}

.header-lang-btn.active {
    opacity: 1
}

.header-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    border-radius: 50px;
    border: 1px solid #fff;
    padding: 5px 36px 5px 5px
}

.header-contact-icon {
    width: 50px;
    height: 50px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.header-contact-text {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.9px;
    -webkit-transition: .25s ease;
    -o-transition: .25s ease;
    transition: .25s ease
}

.open-mobile-menu,
.mobile-menu {
    display: none
}

.slider:before {
    content: "";
    width: 604px;
    height: 604px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 604px;
    background: hsla(0, 0%, 100%, .3);
    -webkit-filter: blur(126.9000015259px);
    filter: blur(126.9000015259px);
    position: absolute;
    left: 107px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.slider-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1
}

.slider-caption {
    padding: 80px 0 53px 25px;
    width: 55%;
    max-width: 724px
}

.slider-caption h1 {
    color: #fff;
    font-size: 90px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase
}

.slider-tools {
    margin-top: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

.bonus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px
}

.bonus-img {
    width: 80px;
    height: 80px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #fff;
    -webkit-filter: drop-shadow(1px 1px 22.6px rgba(255, 255, 255, 0.25));
    filter: drop-shadow(1px 1px 22.6px rgba(255, 255, 255, 0.25));
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.bonus-caption b {
    color: #fff;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1.5px
}

.bonus-caption p {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.7px;
    margin-top: 2px
}

.bonus-caption p span {
    color: #ffc15e
}

.slider-numbers {
    margin-top: 60px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px
}

.slider-number {
    padding: 30px 15px 30px 23px;
    min-height: 190px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 25px;
    border: 1px solid hsla(0, 0%, 100%, .5)
}

.slider-number b {
    color: #fff;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.68px
}

.slider-number p {
    color: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.16px
}

.slider-number p span {
    color: #ffc15e
}

.slider-img {
    width: 45%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    margin: auto 0 0 auto
}

.slider-img-sm {
    display: none
}

.program-wrap {
    margin-top: 20px
}

.program {
    border-radius: var(--xlarge, 40px);
    background: #f6f7f8;
    padding: 80px 70px 100px
}

.program .section-title {
    margin-top: 42px
}

.program-list {
    margin-top: 60px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.program-card {
    padding: 10px 10px 30px;
    border-radius: 30px;
    background: #fff;
    min-height: 480px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative
}

.program-card-img {
    position: relative;
    height: 260px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.program-card-img h6 {
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -1.5px
}

.program-card-grade {
    position: absolute;
    left: 13px;
    top: 12px;
    border-radius: 50px;
    background: hsla(0, 0%, 100%, .2);
    padding: 5px 15px;
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.55px
}

.program-card-icon {
    position: absolute
}

.program-card-caption {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 35px 35px 0
}

.program-card-caption p {
    color: #193b53;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px;
    margin-bottom: 15px
}

.program-card-caption .inline-link {
    margin-top: auto
}

.program-card.violet .program-card-img {
    background: url("../img/main/violet-bg.webp") no-repeat center/100% 100%
}

.program-card.violet .inline-link {
    color: #0095da
}

.program-card.violet .program-card-icon {
    top: 15px;
    right: 0
}

.program-card.green .program-card-img {
    background: url("../img/main/green-bg.webp") no-repeat center/100% 100%
}

.program-card.green .inline-link {
    color: #82c245
}

.program-card.green .program-card-icon {
    top: 5px;
    right: 0
}

.program-card.red .program-card-img {
    background: url("../img/main/red-bg.webp") no-repeat center/100% 100%
}

.program-card.red .inline-link {
    color: #d23a3e
}

.program-card.red .program-card-icon {
    top: 3px;
    right: 0
}

.program-card.orange .program-card-img {
    background: url("../img/main/orange-bg.webp") no-repeat center/100% 100%
}

.program-card.orange .inline-link {
    color: #ee9350
}

.program-card.orange .program-card-icon {
    top: 5px;
    right: 5px
}

.program-card.mint .program-card-img {
    background: url("../img/main/mint-bg.webp") no-repeat center/100% 100%
}

.program-card.mint .inline-link {
    color: #4796a0
}

.program-card.mint .program-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    right: 0;
    top: 0;
    background: #4796a0
}

.program-card.blue .program-card-img {
    background: url("../img/main/blue-bg.webp") no-repeat center/100% 100%
}

.program-card.blue .inline-link {
    color: #a663e9
}

.program-card.blue .program-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    right: 0;
    top: 0;
    background: #0095da
}

.result-wrap {
    padding-top: 100px
}

.result .section-title {
    margin-top: 42px
}

.result .section-subtitle {
    margin-top: 21px
}

.result-slider {
    margin-top: 60px;
    overflow: visible;
    width: 100%
}

.result-card {
    width: 440px;
    padding: 20px 20px 18px;
    border-radius: 20px;
    background: #1472c2;
    position: relative;
    overflow: hidden
}

.result-card:before {
    content: "";
    background: url("../img/main/result-card-blue-before.svg") no-repeat center/100%;
    width: 108px;
    height: 269px;
    position: absolute;
    right: 0;
    top: 0
}

.result-card.even {
    background: #faa318
}

.result-card.even:before {
    content: "";
    background: url("../img/main/result-card-yellow-before.svg") no-repeat center/100%;
    width: 330px;
    height: 415px;
    position: absolute;
    right: 0;
    top: 0
}

.result-card-primary {
    color: #fff;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -1.25px
}

.result-card-media {
    position: relative;
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    height: 285px
}

.result-card-media svg {
    position: absolute;
    left: 15px;
    top: 15px
}

.result-card-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.result-card.even .result-card-media svg path {
    fill: #1472c2
}

.result-progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 19px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative
}

.progress-item {
    position: relative
}

.progress-item-name {
    color: #fff;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.7px;
    display: block;
    text-align: center
}

.progress-item-score {
    margin-top: 8px;
    width: 120px;
    height: 100px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.progress-item-score b {
    color: #fff;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -1px;
    display: block
}

.progress-item-score span {
    color: #fff;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.6px;
    display: block
}

.progress-end .progress-item-score {
    background: #fff
}

.progress-end .progress-item-score b {
    color: #1472c2
}

.progress-end .progress-item-score span {
    color: #1472c2
}

.result-card.even .progress-end .progress-item-score b {
    color: #faa318
}

.result-card.even .progress-end .progress-item-score span {
    color: #faa318
}

.progress-start .progress-item-score:before {
    content: "";
    width: 8px;
    height: 8px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    right: -5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #1472c2
}

.result-card.even .progress-start .progress-item-score:before {
    background: #faa318
}

.result-progress svg {
    width: 1000px;
    position: absolute;
    bottom: 45px;
    left: calc(50% - 13px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.result-card-secondary {
    margin-top: 30px;
    border-radius: 50px;
    background: hsla(0, 0%, 100%, .25);
    -webkit-backdrop-filter: blur(10.3000001907px);
    backdrop-filter: blur(10.3000001907px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px
}

.result-card-secondary span {
    display: block;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.6px
}

.result-slider-navigation {
    margin: 40px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 15px
}

.result-slider-navigation-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80px;
    height: 80px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #faa318;
    background: rgba(0, 0, 0, 0);
    -webkit-transition: .25s ease;
    -o-transition: .25s ease;
    transition: .25s ease
}

.feedback-wrap {
    padding-top: 100px
}

.feedback {
    border-radius: 60px;
    background: #1573c2;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.feedback:before {
    content: "";
    background: url("../img/main/feedback-bg.svg") no-repeat center/100%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 100%
}

.feedback-caption {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 60px 56px 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1
}

.feedback-caption h2 {
    color: #fff;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase
}

.feedback-caption h2 span {
    color: #ffc15e
}

.feedback-expert {
    margin-top: auto
}

.feedback-expert-badge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 17px
}

.feedback-expert-img {
    position: relative;
    padding-right: 50px
}

.feedback-expert-img img {
    border: 1px solid #1472c2;
    background: #fff;
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.feedback-expert-img:after {
    content: "";
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    background: url("../img/icon/phone-yellow.svg") no-repeat center/contain
}

.feedback-expert-caption b {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -1px
}

.feedback-expert-caption p {
    color: hsla(0, 0%, 100%, .6);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px
}

.feedback-expert-comment {
    margin-top: 13px;
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.3px
}

.feedback-form-wrap {
    padding: 38px 32px 36px 0;
    position: relative;
    z-index: 1
}

.feedback-form {
    border-radius: 40px;
    background: #fff;
    -webkit-box-shadow: 1px 1px 31.2px 0 hsla(0, 0%, 100%, .3);
    box-shadow: 1px 1px 31.2px 0 hsla(0, 0%, 100%, .3);
    padding: 28px 39px 40px;
    width: 700px;
    height: 100%
}

.feedback-form-title {
    color: #193b53;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -1.2px;
    display: block;
    margin-bottom: 20px
}

.feedback-form-subtitle {
    color: #193b53;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -1.2px;
    display: block;
    margin-bottom: 30px
}

.input-form {
    width: 100%;
    padding: 25px 10px 20px 25px;
    border-radius: 60px;
    border: 1px solid rgba(25, 59, 83, .1);
    background: #f6f7f8;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.8px;
    color: #193b53
}

.input-form:focus {
    outline: none
}

.input-form::-webkit-input-placeholder {
    color: rgba(25, 59, 83, .3);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.8px
}

.input-form::-moz-placeholder {
    color: rgba(25, 59, 83, .3);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.8px
}

.input-form:-ms-input-placeholder {
    color: rgba(25, 59, 83, .3);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.8px
}

.input-form::-ms-input-placeholder {
    color: rgba(25, 59, 83, .3);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.8px
}

.input-form::placeholder {
    color: rgba(25, 59, 83, .3);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.8px
}

.input-form+.input-form {
    margin-top: 10px
}

.select-city {
    margin-top: 14px
}

.select-city b {
    color: #193b53;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%
}

.select-form {
    width: 100%;
    border-radius: 60px;
    border: 1px solid rgba(25, 59, 83, .1);
    background: #f6f7f8;
    position: relative;
    margin-top: 5px
}

.select-form select {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.8px;
    color: #193b53;
    width: 100%;
    padding: 25px 10px 20px 25px;
    border: none;
    background: rgba(0, 0, 0, 0);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.select-form select:focus {
    outline: none
}

.select-form:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    width: 0;
    height: 0;
    border-left: 7px solid rgba(0, 0, 0, 0);
    border-right: 7px solid rgba(0, 0, 0, 0);
    border-top: 7px solid #193b53
}

.confirm-form {
    margin-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    gap: 10px
}

.confirm-form input {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0
}

.confirm-form input:checked~.checkmark:before {
    display: block
}

.confirm-form p {
    color: #193b53;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.confirm-form a {
    color: #193b53;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    position: relative;
    z-index: 1;
    text-decoration: underline
}

.checkmark {
    width: 14px;
    height: 14px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: 1px solid #193b53;
    border-radius: 3px;
    position: relative;
    pointer-events: none
}

.checkmark:before {
    content: "";
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 8px;
    border: solid #193b53;
    border-width: 0 2px 2px 0;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg)
}

.feedback-form .btn-custom {
    width: 100%;
    margin-top: 20px
}

.feedback-wrap~.motivation-wrap {
    padding-top: 100px
}

.motivation .section-title {
    margin-top: 42px
}

.motivation .section-subtitle {
    margin-top: 30px
}

.motivation-list {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.motivation-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.motivation-caption {
    border-radius: 50px;
    border: 1px solid #faa318;
    background: #fff;
    padding: 35px 57px 40px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    overflow: hidden
}

.motivation-caption-img {
    width: 130px;
    height: 130px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover
}

.motivation-caption-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 330px;
}

.motivation-caption b {
    display: block;
    margin-top: auto;
    color: #193b53;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -1.5px
}

.motivation-caption p {
    margin-top: 34px;
    color: #193b53;
    font-size: 23px;
    font-style: normal;
    font-weight: 100;
    line-height: 120%;
    letter-spacing: -0.85px
}

.motivation-caption.blue {
    border-color: #0095da
}

.motivation-media {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    max-height: 500px
}

.motivation-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.motivation-media iframe {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer
}

.video-poster img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1
}

.video-poster .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2
}

.teacher-wrap {
    margin-top: 100px;
    padding: 105px 0
}

.teacher .section-title {
    margin-top: 40px
}

.teacher .section-subtitle {
    margin-top: 21px
}

.teacher-list {
    margin-top: 60px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px 35px
}

.teacher-media {
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    background: #faa318;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.teacher-card:nth-child(even) .teacher-media {
    background: #1472c2
}

.teacher-result {
    position: absolute;
    top: 24px;
    left: 24px;
    border-radius: 18px;
    border: 1px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px;
    width: 175px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content
}

.teacher-result b {
    display: block;
    color: #fff;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -1.942px
}

.teacher-result p {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.804px;
    margin-top: 15px
}

.teacher-media-img {
    position: relative;
    z-index: 1;
    width: 360px;
}

.teacher-media-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%
}

.teacher-caption {
    background: #fff;
    border-radius: 30px;
    height: 133px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.teacher-caption h6 {
    color: #193b53;
    text-align: center;
    font-size: 28.796px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1.44px
}

.teacher-caption p {
    color: rgba(25, 59, 83, .48);
    text-align: center;
    font-size: 17.881px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.179px;
    margin-top: 22px
}

.review-wrap {
    padding-top: 100px
}

.review .section-title {
    margin-top: 28px
}

.review-list {
    margin-top: 44px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px
}

.review-card-media {
    border-radius: 20px;
    background: rgba(25, 59, 83, .2);
    overflow: hidden;
    height: 414px;
    position: relative
}

.review-card-media iframe {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.review-card-caption {
    border-radius: 20px;
    background: #fafafa;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.review-card-caption b {
    display: block;
    color: #193b53;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1.1px
}

.review-card-caption p {
    color: rgba(25, 59, 83, .6);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.8px;
    margin-top: 10px
}

.review-tools {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.tariff-wrap {
    margin-top: 100px;
    padding-top: 100px;
    padding-bottom: 228px
}

.tariff-list {
    margin-top: 40px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px
}

.tariff-card {
    border-radius: 30px;
    border: 1px solid #193b53;
    background: #fff;
    position: relative;
    padding: 50px 50px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.tariff-card.warning {
    border-color: #faa318
}

.tariff-card.warning .tariff-details li:before {
    background-image: url("../img/icon/check-orange.svg")
}

.tariff-card .alert {
    border-radius: 27px;
    background: #faa318;
    -webkit-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
    padding: 15px 25px;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.136px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: -22px;
    right: 13px
}

.tariff-name {
    color: #193b53;
    font-size: 46px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1.8px
}

.tariff-details {
    margin-top: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7px;
}

.tariff-details li {
    padding-left: 26px;
    position: relative;
    color: #193b53;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: -0.8px
}

.tariff-details li:before {
    content: "";
    background: url("../img/icon/check-blue.svg") no-repeat center/contain;
    width: 23px;
    height: 23px;
    position: absolute;
    left: 0;
    top: 0
}

.tariff-price {
    margin-top: auto;
    border-top: 1px solid #e8ebee;
    border-bottom: 1px solid #e8ebee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 78px
}

.tariff-price span {
    color: #193b53;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.14px;
    display: block
}

.tariff-price b {
    color: #193b53;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1.374px;
    display: block
}

.tariff-card .btn-custom {
    width: 100%;
    margin-top: 23px
}

.installment {
    margin-top: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.installment span {
    color: #193b53;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.14px
}

.installment img {
    width: 168px;
    height: auto;
    margin-top: 12px
}

.tariff-wrap~.feedback-wrap {
    margin-top: -220px
}

.faq-wrap {
    padding-top: 94px
}

.faq .section-title {
    margin-top: 22px
}

.faq-list {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.collapse-container {
    background: #fafafa;
    border-radius: 14px;
    overflow: hidden
}

.collapse-header {
    position: relative;
    padding: 28px 40px;
    cursor: pointer;
    color: #193b53;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.12px
}

.collapse-header:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url("../img/icon/plus.svg") no-repeat center/contain;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease
}

.collapse-header.active:after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg)
}

.collapse-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .3s ease-out;
    -o-transition: max-height .3s ease-out;
    transition: max-height .3s ease-out
}

.collapse-inner {
    padding: 10px 40px 25px
}

.collapse-content.show {
    max-height: 200px
}

.collapse-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.collapse-inner p {
    color: #193b53;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55
}

.collapse-inner p b {
    color: #1472c2;
    font-weight: 600
}

.collapse-inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.collapse-inner li {
    color: #193b53;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    position: relative;
    padding-left: 20px
}

.collapse-inner li b {
    font-weight: 600
}

.collapse-inner li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #193b53
}

.footer-wrap {
    margin-top: 67px
}

.footer {
    border-radius: 60px;
    height: 600px;
    background: #1472c2;
    position: relative;
    padding: 90px 75px 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer:before {
    content: "";
    width: 508px;
    height: 508px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, .18);
    -webkit-filter: blur(126.9000015259px);
    filter: blur(126.9000015259px);
    position: absolute;
    left: 187px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.footer-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 1
}

.footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 17px
}

.footer-logo span {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.6 ;
}

.footer-logo img {
    margin-top: -10px;
    width: 80px;
}

.footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px
}

.privacy-policy {
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline
}

.copyright {
    margin-top: 9px;
    color: hsla(0, 0%, 100%, .5);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.footer-middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 128px;
    position: relative;
    z-index: 1
}

.footer-nav b {
    color: hsla(0, 0%, 100%, .6);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase
}

.footer-nav-list {
    margin-top: 41px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 18px
}

.footer-nav-link {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.48px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    -webkit-transition: .25s ease;
    -o-transition: .25s ease;
    transition: .25s ease
}

.footer-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1
}

.footer-right-title {
    color: hsla(0, 0%, 100%, .6);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase
}

.footer-tel {
    margin-top: 36px
}

.footer-tel-link {
    color: #fff;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.84px;
    -webkit-transition: .25s ease;
    -o-transition: .25s ease;
    transition: .25s ease
}

.footer-tel-feedback {
    color: #faa318;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    display: block;
    margin-top: 5px
}

.footer-mail {
    margin-top: 38px
}
.footer-mail p {
 color: white;
 margin-top: 20px;
 opacity: 0.6;
}
.footer-mail-link {
    color: #fff;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.72px;
    -webkit-transition: .25s ease;
    -o-transition: .25s ease;
    transition: .25s ease
}

.footer-mail-feedback {
    color: hsla(0, 0%, 100%, .6);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    display: block;
    margin-top: 8px
}

.developer {
    margin-top: auto;
    color: hsla(0, 0%, 100%, .3);
    text-align: right;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%
}

.developer span {
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%
}

.privacy-policy-copyright-sm {
    display: none
}

.feedback-modal-form .feedback-form-title {
    text-align: center
}

.feedback-modal-form .feedback-form-subtitle {
    text-align: center
}

.btn-close {
    position: absolute;
    right: 10px;
    top: 10px
}

.video-modal {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 0;
    padding-top: 57%
}

.video-modal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
    -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
    outline: none;
    border: none
}

.video-modal .btn-close {
    top: -30px;
    right: 0;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    opacity: 1
}

/* @media(max-width: 1399px) {
    .header {
        padding: 5px 10px
    }

    .header-logo {
        gap: 5px
    }

    .navbar {
        gap: 15px
    }

    .header-contact-icon {
        width: 40px;
        height: 40px
    }

    .header-contact {
        gap: 5px;
        padding: 5px 15px 5px 5px
    }

    .header-contact-text {
        font-size: 16px
    }

    .header-lang-btn {
        font-size: 14px
    }

    .slider-caption {
        padding: 60px 0 40px 25px
    }

    .slider-caption h1 {
        font-size: 50px
    }

    .slider-number p {
        font-size: 18px;
        line-height: 120%
    }

    .slider-number {
        padding: 20px 15px
    }

    .btn-custom {
        padding: 15px 40px
    }

    .section-title {
        font-size: 40px
    }

    .program-card.violet .program-card-icon {
        width: 40px
    }

    .program-card.green .program-card-icon {
        width: 50px
    }

    .program-card.red .program-card-icon {
        width: 40px
    }

    .program-card.orange .program-card-icon {
        width: 30px
    }

    .program-card.mint .program-card-icon,
    .program-card.blue .program-card-icon {
        width: 40px;
        height: 40px;
        top: 5px
    }

    .result-progress svg {
        width: 60px
    }

    .feedback-caption h2 {
        font-size: 37px
    }
} */

@media(max-width: 1199px) {
    .header-logo span {
        display: none
    }

    .header-lang {
        gap: 5px
    }

    .program {
        padding: 70px 30px 90px
    }

    .program-card-img {
        height: 160px
    }

    .program-card.violet .program-card-icon {
        width: 30px
    }

    .program-card.green .program-card-icon {
        width: 40px
    }

    .program-card.red .program-card-icon {
        width: 30px
    }

    .program-card.mint .program-card-icon,
    .program-card.blue .program-card-icon {
        width: 30px;
        height: 30px;
        top: 5px
    }

    .result-progress svg {
        width: 96px
    }

    .feedback-caption h2 {
        font-size: 32px
    }

    .feedback-form {
        width: 450px
    }

    .motivation-caption {
        padding: 20px 35px 25px 25px
    }

    .motivation-caption-img {
        width: 60px;
        height: 60px
    }

    .motivation-caption b {
        font-size: 24px
    }

    .motivation-caption p {
        margin-top: 20px;
        font-size: 15px
    }

    .teacher-media-img {
        max-width: 250px
    }

    .teacher-result {
        padding: 10px
    }

    .teacher-result b {
        font-size: 24px
    }

    .teacher-result p {
        font-size: 14px;
        margin-top: 5px;
        letter-spacing: 0
    }

    .review-list {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        padding: 0 100px;
        gap: 20px 50px
    }

    .review-card-media {
        height: 300px
    }

    .tariff-card {
        padding: 20px 25px
    }

    .tariff-name {
        font-size: 28px
    }

    .tariff-details {
        margin: 15px 0 30px
    }

    .tariff-details li:before {
        width: 18px;
        height: 18px
    }

    .tariff-details li {
        padding-left: 20px;
        font-size: 15px;
        line-height: 120%
    }

    .tariff-price b {
        font-size: 24px
    }

    .footer {
        padding: 35px 40px
    }

    .footer-logo span {
        display: none
    }

    .footer-social-link i {
        width: 40px;
        height: 40px
    }

    .footer-middle {
        gap: 60px
    }

    .footer-nav-list {
        margin-top: 20px;
        gap: 10px
    }

    .footer-tel {
        margin-top: 20px
    }

    .footer-tel-link {
        font-size: 20px
    }

    .footer-mail {
        margin-top: 20px
    }

    .footer-mail-link {
        font-size: 20px
    }

    .footer:before {
        content: none
    }
}

@media(max-width: 991px) {
    .navbar {
        display: none
    }

    .header-logo span {
        display: block
    }

    .open-mobile-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-left: 15px
    }

    .header {
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
        padding: 5px 20px
    }

    .header-lang-contact-wrap {
        margin-left: auto
    }

    .mobile-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: fixed;
        height: 100%;
        overflow-y: auto;
        width: 260px;
        top: 0;
        right: 0;
        -webkit-transform: translateX(260px);
        -ms-transform: translateX(260px);
        transform: translateX(260px);
        background-color: #193b53;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 48px 40px 38px;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
        z-index: 15
    }

    .mobile-menu.show {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    .close-mobile-menu {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .mobile-menu-logo {
        width: 60px;
        height: auto
    }

    .navbar-sm {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 20px;
        gap: 15px;
        margin-bottom: 50px
    }

    .navbar-sm-link {
        font-size: 18px;
        color: #fff;
        font-weight: 500;
        line-height: 120%
    }

    .header-social {
        margin: auto auto 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 7px
    }

    .header-social-link {
        width: 30px;
        height: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 50%;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        background: #fff
    }

    .slider-content {
        display: block
    }

    .slider-caption {
        width: 100%
    }

    .slider-img {
        display: none
    }

    .program {
        padding: 50px 20px 70px
    }

    .section-title {
        font-size: 36px
    }

    .program .section-title {
        margin-top: 20px
    }

    .program-list {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr
    }

    .program-card-caption p br {
        display: none
    }

    .result-wrap {
        padding-top: 60px
    }

    .result-progress svg {
        width: 120px
    }

    .feedback-wrap {
        padding-top: 60px
    }

    .feedback {
        display: block
    }

    .feedback-caption {
        padding: 30px
    }

    .feedback-expert-badge {
        margin-top: 30px
    }

    .feedback-expert-comment {
        margin-top: 15px
    }

    .feedback-form-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 40px
    }

    .feedback-form {
        margin: 0 auto;
        width: 100%
    }

    .feedback-wrap~.motivation-wrap {
        padding-top: 60px
    }

    .teacher-wrap {
        margin-top: 60px;
        padding: 60px 0
    }

    .teacher-list {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr
    }

    .teacher-caption {
        height: 100px
    }

    .teacher-caption h6 {
        font-size: 24px
    }

    .teacher-caption p {
        margin-top: 10px;
        font-size: 16px
    }

    .review-wrap {
        padding-top: 60px
    }

    .tariff-wrap {
        margin-top: 60px;
        padding-top: 60px
    }

    .tariff-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }

    .tariff-card {
        -webkit-box-orient: initial;
        -webkit-box-direction: initial;
        -ms-flex-direction: initial;
        flex-direction: initial;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .tariff-details {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 7px 20px;
        width: 100%;
        padding-bottom: 15px;
        border-bottom: 1px solid #e8ebee;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .tariff-name {
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .tariff-price {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        border: none;
        display: block;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        margin-top: 0
    }

    .tariff-price b {
        margin-top: 10px
    }

    .installment {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        margin-top: 0
    }

    .tariff-card .btn-custom {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-top: 0
    }

    .faq-wrap {
        padding-top: 60px
    }

    .footer {
        padding: 24px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .footer-right {
        margin-top: 40px;
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .footer-right-title {
        display: none
    }
}

@media(max-width: 767px) {
    .wrapper {
        padding: 15px 0 20px
    }

    .slider {
        border-radius: 30px;
        padding: 15px
    }

    .header {
        min-height: 50px
    }

    .header-logo img {
        width: 30px;
        height: auto
    }

    .header-logo span {
        font-size: 8px;
        line-height: 120%
    }

    .header-contact {
        display: none
    }

    .slider-caption {
        padding: 50px 0 0
    }

    .slider-caption h1 {
        font-size: 26px;
        text-align: center
    }

    .slider-img-sm {
        display: block
    }

    .slider-tools {
        display: block;
        margin-top: 0
    }

    .slider-tools .btn-custom {
        width: 100%
    }

    .bonus {
        margin-top: 30px
    }

    .bonus-img {
        width: 50px;
        height: 50px
    }

    .bonus-caption {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px
    }

    .bonus-caption p {
        font-size: 10px
    }

    .slider-numbers {
        margin-top: 30px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 10px
    }

    .slider-number {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
        min-height: 60px
    }

    .slider-number p {
        margin-left: 30px;
        color: #fff
    }

    .program {
        padding: 40px 10px 20px
    }

    .section-title {
        font-size: 30px
    }

    .program-list {
        margin-top: 30px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }

    .program-card-img h6 {
        font-size: 24px
    }

    .program-card-img {
        height: 140px
    }

    .program-card-caption {
        padding: 15px 15px 0
    }

    .program-card-caption p {
        font-size: 16px
    }

    .program-card {
        min-height: 270px
    }

    .result-wrap {
        padding-top: 40px
    }

    .result .section-title {
        margin-top: 20px
    }

    .section-subtitle {
        font-size: 15px
    }

    .result-slider {
        margin: 30px -12px 0;
        width: calc(100% + 24px)
    }

    .result-slider .swiper-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 15px;
        max-width: calc(100% - 24px);
        overflow-x: auto;
        padding: 0 12px;
        scrollbar-width: none;
        -ms-overflow-style: none
    }

    .result-slider .swiper-wrapper::-webkit-scrollbar {
        display: none
    }

    .result-card {
        width: 250px
    }

    .result-card-primary {
        font-size: 16px;
        font-weight: 500
    }

    .result-card-media {
        height: 174px
    }

    .progress-item-score b {
        font-size: 16px;
        font-weight: 500
    }

    .result-progress svg {
        width: 50px
    }

    .result-slider-navigation {
        display: none
    }

    .feedback-wrap {
        padding-top: 40px
    }

    .feedback {
        margin: 0 -12px;
        border-radius: 0;
        padding: 40px 15px
    }

    .feedback-caption {
        padding: 0
    }

    .feedback-caption h2 {
        font-size: 26px;
        font-weight: 500
    }

    .feedback-expert-comment br {
        display: none
    }

    .feedback-expert-caption b {
        font-size: 18px;
        font-weight: 500
    }

    .feedback-expert-caption p {
        font-size: 12px
    }

    .feedback-form-wrap {
        padding: 0;
        margin-top: 20px
    }

    .feedback-form {
        padding: 25px 10px;
        border-radius: 30px
    }

    .feedback-form-title {
        font-size: 16px;
        line-height: 120%
    }

    .input-form {
        padding: 15px 10px 15px 20px
    }

    .select-form select {
        padding: 15px 10px 15px 20px
    }

    .confirm-form p,
    .confirm-form a {
        font-size: 14px
    }

    .feedback-wrap~.motivation-wrap {
        padding-top: 40px
    }

    .motivation .section-title {
        margin-top: 30px
    }

    .motivation .section-subtitle {
        margin-top: 20px
    }

    .motivation-list {
        margin-top: 30px
    }

    .motivation-row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding: 20px 15px;
        border-radius: 20px;
        border: 1px solid #faa318
    }

    .motivation-row.blue {
        border-color: #0095da
    }

    .motivation-caption {
        padding: 0;
        border: none;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-radius: 0;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .motivation-caption-icon {
        display: none
    }

    .motivation-caption b {
        margin-top: 0;
        margin-left: 15px;
        font-size: 20px
    }

    .motivation-caption-img {
        width: 45px;
        height: 45px
    }

    .motivation-caption p {
        margin-top: 20px;
        width: 100%;
        font-size: 14px
    }

    .motivation-media {
        margin-top: 25px;
        border-radius: 15px;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .teacher-wrap {
        margin-top: 40px;
        padding-top: 40px;
        padding-bottom: 40px
    }

    .teacher .section-title {
        margin-top: 20px
    }

    .teacher .section-subtitle {
        margin-top: 15px
    }

    .teacher-list {
        margin: 20px -12px 0;
        padding: 0 12px;
        max-width: calc(100% + 24px);
        overflow-x: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 15px
    }

    .teacher-card {
        width: 260px;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .teacher-media {
        height: 200px;
        border-radius: 15px
    }

    .teacher-result {
        top: 10px;
        left: 10px;
        border-radius: 10px;
        width: 100px
    }

    .teacher-result b {
        font-size: 20px;
        font-weight: 500
    }

    .teacher-result p {
        font-size: 10px;
        font-weight: 400;
        margin-top: 5px
    }

    .teacher-media-img {
        max-width: 180px;
        max-height: 190px
    }

    .teacher-caption {
        height: 70px;
        border-radius: 15px
    }

    .teacher-caption h6 {
        font-size: 18px
    }

    .teacher-caption p {
        font-size: 13px;
        margin-top: 5px
    }

    .review-wrap {
        padding-top: 40px
    }

    .review-list {
        padding: 0;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 40px
    }

    .review-card-media {
        height: 200px
    }

    .review-card-caption {
        height: 90px
    }

    .review-card-caption b {
        font-size: 18px
    }

    .review-card-caption p {
        font-size: 14px;
        margin-top: 5px
    }

    .review-tools {
        margin-top: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px
    }

    .review-tools .btn-custom {
        width: 100%
    }

    .tariff-wrap {
        margin-top: 40px;
        padding-top: 40px
    }

    .tariff-details {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 5px;
        padding-bottom: 50px;
        margin-bottom: 20px
    }

    .tariff-price {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .tariff-card .btn-custom {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        margin-top: 20px;
        width: 100%
    }

    .installment {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
        margin: 20px auto 0
    }

    .installment span {
        font-size: 12px
    }

    .installment img {
        width: 130px;
        margin-top: 10px
    }

    .faq-wrap {
        padding-top: 40px
    }

    .faq-list {
        margin-top: 30px
    }

    .collapse-header {
        padding: 20px 60px 20px 15px
    }

    .collapse-inner {
        padding: 0 15px 20px
    }

    .footer-wrap {
        margin-top: 40px
    }

    .footer {
        padding: 24px 15px;
        border-radius: 0;
        margin: 0 -12px
    }

    .footer-left {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%
    }

    .footer-social~div {
        display: none
    }

    .footer-logo {
        gap: 5px
    }

    .footer-logo span {
        display: block;
        font-size: 12px
    }

    .footer-logo img {
        width: 45px
    }

    .footer-middle {
        margin-top: 30px;
        width: 100%;
        gap: 50px
    }

    .footer-nav b {
        font-size: 14px;
        font-weight: 500
    }

    .footer-nav-list {
        margin-top: 10px
    }

    .footer-nav-link {
        font-size: 14px
    }

    .footer-right {
        margin-top: 30px;
        display: block
    }

    .footer-tel {
        margin-top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 15px
    }

    .footer-mail {
        margin-top: 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 15px
    }

    .footer-mail-feedback {
        margin-top: 0
    }

    .privacy-policy-copyright-sm {
        display: block;
        margin-top: 15px
    }

    .privacy-policy-copyright-sm .privacy-policy {
        font-size: 14px
    }

    .developer {
        margin-top: 10px;
        font-size: 12px;
        text-align: left
    }

    .developer span {
        font-size: 12px
    }

    .wrapper {
        padding-bottom: 0
    }
}

@media(min-width: 1400px) {
    .navbar-link {
        font-size: 20px
    }

    .collapse-header {
        font-size: 25px
    }
}

@media(hover: hover) {
    .btn-orange:hover {
        background: #1472c2
    }

    .btn-blue:hover {
        background: var(--1, #FAA318)
    }

    .navbar-link:hover {
        color: #faa318
    }

    .header-lang-btn:hover {
        color: #faa318
    }

    .navbar-dropdown-link:hover {
        color: #faa318
    }

    .result-slider-navigation-btn:hover {
        background: #faa318
    }

    .footer-nav-link:hover {
        color: #faa318
    }

    .footer-tel-link:hover,
    .footer-mail-link:hover {
        color: #faa318
    }

    .header-contact:hover span {
        color: #faa318
    }

    .scroll-up:hover svg path {
        stroke: #faa318;
        -webkit-transition: .25s ease;
        -o-transition: .25s ease;
        transition: .25s ease
    }
}
@media  (max-width: 1500px) {

    .header {
        padding: 5px 10px
    }

    .header-logo {
        gap: 5px
    }

    .navbar {
        gap: 25px
    }

    .header-contact-icon {
        width: 40px;
        height: 40px
    }

    .header-contact {
        gap: 5px;
        padding: 5px 15px 5px 5px
    }

    .header-contact-text {
        font-size: 12px
    }

    .header-lang-btn {
        font-size: 14px
    }

    .slider-caption {
        padding: 60px 0 40px 25px
    }

    .slider-caption h1 {
        font-size: 60px
    }

    .slider-number p {
        font-size: 12px;
        line-height: 120%
    }
    .slider-number b {
        font-size: 28px;
    }

    .slider-number {
        padding: 20px 15px;
        min-height: 150px;
        width: 160px;
    }
    .slider:before {
        content: "";
        width: 404px;
        height: 404px;
        background: hsla(0, 0%, 100%, .4);
        left: 87px;
    }
    .slider-numbers {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 0.8fr 0.8fr 0.8fr 1fr;
        gap: 14px;
    }
    .section-name span {
        font-size: 12px;
    }
    .btn-custom {
        padding: 25px 40px
    }
    .bonus-img {
        width: 50px;
        height: 50px;
    }
    .i-present {
        width: 20px;
    }
    .section-title {
        font-size: 40px
    }

    .program-card.violet .program-card-icon {
        width: 40px
    }

    .program-card.green .program-card-icon {
        width: 50px
    }

    .program-card.red .program-card-icon {
        width: 40px
    }

    .program-card.orange .program-card-icon {
        width: 30px
    }

    .program-card.mint .program-card-icon,
    .program-card.blue .program-card-icon {
        width: 35px;
        height: 35px;
        top: 5px
    }
    .section-subtitle{
        font-size: 14px;
        letter-spacing: 0px;
    }
    .result-progress svg {
        width: 50px;
        bottom: 31px;
        left: calc(50% - 2px);
    }
    .result-slider-navigation-btn{
        width: 50px;
        height: 50px;
    }
    .i-arrow-right {
        width: 20px;
        height: 20px;
    }
    .i-arrow-left {
        width: 20px;
        height: 20px;
    }

    .program-card-img {
        position: relative;
        height: 140px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .program-card-caption p {
        color: #193b53;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.16px;
    }
    .program-card-caption{
        padding: 15px 15px 0;
    }
    .program-card {
        padding: 10px 10px 20px;
        border-radius: 30px;
        background: #fff;
        min-height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
    }
    .inline-link{
        font-size: 14px;
    }
    .result-card {
        width: 260px;
        padding: 20px 20px 18px;
        border-radius: 20px;
        background: #1472c2;
        position: relative;
        overflow: hidden;
    }
    .result-card-media{
        height: 185px;
    }
    .result-card-primary {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0px;
    }
    .progress-item-name{
        font-size: 14px;
    }
    .progress-item-score {
        width: 80px;
        height: 70px;
    }
    .progress-item-score b {
        font-size: 18px;
    }
    .result-card-secondary span {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0px;
    }
    .result-card-secondary {
        padding: 5px 15px;
    }
    .swiper-wrapper {
        height: 430px;
    }
    .navbar-link {
        font-size: 12px;
    }
    .header-logo img {
        margin-top: -10px;
        width: 25%;
    }
    .header-logo span {
        font-size: 10px;
    }
    .header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 5px 10px 5px 24px;
        min-height: 60px;
        border-radius: 70px;
        background: hsla(0, 0%, 100% , 0.4);
        z-index: 2;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
        width: 100%;
    }
    .bonus-caption p {
        font-size: 12px;
    }
    .bonus-caption b{
        font-size: 25px;
    }
    .feedback-form {
        border-radius: 40px;
        background: #fff;
        -webkit-box-shadow: 1px 1px 31.2px 0 hsla(0, 0%, 100%, .3);
        box-shadow: 1px 1px 31.2px 0 hsla(0, 0%, 100%, .3);
        padding: 30px 30px 20px;
        width: 500px;
        height: 100%;
    }
    .feedback-expert-comment {
        font-size: 12px;
    }
    .feedback-expert-caption p{
        font-size: 12px;
    }
    .feedback-expert-caption b{
        font-size: 14px;
    }
    .feedback-expert-img img{
        width: 50px;
        height: 50px;
    }
    .feedback-expert-img:after {
        content: "";
        width: 50px;
        height: 50px;
        position: absolute;
        right: 10px;
        top: 0;
    }
    .motivation-media {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        border-radius: 30px;
        overflow: hidden;
        position: relative;
        max-height: 350px;
    }
    .motivation-caption-img {
        width: 80px;
        height: 80px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        border-radius: 50%;
        overflow: hidden;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .motivation-caption-icon {
        width: 220px;
    }
    .motivation-caption{
        border-radius: 30px;
    }
    .motivation-caption p {
        margin-top: 14px;
        color: #193b53;
        font-size: 14px;
        font-style: normal;
        font-weight: 100;
        line-height: 120%;
        letter-spacing: 0px;
    }
    .motivation-caption b {
        display: block;
        margin-top: 25px;
        color: #193b53;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0px;
    }
    .teacher-media-img {
        position: relative;
        z-index: 1;
        width: 240px;
    }
    .teacher-result{
        padding: 15px;
        width: 140px;
    }
    .teacher-result b {
        display: block;
        color: #fff;
        font-size: 35px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%;
        letter-spacing: -1.942px;
    }
    .teacher-result p {
        color: #fff;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 0;
        margin-top: 15px;
    }
    .teacher-caption h6 {
        font-size: 20px;
    }
    .teacher-caption p {
        font-size: 14px;
    }
    .teacher-caption {
        height: 100px;
    }
    .teacher-media {
        height: 280px;
        border-radius: 30px;
        overflow: hidden;
        background: #faa318;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .teacher-list {
        gap: 15px 15px;
    }
    .review-card-caption b {
        font-size: 18px;
    }
    .review-card-caption p {
        font-size: 12px;
    }
    .review-card-caption {
        height: 90px;
    }
    .section-name img{
        width: 15px;
        height: 15px;
    }
    .tariff-card .alert {
        padding: 10px 15px;
        font-size: 12px;
        top: -15px;
    }
    .tariff-name {
        font-size: 30px;
    }
    .tariff-details{
        margin-top: 25px;
    }
    .btn-custom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        padding: 15px 40px;
        border-radius: 50px;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        letter-spacing: -0.9px;
        border: none;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
        text-align: center;
    }
    .tariff-details li {
        padding-left: 26px;
        position: relative;
        color: #193b53;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 145%;
        letter-spacing: -0.8px;
    }
    .tariff-card {
        padding: 30px 30px 25px;
    }
    .tariff-price b {
        color: #193b53;
        font-size: 30px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        letter-spacing: -1.374px;
        display: block;
    }
    .installment span {
        font-size: 14px;
        font-weight: 500;
    }
    .installment img{
        width: 120px;
    }
    .feedback-form-title{
        font-size: 20px;
    }
    .input-form {
        padding: 15px 15px 15px 15px;
        font-size: 14px;
    }
    .select-form select {
        font-size: 14px;
        padding: 15px 15px 15px 15px;
    }
    .feedback-caption h2 {
        color: #fff;
        font-size: 35px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        text-transform: uppercase;
    }
    .select-city b{
        font-size: 16px;
        font-weight: 400;
    }
    .program-card-grade{
        font-size: 11px;
        font-weight: 400;
    }
    .footer-social {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 5px;
        margin-top: -160px;
    }
    .i-whatsapp {
        width: 40px;
    }
    .i-youtube {
        width: 40px;
    }
    .i-telegram {
        width: 40px;
    }
    .program-card-img h6 {
        color: #fff;
        text-align: center;
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: -0.5px;
    }
    .collapse-header {
        font-size: 16px;
    }
    .collapse-inner p {
        font-size: 14px;
    }
    .footer-right-title {
        font-size: 14px;
    }
    .footer-nav b {
        font-size: 14px;
    }
    .footer-nav-link {
        font-size: 14px;
    }
    .footer-tel-link {
        font-size: 25px;
    }
    .footer-tel-feedback {
        font-size: 12px;
    }
    .footer-mail-link {
        font-size: 25px;
    }
    .footer-mail p {
        margin-top: 10px;
        opacity: 0.6;
        font-size: 12px;
    }
    .footer-logo img {
        width: 50px;
    }
    .footer-logo span {
        font-size: 12px;
    }
    .footer {
        padding: 50px 60px 40px;
        height: 450px;

    }
}
@media  (min-width: 1501px) and (max-width: 1700px) {

    .header {
        padding: 5px 10px
    }

    .header-logo {
        gap: 5px
    }

    .navbar {
        gap: 15px
    }

    .header-contact-icon {
        width: 40px;
        height: 40px
    }

    .header-contact {
        gap: 5px;
        padding: 5px 15px 5px 5px
    }

    .header-contact-text {
        font-size: 16px
    }

    .header-lang-btn {
        font-size: 14px
    }

    .slider-caption {
        padding: 60px 0 40px 25px
    }

    .slider-caption h1 {
        font-size: 55px
    }

    .slider-number p {
        font-size: 18px;
        line-height: 120%
    }

    .slider-number {
        padding: 20px 15px
    }

    .btn-custom {
        padding: 25px 40px
    }

    .section-title {
        font-size: 40px
    }

    .program-card.violet .program-card-icon {
        width: 40px
    }

    .program-card.green .program-card-icon {
        width: 50px
    }

    .program-card.red .program-card-icon {
        width: 40px
    }

    .program-card.orange .program-card-icon {
        width: 30px
    }

    .program-card.mint .program-card-icon,
    .program-card.blue .program-card-icon {
        width: 40px;
        height: 40px;
        top: 5px
    }

    .result-progress svg {
        width: 60px
    }

    .feedback-caption h2 {
        font-size: 37px
    }
    .program-card-img {
        position: relative;
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    }
    .program-card-caption p {
        color: #193b53;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.16px;
    }
    .program-card {
        padding: 10px 10px 30px;
        border-radius: 30px;
        background: #fff;
        min-height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
    }
    .result-card {
        width: 400px;
        padding: 20px 20px 18px;
        border-radius: 20px;
        background: #1472c2;
        position: relative;
        overflow: hidden;
    }
    .navbar-link {
        font-size: 16px;
    }

    .header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    ;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 5px 10px 5px 24px;
        min-height: 75px;
        border-radius: 70px;
        background: hsla(0, 0%, 100%, .4);
        z-index: 2;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
        width: 100%;
    }
    .feedback-form {
        border-radius: 40px;
        background: #fff;
        -webkit-box-shadow: 1px 1px 31.2px 0 hsla(0, 0%, 100%, .3);
        box-shadow: 1px 1px 31.2px 0 hsla(0, 0%, 100%, .3);
        padding: 28px 39px 40px;
        width: 600px;
        height: 100%;
    }

    .motivation-media {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        border-radius: 50px;
        overflow: hidden;
        position: relative;
        max-height: 450px;
    }
    .motivation-caption-img {
        width: 100px;
        height: 100px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        border-radius: 50%;
        overflow: hidden;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .motivation-caption p {
        margin-top: 34px;
        color: #193b53;
        font-size: 14px;
        font-style: normal;
        font-weight: 100;
        line-height: 120%;
        letter-spacing: -0.85px;
    }
    .motivation-caption b {
        display: block;
        margin-top: 25px;
        color: #193b53;
        font-size: 30px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: -1.5px;
    }
    .teacher-media-img {
        position: relative;
        z-index: 1;
        width: 320px;
    }
    .teacher-result b {
        display: block;
        color: #fff;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: -1.942px;
    }
    .teacher-result p {
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: -0.804px;
        margin-top: 15px;
    }
    .teacher-media {
        height: 350px;
        border-radius: 30px;
        overflow: hidden;
        background: #faa318;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    ;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .btn-custom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    ;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        padding: 26px 80px;
        border-radius: 50px;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        letter-spacing: -0.9px;
        border: none;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
        text-align: center;
    }
    .tariff-details li {
        padding-left: 26px;
        position: relative;
        color: #193b53;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 145%;
        letter-spacing: -0.8px;
    }
    .tariff-price b {
        color: #193b53;
        font-size: 35px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%;
        letter-spacing: -1.374px;
        display: block;
    }
    .feedback-form {
        border-radius: 40px;
        background: #fff;
        -webkit-box-shadow: 1px 1px 31.2px 0 hsla(0, 0%, 100%, .3);
        box-shadow: 1px 1px 31.2px 0 hsla(0, 0%, 100%, .3);
        padding: 28px 39px 40px;
        width: 600px;
        height: 100%;
    }
    .feedback-caption h2 {
        color: #fff;
        font-size: 50px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        text-transform: uppercase;
    }
    .footer-social {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 5px;
        margin-top: -200px;
    }
    .program-card-img h6 {
        color: #fff;
        text-align: center;
        font-size: 30px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        letter-spacing: -1.5px;
    }
    .collapse-header {
        font-size: 20px;
    }
}

