@charset "UTF-8";

/*----------OTHER----------*/

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

.invisible {
    display: none;
}

img {
    max-width: 100%;
    height: auto;
}

body,
html {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    color: #000;
    font-family: "Montserrat";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    background-color: #fff;
    color: var(--color-1);
}

ul {
    padding-left: 20px;
}

ul li:last-child {
    margin-bottom: 0px;
}

section {
    position: relative;
    overflow: hidden;
}

.swiper-initialized {
    overflow: hidden;
}

#container,
#footer {
    position: relative;
    z-index: 1;
    transition: 0.5s all;
    filter: blur(0px);
}

#price_section .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: fit-content;
    position: static;
    flex-wrap: wrap;
    padding: 2em 0;
}

#price_section .swiper-pagination span {
    width: fit-content;
    padding: 1em;
    font-size: 1em;
    height: fit-content;
    background: #fff;
    border-radius: 2em;
    opacity: 1;
    margin: 0.4em;
}

/*----------/OTHER----------*/
/*----------COLOR----------*/
:root {
    --color-1: #484848;
    --color-2: #91b57f;
    --color-3: #4d6f86;
    --playerBoxHeight: 65vh;
}

/*----------/COLOR----------*/
/*----------FONTS----------*/
@font-face {
    font-family: "Mansalva";
    src: url("/files/assets/fonts/Mansalva-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/files/assets/fonts/Montserrat.ttf");
    font-display: swap;
}

@font-face {
    font-family: "Nothing You Could Do";
    src: url("/files/assets/fonts/NothingYouCouldDo.ttf");
    font-display: swap;
}

@font-face {
    font-family: "Poiret One";
    src: url("/files/assets/fonts/PoiretOne.ttf");
    font-display: swap;
}

h1 {
    font-family: "Poiret One";
    font-weight: 500;
    font-size: 64px;
    margin: 0;
    line-height: 80%;
}

h2 {
    font-family: "Nothing You Could Do";
    font-weight: 100;
    font-size: 54px;
}

h3 {
    font-family: "Poiret One";
    font-weight: 500;
    font-size: 32px;
    margin: 0;
    line-height: 80%;
}

p {
    font-size: 15px;
    line-height: 200%;
}

/*----------/FONTS----------*/
/*----------SCROLL----------*/
::-webkit-scrollbar {
    width: 0px;
}

/*----------/SCROLL----------*/
@keyframes vector-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes vector-rotate-2 {
    0% {
        transform: translate(0%, 0%) rotate(0deg);
    }

    50% {
        transform: translate(0%, 0%) rotate(180deg);
    }

    100% {
        transform: translate(0%, 0%) rotate(360deg);
    }
}

/*-------------------SUBPAGE--------------------*/
/* Общие стили страницы */
#page_content {
    width: 100%;
    margin: 0 auto;
}

#page_content > div {
    padding: 3em 100px;
}

/* Swiper Slider Block */
#page_content .swiper-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

#page_content .swiper-slider .main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

#page_content .swiper-slider .thumbnail-slider {
    display: none;
    gap: 10px;
    margin-top: 10px;
}

#page_content .swiper-slider .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#page_content .swiper-slider .thumbnail:hover {
    transform: scale(1.1);
}

/* Flex Text Block */
#page_content .flex-text {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

#page_content .flex-text .left-text,
#page_content .flex-text .right-text {
    width: 48%;
    padding: 3em;
    background-color: var(--color-3);
    color: white;
    border-radius: 5px;
}

/* Image Slider Block */
#page_content .image-slider {
    display: flex;
    gap: 2em;
    overflow-x: auto;
    padding: 3em 100px;
}

#page_content .image-slider .slide img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Text + Image Blocks */
#page_content .content-blocks {
    display: grid;
    grid-gap: 5em;
    margin: 20px 0;
}

#page_content .content-blocks .block {
    display: flex;
    grid-gap: 3em;
    align-items: center;
}

#page_content .content-blocks .block h3 {
    margin-bottom: 2em;
    line-height: 110%;
}

#page_content .content-blocks .block.reverse {
    flex-direction: row-reverse;
}

#page_content .content-blocks .block-text,
#page_content .content-blocks .block-image {
    width: 50%;
    height: 100%;
}

#page_content .content-blocks .block-image img {
    width: 100%;
    border-radius: 5px;
    height: 100%;
    object-fit: cover;
}

/* Parallax Video Block */
#page_content .parallax-video {
    position: relative;
    height: var(--playerBoxHeight);
    background-size: cover;
    background-position: center;
}

#page_content .parallax-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Plain Text Block */
#page_content .plain-text {
    margin: 20px 0;
    background-color: var(--color-2);
    color: white;
    padding: 100px;
    border-radius: 5px;
}

/* Grid Gallery Block */
#page_content .grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
    gap: 10px;
}

#page_content .grid-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

/*-----------------Winter--------------------*/
.list-count {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    grid-gap: 2em;
}

.accordion {
    display: flex;
    flex-direction: row;
    height: 80vh;
    width: 100vw;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.accordion-item {
    flex: 0.5;
    transition: flex 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    border-bottom: 1px solid #bbb;
}

.accordion-item .text,
.accordion-item .btn {
    display: none;
}

.accordion-item .headline-close {
    display: block;
}

.accordion-item .headline-open {
    display: none;
}

.accordion-item {
    position: relative;
}

.accordion-item .icon {
    position: absolute;
    width: 3em;
    top: 2em;
    left: 50%;
    transform: translate(-50%, 0);
}

.accordion-item.active {
    flex: 4;
}

.accordion-item.active .headline-close {
    display: none;
}

.accordion-item.active .headline-open,
.accordion-item.active .text,
.accordion-item.active .btn {
    display: block;
}

.accordion-item.active .btn-link {
    color: #484848;
    text-decoration: none;
}

.accordion-item.active .btn {
    background: #fff;
    outline: none;
}

.text {
    padding: 2em;
}

.accordion-item-bg {
    position: relative;
    overflow: hidden;
    flex: 1.5;
}

.accordion-item-bg img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    transition: 0.7s;
}

.accordion-item-bg img.active {
    opacity: 1;
}

.accordion-item.summer {
    background: var(--color-2);
    color: #fff;
}

.accordion-item.winter {
    background: var(--color-1);
    color: #fff;
}

/*----------test----------*/
section#superior-hotel {
    padding: 6vw;
    position: relative;
    overflow: hidden;
    /* padding-top: 80vh; */
    /* margin-top: -70vh; */
    z-index: 7;
}

section#superior-hotel h3.sub-headline {
    font-size: 2vw;
    padding-bottom: 1vw;
}

section#superior-hotel img.tree {
    position: absolute;
    height: 60vh;
    top: 0%;
    left: -7%;
    z-index: 1;
    transform: rotateY(180deg) rotate(351deg);
    width: fit-content;
}

section#superior-hotel img.tree.wow.bounceInLef.animated {
    opacity: 0.5;
}

section#superior-hotel .row {
    position: relative;
    z-index: 3;
}

section#superior-hotel .text-bottom {
    padding-left: 2vw;
    padding-top: 2vw;
}

section#superior-hotel .text-bottom ::marker {
    font-size: 1.2rem;
    color: var(--acc3);
}

section#superior-hotel h2.headline-section {
    font-size: 4.5vw;
}

/*----------/test----------*/
.gallery-garten #gallery_section {
    padding-top: 100px;
}

.gallery-garten #gallery_section .gallery {
    flex-direction: row-reverse;
}

.gallery-garten #gallery_section .gallery .gallery-subslider {
    margin-right: 0;
    margin-left: 150px;
}

.gallery-garten #gallery_section .gallery .swiper-button.swiper-button-next {
    display: none;
}

.gallery-garten #gallery_section .txt {
    padding-left: 0;
}

