*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

ul[role='list'],
ol[role='list'] {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img,
picture {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:root {
    --black: #000;
    --white: #F6FAFE;
    --soft-blue: #6C92C8;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

html,
body {
    font-family: "Instrument Sans", sans-serif;
    color: var(--black);
    background-color: var(--white);
}

.overflow-hidden {
    overflow: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0;
}

.h100 {
    height: 100%;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.highlight {
    font-family: "Instrument Serif", serif;
    font-style: italic;
}

.highlight-invert-color {
    color: var(--soft-blue);
}

.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.button-link {
    display: flex;
    gap: 8px;
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    color: var(--black);
    text-decoration: underline;
    cursor: pointer;
}

.icon-link {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 11C22.095 12.8965 26 16 26 16C26 16 22.095 19.1035 21 21' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 16H26' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.icon-link-white {
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.25 13.75C27.6187 16.1207 32.5 20 32.5 20C32.5 20 27.6187 23.8793 26.25 26.25' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.5 20H32.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.small-heading {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.big-heading {
    font-weight: 400;
    font-size: 64px;
    line-height: 72px;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-header {
    min-height: 76px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;

}

.site-header.white-header {
    background-color: white;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 24px;
    transition: all 0.3s ease-out;
}

.main-nav a[aria-current="page"],
.main-nav a:hover {
    background-color: rgba(108, 146, 200, 0.1);
}

.mobile-panel {
    display: none;
    transform: translateX(100%);
}

body:not(.page-slug-contact-us) .site-footer {
    padding: 24px 0;
}

body.page-slug-contact-us {
    background-image: url('../img/contact_us_bg_body_.webp');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

body.page-slug-contact-us .site-footer {
    padding: 192px 0 24px;
}

@media (max-width: 1440px) {
    body.page-slug-contact-us .site-footer {
        padding: 12px 0 24px;
    }
}

@media (max-width: 480px) {
    body.page-slug-contact-us .site-footer {
        padding: 24px 0;
    }
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 120px;
}

.footer-contact-letstalk {
    padding: 8px 24px 8px 8px;
    background-color: var(--soft-blue);
    border-radius: 56px;
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 800ms ease-in-out;
}

.footer-contact-letstalk:hover {
    background-color: #000;
}

.footer-contact-letstalk .image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #eee;
    display: block;
    background-image: url('../img/letstalk.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 64px;
}

.footer-contact-letstalk .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact-letstalk .content .top {
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    color: white;
    display: flex;
    gap: 8px;
    justify-content: space-around;
}

.footer-contact-letstalk .content .bottom {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: white;
    opacity: .5;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-links .copyrights a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--black);
    text-decoration: none;
}

.footer-links .copyrights p {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: var(--black);
    opacity: .4;
}

.footer-links .socials {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-links .socials a {
    padding: 2px 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--black);
    text-decoration: none;
}

.footer-links .contacts {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.footer-links .contacts a {
    padding: 2px 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--black);
    text-decoration: none;
}

.ready-to-launch {
    padding: 160px 0 96px;
}

.ready-to-launch-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ready-to-launch-heading {
    font-weight: 400;
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.ready-to-launch-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 56px;
}

.ready-to-launch-button {
    background-color: #6C92C8;
    border-radius: 56px;
    padding: 8px 24px;
    text-decoration: none;
    transition: all 300ms ease-out;
}

.ready-to-launch-button:hover {
    background-color: black;
}

.ready-to-launch-button-title {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    font-style: italic;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ready-to-launch-button-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: white;
    opacity: 0.5;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: -100;
    opacity: 0;
    overflow: hidden;
}

.popup-content {
    max-width: 624px;
    padding: 56px 48px;
    background-color: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

#contact-form-popup.show,
#thankyou-popup.show {
    z-index: 1000;
    opacity: 1;
}

#contact-form.hide {
    display: none;
}

#thankyou-popup.show .popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-thankyou-image {
    width: 100%;
    height: auto;
    margin-bottom: 48px;
}

.popup-title {
    font-family: 'Instrument Serif', serif;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 16px;
}

.popup-text {
    font-size: 18px;
    line-height: 1.3334;
    font-weight: 400;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

#contact-form-popup .icon-close {
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
}

.close-popup {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

#thankyou-popup .popup-text {
    padding: 0 20px;
}

#popup-thankyou-image {
    margin-bottom: 48px;
    width: 100%;
    height: auto;
}

@media (min-width: 1280px) {
    .desktop-hidden {
        display: none !important;
    }

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

@media (max-width: 1280px) {
    .mobile-visible {
        display: flex !important;
    }

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

@media (min-width: 968px) {
    .mobile-menu-toggle {
        display: none;
    }

    body.page-id-210 .footer-contact {
        display: none;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .site-header {
        height: 80px;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 32px;
        height: 32px;
        padding: 6px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 21H26' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 11H26' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    }

    .mobile-panel {
        background-color: var(--soft-blue);
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 100000;
        overflow-x: auto;
        transition: transform 0.3s ease-out;
    }

    .mobile-panel.open {
        transform: translateX(0);
    }

    .mobile-panel-header {
        padding: 26px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }

    .mobile-menu-close {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 8L8 24' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 8L24 24' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    }


    .main-nav {
        display: none;
    }

    .mobile-nav {
        padding: 0 20px;
    }

    .mobile-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-nav ul li {
        padding: 24px 0 28px;
        border-bottom: 1px solid rgba(255, 255, 255, .25);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-nav a {
        width: 100%;
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        color: white;
        text-decoration: none;
        padding: 2px 6px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-nav ul li a:after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 32px;
        height: 32px;
        background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 11C22.095 12.8965 26 16 26 16C26 16 22.095 19.1035 21 21' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 16H26' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    }

    .mobile-booking {
        padding: 108px 20px 20px;
    }

    .mobile-booking-inner {
        padding: 20px;
        gap: 56px;
        border-radius: 12px;
        background-color: white;
    }

    .mobile-booking h2 {
        font-weight: 400;
        font-size: 48px;
        line-height: 52px;
        color: var(--black);
        margin-bottom: 24px;
    }

    .mobile-booking-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        font-weight: 500;
        font-size: 20px;
        line-height: 32px;
        text-decoration: none;
        border-radius: 8px;
        color: var(--black);
        margin-bottom: 56px;
        text-underline-offset: 5px;
        gap: 8px;
    }

    .mobile-booking-link span:not(:last-child) {
        text-decoration: underline;
    }

    .mobile-booking-socials {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-booking-socials a {
        padding: 2px 6px;
        font-size: 16px;
        line-height: 1;
        color: var(--black);
        text-decoration: none;
    }

    .small-heading {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 4px;
    }

    .big-heading {
        font-size: 56px;
        line-height: 60px;
        margin-bottom: 40px;
    }

    .footer-contact {
        margin-bottom: 72px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .footer-links .copyrights {
        text-align: center;
        order: 3;

    }

    .footer-links .socials {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .footer-links .contacts {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 88px;
    }

    body.page-id-210 .ready-to-launch {
        display: none;
    }

    .popup {
        padding: 20px 0 0;
    }

    #contact-form-popup .popup-title {
        font-size: 40px;
        text-align: center;
    }

    #contact-form-popup .popup-text {
        text-align: center;
    }

    .popup .popup-content {
        height: 100%;
        padding: 32px;
        overflow-x: auto;
        border-radius: 16px 16px 0 0;
    }

    #contact-form .popup-content {
        height: 100%;
        max-height: 640px;
    }

    #thankyou-popup {
        height: 100vh;
    }
}

.footer-faq--section {
    padding: 84px 0 120px;
}

.footer-faq--section .container {
    display: flex;
    justify-content: space-between;
}

.footer-faq--section .content {
    width: 100%;
    max-width: 894px;
    margin: 0 auto;
}

.footer-faq--section .accordion-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-faq--section .accordion-header {
    color: black;
    background-color: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    text-transform: capitalize;
    cursor: pointer;
}

.footer-faq--section .accordion-header:hover {
    color: var(--soft-blue);
}

.footer-faq--section .accordion-header .icon-close {
    color: #CBD3DC;
    transform: rotate(45deg);
    transition: 300ms ease-in-out;
}

.footer-faq--section .accordion-item .accordion-content {
    height: 0;
    opacity: 0;
    transition: 300ms ease-in-out;
    overflow: hidden;
}

.footer-faq--section .accordion-item:not(.open) .accordion-content {
    transition: 300ms ease-in-out;
}

.footer-faq--section .accordion-item.open .accordion-content {
    height: auto;
    opacity: 1;
    margin-top: 20px;
}

.footer-faq--section .accordion-item.open .accordion-header .icon-close {
    transform: rotate(0deg);
}

.footer-faq--section .accordion-content p {
    /* font-size: 14px; */
    line-height: 1.3;
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .footer-faq--section {
        padding: 24px 0 80px;
    }

    .footer-faq--section .container {
        flex-direction: column-reverse;
        align-items: center;
    }

    .footer-faq--section .content .accordion {
        padding-left: 0;
    }

    .footer-faq--section .content .accordion-header {
        font-size: 20px;
        text-align: left;
    }

    .footer-faq--section .content .accordion-content p {
        font-size: 14px;
    }

    .footer-faq--section .content .accordion-tags {
        margin-top: 20px;
    }
}