/*===========================================================
 Custom Variable
============================================================*/
:root {
    /*   Colors */
    --green: #92c242;
    --red: #cc2c33;
    --blue: #8dd0e7;
    --blue-light: #e2f8ff;
    --white: #fff;
    --black: #000;

    /* Font sizes    */
    --xxl: 40px;
    --xl: 30px;
    --lg: 20px;
    --sm: 17px;
    --xs: 14px;

    --wpforms-button-background-color: var(--blue);
    --wpforms-button-border-color: var(--blue);
    --wpforms-page-break-color: var(--blue);
}

/*===========================================================
 Common CSS
============================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-size: var(--sm);
    /*font-family: 'Fustat', Arial, sans-serif;*/
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    font-weight: 400;
    color: var(--black);
    letter-spacing: normal;
    overflow: hidden;
}

ul {
    padding: 0;
    margin: 0;
}

.actualcontent ul,
.actualcontent ol {
  padding-left: 20px;
}

li,
li:hover,
a:hover,
button:hover,
.btn,
.btn:hover {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none !important;
}
a {
    color: currentColor; /*this makes sure that the link always has context color.*/
    text-decoration: none;
}

.maincontent a {
    border-bottom: 1px solid currentColor;
    /*  this allows us to set the link border bottom in content, to show that it is clickable. But in buttons it should not apply, so we may need to overwrite this in buttons if needed*/
}

a:hover {
    text-decoration: none !important;
    /*outline: 2px dotted currentColor !important;*/
}

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

img[src$='.svg'] {
    width: 100%;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid var(--white);
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

#npreOverlay {
    background: var(--preloaderBg);
}

#main {
    /* padding-top: 26px; */
}

.row {
    --gutter-x: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.container {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1420px;
    padding: 0 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.4;
}

h1,
h2 {
    font-size: var(--xxl);
}

h3 {
    font-size: var(--xl);
}

h4,
h5,
h6 {
  font-size: var(--lg);
}
/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: #6c6c6c;
    font-size: var(--sm);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: #6c6c6c;
    font-size: var(--sm);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: #6c6c6c;
    font-size: var(--sm);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: #6c6c6c;
    font-size: var(--sm);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

/* ========================================================
SCROLL & PROGRESS UTILITIES
   ======================================================== */
.go-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 999;
    display: none;
}

.go-top img {
    width: 35px;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid var(--white);
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 20px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap svg.progress-circle path {
    fill: none;
    stroke: grey;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.angle-top {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    transform: translate(-50%, -50%);
    transition: 0.5s;
}

.progress-wrap:hover .angle-top path {
    fill: var(--primary-bg);
}
/*===========================================================
Loader
===========================================================*/

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 99999999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #58b8cb;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: 1s infinite spin;
    animation: 1s infinite spin;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}
/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    padding: 25px 0;
}

.header-area .wave-container path {
    transition: all 0.3s ease;
}