/*----------ELEMENTS----------*/
.review_section {
    margin: 0 auto;
    text-align: center;
    background-color: var(--light-color);
}

.review_section .stars {
    display: flex;
}

.review_section .swiper-slide {
    background: #91b57f;
    color: #fff;
}

.review_section .stars img {
    width: 1em;
}

.review_section .headline {
    width: fit-content;
    margin: 0 auto;
}

.review_section .swiper-wrapper {
    height: fit-content;
    padding: 20px 0;
}

.review_section .wrap_sliders {
    display: flex;
    grid-gap: 2rem;
    /*max-height: 100vh;*/
    min-height: 400px;
    margin-top: 3rem;
    flex-direction: column-reverse;
}

.review_section .wrap_sliders .swiper {
    width: 100%;
    height: auto;
}

.review_section .wrap_sliders .swiper .ava_img {
    max-width: 80px;
    width: 30%;
}

.review_section .wrap_sliders .swiper .ava_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.review_section .wrap_sliders .slider-main {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review_section .wrap_sliders .slider-main .bottom_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-direction: row-reverse;
    align-items: center;
}

.review_section .wrap_sliders .slider-main .info_wrap {
    position: relative;
    width: 10rem;
    height: 3rem;
    z-index: 111;
    margin: 0 0 0 auto;
}

.review_section .wrap_sliders .slider-main .content_wrap {
    display: flex;
    padding: 5rem;
    background-color: var(--base-color);
    color: var(--dark-color);
    border-radius: 8px;
    grid-gap: 1.5rem;
    width: 100%;
    height: 25vw;
}

.review_section .wrap_sliders .slider-main .btn-link {
    width: fit-content;
    position: relative;
    left: 0;
    bottom: 0;
}

.review_section .wrap_sliders .wrap_text {
    text-align: left;
    display: flex;
    flex-direction: column;
    grid-gap: 0.6rem;
}

.review_section .wrap_sliders .wrap_text .date {
    font-weight: 400;
}

.review_section .wrap_sliders .slider-thumbs .swiper-slide {
    align-items: center;
    grid-gap: 1rem;
}

.review_section .wrap_sliders .swiper-slide {
    display: flex;
    justify-content: center;
}

.review_section .wrap_sliders .slider-thumbs {
    width: 100%;
}

.review_section .wrap_sliders .slider-thumbs .swiper-slide {
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.review_section .wrap_sliders .slider-thumbs .swiper-slide:hover,
.review_section .wrap_sliders .slider-thumbs .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
    transform: scale(1.1);
}

.review_section .wrap_sliders .slider-thumbs .swiper-scrollbar {
    background-color: var(--dark-color);
}

.review_section .wrap_sliders .slider-thumbs .swiper-scrollbar .swiper-scrollbar-drag {
    background-color: var(--complementary-color);
    height: 12px;
    top: -4px;
    cursor: grab;
}

.review_section .wrap_sliders .swiper-button-prev,
.review_section .wrap_sliders .swiper-button-next {
    color: var(--complementary-color);
}

.review_section .wrap_sliders .swiper-pagination {
    width: fit-content;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: fit-content;
}

.review_section .wrap_sliders .swiper-pagination span {
    font-weight: 400;
}

.review_section .wrap_sliders .swiper-pagination .swiper-pagination-current {
    font-size: 1.3rem;
}

.review_section .wrap_sliders .swiper-pagination .swiper-pagination-total {
    font-size: 1.5rem;
}

.bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.btn {
    padding: 20px 40px;
    background-color: var(--color-3);
    color: #fff;
    border-radius: 100px;
    display: flex;
    width: max-content;
    cursor: pointer;
    transition: 0.5s all;
    position: relative;
    outline: 2px solid var(--color-3);
}

.btn:hover {
    background-color: #fff;
    color: var(--color-3);
    font-weight: 600;
}

.btn.form_btn {
    position: fixed;
    bottom: -75px;
    z-index: 3;
    left: 50%;
    transform: translate(-50%);
}

.btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.scrolled .btn.form_btn {
    bottom: 25px;
}
.popup.activity_popup {
    width: 50%;
    left: 30%;
}
.popup.activity_popup iframe {
    width: 360px;
    height: 200px;
}
.popup {
    position: fixed;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    padding: 50px 100px;
    background-color: var(--color-2);
    z-index: 14;
    height: fit-content;
    max-height: 80vh;
    opacity: 0;
    pointer-events: none;
    transition: 0.75s all;
    display: flex;
    flex-direction: column;
    transition-delay: 0s;
    border-radius: 20px;
}

.popup#menu {
    left: 50px;
    transform: translate(0, -50%);
    background-color: transparent;
    padding: 0px;
    display: flex;
    flex-direction: column;
    height: 100%;
    grid-gap: 10px;
    width: 300px;
}

.popup#menu .scroll_point {
    height: 100%;
    display: flex;
    color: #fff;
    text-decoration: none;
    background-color: var(--color-2);
    align-items: center;
    border-radius: 10px;
    padding-left: 25px;
    font-size: 18px;
    transition: 0.5s all;
    cursor: pointer;
}

.popup#menu .scroll_point:hover {
    background-color: var(--color-3);
    padding-left: 35px;
}

.popup#form {
    padding: 50px;
    width: 40vw;
}

.popup#form .popup_title {
    padding-right: 0;
    text-align: center;
    margin-bottom: 25px;
    height: auto;
    font-size: 48px;
}

.popup#form .formbody {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 10px;
    justify-content: center;
}

.popup#form .formbody .widget {
    position: relative;
    width: calc(50% - 5px);
}

.popup#form .formbody .widget.full {
    width: 100%;
}

.popup#form .formbody .widget label {
    position: absolute;
    top: 5px;
    left: 30px;
    transform: scale(1);
    transition: 0.5s all;
    opacity: 0.5;
    font-size: 10px;
    pointer-events: none;
    color: var(--color-3);
    font-weight: 500;
}

.popup#form .formbody .widget label:has(+ input:placeholder-shown) {
    top: 16px;
    font-size: 16px;
    opacity: 1;
}

.popup#form .formbody .widget label:has(+ textarea:placeholder-shown) {
    top: 16px;
    font-size: 16px;
    opacity: 1;
}

.popup#form .formbody .widget input,
.popup#form .formbody .widget textarea,
.popup#form .formbody .widget select {
    width: 100%;
    height: 100%;
    resize: none;
    color: var(--color-3);
    background-color: white;
    font-size: 16px;
    font-weight: 500;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 15px 30px;
    outline: none;
    border-radius: 5px;
}

.popup#form .formbody .widget input::placeholder,
.popup#form .formbody .widget textarea::placeholder,
.popup#form .formbody .widget select::placeholder {
    opacity: 0;
}

.popup#form .formbody .widget.widget-textarea {
    height: 100%;
}

.popup#form .formbody .widget:focus-within label {
    top: 5px;
    font-size: 10px;
    opacity: 0.5;
}

.popup#form .formbody .widget:focus-within label:has(+ input:placeholder-shown) {
    top: 5px;
    font-size: 10px;
    opacity: 0.5;
}

.popup#form .formbody .widget:focus-within label:has(+ textarea:placeholder-shown) {
    top: 5px;
    font-size: 10px;
    opacity: 0.5;
}

.popup#form .formbody .widget:hover label {
    opacity: 0.6;
}

.popup#form .formbody .widget:hover label:has(+ input:placeholder-shown) {
    opacity: 0.6;
}

.popup#form .formbody .widget:hover label:has(+ textarea:placeholder-shown) {
    opacity: 0.6;
}

.popup#form .formbody .btn {
    padding: 10px 80px;
    margin-top: 15px;
}

.popup#form .formbody h4 {
    color: #fff;
    font-weight: 400;
    transition: 0.5s all;
    margin-top: 25px;
}

