body{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.container{
    margin: 0 auto;
    width: calc(100% - 150px);
    max-width: 1320px;
}

.main_page_title{
    color: #000;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*Slider*/

.main_slider{
    margin: 0 auto ;
    width: calc(100% - 80px);
    max-width: 2500px;
    padding-top: 140px;
}

.main_slider_container{
    display: grid;

    gap: 20px;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: 500px 200px;
}

.main_slider_card{
    position: relative;
    overflow: hidden;
    
    cursor: pointer;
    border-radius: 20px;
    background-color: #EFF0F5;
    width: 100%;
    height: 100%;
    user-select: none;
    grid-column: span 2;
}

.main_slider_video{
    position: relative;

    grid-column: 1 / 13;
    grid-row: 1 / 3;

    width: 100%;
    height: 100%;

    border-radius: 20px;
    overflow: hidden;
}

.main_slider_video::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-image: url("/upload/1_1.jpg");
}

.main_slider_for_mobile_line{
    display: none;
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 100%;
    height: 30px;
    border-radius: 20px 20px 0 0;
    background-color: #FFF;
    z-index: 9;
}

.main_slider_card_img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
}

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

.main_slider_card_img-sm{
    transform: rotate(354deg);
    width: 100px;
    height: 100px;
    bottom: -5px;
    right: 0;
    border-radius: 20px;
}

.main_slider_card_caption{
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 29px;

    display: flex;
    align-items: center;

    position: relative;
    z-index: 4;
    max-width: 400px;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-wrap: balance;
}

.main_slider_card_caption--sm{
    color: #000;
    transition: all 0.3s ease-in-out;
}

.main_slider_card_caption--sm svg{
    position: relative;
    top: -2px;
    left: 6px;
}

.main_slider_card_caption--slider{
    font-size: 26px;
}

.main_slider_card_caption svg{
    transition: all 0.3s ease-in-out;
    margin-right: 7px;
    flex-shrink: 0;
}

.main_slider_card_svg{
    content: "";
    position: absolute;
    bottom: 30px;
    left: 25px;
    background-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.main_slider_card_svg svg{
    position: absolute;
    top: 15px;
    left: 15px;
    transition: all 0.3s ease-in-out;
}

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

.main_slider_card:hover .main_slider_card_img-sm{
    transform: rotate(354deg) scale(1.10);
}

.main_slider_card:hover .main_slider_card_bg_green{
    opacity: 1;
}

.main_slider_card:hover .main_slider_card_caption--sm{
    color: #FFF;
}

.main_slider_card:hover .main_slider_card_subtitle{
    color: #FFF;
}

.main_slider_card_subtitle{
    padding-left: 25px;
    padding-top: 7px;
    padding-right: 25px;

    position: relative;
    opacity: 0.9;
    z-index: 2;
    color: #000;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.main_swiper{
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    user-select: none;

    grid-column: span 4;
}

.swiper-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: #007bff;
    width: 0;
    transition: width 0.3s;
}

.swiper-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.2);
}

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

.swiper-pagination-main{
    top: unset !important;
    bottom: 24px;
    left: 25px !important;
    z-index: 4;
    width: calc(100% - 55px) !important;
    border-radius: 10px;
}

.swiper-pagination-main.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #FFF !important;
    border-radius: 10px;
}

.swiper-pagination-main.swiper-pagination-progressbar{
    background: rgba(255, 255, 255, 0.35) !important;
}

.main_swiper_slide::before{
    content: "";
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0) 100%);
    opacity: 0.4;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.main_swiper_btn{
    position: absolute;
    bottom: 43px;
    z-index: 9;
    cursor: pointer;
}

.btn_hover .circle, .btn_hover .arrow{
    transition: all 0.3s ;
}

.btn_hover:hover .circle{
    fill: #FFF;
}

.btn_hover:hover .arrow{
    stroke: #000;
}

.main_swiper_btn--prev{
    right: 80px;
}

.main_swiper_btn--next{
    right: 30px;
}

.main_slider_video_title--content{
    position: absolute;
    top: 60px;
    left: 50px;
    z-index: 10;

    width: 100%;
    display: flex;
    flex-direction: column-reverse;
}

.main_slider_video_title--seo{
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.main_slider_video_title{
    margin-bottom: 15px;

	text-wrap: balance;
	width: calc(100% - 50px);
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 400;
    text-transform: uppercase;
    user-select: none;
}

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

.main_slider_video::before{
    content: "";
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0) 100%);
    opacity: 0.4;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}

