@import url('https://fonts.googleapis.com/css2?family=Spinnaker&display=swap');
@import url("https://use.typekit.net/huc4krp.css");

@font-face {
    font-family: 'Bigola Display';
    src: url('../fonts/bigola-display-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bigola Display New';
    src: url('../fonts/BigolaDisplay-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bigola Display';
    src: url('../fonts/bigola-display-italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

body {
    font-family: "Spinnaker", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #3A3A3A;
}

a{
	color:#116E86;
}

h1 {
    font-size: 5em;
}

h2 {
    font-size: 64px;
}

.home h2 {
    font-size: 4.5em;
}


h1,
h2,
h3,
h4,
h5 {
    font-family: 'Bigola Display', serif;
    color: #002B49;
}

p {
    font-size: 19px;
    line-height: 1.6;
}
@media screen and (max-width: 767px) {
    h2 {
        font-size: 33px;
    }

    body {
        font-size: 16px;
        text-align: center;
    }
}

/* ----------- Header ----------- */
header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0px;
    width: 100%;
    z-index: 100;
    padding-left: 30px;
    padding-right: 30px;
    padding: 12px 30px;
    transition: all .2s ease-in-out;
}

header.is-scrolled {
    background: #116F86;
}

header #header-top {
    display: none;
}

header.is-scrolled #header-top {
    display: block;
}

header .nav-book-now {
    display: none;
    justify-content: center;
    align-items: center;
    background:#966E40;
    padding: 0px 30px;
    color: white;
    text-transform: uppercase;
    height: auto;
}

header.is-scrolled .nav-book-now {
    display: flex;
    width: auto;
    max-width: 200px;
    padding: 10px;
}

/* #header-logo {
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
} */

header.active #header-logo,
header.no-hero #header-logo {
    opacity: 1;
    visibility: visible;
}

header #header-logo img,
header.no-hero #header-logo img {
    width: 180px;
    /* padding: 10px 0; */
}

header.active #header-logo svg g,
header.no-hero #header-logo svg g {
    fill: #111112;
}

header #navigation {
    display: none;
    height: 100%;
    background: radial-gradient(#116F86, #004E61);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 12;
}

header #navigation a {
    height: auto;
    margin: auto;
    max-width: 335px;
    width: 100%;
}

header #navigation img {
    max-width: 335px;
}

@media only screen and (max-width:768px){
	header #navigation img {
    max-width: 175px;
}
}


header #navigation::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/triangle-golden-pattern.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.nav {
    margin: 0;
    padding: 0 30px;
    list-style: none;
    text-align: left;
    /* overflow-y: scroll; */
    display: block;
}

.nav li {
    margin: 20px auto;
    padding: 0;
    display: block;
}

.nav>li {
    margin: 50px auto;
}

.nav li a {
    color: #fff;
    font-family: 'Bigola Display', serif;
    font-size: 32px;
}

.nav li a:focus,
.nav li a:hover {
    color: #ffffffaa;
}

.nav li .sub-menu {
    padding-left: 0;
    text-align: left;
}

.nav li .sub-menu li a {
    font-size: 18px;
    font-family: 'Spinakler', serif;
}

.nav li.current_page_item>a,
.nav li.current-page-ancestor>a:not(ul.sub-menu li.current-page-ancestor > a) {
    color: #d9be8b;
    border-bottom: 2px solid #cadfdc;
}

.nav li>ul li.current_page_item>a {
    border-bottom: 0;
    font-weight: bold;
}

.nav li:focus-within ul {
    transform: none;
    max-height: initial;
}

/*#header-logo img, #header-logo svg { max-width: 320px; }*/

.header-right {
    color: #CF343A;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    /*transition: all .2s ease-in-out;*/
}

.header-right p,
.header-right a {
    color: #CF343A;
    font-weight: 700;
    text-transform: uppercase;
}

.header-right a:hover,
.header-right a:focus {
    text-decoration: underline;
}

.header-right .button {
    margin-left: 35px;
    padding-right: 35px;
}

.header-right .button:after {
    content: none;
}

header.active .header-right,
header.no-hero .header-right {
    opacity: 1;
    visibility: visible;
}

/* Menut Toggle Buttons */
button.toggle-menu {
    background: transparent;
    border: none;
    color: #fff;
}

button.toggle-menu:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    /* background: #CF343A; */
    z-index: -1;
    transition: width 0.35s;
}

button.toggle-menu>span {
    display: block;
    padding: 15px 11px;
}

button.toggle-menu>span>span {
    background: #F6F4F5;
    height: 3px;
    width: 27px;
    margin-bottom: 5px;
    display: block;
    transition: all 0.35s;
    border-radius: 5px;
}

button.toggle-menu:hover,
button.toggle-menu:focus {
    outline: 0;
}

button.toggle-menu:hover:before,
button.toggle-menu:focus:before {
    width: 100%;
}

header.active button.toggle-menu,
header.no-hero button.toggle-menu {
    color: #fff;
}

header.active button.toggle-menu:hover>span>span,
header.no-hero button.toggle-menu:hover>span>span,
header.active button.toggle-menu:focus>span>span,
header.no-hero button.toggle-menu:focus>span>span {
    background: #fff;
}

/* Open Menu */
/*button#open-menu > span > span:nth-of-type(1) { width: 20px; }*/
/*button#open-menu > span > span:nth-of-type(2) { width: 24px; }*/
button#open-menu>span>span:nth-of-type(3) {
    /*width: 12px;*/
    margin-bottom: 0;
}

/*
button#open-menu:hover > span > span,
button#open-menu:focus > span > span { width: 24px !important; }
*/

/* Close Menu */
button#close-menu {
    position: absolute;
    left: 40px;
    top: 35px;
    padding-top: 4px;
    padding-bottom: 4px;
    color: #fff;
    padding-right: 11px;
    z-index: 1;
}

button#close-menu>span {
    /* background: #2D2A26; */
    padding-right: 0;
    margin-right: 20px;
}

button#close-menu>span>span {
    background: #fff;
    width: 24px;
    transition: transform 0.35s;
}

button#close-menu>span>span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-bottom: -3px;
}

button#close-menu>span>span:nth-of-type(2) {
    transform: rotate(-45deg);
}

button#close-menu:hover>span>span,
button#close-menu:focus>span>span {
    transform: rotate(0);
}



/* ----------- Page Content ----------- */
.hero-large {
    height: 100vh;
    min-height: 650px;
    background-size: cover !important;
    clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 0 85%);
    z-index: 1;
    position: relative;
}

.hero-large::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="213.32" height="1481.839" viewBox="0 0 213.32 1481.839"><defs><clipPath id="clip-path"><path id="Path_97" data-name="Path 97" d="M0,536.691V748.383L211.691,536.691V325Z" transform="translate(0 -325)" fill="%23fff"/></clipPath><clipPath id="clip-path-2"><path id="Path_103" data-name="Path 103" d="M211.691,0,0,211.691H211.691Z" fill="%23fff"/></clipPath></defs><g id="Group_412" data-name="Group 412" opacity="0.313"><g id="Group_231" data-name="Group 231" transform="translate(0 1058.457)"><g id="Group_230" data-name="Group 230" clip-path="url(%23clip-path)"><path id="Path_96" data-name="Path 96" d="M228.03,1035.089,355.044,527.03,101.015,273-26,781.059Z" transform="translate(-58.677 -442.353)" fill="%23fff"/></g></g><path id="Path_98" data-name="Path 98" d="M0,195,211.691,406.691V195Z" transform="translate(0 440.074)" fill="%23fff"/><path id="Path_100" data-name="Path 100" d="M107.474,893.446H213.32L107.474,787.6ZM0,260V471.695L211.691,260Z" transform="translate(0 586.765)" fill="%23fff"/><g id="Group_235" data-name="Group 235"><g id="Group_234" data-name="Group 234" clip-path="url(%23clip-path-2)"><rect id="Rectangle_92" data-name="Rectangle 92" width="299.377" height="299.377" transform="translate(-105.846 105.846) rotate(-45)" fill="%23fff"/></g></g><path id="Path_104" data-name="Path 104" d="M0,276.691,211.691,488.383V276.691L0,65Z" transform="translate(0 146.692)" fill="%23fff"/></g></svg>');
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    z-index: 2;
}