.popup.open {
    opacity: 1;
    pointer-events: all;
    transition-delay: 0.8s;
    top: 50%;
}

.popup.open .popup_title {
    transition-delay: 1.4s;
    opacity: 1;
    left: 0px;
}

.popup.open .popup_txt {
    transition-delay: 1.6s;
    opacity: 1;
    left: 0px;
}

.popup.open .popup_close {
    transition-delay: 1.8s;
    transform: scale(1);
}

.popup .popup_title {
    color: #fff;
    height: 50px;
    margin-bottom: 25px;
    position: relative;
    opacity: 0;
    left: -50px;
    transition: 0.75s all;
    transition-delay: 0s;
}

.popup .popup_txt {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 25px;
    position: relative;
    opacity: 0;
    left: -50px;
    transition: 0.75s all;
    transition-delay: 0s;
}

.popup .popup_txt::-webkit-scrollbar-thumb {
    background-color: #759963;
    border-radius: 10px;
}

.popup .popup_txt::-webkit-scrollbar {
    width: 5px;
    background-color: #fff;
    border-radius: 10px;
}

.popup .popup_txt h3 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.popup .popup_txt a {
    color: #fff;
}

.popup .popup_close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: 0.75s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform: scale(0);
    transition-delay: 0s;
}

.popup .popup_close:hover {
    transform: scale(1);
}

.popup .popup_close:hover:before {
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.5;
}

.popup .popup_close:hover:after {
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 0.5;
}

.popup .popup_close .vector {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    background-image: url(/files/design_files/vector/close_vector_1.svg);
    background-size: contain;
    width: 115px;
    height: 115px;
    filter: brightness(100);
    background-repeat: no-repeat;
    background-position: center;
    animation: 40s ease-in-out infinite vector-rotate;
}

.popup .popup_close:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 100%;
    height: 1.4px;
    background-color: #fff;
    transition: 0.5s all;
    opacity: 1;
}

.popup .popup_close:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 100%;
    height: 1.4px;
    background-color: #fff;
    transition: 0.5s all;
    opacity: 1;
}

.popup_bg {
    position: fixed;
    z-index: 13;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #213418;
    opacity: 0.75;
    pointer-events: all;
    bottom: -100vh;
    transition: 0.75s all;
    transition-delay: 0.8s;
}

.popup_open .popup_bg {
    bottom: 0vh;
    transition-delay: 0s;
}

/*----------/ELEMENTS----------*/
/*----------HEADER----------*/
.icon-group {
    position: fixed;
    z-index: 30;
    top: 25px;
    max-height: 70px;
    height: 100%;
    width: auto;
    left: 25px;
}

.icon-group .list-icon {
    display: flex;
    gap: 1rem;
}

.logo.content-image {
    position: fixed;
    z-index: 30;
    top: 25px;
    max-height: 70px;
    height: 100%;
    width: auto;
    left: 25px;
    left: 50%;
    transform: translate(-50%, 0);
}

.logo.content-image figure {
    width: 100%;
    height: 100%;
}

.logo.content-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popup_open .burger .line {
    background-color: #fff !important;
}

.popup_open .burger .line:nth-child(1) {
    top: 50%;
    transform: translate(0, -50%) rotate(-45deg);
}

.popup_open .burger .line:nth-child(2) {
    width: 0%;
}

.popup_open .burger .line:nth-child(3) {
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
}

/* .popup_open .burger:before {
	filter: brightness(100) !important;
} */

.popup_open .burger:hover .line {
    background-color: #fff;
}

.popup_open .burger:hover .line:nth-child(1) {
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
}

.popup_open .burger:hover .line:nth-child(3) {
    top: 50%;
    transform: translate(0, -50%) rotate(-45deg);
}

/* .popup_open .burger:hover:before {
	filter: brightness(100);
} */

.burger {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 25px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger:hover .line {
    opacity: 0.5;
}

.burger:hover .line:nth-child(1) {
    top: 25px;
}

.burger:hover .line:nth-child(3) {
    top: 0px;
}

.burger.blue .line {
    background-color: var(--color-3);
}

.burger.blue:before {
    filter: brightness(1);
}

.burger:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background-image: url("/files/design_files/logos/menu.svg");
    background-size: contain;
    background-repeat: no-repeat;
    animation: 40s ease-in-out infinite vector-rotate;
    transition: 0.5s all;
}

.burger .line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    display: flex;
    min-height: 2px;
    max-height: 2px;
    transition: 0.5s all;
}

.burger .line:nth-child(1) {
    position: absolute;
    top: 0px;
    left: 0;
    transform: translate(0, 0) rotate(0deg);
}

.burger .line:nth-child(2) {
    position: absolute;
    top: 12.5px;
    left: 50%;
    transform: translate(-50%, 0) rotate(0deg);
}

.burger .line:nth-child(3) {
    position: absolute;
    top: 25px;
    left: 0;
    transform: translate(0, 0) rotate(0deg);
}

/*----------/HEADER----------*/
/*----------MAIN_SECTION----------*/
SECTION#main_section {
    height: 100vh;
}

SECTION#main_section .logo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/files/design_files/logos/new/image_with_star_big.svg");
    background-repeat: no-repeat;
    background-position: center;
    /*background-attachment: fixed;*/
    background-size: 75%;
}

SECTION#main_section .logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/files/design_files/logos/new/image_with_shadow.svg");
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(2px);
    z-index: -1;
    transform: scale(1.015);
    opacity: 0.8;
}

/*----------/MAIN_SECTION----------*/
/*----------WELCOME_SECTION----------*/
SECTION#welcome_section {
    padding: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

SECTION#welcome_section .logo {
    width: 100%;
    margin: 50px 0;
}

SECTION#welcome_section .logo img {
    width: 250px;
}

SECTION#welcome_section .txt {
    width: 50%;
}

SECTION#welcome_section .txt h1 {
    color: var(--color-2);
}

SECTION#welcome_section .txt h2 {
    color: var(--color-2);
    margin: 25px 0 10px 0;
}

SECTION#welcome_section .img img {
    height: 0px;
    min-height: calc(100% - 100px);
    border-radius: 10px;
}

SECTION#welcome_section .playerBox_wrap {
    padding-left: 100px;
    margin: 0 auto;
}

SECTION#welcome_section .playerBox_wrap .playerBox {
    position: relative;
    max-height: var(--playerBoxHeight);
    height: var(--playerBoxHeight);
    padding-left: 40px;
}

SECTION#welcome_section .playerBox_wrap .playerBox .item-slide {
    max-width: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    height: 65vh !important;
}

SECTION#welcome_section .playerBox_wrap .playerBox .swiper-nav {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

SECTION#welcome_section .playerBox_wrap .playerBox .swiper-nav .swiper-button {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    background-image: url("/files/design_files/icons/arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 60px;
    display: flex;
    margin: 0;
    opacity: 1;
    transition: 0.5s all;
    cursor: pointer;
}

SECTION#welcome_section .playerBox_wrap .playerBox .swiper-nav .swiper-button:hover {
    opacity: 0.5;
}

SECTION#welcome_section .playerBox_wrap .playerBox .swiper-nav .swiper-button.swiper-button-prev {
    transform: scale(-1);
}

SECTION#welcome_section .playerBox_wrap .playerBox .swiper-nav .swiper-button:after {
    content: none;
}

SECTION#welcome_section .playerBox_wrap .playerBox .swiper-nav .swiper-pagination {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    height: fit-content;
    grid-gap: 10px;
    transform: none;
    margin-top: 15px;
    width: 30px;
    align-items: center;
}

SECTION#welcome_section .playerBox_wrap .playerBox .swiper-nav .swiper-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    width: 15px;
    height: 15px;
    background-color: var(--color-3);
    opacity: 0.5;
    cursor: pointer;
    transition: 0.5s all;
    pointer-events: all;
}