.main_slider_card_subtitle_btn{
    position: absolute;
    bottom: 46px;
    left: 25px;

    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 40px;
    z-index: 3;

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

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

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

.main_slider_card_subtitle_counter{
    position: absolute;
    top: 36px;
    right: 30px;
    z-index: 3;

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

    width: 35px;
    height: 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.20);

    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.48px;
}


/*Category hotel*/

.category_hotel{
    padding-top: 40px;
    margin-top: 62px;
}

.category_hotel_title{
    margin-bottom: 45px;
}

.category_hotel_group{
    display: flex;
}

.category_hotel_card{
    position: relative;
    margin-right: 16px;

    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.category_hotel_card:hover .category_hotel_card_img{
    transform: scale(1.13);
}

.category_hotel_card:last-child{
    margin-right: 0;
}

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

.category_hotel_card_content{
    box-sizing: border-box;

    position: absolute;
    padding: 0 25px;

    top: 14px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 32px);
    height: 75px;

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

    border-radius: 20px;
    background: rgba(86, 86, 86, 0.25);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    transition: all 0.3s ease-in-out;
}

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

.category_hotel_card:nth-child(1):hover .category_hotel_card_content{
    background: rgba(23, 39, 64, 0.80);
}

.category_hotel_card:nth-child(2):hover .category_hotel_card_content{
    background: rgba(0, 56, 54, 0.80);
}

.category_hotel_card:nth-child(3):hover .category_hotel_card_content{
    background: rgba(127, 73, 30, 0.80);
}

.category_hotel_card:hover .category_hotel_card_caption{
    color: #FED797;
}

.category_hotel_card:hover  .category_hotel_card_all_included{
    background: #FED797;
}

.category_hotel_card:hover .category_hotel_star{
    fill: #FED797;
}