.header-area:hover .wave-container path {
    fill-opacity: 1;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.menu-left {
}
.menu-left span {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: #ffce00;
}
.menu-left a {
    border: 0;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    gap: 10px;

    color: var(--white);
}

.menu-left a img {
    width: 110px;
}

.menu {
    display: flex;
    align-items: center;
}
.menu ul {
    margin: 0;
}
.menu ul li {
    list-style: none;
    display: inline-block;
    margin: 0 !important;
    padding-left: 28px;
}

.menu ul li a {
    font-size: var(--sm);
    font-weight: 600;
    line-height: 1.5;
    color: white;
    text-decoration: none;
}

.menu ul li a:hover {
    color: #5680bc;
}

.dropdown-menu {
    margin: 0 !important;
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: var(--sm);
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: var(--black);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.header-bg {
  pointer-events: none !important;
}

.header-bg,
.header-area {
    background: transparent;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

body.admin-bar .header-area {
    top: 32px;
}

.header-area {
    z-index: 1000;
}

.header-area > .container {
    z-index: 1000;
    position: relative;
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url("data:image/svg+xml,%3Csvg%20width%3D%221440%22%20height%3D%22811%22%20viewBox%3D%220%200%201440%20811%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%221440%22%20height%3D%22811%22%20fill%3D%22%238DD0E7%22%2F%3E%3Cpath%20opacity%3D%220.2%22%20d%3D%22M1460%20811L710.081%20811C667.045%20705.646%20634.461%20593.893%20726.565%20322.429C763.043%20214.915%20688.87%2040.9596%20642.998%20-7.10207e-06L1460%20-6.73159e-06L1460%20811Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");

    background-size: cover;
    background-position: center center;
    display: flex;
	   align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    z-index: 1000;
    padding: 50px 25px;
    overflow: hidden;
    overflow-y: visible;

    display: none;
}

.fullscreen-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu > .menu-container {
    min-height: 500px;
}

body.menuactive {
    overflow: hidden !important;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.menu-container {
    width: 100%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.main-menu {
    width: 100%;
    list-style: none;

    position: relative;
}

.main-menu li {
    margin: 15px 0;
}

.main-menu li.lang-item {
    display: inline-block;
    width: auto;

    margin-right: 10px;
}

.main-menu li.lang-item img {
    width: 25px;
}

.main-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: var(--xxl);
    font-weight: 400;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    position: relative;
    border: 0;
}

.menu-toggle {
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    display: none;
}

.menu-item-has-children > ul {
    position: absolute;
    top: 5px;
    right: 0;
    list-style: none;
    transition: opacity 0.3s;
    pointer-events: auto;
}

.submenu-content {
    list-style: none;
    display: none;
}

.submenu-content.active {
    display: block;
    z-index: 1001;
}

.submenu-content li {
    margin: 10px 0;
}

.submenu-content a {
    color: var(--white);
    text-decoration: none;
    font-size: var(--xl);
    transition: color 0.3s;
    border: 0;
}
.menu-item-has-children.active .menu-toggle::after {
    transform: rotate(180deg);
}
.menu-item-has-children.active > a {
    border-bottom: 1px solid currentColor;
}
.submenu-content a:hover {
    color: #ddd;
}

.floating-info {
    position: fixed;
    top: 50%;
    right: -80px;

    transform: translateY(-50%);
    transition: 0.5s;
    z-index: 100;
}

.floating-info:hover,
.floating-info:active,
.floating-info:focus,
.floating-info.is-active {
    right: 5px;
}

.floating-info button {
    cursor: pointer;

    background: var(--blue);
    color: var(--white);
    border-radius: 100%;

    font-size: 44px;

    width: 150px;
    height: 150px;

    text-align: left;
    padding-left: 30px;

    border: none;
    /*outline: 1px solid #fff;*/
    animation: pulse-grow 2s infinite ease-in-out;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.floating-info button img {
    width: 25px;
    height: auto;

    position: relative;
    left: 0;

    transition: all 0.3s ease;
}

.floating-info button img:nth-of-type(2) {
    left: -15px;

    width: 23px;
}

.floating-info:hover button,
.floating-info:focus button,
.floating-info:active button {
    animation: pulse-grow-fast 1s ease-in-out infinite;

    text-align: center;
    padding-left: 0;

    align-items: center;
}

.floating-info.is-active button {
    animation: unset !important;

    text-align: center;
    padding-left: 0;

    align-items: center;
}

.floating-info:hover button img,
.floating-info:focus button img,
.floating-info:active button img,
.floating-info.is-active button img {
    opacity: 0;
}

.floating-info:hover button img:nth-of-type(2),
.floating-info:focus button img:nth-of-type(2),
.floating-info:active button img:nth-of-type(2),
.floating-info.is-active button img:nth-of-type(2) {
    opacity: 1;
    left: 0;
}

/* Keyframes for pulsating and growing effect */
@keyframes pulse-grow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(141, 208, 231, 0.7); /* adjust color */
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(141, 208, 231, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(141, 208, 231, 0);
    }
}

@keyframes pulse-grow-fast {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(141, 208, 231, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(141, 208, 231, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(141, 208, 231, 0);
    }
}

.modal,
.modal .modal-backdrop {
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
}

.modal {
	position: fixed;
	z-index: 100;
}

.modal.is-active {
	display: block !important;
}

.modal .modal-backdrop {
	content: '';

	position: absolute;
	background-color: var(--black);
	opacity: 0.6;
}

.modal .modal-close {
	cursor: pointer;

	position: absolute;
	right: 2rem;
	top: 2.5rem;
	font-size: 30px;
}

.floating-info-content-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    overflow-y: auto;
    background: var(--blue-light);

    width: 100%;
    max-width: 960px;
    max-height: calc(100vh - 125px);
    padding: 2rem;
}

.floating-info-content-intro {
  text-align: center;

  max-width: 70%;
  margin: 0 auto 25px auto;
}

.floating-info-content-table {
    display: flex;
    flex-wrap: wrap;
}

.floating-info-content-table {
    border-bottom: 1px solid var(--blue);
}

.floating-info-content-table > * {
    flex: 1 1 50%;
    width: 50%;

    padding: 10px 20px;

    display: flex;
    gap: 20px;

    border-top: 1px solid var(--blue);
}

.floating-info-content-table > *:nth-child(2n-1) {
    border-right: 1px solid var(--blue);
}

.floating-info-content-table > *:hover,
.floating-info-content-table > *:focus,
.floating-info-content-table > *:active {
    background-color: var(--blue);
    color: var(--white);
}

.floating-info-content-table > * .floating-info-single-icon i,
.floating-info-content-table > * .floating-info-single-icon img {
    line-height: 1.4;
}

.floating-info-content-table > * .floating-info-single-icon i {
    font-size: 30px;
}

.floating-info-content-table > * .floating-info-single-icon img {
    height: 30px;
    width: auto;
}

/*===========================================================
Hamberger
============================================================*/

.hamburger {
    z-index: 100;
    cursor: pointer;
    background: none;
    border: none;
    width: 46px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    color: var(--white);
    z-index: 9999;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 100px;
    background-color: var(--white);
    transition: all 0.3s ease;
}
.hamburger span:nth-child(2) {
    width: 80%;
}

.hamburger span:nth-child(3) {
    width: 50%;
}

.hamburger.active span {
    width: 100%;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    background-color: var(--white);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
    background-color: var(--white);
}
/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;

    padding-top: 175px;
    padding-bottom: 100px;
}

.slideout-menu ul {
    display: block;
    position: relative;
    top: 0;
    left: 0;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.slideout-open .slideout-menu {
    background: var(--blue-light);
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: #bdc3c7;
}

.menu-section-list li a {
    line-height: 2;
    color: var(--white);
}

.menu-section-list li {
    display: block;
}

#menu .wb-meta-area {
    padding: 25px 10px;
}

#menu .wb-meta-area .pll-switcher-select {
    color: var(--black);
}

#menu ul li {
    padding-left: 0;
}

#menu ul li ul li {
    padding-left: 28px;
}