SECTION#welcome_section .playerBox_wrap .playerBox .swiper-nav .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--color-1);
}

SECTION#welcome_section .playerBox_wrap .playerBox .swiper-nav .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    pointer-events: none;
}

SECTION#welcome_section .playerBox_wrap video {
    max-width: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

/*----------/WELCOME_SECTION----------*/
/*----------ACTIVITY_SECTION----------*/
SECTION#activities_section {
    background-color: var(--color-2);
    padding: 100px;
    min-height: 100vh;
}

SECTION#activities_section:before {
    content: "";
    position: absolute;
    bottom: 100px;
    right: 100px;
    width: 500px;
    height: 250px;
    background-image: url("/files/design_files/logos/logo.png");
    background-size: contain;
    z-index: 0;
    opacity: 0.25;
    background-position: center;
    background-repeat: no-repeat;
}

SECTION#activities_section .activities {
    display: flex;
    flex-direction: row;
}

SECTION#activities_section .activity {
    position: relative;
    z-index: 1;
    width: 0vw;
    overflow: hidden;
    transition: 0.5s all;
    transform: scale(0);
    max-height: 0px;
}

SECTION#activities_section .activity.open {
    width: 100vw;
    transform: scale(1);
    max-height: 1000vh;
}

SECTION#activities_section .activity .left_side {
    width: 60%;
}

SECTION#activities_section .activity .left_side .activity_text {
    color: #fff;
    margin-bottom: 50px;
}

SECTION#activities_section .activity .left_side .points {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    grid-gap: 15px 0px;
}

SECTION#activities_section .activity .left_side .points .point {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
    cursor: pointer;
    transition: 0.5s all;
}

SECTION#activities_section .activity .left_side .points .point:after {
    content: "";
    position: relative;
    background-image: url("/files/design_files/icons/arrow.svg");
    width: 30px;
    display: flex;
    height: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    left: 0;
    transition: 0.5s all;
}

SECTION#activities_section .activity .left_side .points .point:hover {
    opacity: 0.5;
}

SECTION#activities_section .activity .left_side .points .point:hover:after {
    left: 7.5px;
}

SECTION#activities_section .activity_nav {
    margin-top: 50px;
    color: #fff;
    grid-gap: 15px;
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 100px;
}

SECTION#activities_section .activity_nav .activity_btn {
    opacity: 1;
    pointer-events: all;
    cursor: pointer;
    transition: 0.5s;
}

SECTION#activities_section .activity_nav .activity_btn.open {
    opacity: 0.5;
    pointer-events: none;
}

SECTION#activities_section .activity_nav .activity_btn:hover {
    opacity: 0.75;
}

section.activities_section {
    overflow: visible;
}

section.activities_section .activities_list {
    overflow: visible;
}

section.activities_section .elementHeadline {
    color: white;
    margin-bottom: 5rem;
}

section.activities_section .elementHeadline h2 {
    font-family: inherit;
    line-height: 1;
    font-size: 10rem;
    font-weight: 400;
}

section.activities_section .elementHeadline h2 strong {
    font-size: 0.5em;
    display: block;
    font-weight: 700;
    font-family: "Mansalva";
    text-align: right;
}

section.activities_section .activities_item {
    display: flex;
    grid-gap: 10%;
    padding: 100px;
    overflow: hidden;
    /*& > div {*/
    /*    opacity: 0;*/
    /*    visibility: hidden;*/
    /*    transition: 650ms;*/
    /*    transition-property: opacity, visibility;*/
    /*}*/
}

section.activities_section .activities_item:nth-child(odd) {
    background: var(--color-2);
}

section.activities_section .activities_item:nth-child(even) {
    background: var(--color-1);
    color: #fff;
}

section.activities_section .swiper-slide:nth-child(even) .content_wrapper .activity-list .activity-item::after {
    filter: brightness(0) invert(1);
}
.media-swiper {
    height: 70vh;
}
.media-swiper .swiper-button-next:after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(/files/design_files/icons/arrow-2.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(100);
}
.media-swiper .swiper-button-prev:after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(/files/design_files/icons/arrow-2.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(100);
}
.media-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: var(--color-2);
    z-index: 2;
    display: flex;
    position: absolute;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
    left: auto;
    right: 50%;
    bottom: 0;
    top: auto;
    transform: translate(50%, 0) rotate(90deg);
}
.media-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: var(--color-2);
    z-index: 2;
    display: flex;
    position: absolute;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
    left: auto;
    right: 50%;
    top: 0;
    transform: translate(50%, 50%) rotate(270deg);
}
.media-swiper .swiper-pagination {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    height: fit-content;
    grid-gap: 10px;
    align-items: center;
    transform: translate(0, -50%);
    display: none !important;
}
.media-swiper .swiper-pagination-bullet-active {
    opacity: 1 !important;
    pointer-events: none;
}
.media-swiper .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: var(--color-3);
    opacity: 0.5;
    cursor: pointer;
    pointer-events: all;
    transition: 0.5s;
    margin: 0px !important;
}
section.activities_section .swiper-slide.swiper-slide-active > div {
    opacity: 1;
    visibility: visible;
}

section.activities_section .swiper-slide .content_wrapper {
    flex: 2;
}

section.activities_section .swiper-slide .content_wrapper .buttonList {
    display: flex;
    grid-gap: 3rem;
    margin-top: 3rem;
}

section.activities_section .swiper-slide .content_wrapper .buttonList .activity-button {
    color: white;
    border: none;
    background: transparent;
    text-decoration: underline;
    font-family: "Nothing You Could Do";
    font-size: 2rem;
    cursor: pointer;
}

section.activities_section .swiper-slide .content_wrapper .activity-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 1.5rem 5rem;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 1rem;
}

section.activities_section .swiper-slide .content_wrapper .activity-list .activity-item {
    display: flex;
    grid-gap: 1rem;
    justify-content: space-between;
    transition: 650ms color;
    pointer-events: none;
}

section.activities_section .swiper-slide .content_wrapper .activity-list .activity-item h4 {
    pointer-events: all;
    cursor: pointer;
}

section.activities_section .swiper-slide .content_wrapper .activity-list .activity-item:hover {
    color: white;
}

section.activities_section .swiper-slide .content_wrapper .activity-list .activity-item:hover::after {
    filter: brightness(0) invert(1);
}

section.activities_section .swiper-slide .content_wrapper .activity-list .activity-item::after {
    content: "";
    background-image: url(/files/design_files/icons/arrow.svg);
    background-size: contain;
    height: 1em;
    aspect-ratio: 41/16;
    transition: 650ms filter;
    display: inline-block;
    pointer-events: all;
    cursor: pointer;
}

section.activities_section .swiper-slide .media_wrapper {
    /*flex: 1;*/
    /*transform: translateY(-23%);*/
    border-radius: 35px;
    overflow: hidden;
    display: flex;
}

section.activities_section .swiper-slide .media_wrapper img,
section.activities_section .swiper-slide .media_wrapper video {
    object-fit: cover;
    border-radius: 35px;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 75vh;
}

/*----------/ACTIVITY_SECTION----------*/
/*----------PRICE_SECTION----------*/
SECTION#price_section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 100px;
    background-color: var(--color-2);
}

SECTION#price_section:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/files/design_files/logos/logo_green.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%;
    z-index: -1;
    opacity: 0.25;
}

SECTION#price_section .txt {
    width: 40%;
    margin-bottom: 100px;
    color: #fff;
}

SECTION#price_section .txt h1 {
    margin-bottom: 25px;
}

SECTION#price_section .txt .btn {
    left: 50%;
    transform: translate(-50%);
    margin-top: 25px;
}

SECTION#price_section .right_side {
    width: calc(60% - 100px);
    position: relative;
    margin-left: 100px;
    background-color: #fff;
    border-radius: 15px;
    padding: 50px;
}

