.main{
    position: relative;
}

.hidden_btn {
    visibility: hidden;
    pointer-events: none;
}

.container--service{
    padding-right: 400px;
}

.container--description{
    width: calc(100% - 40px);
}

.page_break{
    position: relative;
    z-index: 99;
    background-color: #fff;
}

.container--widget{
    position: relative;
}

.service_title_h2{
    text-align: left;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-wrap: balance;
}

.service_breadcrumbs{
    padding-top: 150px;
}

.service_breadcrumbs a{
    position: relative;
    padding-right: 11px;
    padding-left: 11px;
    color: #A7ABBE;
    font-weight: 400;
    font-size: 12px
}

.service_breadcrumbs a:last-child{
    padding-right: 0;
    color: #006738;
}

.service_breadcrumbs a:first-child{
    padding-left: 0;
}

.service_breadcrumbs a:not(:last-child)::before{
    content: "";
    position: absolute;
    top: 7px;
    right: -4px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #A7ABBE;
}

.service_title{
    margin-top: 60px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 400;
}

.service_title--desktop{
    margin-bottom: 30px;

    display: block;
}

.service_title--mobile{
    display: none;
}

.service_gallery{
    display: none;
}

.service_video_bg_wrap{
    display: none;
}

.service_video_bg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    user-select: none;
    background-attachment: fixed;
}

.service_tags_wrap{
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.service_tag{
    margin-bottom: 10px;
    padding: 10px 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #000;

    cursor: pointer;
    border-radius: 30px;
    background: #EFF0F5;

    transition: all 0.3s ease-in-out;
}

.service_tag .arrow{
    transition: all 0.3s ease-in-out;
}

.service_tag svg{
    transition: all 0.3s ease-in-out;
}

.service_tag:hover{
    background-color: #87D454;
    color: #003836;
}

.service_tag:hover .arrow{
    stroke: #003836;
}

.service_tag:hover svg{
    transform: rotate(45deg);
}


.service_tag svg{
    margin-right: 5px;
}

.service_tag p{
    color: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.56px;
    text-transform: uppercase;

    transition: all 0.3s ease-in-out;
}

.show_more_button{
    color: #006738;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    cursor: pointer;

    margin: 0 auto;
    width: fit-content;
}

.show_more_button span{
    border-bottom: dotted 2px #006738;
}

.service_tags_button{
    display: none;
}

.service_slider{
    margin: 0 auto 35px;
    overflow: hidden;
    max-width: 3300px;
}

.service_placeholder{
    width: 100%;
    height: 450px;
    border-radius: 20px;
    object-fit: cover;
}

.service_swiper{
    height: 640px;
    position: relative;
}

.service_swiper_slide{
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.service_slider_card_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service_swiper_btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    z-index: 2;
    cursor: pointer;
}

.service_swiper_btn--prev{
    left: 35px;
}

.service_swiper_btn--next{
    right: 35px;
}

.service_swiper_pagination{
    display: none;
}

.service_slider_video_background{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 2;
    user-select: none;
}

.service_widget_wrap{
    position: absolute;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    top: -170px;
    right: 50%;
    transform: translateX(50%) translateX(600px);

    z-index: 20;
}

.service_widget_wrap--fixed{
    position: fixed;

    top: 170px;
}

.service_widget{
    padding: 30px 40px 20px;

    width: 400px;
    height: auto;

    border-radius: 20px;
    background-color: #FFF;
    box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.08);
}

.service_widget_cost_caption{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    user-select: none;
}

.service_widget_external_link{
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;

    z-index: 1;
}

.service_widget_external_link::after{
    content: "";
    position: absolute;
    left: 50%;


    width: 108%;
    height: 130%;
    transform: translateX(-50%);

    border-radius: 15px;
    z-index: 0;
    transition: all 0.3s ease-in-out;
}

.service_widget_external_link:hover::after{
    background-color: #EFF0F5;
}

.service_widget_external_svg{
    z-index: 1;
    margin-left: auto;
}

.service_widget_external_svg_circle, .service_widget_external_svg_path{
    transition: all 0.3s ease-in-out;
}

.service_widget_external_link:hover .service_widget_external_svg_circle{
    fill: #006738;
}

.service_widget_external_link:hover .service_widget_external_svg_path{
    stroke: #fff;
}

.service_widget_cost_caption span{
    color: #E2111D;
}

.service_widget_top_logo{
    margin-right: 15px;

    display: flex;
    align-items: center;

    z-index: 1;
    max-width: 70px;
}