#menu ul ul {
    display: none;
}

/*===========================================================
 Hamberger
===========================================================*/

.menu ul li .dropdown-menu li {
    display: block;
    position: relative;
}

.menu ul li .dropdown-menu li a {
    padding: 5px 15px;
    line-height: 1.2;
    display: block;
}

.dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.dropdown a {
    position: relative;
}

.dropdown > a:hover::after {
    color: #5680bc;
}

.dropdown > a::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

/*===========================================================
 Banner
===========================================================*/
.banner-area {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;

    padding-top: 170px;
}

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

.banner-area > .banner-area-slider * {
    width: 100%;
    height: 100%;
}

.banner-area > .banner-area-slider img {
    object-fit: cover;
}

.banner-area > .container {
    position: relative;
}

.banner-text {
    max-width: 630px;
    width: 100%;
    margin-bottom: 70px;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 20px 0px #000;

    transition: all 0.3s ease;
}
.banner-text:hover {
    background: rgba(0, 0, 0, 1);
}
.banner-text * {
    font-size: var(--xxl);
    font-weight: normal;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px !important;
}

.banner-text p,
.banner-text a {
    font-size: var(--sm);
    line-height: 1.75;
    margin: 0 !important;
}

.banner-text a {
    margin-top: 20px !important;
    display: inline-block;
}
/* ========================west-coast=============== */
.west-coast-area {
    padding: 120px 0;
}
.west-coast-inner {
    display: flex;
    align-items: center;
}
.west-coast-text {
    max-width: 445px;
    width: 100%;
}
.west-coast-img {
    max-width: 770px;
    width: 100%;
}
.west-coast-text h2 {
    font-size: var(--xl);
    font-weight: bold;
    line-height: 1.29;
    color: black;
}
.west-coast-text p {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.44;
    color: black;
}
/* =====================resorts-area============= */

.wave-container {
    position: relative;
    width: 100%;
    min-height: 100px;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
}
.contact-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.resorts-area {
    background-color: #8dd0e7;
    padding-top: 120px;
}