.hero-wrapper-large::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 240px;
    background-image: radial-gradient(#116F86, #004E61);
    bottom: 8%;
    transform: skew(0deg, -5deg);
}

.hero-wrapper-large::after {
    content: '';
    position: absolute;
    right: 0;
    width: 65%;
    height: 220px;
    background-image: linear-gradient(60deg, #EFDDAF 35%, #B1845A, #EFDDAF 75%);
    bottom: 5%;
    transform: skew(0deg, 11deg);
}

.hero-regular {
    height: 70vh;
    min-height: 550px;
}

/*.hero-regular { height: 0; padding-bottom: 41.667%; }*/
.hero-small {
    height: 50vh;
    min-height: 350px;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.68);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero>.container,
.hero>.container-fluid {
    position: relative;
    z-index: 3;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100%;
}

.hero * {
    color: #fff;
}

.hero h1 {
    font-size: 3.5rem;
}

.hero h5 {
    padding-bottom: 0;
    margin-bottom: 15px;
}

.hero h5:after {
    content: none;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider * {
    height: 100%;
}

.hero .slick-dots {
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 0 7px;
    z-index: 2;
}

.hero .slick-arrow {
    height: 60px;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hero .slick-prev {
    left: 45px;
}

.hero .slick-next {
    right: 0;
}

.hero .slick-next {
    right: 45px;
}

.hero video {
    position: absolute;
    top: 0;
    width: auto;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 100vw;
    object-fit: cover;
}

.hero-wrapper .titles {
    position: absolute;
    bottom: 30%;
    background: #006271c4;
    z-index: 2;
    left: 0;
    padding: 10px 60px 10px 110px;
}

.hero-wrapper .titles * {
    margin-bottom: 0;
}

.hero-wrapper .image-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background: #0000004a;
    top: 0;
    left: 0;
}

@media screen and (max-aspect-ratio: 1920/1080) {
    .hero video {
        height: 100%;
    }
}

@media screen and (min-aspect-ratio: 1920/1080) {
    .hero video {
        width: auto;
        height: 100%;
    }
}

@media screen and (min-width: 1150px) and (min-aspect-ratio: 1920/1080) {
    .hero video {
        width: 100%;
        height: auto;
    }
}


.home-hero-logo {
    width: 30%;
    min-width: 320px;
}

.home-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 1;
    width: calc(70% - 200px);
}

.home-menu li {
    display: inline-block;
    position: relative;
    padding: 0 18px;
    /* flex: 1 1 100%; */
    /* width: 100%; */
    text-align: center;
    line-height: 1;
    margin-right: 20px;
}

.home-menu li a {
    font-family: 'Bigola Display', serif;
    font-size: 48px;
    color: #FEFEFE;
    transition: all 0.2s ease;
    padding-left: 33px;
    padding-right: 18px
}

.home-menu li:hover a,
.home-menu a:focus {
    color: #ffffff !important;
    transition: all 0.2s ease;
}

.home-menu._stay li a {
    font-size: 44px;
}

.menu-btn-hero {
    position: absolute;
    top: 80px;
    left: 90px;
    z-index: 9;
}

@media only screen and (max-width:768px){
	.menu-btn-hero {
		position: absolute;
		top: 20px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		z-index: 9;
	}
}

/* Booking widget in hero */
.availability-block {
    background-color: #F6F6F6;
    max-width: 250px;
    width: 100%;
    margin: 0 0 0 auto;
    position: absolute;
    top: 80px;
    right: 90px;
    z-index: 60;
}

.availability-input-btn {
    width: 100%;
}

.availability-input-btn .availability-btn {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background-color: #006271;
    padding: 15px 5px;
    width: 100%;
    letter-spacing: 1px;
    border: none;
}

.availability-input-btn .availability-btn:hover,
.availability-input-btn .availability-btn:focus {
    background: #006271bb;
}

.availability-input input {
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 8px !important;
    width: 100%;
}

.availability-input {
    padding: 5px;
    position: relative;
    height: 105px;
    width: 50%;
}

.availability-input label {
    position: absolute;
    background: #F6F6F6;
    z-index: 1;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    top: 5px;
    left: 5px;
    margin: 0;
    top: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: calc(100% - 30px);
}

.availability-input label>span {
    display: block;
    text-align: center;
}

.availability-input:first-of-type label {
    border-right: 1px solid #707070;
}

.availability-input label .datepicker_month_year {
    color: #3A3A3A;
    font-size: 16px;
    line-height: 1.4;
    font-family: "Bigola Display", serif;
}

.availability-input label .datepicker_day {
    color: #3A3A3A;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    font-family: "Bigola Display", serif;
}

.availability-input label>span:empty {
    display: none;
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active:hover:active {
    background-color: #CF343A !important;
}

.btn {
    border-radius: 0;
    padding: 15px 35px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

.btn.btn-primary {
    background: #004E61;
    border: 3px solid #fff;
    box-shadow: 0 7px 20px #00000040;
    transition: all .5s;
}

.btn.btn-primary:hover {
    transform: translateY(-3px);
}

.btn.btn-outline {
    background: transparent;
    border: 3px solid #004E61;
    transition: all .5s;
    color: #004E61;
}

.btn.btn-outline:hover {
    transform: translateY(-3px);
}

.btn-underline {
    text-decoration: underline;
    text-transform: uppercase;
    text-underline-offset: 4px;
}

@media (max-width: 767px) {
    .btn {
        font-size: 14px;
        padding: 10px 15px;
    }
}

/* 
image-content-section
*/
.image-content-section .img-holder {
    position: relative;
}

.image-content-section .img-holder::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 30px;
    background-image: linear-gradient(#E6D0A0, #B58A5F, #E6D0A0);
    width: 16px;
    height: 160px;
}

.image-content-section .order-last .img-holder::after {
    left: unset;
    right: -8px;
    top: 30px;
}

.image-content-section .img-holder img {
    aspect-ratio: 812 / 780;
    object-fit: cover;
    clip-path: polygon(100% 0, 100% 85%, 85% 100%, 0 100%, 0 0);
}

.image-content-section .order-last .img-holder img {
    aspect-ratio: 812 / 780;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
}

.image-content-section.wide-image .img-holder img {
    aspect-ratio: 812 / 610;
}

.image-content-section.wide-image .title {
    margin-right: -10%;
}

.image-content-section .title_on_top {
    font-size: 6em;
}

.image-content-section.outside-image {
    position: relative;
    overflow: hidden;
    padding: 45px 0;
}

.image-content-section.outside-image .styling-flower {
    position: absolute;
    top: 70px;
    height: 220px;
    right: -30px;
    transform: rotate(340deg);
}

.image-content-section.outside-image .img-holder::after {
    content: unset;
}

.image-content-section.outside-image .title {
    width: 120%;
    left: -20%;
    position: relative;
    font-size: 72px;
}

.image-content-section.outside-image::before {
    content: '';
    position: absolute;
    bottom: 0%;
    right: 0;
    background-image: linear-gradient(180deg, transparent 0, #E3EDEE);
    width: 120%;
    height: 100%;
    clip-path: polygon(64% 0, 100% 60%, 100% 82%, 0 103%, 0 0);
}

.image-content-section.bg-opacity {
    position: relative;
}

.image-content-section.bg-opacity::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 0;
    background-image: linear-gradient(180deg, transparent 0%, #E3EDEE);
    width: 120%;
    height: 100%;
    clip-path: polygon(54% 0, 100% 60%, 100% 82%, 0 103%, 0 0);
}

.image-content-section.bg-opacity.flipped::before {
    clip-path: polygon(54% 0, 100% 0, 100% 100%, 0 83%, 0 63%);
}

.image-content-section.image-content-about-section .img-holder img {
    clip-path: unset;
}

.image-content-section.image-content-about-section .img-holder::after {
    content: unset;
}

.image-content-section.image-content-about-section h2 {
    font-size: 62px;
}

.image-content-about-wrapper {
    position: relative;
}

.image-content-about-wrapper.gradient_slanted::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 0;
    background-image: linear-gradient(180deg, transparent 30%, #E3EDEE);
    width: 120%;
    height: 100%;
    clip-path: polygon(54% 0, 100% 60%, 100% 82%, 0 103%, 0 0);
}

.image-content-about-wrapper.full_slanted::before {
    position: absolute;
    content: '';
    background-image: linear-gradient(#E7F0FA, #D1CDE0);
    top: 5%;
    left: 0;
    width: 100%;
    height: 90%;
    transform: skewY(353deg);
}

@media screen and (max-width: 767px) {
    .image-content-section .title_on_top {
        font-size: 33px;
    }

    .image-content-section .img-holder img {
        aspect-ratio: 355/287;
    }

    .image-content-section .img-holder::after {
        content: unset;
    }

    .image-content-section.outside-image .title {
        text-align: center;
        font-size: 36px;
        width: unset;
        left: unset;
    }
}

.page-id-5168 .image-content-section,
.page-id-6171 .image-content-section,
.page-id-6018 .image-content-section,
.page-id-6056 .image-content-section,
.page-id-1562 .image-content-section {
    position: relative;
}

.page-id-6018 .image-content-section.first-section::before,
.page-id-6056 .image-content-section.first-section::before,
.page-id-1562 .image-content-section.first-section::before {
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="640.694" height="2242.428" viewBox="0 0 640.694 2242.428"><defs><clipPath id="clip-path"><path id="Path_97" data-name="Path 97" d="M0,645.347V965.694L320.347,645.347V325Z" transform="translate(0 -325)" fill="%23a7c6ed"/></clipPath><clipPath id="clip-path-2"><path id="Path_102" data-name="Path 102" d="M65,515.347H385.347V195Z" transform="translate(-65 -195)" fill="%23a7c6ed"/></clipPath><clipPath id="clip-path-3"><path id="Path_103" data-name="Path 103" d="M320.347,0,0,320.347H320.347Z" fill="%23a7c6ed"/></clipPath></defs><g id="triangle_pattern" data-name="triangle pattern" opacity="0.121"><g id="Group_231" data-name="Group 231" transform="translate(0 1601.734)"><g id="Group_230" data-name="Group 230" clip-path="url(%23clip-path)"><path id="Path_96" data-name="Path 96" d="M358.416,1426.249,550.624,657.416,166.208,273-26,1041.832Z" transform="translate(-102.139 -529.277)" fill="%23a7c6ed"/></g></g><path id="Path_98" data-name="Path 98" d="M0,195,320.347,515.347V195Z" transform="translate(0 766.04)" fill="%23a7c6ed"/><path id="Path_99" data-name="Path 99" d="M226.4,356.4V195H65Z" transform="translate(255.347 766.041)" fill="%23a7c6ed"/><path id="Path_100" data-name="Path 100" d="M162.638,1218.576H322.811L162.638,1058.4ZM0,260V580.352L320.347,260Z" transform="translate(0 1021.387)" fill="%23a7c6ed"/><path id="Path_101" data-name="Path 101" d="M65,580.351H385.347L65,260Z" transform="translate(255.346 1021.385)" fill="%23a7c6ed"/><g id="Group_233" data-name="Group 233" transform="translate(320.347 961.041)"><g id="Group_232" data-name="Group 232" clip-path="url(%23clip-path-2)"><rect id="Rectangle_91" data-name="Rectangle 91" width="453.039" height="453.039" transform="translate(-160.173 160.173) rotate(-45)" fill="%23a7c6ed"/></g></g><g id="Group_235" data-name="Group 235"><g id="Group_234" data-name="Group 234" clip-path="url(%23clip-path-3)"><rect id="Rectangle_92" data-name="Rectangle 92" width="453.039" height="453.039" transform="translate(-160.173 160.173) rotate(-45)" fill="%23a7c6ed"/></g></g><path id="Path_104" data-name="Path 104" d="M0,385.347,320.347,705.694V385.347L0,65Z" transform="translate(0 255.347)" fill="%23a7c6ed"/></g></svg>');
    height: 150%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    z-index: 0;
}

.page-id-6018 .image-content-section.second-section::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="744.61" height="466.29" viewBox="0 0 744.61 466.29"><defs><clipPath id="clip-path"><rect id="Rectangle_102" data-name="Rectangle 102" width="744.61" height="466.29" fill="%23d6d5e6"/></clipPath></defs><g id="Group_243" data-name="Group 243" transform="translate(131)" opacity="0.762"><g id="Group_242" data-name="Group 242" transform="translate(-131 0)" opacity="0.277" clip-path="url(%23clip-path)"><path id="Path_127" data-name="Path 127" d="M283.1,204.875,260.979,180.2a23.335,23.335,0,0,0-34.75,0l-22.117,24.673L66.815,357.987a4.588,4.588,0,0,1-8.006-3.062V29.409A29.4,29.4,0,1,0,0,29.409v403.1c0,30.926,38.169,45.531,58.809,22.5l181.332-202.23a4.59,4.59,0,0,1,6.877.05l177.5,203.488A29.4,29.4,0,0,0,468.3,417.063Z" transform="translate(0 0.001)" fill="%23d6d5e6"/><path id="Path_128" data-name="Path 128" d="M219.845,261.409l22.117,24.673a23.335,23.335,0,0,0,34.75,0l22.117-24.673L436.126,108.3a4.588,4.588,0,0,1,8.006,3.062V436.885a29.4,29.4,0,0,0,58.809,0V33.773c0-30.925-38.169-45.521-58.809-22.5L262.8,213.5a4.59,4.59,0,0,1-6.877-.05L78.426,9.962A29.408,29.408,0,0,0,34.639,49.231Z" transform="translate(241.669 -0.003)" fill="%23d6d5e6"/></g></g></svg>');
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 420px;
    height: 400px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    min-width: 35%;
    max-width: 60%;
}

.page-id-6018 .three-items-block {
    margin-bottom: 300px;
}

.page-id-5168 .image-content-section.first-section::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="744.61" height="466.29" viewBox="0 0 744.61 466.29"><defs><clipPath id="clip-path"><rect id="Rectangle_102" data-name="Rectangle 102" width="744.61" height="466.29" fill="%23d6d5e6"/></clipPath></defs><g id="Group_243" data-name="Group 243" transform="translate(131)" opacity="0.762"><g id="Group_242" data-name="Group 242" transform="translate(-131 0)" opacity="0.277" clip-path="url(%23clip-path)"><path id="Path_127" data-name="Path 127" d="M283.1,204.875,260.979,180.2a23.335,23.335,0,0,0-34.75,0l-22.117,24.673L66.815,357.987a4.588,4.588,0,0,1-8.006-3.062V29.409A29.4,29.4,0,1,0,0,29.409v403.1c0,30.926,38.169,45.531,58.809,22.5l181.332-202.23a4.59,4.59,0,0,1,6.877.05l177.5,203.488A29.4,29.4,0,0,0,468.3,417.063Z" transform="translate(0 0.001)" fill="%23d6d5e6"/><path id="Path_128" data-name="Path 128" d="M219.845,261.409l22.117,24.673a23.335,23.335,0,0,0,34.75,0l22.117-24.673L436.126,108.3a4.588,4.588,0,0,1,8.006,3.062V436.885a29.4,29.4,0,0,0,58.809,0V33.773c0-30.925-38.169-45.521-58.809-22.5L262.8,213.5a4.59,4.59,0,0,1-6.877-.05L78.426,9.962A29.408,29.408,0,0,0,34.639,49.231Z" transform="translate(241.669 -0.003)" fill="%23d6d5e6"/></g></g></svg>');
    position: absolute;
    bottom: 5%;
    right: 0;
    width: 420px;
    height: 400px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    min-width: 35%;
    max-width: 60%;
}

.page-id-5168 .image-content-section.second-section::before,
.page-id-6171 .image-content-section.second-section::before {
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="640.694" height="2242.428" viewBox="0 0 640.694 2242.428"><defs><clipPath id="clip-path"><path id="Path_97" data-name="Path 97" d="M0,645.347V965.694L320.347,645.347V325Z" transform="translate(0 -325)" fill="%23a7c6ed"/></clipPath><clipPath id="clip-path-2"><path id="Path_102" data-name="Path 102" d="M65,515.347H385.347V195Z" transform="translate(-65 -195)" fill="%23a7c6ed"/></clipPath><clipPath id="clip-path-3"><path id="Path_103" data-name="Path 103" d="M320.347,0,0,320.347H320.347Z" fill="%23a7c6ed"/></clipPath></defs><g id="triangle_pattern" data-name="triangle pattern" opacity="0.121"><g id="Group_231" data-name="Group 231" transform="translate(0 1601.734)"><g id="Group_230" data-name="Group 230" clip-path="url(%23clip-path)"><path id="Path_96" data-name="Path 96" d="M358.416,1426.249,550.624,657.416,166.208,273-26,1041.832Z" transform="translate(-102.139 -529.277)" fill="%23a7c6ed"/></g></g><path id="Path_98" data-name="Path 98" d="M0,195,320.347,515.347V195Z" transform="translate(0 766.04)" fill="%23a7c6ed"/><path id="Path_99" data-name="Path 99" d="M226.4,356.4V195H65Z" transform="translate(255.347 766.041)" fill="%23a7c6ed"/><path id="Path_100" data-name="Path 100" d="M162.638,1218.576H322.811L162.638,1058.4ZM0,260V580.352L320.347,260Z" transform="translate(0 1021.387)" fill="%23a7c6ed"/><path id="Path_101" data-name="Path 101" d="M65,580.351H385.347L65,260Z" transform="translate(255.346 1021.385)" fill="%23a7c6ed"/><g id="Group_233" data-name="Group 233" transform="translate(320.347 961.041)"><g id="Group_232" data-name="Group 232" clip-path="url(%23clip-path-2)"><rect id="Rectangle_91" data-name="Rectangle 91" width="453.039" height="453.039" transform="translate(-160.173 160.173) rotate(-45)" fill="%23a7c6ed"/></g></g><g id="Group_235" data-name="Group 235"><g id="Group_234" data-name="Group 234" clip-path="url(%23clip-path-3)"><rect id="Rectangle_92" data-name="Rectangle 92" width="453.039" height="453.039" transform="translate(-160.173 160.173) rotate(-45)" fill="%23a7c6ed"/></g></g><path id="Path_104" data-name="Path 104" d="M0,385.347,320.347,705.694V385.347L0,65Z" transform="translate(0 255.347)" fill="%23a7c6ed"/></g></svg>');
    height: 150%;
    width: 100%;
    position: absolute;
    top: -25%;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    z-index: 0;
}

.page-id-6171 .image-content-section.third-section::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="744.61" height="466.29" viewBox="0 0 744.61 466.29"><defs><clipPath id="clip-path"><rect id="Rectangle_102" data-name="Rectangle 102" width="744.61" height="466.29" fill="%23d6d5e6"/></clipPath></defs><g id="Group_243" data-name="Group 243" transform="translate(131)" opacity="0.762"><g id="Group_242" data-name="Group 242" transform="translate(-131 0)" opacity="0.277" clip-path="url(%23clip-path)"><path id="Path_127" data-name="Path 127" d="M283.1,204.875,260.979,180.2a23.335,23.335,0,0,0-34.75,0l-22.117,24.673L66.815,357.987a4.588,4.588,0,0,1-8.006-3.062V29.409A29.4,29.4,0,1,0,0,29.409v403.1c0,30.926,38.169,45.531,58.809,22.5l181.332-202.23a4.59,4.59,0,0,1,6.877.05l177.5,203.488A29.4,29.4,0,0,0,468.3,417.063Z" transform="translate(0 0.001)" fill="%23d6d5e6"/><path id="Path_128" data-name="Path 128" d="M219.845,261.409l22.117,24.673a23.335,23.335,0,0,0,34.75,0l22.117-24.673L436.126,108.3a4.588,4.588,0,0,1,8.006,3.062V436.885a29.4,29.4,0,0,0,58.809,0V33.773c0-30.925-38.169-45.521-58.809-22.5L262.8,213.5a4.59,4.59,0,0,1-6.877-.05L78.426,9.962A29.408,29.408,0,0,0,34.639,49.231Z" transform="translate(241.669 -0.003)" fill="%23d6d5e6"/></g></g></svg>');
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    height: 400px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    min-width: 35%;
    max-width: 60%;
}
.accommodations-grid {
    position: relative;
}
.accommodations-grid::before {
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="640.694" height="2242.428" viewBox="0 0 640.694 2242.428"><defs><clipPath id="clip-path"><path id="Path_97" data-name="Path 97" d="M0,645.347V965.694L320.347,645.347V325Z" transform="translate(0 -325)" fill="%23a7c6ed"/></clipPath><clipPath id="clip-path-2"><path id="Path_102" data-name="Path 102" d="M65,515.347H385.347V195Z" transform="translate(-65 -195)" fill="%23a7c6ed"/></clipPath><clipPath id="clip-path-3"><path id="Path_103" data-name="Path 103" d="M320.347,0,0,320.347H320.347Z" fill="%23a7c6ed"/></clipPath></defs><g id="triangle_pattern" data-name="triangle pattern" opacity="0.121"><g id="Group_231" data-name="Group 231" transform="translate(0 1601.734)"><g id="Group_230" data-name="Group 230" clip-path="url(%23clip-path)"><path id="Path_96" data-name="Path 96" d="M358.416,1426.249,550.624,657.416,166.208,273-26,1041.832Z" transform="translate(-102.139 -529.277)" fill="%23a7c6ed"/></g></g><path id="Path_98" data-name="Path 98" d="M0,195,320.347,515.347V195Z" transform="translate(0 766.04)" fill="%23a7c6ed"/><path id="Path_99" data-name="Path 99" d="M226.4,356.4V195H65Z" transform="translate(255.347 766.041)" fill="%23a7c6ed"/><path id="Path_100" data-name="Path 100" d="M162.638,1218.576H322.811L162.638,1058.4ZM0,260V580.352L320.347,260Z" transform="translate(0 1021.387)" fill="%23a7c6ed"/><path id="Path_101" data-name="Path 101" d="M65,580.351H385.347L65,260Z" transform="translate(255.346 1021.385)" fill="%23a7c6ed"/><g id="Group_233" data-name="Group 233" transform="translate(320.347 961.041)"><g id="Group_232" data-name="Group 232" clip-path="url(%23clip-path-2)"><rect id="Rectangle_91" data-name="Rectangle 91" width="453.039" height="453.039" transform="translate(-160.173 160.173) rotate(-45)" fill="%23a7c6ed"/></g></g><g id="Group_235" data-name="Group 235"><g id="Group_234" data-name="Group 234" clip-path="url(%23clip-path-3)"><rect id="Rectangle_92" data-name="Rectangle 92" width="453.039" height="453.039" transform="translate(-160.173 160.173) rotate(-45)" fill="%23a7c6ed"/></g></g><path id="Path_104" data-name="Path 104" d="M0,385.347,320.347,705.694V385.347L0,65Z" transform="translate(0 255.347)" fill="%23a7c6ed"/></g></svg>');
    height: 150%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    z-index: 0;
}

/* 
    STAY SLIDER
*/
.stay-swiper-wrapper {
    position: relative;
    /* overflow: hidden; */
}

.stay-swiper-wrapper .styling-flower {
    position: absolute;
    top: -130px;
    height: 200px;
    right: 0;
}

.stay-swiper-wrapper::before {
    position: absolute;
    content: '';
    background-image: linear-gradient(#E7F0FA, #D1CDE0);
    top: 5%;
    left: 0;
    width: 100%;
    height: 90%;
    transform: skewY(353deg);
}

.stay-swiper-wrapper button{
	background:transparent;
	border:none;
}

.stay-swiper {
    margin: auto;
    position: relative;
}

.stay-swiper .swiper-slide h3 {
    display: none;
    font-family: "meno-banner";
    font-size: 50px;
}

.stay-swiper .swiper-slide .buttons {
    display: none;
}

.stay-swiper .swiper-slide img {
    aspect-ratio: 690 / 450;
    position: relative;
    width: 55%;
    height: auto;
    transition: all .5s;
}

.stay-swiper .swiper-slide-active img {
    width: 100%;
    aspect-ratio: 950 / 545;
    object-fit: cover;
}

.stay-swiper .swiper-slide-active h3 {
    opacity: 1;
    display: block;
}

.stay-swiper .swiper-slide-active .buttons {
    display: flex;
}

.stay-swiper .swiper-slide-next img {
    aspect-ratio: 690/450;
    position: relative;
}

.stay-swiper .swiper-slide-prev img {
    position: relative;
}

.stay-swiper .swiper-button-prev {
    position: absolute;
    top: 440px;
    left: unset;
    z-index: 10;
    right: -120px;
    width: 61px;
    height: 61px;
}

.stay-swiper .swiper-button-prev::after {
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="61" height="61" viewBox="0 0 61 61"><g id="Group_189" data-name="Group 189" transform="translate(-1228 -2758)"><g id="Path_116" data-name="Path 116" transform="translate(1228 2758)" fill="none"><path d="M30.5,0A30.5,30.5,0,1,1,0,30.5,30.5,30.5,0,0,1,30.5,0Z" stroke="none"/><path d="M 30.5 2 C 26.65164184570312 2 22.91946029663086 2.753261566162109 19.40713119506836 4.238849639892578 C 16.01361083984375 5.674190521240234 12.96549987792969 7.729419708251953 10.34746170043945 10.34746170043945 C 7.729419708251953 12.96549987792969 5.674190521240234 16.01361083984375 4.238849639892578 19.40713119506836 C 2.753261566162109 22.91946029663086 2 26.65164184570312 2 30.5 C 2 34.34835815429688 2.753261566162109 38.08053970336914 4.238849639892578 41.59287261962891 C 5.674190521240234 44.98638916015625 7.729419708251953 48.03450012207031 10.34746170043945 50.65254211425781 C 12.96549987792969 53.27058029174805 16.01361083984375 55.32580947875977 19.40713119506836 56.76115036010742 C 22.91946029663086 58.24673843383789 26.65164184570312 59 30.5 59 C 34.34835815429688 59 38.08053970336914 58.24673843383789 41.59287261962891 56.76115036010742 C 44.98638916015625 55.32580947875977 48.03450012207031 53.27058029174805 50.65254211425781 50.65254211425781 C 53.27058029174805 48.03450012207031 55.32580947875977 44.98638916015625 56.76115036010742 41.59287261962891 C 58.24673843383789 38.08053970336914 59 34.34835815429688 59 30.5 C 59 26.65164184570312 58.24673843383789 22.91946029663086 56.76115036010742 19.40713119506836 C 55.32580947875977 16.01361083984375 53.27058029174805 12.96549987792969 50.65254211425781 10.34746170043945 C 48.03450012207031 7.729419708251953 44.98638916015625 5.674190521240234 41.59287261962891 4.238849639892578 C 38.08053970336914 2.753261566162109 34.34835815429688 2 30.5 2 M 30.5 0 C 47.34468078613281 0 61 13.65531921386719 61 30.5 C 61 47.34468078613281 47.34468078613281 61 30.5 61 C 13.65531921386719 61 0 47.34468078613281 0 30.5 C 0 13.65531921386719 13.65531921386719 0 30.5 0 Z" stroke="none" fill="%23002b49"/></g><path id="Path_43" data-name="Path 43" d="M0,0,7.918,7.919,15.837,0" transform="translate(1261.313 2781.756) rotate(90)" fill="none" stroke="%23404040" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/></g></svg>');
    width: 100%;
    height: 100%;
}

.stay-swiper .swiper-button-next {
    position: absolute;
    top: 440px;
    left: unset;
    z-index: 10;
    right: -190px;
    width: 61px;
    height: 61px;
}

.stay-swiper .swiper-button-next::after {
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="61" height="61" viewBox="0 0 61 61"><g id="Group_238" data-name="Group 238" transform="translate(1289 2819) rotate(180)"><g id="Ellipse_4" data-name="Ellipse 4" transform="translate(1228 2758)" fill="none" stroke="%23002b49" stroke-width="2"><circle cx="30.5" cy="30.5" r="30.5" stroke="none"/><circle cx="30.5" cy="30.5" r="29.5" fill="none"/></g><path id="Path_43" data-name="Path 43" d="M0,0,7.918,7.919,15.837,0" transform="translate(1261.313 2781.756) rotate(90)" fill="none" stroke="%23002b49" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/></g></svg>');
    width: 100%;
    height: 100%;
}


.stay-swiper-wrapper .category-item {
    color: #002B49;
    cursor: pointer;
}

.stay-swiper-wrapper .category-item:not(:last-of-type) {
    border-right: 1px solid #002B49;
}

.stay-swiper-wrapper .category-item.active {
    font-weight: bold;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .stay-swiper-wrapper .styling-flower {
        display: none;
    }

    .stay-swiper .swiper-slide h3 {
        text-align: left;
        font-size: 22px;
    }
}

/* Three images section */
.three-images-section {
    padding-top: 140px;
}

.three-images-section img {
    aspect-ratio: 812 / 536;
    object-fit: cover;
    margin-bottom: 16px;
}

.three-images-section img.third-image {
    clip-path: polygon(100% 0, 100% 85%, 85% 100%, 0 100%, 0 0);
}

.three-images-section::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="744.61" height="466.29" viewBox="0 0 744.61 466.29"><defs><clipPath id="clip-path"><rect id="Rectangle_102" data-name="Rectangle 102" width="744.61" height="466.29" fill="%23d6d5e6"/></clipPath></defs><g id="Group_243" data-name="Group 243" transform="translate(131)" opacity="0.762"><g id="Group_242" data-name="Group 242" transform="translate(-131 0)" opacity="0.277" clip-path="url(%23clip-path)"><path id="Path_127" data-name="Path 127" d="M283.1,204.875,260.979,180.2a23.335,23.335,0,0,0-34.75,0l-22.117,24.673L66.815,357.987a4.588,4.588,0,0,1-8.006-3.062V29.409A29.4,29.4,0,1,0,0,29.409v403.1c0,30.926,38.169,45.531,58.809,22.5l181.332-202.23a4.59,4.59,0,0,1,6.877.05l177.5,203.488A29.4,29.4,0,0,0,468.3,417.063Z" transform="translate(0 0.001)" fill="%23d6d5e6"/><path id="Path_128" data-name="Path 128" d="M219.845,261.409l22.117,24.673a23.335,23.335,0,0,0,34.75,0l22.117-24.673L436.126,108.3a4.588,4.588,0,0,1,8.006,3.062V436.885a29.4,29.4,0,0,0,58.809,0V33.773c0-30.925-38.169-45.521-58.809-22.5L262.8,213.5a4.59,4.59,0,0,1-6.877-.05L78.426,9.962A29.408,29.408,0,0,0,34.639,49.231Z" transform="translate(241.669 -0.003)" fill="%23d6d5e6"/></g></g></svg>');
    position: absolute;
    top: 0px;
    right: 0;
    width: 420px;
    height: 400px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    min-width: 35%;
    max-width: 60%;
}

.three-images-section::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="640.694" height="2242.427" viewBox="0 0 640.694 2242.427"><defs><clipPath id="clip-path"><path id="Path_97" data-name="Path 97" d="M0,645.347V965.694L320.347,645.347V325Z" transform="translate(0 -325)" fill="%23a7c6ed"/></clipPath><clipPath id="clip-path-2"><path id="Path_102" data-name="Path 102" d="M65,515.347H385.347V195Z" transform="translate(-65 -195)" fill="%23a7c6ed"/></clipPath><clipPath id="clip-path-3"><path id="Path_103" data-name="Path 103" d="M320.347,0,0,320.347H320.347Z" fill="%23a7c6ed"/></clipPath></defs><g id="triangle_pattern" data-name="triangle pattern" opacity="0.121"><g id="Group_231" data-name="Group 231" transform="translate(0 1601.734)"><g id="Group_230" data-name="Group 230" clip-path="url(%23clip-path)"><path id="Path_96" data-name="Path 96" d="M358.416,1426.249,550.624,657.416,166.208,273-26,1041.832Z" transform="translate(-102.139 -529.277)" fill="%23a7c6ed"/></g></g><path id="Path_98" data-name="Path 98" d="M0,195,320.347,515.347V195Z" transform="translate(0 766.04)" fill="%23a7c6ed"/><path id="Path_99" data-name="Path 99" d="M226.4,356.4V195H65Z" transform="translate(255.347 766.041)" fill="%23a7c6ed"/><path id="Path_100" data-name="Path 100" d="M162.638,1218.576H322.811L162.638,1058.4ZM0,260V580.352L320.347,260Z" transform="translate(0 1021.387)" fill="%23a7c6ed"/><path id="Path_101" data-name="Path 101" d="M65,580.351H385.347L65,260Z" transform="translate(255.346 1021.385)" fill="%23a7c6ed"/><g id="Group_233" data-name="Group 233" transform="translate(320.347 961.041)"><g id="Group_232" data-name="Group 232" clip-path="url(%23clip-path-2)"><rect id="Rectangle_91" data-name="Rectangle 91" width="453.039" height="453.039" transform="translate(-160.173 160.173) rotate(-45)" fill="%23a7c6ed"/></g></g><g id="Group_235" data-name="Group 235"><g id="Group_234" data-name="Group 234" clip-path="url(%23clip-path-3)"><rect id="Rectangle_92" data-name="Rectangle 92" width="453.039" height="453.039" transform="translate(-160.173 160.173) rotate(-45)" fill="%23a7c6ed"/></g></g><path id="Path_104" data-name="Path 104" d="M0,385.347,320.347,705.694V385.347L0,65Z" transform="translate(0 255.347)" fill="%23a7c6ed"/></g></svg>');
    position: absolute;
    top: 0;
    left: 0;
    width: 390px;
    height: 100%;
    content: '';
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    three-images-section {
        padding-top: unset;
    }

    .three-images-section img.first-image {
        height: 100%;
        object-fit: cover;
        display: block;
        width: 100%;
    }

    .three-images-section img.second-image,
    .three-images-section img.third-image {
        width: 100%;
        height: 50%;
        object-fit: cover;
        padding-bottom: 5px;
        margin-bottom: 0;
    }

    .three-images-section img.third-image {
        padding-top: 5px;
        padding-bottom: unset;
    }
}

.explore-block {
    position: relative;
}

.explore-block img {
    object-fit: cover;
}

.explore-block h2 {
    background-color: #E6D0A0;
    background-image: radial-gradient(circle, #B58A5F, #E6D0A0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 5.5em;
    margin-left: 30px;
}

.explore-block:before {
    content: '';
    position: absolute;
    left: 0;
    background-image: radial-gradient(#116F86, #004E61);
    bottom: 50%;
    height: 70%;
    width: 100%;
    clip-path: polygon(0 0, 100% 35%, 100% 100%, 0% 100%);
    z-index: -1;
}

.explore-block:after {
    content: '';
    position: absolute;
    left: 0;
    background-image: linear-gradient(#E7F0FA, #D1CDE0);
    bottom: 90%;
    height: 100%;
    width: 100%;
    z-index: -2;
    clip-path: polygon(0 120%, 100% 0, 100% 100%, 0% 100%);
}


.explore-block .col-md-4 .explore-item {
    aspect-ratio: 1.45;
}

.explore-block .explore-item {
    aspect-ratio: 1.7;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.explore-block .explore-item .content {
    z-index: 1;
}

.explore-block .explore-item .content * {
    color: #fff;
}

.explore-block .explore-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, #000, transparent 40%);
    z-index: 0;
}

.explore-block-with-tabs h2 {
    font-size: 75px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.explore-block-with-tabs .col-12 img {
    aspect-ratio: 536 / 370;
    object-fit: cover;
}

.explore-block-with-tabs .bottom-button {
    width: 100%;
    height: 42px;
    background: #004E61;
    color: #fff;
    margin-top: 10px;
    padding: 9px 30px;
}

.explore-block-with-tabs .right-side img {
    height: calc(100% - 52px);
    max-height: calc(100% - 52px);
    aspect-ratio: 1;
}

.explore-block-with-tabs .left-side img {
    aspect-ratio: 536/754;
}

.explore-block-with-tabs .categories {
    margin-top: auto;
    display: flex;
    gap: 10px;
    color: #fff;
    justify-content: flex-end;
    width: 100%;
    flex-wrap: wrap;
}

.explore-block-with-tabs .categories .category-item {
    padding: 2px 10px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
	border: none;
}

.explore-block-with-tabs .categories .category-item.active {
    background: #A7C6ED;
    color: #3A3A3A;
}

.explore-block.explore-block-with-tabs {
    padding-bottom: 160px;
    margin-top: 140px;
}

.explore-block.explore-block-with-tabs::after {
    content: unset;
}

.explore-block.explore-block-with-tabs::before {
    height: 68%;
}

@media screen and (max-width: 767px) {
    .explore-block {
        margin-top: 80px;
    }

    .explore-block:after {
        content: unset;
    }

    .explore-block:before {
        clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
    }

    .explore-block .mobile-hidden {
        display: none;
    }

    .explore-block .explore-item,
    .explore-block .col-md-4 .explore-item {
        aspect-ratio: 1;
    }

    .explore-block .explore-item .content h3 {
        font-size: 18px;
    }

    .explore-block .explore-item .content .btn-underline {
        font-size: 12px;
    }
}

.images-grid-section a {
    color: #3A3A3A;
}

.footer-section {
    position: relative;
    margin-top: 180px;
}

.footer-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #002B49;
    width: 100%;
    height: 135%;
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0% 100%);
}

.footer-section::after {
    content: '';
    position: absolute;
    right: 0;
    background-image: linear-gradient(#E7F0FA, #D1CDE0);
    bottom: 70%;
    height: 85%;
    width: 50%;
    z-index: -2;
    clip-path: polygon(0 150%, 100% 0, 100% 100%, 0% 100%);
}

.home .footer-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: unset;
    background-image: linear-gradient(#E7F0FA, #D1CDE0);
    bottom: 80%;
    height: 150%;
    width: 100%;
    z-index: -2;
    clip-path: polygon(0 150%, 100% 0, 100% 100%, 0% 100%);
}

.footer-section * {
    color: #fff;
}

.footer-section .footer-col-last a {
    font-size: 26px;
    letter-spacing: 4px;
}

.footer-section .footer-content p {
    font-size: 20px;
}

.footer-section .footer-content h4 {
    font-size: 30px;
}

.footer-section .footer-bottom a {
    font-size: 22px;
}

.footer-section a:hover {
    color: #d9dae9;
}

.footer-section p {
    font-weight: 100;
    letter-spacing: 0.5px;
    font-family: 'Avenir';
}

.footer-section li {
    list-style: none;
}

.footer-section .copyright-menu {
    max-width: 1200px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.footer-section .footer-social {
    margin-top: 60px;
}

.footer-section .footer-social .list-inline-item:not(:last-child) {
    margin-right: 40px;
}

.footer-section .footer-social img {
    width: 40px;
    height: 40px;
}

.footer-section #logo-footer {
    max-width: 500px;
    width: 90%;
}

.footer-section .footer-bottom {
    border-top: 1px solid #707070;
    margin-top: 20px;
    position: relative;
    padding-top: 25px;
}

.footer-section .footer-menu {
    font-size: 24px;
    letter-spacing: 3px;
    padding-left: 0;
}

.footer-section .footer-menu li {
    margin-bottom: 10px;
}


.content-block h2 {
    /* font-size: 36px; */
    margin-bottom: 25px;
}

.content-block p {
    font-size: 20px;
}

.amenities-block {
    position: relative;
    padding: 100px 0;
}

.amenities-block h2 {
    font-size: 54px;
    letter-spacing: 3px;
}

.amenities-block .amenity-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 5px;
}

.amenities-block .row {
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.amenities-block .amenity-item span {
    font-family: 'Spinnaker';
    font-size: 20px;
    margin-top: 12px;
}

.amenities-block .amenity-item img {
    height: 100px;
}

.amenities-block::before {
    content: '';
    position: absolute;
    left: 0;
    background-image: linear-gradient(#E7F0FA, #D1CDE0);
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
    transform: skewY(355deg);
}

/*
    ACCOMODATIONS GRID - START
*/
.accommodations-grid {}

.accommodations-grid .accomdations-room-gallery-item {
    height: auto;
    aspect-ratio: 1.5;
}

.accommodations-grid .accomdations-room-gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.accommodations-grid .accomdations-room-gallery .slick-next {
    background-image: url(../images/arrow-right.svg);
    background-repeat: no-repeat;
    width: 46px;
    height: 46px;
    display: block;
    font-size: 60px;
    line-height: 48px;
    border-radius: 100px;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    text-indent: -9999px;
    background-color: transparent;
    background-position: center;
    background-size: contain;
    padding: 0;
    z-index: 1;
    border: none;
}

.accommodations-grid .accomdations-room-gallery .slick-prev {
    background-image: url(../images/arrow-left.svg);
    background-repeat: no-repeat;
    width: 46px;
    height: 46px;
    display: block;
    font-size: 60px;
    line-height: 48px;
    border-radius: 100px;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    text-indent: -9999px;
    background-color: transparent;
    background-position: center;
    background-size: contain;
    padding: 0;
    z-index: 1;
    border: none;
}

.accommodations-grid .accomdations-room-info h2 {
    font-size: 44px;
    font-family: "meno-banner";
}

.accommodations-grid .button-container .button {
    padding: 16px 48px;
    margin-right: 10px;
}

.accommodations-grid .items-list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 45px 0;
}

.accommodations-grid .items-list .item {
    font-size: 16px;
}

.accommodations-grid .accomdations-room-info .content {
    font-size: 20px;
    font-family: 'Spinnaker';
}

.accommodations-grid .button-container .btn {
padding-left: 40px;
padding-right: 40px;
}

/*
    ACCOMODATIONS GRID - END
*/

.two-images-content {
    position: relative;
}

.two-images-content img {
    aspect-ratio: 400/550;
    object-fit: cover;
}

.two-images-content.content-on-bottom img {
    aspect-ratio: 536/570;
}

.two-images-content.content-on-bottom .col-md-8 img {
    aspect-ratio: 1080/820;
}

.two-images-content.content-on-bottom .content-holder {
    margin-top: -18%;
    background-color: #fff;
    padding: 20px 40px;
}

.two-images-content h2 {
    /* font-size: 46px; */
}

.two-images-content .title.inside-content {
    display: none;
}

.page-id-5168 .two-images-content .title.inside-content {
    display: inline-block;
    font-size: 4em;
    margin-top: -15px;
}

.page-id-5168 .two-images-content .title {
    display: none;
}

.two-images-content:not(.content-on-bottom)::before {
    content: '';
    position: absolute;
    bottom: 5%;
    right: 0;
    background-image: linear-gradient(158deg, transparent 30%, #E3EDEE);
    width: 100%;
    height: 100%;
    transform: skewY(8deg);
}

.two-images-content .overlay-images {
    display: flex;
}

.two-images-content .overlay-images img {
    width: 100%;
    aspect-ratio: 540/580;
    object-fit: cover;
}

.two-images-content .overlay-images .first-image {
    margin-top: 10%;
    width: 60%;
}

.two-images-content .overlay-images .second-image {
    margin: auto;
    margin-left: -15%;
    margin-top: 0;
    width: 60%;
    position: relative;
}

.two-images-content .overlay-images .second-image img {
    position: relative;
    z-index: 1;
}

.two-images-content .overlay-images .second-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    top: 10px;
    right: 10px;
    z-index: 1;
}

.three-items-block .item-holder {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    display: flex;
}

.three-items-block .item-holder img {
    position: absolute;
    width: 100%;
    z-index: -1;
    aspect-ratio: 1;
    object-fit: cover;
}

.three-items-block .item-holder::before {
    content: '';
    position: absolute;
    background-color: #00000040;
    width: 100%;
    height: 100%;
}

.three-items-block .item-holder .content {
    margin: 15px 10px;
    margin-top: auto;
    z-index: 1;
}

.three-items-block .item-holder .content * {
    color: #fff;
    font-size: 22px;
}

.three-items-block .item-holder .content a {
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: underline;
}


/* Map Block */
.map_block h1:before,
.map_block h2:before {
    content: none;
}

.filter-group::-webkit-scrollbar {
    width: 6px;
}

.filter-group::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.filter-group::-webkit-scrollbar-thumb {
    background: #9a9893;
    outline: 1px solid #333233;
}

#map-popup {
    position: absolute;
    /*	top: 5%;*/
    /* bottom: 0;*/
    /*	left: 33%;*/
    width: 350px;
    z-index: 1;
    border-radius: 0;
    color: #000;
    font-family: Copperplate;
    font-size: 16px;
    letter-spacing: 0.91px;
    background: #ffffff;
    padding: 0;
    /* height: 100%;*/
    transition: opacity .5s ease;
    overflow-y: auto;
    overflow-x: auto;
    opacity: 0;
}

#map-popup.active {
    opacity: 1;
}

#map-popup #map-popup-close {
    position: absolute;
    right: 5px;
    top: 5px;
    opacity: 0;
    cursor: pointer;
    line-height: 1;
}

#map-popup.active #map-popup-close {
    opacity: 1;
    transition: opacity .5s ease .5s;
}