.category_hotel_card_caption{
    color: #FFF;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

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


.category_hotel_card_all_included{
    margin-top: 3px;

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

    width: 163px;
    height: 20px;
    border-radius: 15px;
    background: #FFF;

    color: #383838;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

/*Spa*/

.spa{
    overflow: hidden;

    margin-bottom: 60px;
    padding-top: 40px;
    margin-top: 62px;
}

.spa_swiper_title{
    margin-bottom: 45px;
}

.spa_swiper {
    width: 100%;
    height: 500px;
    overflow: visible;
    position: relative;
    user-select: none;

}

.spa_swiper_content {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 5;
}

.spa_swiper_content_title{
    margin-top: 10px;
    margin-left: 15px;
    position: relative;
    color: #FFF;
    max-width: 570px;
    font-size: 32px;
    font-weight: 400;
    z-index: 6;
}

.spa_swiper_content .background{
    position: absolute;
    top: 0;
    left: 0;
}

.spa_background_mobile{
    display: none;
}

.spa_swiper_btn{
    margin-top: 13px;
    margin-left: 15px;

    display: inline-flex;
    width: auto;

    position: relative;
    z-index: 6;

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

.spa_swiper_btn--mobile{
    display: none;
}

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

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

.spa_swiper_btn p {
    color: #FFF;
}

.swiper-slide{
    width: 70%;
}

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

.spa_swiper_slide_wrap::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgb(0 0 0 / 84%) 100%);
    z-index: 1;
}

.spa_swiper_slide_img{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spa_swiper_slide_text{
    position: absolute;
    bottom: 20px;
    left: 40px;
    z-index: 5;
    font-weight: 300;

    color: #FFF;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
}

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

.spa_swiper_button_prev{
    left: 45px;
}

/*medicine*/

.medicine{
    margin-bottom: 95px;
}

.medicine_wrapper{
    width: 100%;
    height: 490px;
    border-radius: 20px;
    background-color: #EFF0F5;

    display: flex;
    justify-content: space-between;
}

.medicine_content{
    margin-top: 43px;
    margin-left: 40px;
    margin-right: 30px;
}

.medicine_content_caption{
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 400;
}

.medicine_content_description{
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
}

.medicine_content_group{
    margin-bottom: 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 27px;
}

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

.medicine_content_icon{
    margin-right: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(107, 111, 130, 0.13);
    border-radius: 10px;
    flex-shrink: 0;
}

.medicine_content_text {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.medicine_content_btn{
    width: 262px;
    height: 60px;
    border-radius: 10px;
    background-color: #AEA166;

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

    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.64px;

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

.medicine_content_btn:hover{
    background-color: #7F491E;
}

.medicine_photo{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    max-width: 590px;
}

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

.medicine_photo_link{
    top: 45px;
    right: 20px;
    position: absolute;
    z-index: 2;

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

    width: 167px;
    height: 42px;
    border-radius: 21px;

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

.medicine_photo_link p{
    margin-left: 8px;

    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.medicine_photo_link:hover{
    background: rgba(255, 255, 255, 0.30);
}

.medicine_photo_link:hover .path_circle{
    fill: #7F491E;
}

/*Service season*/

.service_season{
    overflow: hidden;
}

.service_season_title{
    margin-bottom: 20px;
}

.service_season_swiper {
    position: relative;
    width: 100%;
    height: 600px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;

    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service_season_slide_wrap{
    width: 100%;
    height: 100%;

    display: grid;
    grid-template-columns: 600px 300px;
    grid-template-rows: 300px 300px;
}

.service_season_slide--mobile{
    display: none !important;
}

.service_season_slide_wrap-small{
    grid-template-columns: 330px 300px;
}

.service_season_slide_card{
    position: relative;
    width: 100%;
    height: 100%;
}

.service_season_slide_wrap-small .service_season_slide_card:nth-child(1){
    grid-column: 1;
    grid-row: 1;
}

.service_season_slide_wrap-small .service_season_slide_card:nth-child(2){
    grid-column: 1;
    grid-row: 2;
}

.service_season_slide_wrap-small .service_season_slide_card:nth-child(3){
    grid-column: 2;
    grid-row: 1;
}

.service_season_slide_wrap-small .service_season_slide_card:nth-child(4){
    grid-column: 2;
    grid-row: 2;
}

.service_season_slide_card--large{
    grid-row: span 2;
    padding-right: 30px;
}

.service_season_slide_wrap-small .service_season_slide_card:first-child,
.service_season_slide_wrap-small .service_season_slide_card:nth-child(2){
    padding-right: 30px;
}

.service_season_slide_card_link:hover .service_season_image{
    transform: scale(1.1);
}

.service_season_slide_card_link:hover .service_season_text{
    color: #006738;
}

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

.service_season_slide_card_link:hover .path{
    stroke: #006738;
}

.service_season_slide{
    width: 900px !important;
}

.service_season_slide-small{
    width: 630px !important;
}

.service_season_video_wrap{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.service_season_video_wrap::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 5;
}


.service_season_image_wrap{
    position: relative;
    height: calc(100% - 50px);
    border-radius: 20px;
    overflow: hidden;
}

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

.service_season_text{
    padding-top: 30px;
    position: absolute;
    top: 100%;
    transform: translateY(-73px);
    left: 0;

    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_season_text svg{
    margin-top: 1px;
    margin-right: 5px;
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
}

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

.service_arrows{
    position: absolute;
    top: -77px;
    right: 10px;
    display: flex;
}

.service_arrow{
    cursor: pointer;
}

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

.service_arrow:hover .circle{
    fill: #006738;
}

.service_arrow:hover .path{
    stroke: #FFF;
}

.service_arrow_prev{
    margin-right: 13px;
}

.service_season_tabs{
    margin: 34px;
    display: flex;
    justify-content: center;
}

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

    height: 45px;
    width: 150px;
    border-radius: 30px;
    background-color: #EFF0F5;
    cursor: pointer;
}

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

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

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

.service_season_tab sup{
    padding-left: 3px;
    padding-bottom: 5px;
    font-size: 10px;
    vertical-align: super;
    transition: all 0.3s ease-in-out;
}

.service_season_content--active{
    display: block;
    opacity: 1;
}

.service_season_tab--active p{
    color: #003836;
}

.service_season_tab--active sup{
    color: #003836;
}

.service_season_tab--active .service_season_svg{
    fill: #003836;
}
/*child_service*/

.child_service{
    padding-top: 52px;
    margin-top: 55px;

    overflow: hidden;
}

.child_service_title{
    margin-bottom: 60px;
}

.child_service_arrows{
    top: -85px;
}

.child_service_swiper{
    position: relative;
    width: 100%;
    height: 100%;
}

.child_service_slide{
    overflow: visible;
    color: #000;
}

.child_service_slide_content{
    cursor: pointer;
    overflow: hidden;
    user-select: none;
}

.child_service_slide_content:hover .child_service_slide_content_img{
    transform: scale(1.06);
}

.child_service_slide_content:hover .child_service_slide_content_txt{
    background-color: #F3FEEC;
}

.child_service_slide_content_caption--mobile{
    display: none;
}

.child_service_slide_content:hover .child_service_slide_content_caption{
    color: #006738
}

.child_service_slide_content:hover .child_service_slide_content_caption .path{
    stroke: #006738
}

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

.child_service_swiper{
    position: relative;
    width: 100%;
    height: 660px;
    overflow: visible;
}

.child_service_slide_content_img_wrap{
    width: 100%;
    overflow: hidden;
    height: 371px;
    border-radius: 20px 20px 0 0;
}

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

.child_service_slide_content_txt{
    padding: 30px 35px;

    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;

    transform: translateX(-50%);
    width: 101%;
    height: 305px;
    background-color: #EFF0F5;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
}

.child_service_slide_content_caption{
    margin-bottom: 10px;

    display: flex;
    align-items: start;
    transition: all 0.3s ease-in-out;
}

.child_service_slide_content_caption svg{
    width: 17px;
    height: 16px;
    margin-top: 1px;
    margin-right: 5px;
    transition: all 0.3s ease-in-out;
}

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

.child_service_slide_content_caption span{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    max-width: 80%;
}

.child_service_slide_content_description{
    margin-bottom: 20px;

    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.child_service_slide_content_element{
    margin-bottom: 15px;

    display: flex;
    align-items: center;
}

.child_service_slide_content_icon{
    margin-right: 13px;

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

    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(107, 111, 130, 0.13);
}

.child_service_slide_content_p{
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

/*News slider*/

.news_slider{
    padding-top: 52px;
    margin-top: 55px;

    margin-bottom: 90px;
    position: relative;
    overflow: hidden;
}

.main_page_title{
    margin-bottom: 47px;
}

.news_slider_swiper{
    height: 423px;
    position: relative;
}

.news_slider_all_link{
    position: absolute;
    top: -75px;
    left: 10px;

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

.news_slider_all_link svg{
    margin-right: 2px;
    position: relative;
    top: 2px;
    transition: 0.2s all ease-in-out;
}

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

.news_slider_arrows{
    top: -85px;
}

.news_slider_slide{
    position: relative;
    user-select: none;
}

.news_slider_slide:hover .news_slider_link{
    opacity: 1;
}

.news_slider_slide:hover .news_slider_caption{
    color: #006738;
}

.news_slider_category{
    padding: 5px 12px;

    position: absolute;
    top: 8px;
    left: 7px;

    border-radius: 30px;
    background-color: #9AA237;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
}

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

.news_slider_caption{
    margin-top: 15px;

    color: #000;
    font-size: 20px;
    font-weight: 400;
    transition: 0.3s all ease-in-out;
}

.news_slider_preview{
    margin-top: 6px;

    color: #A7ABBE;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
}

.news_slider_link{
    position: absolute;
    bottom: 0;
    left: 0;

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

.news_slider_link svg{
    position: relative;
    top: 2px;
}

/*cottage_new*/

.cottage_new_container{
    height: 100%;
}

.cottage_new{
    margin-bottom: 80px;

    width: 100%;
    height: 580px;
    background-color: #EFF0F5;
}

.cottage_new_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.cottage_new_content{
    max-width: 660px;
}

.cottage_new_title{
    margin-bottom: 15px;

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

.cottage_new_description{
    margin-bottom: 35px;

    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.cottage_new_group{
    margin-bottom: 40px;
}

.cottage_new_element{
    margin-bottom: 20px;

    display: flex;
    align-items: center;
}

.cottage_new_element_svg{
    margin-right: 12px;

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

    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(107, 111, 130, 0.13);
}

.cottage_new_element_text{
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.cottage_new_images{
    position: relative;

    max-width: 600px;
    height: 400px;
}

.cottage_new_images--mobile{
    display: none;
}

.cottage_new_img{
    border-radius: 20px;
}

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

.cottage_new_img--logo{
    position: absolute;
    top: 14px;
    right: 14px;
}

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

.cottage_new_btn--site{
    margin-right: 10px;

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

    width: 262px;
    height: 60px;
    background-color: #006738;
    border-radius: 10px;

    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.64px;
    text-transform: uppercase;

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

.cottage_new_btn--site:hover{
    background-color: #003836;
}

.cottage_new_btn--loyalty{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 335px;
    height: 60px;
    border-radius: 10px;

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

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

.cottage_new_btn--loyalty:hover svg{
    transform: rotate(45deg);
}

/*Partners*/

.partners{
    position: relative;
    margin-bottom: 100px;
}

.partners_wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.partners_slide_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.partners_slider_one, .partners_slider_two{
    height: 90px;
}

.partners_slider_two{
    margin-top: 30px;
}

.partners_slide_wrap img{
    width: 100%;
    height: auto;
    object-fit: scale-down;
    max-width: 100px;
}

/*Statistic*/

.statistic{
    margin-bottom: 100px;
}

.statistic_photo{
    margin-bottom: 45px;

    position: relative;
    width: 100%;
    height: 720px;
}

.statistic_photo img{
    position: absolute;
    top: 0;
    left: 0;

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

.statistic_photo_content{
    position: relative;
    padding: 40px;
    z-index: 2;
}

.statistic_photo_content svg{
    position: absolute;
    top: 43px;
    left: 40px;
}

.statistic_mobile{
    display: none;
}


.statistic_photo_content_txt{
    position: relative;
    z-index: 3;

    top: 12px;
    left: 16px;

    max-width: 620px;
}

.statistic_photo_content_caption{
    color: #FFF;
    font-size: 32px;
    font-weight: 400;
}

.statistic_photo_content_description{
    margin-top: 13px;

    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.statistic_group{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.statistic_numbers{
    display: flex;
    align-items: flex-end;
    justify-content: center;

    color: #87D454;
    font-size: 80px;
    font-weight: 700;
}

.statistic_numbers span{
    font-size: 36px;
    margin-left: 6px;
    margin-bottom: 12px;
}

.statistic_description{
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.seo_block{
    margin-bottom: 80px;
}

.seo_block_swiper{
    position: relative;
    height: 500px;
    border-radius: 20px;
    background-color: #EFF0F5;
}

.container--service .seo_block_swiper{
    height: 650px;
}

.container--service .service_faq_title{
    margin-bottom: 30px;
}

.seo_block_slide_description{
    margin-bottom: 40px;

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

.seo_block_slide{
    display: flex !important;
    align-items: stretch !important;
}

.seo_block_content_wrap{
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex: 1;
}

.seo_block_img_wrap{
    position: relative;
    margin-left: 40px;
}

.seo_block_text_wrap{
    padding: 35px 20px;
    flex: 1 1 55%;
}

.seo_block_img_wrap{
    overflow: hidden;
    flex: 1 1 45%;
    border-radius: 15px;
    height: 100%;
}

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

.seo_block_subtitle{
    margin-bottom: 25px;
    color: #000;
    font-size: 32px;
    font-weight: 400;
}

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

.seo_block_description a{
    color: #006738;
    text-decoration-line: underline;
}

.seo_block_description ul{
    padding-top: 15px;
    padding-bottom: 15px;
}

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

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

.seo_block_description ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 0.4em;
    height: 0.4em;
    background-color: #87D454;
    border-radius: 50%;
}

.seo_block_counter {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    text-align: right;
}

.seo_block_timer {
    position: absolute;

    bottom: 10px;
    left: 16px;
    width: calc(100% - 32px);

    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    overflow: hidden;
    z-index: 11;
}

.seo_block_timer span {
    display: block;
    height: 100%;
    width: 0%;
    background: #FFF;
    transition: width linear;
}

.seo_block_slider_buttons_wrap{
    position: absolute;

    display: flex;
    bottom: 28px;
    left: 26px;
    z-index: 10;
}

.seo_block_slider_arrow_prev{
    margin-right: 13px;
}

.seo_block_slider_button{
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.seo_block_slider_button:hover .circle {
    fill: #006738;
}

.seo_block_slider_button:hover .arrow {
    stroke: #FFF;
}

.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.swiper-button-disabled:hover {
    opacity: 0.5;
    cursor: not-allowed;
}

.seo_block_swiper .seo_block_pagination{
    position: absolute;
    bottom: 36px;
    z-index: 10;
    left: 140px;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

@media(max-width: 1700px){
    .main_slider_video{
        grid-column: 1 / 11;
    }

    .main_swiper{
        grid-column: span 6;
    }

    .main_slider_card{
        padding-right: 10px;
        grid-column: span 3;
    }

    .main_slider_card_caption{
        padding-right: 60px;
        font-size: 14px;
    }

    .main_slider_card_caption--slider{
        font-size: 26px;
    }

    .category_hotel_card_caption{
        font-size: 18px;
    }

    .main_slider_card_caption svg{
        transform: unset;
        margin-right: 5px;
    }

    .main_slider_card:hover .main_slider_card_svg  svg{
        transform: rotate(45deg) scale(1);
    }

    .statistic_element:not(:last-child){
        margin-right: 10px;
    }

    .statistic_numbers{
        font-size: 55px;
    }

    .statistic_description{
        font-size: 14px;
    }

    .statistic_numbers span{
        margin-left: 0;
        margin-bottom: 6px;
    }

    .seo_block_swiper{
        height: 700px;
    }
}

@media(max-width: 1200px){
    .main_slider{
        width: 100%;
    }

    .main_slider_container{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 80vh 350px 250px;
        row-gap: 20px;
        column-gap: 10px;
        justify-items: center;
    }

    .main_slider_card_img-sm{
        width: 170px;
        height: 170px;
    }

    .main_slider_video{
        margin-top: 20px;

        grid-column: 1 / 3;
        grid-row: unset;
        border-radius: 0;
    }

    .main_swiper{
        grid-column: 1 / 3;
        width: calc(100% - 20px);
    }

    .main_slider_card{
        width: calc(100% - 10px);
        grid-column: unset;
    }

    .main_slider_card:nth-child(3){
        justify-self: end;
    }

    .main_slider_card:nth-child(4){
        justify-self: start;
    }

    .main_slider_for_mobile_line{
        display: block;
    }

    .main_swiper_btn{
        display: block;
    }

    .category_hotel_group{
        flex-direction: column;
    }

    .category_hotel_card{
        margin-right: 0;
        margin-bottom: 20px;
    }

    .category_hotel_card:nth-child(1) .category_hotel_card_content{
        background: rgba(23, 39, 64, 0.80);
    }

    .category_hotel_card:nth-child(2) .category_hotel_card_content{
        background: rgba(0, 56, 54, 0.80);
    }

    .category_hotel_card:nth-child(3) .category_hotel_card_content{
        background: rgba(127, 73, 30, 0.80);
    }

    .category_hotel_card .category_hotel_card_caption{
        color: #FED797;
    }

    .category_hotel_card .category_hotel_card_all_included{
        background: #FED797;
    }

    .category_hotel_card .category_hotel_star{
        fill: #FED797;
    }

    .spa_swiper_content_title{
        max-width: 480px;
        font-size: 25px;
    }

    .spa_swiper_btn{
        margin-top: 15px;
        margin-left: 14px;
        font-size: 12px;
    }

    .medicine_content{
        margin: 40px;
    }

    .medicine_wrapper{
        flex-direction: column;
        height: unset;
        align-items: center;
    }

    .medicine_photo{
        margin-bottom: 40px;
        max-height: 400px;
        max-width: unset;
        width: calc(100% - 80px);
    }

    .medicine_photo img{
        position: relative;
        top: -40px;
    }

    .service_season_slide_wrap{
        grid-template-columns: unset;
        grid-template-rows: 580px;
    }

    .service_season_slide_card--large{
        grid-row: unset;
    }

    .service_season_slide{
        width: unset !important;
    }

    .service_season_text{
        padding-top: 40px;
    }

    .service_season_arrows{
        padding-right: 20px;
        padding-left: 20px;
        width: 100%;
        position: absolute;
        top: 250px;
        right: 0;
        display: flex;
        justify-content: space-between;
    }

    .service_season_arrow{
        position: relative;
        z-index: 5;
    }

    .service_season_arrow .circle{
        stroke: #FFF;
        fill: none;
    }

    .service_arrow:hover .circle{
        fill: none;
    }

    .service_season_arrow .path{
        stroke: #FFF;
    }

    .service_season_slide_wrap-small .service_season_slide_card:nth-child(1) {
        grid-column: unset;
        grid-row: unset;
    }

    .service_season_slide_wrap-small .service_season_slide_card:nth-child(2) {
        grid-column: unset;
        grid-row: unset;
    }

    .service_season_slide--desktop{
        display: none !important;
    }

    .service_season_slide--mobile{
        display: block !important;
        width: 100% !important;
    }

    .cottage_new_images--desktop{
        display: none;
    }

    .cottage_new{
        padding-top: 20px;
        padding-bottom: 20px;
        height: unset;
    }

    .cottage_new_images--mobile{
        position: relative;
        display: block;
        margin-bottom: 25px;
    }

    .cottage_new_description{
        margin-bottom: 25px;
    }

    .cottage_new_img--main{
        width: 100%;
    }

    .cottage_new_images{
        max-width: unset;
    }

    .container--service .seo_block_swiper{
        height: unset;
    }

    .cottage_new_content{
        max-width: unset;
    }

    .cottage_new_wrap{
        justify-content: center;
    }

    .statistic_photo_content_txt{
        left: 7px;
    }

    .statistic_photo_content_caption{
        font-size: 25px;
    }

    .statistic_photo_content_description{
        font-size: 15px;
        max-width: 550px;
    }

    .statistic_photo_content svg {
        width: 560px;
        left: 30px;
    }

    .statistic_group{
        grid-template-columns: repeat(2, 1fr)
    }

    .seo_block_swiper{
        height: 100%;
    }

    .seo_block_content_wrap{
        padding: 0;
        flex-direction: column-reverse;
        flex: unset;
    }

    .seo_block_img_wrap{
        width: 100%;
        height: 310px;
        margin-left: 0;
        flex: unset;
    }


    .seo_block_text_wrap{
        flex: unset;
    }

    .seo_block_slider_buttons_wrap{
        top: 245px;
        bottom: unset;
        left: unset;
        right: 22px;
    }

    .seo_block_slider_arrow_prev {
        margin-right: 6px;
    }

    .seo_block_swiper .seo_block_pagination {
        top: 260px;
        bottom: unset;
        left: 24px;
        color: #FFF;
    }
}

@media(max-width: 768px){
    .container{
        width: calc(100% - 20px);
    }

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

    .main_slider_video_title--content {
        display: flex;
        flex-direction: column;

        left: 23px;
        top: 40px;
        width: calc(100% - 46px);
    }

    .main_slider_video_title--seo {
        margin-bottom: 12px;
        font-size: clamp(14px, 3vw, 18px);
    }

    .main_slider_video_title {
        width: 100%;
        font-size: clamp(18px, 5vw, 36px);
    }

    .main_slider_card_img-sm{
        width: 100px;
        height: 100px;
    }

    .main_slider_card_svg{
        left: 15px;
        bottom: 10px;
    }

    .main_slider_container{
        grid-template-rows: 80vh 350px 160px;
    }

    .main_slider_card_subtitle{
        display: none;
    }

    .main_slider_card_caption{
        padding-left: 15px;
    }

    .main_slider_card_caption--sm{
        padding-right: 20px;
        padding-top: 22px;
        font-size: 15px;
    }

    .main_slider_card_caption--slider{
        font-size: 20px;
    }

    .category_hotel{
        border-top: 1px solid #E4E5EB;
    }

    .spa{
        border-top: 1px solid #E4E5EB;
        margin-bottom: 28px;
    }

    .spa_swiper{
        height: 400px;
    }

    .spa_swiper_content_title{
        margin-top: 6px;
        margin-left: 10px;

        font-size: 20px;
        max-width: 330px;
    }

    .spa_background_desktop{
        display: none;
    }

    .spa_background_mobile{
        display: block;
    }

    .spa_swiper_content{
        top: 15px;
        left: 15px;
    }

    .spa_swiper_button_prev{
        left: 15px;
    }

    .spa_swiper_btn--desktop{
        display: none;
    }

    .spa_swiper_btn--mobile{
        display: flex;
        justify-content: center;
    }

    .spa_swiper_btn p{
        color: #AEA166;
        font-size: 14px;
    }

    .spa_swiper_slide_text{
        left: 20px;
        margin-right: 10px;
    }

    .medicine{
        margin-bottom: 45px;
    }

    .medicine_content{
        margin: 20px 40px 20px;
    }

    .medicine_content_caption{
        font-size: 20px;
    }

    .medicine_content_text{
        font-size: 14px;
    }

    .medicine_content_description{
        font-size: 14px;
        margin-bottom: 20px;
    }

    .medicine_content_group{
        margin-bottom: 25px;
        grid-template-columns: 1fr;
        row-gap: 10px;
    }

    .medicine_content_btn{
        width: 100%;
    }

    .medicine_photo{
        margin-bottom: 15px;
        width: calc(100% - 30px);
    }

    .medicine_photo img {
        top: unset;
    }

    .medicine_photo_link{
        top: 20px;
        left: 20px;
        right: 0;
        justify-content: start;
    }

    .service_season_tabs{
        margin: 18px;
    }

    .service_season_title{
        margin-bottom: 14px;
    }

    .service_season_swiper {
        height: 400px;
    }

    .service_season_slide_wrap {
        grid-template-rows: 400px;
    }

    .child_service{
        border-top: 1px solid #E4E5EB;
    }

    .service_arrows{
        display: none;
    }

    .service_season_arrows{
        display: flex;
        top: 160px;
    }

    .child_service_slide_content_txt{
        display: none;
    }

    .child_service_swiper{
        height: unset;
    }

    .child_service_slide_content_img_wrap{
        height: 300px;
        border-radius: 20px;
    }

    .child_service_slide_content_caption svg{
        margin-top: 0;
    }

    .child_service_slide_content_caption--mobile{
        margin-top: 15px;
        display: flex;
    }

    .news_slider_img{
        height: 280px;
    }

    .news_slider_caption{
        font-size: 18px;
    }

    .news_slider_link{
        display: none;
    }

    .news_slider_all_link{
        font-size: 15px;
        bottom: 0;
        top: unset;
        left: 50%;
        transform: translateX(-50%);
        color: #006738;
    }

    .news_slider{
        border-top: 1px solid #E4E5EB;
    }

    .news_path_color{
        stroke: #006738;
    }

    .cottage_new_content{
        width: 100%;
    }

    .cottage_new_content{
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .cottage_new_title{
        text-align: center;
    }

    .cottage_new_description{
        text-align: center;
    }

    .cottage_new_btns{
        flex-direction: column-reverse;
    }

    .partners{
        margin-bottom: 80px;
    }

    .partners_slider_one{
        height: unset;
        max-height: 550px;
    }

    .partners_slider_wrapper{
        display: flex;
    }

    .partners_slider_wrapper{
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .partners_slide{
        width: unset !important;
        flex-shrink: unset !important;
    }

    .partners_slide{
        margin-top: 20px;
        margin-right: 20px;
    }

    .statistic_photo{
        height: 600px;
    }

    .statistic_photo_content{
        padding: 0;
        max-width: 415px;
    }

    .statistic_photo_content svg{
        top: -30px;
        left: 0;
    }

    .statistic_photo_content_caption{
        font-size: 22px;
    }

    .statistic_photo_content_description{
        padding-right: 10px;
    }

    .statistic_photo_content_txt{
        top: -20px;
        font-size: 14px;
    }

    .statistic_desktop{
        display: none;
    }

    .statistic_mobile{
        display: block;
    }
}

@media(max-width: 415px){
    .main_page_title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .category_hotel_card{
        height: 350px;
    }

    .category_hotel_card_content{
        height: 60px;
        background: rgb(86 86 86 / 25%);
        border: none;
    }

    .category_hotel_card_caption{
        font-size: 14px;
    }

    .category_hotel_card_stars{
        flex-shrink: 0;
    }

    .category_hotel_card_stars svg{
        width: 15px;
    }

    .category_hotel_card_all_included{
        width: 100px;
        font-size: 8px;
    }

    .spa {
        margin-top: 53px;
    }

    .spa_swiper{
        height: 350px;
    }

    .spa_swiper_slide_text{
        margin-right: 10px;
        left: 20px;
        font-size: 15px;
    }

    .container--medicine{
        width: 100%;
    }

    .medicine_content{
        margin: 40px 15px 20px;
    }

    .medicine_photo_link p{
        font-size: 10px;
    }

    .child_service_slide_content_img_wrap{
        height: 250px;
    }

    .child_service_swiper{
        height: 300px;
    }

    .news_slider{
        margin-bottom: 65px;
    }

    .news_slider_swiper{
        height: 390px;
    }

    .news_slider_img{
        height: 250px;
    }

    .cottage_new{
        margin-bottom: 65px;
    }

    .cottage_new_title{
        font-size: 24px;
    }

    .cottage_new_description{
        font-size: 14px;
    }

    .cottage_new_element_text{
        font-size: 14px;
    }

    .statistic_photo_content::before{
        content: "";
        position: absolute;
        top: -32px;
        left: 0;
        width: 100%;
        height: 130px;
        background-color: rgba(0, 56, 54, 0.70);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 10px;
    }

    .statistic_photo_content_caption{
        font-size: 18px;
    }

    .statistic_photo_content_description{
        margin-top: 4px;
        font-size: 12px;
    }

    .statistic_photo_content_txt{
        top: -24px;
    }

    .statistic_photo{
        height: 400px;
    }

    .statistic_mobile{
        display: none;
    }

    .statistic_numbers{
        font-size: 40px;
    }

    .statistic_numbers span{
        font-size: 20px;
    }

    .statistic_description{
        font-size: 12px;
    }
}

@media(max-width: 320px){
    .statistic_group{
        grid-template-columns: 1fr;
    }
}