SECTION#price_section .right_side:after {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 100px;
    height: 100px;
    background-image: url("/files/design_files/vector/price_vector.svg");
    background-size: contain;
    background-repeat: no-repeat;
    animation: 40s ease-in-out infinite vector-rotate-2;
    z-index: 3;
}

SECTION#price_section .right_side.open .img {
    opacity: 0;
    pointer-events: none;
}

SECTION#price_section .right_side .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 2;
    pointer-events: all;
    transition: 0.5s all;
    border-radius: 15px;
    overflow: hidden;
}

SECTION#price_section .right_side .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

SECTION#price_section .right_side .price-slider {
    height: 0px;
    min-height: 100%;
}

SECTION#price_section .right_side .price-slider .price {
    color: var(--color-1);
    display: flex;
    flex-direction: column;
}

SECTION#price_section .right_side .price-slider .price .price_title {
    margin-bottom: 25px;
    color: var(--color-2);
}

SECTION#price_section .right_side .price-slider .price .text {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0px;
    position: relative;
    width: 100%;
    padding-right: 25px;
}

SECTION#price_section .right_side .price-slider .price .text::-webkit-scrollbar-thumb {
    background-color: #759963;
    border-radius: 10px;
}

SECTION#price_section .right_side .price-slider .price .text::-webkit-scrollbar {
    width: 5px;
    background-color: var(--color-2);
    border-radius: 10px;
}

SECTION#price_section .right_side .price-slider .price .text table {
    width: 100% !important;
    height: fit-content !important;
}

SECTION#price_section .right_side .price-slider .price .text table tr {
    width: 100% !important;
    height: fit-content !important;
    display: flex;
    flex-direction: row;
    border-bottom: 2px solid var(--color-2);
    padding: 5px 0px;
}

SECTION#price_section .right_side .price-slider .price .text table tr td {
    width: 100% !important;
    height: fit-content !important;
}

SECTION#price_section .right_side .price-slider .price .text table tr td strong {
    color: var(--color-2);
}

SECTION#price_section .right_side .swiper-nav {
    position: absolute;
    bottom: 15px;
    right: 50px;
    display: flex;
    flex-direction: row;
    grid-gap: 10px;
}

SECTION#price_section .right_side .swiper-nav .swiper-button {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0;
    background-image: url("/files/design_files/icons/arrow_gr.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    opacity: 1;
    transition: 0.5s all;
}

SECTION#price_section .right_side .swiper-nav .swiper-button:hover {
    opacity: 0.5;
}

SECTION#price_section .right_side .swiper-nav .swiper-button.swiper-button-prev {
    transform: scale(-1);
}

SECTION#price_section .right_side .swiper-nav .swiper-button:after {
    content: none !important;
}

/*----------/PRICE_SECTION----------*/
/*----------WELLNESS_SECTION----------*/
.gray SECTION#wellness_section {
    background-color: var(--color-1);
    color: #fff;
}

.gray SECTION#wellness_section .wellness_title {
    color: #fff !important;
}

.gray SECTION#wellness_section .swiper-pagination,
.gray SECTION#wellness_section .wellness_vector {
    filter: brightness(100) !important;
}

.gray SECTION#wellness_section .wellness-slider .swiper-button {
    background-image: url(/files/design_files/icons/arrow_white.png) !important;
}

SECTION#wellness_section {
    padding: 100px;
}

SECTION#wellness_section .wellness-slider {
    position: relative;
    overflow: visible;
}

SECTION#wellness_section .wellness-slider .swiper-nav {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    grid-gap: 15px;
}

SECTION#wellness_section .wellness-slider .swiper-nav .swiper-button {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0;
    background-image: url("/files/design_files/icons/arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
    opacity: 1;
    transition: 0.5s all;
}

SECTION#wellness_section .wellness-slider .swiper-nav .swiper-button:hover {
    opacity: 0.5;
}

SECTION#wellness_section .wellness-slider .swiper-nav .swiper-button.swiper-button-prev {
    transform: rotate(90deg);
}

SECTION#wellness_section .wellness-slider .swiper-nav .swiper-button.swiper-button-next {
    transform: rotate(-90deg);
}

SECTION#wellness_section .wellness-slider .swiper-nav .swiper-button:after {
    content: none;
}

SECTION#wellness_section .wellness-slider .swiper-pagination {
    position: absolute;
    top: 15px;
    right: 0;
    left: auto;
    display: flex;
    flex-direction: row;
    width: fit-content;
    height: fit-content;
    grid-gap: 10px;
}

SECTION#wellness_section .wellness-slider .swiper-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    width: 15px;
    height: 15px;
    background-color: var(--color-3);
    opacity: 0.5;
    cursor: pointer;
    transition: 0.5s all;
    pointer-events: all;
}

SECTION#wellness_section .wellness-slider .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--color-1);
}

SECTION#wellness_section .wellness-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    pointer-events: none;
}

SECTION#wellness_section .wellness {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

SECTION#wellness_section .wellness.swiper-slide-active .wellness_vector {
    opacity: 1;
}

SECTION#wellness_section .wellness .wellness_vector {
    position: absolute;
    top: 105px;
    right: -45px;
    width: 100px;
    height: 100px;
    animation: 40s ease-in-out infinite vector-rotate-2;
    z-index: 3;
    pointer-events: none;
    transition: 0.5s all;
    opacity: 0;
}

SECTION#wellness_section .wellness .wellness_title {
    width: 100%;
    text-align: center;
    color: var(--color-3);
    padding: 0 100px;
    margin-bottom: 100px;
    pointer-events: none;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

SECTION#wellness_section .wellness .wellness_txt {
    width: 40%;
}

SECTION#wellness_section .wellness .wellness-img-slider {
    width: calc(60% - 100px);
    margin-left: 100px;
    min-height: 50vh;
    max-height: 80vh;
    position: relative;
}

SECTION#wellness_section .wellness .wellness-img-slider .swiper-wrapper {
    height: 0px;
    min-height: 100%;
}

SECTION#wellness_section .wellness .wellness-img-slider .swiper-wrapper .wellnes_img {
    border-radius: 15px;
    overflow: hidden;
}

SECTION#wellness_section .wellness .wellness-img-slider .swiper-wrapper .wellnes_img img,
SECTION#wellness_section .wellness .wellness-img-slider .swiper-wrapper .wellnes_img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

SECTION#wellness_section .wellness .wellness-img-slider .swiper-img-nav {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    grid-gap: 2px;
}

SECTION#wellness_section .wellness .wellness-img-slider .swiper-img-nav .swiper-img-button {
    width: 40px;
    height: 40px;
    background-color: var(--color-2);
    z-index: 2;
    display: flex;
    position: relative;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
}

SECTION#wellness_section .wellness .wellness-img-slider .swiper-img-nav .swiper-img-button:hover {
    background-color: var(--color-3);
}

SECTION#wellness_section .wellness .wellness-img-slider .swiper-img-nav .swiper-img-button.swiper-img-button-prev {
    transform: scale(-1);
}

SECTION#wellness_section .wellness .wellness-img-slider .swiper-img-nav .swiper-img-button:after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url("/files/design_files/icons/arrow-2.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(100);
}

SECTION#wellness_section .wellness-icon-slider {
    margin-top: 50px;
    width: calc(100% - 200px);
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

SECTION#wellness_section .wellness-icon-slider .icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: default;
}

SECTION#wellness_section .wellness-icon-slider .icon .icon_img {
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
    min-width: 60px;
    min-height: 60px;
    padding: 15px;
    background-color: var(--color-2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

SECTION#wellness_section .wellness-icon-slider .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

SECTION#wellness_section .wellness-icon-slider .icon .icon_txt {
    font-family: "Poiret One";
    font-weight: 500;
    font-size: 22px;
    margin: 0;
    line-height: 80%;
    color: var(--color-3);
    margin-left: 15px;
    word-break: break-word;
}