.resorts-text p {
    font-size: var(--xl);
    font-weight: normal;
    line-height: 1.27;
    color: white;
}
.contact-area {
    background-color: #8dd0e7;
    padding-top: 120px;
    padding-bottom: 80px;
}
.contact-right {
    max-width: 515px;
    width: 100%;
}
.contact-left {
    width: 50%;
}
.wpforms-form label:not(.wpforms-field-sublabel),
.wpforms-form legend {
    font-size: var(--lg) !important;
    font-weight: bold !important;
    line-height: 1.4 !important;
    display: block !important;
    margin-bottom: 5px !important;
    text-transform: uppercase !important;
}

.footer-area .wpforms-form label {
    color: #fff !important;
}

.wpforms-form input:not([type="checkbox"]):not([type="radio"]),
.wpforms-form textarea {
    width: 100% !important;
    height: 48px !important;
    border: solid 2px currentColor !important;
    background: transparent !important;
    padding: 0 10px !important;
    font-size: var(--sm) !important;
}

.wpforms-form input.wpforms-smart-phone-field {
    padding-left: 49px !important;
}

.footer-area .wpforms-form input:not([type="checkbox"]):not([type="radio"]),
.footer-area .wpforms-form textarea {
    color: #fff !important;
    border-color: #fff !important;
}

.wpforms-form textarea {
    min-height: 120px !important;
}

.wpforms-field-checkbox label {
    text-transform: uppercase !important;
    font-size: var(--xs) !important;
    font-weight: bold !important;
    line-height: 1.57 !important;
}

.footer-area .wpforms-field-checkbox label {
    color: #fff !important;
}

.wpforms-field-checkbox input {
    padding: 0;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
    pointer-events: all;
}

.footer-area button[type="submit"] {
    color: var(--white) !important;
    border-color: var(--white) !important;
}

.footer-area button[type="submit"]:hover,
.footer-area button[type="submit"]:focus,
.footer-area button[type="submit"]:active {
    color: var(--blue) !important;
    background-color: var(--white) !important;
}

.checkbox label {
    position: relative;
    cursor: pointer;
}

.checkbox label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--white);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    top: -2px;
}

.checkbox input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}
.contact-text h2 {
    line-height: 1.2;
    margin-bottom: 25px;
}
/* .contact-text div {
    margin-top: 25px;
} */
.contact-text h3 {
    font-size: var(--lg);
    font-weight: bold;
    line-height: 1.4;
    text-align: left;
    color: white;
    margin: 0;
    text-transform: uppercase;
}

.contact-text a {
    font-size: var(--xl);
    font-weight: bold;
    line-height: 1.2;
    display: inline;
    color: var(--white);
    text-decoration: none;
    border: 0;
}

.contact-text h3:nth-of-type(2) {
    margin-top: 25px;
}
/* ==========================Slider area=========== */

/* ==========================Video area=========== */
.video-area {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    min-height: 725px;
}
.video-img {
    display: flex;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0 !important;
    color: var(--white);
}

/* ======================Footer ARea============= */
.footer-inner {
    padding-bottom: 60px;
    display: flex;
}

.footer-inner .footer-logo a {
  border-bottom: 0 !important;
}

.footer-inner .footer-logo img {
    width: 110px;
}

.footer-left {
    display: flex;
    gap: 95px;
    width: 50%;
}
.footer-menu.footer-description {
    width: 440px;
}
.footer-menu h3 {
    font-size: var(--sm);
    font-weight: bold;
    line-height: 1.44;
    color: black;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer-menu ul {
    width: 100%;
    column-gap: 15px;
}
.footer-menu ul li {
    margin: 0 !important;
    list-style: none;
}
.footer-menu ul li a,
.footer-menu .wp-block-column p {
    border: 0;
    text-decoration: none;
    font-size: var(--lg);
    font-weight: normal;
    line-height: 1.4;
    color: black;
}

.footer-bttm {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--black);
    padding: 20px 0;
    flex-direction: row-reverse;

    margin-bottom: 50px;
}
.footer-bttm p {
    font-size: var(--xs);
    font-weight: normal;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 !important;
}
.footer-bttm ul {
    display: flex;
    gap: 20px;
    margin: 0;
}
.footer-bttm ul li {
    list-style: none;
    margin: 0 !important;
}