.service_widget_external_caption{
    font-size: 16px;
    font-weight: 700;
    max-width: 150px;
    color: #000;

    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.service_widget_external_caption:hover{
    color: #006738;
}

.service_widget_cost{
    padding-bottom: 20px;

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

.service_widget_cost_value{
    width: 80%;
    color: #006738;
    font-size: 16px;
    font-weight: 700;
}

.service_widget_cost svg{
    transform: translateX(-10px);
    transition: all 0.3s ease-in-out;
}

.service_widget_cost:hover svg{
    transform: translateX(0);
}

.service_widget_cost_svg_mobile{
    display: none;
}

.service_widget_status_wrap{
    padding-top: 10px;
    margin-bottom: 20px;

    display: flex;
    flex-wrap: wrap;
    border-image: repeating-linear-gradient(300deg, #e7e7e7, #e7e7e7 6px, transparent 5px, transparent 12px) 14;
    border-top: 1px solid transparent;
}

.service_widget_status{
    margin-top: 9px;
    margin-right: 5px;
    padding: 2px 10px;

    border-radius: 11px;
    background-color: #EFF0F5;

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

    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.service_widget_status--open{
    background-color: #87D454;
    color: #FFF;
}

.service_widget_status--close{
    background-color: #b12d2d;
    color: #FFF;
}

.service_widget_status--yandex img{
    margin-right: 7px;
}

.service_widget_info{
    margin-top: 20px;
    margin-bottom: 35px;
}

.service_widget_program_info{
    padding-bottom: 20px;

    border-image: repeating-linear-gradient(125deg, #EFF0F5 0, #EFF0F5 10px, transparent 10px, transparent 20px) 30;
    border-bottom: 1px solid transparent;
}

.service_widget_program_info_el{
    font-size: 18px;
    font-weight: 700;
}

.service_widget_program_info_el:not(:last-child){
    margin-bottom: 15px;
}

.service_widget_program_info_el span{
    color: #006738;
}

.service_widget_caption{
    margin-bottom: 8px;

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

    color: #A7ABBE;
    font-size: 14px;
    font-weight: 400;
}

.service_widget_opening_row{
    margin-bottom: 20px;

    font-size: 14px;
    font-weight: 700;
}

.service_widget_phone_link{
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

.service_widget_mail_link{
    color: #006738;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline !important;
}

.service_widget_phone_wrap{
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.service_widget_caption svg{
    margin-right: 5px;
}

.service_widget_button{
    margin-bottom: 15px;

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

    width: 100%;
    height: 60px;

    border-radius: 10px;
    background: #006738;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.service_widget_button:hover{
    background-color: #003836;
}

.service_widget_note{
    color: #A7ABBE;
    text-align: center;
    font-size: 11px;
    font-weight: 400;
}

.service_widget_push{
    margin-top: 20px;
    padding: 25px 40px;

    position: relative;
    width: 400px;

    border-radius: 20px;
    border: 1px solid #EFF0F5;
    background-color: #FFF;
    overflow: hidden;

    transition: all 0.3s ease-in-out;
}

.service_widget_push_close{
    position: absolute;

    top: 18px;
    right: 18px;

    cursor: pointer;
    transition: height 0.3s ease-in-out;
}

.service_widget_push_close:hover{
    opacity: 0.6;
}

.service_widget_push_caption{
    font-size: 14px;
    font-weight: 700;
}

.service_widget_push_description{
    font-size: 14px;
    font-weight: 400;
}

.service_description{
    padding-top: 35px;
    margin-bottom: 100px;
}

.service_description a{
    color: #006738;
    font-weight: 600;
}

.service_description_title{
    margin-bottom: 39px;
}

.service_description_content{
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.service_description_content p{
    margin-bottom: 30px;

    color: #000;
    font-family: "Montserrat", sans-serif;
}

.service_description_content p:last-child{
    margin-bottom: 0;
}

.service_description_content ul li{
    padding-left: 20px;
    position: relative;
}

.service_description_content ul li:not(:last-child){
    padding-bottom: 5px;
}

.service_description_content ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 9px;

    width: 0.4em;
    height: 0.4em;
    background-color: #87D454;
    border-radius: 50%;
}

.service_description_content h3{
    margin-bottom: 20px;

    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
}

.service_description_content_images {
    margin-bottom: 26px;

    display: grid;
    grid-template-columns: 0.6fr 0.4fr;
    grid-template-rows: 270px;
    gap: 30px;
}

.service_description_content_images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.service_price{
    margin-bottom: 70px;
}

.service_price_title{
    margin-top: 100px;
    margin-bottom: 30px;
}

.service_price_tags{
    margin-bottom: 50px;

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

.service_price_tag{
    padding: 12px 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    cursor: pointer;
    border-radius: 30px;
    background-color: #EFF0F5;

    color: #003836;
    font-size: 18px;
    font-weight: 500;

    transition: all 0.3s ease-in-out;
}

.tab_js_btn--active{
    background-color: #87D454;
    color: #003836;
}

.service_price_block{
    display: none;
}

.service_price_list{
    margin-bottom: 24px;
}

.service_price_list_row{
    padding-top: 14px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.service_price_list_row_headline{
    color: #A7ABBE;
    font-size: 12px;
    font-weight: 700;
}

.service_price_list_row_wrap{
    display: flex;
    align-items: center;
}

.service_price_list_row_caption{
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.service_price_list_row_caption__center{
    /*text-align: center;*/
}

.service_price_list_row_note{
    color: #A7ABBE;
    font-size: 14px;
    font-weight: 400;
}

.service_price_list_row_wrap .service_price_list_row_headline{
    width: 180px;
}

.service_price_list_row_wrap .service_price_list_row_caption{
    width: 180px;
}

.service_price_list_row{
    padding-bottom: 17px;

    border-bottom: 1px solid transparent;
    border-image: repeating-linear-gradient(300deg, #E4E5ED, #E4E5ED 7px, transparent 5px, transparent 12px) 60;
}

.service_price_list_row--headline{
    padding-bottom: 8px;
}

.service_price_markers{
    margin-bottom: 30px;
}

.service_price_markers li{
    display: flex;
    align-items: start;
}

.service_price_markers li:not(:last-child){
    margin-bottom: 10px;
}

.service_price_markers li svg{
    margin-right: 6px;

    flex-shrink: 0;
}

.service_price_markers li p{
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.service_price_info{
    border-radius: 20px;
    border: 1px solid #EFF0F5;
}

.service_price_info_caption{
    padding: 23px 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    user-select: none;
}

.service_price_info_list{
    margin-bottom: 25px;
    padding: 0 24px;

    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.service_price_info_list li{
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.service_price_info_list li:not(:last-child){
    margin-bottom: 10px;
}

.service_price_info_note{
    margin: 0 24px 33px;
    padding: 14px 15px;

    display: flex;
    align-items: flex-start;
    border-radius: 10px;
    background: #EFF0F5;
}

.service_price_info_note svg{
    margin-top: 4px;
    margin-right: 10px;
    flex-shrink: 0;
}

.service_price_info_note p {
    font-size: 12px;
    font-weight: 400;
    line-height: 160%;
}

.service_timetable{
    margin-top: 100px;
    margin-bottom: 100px;
}

.service_timetable_title{
    margin-bottom: 30px;
}

.service_timetable_list_item{
    border-bottom: 1px solid transparent;
    border-image: repeating-linear-gradient(125deg, #EFF0F5 0, #EFF0F5 10px, transparent 10px, transparent 20px) 30;
}

.service_timetable_caption{
    margin-top: 25px;
    margin-bottom: 25px;

    font-size: 20px;
    font-weight: 400;
}

.service_timetable_rows{
    padding-left: 24px;
}

.service_timetable_row{
    padding-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service_timetable_row_wrap{
    display: flex;
    align-items: center;

    min-width: 150px;
}

.service_timetable_row_wrap svg{
    margin-right: 4px;
}

.service_timetable_row_wrap p{
    color: #000;
    font-size: 16px;
    font-weight: 700;
}

.service_timetable_row_date{
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.service_single{
    margin-top: 100px;
    margin-bottom: 100px;
}

.service_single_title{
    margin-bottom: 32px;
}

.service_single_fancybox{
    cursor: zoom-in;
}

.service_single_img{
    height: 530px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.service_rules{
    margin-top: 80px;
    margin-bottom: 80px;
}

.service_rules_wrap{
    padding-top: 45px;
    padding-bottom: 45px;
    border-top: 1px solid #EFF0F5;
    border-bottom: 1px solid #EFF0F5;
}

.service_rules_title{
    margin-bottom: 20px;
}

.service_rules_link{
    display: flex;
    align-items: flex-start;

    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.service_rules_link svg{
    margin-right: 5px;
    transition: all 0.3s ease-in-out;
}

.service_rules_link .service_rules_svg{
    transition: all 0.3s ease-in-out;
}

.service_rules_link:hover svg{
    transform: rotate(45deg);
}

.service_rules_link:hover .service_rules_svg{
    stroke: #006738;
}

.service_rules_link:hover{
    color: #006738;
}

.service_brief{
    margin-top: 100px;
}

.service_brief_wrap{
    padding-bottom: 100px;
    border-bottom: 1px solid #EFF0F5;
}

.service_brief_title{
    margin-bottom: 32px;
}

.service_brief_description{
    margin-bottom: 40px;

    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.service_brief_image{
    margin-bottom: 30px;

    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.service_brief_content{
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_brief_info{
    margin-right: 20px;

    font-size: 16px;
    font-weight: 700;
    line-height: 160%;
    text-wrap: balance;
}

.service_brief_button{
    padding: 20px 70px;

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

    border-radius: 10px;
    background: #006738;

    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.service_brief_button:hover{
    background-color: #003836;
}

.service_faq_accordion{
    margin-bottom: 100px;
}

.service_faq{
    margin-top: 100px;
}

.service_faq_title{
    margin-bottom: 40px;
}

.service_faq_element:not(:last-child){
    margin-bottom: 15px;
}

.service_faq_element{
    border-radius: 20px;
    border: 1px solid #EFF0F5;
    cursor: pointer;

    transition: all 0.05s ease-in-out;
}

.service_faq_top{
    padding: 20px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.service_faq_element:hover{
    border: 1px solid #87D454;
}

.service_faq_bottom{
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.service_faq_element_caption{
    padding-right: 50px;

    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.service_faq_element_description{
    padding: 0 60px 35px 25px;

    color: #575757;
    font-size: 16px;
    font-weight: 400;
}

.service_faq_element_close{
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.accordion_close--active{
    transform: rotate(225deg);
}

.accordion_close__none{
    display: none;
}

.accordion_element--active{
    border: 1px solid #87D454;
}

.service_see_also{
    margin-top: 100px;
    margin-bottom: 100px;
}

.service_see_also_title{
    padding-top: 10px;
    margin-bottom: 47px;
}

.service_see_also_wrap{
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.service_see_also_wrap::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 3;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.70) 45%, rgba(255, 255, 255, 0.90) 71%, #FFF 100%);
    opacity: var(--before-opacity, 1);
    transition: all 0.3s ease-in-out;
}

.service_see_also_grid{
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service_see_also_img_wrap{
    border-radius: 20px;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.service_see_also_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.service_see_also_link{
    margin-top: 10px;

    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.56px;
    text-transform: uppercase;

    transition: all 0.3s ease-in-out;
}

.service_see_also_card .service_see_also_path{
    transition: all 0.3s ease-in-out;
}

.service_see_also_link svg{
    position: relative;
    top: 2px;
    transition: all 0.3s ease-in-out;
}

.service_see_also_card:hover .service_see_also_link{
    color: #006738;
}

.service_see_also_card:hover .service_see_also_path{
    stroke: #006738;
}

.service_see_also_card:hover svg{
    transform: rotate(45deg);
}

.service_see_also_card:hover .service_see_also_img{
    transform: scale(1.1);
}

.service_menu{
    margin-bottom: 100px;
}

.service_menu_title{
    margin-bottom: 35px;

    margin-top: 100px;
}

.service_menu_list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    border-radius: 20px
}

.service_menu_item{
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;

    user-select: none;
}

.service_menu_link{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.service_menu_link::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.service_menu_link::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.service_menu_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.service_menu_caption{
    position: absolute;
    top: 25px;
    left: 15px;

    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    z-index: 3;
    transition: all 0.3s ease-in-out;
}

.service_menu_svg{
    position: absolute;
    bottom: 20px;
    left: 15px;

    z-index: 3;
    transition: all 0.3s ease-in-out;
}

.service_menu_item .service_menu_svg_path{
    transition: all 0.3s ease-in-out;
}

.service_menu_item:hover .service_menu_caption{
    color: #87D454;
}

.service_menu_item:hover .service_menu_svg_path{
    stroke: #87D454;
}

.service_menu_link:hover::before{
    opacity: 1;
}

.service_menu_item:hover .service_menu_img{
    transform: scale(1.1);
}

.service_menu_item:hover .service_menu_svg{
    transform: rotate(45deg);
}

.service_faq_top{
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion_bottom{
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.service_program{
    margin-top: 100px;
    margin-bottom: 100px;
}

.service_program_wrap{
    position: relative;
}

.service_program_cards_slider{
    margin-top: 34px;
    height: 530px;
}

.service_program_card{
    position: relative;
    background-color: #EFF0F5;
    border-radius: 20px;
    cursor: default;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.service_program_card_logo{
    position: absolute;
    top: 11px;
    right: 15px;
    width: 70px;
    height: auto;
}

.service_program_card_img{
    height: 265px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.service_program_card_content{
    padding: 25px 30px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.service_program_card_caption{
    margin-bottom: 30px;

    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    max-height: 48px;
    overflow: hidden;
}

.service_program_card_info{
    margin-bottom: 20px;
}

.service_program_card_info_row{
    margin-bottom: 8px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.service_program_card_info_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service_program_card_info_gr{
    color: #006738;
}

.service_program_card_btn{
    margin-bottom: 0;
}

.service_program_slider_arrows{
    top: -3px;
}

.service_program_arrow_prev{
    margin-right: 13px;
}

.service_add_gallery{
    padding-top: 35px;
    margin-bottom: 100px;
    overflow: hidden;
}

.service_add_gallery_title{
    margin-bottom: 32px;
}

.service_add_gallery_swiper{
    overflow: visible !important;
    height: 500px;
}



.service_add_gallery_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.add_gallery_button{
    position: absolute;
    z-index: 20;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.add_gallery_button_next{
    right: 40px;
}

.add_gallery_button_prev{
    left: 40px;
}

.service_price_additional{
    margin-bottom: 100px;
}

.service_price_additional_group{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service_price_additional_element{
    height: 100%;
    padding: 16px;
    border-radius: 20px;
    background-color: #EFF0F5;
    overflow: hidden;
}

.service_price_additional_wrap{
    display: block;
    border-radius: 20px;
    overflow: hidden;
    max-height: 600px;
}

.service_price_additional_wrap img{
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}

.service_price_additional_wrap img:hover{
    transform: scale(1.03);
}

.service_booking{
    position: relative;
    height: 100% !important;
}

.category_hotel_booking_frame--element{
    top: 0 !important;
    position: relative !important;
}

.booking_main{
    padding-top: 150px;
    margin-bottom: 70px;
}

.service_breadcrumbs--booking{
    padding-top: 0;
}

.service_title--booking{
    margin-bottom: 30px;
}

.booking_main_info{
    margin-bottom: 40px;
    padding: 21px 25px;

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

    border-radius: 20px;
    background: #EFF0F5;
}

.booking_main_info svg{
    flex-shrink: 0;
}

.booking_main_info_text{
    padding-left: 15px;
    font-size: 18px;
    font-weight: 400;
}

.booking_main_info_text a{
    color: #006738;
    font-weight: 700;
    text-decoration-line: underline;

    text-wrap: nowrap;
}

.service_tags_container{
    display: flex;
    justify-content: space-between;
}

.service_tags_share{
    margin-left: 50px;
    cursor: pointer;
}


.service_cottage_gallery{
    margin-bottom: 60px;
}

.service_cottage_gallery_grid{
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 260px;

    gap: 10px;
}

.service_cottage_gallery_tag{
    position: absolute;
    top: 20px;
    left: 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.service_cottage_gallery_flex{
    padding: 3px 10px;

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

    cursor: default;
    background-color: #fff;
    border-radius: 10px;
}

.service_cottage_gallery_flex:first-child{
    margin-right: 5px;
}

.service_cottage_gallery_flex svg{
    margin-right: 4px;
}

.service_cottage_gallery_flex p{
    font-size: 14px;
    font-weight: 400;
}

.service_cottage_gallery_link{
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.service_cottage_gallery_link:nth-child(1){
    grid-row: 1/3;
    grid-column: 1/3;

    border-radius: 20px 3px 3px 20px;
}

.service_cottage_gallery_link:nth-child(3){
    border-radius: 3px 20px 3px 3px;
}

.service_cottage_gallery_link:nth-child(5){
    border-radius: 3px 3px 20px 3px;
}

.service_cottage_gallery_link:nth-child(5)::before{
    position: absolute;
    content: "";
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.50);
}

.service_cottage_gallery_count{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;

    color: #FFF;
    font-size: 24px;
    font-weight: 700;
}

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

.service_title--mobile_cottage {
    display: none;
}

.service_cottage_gallery_tag--mobile{
    display: none;
}

.service_cottage_reviews_mobile{
    display: none;
}

.service_summary_wrap{
    padding: 24px 38px;

    display: flex;
    align-items: center;
    width: 100%;

    border-radius: 20px;
    border: 2px solid #EFF0F5;
}

.service_summary_element{
    position: relative;
}

.service_summary_check-in{
    position: relative;
    margin-right: 64px;
}

.service_summary_check-in::after{
    content: "";
    position: absolute;
    top: 36px;
    right: -44px;

    width: 28px;
    height: 2px;
    background-color: #EFF0F5;
}

.service_summary_caption{
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.service_summary_info{
    font-size: 24px;
    font-weight: 400;
}

.service_summary_element:not(:last-child){
    margin-right: 40px;
}

.service_summary_element:not(:last-child)::after{
    content: "";
    position: absolute;
    top: -4px;
    right: -40px;

    width: 2px;
    height: 60px;
    background-color: #EFF0F5;
}

.service_summary_element:not(:first-child){
    margin-left: 40px;
}

.service_summary_check{
    display: flex;
    align-items: center;
}

.show_more_text_wrap{
    height: 220px;
    overflow: hidden;

    transition: all 0.3s ease-in-out;
}

.service_description_cottage_button{
    margin-top: 15px;

    color: #006738;
    font-size: 16px;
    font-weight: 700;
    line-height: 160%;
    cursor: pointer;

    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-underline-offset: 4px;
}

.service_cottage_privilege{
    margin-bottom: 70px;
}

.service_cottage_privilege_subtitle{
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.service_cottage_privilege_group{
    margin-top: 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
}

.service_cottage_privilege_element{
    position: relative;
    overflow: hidden;
    padding: 10px;

    display: flex;
    height: 170px;

    border-radius: 20px;
    background: #EFF0F5;
}

.service_cottage_privilege_image{
    margin-right: 17px;

    width: 40%;
    height: 100%;

    object-fit: cover;
    border-radius: 10px;
}

.service_cottage_privilege_content{
    margin-top: 15px;
    margin-bottom: 5px;
    overflow: hidden;
}

.service_cottage_privilege_title{
    font-size: 14px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.56px;
    text-transform: uppercase;
}

.service_cottage_privilege_description{
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.service_cottage_privilege_icon{
    position: absolute;
    top: 0;
    left: 0;
    width: 111px;
    height: 83px;
}

.service_cottage_facilities{
    margin-bottom: 35px;
}

.service_cottage_facilities_wrap{
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service_facilities_element{
    padding: 24px;

    width: 100%;
    height: 100%;
    min-height: 110px;

    border-radius: 20px;
    background: #EFF0F5;
}

.service_facilities_item p{
    font-size: 14px;
    font-weight: 400;
}

.service_facilities_description{
    font-size: 14px;
    font-weight: 400;
}

.service_facilities_description a{
    color: #000;
    font-weight: 700;
}

.service_facilities_caption{
    margin-bottom: 5px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.56px;
    text-transform: uppercase;
}

.service_facilities_list{
    grid-column: 2 span;
}

.service_facilities_item{
    display: flex;
    align-items: center;
}

.service_facilities_item:not(:last-child){
    margin-bottom: 14px;
}

.service_facilities_item svg{
    margin-right: 13px;
}

.service_facilities_icon{
    margin-right: 13px;

    width: 18px;
    height: 18px;
    background-color: #A7ABBE;
}

.service_info_title{
    margin-bottom: 30px;
}

.service_cottage_price{
    margin-bottom: 70px;
}

.service_cottage_price_swiper{
    margin-top: 30px;

    height: 110px;
}

.service_cottage_price_slide_wrap{
    padding: 18px;
    position: relative;
    bottom: -15px;
    height: 95px;

    border-radius: 20px;
    background: #EFF0F5;
}

.service_cottage_price_sticker{
    position: absolute;
    padding: 3px 5px;
    top: -9px;
    left: 18px;

    border-radius: 8.5px;
    background: #87D454;

    color: #FFF;
    font-size: 14px;
    font-weight: 700;
}

.service_cottage_price_new{
    color: #000;
    font-size: 18px;
    font-weight: 700;
}

.service_cottage_price_old{
    color: #8A8C99;
    font-size: 14px;
    font-weight: 400;
    text-decoration-line: line-through;
}

.service_cottage_price_count{
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.cottage_price_arrow{
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 5;
}

.cottage_price_arrow_prev{
    left: 0;
}

.cottage_price_arrow_prev::before{
    position: absolute;
    content: "";
    top: -95%;
    left: 0;
    width: 99px;
    height: 125px;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%), linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, #ffffff66 100%);
    z-index: -1;
}


.cottage_price_arrow_next{
    right: 0;
}

.cottage_price_arrow_next::before{
    position: absolute;
    content: "";
    top: -95%;
    right: 0;
    width: 99px;
    height: 125px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%), linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #ffffff66 100%);
    z-index: -1;
}

.cottage_price_arrow_next,
.cottage_price_arrow_prev {
    transition: opacity 0.3s ease;
}

.cottage_price_arrow_next.swiper-button-disabled,
.cottage_price_arrow_prev.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

.service_slider_promo{
    margin-bottom: 50px;
}

.promo_slider_category{
    height: 30px;
    padding: 5px 12px;
    border-radius: 30px;
    background: #FFF;

    color: #000;
    font-size: 14px;
    font-weight: 400;
    z-index: 3;
}

.promo_slider_swiper{
    height: 395px;
    position: relative;
}

.promo_slider_link{
    margin-top: 15px;
    position: relative;
    bottom: unset;
}

.promo_slider_content{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.promo_slider_content::before{
    content: "";
    position: absolute;
    height: 85px;
    width: 175px;

    bottom: 0;
    left: 0;

    opacity: 0.5;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.promo_slider_img{
    transition: all 0.3s ease-in-out;
}

.promo_slider_slide:hover .promo_slider_img{
    transform: scale(1.1);
}

.promo_slider_slide:hover .promo_slider_content::before{
    width: 100%;
}

.promo_slider_content_timer{
    position: absolute;
    bottom: 14px;
    left: 17px;
    z-index: 4;
}

.promo_slider_timer_caption{
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.promo_slider_timer_caption p{
    margin-left: 5px;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
}

.promo_slider_timer_list{
    display: flex;
    align-items: center;
}

.promo_slider_timer_value{
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
}

.promo_slider_timer_name{
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
}

.promo_slider_timer_list li:not(:last-child){
    position: relative;
    margin-right: 15px;
}

.promo_slider_timer_list li:not(:last-child)::before{
    content: "";
    position: absolute;
    top: 11px;
    right: -7px;
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.26);
    border-radius: 50%;
}

.service_title_h2--prefer{
    margin-bottom: 50px;
}

.prefer_slider_arrows{
    top: -84px;
}

@media(max-width: 1700px){
    .service_widget{
        padding: 30px 20px 20px;
        width: 350px;
    }

    .service_widget_push{
        width: 350px;
    }

    .service_widget_wrap{
        right: 75px;
        transform: unset;
    }
}

@media(max-width: 1200px){
    .container--service{
        padding-right: unset;
    }

    .service_widget_wrap{
        margin-top: 46px;
        margin-bottom: 20px;

        position: relative;
        top: unset;
        right: unset;
        transform: unset;
    }

    .service_widget{
        width: 50%;
    }

    .service_widget_push{
        width: 50%;
    }

    .booking_main{
        padding-top: 60px;
    }

    .service_title--booking{
        font-size: 34px;
    }

    .booking_main_info svg{
        width: 30px;
    }

    .booking_main_info_text{
        font-size: 14px;
    }
}

@media(max-width: 1000px){
    .service_breadcrumbs {
        padding-top: 100px;
    }

    .service_title {
        margin-top: 30px;
    }

    .container--booking{
        width: calc(100% - 30px);
    }
}

@media(max-width: 900px){
    .service_menu_list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 768px){
    .service_title_h2{
        text-align: center;
    }

    .service_video_bg_wrap{
        display: block;
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden; /* Ограничиваем область видео */
    }

    .service_video_bg_wrap::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 30px;
        z-index: 3;

        border-radius: 35px 35px 0 0;
        background-color: #fff;
    }

    .service_video_bg_wrap::after{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 465px;
        z-index: 2;

        border-radius: 35px 35px 0 0;
        background: linear-gradient(0deg, #000 -0.33%, rgba(0, 0, 0, 0.00) 55%);
    }

    .service_tags{
        padding-bottom: 0;
    }

    .service_tags_button{
        display: block;
    }

    .service_title--desktop{
        display: none;
    }

    .service_tags_wrap{
        margin-top: 35px;

        justify-content: center;
    }

    .service_title--mobile{
        display: block;

        position: absolute;
        bottom: 65px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;

        width: 90%;

        color: #FFF;
        text-align: center;
        font-size: 24px;
        font-weight: 400;
    }

    .service_breadcrumbs{
        display: none;
    }

    .service_swiper_btn{
        display: none;
    }

    .service_swiper_pagination{
        display: block;
    }

    .service_swiper_pagination_custom{
        position: relative;
        width: 100px ;
        height: 100px;
        border-radius: 100%;
        background-color: red;
        z-index: 99;
    }

    .service_slider__desktop{
        display: none;
    }

    .service_gallery{
        display: block;
    }

    .service_gallery_wrap{
        position: relative;
        top: -15px;

        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        z-index: 3;
    }

    .service_gallery_element{
        height: 65px;
        border-radius: 10px;
        overflow: hidden;
    }

    .service_gallery_element--last{
        display: flex;
        justify-content: center;
        align-items: center;

        border-radius: 30px;
        background-color: #006738;
        backdrop-filter: blur(2.25px);
        -webkit-backdrop-filter: blur(2.25px);
    }

    .service_gallery_element--hidden{
        display: none;
    }

    .service_gallery_element--last span{
        color: #FFF;
        font-size: 20px;
        font-weight: 400;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

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

    .service_widget{
        padding-right: 25px;
        padding-left: 25px;
        width: 90%;
    }

    .service_widget_push{
        width: 90%;
    }

    .service_widget_cost_svg_desktop{
        display: none;
    }

    .service_widget_cost_svg_mobile{
        display: block;
    }

    .service_description {
        margin-bottom: 0;
        padding-bottom: 70px;
    }

    .service_description_content_images{
        grid-template-columns: 1fr;
    }

    .service_description_content p{
        font-size: 14px;
    }

    .service_price_title{
        margin-top: 0;
        padding-top: 0;
    }

    .service_price_tags{
        justify-content: center;
    }

    .service_price_tag{
        flex-shrink: 0;
        font-size: 14px;
        text-align: center;
        height: 53px;
        max-width: 190px;
    }

    .service_price_tags::-webkit-scrollbar {
        display: none;
    }

    .service_rules{
        margin-top: 60px;
    }

    .service_rules_wrap{
        border-radius: 20px;
        border: 1px solid #EFF0F5;
    }

    .service_rules_title{
        padding-right: 10px;
        padding-left: 10px;
    }

    .service_rules_link{
        justify-content: center;
    }

    .service_timetable{
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .service_timetable_row{
        flex-direction: column;
        align-items: flex-start;
    }

    .service_timetable_row_date{
        padding-bottom: 9px;
    }

    .service_brief{
        margin-top: 70px;
    }

    .service_brief_wrap{
        padding-bottom: 70px;
        border-bottom: unset;
    }

    .service_brief_content{
        flex-direction: column;
        align-items: flex-start;
    }

    .service_brief_info{
        margin-right: 0;
        margin-bottom: 30px;
    }

    .service_faq_accordion{
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .service_faq{
        margin-top: 70px;
    }

    .container--faq{
        border-bottom: unset;
    }

    .service_single{
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .service_see_also{
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .service_see_also_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service_see_also_img_wrap {
        height: 180px;
    }

    .service_see_also_link {
        font-size: 12px;
    }

    .service_see_also_link svg {
        display: none;
    }

    .service_menu {
        margin-bottom: 70px;
    }

    .service_menu_title{
        margin-top: 0;
        padding-top: 0;
    }

    .service_program{
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .service_program_card_content{
        padding: 20px 15px;
    }

    .service_program_card_info{
        display: none;
    }

    .service_program_cards_slider{
        height: 400px;
    }

    .service_program_card_img{
        height: 220px;
    }

    .service_program_card_caption{
        max-height: 41px;
        font-size: 17px;
    }

    .service_video_bg_wrap--cottage{
        height: 400px;
    }

    .service_tags_share{
        position: absolute;
        top: 85px;
        right: 10px;
        z-index: 5;
    }

    .service_video_bg_wrap--cottage::after{
        display: none;
    }

    .service_gallery_element--last_cottage span{
        text-align: center;
        font-size: 12px;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .service_title--mobile_cottage{
        display: block;
        padding-top: 0;
        margin-top: 30px;

        text-align: start;
        color: #000;
        font-size: 28px;
        font-weight: 400;
        line-height: normal;
    }

    .service_cottage_gallery_tag--mobile{
        margin-top: 10px;
        display: flex;
        justify-content: start;
        position: unset;
    }

    .service_cottage_gallery_flex{
        position: relative;
        padding: 0;
    }

    .service_cottage_gallery_flex:first-child {
        margin-right: 10px;
    }

    .service_cottage_gallery_flex:first-child::after {
        content: "";
        position: absolute;
        top: 8px;
        right: -15px;
        background-color: #EFF0F5;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        z-index: 2;
    }

    .service_cottage_gallery_flex:last-child {
        margin-left: 15px;
    }

    .service_cottage_reviews_mobile{
        margin-top: 15px;
        display: flex;
        align-items: center;
    }

    .service_cottage_rating{
        margin-right: 7px;
        padding: 3px 7px;
        color: #FFF;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.56px;
        border-radius: 10px;
        background: #87D454;
    }

    .service_cottage_reviews_count{
        margin-right: 7px;
        font-size: 14px;
        font-weight: 400;
    }

    .service_summary{
        margin-top: 30px;
    }

    .service_summary_wrap{
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 17px;
    }

    .service_summary_wrap::after{
        content: "";
        position: absolute;
        top: 50%;
        left: 43%;
        transform: translate(-50%, -50%);

        width: 2px;
        height: 120px;
        background-color: #EFF0F5;
    }

    .service_summary_element:not(:first-child) {
        margin-left: 0;
    }

    .service_summary_element:not(:last-child) {
        margin-right: 0;
    }

    .service_summary_area {
        grid-column: 1;
        grid-row: 1;
    }

    .service_summary_capacity{
        grid-column: 1;
        grid-row: 2;
    }

    .service_summary_check{
        grid-row: 1/ span 2;
        grid-column: 2;

        flex-direction: column;
        align-items: flex-start;
    }

    .service_summary_check-in::after {
        display: none;
    }

    .service_summary_element:not(:last-child)::after{
        display: none;
    }

    .service_summary_check-in{
        margin: 0;
    }

    .service_summary_check-out{
        margin: 20px 0 0;
    }

    .service_cottage_privilege_element{
        flex-direction: column;
        height: 300px;
    }

    .service_cottage_privilege_image{
        margin-right: 0;
        height: 150px;
        width: 100%;
        flex-shrink: 0;
    }

    .service_cottage_privilege_content{
        overflow: unset;
    }

    .service_cottage_privilege_title{
        font-size: 12px;
    }

    .service_cottage_privilege_description{
        font-size: 12px;
    }

    .service_title_h2--cottage{
        margin-bottom: 15px;
        text-align: start;
    }

    .service_cottage_privilege_subtitle{
        font-size: 14px;
    }

    .service_cottage_facilities_wrap{
        grid-template-columns: 1fr;
    }

    .service_facilities_list {
        grid-column: unset;
    }
}

@media(max-width: 600px){
    .service_menu_list {
        grid-template-columns: repeat(2, 1fr);
    }

    .container--faq{
        padding-bottom: unset;
    }
}


@media(max-width: 415px){
    .service_title_h2{
        font-size: 20px;
    }

    .service_tag a{
        font-size: 12px;
    }

    .service_description_content h3{
        font-size: 16px;
    }

    .service_description_content{
        font-size: 12px;
    }

    .service_price_list_row:last-child{
        border: unset;
        padding-bottom: 0;
    }

    .service_price_list_row_caption{
        font-size: 14px;
    }

    .service_price_list_row_caption--name{
        font-weight: 700;
    }

    .service_price_list_row_note{
        font-size: 12px;
    }

    .service_price_list_row_wrap .service_price_list_row_caption {
        width: 100%;
    }

    .service_price_list_row_wrap .service_price_list_row_headline {
        width: 100%;
    }

    .service_price_list{
        padding: 20px;
        border: 1px solid #EFF0F5;
        border-radius: 20px;
    }

    .service_price_list_row_width{
        width: 60%;
    }

    .service_price_markers li p{
        font-size: 12px;
    }

    .service_price_info_caption{
        font-size: 16px;
    }

    .service_timetable_caption{
        font-size: 15px;
    }

    .service_timetable_row_date{
        font-size: 14px;
    }

    .service_single_img {
        height: 350px;
    }

    .service_brief_description{
        font-size: 14px;
    }

    .service_brief_content{
        align-items: center;
    }

    .service_brief_info{
        text-align: center;
    }

    .service_brief_button{
        width: 100%;
    }

    .service_faq_top{
        padding: 15px 20px;
    }

    .service_faq_element_description {
        padding: 0 35px 20px 20px;
        font-size: 14px;
    }

    .service_faq_element_caption{
        font-size: 14px;
    }

    .service_menu_item{
        height: 230px;
    }

    .service_rules {
        margin-bottom: 60px;
    }

    .add_gallery_button_next{
        right: 25px;
    }

    .add_gallery_button_prev{
        left: 25px;
    }

    .service_price_additional_group{
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .service_price_additional_element{
        padding: 9px;
    }
}

@media(max-width: 320px){
    .service_price_tags{
        flex-direction: column;
    }

    .service_price_tag:first-child{
        margin-bottom: 10px;
    }

    .service_menu_item{
        height: 180px;
    }
}