SECTION#wellness_section .wellness-icon-slider .swiper-button {
    color: var(--color-3);
    font-size: 12px;
    opacity: 1;
    transition: 0.5s all;
}

SECTION#wellness_section .wellness-icon-slider .swiper-button:hover {
    opacity: 0.5;
}

SECTION#wellness_section .wellness-icon-slider .swiper-button:after {
    font-size: 18px;
    font-weight: 800;
    pointer-events: none;
}

SECTION#wellness_section .wellness-icon-slider .swiper-button.swiper-button-prev {
    left: 0;
}

SECTION#wellness_section .wellness-icon-slider .swiper-button.swiper-button-next {
    right: 0;
}

/*----------/WELLNESS_SECTION----------*/
/*----------VIDEO_SECTION----------*/
.video_section {
    min-height: 90vh;
    position: relative;
    display: flex;
    padding: 100px;
    justify-content: flex-start;
    align-items: flex-end;
}

.video_section .video_txt {
    position: relative;
    z-index: 3;
    color: #fff;
}

.video_section .content-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.video_section .content-player figure {
    width: 100%;
    height: 100%;
    display: flex;
}

.video_section .content-player figure video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*----------/VIDEO_SECTION----------*/
/*----------ANREISE_SECTION----------*/
SECTION#anreise_section {
    padding: 100px;
    display: flex;
    flex-direction: row;
    padding-top: 0px;
}

SECTION#anreise_section .left_side {
    width: calc(50% - 100px);
    margin-right: 100px;
    margin-top: 100px;
}

SECTION#anreise_section .left_side .anreise-slider {
    height: 0px;
    min-height: 100%;
    padding-right: 50px;
    position: relative;
}

SECTION#anreise_section .left_side .anreise-slider .anreise_img {
    border-radius: 15px;
    overflow: hidden;
}

SECTION#anreise_section .left_side .anreise-slider .anreise_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
SECTION#anreise_section .left_side .anreise-slider .anreise_img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

SECTION#anreise_section .left_side .anreise-slider .swiper-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

SECTION#anreise_section .left_side .anreise-slider .swiper-nav .swiper-button {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    background-image: url("/files/design_files/icons/arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 60px;
    display: flex;
    margin: 0;
    opacity: 1;
    transition: 0.5s all;
    cursor: pointer;
}

SECTION#anreise_section .left_side .anreise-slider .swiper-nav .swiper-button:hover {
    opacity: 0.5;
}

SECTION#anreise_section .left_side .anreise-slider .swiper-nav .swiper-button.swiper-button-prev {
    transform: scale(-1);
}

SECTION#anreise_section .left_side .anreise-slider .swiper-nav .swiper-button:after {
    content: none;
}

SECTION#anreise_section .left_side .anreise-slider .swiper-nav .swiper-pagination {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    height: fit-content;
    grid-gap: 10px;
    transform: none;
    margin-top: 15px;
    width: 30px;
    align-items: center;
}

SECTION#anreise_section .left_side .anreise-slider .swiper-nav .swiper-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    width: 15px;
    height: 15px;
    background-color: var(--color-3);
    opacity: 0.5;
    cursor: pointer;
    transition: 0.5s all;
    pointer-events: all;
}

SECTION#anreise_section .left_side .anreise-slider .swiper-nav .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--color-1);
}

SECTION#anreise_section .left_side .anreise-slider .swiper-nav .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    pointer-events: none;
}

SECTION#anreise_section .right_side {
    width: 50%;
}

SECTION#anreise_section .right_side .img {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 50px;
}

SECTION#anreise_section .right_side .txt h1 {
    color: var(--color-3);
    margin-bottom: 50px;
}

/*----------/ANREISE_SECTION----------*/
/*----------GALLERY_SECTION----------*/
SECTION#gallery_section {
    padding: 100px;
    padding-top: 0px;
}

SECTION#gallery_section .gallery {
    display: flex;
    flex-direction: row;
}

SECTION#gallery_section .gallery .gallery-subslider {
    width: calc(50% - 150px);
    margin-right: 150px;
    height: 400px;
    padding: 0 100px;
    position: relative;
}

SECTION#gallery_section .gallery .gallery-subslider .gallery_img {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--color-3);
    transition: 0.5s all;
    cursor: pointer;
}

SECTION#gallery_section .gallery .gallery-subslider .gallery_img.swiper-slide-thumb-active {
    border: 4px solid var(--color-2);
    cursor: default;
}

SECTION#gallery_section .gallery .gallery-subslider .gallery_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

SECTION#gallery_section .gallery .gallery-subslider .swiper-pagination {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    height: fit-content;
    grid-gap: 10px;
    align-items: center;
    transform: translate(0, -50%);
}

SECTION#gallery_section .gallery .gallery-subslider .swiper-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    width: 15px;
    height: 15px;
    background-color: var(--color-3);
    opacity: 0.5;
    cursor: pointer;
    transition: 0.5s all;
    pointer-events: all;
}

SECTION#gallery_section .gallery .gallery-subslider .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--color-1);
}

SECTION#gallery_section .gallery .gallery-subslider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    pointer-events: none;
}

SECTION#gallery_section .gallery .gallery-subslider .swiper-button {
    position: absolute;
    left: auto;
    bottom: auto;
    top: 50%;
    transform: translate(0, -50%);
    width: fit-content;
    height: fit-content;
    color: var(--color-3);
    opacity: 1;
    transition: 0.5s all;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

SECTION#gallery_section .gallery .gallery-subslider .swiper-button:hover {
    opacity: 0.5;
}

SECTION#gallery_section .gallery .gallery-subslider .swiper-button:after {
    font-size: 24px;
    font-weight: 800;
}

SECTION#gallery_section .gallery .gallery-slider {
    width: 50%;
    height: 400px;
}

SECTION#gallery_section .gallery .gallery-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

SECTION#gallery_section .txt {
    padding: 50px 0px 0px 100px;
}

/*----------/GALLERY_SECTION----------*/
/*----------ANREISE_SECTION----------*/
SECTION#arrival_section {
    padding: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 50px 100px;
}

SECTION#arrival_section h1.title {
    width: 100%;
    color: var(--color-3);
}

SECTION#arrival_section .left_side,
SECTION#arrival_section .right_side {
    width: calc(50% - 50px);
}

SECTION#arrival_section .left_side .txt,
SECTION#arrival_section .right_side .txt {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

SECTION#arrival_section .left_side .txt p img,
SECTION#arrival_section .right_side .txt p img {
    width: 200px;
}

SECTION#arrival_section .left_side .images,
SECTION#arrival_section .right_side .images {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    grid-gap: 50px;
}

SECTION#arrival_section .left_side .images .img,
SECTION#arrival_section .right_side .images .img {
    border-radius: 15px;
    overflow: hidden;
}

SECTION#arrival_section img {
    width: 100%;
}
/*----------/ANREISE_SECTION----------*/
/*----------FOOTER_SECTION----------*/
#footer {
    z-index: 4;
}

SECTION#footer_section .infos {
    display: flex;
    flex-direction: row;
    background-color: var(--color-2);
    padding: 50px 100px;
    justify-content: space-between;
}

SECTION#footer_section .infos .info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

SECTION#footer_section .infos .info .txt {
    width: 100%;
    color: #fff;
}

SECTION#footer_section .infos .info .txt p,
SECTION#footer_section .infos .info .txt a {
    color: #fff;
    text-decoration: none;
}

SECTION#footer_section .infos .info .txt img {
    width: 250px;
    height: auto;
    transform: scale(1);
    transition: 0.5s all;
    opacity: 1;
}

SECTION#footer_section .infos .info .txt img:hover {
    transform: scale(1.05);
    opacity: 0.5;
}

