*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", serif;
}
button{
    cursor: pointer;
}
.wrapper{
    width: 85%;
}
.header{
    padding: 10px;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.header .wrapper{
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.header .logo{
    width: 90px;
    height: 90px;
}
.menu_container{
    display: flex;
    align-items: center;
    width: 70%;
    margin-left: auto;
    margin-left: auto;
    margin-right: auto;
}
.menu_btn{
    display: none;
}
.header nav{
    margin-left: auto;
}
.header .menu{
    display: flex;
    list-style-type: none;
    align-items: center;
    gap: 20px;
}
.header_contacts{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 21px;
    margin: 2%;
    margin-left: 5%;
}
.header_contacts a{
    text-decoration: none;
    color: #1f1f1f;
    transition: .35s ease-out;
}
.header_contacts a:hover{
    color: #FFD700;
    transition: .35s ease-out;
}
.initial_section{
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    margin-top: 100px;
    position: relative;
}
.initial_section .wrapper{
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.initial_content{
    width: 630px;
    padding: 45px;
    background-color: rgba(0, 0, 0, 0.444);
    border-radius: 8px;
}
.initial_section h1{
    font-size: 44px;
    color: #FFF;
    margin-bottom: 40px;
}
.initial_section p{
    color: #FFF;
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 20px;
}
.link_rel{
    display: block;
    text-decoration: none;
    padding: 15px;
    font-size: 19px;
    line-height: 26px;
    font-weight: 400;
    outline: none;
    border: none;
    background-color: #FFD700;
    color: #1f1f1f;
    width: fit-content;
    border-radius: 8px;
    cursor: pointer;
    transition: .35s ease-out;
}
.link_rel:hover{
    background-color: #E6B800;
    transition: .35s ease-out;
}
ul.menu li a{
    font-size: 16px;
    text-decoration: none;
    color: #1f1f1f;
    text-transform: uppercase;
    position: relative;
    transition: .35s ease-out;
}
ul.menu li a::before{
    content: '';
    display: block;
    width: 0%;
    height: 1px;
    position: absolute;
    bottom: -3px;
    background-color: #07C083;
    transition: .35s ease-out;
}
ul.menu li a.active::before, ul.menu li a:hover::before{
    width: 100%;
    transition: .35s ease-out;
}
ul.menu li a:hover{
    color: #07C083;
}
ul.menu li a.active{
    color: #07C083;
    transition: .35s ease-out;
}
.link_book{
    background: none;
    padding: 15px;
    outline: none;
    border: none;
    font-size: 19px;
    line-height: 26px;
    color: #FFF;
    background-color: #07C083;
    cursor: pointer;
    border-radius: 8px;
    transition: .35s ease-out;
}
.link_book:hover{
    background-color: #059A66;
    transition: .35s ease-out;
}
.initial_section .links{
    display: flex;
    align-items: center;
    gap: 15px;
}
.initial_blocks{
    width: 600px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.444);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.init_block{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    height: 155px;
}
.init_block p[role="heading"]{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}
.init_block img{
    width: 140px;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.init_block div p{
    margin-bottom: 0;
}
.init_block div{
    padding: 20px;
    background: linear-gradient(to right, #07C083, #5DE0B9);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.init_block a{
    color: #FFD700;
    font-size: 18px;
    margin-top: 8px;
    transition: .35s ease-out;
}
.init_block a:hover{
    color: #E6B800;
    transition: .35s ease-out;
}
.about_course{
    margin-top: 120px;
    margin-bottom: 120px;
}
.about_course .wrapper{
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.about_content{
    width: 47%;
}
.about_img{
    width: 47%;
    height: fit-content;
    position: relative;
}
.about_img img{
    width: 100%;
}
.section_title{
    font-size: 42px;
    line-height: 49px;
    color: #1f1f1f;
    width: 90%;
    margin-bottom: 40px;
}
.about_content p{
    font-size: 19px;
    line-height: 26px;
    color: #1f1f1f;
    margin-bottom: 15px;
    text-align: justify;
}
.about_content p.standout{
    padding-left: 15px;
    border-left: 3px solid #07C083;
    font-weight: 500;
    margin-bottom: 25px;
}
.about_content h3{
    font-size: 28px;
    line-height: 36px;
    color: #1f1f1f;
    margin-bottom: 25px;
}
.about_content span{
    font-size: 16px;
    text-transform: uppercase;
    color: #07C083;
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}
.about_content ul{
    list-style-type: none;
    margin-bottom: 25px;
}
.about_content ul li{
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 15px;
}
.about_content ul li svg{
    width: 19px;
    margin-right: 8px;
}
.about_content ul li svg path{
    fill: #07C083;
}
.about_stats{
    width: 85%;
    position: absolute;
    left: 7.5%;
    bottom: -80px;
    padding: 35px;
    display: flex;
    background: rgba(255, 255, 255); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
} 
.about_stat_item{
    width: 33.33%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about_stat_item p{
    font-size: 19px;
    line-height: 26px;
    font-weight: 500;
    color: #1f1f1f;
}
.about_stat_item p[role="heading"]{
    font-size: 34px;
    font-weight: 700;
    color: #07C083;
}
.countup_txt{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    margin-top: 20px;
}
.countup_txt span{
    font-size: 34px;
    font-weight: 700;
    color: #07C083;
    display: block;
    margin-left: 5px;
}
.about_stat_item svg{
    width: 40px;
    height: 40px;
    margin-bottom: auto;
}
.about_stat_item svg path{
    fill: #07C083;
}
.other_courses{
    padding: 80px;
    background: #F8F9FA;
}
.other_courses .wrapper{
    margin: 0 auto;
}
.other_courses .section_title{
    width: 100%;
    text-align: center;
}
.courses_cards{
    display: flex;
    justify-content: space-between;
}
.course_card{
    width: 30%;
    background-color: #FFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12); /* Soft shadow */
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
    border-radius: 6px;
}
.course_card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
    transform: translateY(-5px); /* Slight lift effect */
}
.course_card div{
    padding: 25px;
    display: flex;
    flex-direction: column;
}
.course_card img{
    width: 100%;
    height: 16.7vw;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.course_card h3{
    font-size: 26px;
    color: #1f1f1f;
    margin-bottom: 15px;
}
.course_card p{
    font-size: 19px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 20px;
}
.course_card ul{
    margin-bottom: 25px;
}
.course_card ul li{
    list-style-type: none;
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 15px;
}
.course_card ul li svg{
    width: 19px;
    margin-right: 5px;
}
.course_card ul li svg path{
    fill: #FFD700;
}
.course_card div button{
    margin-top: auto;
}
.membership_subcontent{
    width: 47%;
}
.membership_table {
    width: 100%;
    height: fit-content;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}
.membership_table th, .membership_table td {
    padding: 25px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 19px;
}
.membership_table th {
    background: #07C083; /* Teal header */
    color: #fff;
    text-transform: uppercase;
    border-right: 1px solid #fff;
}
.membership_table tr:last-child td {
    border-bottom: none;
}
.membership{
    margin-top: 120px;
    margin-bottom: 120px;
}
.membership .wrapper{
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.membership_content{
    width: 47%;
}
.membership_content img{
    width: 100%;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}
.membership_content p.standout{
    padding-left: 15px;
    border-left: 3px solid #07C083;
    font-weight: 500;
    margin-bottom: 25px;
    font-size: 19px;
    line-height: 26px;
    color: #1f1f1f;
}
.membership_benefits h3{
    font-size: 32px;
    color: #1f1f1f;
    margin-bottom: 25px;
    width: 100%;
    padding-top: 25px;
    border-top: 1px solid #ddd;
}
.membership_benefits ul li{
    font-size: 19px;
    line-height: 26px;
    list-style-type: none;
    margin-bottom: 15px;
    color: #1f1f1f;
}
.membership_benefits ul li strong{
    color: #07C083;
}
.promo_reminder {
    width: 100%;
    text-align: center;
    font-size: 19px;
    line-height: 26px;
    background: #FFD700;
    padding: 10px;
    border-radius: 6px;
    margin-top: 25px;
    color: #1f1f1f;
}
.promo_reminder a{
    color: #1f1f1f;
    display: block;
}
.other_services{
    padding: 120px 0;
    background: #F8F9FA;
}
.other_services .wrapper{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.other_services_content{
    width: 47%;
}
.other_services_media{
    width: 47%;
}
.accordion{
    width: 100%;
}
.other_services_content p{
    font-size: 19px;
    line-height: 26px;
    color: #1f1f1f;
}
.accordion{
    margin-top: 35px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); 
}
.accordion_item{
    width: 100%;
    overflow: hidden;
    border: 1px solid #ddd;
}
.accordion_item:first-of-type .accordion_header{
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.accordion_header{
    width: 100%;
    background: none;
    outline: none;
    border: none;
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    text-align: left;
    padding: 25px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}
.accordion_header svg{
    width: 25px;
    height: 25px;
    position: absolute;
    right: 25px;
    top: 25px;
    transition: .35s ease-out;
}
.accordion_item.active .accordion_header svg{
    transform: rotate(180deg);
    transition: .35s ease-out;
}
.accordion_header svg path{
    fill: #1f1f1f;
    transition: .35s ease-out;
}
.accordion_item.active .accordion_header svg path{
    fill: #07C083;
    transition: .35s ease-out;
}
.accordion_content{
    max-height: 0px;  /* Ensure content is hidden initially */
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion_item.active .accordion_header{
    border-color: #07C083;
    color: #07C083;
}
.accordion_item.active{
    background-color: #FFF;
}
.accordion_item.active .accordion_content{
    padding: 25px;
}
.accordion_content p{
    margin-bottom: 15px;
    line-height: 29px;
}
.other_services_media p{
    font-size: 19px;
    line-height: 26px;
    color: #1f1f1f;
    margin-bottom: 15px;
    text-align: justify;
}
.other_services_media p.standout{
    padding-left: 15px;
    border-left: 3px solid #07C083;
    font-weight: 500;
    margin-bottom: 25px;
}
.slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: auto;
}
.slider_container {
    display: flex;
    position: relative;
    transition: transform 0.5s ease-in-out;
}
.slide {
    flex: 0 0 100%;
    height: 100%;
    display: block;
}
.slide img{
    width: 100%;
}
.slide.active {
    display: block;
}
.prev-btn{
    position: absolute;
    top: calc(50% - 17.5px);
    left: 0;
    padding: 0;
    background: none;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background-color: #ffffffba;
    transition: .35s ease-out;
}
.next-btn{
    position: absolute;
    top: calc(50% - 17.5px);
    right: 0;
    padding: 0;
    background: none;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    background-color: #ffffffba;
    transition: .35s ease-out;
}
.next-btn svg{
    transform: rotate(-90deg);
    width: 20px;
}
.prev-btn svg{
    transform: rotate(90deg);
    width: 20px;
}
.next-btn:hover, .prev-btn:hover{
    background-color: #FFF;
    transition: .35s ease-out;
}
.next-btn:hover svg path, .prev-btn:hover svg path{
    fill: #FFD700;
}
.contacts{
    margin-top: 120px;
}
.contacts .wrapper{
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.contacts_content{
    width: 47%;
}
.contacts_content p{
    font-size: 19px;
    line-height: 26px;
    color: #1f1f1f;
    text-align: justify;
}
.contacts_content p.standout{
    padding-left: 15px;
    border-left: 3px solid #07C083;
    font-weight: 500;
    margin-bottom: 25px;
}
.contacts_table{
    width: 100%;
    margin-top: 25px;
}
.contacts_item{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}
.contacts_item .title{
    font-size: 21px;
    font-weight: 600;
    display: flex;
    align-items: center;
    width: 33%;
}
.contacts_item .title svg{
    width: 19px;
    height: 19px;
    margin-right: 8px;
}
.contacts_item .title svg path{
    fill: #1f1f1f;
}
.contacts_item .txt{
    width: 55%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 19px;
    line-height: 26px;
    color: #1f1f1f;
    text-align: justify;
    gap: 25px;
    margin-bottom: 15px;
}
.contacts_item .txt:last-of-type{
    margin-bottom: 0;
}
.contacts_item .txt a{
    color: #1f1f1f;
}
.contacts_item div{
    width: 55%;
}
.contacts_item .txt span{
    display: block;
}
.contacts_item div .txt{
    width: 100%;
}
.contacts_form{
    width: 47%;
}
.contacts_form .title{
    width: 100%;
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 25px;
}
.contacts_form form{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 35px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.form_block{
    width: calc(50% - 15px);
}
.form_block.fl{
    width: 100%;
}
.form_block label{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 19px;
    line-height: 26px;
    color: #1f1f1f;
    margin-bottom: 10px;
}
.form_block label span{
    font-size: 17px;
}
.form_block input, .form_block textarea{
    width: 100%;
    border: none;
    outline: none;
    padding: 0;
    font-size: 19px;
    line-height: 26px;
    color: #1f1f1f;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}
.form_block textarea{
    height: 120px;
    border: 1px solid #ddd;
}
.submit_btn{
    padding: 0;
    outline: none;
    border: none;
    font-size: 19px;
    line-height: 26px;
    padding: 15px 25px;
    background-color: #FFD700;
    color: #1f1f1f;
    border-radius: 8px;
}
.contacts_social{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}
.contacts_social p{
    font-size: 26px;
    font-weight: 500;
    line-height: 34px;
    color: #1f1f1f;
    margin-right: 20px;
}
.contacts_social a{
    text-decoration: none;
}
.contacts_social svg{
    width: 25px;
    height: 25px;
}
.contacts_social svg path{
    fill: #1f1f1f;
}
.contacts .map{
    width: 100%;
    height: 39vw;
    margin-top: 120px;
}
#footer{
    width: 100%;
    padding: 25px 0;
    background-color: #1f1f1f;
}
#footer .wrapper{
    margin: 0 auto;
}
.footer_copy p{
    font-size: 16px;
    line-height: 24px;
    color: #ffffffbe;
}
.booking_popup, .join_popup, .callback_popup{
    position: fixed;
    top: 0;
    left: 0;
    background-color: #1f1f1fad;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99;
    width: 100%;
    height: 100%;
}
.booking_popup.active, .join_popup.active, .callback_popup.active{
    display: flex;
}
.booking_popup .content, .join_popup .content, .callback_popup .content{
    width: 690px;
    background-color: #fff;
    padding: 50px;
    border-radius: 6px;
    position: relative;
}
.close_popup{
    width: 21px;
    height: 21px;
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
}
.close_popup:hover path{
    fill: #FFD700;
    transition: .35s ease-out;
}
.booking_popup .content p.title, .join_popup .content p.title, .callback_popup .content p.title{
    font-size: 29px;
    font-weight: 600;
    line-height: 39px;
    color: #1f1f1f;
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
}
.booking_popup .content p.txt, .join_popup .content p.txt, .callback_popup .content p.txt{
    font-size: 19px;
    line-height: 26px;
    text-align: center;
    color: #1f1f1f;
    width: 100%;
}
.booking_popup .content form, .join_popup .content form, .callback_popup .content form{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 35px;
}
.popup_form_block{
    width: calc(50% - 15px);
}
.popup_form_block.fl{
    width: 100%;
}
.popup_form_block label{
    display: block;
    font-size: 19px;
    line-height: 16px;
    color: #1f1f1f;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.popup_form_block input, .popup_form_block textarea{
    width: 100%;
    border: none;
    outline: none;
    padding: 0;
    font-size: 19px;
    line-height: 26px;
    color: #1f1f1f;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}
.mssg_success{
    width: 100%;
    font-size: 16px;
    color: #059A66;
    display: none;
}
@media screen and (max-width: 1700px){
    ul.menu li a{
        font-size: 15px;
    }
    .header_contacts{
        font-size: 15px;
        line-height: 19px;
    }
    .link_book {
        padding: 12px;
        font-size: 17px;
        line-height: 24px;
    }
    .initial_section {
        width: 100%;
        height: 600px;
        margin-top: 110px;
    }
    .initial_section p {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 15px;
    }
    .init_block p[role="heading"] {
        font-size: 25px;
        margin-bottom: 12px;
    }
    .init_block a {
        font-size: 16px;
        margin-top: 7px;
        display: block;
    }
    .init_block{
        height: 150px;
    }
    .initial_section h1 {
        font-size: 39px;
        margin-bottom: 30px;
    }
    .link_rel {
        padding: 12px;
        font-size: 17px;
        line-height: 24px;
    }
    .initial_content{
        width: 590px;
        padding: 40px;
        border-radius: 8px;
    }
    .about_course {
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .section_title {
        font-size: 39px;
        line-height: 46px;
        margin-bottom: 30px;
    }
    .about_content span{
        font-size: 15px;
        margin-bottom: 10px;
    }
    .about_content p {
        font-size: 17px;
        line-height: 24px;
    }
    .about_content h3 {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 20px;
    }    
    .about_content ul li {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 13px;
    }
    .about_content ul li svg {
        width: 17px;
        margin-right: 6px;
        height: 17px;
    }
    .about_stat_item p[role="heading"], .countup_txt span{
        font-size: 30px;
        line-height: 37px;
    }
    .about_stat_item p {
        font-size: 16px;
        line-height: 22px;
    }
    .about_stat_item svg {
        width: 35px;
        height: 35px;
    }
    .course_card h3{
        font-size: 24px;
    }
    .course_card p {
        font-size: 17px;
        line-height: 24px;
    }
    .countup_txt{
        margin-top: 15px;
    }
    .course_card ul {
        margin-bottom: 20px;
    }
    .course_card {
        width: 31.5%;
    }
    .membership {
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .membership_content p.standout{
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .membership_table th, .membership_table td {
        padding: 20px;
        text-align: left;
        border-bottom: 1px solid #ddd;
        font-size: 17px;
    }
    .membership_benefits h3 {
        font-size: 29px;
        margin-bottom: 20px;
        padding-top: 20px;
    }
    .membership_benefits ul li {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 13px;
    }
    .promo_reminder {
        font-size: 17px;
        line-height: 24px;
        padding: 10px;
        margin-top: 20px;
    }
    .other_services{
        padding: 100px 0;
    }
    .other_services_content p {
        font-size: 17px;
        line-height: 24px;
    }
    .accordion{
        margin-top: 25px;
    }
    .accordion_header{
        font-size: 24px;
        line-height: 31px;
        padding: 20px;
    }
    .accordion_content p {
        margin-bottom: 13px;
        line-height: 27px;
    }
    .other_services_media p {
        font-size: 17px;
        line-height: 24px;
    }
    .contacts {
        margin-top: 100px;
    }
    .contacts_content p {
        font-size: 17px;
        line-height: 24px;
    }
    .contacts_item .title{
        font-size: 19px;
    }
    .contacts_item .txt {
        font-size: 17px;
        line-height: 24px;
        gap: 20px;
        margin-bottom: 13px;
    }
    .contacts_item{
        padding: 20px 0;
    }
    .contacts_social p{
        font-size: 24px;
        line-height: 31px;
    }
    .contacts_form form {
        gap: 20px;
        padding: 30px;
    }
    .form_block label{
        font-size: 17px;
        line-height: 24px;
    }
    .form_block label span{
        font-size: 16px;
    }
    .form_block input, .form_block textarea {
        font-size: 17px;
        line-height: 24px;
        padding: 12px;
    }
    .submit_btn {
        font-size: 17px;
        line-height: 24px;
        padding: 13px 23px;
    }
    .about_stats{
        padding: 30px;
    }
    .course_card ul li {
        font-size: 17px;
        line-height: 24px;
    }
    .course_card ul li svg {
        width: 17px;
    }
}
@media screen and (max-width: 1500px){
    ul.menu li a {
        font-size: 14px;
    }
    .header .menu{
        gap: 15px;
    }
    .header_contacts {
        font-size: 14px;
        line-height: 17px;
    }
    .link_book {
        padding: 12px;
        font-size: 16px;
        line-height: 21px;
    }
    .header .logo {
        width: 80px;
        height: 80px;
    }
    .initial_section {
        width: 100%;
        height: 540px;
        margin-top: 101px;
    }
    .initial_section h1 {
        font-size: 34px;
        margin-bottom: 25px;
    }
    .initial_section p {
        font-size: 16px;
        line-height: 23px;
        margin-bottom: 13px;
    }
    .link_rel {
        padding: 12px;
        font-size: 16px;
        line-height: 21px;
    }
    .init_block p[role="heading"] {
        font-size: 21px;
        margin-bottom: 8px;
    }
    .init_block div{
        padding: 15px;
    }
    .init_block {
        height: 133px;
    }
    .initial_blocks{
        width: 500px;
    }
    .init_block img {
        width: 120px;
    }
    .about_content span {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .section_title {
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 25px;
    }
    .about_content p {
        font-size: 16px;
        line-height: 23px;
    }
    .about_content h3 {
        font-size: 24px;
        line-height: 31px;
        margin-bottom: 15px;
    }
    .about_content ul {
        list-style-type: none;
        margin-bottom: 20px;
    }
    .about_content ul li {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 10px;
    }
    .about_content ul li svg {
        width: 16px;
        margin-right: 6px;
        height: 16px;
    }
    .about_stat_item p[role="heading"], .countup_txt span{
        font-size: 26px;
        line-height: 34px;
    }
    .about_stats {
        padding: 27px;
    }
    .course_card h3 {
        font-size: 21px;
        margin-bottom: 13px;
    }
    .course_card p {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 13px;
    }
    .course_card ul li {
        list-style-type: none;
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 13px;
    }
    .course_card ul li svg {
        width: 16px;
        margin-right: 5px;
    }
    .course_card div{
        padding: 20px;
    }
    .membership_content img{
        margin-top: 20px;
    }
    .membership_content p.standout {
        font-size: 16px;
        line-height: 23px;
        margin-bottom: 5px;
    }
    .membership_table th, .membership_table td {
        padding: 18px;
        font-size: 16px;
    }
    .membership_benefits h3 {
        font-size: 26px;
    }
    .promo_reminder {
        font-size: 15px;
        line-height: 22px;
    }
    .other_services_content p {
        font-size: 16px;
        line-height: 23px;
    }
    .accordion_header {
        font-size: 21px;
        line-height: 29px;
        padding: 18px;
    }
    .accordion_header svg {
        width: 20px;
        height: 20px;
        right: 18px;
        top: 21px;
    }
    .prev-btn {
        top: calc(50% - 22.5px);
        width: 45px;
        height: 45px;
    }
    .next-btn {
        top: calc(50% - 22.5px);
        width: 45px;
        height: 45px;
    }
    .prev-btn svg, .next-btn svg{
        width: 15px;
    }
    .other_services_media p {
        font-size: 16px;
        line-height: 23px;
    }
    .contacts_content p {
        font-size: 16px;
        line-height: 23px;
    }
    .contacts_item .title svg {
        width: 17px;
        height: 17px;
        margin-right: 8px;
    }
    .contacts_item .title {
        font-size: 17px;
    }
    .contacts_item .txt {
        font-size: 16px;
        line-height: 23px;
        gap: 20px;
        margin-bottom: 10px;
    }
    .contacts_item {
        padding: 15px 0;
    }
    .contacts_social p {
        font-size: 21px;
        line-height: 24px;
    }
    .contacts_social svg {
        width: 20px;
        height: 20px;
    }
    .contacts_form form {
        gap: 20px;
        padding: 25px;
    }
    .contacts_form .title {
        font-size: 24px;
        line-height: 31px;
        margin-bottom: 20px;
    }
    .form_block label {
        font-size: 16px;
        line-height: 23px;
    }
    .form_block label span{
        font-size: 14px;
    }
    .form_block input, .form_block textarea {
        font-size: 16px;
        line-height: 23px;
        padding: 12px;
    }
    .form_block textarea {
        height: 90px;
    }
    .submit_btn {
        font-size: 16px;
        line-height: 23px;
        padding: 12px 23px;
    }
    .footer_copy p {
        font-size: 15px;
        line-height: 21px;
    }
    #footer{
        padding: 20px 0;
    }
    .booking_popup .content, .join_popup .content, .callback_popup .content {
        width: 590px;
        padding: 35px;
    }
    .booking_popup .content p.title, .join_popup .content p.title, .callback_popup .content p.title {
        font-size: 24px;
        line-height: 31px;
        margin-bottom: 15px;
    }
    .booking_popup .content p.txt, .join_popup .content p.txt, .callback_popup .content p.txt {
        font-size: 16px;
        line-height: 23px;
    }
    .popup_form_block label {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 8px;
    }
    .popup_form_block input, .popup_form_block textarea {
        font-size: 16px;
        line-height: 21px;
        padding: 12px;
    }
    .close_popup {
        width: 19px;
        height: 19px;
        top: 20px;
        right: 20px;
    }
    .mssg_success{
        font-size: 14px;
    }
}
@media screen and (max-width: 1300px){
    ul.menu li a {
        font-size: 13px;
    }
    .header .menu {
        gap: 10px;
    }
    .header_contacts {
        font-size: 13px;
        line-height: 16px;
        gap: 5px;
    }
    .link_book {
        padding: 11px;
        font-size: 14px;
        line-height: 19px;
    }
    .header .logo {
        width: 75px;
        height: 75px;
    }
    .initial_content{
        width: 480px;
        padding: 30px;
        border-radius: 6px;
    }
    .initial_section h1 {
        font-size: 31px;
        margin-bottom: 20px;
    }
    .initial_section p {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 10px;
    }
    .link_rel {
        padding: 11px;
        font-size: 14px;
        line-height: 19px;
    }
    .init_block p[role="heading"] {
        font-size: 19px;
        margin-bottom: 7px;
    }
    .init_block a{
        font-size: 14px;
    }
    .init_block {
        height: 117px;
    }
    .initial_section {
        width: 100%;
        height: 490px;
        margin-top: 95px;
    }
    .about_content span {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .section_title {
        font-size: 31px;
        line-height: 40px;
        margin-bottom: 20px;
    }
    .about_content p.standout {
        padding-left: 10px;
        border-left: 2px solid #07C083;
        margin-bottom: 20px;
    }
    .about_content p {
        font-size: 14px;
        line-height: 20px;
    }
    .about_content h3 {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 10px;
    }
    .about_content ul li {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 8px;
    }
    .about_content ul li svg {
        width: 14px;
        margin-right: 5px;
        height: 14px;
    }
    .about_stat_item p[role="heading"], .countup_txt span {
        font-size: 21px;
        line-height: 30px;
    }
    .about_stat_item p {
        font-size: 14px;
        line-height: 19px;
    }
    .about_stat_item svg {
        width: 30px;
        height: 30px;
    }
    .about_stats {
        padding: 25px;
        bottom: -60px;
    }
    .about_course {
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .course_card h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }
    .course_card div {
        padding: 15px;
    }
    .course_card p {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 10px;
    }
    .course_card ul li {
        list-style-type: none;
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 10px;
    }
    .course_card ul li svg {
        width: 14px;
        margin-right: 5px;
    }
    .membership {
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .membership_content p.standout {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 5px;
    }
    .membership_table th, .membership_table td {
        padding: 16px;
        font-size: 14px;
    }
    .membership_table{
        border-radius: 6px;
        margin-bottom: 25px;
    }
    .membership_benefits h3 {
        font-size: 24px;
        margin-bottom: 15px;
        padding-top: 15px;
    }
    .membership_benefits ul li {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 10px;
    }
    .promo_reminder {
        font-size: 14px;
        line-height: 20px;
        padding: 8px;
    }
    .other_services {
        padding: 80px 0;
    }
    .other_services_content p {
        font-size: 14px;
        line-height: 19px;
    }
    .accordion_header {
        font-size: 19px;
        line-height: 24px;
        padding: 15px;
    }
    .other_services_media p {
        font-size: 14px;
        line-height: 19px;
    }
    .other_services_media p.standout {
        padding-left: 10px;
        border-left: 2px solid #07C083;
        margin-bottom: 25px;
    }
    .membership_content p.standout{
        padding-left: 10px;
        border-left: 2px solid #07C083;
    }
    .contacts {
        margin-top: 80px;
    }
    .contacts_content p.standout {
        padding-left: 10px;
        border-left: 2px solid #07C083;
        font-weight: 500;
        margin-bottom: 25px;
    }
    .contacts_content p {
        font-size: 14px;
        line-height: 19px;
    }
    .contacts_item .title {
        font-size: 15px;
    }
    .contacts_item .txt {
        font-size: 14px;
        line-height: 19px;
        gap: 15px;
    }
    .contacts_item {
        padding: 13px 0;
    }
    .contacts_social p {
        font-size: 19px;
        line-height: 19px;
    }
    .contacts_social {
        gap: 10px;
        margin-top: 20px;
    }
    .contacts_form .title {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 15px;
    }
    .form_block label {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 6px;
        gap: 6px;
    }
    .form_block input, .form_block textarea {
        font-size: 14px;
        line-height: 19px;
        padding: 10px;
    }
    .submit_btn {
        font-size: 14px;
        line-height: 19px;
        padding: 12px 23px;
    }
    .footer_copy p {
        font-size: 14px;
        line-height: 19px;
    }
    .booking_popup .content p.title, .join_popup .content p.title, .callback_popup .content p.title {
        font-size: 21px;
        line-height: 29px;
        margin-bottom: 10px;
    }
    .booking_popup .content p.txt, .join_popup .content p.txt, .callback_popup .content p.txt {
        font-size: 14px;
        line-height: 19px;
    }
    .close_popup {
        width: 17px;
        height: 17px;
        top: 15px;
        right: 15px;
    }
    .popup_form_block label {
        font-size: 14px;
        line-height: 14px;
        margin-bottom: 5px;
    }
    .popup_form_block input, .popup_form_block textarea {
        font-size: 14px;
        line-height: 19px;
        padding: 10px;
    }
    .booking_popup .content form, .join_popup .content form, .callback_popup .content form {
        gap: 20px;
        margin-top: 25px;
    }
    .popup_form_block {
        width: calc(50% - 10px);
    }
    .booking_popup .content, .join_popup .content, .callback_popup .content {
        width: 540px;
        padding: 30px;
    }
    .menu_container{
        width: 75%;
    }
}
@media screen and (max-width: 1160px){
    .initial_blocks {
        width: 460px;
    }
    .init_block img {
        width: 105px;
    }
    .initial_content{
        width: 440px;
        padding: 30px;
        border-radius: 6px;
    }
    .about_course .wrapper{
        flex-wrap: wrap;
    }
    .about_content {
        width: 100%;
        margin-bottom: 25px;
    }
    .about_stats {
        padding: 25px;
        bottom: 0;
        height: 100%;
        width: 100%;
        left: 110%;
    }
    .about_stat_item {
        width: 33.33%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: fit-content;
        margin-top: auto;
        margin-bottom: auto;
    }
    .other_courses {
        padding: 80px 0;
        background: #F8F9FA;
    }
    .membership .wrapper{
        flex-wrap: wrap;
    }    
    .membership_subcontent {
        width: 100%;
    }
    .membership_content {
        width: 100%;
        margin-bottom: 25px;
    }
    .prev-btn, .next-btn{
        top: calc(50% - 20px);
        width: 40px;
        height: 40px;
    }
    .prev-btn svg, .next-btn svg {
        width: 13px;
    }
}
@media screen and (max-width: 1100px){
    .header_contacts {
        font-size: 13px;
        line-height: 16px;
        gap: 5px;
        margin: 0;
        margin-right: 2%;
        margin-left: 2%;
    }
    .wrapper {
        width: calc(100% - 60px);
    }
}
@media screen and (max-width: 992px){
    .header{
        padding: 10px 0;
    }
    .menu_container{
        position: fixed;
        width: 50%;
        height: 100%;
        top: 79px;
        background-color: #fff;
        right: 0;
        z-index: 99;
        flex-direction: column;
        transform: translate(100%, 0);
        transition: .35s ease-out;
    }   
    .header.active .menu_container{
        transform: translate(0%, 0);
        transition: .35s ease-out;
    }
    .header::before{
        position: fixed;
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: #1f1f1fa6;
        z-index: 98;
        right: 0;
        top: 79px;
        transform: translate(100%, 0);
        transition: .35s ease-out;
    }
    .header.active::before{
        transform: translate(0%, 0);
        transition: .35s ease-out;
    }
    .menu_btn{
        display: block;
        padding: 0;
        background: none;
        border: none;
        outline: none;
        margin-left: auto;
        margin-right: 20px;
    }
    .menu_btn #closeMenu{
        display: none;
    }
    .menu_btn #openMenu{
        display: block;
    }
    .menu_btn.active #closeMenu{
        display: block;
    }
    .menu_btn.active #openMenu{
        display: none;
    }
    .menu_btn svg{
        width: 25px;
        height: 25px;
    }
    .link_book {
        padding: 11px;
        font-size: 13px;
        line-height: 16px;
    }
    .header nav {
        width: 100%;
        padding: 25px;
    }
    .header .menu {
        gap: 10px;
        flex-direction: column;
    }
    .header .menu li{
        width: 100%;
        text-decoration: none;
    }
    .header .menu li a{
        padding: 15px;
        width: 100%;
        display: block;
    }
    .header .menu li a.active{
        background-color: #07C083;
        color: #fff;
        text-decoration: none;
        border-radius: 6px;
    }
    .header .menu li a.active::before{
        display: none;
    }
    .initial_section {
        width: 100%;
        height: 540px;
        margin-top: 80px;
    }
    .initial_content{
        width: 700px;
        padding: 20px;
        border-radius: 6px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-bottom: 240px;
        margin-top: auto;
    }
    .initial_section .links {
        gap: 10px;
        justify-content: center;
    }
    .link_rel {
        padding: 11px;
        font-size: 12px;
        line-height: 12px;
    }
    .initial_section h1 {
        font-size: 29px;
        margin-bottom: 10px;
    }
    .initial_blocks {
        width: 100%;
        flex-direction: row;
        height: 210px;
        top: initial;
        bottom: 0;
        gap: 25px;
    }
    .init_block {
        width: 185px;
        height: auto;
        flex-direction: column;
    }
    .init_block img {
        width: 100%;
        height: 105px;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }
    .init_block div {
        width: 100%;
        padding: 10px;
        border-radius: 0;
        border-bottom-right-radius: 6px;
        border-bottom-left-radius: 6px;
    }
    .init_block div p {
        margin-bottom: 0;
        display: none;
    }
    .init_block div p[role="heading"] {
        display: block;
        font-size: 17px;
        margin-bottom: 5px;
    }
    .init_block a {
        font-size: 12px;
        margin-top: 0;
    }
    .header .logo {
        width: 70px;
        height: 70px;
    }
    .header {
        padding: 5px 0;
    }
    .about_stats {
        padding: 20px;
        bottom: 0;
        height: 100%;
        width: 105%;
        left: 105%;
    }
    .about_stat_item svg {
        width: 25px;
        height: 25px;
    }
    .about_stat_item p[role="heading"], .countup_txt span {
        font-size: 19px;
        line-height: 26px;
    }
    .about_stat_item p {
        font-size: 12px;
        line-height: 16px;
    }
    .section_title {
        font-size: 29px;
        line-height: 34px;
        margin-bottom: 20px;
    }
    .contacts .wrapper{
        flex-wrap: wrap;
    }
    .contacts_content {
        width: 100%;
    }
    .contacts_form {
        width: 100%;
        margin-top: 25px;
    }
    .mssg_success{
        font-size: 12px;
    }
}
@media screen and (max-width: 750px){
    .initial_section {
        width: 100%;
        height: 400px;
        margin-top: 80px;
    }
    .initial_blocks {
        height: 175px;
        gap: 20px;
        padding: 20px;
    }
    .init_block {
        width: 155px;
    }
    .init_block img {
        height: 85px;
    }
    .init_block div p[role="heading"] {
        display: block;
        font-size: 14px;
        margin-bottom: 3px;
    }
    .init_block div{
        padding: 8px;
    }
    .init_block a {
        font-size: 10px;
    }
    .initial_section h1 {
        font-size: 26px;
        margin-bottom: 7px;
    }
    .initial_section p {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .initial_content{
        width: 100%;
        padding: 15px;
        margin-bottom: 200px;
    }
    .about_course {
        margin-top: 60px;
        margin-bottom: 130px;
    }
    .about_content span {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .section_title {
        font-size: 24px;
        line-height: 31px;
        margin-bottom: 15px;
    }
    .about_content p.standout {
        padding-left: 7px;
        border-left: 1px solid #07C083;
        margin-bottom: 15px;
    }
    .about_content p {
        font-size: 13px;
        line-height: 19px;
    }
    .about_content h3 {
        font-size: 19px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    .about_content ul li {
        font-size: 13px;
        line-height: 19px;
        margin-bottom: 7px;
    }
    .about_content ul li svg {
        width: 13px;
        margin-right: 5px;
        height: 13px;
    }
    .about_img{
        width: 100%;
    }
    .about_stats {
        padding: 20px;
        bottom: -50px;
        height: auto;
        width: 80%;
        left: 10%;
    }
    .other_courses {
        padding: 60px 0;
        background: #F8F9FA;
    }
    .course_card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .course_card p {
        font-size: 13px;
        line-height: 19px;
        margin-bottom: 7px;
    }
    .course_card ul li {
        list-style-type: none;
        font-size: 13px;
        line-height: 19px;
        margin-bottom: 7px;
    }
    .course_card ul li svg {
        width: 13px;
        margin-right: 5px;
    }
    .course_card ul {
        margin-bottom: 15px;
    }
    .courses_cards{
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .course_card {
        width: 370px;
    }
    .course_card img{
        width: 100%;
        height: 210px;
    }
    .membership {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .membership_content p.standout {
        padding-left: 8px;
        border-left: 1px solid #07C083;
    }
    .membership_content p.standout {
        font-size: 13px;
        line-height: 19px;
        margin-bottom: 5px;
    }
    .membership_content img {
        margin-top: 15px;
    }
    .membership_table th, .membership_table td {
        padding: 14px;
        font-size: 13px;
    }
    .membership_benefits h3 {
        font-size: 19px;
        margin-bottom: 10px;
        padding-top: 10px;
    }
    .membership_benefits ul li {
        font-size: 13px;
        line-height: 19px;
        margin-bottom: 7px;
    }
    .promo_reminder {
        font-size: 13px;
        line-height: 19px;
        padding: 7px;
    }
    .other_services {
        padding: 60px 0;
    }
    .other_services_content p {
        font-size: 13px;
        line-height: 19px;
    }
    .accordion_header {
        font-size: 16px;
        line-height: 21px;
        padding: 12px;
    }
    .other_services .wrapper{
        flex-wrap: wrap;
    }
    .other_services_content {
        width: 100%;
    }
    .other_services_media {
        width: 100%;
        margin-top: 25px;
    }
    .accordion_header svg {
        width: 16px;
        height: 16px;
        right: 13px;
        top: 13px;
    }
    .accordion {
        margin-top: 15px;
    }
    .other_services_media p.standout {
        padding-left: 7px;
        border-left: 1px solid #07C083;
        margin-bottom: 15px;
    }
    .other_services_media p {
        font-size: 13px;
        line-height: 19px;
    }
    .prev-btn, .next-btn {
        top: calc(50% - 20px);
        width: 35px;
        height: 40px;
    }
    .contacts {
        margin-top: 60px;
    }
    .contacts_content p.standout {
        padding-left: 7px;
        border-left: 1px solid #07C083;
        font-weight: 500;
        margin-bottom: 15px;
    }
    .contacts_content p {
        font-size: 13px;
        line-height: 19px;
    }
    .contacts_item .title {
        font-size: 14px;
    }
    .contacts_item .title svg {
        width: 15px;
        height: 15px;
        margin-right: 8px;
    }
    .contacts_item .txt {
        font-size: 13px;
        line-height: 19px;
        gap: 15px;
        margin-bottom: 5px;
    }
    .contacts_social p {
        font-size: 16px;
        line-height: 16px;
        margin-right: 15px;
    }
    .contacts_form .title {
        font-size: 19px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    .contacts_form form {
        gap: 15px;
        padding: 20px;
    }
    .form_block label {
        font-size: 13px;
        line-height: 17px;
        margin-bottom: 5px;
        gap: 5px;
    }
    .form_block label span{
        font-size: 13px;
    }
    .form_block input, .form_block textarea {
        font-size: 13px;
        line-height: 17px;
        padding: 7px;
    }
    .submit_btn {
        font-size: 13px;
        line-height: 17px;
        padding: 12px 23px;
    }
    .contacts .map {
        width: 100%;
        height: 54vw;
        margin-top: 80px;
    }
    .booking_popup .content p.title, .join_popup .content p.title, .callback_popup .content p.title {
        font-size: 17px;
        line-height: 26px;
        margin-bottom: 7px;
    }
    .booking_popup .content p.txt, .join_popup .content p.txt, .callback_popup .content p.txt {
        font-size: 13px;
        line-height: 19px;
    }
    .booking_popup .content form, .join_popup .content form, .callback_popup .content form {
        gap: 15px;
        margin-top: 15px;
    }
    .popup_form_block label {
        font-size: 13px;
        line-height: 13px;
        margin-bottom: 5px;
    }
    .popup_form_block input, .popup_form_block textarea {
        font-size: 13px;
        line-height: 16px;
        padding: 7px;
    }
    .booking_popup .content, .join_popup .content, .callback_popup .content {
        width: 490px;
        padding: 25px;
    }
    .close_popup {
        width: 15px;
        height: 15px;
        top: 15px;
        right: 15px;
    }
}
@media screen and (max-width: 600px){
    .initial_blocks{
        display: none;
    }
    .initial_content{
        margin-bottom: auto;
    }
    .initial_section{
        margin-top: 320px;
        margin-top: 76px;
    }
    .header .logo {
        width: 65px;
        height: 65px;
    }
    .link_book {
        padding: 11px;
        font-size: 12px;
        line-height: 12px;
    }
    .menu_btn svg {
        width: 20px;
        height: 20px;
    }
    .initial_section h1 {
        font-size: 24px;
        margin-bottom: 7px;
    }
    .section_title {
        font-size: 21px;
        line-height: 27px;
        margin-bottom: 15px;
    }
    .about_content span {
        font-size: 11px;
        margin-bottom: 5px;
    }
    .about_content h3 {
        font-size: 17px;
        line-height: 23px;
        margin-bottom: 8px;
    }
    .about_stat_item p[role="heading"], .countup_txt span{
        font-size: 17px;
        line-height: 24px;
    }
    .countup_txt {
        margin-top: 10px;
    }
    .contacts .map {
        width: 100%;
        height: 320px;
        margin-top: 60px;
    }
    .booking_popup .content, .join_popup .content, .callback_popup .content {
        width: calc(100% - 30px);
        padding: 15px;
    }
    .popup_form_block {
        width: 100%;
    }
    .menu_container {
        position: fixed;
        width: 270px;
        height: 100%;
        top: 76px;
    }
    .header::before{
        top: 76px;
    }
    .header_contacts{
        flex-direction: column;
    }
    .wrapper {
        width: calc(100% - 30px);
    }
    .header nav {
        width: 100%;
        padding: 15px;
    }
    .form_block{
        width: 100%;
    }
}
@media screen and (max-width: 500px){
    .membership_table{
        display: block;
        overflow: hidden;
    }
    .membership_table tbody, .membership_table thead{
        min-width: 468px;
    }
    .course_card {
        width: 100%;
    }
    .course_card img {
        width: 100%;
        height: 51vw;
    }
}
@media screen and (max-width: 425px){
    .about_course{
        margin-bottom: 60px;
    }
    .about_stats {
        width: 100%;
        position: initial;
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .about_stat_item{
        width: 100%;
    }
}