.footer-bttm ul li a {
    font-size: var(--xs);
    font-weight: normal;
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
    border: 0;
}
.footer-social {
    display: flex;
    gap: 10px;

    padding: 10px 0;
}
.footer-social a {
    color: var(--black);
    font-size: var(--xl);
    border: 0;
    text-decoration: none;
    display: flex;
}
.footer-right {
    width: 50%;
    display: flex;
    gap: 100px;
}
.language-btn,
.language-navigation nav ul {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    padding: 10px 0;
}
.language-btn a,
.language-navigation nav a {
    padding: 0 !important;
    border: 0 !important;

    display: block !important;
}

.language-navigation nav a img {
    width: auto;
    height: 32px;

    display: block !important;
}

/*===========================================================
Acceessibility
===========================================================*/
/* Focus & Hover Styles for Interactive Elements */
a:hover,
a:focus-visible,
button:hover,
button:focus,
button:focus-visible,
input[type="button"]:hover,
input[type="button"]:focus-visible,
input:focus,
input:focus-visible,
[tabindex="0"]:focus-visible {
    /*outline: 2px dashed currentColor !important;
    outline-offset: 2px;*/
    text-decoration: none !important;
}

/* Specific Button Styling */
button.book-btn:focus,
button.book-btn:focus-visible {
    /*outline: 2px dashed currentColor !important;
    outline-offset: 2px;*/
    text-decoration: none !important;
}

/* Accessible Dropdown Menu */
.menu-item-has-children > a:focus + .submenu-content,
.submenu-content:focus-within {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Slick Slider Focus Styles */
.slick-prev:focus:before,
.slick-next:focus:before {
    color: var(--blue);
    opacity: 1;
}

/* Navigation & Control Buttons */
.menu-item-has-children [tabindex="0"]:focus-visible,
.menu-item-has-children a.active,
.menu-item-has-children a:hover,
.hamburger:hover,
.lang-button:hover,
.play-btn:hover {
    /*outline: 2px dashed currentColor !important;
    outline-offset: 2px;*/
    text-decoration: none !important;
}
a.btn-active:focus,
a.btn-active:focus-visible{
    /*outline-color: var(--black) !important;*/
}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 1400px) {
}

@media (min-width: 992px) {
    .dropdown:hover > a + .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .dropdown .dropdown > a::after {
        transform: rotate(-90deg);
        margin-top: -4px;
    }
}

@media (max-width: 991px) {
    .hamburger {
        position: relative;
        top: unset;
        right: unset;
    }
    #main {
        padding-top: 0;
    }
    .mobile-logo a {
        border: 0;
    }

    .header-area {
        padding-top: 0;
    }

    .header-area .menu-right {
        gap: 50px !important;
    }

    .header-area .country-name,
    .header-area .anfragen {
        display: none;
    }

    .header-area .menu-left a img {
        width: 80px;
    }

    .floating-info {
        right: -50px;
    }

    .floating-info button {
        width: 110px;
        height: 110px;

        gap: 5px;
    }

    .floating-info button img {

    }

    .floating-info button img:nth-child(2) {
        width: 20px;
    }

    .mobile-logo {
        width: auto;
        max-width: 125px;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .menu ul li .dropdown-menu li {
        padding-left: 10px;
    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;
    }

    .menu ul li a {
        color: var(--black);
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 2;
    }

    .menu ul li .dropdown-menu li a {
        line-height: 2;
    }

    .dropdown > a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    .banner-text {
        background: rgba(0, 0, 0, 0.6) !important;
    }

    div.mobile-pt-20 {
      padding-top: 20px !important;
    }

    .wave-container svg {
      height: 100%;
    }

    .footer-area > .container {
      padding-left: 30px;
      padding-right: 30px;
    }

    .footer-bttm {
      flex-direction: column;
    }

    .wave-container {
      height: 100px;
    }

    .special-wave-container {
      bottom: unset;
      top: 100%;
    }

    .gallery-text {
      width: 100%;
      padding: 0 30px;
      text-align: center;
    }

    .gallery-img .gallery-text span,
    .gallery-img .arrow-down i {
      text-shadow: 0 0 20px var(--black);
    }
}

/* ========================Gallery================ */