SECTION#footer_section .popup_bar {
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 25px;
    background-color: #fff;
}

SECTION#footer_section .popup_bar a {
    color: var(--color-3);
    text-transform: uppercase;
    font-size: 16px;
    transition: 0.5s all;
    cursor: pointer;
}

SECTION#footer_section .popup_bar a:hover {
    color: var(--color-2);
}

SECTION#footer_section .footer_mask {
    width: 100vw;
    height: 50vh;
    position: relative;
    display: flex;
    overflow: hidden;
}

SECTION#footer_section .footer_mask:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("/files/clients_files/images/footer_img.jpg");
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

SECTION#footer_section .footer_mask .video-bg {
    width: 100vw;
    height: 100%;
    object-fit: cover;
}

SECTION#footer_section .footer_mask:after {
    content: "";
    position: absolute;
    z-index: 1;
    background-image: url("/files/design_files/vector/mask.svg");
    width: 100%;
    aspect-ratio: 1919/539;
    /*height: 100%;*/
    background-size: cover;
    background-position: center;
}

/*----------/FOOTER_SECTION----------*/
/*----------RESPONSIVE----------*/
@media (max-width: 1280px) {
    .custom-slider-section {
        padding: 10px !important;
	}
    .custom-slider-section .slide-box {
    	flex: 1;
    }

    .custom-slider-section .right {
    	flex: 0.5;
    }

    .custom-slider-section .swiper-wrapper .list-child {
    	padding: 1rem 0;
    }
 /*   .custom-slider-section .nested-vertical-swiper {*/
 /*   	height: 40vw;*/
	/*}*/
    section.activities_section .activities_item {
        grid-gap: 3rem;
        padding: 15px;
    }

    section.activities_section .swiper-slide .swiper-slide-active > div {
        width: 60%;
    }

    section.activities_section .elementHeadline h2 {
        font-size: 6rem;
    }
    /*welcome_1200*/
    SECTION#welcome_section {
        padding: 75px;
        padding-top: 0px;
    }

    SECTION#welcome_section .img {
        width: 50%;
        padding-left: 75px;
    }

    SECTION#welcome_section .img img {
        height: 0px;
        min-height: calc(100% - 75px);
        border-radius: 10px;
    }
    /*anreise_1200*/
    SECTION#anreise_section {
        padding: 75px;
        padding-top: 0px;
    }

    SECTION#anreise_section .left_side {
        width: calc(50% - 75px);
        margin-right: 75px;
        margin-top: 75px;
    }

    SECTION#anreise_section .right_side .img {
        margin-bottom: 25px;
    }

    SECTION#anreise_section .right_side .txt h1 {
        margin-bottom: 25px;
    }
    /*gallery_1200*/
    SECTION#gallery_section {
        padding: 75px;
        padding-top: 0px;
    }

    SECTION#gallery_section .gallery .gallery-subslider {
        width: calc(50% - 100px);
        margin-right: 100px;
        padding: 0 75px;
    }

    SECTION#gallery_section .txt {
        padding: 50px 0px 0px 75px;
    }
    /*video_1200*/
    .video_section {
        padding: 75px;
    }
    /*wellness_1200*/
    SECTION#wellness_section {
        padding: 75px;
    }

    SECTION#wellness_section .wellness .wellness_title {
        margin-bottom: 75px;
    }

    SECTION#wellness_section .wellness .wellness-img-slider {
        width: calc(60% - 75px);
        margin-left: 75px;
    }

    SECTION#wellness_section .wellness-icon-slider {
        width: calc(100% - 150px);
        padding: 0 50px;
    }

    SECTION#wellness_section .wellness-icon-slider:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 50px;
        height: 100%;
        background-color: #fff;
        z-index: 2;
    }

    SECTION#wellness_section .wellness-icon-slider:after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 50px;
        height: 100%;
        background-color: #fff;
        z-index: 2;
    }
    /*preise_1200*/
    SECTION#price_section {
        padding: 75px;
    }

    SECTION#price_section .txt {
        width: 40%;
        margin-bottom: 75px;
        color: #fff;
    }

    SECTION#price_section .right_side {
        width: calc(60% - 75px);
        position: relative;
        margin-left: 75px;
    }
    /*arrival_1200*/
    SECTION#arrival_section {
        padding: 75px;
        grid-gap: 50px 75px;
    }
    /*footer_1200*/
    SECTION#footer_section .infos {
        padding: 50px 75px;
    }

    SECTION#footer_section .popup_bar {
        padding: 50px 75px;
    }

    .popup {
        padding: 50px 75px;
    }

    .popup .popup_txt h3 {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .popup#form {
        width: 50vw;
    }
}

@media (max-width: 989px) {
    .custom-slider-section .swiper-wrapper .list-child {
        height: auto;
        grid-gap: 0;
    }
    .headline-wrap {
    	margin: 2rem 0 0!important;
    }
    .custom-slider-section .right {
        flex: unset;
    }
    SECTION#activities_section {
        padding: 50px;
    }
    SECTION#activities_section .media-swiper {
        height: 70vh;
        flex: auto;
    }

    SECTION#activities_section .swiper-slide {
        flex-direction: column;
    }
    #review h3.title_name {
    	font-size: 1.3rem;
    }
    
    #review {
    	padding: 50px;
    }
    
    #review.review_section .wrap_sliders {
    	margin: 0;
    }
    .accordion {
        flex-direction: column;
        height: auto;
    }

    .review_section .wrap_sliders .slider-main {
        width: 100%;
    }

    .review_section .wrap_sliders .swiper .ava_img {
        width: 100%;
    }

    .review_section .wrap_sliders .slider-main .content_wrap {
        padding: 1rem;
        overflow: scroll;
        flex-direction: column;
        height: auto;
    }

    .review_section .wrap_sliders .swiper-slide {
        flex-direction: column;
    }

    .review_section .wrap_sliders .swiper-slide .ava_img {
        max-width: 50px;
    }

    #page_content .image-slider {
        display: none;
    }

    #page_content .content-blocks .block {
        flex-direction: column !important;
    }

    #page_content .content-blocks .block-text,
    #page_content .content-blocks .block-image {
        width: 100%;
    }

    #page_content .flex-text {
        flex-direction: column;
    }

    #page_content .flex-text .left-text,
    #page_content .flex-text .right-text {
        width: 100%;
        margin-bottom: 2em;
    }

    #page_content > div {
        padding: 2em;
    }

    .accordion-item .btn {
        margin-bottom: 2em;
    }

    .accordion-item .headline-open {
        padding: 2em;
        padding-bottom: 0;
    }

    .accordion-item .headline-close {
        display: flex;
        padding: 8em;
    }
    /*welcome_989*/
    SECTION#welcome_section {
        padding: 50px;
        padding-top: 0px;
    }

    SECTION#welcome_section .txt {
        width: 100%;
    }

    SECTION#welcome_section .img {
        width: 100%;
        padding-left: 0px;
        margin-top: 25px;
    }

    SECTION#welcome_section .img img {
        height: auto;
    }
    /*anreise_989*/
    SECTION#anreise_section {
        padding: 50px;
        padding-top: 0px;
    }

    SECTION#anreise_section .left_side {
        width: calc(50% - 50px);
        margin-right: 50px;
        margin-top: 50px;
    }

    SECTION#anreise_section .right_side .img {
        margin-bottom: 25px;
    }

    SECTION#anreise_section .right_side .txt h1 {
        margin-bottom: 25px;
    }
    /*gallery_989*/
    SECTION#gallery_section {
        padding: 50px;
        padding-top: 0px;
    }

    SECTION#gallery_section .gallery .gallery-subslider {
        width: calc(50% - 50px);
        margin-right: 50px;
        padding: 0 50px;
    }

    SECTION#gallery_section .txt {
        padding: 25px 0px 0px 50px;
    }
    /*video_989*/
    .video_section {
        padding: 50px;
    }
    /*wellness_989*/
    SECTION#wellness_section {
        padding: 50px;
    }

    SECTION#wellness_section .wellness .wellness_vector {
        top: auto;
        bottom: 250px;
    }

    SECTION#wellness_section .wellness .wellness_title {
        margin-bottom: 50px;
    }

    SECTION#wellness_section .wellness .wellness_txt {
        width: 100%;
    }

    SECTION#wellness_section .wellness .wellness-img-slider {
        width: 100%;
        margin-left: 0px;
    }

    SECTION#wellness_section .wellness .wellness-img-slider .swiper-wrapper {
        height: 300px;
        min-height: 100%;
        margin-top: 25px;
    }

    SECTION#wellness_section .wellness-icon-slider {
        margin-top: 25px;
        width: 100%;
    }
    /*preise_989*/
    SECTION#price_section {
        padding: 50px;
    }

    SECTION#price_section .txt {
        width: 40%;
        margin-bottom: 0px;
        color: #fff;
    }

    SECTION#price_section .right_side {
        width: calc(60% - 50px);
        position: relative;
        margin-left: 50px;
        padding: 25px;
        padding-bottom: 50px;
    }

    SECTION#price_section .right_side .swiper-nav {
        bottom: 10px;
        right: 25px;
    }
    /*arrival_989*/
    SECTION#arrival_section {
        padding: 50px;
        grid-gap: 25px 50px;
    }

    SECTION#arrival_section .left_side,
    SECTION#arrival_section .right_side {
        width: calc(50% - 25px);
    }
    /*footer_989*/
    SECTION#footer_section .infos {
        padding: 25px 50px;
    }

    SECTION#footer_section .infos .info .txt img {
        width: 150px;
    }

    SECTION#footer_section .popup_bar {
        padding: 25px 50px;
    }

    .popup {
        padding: 25px 50px;
        width: calc(100vw - 50px);
        max-height: calc(100vh - 200px);
    }

    .popup#form {
        width: 70vw;
    }

    .popup .popup_title {
        font-size: 42px;
    }

    .popup .popup_txt h3 {
        font-size: 24px;
    }
}