/*#map-popup #map-popup-image {opacity: 0;width: 100%;}#map-popup.has-image #map-popup-image {height: 200px;}#map-popup.active #map-popup-image {opacity: 1;transition: opacity .5s ease .5s;}*/
#map-popup #map-popup-content {
    padding: 25px 30px;
    opacity: 0;
}

#map-popup #map-popup-content h6 {
    font-size: 18px;
}

#map-popup #map-popup-content p {
    font-size: 15px;
    margin-bottom: 15px !important;
    line-height: 1.3;
}

#map-popup #map-popup-content .button {
    /* font-size: 15px;*/
    /*		font-weight: normal;*/
    /*		padding: 5px 0;*/
    /*		border-bottom: 2px solid;*/
}

#map-popup.active #map-popup-content {
    opacity: 1;
    transition: opacity .5s ease .5s;
}

.mapboxgl-map {
    font: inherit !important;
}

.mapboxgl-popup-content {
    text-align: center;
    padding: 40px 25px !important;
    min-width: 275px;
}

.mapboxgl-popup-content h3 {
    font-size: 16px;
}

.mapboxgl-popup-content .button {
    font-size: 12px;
    padding: 12px 20px;
}

.mapboxgl-popup-close-button {
    font-size: 25px;
    right: 5px !important;
    top: 5px !important;
}