.gallery {
    display: flex;
}
.gallery-img {
    display: flex;
    position: relative;
    flex: 1;

    display: block;
    border-bottom: 0 !important;

    height: 600px;
    max-height: 100vh;
}
.gallery-img img {
  display: block;

  width: 100%;
  height: 100%;
  object-fit: cover;
}
.arrow-down {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 27px;
}
.arrow-down > * {
    border: 0;
}
.gallery-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;

    z-index: 3;

    pointer-events: none;
}
.gallery-text span {
    font-size: var(--xl);
    font-weight: bold;
    line-height: 1.29;
    text-align: center;
    color: white;

    text-shadow: 0px 0px 5px #000;
}
.gallery-img > img {
    position: relative;

    transform: scale(1);
    transition: 0.5s;
    z-index: 1;
}
.gallery-img:hover > img,
.gallery-img:active > img,
.gallery-img:focus > img {
    transform: scale(1.1);
    z-index: 2;
}
/* Video styling for media cards */
.gallery-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    transform: scale(1);
    transition: 0.5s;
    z-index: 1;
    /* Prevent iOS Safari download/save dialog */
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}
.gallery-img.has-video:hover .gallery-video,
.gallery-img.has-video:active .gallery-video,
.gallery-img.has-video:focus .gallery-video {
    transform: scale(1.1);
    z-index: 2;
}
.gallery-video-fallback {
    display: none;
}
.gallery-video-fallback img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.arrow-down {
    z-index: 3;
}
.arrow-down > * {
    padding: 10px 20px;
}
.btn-hamburger {
    width: 50px;
    height: 50px;
    z-index: 10001;
    background: red;
}

/*===========================================================
 Lang
============================================================*/

.menu-bar {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 20px;
}
.lang-container {
    position: relative;
    user-select: none;
}

.pll-switcher-select {
  background: transparent;
  border: 0;
  color: var(--white);

  cursor: pointer;
}

.pll-switcher-select option {
  background: rgba(0, 0, 0, 0.5);
}