@media (min-width: 767px) {
    section.activities_section .swiper-slide .media_wrapper {
        flex: 1;
    }
}
@media (max-width: 767px) {
    SECTION#welcome_section .playerBox_wrap .playerBox .swiper-nav {
        justify-content: center;
    }
    #footer {
        z-index: 0;
    }

    SECTION#price_section .right_side .price-slider .price .text table {
        table-layout: auto;
    }

    SECTION#price_section .right_side .price-slider .price .text table tr td {
        display: flex;
        justify-content: space-between;
        padding: 6px 4px;
    }

    SECTION#price_section .right_side .price-slider .price .text table tr td:last-child {
        border-bottom: none;
    }

    SECTION#price_section .right_side .price-slider .price .text table tbody tr td:first-child {
        flex: 1;
    }

    SECTION#price_section .right_side .price-slider .price .text table tbody tr td:nth-child(2),
    SECTION#price_section .right_side .price-slider .price .text table tbody tr td:nth-child(3) {
        flex: 0.5;
    }

    #price_section .text {
        padding: 0;
    }
    .custom-slider-section {
        .nested-vertical-swiper {
            height: 100%;
        }
    }
    body .review_section .slider-thumbs .swiper-wrapper {
        padding: 10px 0 50px 0 !important;
    }
    #review h3 {
        font-size: 12px;
    }
    #review {
        padding: 1em !important;
    }
    SECTION#footer_section .infos .txt p {
        text-align: center !important;
    }
    SECTION#footer_section .infos {
        flex-direction: column;
        text-align: center;
    }
    .popup#form {
        padding: 20px;
        display: flex;
        justify-content: center;
    }
    .custom-slider-section,
    .nested-vertical-swiper {
        height: 100%;
    }

    .popup.activity_popup h3 {
        padding-top: 46px;
    }
    .popup.activity_popup {
        width: 100%;
        left: 50%;
        /*top: 70% !important;*/
    }
    section.activities_section .elementHeadline h2 {
        font-size: 3rem;
    }

    section.activities_section .activities_item {
        grid-gap: 1.5rem;
        padding: 25px;
        flex-direction: column;
    }

    section.activities_section .activities_item .activity-list {
        grid-gap: 1.5rem;
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }

    .logo.content-image {
        display: none;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }
    /*welcome_767*/
    SECTION#welcome_section {
        padding: 25px;
        padding-top: 0px;
    }
    /*anreise_767*/
    SECTION#anreise_section {
        padding: 25px;
        padding-top: 0px;
    }

    SECTION#anreise_section .left_side {
        display: none;
    }

    SECTION#anreise_section .right_side {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    SECTION#anreise_section .right_side .img {
        order: 2;
        margin-bottom: 0px;
        margin-top: 25px;
    }

    SECTION#anreise_section .right_side .txt h1 {
        margin-bottom: 15px;
    }
    /*gallery_767*/
    .gallery-garten #gallery_section .gallery .gallery-subslider {
        margin-right: 0;
        margin-left: 15px;
    }

    SECTION#gallery_section {
        padding: 25px;
        padding-top: 0px;
        display: flex;
        flex-direction: column;
    }

    SECTION#gallery_section .gallery {
        order: 2;
    }

    SECTION#gallery_section .gallery .gallery-subslider {
        width: calc(40% - 15px);
        margin-right: 15px;
        height: 200px;
        padding: 0;
    }

    SECTION#gallery_section .gallery .gallery-subslider .gallery_img.swiper-slide-thumb-active {
        border: 2px solid var(--color-2);
    }

    SECTION#gallery_section .gallery .gallery-subslider .swiper-pagination {
        display: none;
    }

    SECTION#gallery_section .gallery .gallery-subslider .swiper-button {
        display: none;
    }

    SECTION#gallery_section .gallery .gallery-slider {
        width: 60%;
        height: 200px;
    }

    SECTION#gallery_section .gallery .gallery-slider img {
        border-radius: 10px;
    }

    SECTION#gallery_section .txt {
        padding: 0px 0px 25px 0px;
    }
    /*video_767*/
    .video_section {
        padding: 25px;
    }
    /*wellness_767*/
    SECTION#wellness_section {
        padding: 25px;
    }

    SECTION#wellness_section .wellness .wellness_title {
        margin-bottom: 10px;
        margin-top: 75px;
        padding: 0px;
    }
    /*preise_767*/
    SECTION#price_section {
        padding: 25px;
    }

    SECTION#price_section .txt {
        width: 100%;
    }

    SECTION#price_section .txt .btn {
        margin: 15px 0;
    }

    SECTION#price_section .right_side {
        width: 100%;
        margin-left: 0px;
    }

    SECTION#price_section .right_side .price-slider {
        height: 400px;
    }
    /*arrival_767*/
    SECTION#arrival_section {
        padding: 25px;
        grid-gap: 25px;
    }

    SECTION#arrival_section .left_side,
    SECTION#arrival_section .right_side {
        width: 100%;
    }

    SECTION#arrival_section .left_side .images,
    SECTION#arrival_section .right_side .images {
        margin-top: 25px;
        grid-gap: 25px;
    }
    /*footer_767*/
    .popup {
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0px;
        padding: 25px;
        padding-top: 50px;
    }

    .popup#form {
        width: 100vw;
    }

    .popup .popup_title {
        font-size: 30px;
        padding-right: 100px;
        margin-bottom: 15px;
    }

    .popup .popup_txt {
        padding-right: 10px;
    }

    .popup .popup_txt h3 {
        margin-top: 10px;
        margin-bottom: 5px;
        font-size: 20px;
    }
}

/*----------/RESPONSIVE----------*/