@charset "UTF-8";
*,
*::before,
*::after {
box-sizing: inherit;
}
html {
-webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
header a,
footer a {
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
clear: both;
    line-height: 1.4;
    font-weight: 700;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.5em;
}
h3 {
font-size: 1.17em;
}
h4 {
font-size: 1em;
}
h5 {
font-size: 0.83em;
}
h6 {
font-size: 0.67em;
}
.site-nav {
position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    height: 38px;
    padding: 10px 84px 10px 22px;
    border-bottom: 2px solid #f7a600;
    background: rgb(59 59 59);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}
.site-nav__brand {
color: #ffffff;
    text-decoration: none;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    text-shadow: 1px 0 black;
}
.site-nav__links {
display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-left: auto;
}
.site-nav__links a {
display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    transition: background 0.15s ease, color 0.15s ease;
}
.site-nav__links a:hover,
.site-nav__links a:focus {
background: rgba(255, 255, 255, 0.14);
    outline: none;
}
.site-nav__links a.nav-booking {
background: #f7a600;
    color: #111111;
}
.site-nav__links a.nav-booking:hover,
.site-nav__links a.nav-booking:focus {
background: #ffffff;
    color: #111111;
}
.site-nav__toggle {
display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 2px solid #027981;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
    color: #fcb900;
    cursor: pointer;
}
.site-nav__toggle span,
.site-nav__toggle::before,
.site-nav__toggle::after {
content: "";
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.site-nav__toggle {
flex-direction: column;
    gap: 5px;
}
.site-nav.open .site-nav__toggle::before {
transform: translateY(7px) rotate(45deg);
}
.site-nav.open .site-nav__toggle span {
opacity: 0;
}
.site-nav.open .site-nav__toggle::after {
transform: translateY(-7px) rotate(-45deg);
}
.language-switcher {
position: absolute;
    top: 5px;
    right: 18px;
    z-index: 10000;
}
.language-toggle {
display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #017981;
    color: #fcb900;
    background: rgba(0, 0, 0, 0.38);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.language-toggle svg {
width: 22px;
    height: 22px;
    stroke: currentColor;
}
.language-menu {
position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: grid;
    gap: 4px;
    min-width: 168px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.76);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
.language-switcher.open .language-menu {
opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.language-menu a {
display: flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 7px 9px;
    border-radius: 6px;
    border: 1px solid transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    background: transparent;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.language-menu .flag {
flex: 0 0 auto;
    display: block;
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28);
}
.language-menu a:hover,
.language-menu a:focus {
border-color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    outline: none;
}
.language-menu a.active {
border-color: #f7a600;
    background: rgba(247, 166, 0, 0.22);
}
@media (max-width: 950px) {
.site-nav {
height: 38px;
        padding: 9px 56px 9px 12px;
}
.site-nav__brand {
max-width: calc(100vw - 130px);
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 18px;
}
.site-nav__toggle {
display: inline-flex;
        margin-left: auto;
        margin-right: 20px;
}
.site-nav__links {
position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: grid;
        gap: 3px;
        padding: 10px 12px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(2, 121, 129, 0.98);
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
.site-nav.open .site-nav__links {
opacity: 1;
        visibility: visible;
        transform: translateY(0);
        width: 200px;
}
.site-nav__links a {
min-height: 42px;
        padding: 10px 12px;
        font-size: 15px;
}
.language-switcher {
top: 6px;
        right: 8px;
}
.language-toggle {
width: 38px;
        height: 38px;
}
.language-menu {
min-width: 156px;
}
.language-menu .flag {
width: 22px;
        height: 16px;
}
}
ul {
list-style: disc;
}
li > ul,
li > ol {
margin-bottom: 0;
    margin-left: 0;
}
img,
.wp-block-image img {
height: auto;
    max-width: 100%;
    vertical-align: middle;
}
em {
font-style: italic;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
border-radius: 0;
    box-sizing: border-box;
    display: block;
    font-size: 17px;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    line-height: 1.75;
    padding: 7px 15px;
    color: #1c1c1c;
}
p a {
text-decoration: underline;
}
textarea {
width: 100%;
    height: 120px;
    padding: 15px 20px;
}
input[type="checkbox"] {
display: inline;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
color: #cacaca;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
color: #c3c3c3;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
color: #a3a2a2;
}
a {
color: var(--wp--preset--color--primary);
    outline: 0 !important;
}
a:focus-visible,
a:focus {
outline: thin dotted !important;
}
a:hover,
a:active,
a:hover {
outline: 0;
    color: var(--wp--preset--color--primary);
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #f7a600;
}
.wp-block-heading {
margin-bottom: 5px;
    margin-top: 5px;
}
.wp-block-outermost-icon-block {
display: none;
}
.banner-section {
position: relative;
min-height: 650px;
}
.banner-section:after {
content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180.46deg, rgba(0, 0, 0, 0) -27.6%, var(--wp--preset--color--primary) 88.01%);
}
.banner-section .banner-content {
position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 700px;
}
.faq-section .faq-detail-section {
margin-top: 10px;
}
.about-section .about-left-content .about-images figure {
width: 100%;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}
.about-section .about-left-content .about-images figure {
overflow: hidden;
}
.about-section .about-left-content .about-images img {
width: 100% !important;
    object-fit: cover;
}
.about-section .about-left-content .about-images img {
transition: 1.1s;
}
.about-section .about-left-content .about-images img:hover {
transform: scale(1.1);
}
.faq-section .faq-detail-section details.faq-btm-title summary {
border: 1px solid #c9c9c9;
    padding: 5px 32px 5px 18px;
    list-style: none;
    position: relative;
}
.faq-section .faq-detail-section details.faq-btm-title summary:after {
content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    width: 14px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(//images/left-btn1.svg);
}
.faq-section .faq-detail-section details[open].faq-btm-title summary:after {
background-image: url(//images/left-btn1.svg);
    transform: translateY(-50%) rotate(90deg);
}
.faq-section .faq-detail-section details[open].faq-btm-title > summary {
background-color: #f7a600;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0px 0px 4px 0px var(--wp--preset--color--secondary);
}
.faq-section .faq-heading-box {
gap: 0;
}
.faq-section .faq-heading-box .faq-inner-head-box .faq-small-title {
display: flex;
    margin: 0 auto;
    width: fit-content;
    box-shadow: 0px 0px 4px 0px var(--wp--preset--color--secondary);
}
footer .footer-section {
padding-left: 0 !important;
}
footer .footer-section > .wp-block-group {
margin-left: auto !important;
}
footer {
margin-top: 0;
}
.footer-section .footer-box ul {
text-align: center;
}
.footer-section a:hover {
color: var(--wp--preset--color--secondary);
}
.footer-section .wp-block-social-links {
gap: 10px !important;
}
.footer-section {
padding: 0;
    min-height: auto;
}
.footer-section .wp-block-group {
padding: 50px 0px 0;
}
.footer-box a {
text-decoration: none !important;
}
.footer-box ul {
padding: 0;
    gap: 0;
}
.footer-box {
position: relative;
}
.footer-box ul li {
list-style: none;
    margin-bottom: 10px;
}
.footer-section .wp-block-social-link {
background: transparent !important;
    color: var(--wp--preset--color--tertiary);
}
.footer-section .wp-block-button__link {
padding: 10px 25px;
    font-weight: 500;
    font-size: 14px;
    color: #fff !important;
    text-decoration: none;
    background-color: transparent;
    border: 2px solid #fff;
}
.footer-section .wp-block-social-link a {
padding: 6px !important;
    background: var(--wp--preset--color--primary);
    box-shadow: 0px 0px 4px 0px var(--wp--preset--color--secondary);
    font-size: 20px !important;
}
.footer-section .wp-block-social-link a:hover {
background: var(--wp--preset--color--secondary);
    color: #ffffff !important;
}
.footer-section .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {
color: #1778f2;
}
.footer-section .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {
color: #f00075;
}
.wp-element-button {
background: var(--wp--preset--color--primary);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 6px 25px;
}
.wp-element-button:hover {
background: transparent;
    border: 1px solid var(--wp--preset--color--primary);
    color: #fff !important;
}
.wp-element-button:hover,
.wp-block-button__link:hover {
color: #000000 !important;
}
.scroll-top-box {
display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: var(--wp--preset--color--secondary);
    color: white;
    border: none;
    border-radius: 50% !important;
    padding: 10px 16px 13px;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s;
}
.scroll-top-box .wp-block-button__link.wp-element-button {
border-radius: 50% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.scroll-top-box .wp-block-button__link,
.scroll-top-box .wp-block-button__link:hover {
background-color: var(--wp--preset--color--secondary);
    border: none;
}
@media screen and (max-width: 767px) {
.banner-section .banner-content {
padding: 20px 0 !important;
min-height:550px;
}
.banner-section .banner-content h2.banner-title {
font-size: 26px !important;
}
.about-section .about-inner-content {
flex-direction: column-reverse;
}
.about-section .about-left-content .about-images {
gap: 12px;
}
.about-section .about-left-content .about-images img {
height: 250px !important;
}
.about-section .about-right-content {
text-align: center;
}
.wp-block-column.footer-box.is-layout-flow.wp-block-column-is-layout-flow,
.footer-section .footer-box .wp-block-heading {
text-align: center;
        justify-content: center;
}
.faq-section .faq-detail-section {
gap: 0;
}
.footer-section .footer-box:nth-child(1) {
padding-right: 0 !important;
}
.footer-section .wp-block-columns {
padding: 0 20px;
}
.footer-section .wp-block-columns {
margin: 0;
}
.footer-section .wp-block-group {
padding: 10px;
        max-width: 100% !important;
}
.footer-section h1 {
text-align: center;
}
.footer-section .wp-block-group {
text-align: center !important;
}
.footer-section .wp-block-social-links {
justify-content: center !important;
}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
.banner-section .banner-content {
padding: 20px 0 !important;
}
.banner-section .banner-content .banner-title {
font-size: 34px !important;
}
.about-section .about-inner-content {
flex-wrap: wrap !important;
        flex-direction: column-reverse;
}
.about-section .about-inner-content .about-left-content,
.about-section .about-inner-content .about-right-content {
flex-basis: 100%;
}
.about-section .about-left-content .about-images img {
height: 300px !important;
}
.faq-section .faq-heading-box {
flex-wrap: wrap !important;
}
.faq-section .faq-heading-box .faq-inner-head-box {
flex-basis: 100% !important;
}
.footer-section .footer-box:nth-child(1) {
padding-right: 0 !important;
}
.faq-section .faq-detail-section {
gap: 12px;
        flex-wrap: nowrap !important;
}
.footer-section .wp-block-columns {
padding: 0;
}
.wp-block-column.footer-box.is-layout-flow.wp-block-column-is-layout-flow,
.footer-section .footer-box .wp-block-heading {
text-align: center;
        justify-content: center;
}
.footer-box {
max-width: 300px !important;
}
.footer-section .wp-block-columns {
display: grid;
        grid-template-columns: auto auto;
}
.footer-section .wp-block-social-links {
gap: 0.5rem !important;
}
}
@media screen and (max-width: 1024px) and (min-width: 1000px) {
.footer-section .wp-block-group {
padding-top: 10px !important;
}
}
@media screen and (max-width: 1400px) and (min-width: 1025px) {
.footer-section .wp-block-group {
padding-top: 10px !important;
}
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
.about-section .about-left-content .about-images {
gap: 12px;
}
.about-section .about-left-content .about-images img {
height: 320px;
}
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
.about-section .about-left-content .about-images img {
height: 320px;
}
}
@media screen and (max-width: 1399px) {
.banner-section .banner-content,
.about-section .about-inner-content,
.faq-section .faq-heading-box,
.faq-section .faq-detail-section {
max-width: 85%;
}
.footer-section {
padding-left: 0 !important;
}
.footer-section > .wp-block-group {
margin-left: auto !important;
}
}
@media screen and (min-width: 1400px) and (max-width: 1500px) {
.banner-section,
.banner-section .banner-content {
min-height: 530px !important;
}
.banner-section .banner-content .banner-title {
font-size: 34px !important;
}
.banner-section .banner-content {
padding-bottom: 30px !important;
}
.banner-section .banner-content + .wp-block-spacer {
height: 8px !important;
}
.about-section .about-right-content {
align-self: flex-start;
}
.about-section .about-left-content .about-images img {
height: 380px !important;
}
.about-section .about-inner-content + .wp-block-spacer {
height: 20px !important;
}
}
@media screen and (min-width: 1900px) and (max-width: 2000px) {
.banner-section .wp-block-spacer,
.about-section .wp-block-spacer,
.faq-section .wp-block-spacer {
margin-bottom: -2px !important;
}
.banner-section .wp-block-spacer {
height: 90px !important;
}
}
@media screen and (min-width: 1400px) and (max-width: 2000px) {
body.home {
position: relative;
}
.wp-block-outermost-icon-block {
position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        filter: drop-shadow(0 0px 13.5px var(--wp--preset--color--secondary));
        margin-top: 0;
        display: block;
}
.icon-container svg > circle {
filter: drop-shadow(0 0px 7px var(--wp--preset--color--secondary));
        height: 10px;
        width: 10px;
}
.icon-container svg {
height: auto;
}
.home footer .footer-section.wp-block-group {
padding-left: 50px !important;
}
footer .footer-section > .wp-block-group {
padding-top: 70px;
}
.about-section .about-inner-content,
.faq-section .faq-heading-box,
.faq-section .faq-detail-section,
footer .footer-section > .wp-block-group {
position: relative;
        z-index: 2;
}
.language-switcher {
display: flex;
    gap: 8px;
    align-items: center;
}
.language-switcher a {
padding: 6px 10px;
        text-decoration: none;
        border: 1px solid #ddd;
        color: #ffffff;
}
.language-switcher a.active {
background: #333;
        color: #fff;
}
}