.lang-button {
    display: flex;
    align-items: center;
    color: white;
    padding: 0 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.lang-button .arrow {
    transition: transform 0.3s ease;
    font-size: 10px;
    margin-left: 8px;
    margin-top: -4px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
    display: none;
    z-index: 100;
    overflow: hidden;
}

.lang-option {
    display: block;
    width: 100%;
    padding: 5px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.lang-option:hover {
    background-color: #f0f0f0;
}

.lang-option.selected {
    background-color: #e8f4ea;
    font-weight: 500;
}
.cloud-sun {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cloud-sun span {
    font-size: var(--lg);
    font-weight: bold;
    line-height: 1.4;
    color: var(--white);
}
.cloud-sun i {
}
.cloud-sun img {
    height: 20px;
    width: auto;

    position: relative;
    top: 2px;
}
.menu-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.anfragen ul,
.anfragen ul li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.anfragen a {
    font-size: var(--lg);
    font-weight: bold;
    line-height: 1.4;
    color: var(--white);
    position: relative;
}
.cloud span {
    position: relative;
    padding-right: 7px;
}
.cloud span:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border: 1px solid var(--white);
    border-radius: 50%;
    right: 0;
    top: 0;
}
/*===========================================================
 Responsive
============================================================*/

@media (max-width: 1199px) {
    :root {
        --sm: 17px;
        --lg: 18px;
        --xl: 26px;
        --xxl: 30px;
        --xs: 14px;
    }
    .west-coast-inner {
        gap: 0 30px;
    }
    .contact-area {
        padding-top: 100px;
    }
}

@media (max-width: 991px) {
    :root {
        --sm: 17px;
        --lg: 18px;
        --xl: 22px;
        --xxl: 26px;
        --xs: 14px;
    }
    .banner-area {
        min-height: 500px;
    }
    .resorts-area {
        padding-top: 80px;
    }
    .slider-title h2 {
        margin: 0;
    }
    .slide-description {
        min-height: 120px;
    }
    .west-coast-area {
        padding: 80px 0;
    }
    .video-bttn img {
        width: 70px;
    }
    .video-area {
        min-height: 500px;
    }
    .contact-right {
        max-width: 50%;
        width: 100%;
    }
    .single-form input {
        height: 40px;
    }
    .footer-left {
        flex-direction: column;
    }
    .footer-inner {
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .footer-left {
        width: 60%;
        gap: 0;
    }
    .footer-menu ul {
        margin: 0;
    }

    .footer-right {
        width: 40%;
        gap: 0;
    }
    .footer-logo {
        margin-bottom: 25px;
    }
    .language-btn .vc_general.vc_btn3.vc_btn3-color-grey {
        border: solid 2px black !important;
        color: var(--black) !important;
        padding: 5px 0 !important;
        width: 80px !important;
    }
    .language-btn {
        display: flex;
        gap: 10px;
    }
    .contact-area {
        padding-top: 80px;
    }
    .slide-content {
        padding-right: 30px;
    }
    .offer-slider {
        padding-bottom: 90px;
    }
    .west-coast-text p {
        margin: 0;
    }

    .menu-item-has-children > ul {
        right: 50px;
    }

    .gallery-img:hover > img,
    .gallery-img:active > img,
    .gallery-img:focus > img,

    .gallery-img.has-video:hover .gallery-video,
    .gallery-img.has-video:active .gallery-video,
    .gallery-img.has-video:focus .gallery-video {
        transform: unset !important;
    }
}

@media (max-width: 767px) {
    :root {
        --sm: 16px;
        --lg: 17px;
        --xl: 21px;
        --xxl: 24px;
        --xs: 14px;
    }
    .west-coast-inner {
        gap: 0 20px;
    }
    .slide-description {
        min-height: auto;
        margin-bottom: 15px;
    }
    .video-area {
        min-height: 400px;
    }
    .offer-slider {
        padding-bottom: 60px;
    }
    .contact-inner {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 25px 0;
    }
    .contact-left,
    .contact-right {
        width: 100%;
        max-width: 100%;
    }
    .contact-area {
        padding: 70px 0;
    }
    .footer-left {
        width: 100%;
        gap: 0;
    }
    .footer-right {
        width: 100%;
        margin-top: 25px;
        gap: 50px;
    }
    .contact-area {
        padding-bottom: 20px;
    }
    .footer-bttm ul {
        margin-bottom: 10px;
    }
    .resorts-area {
        padding-top: 70px;
    }

    .floating-info-content-intro {
      max-width: 100%;
      padding-right: 3rem;
      text-align: left;
    }

    .modal .modal-close {
        right: 2rem !important;
    }

    .floating-info-content-inner {
        width: 90%;
        padding: 2rem;
    }

    .floating-info-content-table > * {
        width: 100%;
        flex: 1 1 100%;
        border-right: 0 !important;
    }

    .header-area {
        padding-top: 5px;
        width: 100vw;
    }

    .header-area .header {
        flex-wrap: nowrap;
    }

    .header-area .header .custom-logo-link img {
        width: 80px;
    }

    .header-area .wave-container {
        margin-top: 50px;
    }

    .header-area:hover .wave-container path {
        fill-opacity: 0.7;
    }

    .header-area .wave-container:before {
        content: '';
        position: absolute;
        top: -85px;
        width: 100%;
        height: 85px;

        background-color: #000;
        opacity: 0.7;
    }

    .header-area .menu-right {
        gap: 20px !important;
        width: 100%;

        margin-left: 40px;
    }

    .header-area .menu-right .cloud-sun {
        width: 100%;
        justify-content: space-between;
    }


    .header-area .menu-right .menu-bar {
      position: absolute;
      top: 70px;
      right: 0;
    }
}

@media (max-width: 575px) {
    :root {
        --sm: 16px;
        --lg: 17px;
        --xl: 20px;
        --xxl: 22px;
        --xs: 14px;
    }
    .west-coast-inner {
        flex-direction: column;
        flex-wrap: wrap;
    }
    .west-coast-img {
        max-width: 100%;
    }
    .west-coast-text {
        max-width: 100%;
        width: 100%;
        margin-top: 20px;
    }
    .video-bttn img {
        width: 60px;
    }
    .footer-right {
        width: 100%;
        margin-top: 25px;
        gap: 40px;
    }
    .footer-bttm ul {
        gap: 15px;
    }
    .footer-area {
        padding-top: 40px;
    }
    .video-area {
        min-height: 300px;
    }
    .slider-section {
        overflow: hidden;
    }
    .slide-content {
        padding-right: 0;
        padding-left: 30px;
    }
    .gallery {
        flex-direction: column;
    }
    .gallery-img {
        justify-content: center;
    }
    .west-coast-area {
        padding: 50px 0;
    }
    .arrow-down {
        bottom: 30px;
    }
    .gallery-text {
        top: 30px;
    }
}

@media (max-width: 440px) {
    .footer-bttm ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .footer-right {
        flex-direction: column;
    }
    .footer-menu ul {
        column-count: 1;
    }

    .header-area .header .custom-logo-link img {
        width: 60px;
    }

    .header-area .menu-right {
        margin-left: 15px;
    }
}