.filter-group {
    position: absolute;
    z-index: 3;
    color: #fff;
    background: #002b49d5;
    padding: 30px 35px;
    font-size: 32px;
    max-height: 650px;
    box-shadow: none;
    top: 50%;
    transform: translateY(-50%);
    left: 3%;
    width: auto;
}

.filter-group .section-heading {
    font-size: 24px;
    color: #fff;
}

.mapfiler>label {
    display: none;
}

.mapfiler.active .filter-group-toggle {
    background: #A7C6ED;
    border-radius: 15px;
}

.filter-group-toggle {
    margin: 0;
    cursor: pointer;
    background: transparent;
    font-weight: 100;
    font-size: 18px;
    color: #fff;
    white-space: nowrap;
    display: inline-block;
    line-height: 1;
    transition: all 0.35s;
    padding: 5px 15px;
}

.mapfiler:last-of-type .filter-group-toggle {
    border-bottom: 0;
}

.filter-group-toggle>svg {
    width: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
}

.filter-group-toggle>i {
    font-size: 60px;
    display: inline-block;
    vertical-align: middle;
}

.mapboxgl-ctrl-bottom-left {
    display: none !important;
}

.mapboxgl-ctrl-bottom-right {
    display: none !important;
}

.mapboxgl-marker {
    cursor: pointer;
    border-radius: 100%;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.mapboxgl-marker:after {
    content: '';
    position: absolute;
    top: 97%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #006271;
}

/* End MAP BLOCK */

@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
}

