*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body{
    font-family: "Montserrat", sans-serif;
    color: #fff;
    background-color: #000;
    font-size: 16px;
    line-height: 1.3;
}

body::after{
    content: '';
    display: block;
    height: 100vh;
    width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: .5s all ease-in-out;
    z-index: 99;
}

body.mob_menu_opened::after{
    opacity: 1;
    visibility: visible;
}

a{
    color: #fff;
    transition: .5s all ease;
    text-decoration: none;
}

img{
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Roboto Slab", serif;
}

.wrapper{
    overflow: hidden;
}

.container{
    max-width: 1440px;
    padding: 0 15px;
    margin: 0 auto;
}

.row{
    display: flex;
    flex-wrap: wrap;
}

.justify-between{
    justify-content: space-between;
}

.justify-end{
    justify-content: flex-end;
}

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

.p-0{
    padding: 0 !important;
}

/* Settings */

.section__title{
    font-size: 56px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.section__title span{
    background-image: linear-gradient(0.25turn,rgba(180, 143, 98, 1) 100%, rgb(220, 206, 189) 0%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.button{
    border-radius: 5px;
    display: inline-block;
    transition: .5s all ease;
    font-size: 18px;
    font-weight: 500;
    transform: scale(1);
    cursor: pointer;
}

.button[disabled],
.button.loading{
    opacity: 0.7;
    background-color: #dae1e7;
    background-image: none !important;
    cursor: not-allowed;
    transform: none !important;
}

.button:hover{
    transform: scale(1.05);
    /* animation: bounce-scale 1s ease; */
    /* letter-spacing: 2px; */
    /* box-shadow: 0 0 5px rgba(0,0,0,.5); */
}

.button.button__main{
    padding: 15px 40px;
    background-image: linear-gradient(0.25turn, rgba(213, 177, 133, 1) 0%, rgba(180, 143, 98, 1) 100%);
}

.button.button__cta{
    text-transform: uppercase;
    padding: 20px 60px;
    font-size: 20px;
}

section{
    padding: 60px 0;
}

.cta_block{
    display: flex;
    justify-content: center;
}

/* Header */
header{
    padding: 23.5px 0;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background-color: rgba(0,0,0,.4);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header__logo img{
    max-width: 150px;
}

.header__nav ul{
    display: flex;
    list-style: none;
    gap: 0 25px;
    font-size: 18px;
}

.header__nav a:hover{
    color: rgba(180, 143, 98, 1);
}
.header__hamburger{
    height: 50px;
    width: 50px;
    position: relative;
    cursor: pointer;
    display: none;
}

.header__hamburger span{
    width: 40px;
    height: 2px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: .5s all ease .4s;
}

.header__hamburger span:nth-child(1){
    transform: translateY(-10px);
}

.header__hamburger span:nth-child(3){
    transform: translateY(10px);
}

.header__hamburger.opened span:nth-child(1){
    transform: translateY(0) rotate(45deg);
}

.header__hamburger.opened span:nth-child(3){
    transform: translateY(0) rotate(-45deg);
}

.header__hamburger.opened span:nth-child(2){
    opacity: 0;
}


/* hero */
.hero{
    /* margin-top: 100px; */
    min-height: calc(100vh);
    background-image: url(../images/hero_bg.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top;
    position: relative;
    display: flex;
    align-items: center;
    /* background-attachment: fixed; */
}

.hero .container{
    position: relative;
    z-index: 2;
}

.hero::after{
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,.7) , rgba(0,0,0,.4), rgba(0,0,0,.9));
    position: absolute;
    top: 0;
    left: 0;
}
.hero__title{
    font-size: 72px;
    background-image: linear-gradient(0.25turn, rgb(220, 206, 189) 0%, rgba(180, 143, 98, 1) 100%);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.hero__subtitle{
    font-size: 40px;
    text-align: center;
    background-image: linear-gradient(
        0.25turn,
        #16f196 0%,
        #12c978 50%,
        #0a7f54 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* For who */
.for_who{
    position: relative;
}

.for_who .row{
    gap: 30px 0;
    margin-bottom: 50px;
}

.for_who__item{
    flex: 0 0 auto;
    width: calc(100% / 3 - 20px);
    padding: 20px;
    border-radius: 12px;
    position: relative;
    /* background-color: #000; */
}

.for_who__item::after{
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 12px;
    background:  linear-gradient(0.25turn, rgb(220, 206, 189) 0%, rgba(180, 143, 98, 1) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude; 
    pointer-events: none;
}

.for_who__item .item_top{
    display: flex;
    /* justify-content: center; */
    align-items: flex-end;
    margin-bottom: 20px;
}

.for_who__item .item_number{
    font-family: "Roboto Slab", serif;
    font-size: 60px;
    font-style: italic;
    line-height: 1;
    background-image: linear-gradient(to right, rgb(220, 206, 189) 0%, rgba(180, 143, 98, 1) 50%, rgba(180, 143, 98, 0) 100%);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
    font-weight: 600;
    padding-right: 15px;
}

.for_who__item .text_title{
    font-size: 24px;
    padding-bottom: 5px;
    font-weight: 600;
    line-height: 1;
}

.for_who__item .image{
    background-image: linear-gradient(0.25turn, rgb(220, 206, 189) 0%, rgba(180, 143, 98, 1) 80%);
    position: absolute;
    right: -10px;
    top: -10px;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px;
    z-index: 10;
    width: 75px;
    height: 75px;
    border: 2px dashed #fff;
    animation: anim-rotate 5s linear infinite;
}

.for_who__item .image img{
    width: 60px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    animation: anim-rotate 5s linear infinite reverse;
}

.for_who__item .text_description{
    font-size: 18px;
    font-weight: 500;
}

/* About */
.about_video{
    background-image: url(../images/about_bg.jpg);
    background-size: 100%;
    background-position: center;
    position: relative;
}

.about_video::after{
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,.9) , rgba(0,0,0,.3), rgba(0,0,0,.9));
    position: absolute;
    top: 0;
    left: 0;
}

.about_video .container{
    position: relative;
    z-index: 10;
}

.about__info{
    flex: 0 0 auto;
    width: 35%;
    text-align: center;
}

.about__info img{
    height: 100%;
    max-height: 50px;
    transform: scale(1.35);
}

.about__info h2{
    margin-bottom: 40px;
    font-size: 32px;
}
.about__info .button{
    display: inline-flex;
    gap: 0 20px;
    align-items: center;
}

/* Our goal */
.goal_block{
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
    color: #000;
}

.goal_block .row{
    gap: 30px 0;
}

.goal_item{
    flex: 0 0 auto;
    width: calc(100% / 3 - 30px);
}

.goal_item .image{
    position: relative;
    margin-bottom: 40px;
}

.goal_item .goal_number{
    height: 70px;
    width: 70px;
    background-image: linear-gradient(0.25turn, rgb(220, 206, 189) 0%, rgba(180, 143, 98, 1) 80%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -25px;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 36px;
    font-weight: 600;
    color: #000;
    z-index: 10;
    font-family: "Roboto Slab", serif;
    font-style: italic;
    text-indent: -5px;
}

.goal_item img{
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0,0,0,.3);
}

.goal_item .text{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
}

/* About Academy */
.about_academy{
    /* padding: 200px 0; */
    background-image: url(../images/about_academy_bg.jpg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: left;
    position: relative;
}

.about_academy::before{
    content: '';
    display: block;
    height: 100%;
    width: 50%;
    background-image: linear-gradient(to right, rgba(0,0,0,.9) , rgba(0,0,0,0), rgba(0,0,0,.9)), linear-gradient(to bottom, rgba(0,0,0,.9) , rgba(0,0,0,0), rgba(0,0,0,.9));
    position: absolute;
    top: 0;
    left: 0;
}

.about_left{
    flex: 0 0 auto;
    width: calc(50% - 30px);
}

.about_left .about_list{
    font-size: 22px;
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}

.about_left .about_list span{
    background-image: linear-gradient(0.25turn, #16f196 0%, #12c978 50%, #0a7f54 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.about_title{
    font-size: 32px;
    text-align: justify;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 40px;
    background-image: linear-gradient(0.25turn, #16f196 0%, #12c978 50%, #0a7f54 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.freelance_platforms{
    display: flex;
    list-style: none;
}

.freelance_platforms img{
    max-width: 100px;
}

/* Student Results */
.students_results .swiper-slide img{
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* advantages */
.advantages_block{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
    justify-content: space-between;
}

.advantage_item{
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    color: #000;
    font-size: 20px;
}
.advantage_item .advantage_image{
    position: relative;
    margin: -20px -20px 20px -20px;
    overflow: hidden;
    height: 300px;
}

.advantage_item .advantage_image::after{
    content: '';
    display: block;
    width: 100%;
    height: 70%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
    border-radius: 15px;
}

.advantage_item .advantage_image .advantage_badge{
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 40px;
    color: #000;
    background-color: #16f196;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: 600;
    z-index: 10;
}

.advantage_item .advantage_image .advantage_title{
    color: #fff;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: 32px;
    text-align: center;
    padding: 15px 0;
    z-index: 10;
}
.advantage_item .advantage_image img{
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.advantage_item > span{
    font-weight: 600;
}

.tab_nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
}

.tab_nav li{
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
}

.tab_nav li a{
    font-family: "Roboto Slab", serif;
    display: block;
    color: #000;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    color: #000;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: .5s all ease;
}

.tab_nav li a.active{
    background-image: linear-gradient(0.25turn, rgba(213, 177, 133, 1) 0%, rgba(180, 143, 98, 1) 100%);
    color: #fff;
}

.tab_content{
    padding: 40px;
    background-color: #fff;
    margin-top: 30px;
    border-radius: 15px;
    color: #000;
}

.module_item{
    display: none;
}

.module_item.active{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.module_item .module_left{
    flex: 0 0 auto;
    width: calc(65% - 20px);
}

.module_item .module_right{
    flex: 0 0 auto;
    width: calc(35% - 20px);
}

.module_item .module_name{
    font-size: 24px;
    font-family: "Roboto Slab", serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.module_item .module_block{
    border: 2px solid #dae1e7;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 20px;
}

.module_item .module_block .block_content{
    font-size: 18px;
}

.module_item .module_block .block_content p{
    padding-left: 30px;
    background-image: url(../images/result_check.svg);
    background-repeat: no-repeat;
    background-position: left top;
}

.module_item .module_block:last-child{
    margin-bottom: 0;
}

.module_item .module_block .block_title{
    font-weight: 600;
    margin-bottom: 15px;
}

.module_item .module_right .block_title{
    display: inline-block;
    padding: 5px 20px;
    border-radius: 10px;
    border: 2px solid #dae1e7;
    display: inline-flex;
    align-items: center;
    font-size: 22px;
}

.module_item .module_right .block_content p{
    margin-bottom: 15px;
}

.module_item .module_right .block_content ol,
.module_item .module_right .block_content ul{
    padding-left: 50px;
    margin-bottom: 15px;
    font-style: italic;
}

.module_item .module_right .block_title img{
    height: 50px;
}

.module_item .module_description{
    font-size: 20px;
    margin-bottom: 30px;
}

.module_item .module_description p{
    margin-bottom: 15px;
}

.module_item .module_block .block_list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style-type: none;
}

.module_item .module_block .block_list li{
    padding: 8px 15px;
    border-radius: 5px;
    background-color: #dae1e7;
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.module_item .projects_list{
    display: flex;
    list-style: none;
    gap: 20px 0;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.module_item .projects_list li{
    flex: 0 0 auto;
    width: calc(33.333% - 10px);
}

.module_item .projects_list li img{
    width: 100%;
    border: 1px solid #dae1e7;
    border-radius: 5px;
}

/* Price and Guarantee */

.guarantee_block{
    display: flex;
    max-width: 1000px;
    padding: 20px;
    border: 2px solid #fff;
    border-radius: 15px;
    margin: 0 auto;
    gap: 30px;
    align-items: center;
    margin-bottom: 80px;
}

.guarantee_block .image{
    flex: 0 0 auto;
    width: 250px;
}

.guarantee_block img{
    max-width: 250px;
    width: 100%;
}
.guarantee_block .text{
    flex: 0 0 auto;
    width: calc(100% - 280px);
}
.guarantee_block .text h4{
    font-size: 40px;
    background-image: linear-gradient(0.25turn, #16f196 0%, #12c978 50%, #0a7f54 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-style: italic;
}

.guarantee_block .text p{
    font-size: 20px;
}

.price_info_block{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 25px;
    border-radius: 15px;
    background-color: #fff;
    color: #000;
}

.price_info_block .info_item{
    flex: 0 0 auto;
    width: calc(33.333% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.price_info_block .info_item .info_image{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.price_info_block .info_item .info_image::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, #000, rgba(0,0,0,0));
}

.price_info_block .info_item .info_title{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,.5);
    
}
.price_info_block .info_item img{
    border-radius: 10px;
}

.price_info_block .info_item .info_description{
    font-size: 18px;
}

.price_info_block .info_item .info_description p{
    margin-bottom: 15px;
}

.price_info_block .info_item .info_description ul{
    padding-left: 30px;
    margin-bottom: 15px;
    font-style: italic;
}

.price_info_block .info_item .info_cta .button{
    display: block;
    text-align: center;
    text-transform: uppercase;
}
.alert{
    padding: 15px 15px 15px 60px;
    background-color: rgba(255,193,7, 0.3);
    border-radius: 15px;
    background-image: url(../images/warning.gif);
    background-repeat: no-repeat;
    background-position: 15px 15px;
    background-size: 40px;
    margin-bottom: 15px;
    display: none;
}

/* Tarrifs */
.tarrifs .row{
    max-width: 1000px;
    margin: 0 auto;
    justify-content: space-between;
}
.tarrif_item{
    flex: 0 0 auto;
    width: calc(50% - 25px);
    padding: 3px;
    background-color: #fff;
    border-radius: 8px;
    color: #000;

}

.tarrif_item .tarrif_name{
    padding: 30px;
    font-size: 40px;
    font-weight: 600;
    font-family: "Roboto Slab", serif;
    text-align: center;
    text-transform: uppercase;
    border-radius: 8px;
    margin-bottom: 10px;
}

.tarrif_item .tarrif_name span{
    font-size: 24px;
}

.tarrif_item.monthly .tarrif_name{
    background-image: linear-gradient(0.25turn, rgb(22, 241, 150) 0%, rgb(18, 201, 120) 50%, rgb(10, 127, 84) 100%);
}

.tarrif_item.year .tarrif_name{
    background-image: linear-gradient(0.25turn, rgb(220, 206, 189) 0%, rgba(180, 143, 98, 1) 80%);
}

.tarrif_item .tarrif_education_type{
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.tarrif_item .tarrif_education_type span{
    font-weight: 700;
    font-style: italic;
}

.tarrif_item .tarrif_advantages{
    font-size: 20px;
    padding: 0 40px;
    line-height: 1.2;
}

.tarrif_item .tarrif_advantages h4{
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.tarrif_item .tarrif_advantages ul{
    display: flex;
    flex-direction: column;
    gap: 15px 0;
    margin-bottom: 20px;
    list-style: none;
}

.tarrif_item .tarrif_advantages li{
    position: relative;
    padding-left: 30px;
}

.tarrif_item .tarrif_advantages li::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(../images/check.png);
    background-size: 20px;
}

.tarrif_item .more_advantages{
    padding: 20px;
    border: 2px dashed #12c978;
    border-radius: 8px;
}

.tarrif_item .tarrif_description{
    margin: 30px;
    font-weight: 500;
}

.tarrif_item .tarrif_cta{
    padding: 0 30px 30px 30px;
}

.tarrif_item .tarrif_cta .button{
    width: 100%;
    text-align: center;
}

/* Feedbacks */
.feedbacks .row{
    gap: 20px 8px;
    padding: 0 30px;
    justify-content: space-between;
}
.feedback_item{
    flex: 0 0 auto;
    width: calc(20% - 10px);
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.feedback_item iframe{
    height: 100%;
    width: 100%;
}

/* Start Info */

.start_info_block{
    max-width: 1000px;
    background-color: #fff;
    color: #000;
    border-radius: 15px;
    padding: 30px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.start_info_block h3{
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

.start_info_block ul{
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px 0;
    list-style: none;
}

.start_info_block .important_guarantee{
    margin-top: 15px;
    border: 2px dashed #12c978;
    padding: 15px;
    border-radius: 8px;
}

.start_info_block ul li{
    position: relative;
    padding-left: 45px;
}

.start_info_block ul li::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    /* bottom: 0; */
    margin: auto;
    left: 0;
    width: 35px;
    height: 35px;
    background-image: url(../images/reason.png);
    background-size: 35px;
    background-position: top;
}

.start_info_block ul span{
    font-weight: 600;
    font-style: italic;
}

/* Have question */
.have_questions .container{
    max-width: 1000px;
    background-image: linear-gradient(0.25turn, #16f196 0%, #12c978 50%, #0a7f54 100%);
    border-radius: 15px;
    padding: 3px;
}
.have_questions .row{
    justify-content: space-between;
    padding: 30px;
    align-items: center;
    border-radius: 12px;
    background-color: #000;
}

.have_questions .section__title{
    margin-bottom: 0;
}

/* Footer */
footer{
    text-align: center;
    padding: 30px 0;
}
.footer__logo{
    margin-bottom: 30px;
}
.footer__logo img{
    max-width: 300px;
}

.footer__contacts{
    margin-bottom: 30px;
}
.footer__contacts .phone_number a{
    font-size: 40px;
    font-family: "Roboto Slab", serif;
    font-style: italic;
    background-image: linear-gradient(0.25turn, #16f196 0%, #12c978 50%, #0a7f54 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 5px;
    font-weight: 700;
}

.footer__contacts .phone_number a:hover{
    letter-spacing: 3px;
}

.footer__social{
    margin-bottom: 30px;
}

.footer__social ul{
    display: flex;
    align-items: center;
    gap: 0 15px;
    justify-content: center;
    list-style: none;
}

.footer__social ul img{
    max-width: 50px;
}

.footer_documents{
    margin-bottom: 30px;
}

.footer_documents img{
    max-width: 250px;
    border-radius: 15px;
}

.footer__rekvizits p{
    line-height: 1.8;
}

.modal{
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100vh;
    width: 100vw;
    left: 0;
    top: 0;
    z-index: 1001;
    background-color: rgba(0,0,0,.5);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: .5s all ease;
}

.modal.show{
    opacity: 1;
    visibility: visible;
}

.modal__block{
    transform: scale(0.8);
    max-width: 600px;
    width: 100%;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    color: #000;
    position: relative;
    transition: .3s all ease-in-out .3s;
}

.modal.show .modal__block{
    transform: scale(1);
}

.modal__block .modal__close{
    position: absolute;
    height: 50px;
    width: 50px;
    top: -50px;
    right: -50px;
    cursor: pointer;
    transition: .5s all ease;
}

.modal__block .modal__close:hover{
    transform: rotate(180deg);
}

.modal__block .modal__close span{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 2px;
    width: 45px;
    background-color: #fff;
    border-radius: 5px;
    transform: rotate(45deg);
}

.modal__block .modal__close span:nth-child(2){
    transform: rotate(-45deg);
}

.modal__block .control-label{
    padding-bottom: 5px;
    font-weight: 500;
}

.modal__block input{
    width: 100%;
    height: 50px;
    padding: 0 10px;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
}

.modal__block textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
}

.modal__block button{
    border: none;
    width: 100%;
    font-family: Montserrat, sans-serif;
}

.modal__block .help-block{
    color: #ff0000;
    margin-top: 5px;
}
.modal__block .form-group{
    margin-bottom: 15px;
}
.modal_title{
    text-align: center;
    margin-bottom: 15px;
    font-size: 32px;
}

.modal_description{
    font-size: 18px;
}

.control-label{
    display: block;
}

.modal__body .icon{
    text-align: center;
    margin-top: 20px;
}

.modal__body .icon img{
    max-width: 150px;
}

.success__modal .social_networks h3{
    text-align: center;
    margin-bottom: 25px;
}

.modal__block .social_networks ul{
    display: flex;
    justify-content: center;
    gap: 0 15px;
    list-style: none;
}

.modal__block .social_networks img{
    max-width: 50px;
}
.students_results{
    position: relative;
}
.swiper_elements{
    position: absolute;
    top: 0;
    bottom:0;
    margin: auto;
    width: 100%;
    max-width: 1440px;
}
.swiper-button-next:after, .swiper-button-prev:after{
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    background-color: #16f196;
    color: #000;
    font-size: 26px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next{
    left: -15px;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
    right: 10px;
}

.swiper-pagination-bullet{
    height: 15px;
    width: 15px;
    background: #16f196;
    transition: .5s all ease;
}

.swiper-pagination-bullet-active{
    width: 40px;
    border-radius: 8px;
}

@keyframes anim-rotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

@keyframes bounce-scale {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2); /* kattalashadi */
  }
  50%{
    transform: scale(1.1);
  }
  75%{
     transform: scale(1.2);
  }
  100% {
    transform: scale(1.1); /* yana kichrayadi */
  }
}


@media (max-width: 1200px){
    .feedbacks .row{
        gap: 20px 13px;
        justify-content: flex-start;
    }
    .feedback_item{
        width: calc(25% - 10px);
    }
    
    .header__action{
        display: flex;
        gap: 0 10px;
    }

    .header__nav{
        position: fixed;
        right: -100%;
        top: 0;
        background-color: #000;
        z-index: 100;
        padding: 100px 40px;
        height: 100dvh;
        width: 100%;
        max-width: 300px;
        transition: .5s all ease;
    }

    .header__nav .header__hamburger{
        position: absolute;
        right: 15px;
        top: 25px;
    }

    .header__nav.opened{
        right: 0;
    }

    .header__nav ul{
        flex-direction: column;
        gap: 20px 0;
    }

    .header__hamburger{
        display: block;
    }

    .feedback_item{
        width: calc(33.333% - 10px);
    }
}

@media (max-width: 1024px){
    .have_questions{
        padding: 0 20px;
    }
    .button.button__cta{
        font-size: 18px;
    }
    .hero__title{
        font-size: 60px;
        margin-bottom: 20px;
    }

    .hero__subtitle{
        font-size: 30px;
    }

    .section__title{
        font-size: 48px;
    }

    .for_who__item{
        width: calc(50% - 15px);
    }

    .goal_item{
        width: calc(50% - 15px);
    }

    .goal_item .text{
        font-size: 18px;
    }

    .about_academy{
        padding: 350px 0 60px 0;
        background-size: auto 300px;
        background-position: top center;
    }

    .about_academy::before{
        height: 300px;
        width: 100%;
    }

    .about_left{
        width: 100%;
    }

    .students_results .swiper-slide img{
        object-position: left;
    }

    .advantage_item{
        width: calc(50% - 15px);
    }

    .advantage_item .advantage_image{
        height: 200px;
    }

    .module_item .module_right,
    .module_item .module_left{
        width: calc(50% - 10px);
    }

    .tab_content{
        padding: 20px;
    }

    .price_info_block{
        gap: 35px 20px;
        justify-content: center;
    }

    .price_info_block .info_item{
        width: calc(50% - 15px);
    }

    .price_info_block .info_item:first-child{
        width: 100%;
    }

    .tarrif_item{
        width: calc(50% - 10px);
    }

    .tarrif_item .tarrif_name{
        font-size: 30px;
    }
    .tarrif_item .tarrif_name span{
        display: block;
        font-size: 20px;
    }
    .tarrif_item .tarrif_education_type{
        font-size: 18px;
    }

    .tarrif_item .tarrif_advantages{
        padding: 0 20px;
    }

    .tarrif_item .tarrif_advantages{
        font-size: 16px;
    }

    .feedback_item{
        width: calc(50% - 10px);
    }
    
    .have_questions .row{
        justify-content: center;
        gap: 25px 0;
    }

    footer{
        padding: 60px 0;
    }
}

@media (max-width: 768px){
    .feedback_item{
        height: 330px;
    }
    .modal__block{
        padding: 20px;
    }
    .modal_title{
        font-size: 24px;
    }
    .modal_description{
        font-size: 16px;
    }
    .modal__block .modal__close{
        right: -10px;
    }
    .button:hover{
        transform: scale(1);
    }
    .have_questions .cta{
        width: 100%;
    }
    .have_questions .cta .button{
        display: block;
    }
    section{
        padding: 40px 0;
    }

    .section__title{
        font-size: 30px;
        margin-bottom: 30px;
    }

    header{
        padding: 15px 0;
    }
    .header__logo img{
        max-width: 100px;
    }

    .button{
        font-size: 14px;
    }

    .header__action .button.button__main{
        padding: 5px 10px;
    }

    .button.button__main{
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }

    .header__hamburger{
        width: 30px;
        height: 30px;
    }

    .header__hamburger span{
        width: 25px;
    }

    .header__hamburger span:nth-child(1){
        transform: translateY(-6px);
    }

    .header__hamburger span:nth-child(3){
        transform: translateY(6px);
    }

    .hero{
        min-height: auto;
        padding: 100px 0 40px 0;
        margin-top: 60px;
    }

    .hero__title{
        font-size: 32px;
    }
    .hero__subtitle{
        font-size: 24px;
    }

    .for_who__item{
        width: 100%;
    }

    .for_who__item .text_description{
        font-size: 16px;
    }

    .for_who__item .item_number{
        font-size: 50px;
    }

    .for_who__item .text_title{
        font-size: 18px;
    }

    .for_who__item .image{
        width: 60px;
        height: 60px;
    }

    .goal_block{
        padding: 20px;
    }
    .goal_item{
        width: 100%;
    }

    .goal_item .image{
        margin-bottom: 20px;
    }

    .goal_item .goal_number{
        width: 45px;
        height: 45px;
        font-size: 24px;
        bottom: -12px;
    }

    .goal_item .text{
        font-size: 14px;
    }

    .about_academy{
        background-size: auto 240px;
        padding-top: 280px;
    }

    .about_academy::before{
        height: 250px;
    }

    .about_title{
        font-size: 24px;
        text-align: center;
    }
    .about_title br{
        display: none;
    }

    .about_left .about_list{
        font-size: 18px;
    }

    .freelance_platforms img{
        max-width: 55px;
    }

    .advantage_item{
        width: 100%;
    }

    .advantage_item{
        font-size: 16px;
    }

    .advantage_item .advantage_image .advantage_badge{
        font-size: 24px;
        padding: 5px 15px;
        left: 10px;
        top: 10px;
    }
    .advantage_item .advantage_image .advantage_title{
        font-size: 24px;
    }

    .tab_nav{
        gap: 10px 0;
    }

    .tab_nav li{
        width: 100%;
    }

    .tab_nav li a{
        font-size: 18px;
        padding: 15px;
        border-radius: 8px;
    }
    .tab_content{
        padding: 15px;
    }
    .module_item .module_right, .module_item .module_left{
        width: 100%;
    }
    .module_item{
        gap: 30px 0;
    }
    .module_item .module_description,
    .module_item .module_block .block_content{
        font-size: 16px;
    }

    .module_item .module_block{
        padding: 10px;
        border-radius: 8px;
    }

    .module_item .module_block .block_list{
        gap: 10px;
    }
    .module_item .module_block .block_list li{
        font-size: 14px;
        padding: 5px 10px;
    }

    .module_item .module_right .block_title{
        display: flex;
        justify-content: center;
        border-radius: 5px;
    }

    .module_item .module_right .block_title img{
        height: 45px;
    }

    .module_item .projects_list li{
        width: calc(50% - 15px);
    }

    .guarantee_block{
        flex-direction: column;
    }

    .guarantee_block .text{
        width: 100%;
    }

    .guarantee_block .text h4{
        font-size: 32px;
    }

    .guarantee_block .text p{
        font-size: 16px;
    }

    .price_info_block .info_item{
        width: 100%;
    }

    .tarrifs .row{
        gap: 30px 0;
    }

    .tarrif_item{
        width: 100%;
    }

    .feedback_item{
        width: 100%;
    }

    .start_info_block{
        padding: 20px;
    }

    .start_info_block h3{
        font-size: 24px;
    }

    .start_info_block ul{
        font-size: 16px;
    }
    
    .footer__logo img{
        max-width: 240px;
    }

    .footer__contacts .phone_number a{
        font-size: 26px;
    }

    .tab_content,
    .advantage_ite,
    .advantage_item .advantage_image img{
        border-radius: 12px;
    }
    .guarantee_block,
    .price_info_block,
    .goal_block{
        padding: 20px;
        border-radius: 8px;
    }
    .price_info_block .info_item .info_title{
        font-size: 20px;
    }
    .price_info_block .info_item .info_description{
        font-size: 16px;
    }
}