:root{
    --color-black: #141820;
    --color-primary: #DEFF2C;
    --color-blue: #15156B;
    --color-gray: #E8EAF0;
    --color-placeholder: #9CA3AF;
}





@font-face {
    font-family: 'Vela Sans';
    src: url('../fonts/VelaSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vela Sans';
    src: url('../fonts/VelaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vela Sans';
    src: url('../fonts/VelaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vela Sans';
    src: url('../fonts/VelaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vela Sans';
    src: url('../fonts/VelaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vela Sans';
    src: url('../fonts/VelaSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

*{
    box-sizing: border-box;
    position: relative;
}

body {
    font-family: 'Vela Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    margin: 0;
}

.container{
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 40px;
}

.wrapper{
    display: flex;
    gap: 24px;
}

a{
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover{
    opacity: 0.8;
}

.btn-group{
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn{
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    padding: 14px 40px;
    border-radius: 48px;
    background-color: var(--color-primary);
    color: #141820;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn img{
    margin-top: 2px;
}

.btn-black{
    background-color: var(--color-black);
    color: #fff;
}

.btn-transparent{
    background-color: transparent;
    color: #fff;
    padding: 0;
}

.btn-outline-white{
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 40px;
}

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

h1{
    font-size: 52px;
    line-height: 0.9;
    font-weight: 700;
}

h2{
    font-size: 46px;
    line-height: 50px;
    font-weight: 800;
}

p{
    margin: 0;
}

input, textarea, select, button{
    font-family: 'Vela Sans', sans-serif;
}

img{
    display: block;
}

section{
    margin: 80px 0;
}


.header{
    position: relative;
    z-index: 100;
}

.header .top-header .controls .burger{
    display: none;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.top-header-wrap{
    position: relative;
}

.header .main-nav nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    font-weight: 500;
}

.header .main-nav .dropdown{
    position: relative;
}

.header .main-nav .dropdown-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header .main-nav .dropdown-arrow{
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.header .main-nav .dropdown.is-open .dropdown-arrow{
    transform: rotate(225deg) translateY(-2px) translateX(-2px);
}

.header .main-nav .dropdown-content{
    display: none;
    position: absolute;
    top: calc(100% + 50px);
    left: 0;
    min-width: 356px;
    max-height: 70vh;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0px 28px 64px 0px #08184452;
    z-index: 40;
}

.header .main-nav .dropdown.is-open .dropdown-content{
    display: block;
}

.header .main-nav .dropdown-content ul{
    display: block;
    gap: 0;
}

.header .main-nav .dropdown-content ul li + li{
    margin-top: 14px;
}

.header .main-nav .dropdown-content ul li a{
    color: var(--color-black);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--color-placeholder);
}

.header .main-nav .dropdown-content ul li:hover a{
    font-weight: 700;
    opacity: 1;
}

.mobile-menu{
    display: none;
    position: absolute;
    top: calc(100% - 5px);
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background-color: #fff;
    z-index: 90;
    padding: 40px 0;
    box-shadow: 0 12px 24px rgba(20, 24, 32, 0.08);
}

.mobile-menu .container{
    padding: 0 40px;
}

.mobile-menu.is-open{
    display: block;
}

body.menu-open .top-header-wrap{
    background-color: #fff;
}

.mobile-menu .wrapper,
.mobile-menu .bottom .wrapper{
    display: flex;
    gap: 24px;
}

.mobile-menu .col,
.mobile-menu .bottom .col{
    flex: 1 1 0;
    min-width: 0;
}

.mobile-menu .col nav + nav{
    margin-top: 60px;
}

.mobile-menu .col .title{
    font-size: 30px;
    font-weight: 700;
    color: var(--color-blue);
}

.mobile-menu .col ul{
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.mobile-menu .col ul li + li{
    margin-top: 14px;
}

.mobile-menu .col ul li a{
    color: var(--color-black);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--color-placeholder);
}

.mobile-menu .bottom{
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--color-gray);
}

.mobile-menu .bottom .wrapper{
    align-items: flex-start;
}

.mobile-menu .bottom .contacts-link .link{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.mobile-menu .bottom .col:nth-child(2) .contacts-link .link{
    flex-direction: row;
    align-items: center;
}

.mobile-menu .bottom .contacts-link .link .title{
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
}

.mobile-menu .bottom .contacts-link .link a{
    color: var(--color-black);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--color-placeholder);
}

.mobile-menu .bottom .socials{
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.mobile-menu .bottom .socials .link{
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu .bottom nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .bottom nav ul li + li{
    margin-top: 14px;
}

.mobile-menu .bottom nav ul li a{
    color: var(--color-black);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--color-placeholder);
}



.header .top-header .top-header-logo img{
    width: 205px;
    width: auto;
}

.header .top-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.header .top-header .links{
    display: flex;
    align-items: center;
    gap: 24px;
}

.header .top-header .links a:not(.tel){
    text-decoration: underline;
    font-weight: 500;
}

.header .top-header .links a.tel{
    font-weight: 700;
}

.header .top-header .controls{
    display: flex;
    align-items: center;
    gap: 24px;
}


.header .main-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}



.header .main-header .dropdown{
    position: relative;
}

.header .main-header .dropdown-btn{
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
}

.header .main-header .dropdown-btn img{
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}

.header .main-header .dropdown.is-open .dropdown-btn img{
    transform: rotate(180deg);
}

.header .main-header .dropdown-content{
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    width: 360px;
    max-height: 70vh;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(20, 24, 32, 0.16);
    z-index: 30;
}

.header .main-header .dropdown.is-open .dropdown-content{
    display: block;
}

.header .main-header .dropdown-content ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.header .main-header .dropdown-content ul li + li{
    margin-top: 14px;
}

.header .main-header .dropdown-content ul li a{
    color: var(--color-black);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--color-placeholder);
}









.section-hero{
    border-radius: 30px;
    padding: 230px 0 120px 0;
    margin-top: 0;
    overflow: hidden;
    isolation: isolate;
}

.section-hero .hero-bg{
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-hero .hero-bg-slide{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.section-hero .hero-bg-slide.is-active{
    opacity: 1;
    z-index: 1;
}

.section-hero .hero-bg-slide::after{
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.section-hero .container{
    z-index: 1;
}

.section-hero .hero-text{
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: opacity 0.3s ease;
}

.section-hero .hero-text.is-changing{
    opacity: 0;
}

.section-hero .hero-pagination{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.section-hero .hero-pagination-bullet{
    width: 30px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background-color: #fff;
    opacity: 0.45;
    cursor: pointer;
    transition: width 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.section-hero .hero-pagination-bullet.is-active{
    width: 80px;
    background-color: var(--color-black);
    opacity: 1;
}

.section-hero .wrapper{
    gap: 80px;
    align-items: flex-end;
    justify-content: space-between;
}

.section-hero .col-left{
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 900px;
}

.section-hero .col-left h1{
    color: #fff;
    margin: 0;
}

.section-hero .col-left h1 strong{
    color: var(--color-primary);
    font-weight: inherit;
}

.section-hero .col-left p{
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.section-hero .col-left .btn-group{
    margin-top: 100px;
}

.section-hero .col-right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 45px;
    min-width: 480px;
    width: 480px;
}

.section-hero .col-right .info-badge{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 490px;
    padding: 20px;
    border-radius: 14px;
    background-color: var(--color-blue);
    gap: 50px;
}

.section-hero .col-right .info-badge .price{
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    min-width: max-content;
}

.section-hero .col-right .info-badge .content{
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section-hero .col-right .info-badge .content p{
    font-size: 14px;
}

.section-hero .col-right .calc{
    padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.section-hero .col-right .calc .title{
    font-size: 24px;
    font-weight: 700;
    color: var(--color-blue);
}

.section-hero .col-right .calc .badge{
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 8.5px 14px;
    background-color: #CE1C3033;
    color: var(--color-primary);
    border-radius: 20px;
}

.section-hero .col-right .calc p{
    font-size: 14px;
    margin-top: 6px;
}

.section-hero .col-right .calc .specialties{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 24px 0;
}

.section-hero .col-right .calc .specialties .specialty{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.section-hero .col-right .calc .specialties .specialty .name{
    font-size: 14px;
    font-weight: 600;
    color: var(--color-blue);
    padding: 10px;
    width: 100%;
}

.section-hero .col-right .calc .specialties .specialty input{
    font-size: 16px;
    font-weight: 700;
    color: var(--color-blue);
    border-radius: 10px;
    border: 1px solid var(--color-gray);
    padding: 10px;
    max-width: 74px;
    min-width: 74px;
    text-align: right;
}

.section-hero .col-right .calc .specialties .specialty select{
    font-size: 14px;
    font-weight: 600;
    color: var(--color-blue);
    border-radius: 10px;
    border: 1px solid var(--color-gray);
    background-color: #FBFBFB;
    padding: 10px;
    width: 100%;
}

.section-hero .col-right .calc .result{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--color-gray);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.section-hero .col-right .calc .result .count{
    font-size: 30px;
    color: var(--color-blue);
}

.section-hero .col-right .calc .result .count small{
    font-size: 14px;
    color: var(--color-black);
}

.section-hero .col-right .calc .sub{
    font-size: 12px;
    color: var(--color-placeholder);
    margin: 8px 0;
    text-align: center;
}

.section-hero .col-right .calc .footer-text{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: var(--color-black);
}

.section-hero .col-right .calc .footer-text a{
    font-weight: 700;
    color: var(--color-blue);
}

.section-numbers{
    margin: 28px 0;
    
}

.section-numbers .wrapper{
    border-radius: 10px;
    border: 1px solid var(--color-gray);
    padding: 10px 18px;
    padding-bottom: 20px;
}

.section-numbers .item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex: 1;
}

.section-numbers .item .item-header{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.section-numbers .item .title{
    font-size: 24px;
    line-height: 20px;
    font-weight: 800;
    color: var(--color-blue);
}

.section-numbers .item span{
    font-size: 14px;
    color: var(--color-black);
}

.section-heading{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 780px;
}

.section-heading h2 strong{
    position: relative;
    z-index: 0;
    line-height: 1em;
    display: inline-block;
    padding: 2px 8px;
}

.section-heading h2 strong::before{
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-blue);
    border-radius: 8px;
    transform: rotate(calc(-1 * atan(0.5px / 1em)));
    z-index: -1;
}

.section-heading h2 .heading-end{
    position: relative;
}

.section-heading h2 .heading-end::after{
    content: '';
    position: absolute;
    top: -18px;
    right: -40px;
    width: 46px;
    height: 50px;
    background-image: url('../img/star-yellow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.section-heading .subtitle{
    font-size: 20px;
}

.section-programs{
    margin: 80px 0;
}

.section-programs .programs-slider{
    margin-top: 50px;
}

.section-programs .programs-nav.link{
    display: none;
}

.section-programs .programs-swiper .swiper-slide{
    height: auto;
}



.section-programs .item{
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--item-color, var(--color-blue));
    box-shadow: 0 -6px 0 0 var(--item-color, var(--color-blue)) inset;
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    transition: transform 0.2s ease;
}

.section-programs .item:hover{
    transform: translateY(-5px);
}

.section-programs .item.item-consultation{
    background-color: #0A38A6;
    color: #fff;
}

.section-programs .item[data-color="blue"]{ --item-color: #15156B; }
.section-programs .item[data-color="orange"] { --item-color: #FF6B1A; }
.section-programs .item[data-color="green"] {   --item-color: #1C772A; }
.section-programs .item[data-color="violet"] { --item-color: #6C2771; }
.section-programs .item[data-color="red"] { --item-color: #CE1C30; }
.section-programs .item[data-color="cyan"] { --item-color: #4EAB99; }
.section-programs .item[data-color="pink"] { --item-color: #FF4BBE; }

.section-programs .item .icon{
    position: absolute;
    top: 20px;
    right: 20px;
}

.section-programs .item .item-heading{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-right: 40px;
}


.section-programs .item .title{
    font-size: 24px;
    line-height: 1em;
    font-weight: 600;
}

.section-programs .item.item-consultation .title{
    max-width: 160px;
}

.section-programs .item .item-footer{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.section-programs .item.item-consultation .item-footer{
    justify-content: flex-end;
}

.section-programs .item .item-footer .price{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
}



.section-programs .item .item-footer .price small{
    font-size: 14px;
    color: var(--color-blue);
}

.section-programs .item .item-footer .btn{
    color: var(--color-primary);
}

.section-programs .item .badge{
    min-width: 100px;
    min-height: 100px;
    height: 100px;
    background-image: url('../img/hit.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: absolute;
    right: 15%;
    top: -60px;
    transform: rotate(15deg);
}


.cta-form-1 .wrapper{
    padding: 40px;
    background-color: #4EAB99;
    border-radius: 20px;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
}

.cta-form-1 .wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 100%;
    background-image: url(../img/stripes-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    z-index: 0;
}

.cta-form-1 .wrapper::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    background-image: url(../img/stripes.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    z-index: 0;
}

.cta-form-1 .col-left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    width: 48%;
    z-index: 1;
}

.cta-form-1 .col-left h2{
    color: #fff;
    font-size: 52px;
    font-weight: 700;
}

.cta-form-1 .col-left h2 b{
    color: #CE1C30;
    font-weight: inherit;
}

.cta-form-1 .col-left .sub{
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}



.cta-form-1 .col-right{
    width: 48%;
    z-index: 1;
}

.cta-form-1 .col-right form{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    row-gap: 14px;
}

.cta-form-1 .col-right form input{
    font-size: 16px;
    color: var(--color-blue);
    border-radius: 10px;
    border: 1px solid var(--color-gray);
    padding: 18px 20px;
    width: calc(50% - 12px);
}

.cta-form-1 .col-right form button{
    width: calc(50% - 12px);
}

.cta-form-1 .col-right form .sub{
    color: #fff;
}



.why-choose-us .wrapper{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.why-choose-us .item{
    width: calc(50% - 12px);
    padding: 24px;
    border-radius: 40px;
    border: 3px solid var(--item-color, var(--color-blue));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.why-choose-us .item:hover{
    transform: translateY(-5px);
}

.why-choose-us .item[data-color="blue"] { --item-color: #0A38A6; }
.why-choose-us .item[data-color="orange"] { --item-color: #FF6B1A; }
.why-choose-us .item[data-color="green"] { --item-color: #1C772A; }
.why-choose-us .item[data-color="violet"] { --item-color: #6913D9; }
.why-choose-us .item[data-color="red"] { --item-color: #CE1C30; }
.why-choose-us .item[data-color="cyan"] { --item-color: #4EAB99; }
.why-choose-us .item[data-color="pink"] { --item-color: #FF4BBE; }
.why-choose-us .item[data-color="light-blue"] { --item-color: #7CB1FF; }


.why-choose-us .item.fill{
    background-color: #D9C9F5;
}

.why-choose-us-alt .item.fill{
    background-color: #F0FDF4;
}

.why-choose-us .item .title{
    font-size: 36px;
    font-weight: 700;
    color: var(--item-color, var(--color-blue));
}

.why-choose-us-alt .item .title{
    color: var(--color-black);
}



.why-choose-us .item.fill .title{
    color: #6913D9;
}

.why-choose-us-alt .item.fill .title{
    color: var(--color-black);
}

.why-choose-us-alt .bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 1;
    margin-top: 40px;
}

.why-choose-us-alt .bottom:not(:has(.text)){
    justify-content: flex-end;
}

.why-choose-us-alt .bottom .text{
    font-size: 32px;
    font-weight: 700;
}

.why-choose-us-alt .bottom-small .text{
    font-size: 20px;
    font-weight: 400;
}

.why-choose-us .item .sub{
    max-width: 670px;
    font-size: 20px;
    flex: 1;
}

.why-choose-us .item .icon-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
    margin-top: 25px;
    z-index: 1;
    flex: 1;
}

.why-choose-us .item .icon-list .icon-list-item{
    display: flex;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
}

.why-choose-us .item:first-child::before{
    content: '';
    position: absolute;
    display: block;
    right: 10px;
    top: 0;
    background-image: url('../img/before1.svg');
    background-size: cover;
    width: 100px;
    height: 100px;
}

.why-choose-us .item:first-child::after{
    content: '';
    position: absolute;
    display: block;
    right: 100px;
    bottom: -10px;
    background-image: url('../img/after1.svg');
    background-size: cover;
    width: 127px;
    height: 110px;
}

.why-choose-us .item:nth-child(2)::before{
    content: '';
    position: absolute;
    display: block;
    right: 0px;
    top: 0;
    background-image: url('../img/before2.svg');
    background-size: cover;
    width: 100px;
    height: 100px;
}

.why-choose-us .item:nth-child(2)::after{
    content: '';
    position: absolute;
    display: block;
    right: 100px;
    bottom: -10px;
    background-image: url('../img/after2.svg');
    background-size: cover;
    width: 127px;
    height: 127px;
}

.why-choose-us .item:nth-child(3)::before{
    content: '';
    position: absolute;
    display: block;
    right: 0px;
    top: 0;
    background-image: url('../img/before3.svg');
    background-size: cover;
    width: 100px;
    height: 100px;
}

.why-choose-us .item:nth-child(3)::after{
    content: '';
    position: absolute;
    display: block;
    right: 200px;
    bottom: -10px;
    background-image: url('../img/after3.svg');
    background-size: cover;
    width: 120px;
    height: 85px;
}


.why-choose-us .item:nth-child(4)::before{
    content: '';
    position: absolute;
    display: block;
    right: 0px;
    top: 0;
    background-image: url('../img/before4.svg');
    background-size: cover;
    width: 100px;
    height: 100px;
}

.why-choose-us .item:nth-child(4)::after{
    content: '';
    position: absolute;
    display: block;
    right: 200px;
    bottom: -10px;
    background-image: url('../img/after4.svg');
    background-size: cover;
    width: 120px;
    height: 85px;
}

.why-choose-us-alt .item:first-child::after{
    left: 20px;
    right: auto;
    bottom: 0px;
}

.why-choose-us-alt .item:first-child::before{
    background-image: url('../img/alt1.svg');
    width: 70px;
    height: 130px;
    right: 0px;
    top: 50px;
}

.why-choose-us-alt .item:nth-child(2)::after{
    background-image: url(../img/alt2.svg);
    left: 150px;
    bottom: 0px;
    right: auto;
}

.why-choose-us-alt .item:nth-child(2)::before{
    background-image: url(../img/alt-b.svg);
    width: 150px;
    height: 213px;
    top: -60px;
    right: 60px;
}

.why-choose-us-alt .item{
    overflow: visible;
}





.why-choose-us-alt .item{
    border-bottom-width: 10px;
}

.why-choose-us-alt.alt-v2 .item:nth-child(1){
    background-color: #EEF5FF;
    border-color: #7CB1FF;
}

.why-choose-us-alt.alt-v2 .item:nth-child(2){
    background-color: #F9F3FF;
    border-color: #D9C9F5;
}

.why-choose-us-alt.alt-v2 .item:nth-child(1)::after{
    background-image: url(../img/9-after.svg);
    width: 140px;
    height: 140px;
    top: -80px;
    right: -30px;
    left: auto;
}

.why-choose-us-alt.alt-v2 .item:nth-child(2)::before{
    background-image: url(../img/11-after.svg);
    width: 140px;
    height: 140px;
    top: -80px;
    right: -30px;
}

.why-choose-us-alt.alt-v2 .item:first-child::before{
    content: none;
}

.why-choose-us-alt.alt-v2 .wrapper{
    margin-top: 80px;
}


.payments .inner{
    background-color: #F6F9FF;
    border-radius: 16px;
    padding: 30px 20px;
}

.payments .wrapper{
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.payments .item{
    width: calc(25% - 18px);
    padding: 24px;
    border-radius: 24px;
    border: 3px solid var(--item-color, var(--color-blue));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transition: transform 0.2s ease;
}

.payments .item:hover{
    transform: translateY(-5px);
}

.payments .item[data-color="blue"] { --item-color: #15156B; }
.payments .item[data-color="orange"] { --item-color: #FF6B1A; }
.payments .item[data-color="green"] { --item-color: #1C772A; }
.payments .item[data-color="violet"] { --item-color: #6C2771; }
.payments .item[data-color="red"] { --item-color: #CE1C30; }
.payments .item[data-color="cyan"] { --item-color: #4EAB99; }
.payments .item[data-color="pink"] { --item-color: #FF4BBE; }
.payments .item[data-color="light-blue"] { --item-color: #7A94D2; }

.payments .item.fill{
    background: linear-gradient(112deg, #1C52BB 3.06%, #13203E 91.97%);
}

.payments .item .num{
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--item-color, var(--color-blue));
    z-index: 1;
}

.payments .item .title{
    font-size: 24px;
    font-weight: 600;
    z-index: 1;
}

.payments .item.fill .num{
    color: #A4F6BF;
}

.payments .item.fill .title,
.payments .item.fill p{
    color: #fff;
}

.payments .item img{
    position: absolute;
    right: 0;
    top: 10px;
}

.cta-form-2 .wrapper{
    padding: 30px 40px;
    background-color: #7CB1FF;
    border-radius: 20px;
    gap: 26px;
    flex-direction: column;
    align-items: flex-start;
}

.cta-form-2 .heading{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    z-index: 1;
}

.cta-form-2 h2{
    color: #fff;
    font-size: 52px;
    font-weight: 700;
}

.cta-form-2 h2 b, .cta-form-2 h2 strong{
    font-weight: inherit;
    color: #FD5001;
}

.cta-form-2 .sub{
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.cta-form-2 form{
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    z-index: 1;
}

.cta-form-2 form input, .cta-form-2 form .col{
    width: calc(33.33% - 12px);
}

.cta-form-2 form .col{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-form-2 form input:not([type="checkbox"]){
    font-size: 16px;
    color: var(--color-blue);
    border-radius: 10px;
    border: 1px solid var(--color-gray);
    padding: 18px 20px;
}

.cta-form-2 form button{
    padding: 20px 40px;
}

.cta-form-2 form .acceptance{
    display: flex;
    gap: 10px;
}

.cta-form-2 input[type="checkbox"]{
    margin: 0;
    min-width: 20px;
    width: 20px;
    height: 20px;
}

.cta-form-2 form .acceptance label{
    font-size: 14px;
    color: var(--color-black)
}

.cta-form-2 .wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 100%;
    background-image: url(../img/stripes-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    z-index: 0;
}

.cta-form-2 .wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    background-image: url(../img/stripes.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    z-index: 0;
}

.section-specialties .wrapper{
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.section-specialties .filters{
    display: flex;
    gap: 18px;
}

.section-specialties .filters .tab{
    font-size: 18px;
    font-weight: 700;
    padding: 11.5px 28px;
    border: 1px solid var(--color-blue);
    border-radius: 40px;
    cursor: pointer;
}


.section-specialties .filters .tab:hover{
    opacity: 0.8;
}

.section-specialties .filters .tab[data-filter="full-time"]{
    color: #2FAEED;
    border-color: #2FAEED;
    background-color: #E3F3FF;
}

.section-specialties .filters .tab[data-filter="part-time"]{
    color: #6913D9;
    border-color: #6913D9;
    background-color: #D9C9F5;
}

.section-specialties .filters .tab[data-filter="correspondence"]{
    color: #48CE1C;
    border-color: #48CE1C;
    background-color: #48CE1C21;
}


.section-specialties .filters .tab.active, .section-specialties .filters .tab:hover{
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: #fff;
}

.section-specialties .specialties{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.section-specialties .specialties .item{
    width: calc(33.33% - 16px);
    padding: 20px;
    border: 1px solid var(--color-black);
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.section-specialties .specialties .item.is-hidden{
    display: none;
}

.section-specialties .specialties .item:hover{
    transform: translateY(-5px);
}





.section-specialties .specialties .item .heading{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-gray);
    flex: 1;
}

.section-specialties .specialties .item[data-color="blue"] { --item-color: #15156B; }
.section-specialties .specialties .item[data-color="orange"] { --item-color: #FF6B1A; }
.section-specialties .specialties .item[data-color="green"] { --item-color: #1C772A; }
.section-specialties .specialties .item[data-color="violet"] { --item-color: #6C2771; }
.section-specialties .specialties .item[data-color="red"] { --item-color: #CE1C30; }
.section-specialties .specialties .item[data-color="cyan"] { --item-color: #4EAB99; }
.section-specialties .specialties .item[data-color="pink"] { --item-color: #FF4BBE; }

.section-specialties .specialties .item .heading .badges{
    display: flex;
    gap: 10px;
}

.section-specialties .specialties .item .heading .badge{
    border: 1px solid;
    font-size: 10px;
    line-height: 1em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 40px;
}

.section-specialties .specialties .item .heading .badge:first-child{
    color: #2FAEED;
    border-color: #2FAEED;
    background-color: #E3F3FF;
}

.section-specialties .specialties .item .heading .badge:last-child{
    color: #6913D9;
    border-color: #6913D9;
    background-color: #D9C9F5;
}

.section-specialties .specialties .item .heading .badge:nth-child(2):not(:last-child){
    color: #48CE1C;
    border-color: #48CE1C;
    background-color: #48CE1C21;
}

.section-specialties .specialties .item .heading .title{
    font-size: 24px;
    font-weight: 700;
}

.section-specialties .specialties .item .heading .sub{
    color: var(--color-black);
    font-weight: 600;
    transition: all 0.3s ease;
}

.section-specialties .specialties .item .bottom{
    padding-top: 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.section-specialties .specialties .item .bottom .info{
    font-size: 14px;
}

.section-specialties .specialties .item .bottom .price-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-specialties .specialties .item .bottom .price-wrapper .price{
    font-size: 20px;
    font-weight: 700;
}

.section-specialties .specialties .item .bottom .price-wrapper .sub{
    font-size: 14px;
    color: var(--color-blue);
    transition: all 0.3s ease;
}

.section-specialties .specialties .item:hover .price-wrapper .sub{
    color: #fff;
}

.section-specialties .specialties .item .bottom .link{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-steps .container{
    padding: 30px 20px;
    background-color: #EEF2FF;
    border-radius: 16px;
    max-width: 1680px;
}

.section-steps .wrapper{
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.section-steps .item{
    width: calc(25% - 18px);
    padding: 20px;
    border-radius: 16px;
    background-color: var(--item-bg, #CE1C3033);
    display: flex;
    flex-direction: column;
    gap: 60px;
    transition: transform 0.2s ease;
}

.section-steps .item:hover{
    transform: translateY(-5px);
}

.section-steps .item:nth-child(1){ --item-bg: #E6FF5D33; --item-num: #C8E7A4; }
.section-steps .item:nth-child(2){ --item-bg: #FFD7F1; --item-num: #FF4BBE; }
.section-steps .item:nth-child(3){ --item-bg: #FCF9C6; --item-num: #e9e154; }
.section-steps .item:nth-child(4){ --item-bg: #F0FDF4; --item-num: #43969F; }

.section-steps .item .heading{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.section-steps .item .heading .num{
    font-size: 84px;
    line-height: 0.9em;
    font-weight: 700;
    color: var(--item-num, #ED762F);
}

.section-steps .item .heading .title{
    font-size: 24px;
    font-weight: 700;
    max-width: 45%;
}

.section-steps .item .text{
    font-size: 20px;
}

.section-steps .item .badge{
    position: absolute;
    bottom: calc(100% - 40px);
    right: 0;
}


.cta-form-3 .wrapper{
    padding: 40px;
    background-color: #D9C9F5;
    border-radius: 20px;
    gap: 50px;
    flex-direction: column;
    align-items: flex-start;
}

.cta-form-3 .heading{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    z-index: 1;
}

.cta-form-3 h2{
    font-size: 52px;
    font-weight: 700;
}

.cta-form-3 h2 b, .cta-form-3 h2 strong{
    font-weight: inherit;
    color: #141820;
}

.cta-form-3 .sub{
    font-size: 24px;
    font-weight: 700;
    max-width: 840px;
}

.cta-form-3 form{
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    z-index: 1;
}

.cta-form-3 form input, .cta-form-3 form .col{
    width: calc(33.33% - 12px);
}

.cta-form-3 form .col{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-form-3 form input:not([type="checkbox"]){
    font-size: 16px;
    color: var(--color-blue);
    border-radius: 10px;
    border: 1px solid var(--color-gray);
    padding: 18px 20px;
}

.cta-form-3 form button{
    padding: 20px 40px;
}

.cta-form-3 form .acceptance{
    display: flex;
    gap: 10px;
}

.cta-form-3 input[type="checkbox"]{
    margin: 0;
    min-width: 20px;
    width: 20px;
    height: 20px;
}

.cta-form-3 form .acceptance label{
    font-size: 14px;
}

.cta-form-3 .wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 100%;
    background-image: url(../img/stripes-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    z-index: 0;
}

.cta-form-3 .wrapper::after {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 100px;
    width: 272px;
    height: 266px;
    background-image: url(../img/cat.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    z-index: 0;
}

.section-reviews{
    padding-top: 20px;
    overflow-x: clip;
}

.section-reviews .section-heading{
    padding-right: 50px;
}

.section-reviews .reviews-slider{
    position: relative;
}

.section-reviews .reviews-nav.link{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
}

.section-reviews .reviews-nav.link.is-hidden{
    display: none;
}

.section-reviews .reviews-nav-prev{
    left: max(40px, calc((100vw - 1760px) / 2 + 40px));
}

.section-reviews .reviews-nav-prev img{
    transform: rotate(180deg);
}

.section-reviews .reviews-nav-next{
    right: max(40px, calc((100vw - 1760px) / 2 + 40px));
}

.section-reviews .reviews-swiper{
    width: 100%;
    margin-top: 40px;
    overflow-x: clip;
    overflow-y: visible;
}

.section-reviews .swiper-slide{
    height: auto;
}

.section-reviews .item{
    height: 442px;
    overflow: hidden;
    display: flex;
    
}


.section-reviews .item .image img{
    width: 283px;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 0 0 16px;
}

.section-reviews .item .content{
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    background-color: #FBFBFB;
    border-radius: 0 16px 16px 0;
}

.section-reviews .item .content .heading .name{
    font-size: 24px;
    font-weight: 700;
}

.section-reviews .item .content .heading .sub{
    font-size: 16px;
    margin-top: 4px;
}

.section-reviews .item .content .bottom{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-reviews .item .content .bottom .rating{
    color: #FFD343;
    font-size: 16px;
}

.section-reviews .item .content .bottom p{
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.section-reviews .btn{
    margin-top: 40px;
    min-width: 400px;
}

.section-partners .wrapper{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.section-partners .wrapper img{
    width: calc((100% - 100px - 5 * 24px) / 6);
    height: auto;
    display: block;
    object-fit: contain;
}

.section-partners .wrapper img:nth-child(7){
    margin-left: 100px;
}

.section-news .news-slider{
    position: relative;
    margin-top: 70px;
}

.section-news .news-nav.link{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
}

.section-news .news-nav.link.is-hidden{
    display: none;
}

.section-news .news-nav-prev{
    left: -27px;
}

.section-news .news-nav-prev img{
    transform: rotate(180deg);
}

.section-news .news-nav-next{
    right: -27px;
}

.section-news .news-swiper{
    overflow: hidden;
}

.section-news .swiper-slide{
    height: auto;
}

.section-news .item{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: #FBFBFB;
    border-radius: 16px;
}

.section-news .item .image img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

.section-news .item .content{
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-news .item .content .title{
    font-size: 20px;
}

.section-news .item .content .bottom{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-news .item .content .bottom .date{
    font-size: 14px;
    color: #818C99;
}

.section-news .item .content .bottom .link{
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}

.section-news .item .content .bottom .link img{
    filter: brightness(0);
}

.section-news .btn{
    margin-top: 40px;
    min-width: 400px;
}

.section-bottom .wrapper{
    background-color: #EEF2FF;
    padding: 60px 20px;
    justify-content: space-between;
    border-radius: 20px;
}

.section-bottom .form{
    max-width: 680px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0px 28px 64px 0px #08184452;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.section-bottom .form .title{
    font-size: 24px;
    font-weight: 700;
    color: var(--color-blue);
}

.section-bottom .form .sub{
    font-size: 14px;
    margin-top: 6px;
}

.section-bottom .form form{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-bottom .form form input{
    font-size: 16px;
    color: var(--color-blue);
    border-radius: 10px;
    border: 1px solid var(--color-gray);
    padding: 18px 20px;
    background-color: #E8EAF0;
}

.section-bottom .form form .acceptance{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
}

.open-day{
    margin-top: 120px;
}

.open-day .wrapper{
    background-color: #E9FBFF;
    padding: 30px;
    border-radius: 40px;
    justify-content: space-between;
    align-items: center;
}

.open-day .wrapper::before{
    content: '';
    position: absolute;
    right: 60px;
    top: -50px;
    background-image: url('../img/cta-b.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    width: 120px;
    height: 120px;
}

.open-day .col-left {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.open-day .col-right{
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-right: 50px;
}

.open-day .col-right .sub{
    font-size: 24px;
    font-weight: 700;
}

.open-day .col-right .icon-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.open-day .col-right .icon-list .icon-list-item{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
}

.section-life .section-heading{
    max-width: 1100px;
}

.section-life .section-heading .subtitle{
    max-width: 700px;
    font-weight: 600;
}

.section-life .wrapper{
    margin-top: 24px;
}

.section-life .item{
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-life .item img{
    max-width: 100%;
}

.section-life .item .content{
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    border-radius: 20px;
    min-height: 160px;
}

.section-life .item.yellow .content{
    border: 4px solid #C8D538;
}

.section-life .item.pink .content{
    border: 4px solid #FF4BBE;
}

.section-life .item.violet .content{
    border: 4px solid #D9C9F5;
}

.section-life .item.blue .content{
    border: 4px solid #7CB1FF;
}

.section-life .item .content .title{
    font-size: 24px;
    font-weight: 700;
}

.section-university .wrapper{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    background-color: #FCF9C6;
    padding: 30px;
    border-radius: 20px;
}

.section-university .wrapper .col-left{
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}

.section-university .col-left .section-heading .subtitle{
    font-size: 16px;
}

.section-university .wrapper .col-right{
    max-width: 50%;
}

.section-university .wrapper .col-right:before{
    content: '';
    position: absolute;
    left: -70px;
    bottom: -10px;
    background-image: url('../img/uni-b.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    width: 120px;
    height: 120px;
    z-index: 1;
}

.section-university .wrapper .col-right img{
    max-width: 100%;
}




footer.footer{
    background-color: var(--color-black);
    padding-top: 50px;
    border-radius: 20px 20px 0 0;
    color: #fff;
}

footer.footer .wrapper{
    display: flex;
    justify-content: flex-start;
}

footer.footer .col{
    width: 33.33333333333333%;
    max-width: 33.33333333333333%;  
}


footer.footer .col nav + nav{
    margin-top: 60px;
}

footer.footer .col .title{
    font-size: 30px;
    font-weight: 700;
}

footer.footer .col ul{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

footer.footer .col ul li + li{
    margin-top: 14px;
}

footer.footer .col ul li a{
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--color-placeholder);
}

footer.footer .bottom{
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--color-placeholder);
    padding-bottom: 20px;
}

footer.footer .bottom .wrapper{
    align-items: flex-end;
}

footer.footer .bottom .contacts-link{
    margin-top: 20px;
}

footer.footer .bottom .contacts-link .link{
    display: flex;
    align-items: center;
    gap: 30px;
}

footer.footer .bottom .contacts-link .link .title{
    font-size: 24px;
}

footer.footer .bottom .contacts-link .link a{
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--color-placeholder);
}

footer.footer .bottom .socials{
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

footer.footer .bottom .copy{
    font-size: 12px;
    color: var(--color-placeholder);
    margin-top: 20px;
}


@media(max-width: 1600px){

    .header .top-header .top-header-logo img{
        width: 170px;
    }

    .header .main-nav nav ul{
        gap: 15px;
        font-size: 14px;
    }

    .header .main-nav .dropdown-btn{
        gap: 5px;
    }

    .section-hero .wrapper{
        gap: 25px;
    }

    .section-steps .container{
        padding: 30px 40px;
    }

    .section-reviews .item{
        height: 380px;
    }

    .section-reviews .item .image img{
        width: 200px;
    }
}

@media(max-width: 1024px){

    .header .main-nav{
        display: none;
    }

    .header .top-header .top-header-logo{
        flex: 1;
    }

    .header .top-header .controls{
        margin-left: 20px;
    }

    .header .top-header .controls .burger{
        display: flex;
    }

    body.menu-open{
        overflow: hidden;
    }

    .mobile-menu{
        max-height: calc(100vh - 88px);
        overflow-y: auto;
    }

    h1{
        font-size: 44px;
    }

    h2{
        font-size: 40px;
    }

    .section-hero .col-right .info-badge{
        width: 460px;
        gap: 25px;
    }

    .section-hero .col-right{
        min-width: 460px;
    }

    .section-hero .col-right .calc .title{
        font-size: 20px;
    }

    .section-hero .col-right .calc .badge{
        font-size: 10px;
    }

    .section-numbers .item .title{
        font-size: 18px;
    }

    .cta-form-1 .wrapper{
        flex-direction: column;
        padding: 20px;
    }

    .cta-form-1 .col-left{
        width: 100%;
    }

    .cta-form-1 .col-right{
        width: 100%;
    }

    .cta-form-2 .wrapper{
        padding: 20px;
    }

    .cta-form-2 form .acceptance label{
        font-size: 12px;
    }

    .section-specialties .specialties .item{
        width: calc(50% - 12px);
    }

    .section-specialties .filters{
        gap: 10px;
    }

    .section-specialties .filters .tab{
        padding: 11.5px 20px;
    }

    .section-steps .item{
        width: calc(50% - 12px);
    }

    .section-steps .item .badge{
        bottom: calc(100% - 70px);
    }

    .cta-form-3 .wrapper{
        padding: 20px;
    }

    .cta-form-3 form .acceptance label{
        font-size: 12px;
    }

    .section-heading{
        max-width: 840px;
    }

    .why-choose-us-alt .item .title{
        font-size: 24px;
    }

    .why-choose-us .item .sub{
        font-size: 16px;
    }

    .why-choose-us .item .icon-list .icon-list-item img{
        width: 18px;
        height: 18px;
    }

    .why-choose-us .item .icon-list .icon-list-item{
        line-height: 1em;
        font-size: 16px;
    }

    .why-choose-us .item .title{
        font-size: 24px;
    }

    .payments .item{
        padding: 10px;
    }

    .payments .item .title{
        font-size: 20px;
    }

    .why-choose-us-alt:not(.alt-v2) .bottom{
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .why-choose-us-alt:not(.alt-v2) .bottom .text{
        font-size: 20px;
    }

    .why-choose-us-alt:not(.alt-v2) .item:first-child::before{
        top: 165px;
    }

    .why-choose-us-alt:not(.alt-v2) .item:nth-child(2)::before{
        width: 120px;
        height: 170px;
        top: -69px;
        right: -13px;
    }

    .open-day .wrapper{
        flex-direction: column;
        align-items: flex-start;
    }

    .open-day .col-left{
        max-width: 80%;
        gap: 24px;
    }

    .open-day .col-right{
        max-width: 100%;
    }

    .section-life .wrapper{
        gap: 12px;
    }

    .section-life .item .content{
        padding: 10px;
    }

    .section-life .item .content{
        min-height: 210px;
    }

    .section-university .wrapper .col-right img{
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .section-university .wrapper .col-right:before{
        left: -40px;
        width: 80px;
        height: 80px;
    }

    .section-bottom .wrapper{
        flex-direction: column;
        align-items: flex-start;
    }

    .section-life .item img{
        height: 240px;
        object-fit: cover;
        border-radius: 20px;
    }

    .section-life .item .content .title{
        font-size: 22px;
    }

    .section-hero .wrapper{
        flex-direction: column;
        align-items: flex-start;
    }
}


@media(min-width: 769px){
    .section-programs .programs-swiper{
        overflow: visible;
    }

    .section-programs .programs-swiper .swiper-wrapper{
        display: flex !important;
        flex-wrap: wrap;
        gap: 24px;
        transform: none !important;
        height: auto !important;
    }

    .section-programs .programs-swiper .swiper-slide{
        width: calc(33.33% - 16px) !important;
        margin-right: 0 !important;
    }
}

@media(min-width: 1201px){
    .section-programs .programs-swiper .swiper-slide{
        width: calc(25% - 18px) !important;
    }
}

@media(max-width: 768px){

    .container{
        padding: 0 16px;
    }

    .header .top-header{
        justify-content: space-between;
        padding: 18px 0;
    }

    .header .top-header .top-header-logo{
        display: block;
    }

    .header .top-header .top-header-logo img{
        width: 120px;
        filter: none;
    }

    body.menu-open .top-header-wrap .top-header-logo img{
        filter: none;
    }

    .header .top-header .links{
        display: none;
    }

    .header .top-header .controls{
        gap: 16px;
    }

    .header .main-header .btn-group{
        display: none;
    }

    .header .main-header{
        display: none;
    }

    .section-hero{
        margin-top: 0;
        border-radius: 16px;
        padding: 0;
    }

    .mobile-menu .container{
        padding: 0 16px;
    }

    .section-hero .container{
        height: 100%;
    }

    .section-hero .wrapper{
        height: 100%;
        padding-bottom: 40px;
        flex-direction: column;
    }

    h1{
        font-size: 28px;
        line-height: 1.2em;
    }

    h2{
        font-size: 24px;
        line-height: 1.2em;
    }

    .btn{
        padding: 14px;
    }

    section{
        margin: 40px 0;
    }

    .section-hero{
        width: calc(100% + 4px);
    }

    .section-hero .hero-bg{
        height: calc(100vh - 88px);
        border-radius: 16px;
    }

    .section-hero .hero-bg-slide{
        border-radius: 16px;
    }

    .section-hero .hero-bg-slide::after{
        border-radius: 16px;
    }

    .section-hero .col-left{
        height: calc(100vh - 88px);
        justify-content: flex-end;
        padding-bottom: 40px;
    }

    .section-hero .col-left p{
        font-size: 16px;
    }

    .section-hero .col-right{
        min-width: 100%;
        width: 100%;
        box-shadow: 0px 0px 64px 0px #08184452;
        border-radius: 20px;
    }

    .section-hero .col-right .info-badge{
        display: none;
    }

    .section-hero .col-left .btn-group{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-hero .col-left .btn-group{
        margin-top: 20px;
    }

    .section-hero .col-right .calc{
        padding: 16px;
        width: calc(100% + 32px);
        left: 16px;
    }

    .section-hero .btn-transparent{
        padding: 0;
        margin-top: 10px;
    }

    .section-hero .col-right .calc .badge{
        position: relative;
        top: 0;
        right: 0;
        width: max-content;
        margin-bottom: 10px;
    }

    .section-numbers .wrapper{
        flex-wrap: wrap;
    }

    .section-programs{
        margin: 40px 0;
    }

    .section-programs .programs-slider{
        position: relative;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        margin-top: 20px;
    }

    .section-programs .programs-nav.link{
        display: flex;
        position: absolute;
        top: 60%;
        transform: translateY(-50%);
        z-index: 2;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: #fff;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--color-blue);
        cursor: pointer;
        padding: 0;
        transition: opacity 0.2s ease;
    }

    .section-programs .programs-nav.link.is-hidden{
        display: none;
    }

    .section-programs .programs-nav-prev{
        left: 16px;
    }

    .section-programs .programs-nav-prev img{
        transform: rotate(180deg);
    }

    .section-programs .programs-nav-next{
        right: 16px;
    }

    .section-programs .programs-swiper{
        overflow: hidden;
        padding-top: 30px;
    }

    .section-programs .programs-swiper .swiper-slide{
        overflow: visible;
    }

    .section-programs .item{
        overflow: visible;
    }

    .section-heading .subtitle{
        font-size: 16px;
    }

    .section-programs .item .badge{
        min-width: 70px;
        min-height: 70px;
        height: 70px;
        font-size: 14px;
        right: 17%;
        top: -34px;
    }

    .cta-form-1 .col-left h2{
        font-size: 32px;
        line-height: 1em;
    }

    .cta-form-1 .col-left .sub{
        font-size: 18px;
    }

    .cta-form-1 .col-left{
        gap: 10px;
    }

    .cta-form-1 .col-right form input{
        width: 100%;
    }

    .cta-form-1 .col-right form button{
        width: 100%;
    }

    .cta-form-1 .col-right form .sub{
        font-size: 12px;
    }

    .cta-form-1 .wrapper::before{
        background-position: left;
        width: 300px;
        height: 200px;
    }

    .cta-form-1 .wrapper::after{
        content: none;
    }

    .why-choose-us .item{
        width: 100%;
        padding: 16px;
    }

    .why-choose-us .item .title{
        font-size: 20px;
    }

    .why-choose-us .item .icon-list .icon-list-item{
        font-size: 14px;
    }

    .why-choose-us .item .icon-list .icon-list-item img{
        width: 20px;
        height: 20px;
    }

    .why-choose-us .item .sub{
        font-size: 14px;
    }

    .payments .item{
        width: 100%;
        padding: 16px;
        gap: 12px;
    }

    .payments .container{
        padding: 0; 
    }

    .payments .item .num{
        font-size: 36px;
    }

    .payments .item .title{
        font-size: 20px;
    }

    .payments .item img{
        object-fit: cover;
        height: 80px;
    }

    .cta-form-2 .container{
        padding: 0;
    }

    .cta-form-2 h2{
        font-size: 32px;
        line-height: 1em;
    }

    .cta-form-2 .heading{
        gap: 10px;
    }

    .cta-form-2 .sub{
        font-size: 16px;
    }

    .cta-form-2 .wrapper{
        gap: 30px;
    }

    .cta-form-2 .col-left{
        gap: 10px;
    }

    .cta-form-2 form{
        flex-direction: column;
    }

    .cta-form-2 form input, .cta-form-2 form .col{
        width: 100%;
    }

    .cta-form-2 .wrapper::before{
        background-position: left;
        width: 300px;
        height: 200px;
    }

    .cta-form-2 .wrapper::after{
        content: none;
    }

    .section-heading h2 .heading-end::after{
        width: 30px;
        height: 38px;
        top: -3px;
        right: -35px;
    }

    .section-specialties .filters{
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        gap: 10px;
    }

    .section-specialties .filters::-webkit-scrollbar{
        display: none;
    }

    .section-specialties .filters .tab{
        flex-shrink: 0;
        white-space: nowrap;
        padding: 8px 16px;
    }

    .section-specialties .specialties{
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        gap: 16px;
    }

    .section-specialties .specialties::-webkit-scrollbar{
        display: none;
    }

    .section-specialties .specialties .item{
        flex-shrink: 0;
        width: calc(100vw - 48px);
        max-width: 320px;
    }

    .section-specialties .wrapper{
        margin-top: 20px;
    }

    .section-steps .container{
        padding: 30px 16px;
    }

    .section-steps .item{
        width: 100%;
        gap: 24px;
    }

    .section-steps .item .heading{
        align-items: flex-end;
    }

    .section-steps .item .heading .num{
        font-size: 60px;
        line-height: 0.8em;
    }

    .section-steps .item .heading .title{
        font-size: 18px;
        max-width: 100%;
    }

    .section-steps .item .text{
        font-size: 14px;
    }

    .section-steps .item .badge img{
        width: 120px;
    }

    .cta-form-3 .container{
        padding: 0;
    }

    .cta-form-3 .wrapper{
        gap: 30px;
    }

    .cta-form-3 .heading{
        gap: 16px;
    }

    .cta-form-3 h2{
        font-size: 32px;
        line-height: 1em;
    }

    .cta-form-3 .sub{
        font-size: 16px;
    }
    
    .cta-form-3 form{
        flex-direction: column;
    }

    .cta-form-3 form input, .cta-form-3 form .col{
        width: 100%;
    }

    .cta-form-3 form button{
        width: 100%;
    }

    .cta-form-3 .wrapper::before{
        background-position: left;
        width: 300px;
        height: 200px;
    }

    .cta-form-3 .wrapper::after{
        content: none;
    }

    .section-reviews .reviews-nav-prev{
        left: 16px;
    }

    .section-reviews .reviews-nav-next{
        right: 16px;
    }

    .section-reviews .item{
        height: 330px;
    }

    .section-reviews .item .image img{
        width: 160px;
    }

    .section-reviews .item .content .heading .name{
        font-size: 18px;
    }

    .section-reviews .item .content .heading .sub{
        font-size: 14px;
    }

    .section-reviews .item .content .bottom p{
        font-size: 14px;
    }

    .section-reviews .item .content{
        padding: 16px;
        padding-right: 30px;
    }

    .section-reviews .btn{
        min-width: 100%;
    }
    
    .section-partners .wrapper{
        gap: 12px;
    }

    .section-partners .wrapper img{
        width: calc(25% - 10px);
    }

    .section-partners .wrapper img:nth-child(7){
        margin-left: 0;
    }

    .section-news{
        margin-top: 60px;
    }

    .section-news .news-slider{
        margin-top: 40px;
    }

    .section-news .btn{
        min-width: 100%;
    }

    .section-news .news-nav-prev{
        left: 0px;
    }

    .section-news .news-nav-next{
        right: 0px;
    }

    .section-news .item .content .title{
        font-size: 16px;
    }

    .section-bottom .wrapper{
        flex-direction: column;
        padding: 30px 16px;
    }

    footer.footer .col .title{
        font-size: 16px;
    }

    footer.footer .wrapper{
        flex-direction: column;
    }

    footer.footer .wrapper.footer-top{
        gap: 0;
    }

    footer.footer .col{
        width: 100%;
        max-width: 100%;
    }

    footer.footer .footer-top .col nav + nav{
        margin-top: 0;
    }

    footer.footer .footer-top nav .title{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        user-select: none;
    }

    footer.footer .footer-top nav .title::after{
        content: '';
        flex-shrink: 0;
        width: 8px;
        height: 8px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg);
        transition: transform 0.25s ease;
        margin-top: -4px;
        margin-right: 10px;
    }

    footer.footer .footer-top nav.is-open .title::after{
        transform: rotate(225deg);
        margin-top: 4px;
    }

    footer.footer .footer-top nav ul{
        display: none;
        margin-top: 0;
        padding: 18px 0 18px;
    }

    footer.footer .footer-top nav.is-open ul{
        display: block;
    }

    .mobile-menu .col .title{
        font-size: 24px;
    }

    .mobile-menu .wrapper, .mobile-menu .bottom .wrapper{
        flex-direction: column;
    }

    footer.footer .col ul li a{
        font-size: 14px;
    }

    .mobile-menu .col ul li a{
        font-size: 14px;
    }

    .mobile-menu .col nav + nav{
        margin-top: 30px;
    }

    footer.footer .bottom .contacts-link .link .title{
        font-size: 16px;
        margin-top: 2px;
    }

    .section-hero .col-left .btn-group .btn{
        width: 100%;
    }

    .why-choose-us-alt.alt-v2 .wrapper{
        margin-top: 40px;
    }

    .why-choose-us-alt.alt-v2 .item:nth-child(1)::after{
        width: 100px;
        height: 100px;
        top: -45px;
        right: -30px;
    }

    .why-choose-us-alt.alt-v2 .item:nth-child(2)::before{
        width: 100px;
        height: 100px;
        top: -45px;
        right: -30px;
    }

    .cta-form-3 .heading{
        margin-bottom: 100px;
    }

    .cta-form-3 .wrapper::after{
        content: '';
        top: 150px;
        bottom: auto;
        right: 25px;
        width: 147px;
        height: 147px;
    }

    .why-choose-us .item .icon-list{
        width: 85%;
    }

    .why-choose-us-alt .item.fill .title{
        width: 85%;
    }

    .why-choose-us-alt:not(.alt-v2) .item:nth-child(2)::before{
        width: 80px;
        height: 113px;
        top: -31px;
        right: 0px;
    }

    .open-day .container{
        padding: 0;
    }

    .open-day .wrapper::before{
        right: 15px;
        top: -50px;
        width: 80px;
        height: 80px;
    }

    .open-day .col-left{
        max-width: 100%;
    }

    .open-day .btn{
        width: 100%;
    }

    .open-day .col-right .sub{
        font-size: 16px;
    }

    .open-day .col-right{
        padding-right: 0;
    }

    .open-day .col-right .icon-list .icon-list-item{
        font-size: 16px;
    }

    .section-life .wrapper{
        flex-wrap: wrap;
    }

    .section-life .item{
        width: calc(50% - 12px);
        gap: 12px;

    }

    .section-life .item img{
        height: 200px;
    }

    .section-life .item .content .title{
        font-size: 18px;
    }

    .section-life .item .content .text{
        font-size: 14px;
    }

    .section-life .item .content{
        min-height: 190px;
    }

    .section-university .container{
        padding: 0;
    }

    .section-university .wrapper{
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 16px;
    }

    .section-university .wrapper .col-left{
        max-width: 100%;
    }

    .section-university .wrapper .col-right{
        max-width: 100%;
    }

    .section-university .btn{
        width: 100%;
    }

    .section-university .wrapper .col-right img{
        height: 220px;
    }

    .section-university .wrapper .col-right:before{
        left: 0px;
        width: 60px;
        height: 60px;
    }
    
}