@media (min-width: 1880px) {
    .container {
        max-width: 1550px;
    }
}


@media (max-width: 768px) {
    .availability-block {
        position: static;
        max-width: unset;
        width: 100%;
    }

    .availability-block .availability-input label {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .availability-input {
        height: 60px;
    }

    .hero-large::after,
    .hero-large::before,
    .hero-wrapper-large::before,
    .hero-wrapper-large::after {
        content: unset;
    }

    .home-hero-logo {
        margin: auto;
		min-width: 200px;
    	width: 100%;
    }

    .hero-large {
        height: 80vh;
        clip-path: none;
    }

    .nav>li {
        margin: 30px auto;
    }

    button#close-menu {
        left: 0;
    }

    .home .footer-section::after,
    .footer-section::after {
        content: '';
        position: absolute;
        left: 0;
        right: unset;
        background-image: linear-gradient(#E7F0FA, #D1CDE0);
        bottom: 75%;
        height: 35%;
        width: 100%;
        z-index: -2;
        clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
    }

    .footer-section::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #002B49;
        width: 100%;
        height: 110%;
        clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
    }

    .footer-section .footer-menu {
        padding-left: 0;
    }

    .footer-section #logo-footer {
        max-width: 220px;
    }

    .footer-section .copyright-menu {
        padding-left: 0;
        margin-bottom: 0;
    }

    .footer-section .copyright-menu a {
        font-size: 10px;
        color: #727272;
    }

    .home-menu {
        gap: 30px;
        width: 100%;
    }

    .image-content-section.wide-image .title {
        margin-right: unset;
    }

    .image-content-section.outside-image .styling-flower {
        display: none;
    }

    .page-id-6018 .three-items-block {
        margin-bottom: 100px;
    }
}


/* gallery */
.gallery .gallery-image {
    height: 0;
    padding-bottom: 100%;
    display: block;
    position: relative;
}

.gallery .image-8 .gallery-image {
    padding-bottom: 49%;
}

.featherlight .featherlight-content {
    border: 0;
    padding: 0;
    max-height: 80%;
    background: transparent;
    overflow: visible;
}

.featherlight-next,
.featherlight-previous {
    top: 0;
}

.featherlight-next {
    right: 0;
    left: 90%;
}

.featherlight-previous {
    left: 0;
    right: 90%;
}

.featherlight-next:hover,
.featherlight-previous:hover {
    background: transparent;
}

.featherlight-next span,
.featherlight-previous span {
    font-size: 40px;
    margin-top: 0;
    line-height: 1;
    text-shadow: none;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.featherlight-next span:hover,
.featherlight-previous span:hover {
    display: block;
}

.featherlight-next svg,
.featherlight-previous svg {
    fill: transparent;
    width: 55px;
    height: 55px;
    transition: all 0.4s ease-in-out;
}

.featherlight-next:hover svg,
.featherlight-previous:hover svg {
    fill: #fff;
}

.featherlight .featherlight-close-icon {
    top: -25px;
    right: -25px;
    width: auto;
    line-height: 1;
    outline: 0 !important;
    background: transparent;
}

.featherlight .featherlight-close-icon .close-icon {
    display: block;
}

.wsp-container {
    text-align: left;
}

.privacy-policy p {
    font-size: 18px;
}
.privacy-policy tr {
    border-bottom: 1px solid #000;
}
.privacy-policy td {
    vertical-align: top;
    font-size: 18px;
    padding: 40px 15px;
}
.privacy-policy td p {
    font-size: 18px;
}

.video-pause-btn, .video-play-btn{
    position: absolute;
    right: 10vw;
    bottom: 15vh;
    border: none;
    background: transparent;
    z-index: 5;
    cursor: pointer;
}

.video-pause-btn svg, .video-play-btn svg{
	width: 40px;
    height: 40px;
}

.video-pause-btn path, .video-play-btn path{
	fill:#fff;
}

.video-play-btn{
	display:none;
}

@media only screen and (max-width:767px){
	.video-pause-btn, .video-play-btn {
    	bottom: 5vh;
		right:5vw;
	}
	
	.video-pause-btn svg, .video-play-btn svg {
    	width: 30px;
    	height: 30px;
	}
}

.datepicker-days td.day::focus{
	background:#eee;
}


.homepage-popup{
     background: #fff;
/*     padding: 20px 30px 30px; */
    z-index: 100;
    position: fixed;
    width: calc(100% - 40px);
    min-width: 300px;
    max-width: 450px;
    left: 20px;
    bottom: 20px;
	    border: 3px solid #006271;
    flex-direction: column;
    display: flex;
    transition: .3s;
}

@media only screen and (max-width:600px){
	.homepage-popup{
    	width: calc(100% - 20px);
    	left: 10px;
    	bottom: 10px;
	}
}

.homepage-popup h3 {
       font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    font-family: 'Spinnaker';
    background: none;
    margin: 15px 0;
    font-style: normal;
    text-transform: uppercase;
}

.homepage-popup p{
	margin-bottom:15px;
}

.popup-close{
position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    font-size: 26px;
    line-height: 0;
    color: #0f6270;
    border: 0;
    width: 30px;
    height: 40px;
}