.contact-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/fa-light-300.ttf") format("truetype");
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/fa-regular-400.ttf") format("truetype");
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/fa-brands-400.ttf") format("truetype");
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/fa-solid-900.ttf") format("truetype");
}

.fa,
.fas,
.fa-solid {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    line-height: 1;
    vertical-align: middle;
}

.far {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    line-height: 1;
    vertical-align: middle;
}

.fal {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    line-height: 1;
    vertical-align: middle;
}

.fab {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    line-height: 1;
    vertical-align: middle;
}

.fa-fw {
    width: 1.25em;
}

.fa::before,
.fas::before,
.far::before,
.fab::before,
.fa-solid::before {
    display: inline-block;
    line-height: 1;
}

.fa-times::before {
    content: "\f00d";
}

.fa-arrow-up::before {
    content: "\f062";
}

.fa-arrow-left::before {
    content: "\f060";
}

.fa-arrow-right::before {
    content: "\f061";
}

.fa-chevron-right::before {
    content: "\f054";
}

.fa-link::before {
    content: "\f0c1";
}

.fa-chevron-down::before {
    content: "\f078";
}

.fa-angle-left::before {
    content: "\f104";
}

.fa-angle-right::before {
    content: "\f105";
}

.fa-angle-up::before {
    content: "\f106";
}

.fa-angle-down::before {
    content: "\f107";
}

.fa-star::before {
    content: "\f005";
}

.scroll-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
}

.scroll-to-top .fa-arrow-up {
    font-size: 22px;
}

.accordion-box .block .icon-outer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-box .block .icon-outer .fa-angle-down,
.accordion-box .block .icon-outer .fa-angle-up {
    font-size: 22px;
}

.testimonial-three .owl-nav .owl-prev,
.testimonial-three .owl-nav .owl-next {
    opacity: 0.35;
    font-size: 52px;
}

.testimonial-three .owl-nav .owl-prev span,
.testimonial-three .owl-nav .owl-next span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.owl-nav .fa-solid,
.owl-nav .fas {
    font-weight: 900;
}

.owl-nav .fa-solid::before,
.owl-nav .fas::before {
    font-weight: 900;
}

.animated {
    animation-duration: var(--animate-duration, 1s);
    animation-fill-mode: both;
}

.fadeInLeft {
    animation-name: trawellFadeInLeft;
}

.bounce {
    transform-origin: center bottom;
    animation-name: trawellBounce;
}

.flipInX {
    backface-visibility: visible !important;
    animation-name: trawellFlipInX;
}

@keyframes trawellFadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-28px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes trawellBounce {
    from,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -18px, 0) scaleY(1.03);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -8px, 0) scaleY(1.01);
    }

    90% {
        transform: translate3d(0, -2px, 0) scaleY(1.005);
    }
}

@keyframes trawellFlipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -16deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 8deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -4deg);
    }

    to {
        transform: perspective(400px);
    }
}

.main_menu .current > a {
    color: var(--main-color);
}

.gallery-block_two-text,
.gallery-block_two-text-two {
    text-wrap: balance;
}

.booking-one .title-box p {
    max-width: 760px;
}

.booking-one .contact-column {
    float: none;
    margin: 0 auto;
}

.booking-one .title-box,
.booking-one .booking-form,
.booking-one .contact-cta {
    text-align: center;
}

.booking-one .title-box p,
.booking-one .booking-form,
.booking-one .contact-cta {
    margin-left: auto;
    margin-right: auto;
}

.booking-one .booking-form {
    max-width: 960px;
}

.booking-one .booking-form form > .row {
    justify-content: center;
}

.booking-one .booking-form .col-lg-12 {
    text-align: center;
}

.booking-one .contact-cta {
    max-width: 760px;
}

.booking-one:not(.home-booking) .contact-cta {
    margin-top: 72px;
    margin-bottom: 56px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.booking-one:not(.home-booking) .contact-cta .sec-title_three-title {
    margin-bottom: 18px;
}

.booking-one:not(.home-booking) .contact-cta h4 {
    margin-bottom: 0;
    line-height: 1.04;
}

.home-booking {
    padding-top: 84px;
    padding-bottom: 16px;
}

.home-booking .title-box {
    margin-bottom: 20px;
}

.home-booking .booking-form .form-group {
    margin-bottom: 24px;
}

.home-booking .contact-cta {
    margin-top: 72px;
    margin-bottom: 56px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.home-booking .contact-cta .sec-title_three-title {
    margin-bottom: 18px;
}

.home-booking .contact-cta h4 {
    margin-bottom: 0;
    line-height: 1.04;
}

.home-booking + .home-faq {
    padding-top: 78px;
}

.placeholder-note {
    color: #6d6d6d;
}

.contact-page-shell {
    padding: 72px 0 34px;
}

.contact-page_intro {
    max-width: 860px;
    margin-bottom: 36px;
}

.contact-page_intro h2 {
    margin: 10px 0 18px;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.04;
    text-transform: none;
    color: var(--color-two);
}

.contact-page_intro p {
    max-width: 720px;
    margin: 0;
    color: #5f6978;
    font-size: 18px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.contact-info-card {
    padding: 28px 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(83, 149, 221, 0.12);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    min-height: 100%;
}

.contact-info-card__eyebrow {
    margin-bottom: 10px;
    color: var(--main-color);
    font-size: var(--font-14);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-info-card h3,
.contact-info-card h3 a {
    margin: 0 0 12px;
    color: var(--color-two);
    font-size: clamp(24px, 3.2vw, 36px);
    line-height: 1.12;
    word-break: break-word;
}

.contact-info-card p,
.contact-info-card__text {
    margin: 0;
    color: #556274;
    font-size: 17px;
    line-height: 1.8;
}

.contact-info-card__text strong {
    color: var(--color-two);
}

.contact-page-shell .contact-sidebar-card {
    background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
}

.waavo-widget-shell .waavo-widget-frame {
    padding: 26px;
    border-radius: 30px;
    background-color: #ffffff;
    border: 0;
    box-shadow: none;
    overflow: hidden;
}

.waavo-widget-shell .waavo-iframes {
    position: relative;
    padding: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, #f4f8fc 0%, #edf4fb 45%, #f7fbff 100%);
    box-shadow: none;
    overflow: hidden;
}

.waavo-widget-shell .waavo-iframes::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0) 64%);
    transform: translateX(-100%);
    opacity: 1;
    transition: opacity 0.35s ease;
    animation: waavoWidgetShimmer 1.8s ease-in-out infinite;
    pointer-events: none;
}

.waavo-widget-shell .waavo-iframes[data-waavo-state="ready"]::before {
    opacity: 0;
    animation: none;
}

.waavo-widget-shell .waavo-iframes iframe {
    border-radius: 24px;
    box-shadow: none;
    border: 0;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.38s ease, transform 0.38s ease;
}

.waavo-widget-shell .waavo-iframes[data-waavo-state="ready"] iframe {
    opacity: 1;
    transform: translateY(0);
}

.home-hero {
    padding-top: 8px;
}

.home-hero .banner-two_block-image,
.home-hero .banner-single-image {
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
}

.home-hero .banner-single-image_link {
    position: relative;
    display: block;
    height: 100%;
    color: #ffffff;
}

.home-hero .banner-two_block-image::after,
.home-hero .banner-single-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 15, 35, 0.00) 0%, rgba(8, 15, 35, 0.08) 100%);
    pointer-events: none;
}

@keyframes waavoWidgetShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.home-hero .banner-single-image_overlay {
    position: absolute;
    inset: 22px 22px 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

.home-hero .banner-single-image_badge {
    --badge-size: 82px;
    --badge-prefix-size: 14px;
    --badge-price-size: 22px;
    --badge-top: 0px;
    --badge-right: 0px;
    position: absolute;
    top: var(--badge-top);
    right: var(--badge-right);
    width: var(--badge-size);
    height: var(--badge-size);
    border-radius: 50%;
    background: #ff1d15;
    color: #ffffff;
    font-size: calc(var(--badge-price-size) * 0.82);
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.home-hero .banner-single-image_badge-prefix {
    display: block;
    font-size: var(--badge-prefix-size);
    line-height: 1;
    margin-bottom: 2px;
}

.home-hero .banner-single-image_badge-price {
    display: block;
    font-size: var(--badge-price-size);
    line-height: 1;
}

.home-hero .banner-single-image_title {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 66px;
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.home-hero .banner-two_block-title {
    --hero-title-lead-size: 22px;
    --hero-title-main-size: 72px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin: 0;
    text-transform: none;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.home-hero .banner-two_block-title-lead {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: var(--hero-title-lead-size);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.home-hero .banner-two_block-title-main {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: var(--hero-title-main-size);
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.home-hero .banner-single-image_note {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    text-align: right;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

@media (min-width: 992px) {
    .home-hero .row {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
    }

    .home-hero .left-column,
    .home-hero .right-column {
        float: none;
    }

    .home-hero .left-column {
        display: flex;
    }

    .home-hero .banner-two_block,
    .home-hero .banner-two_block-image,
    .home-hero .banner-two_block-image > a {
        height: 100%;
    }

    .home-hero .right-column {
        display: flex;
        flex-direction: column;
        gap: 22px;
        margin-top: 0;
    }

    .home-hero .right-column br {
        display: none;
    }

    .home-hero .banner-single-image,
    .home-hero .banner-single-image > a,
    .home-hero .banner-single-image_link {
        display: block;
        height: 100%;
    }

    .home-hero .banner-single-image {
        flex: 1 1 0;
        min-height: 0;
        margin-bottom: 0;
    }

    .home-hero .banner-two_block-image img,
    .home-hero .banner-single-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .home-hero .row {
        min-height: 560px;
    }

    .home-hero .left-column {
        flex: 0 0 71%;
        max-width: 71%;
    }

    .home-hero .right-column {
        flex: 0 0 29%;
        max-width: 29%;
    }

    .home-hero .banner-two_block-overlay {
        top: 36px;
        bottom: 34px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .home-hero .banner-two_block-overlay > a {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        width: 100%;
        height: 100%;
        color: #ffffff;
        text-decoration: none;
    }

    .home-hero .banner-two_block-title {
        margin-top: auto;
    }

    .home-hero .banner-two_block-overlay h1 {
        font-size: 92px;
        line-height: 0.96;
    }

    .home-hero .banner-single-image_title {
        font-size: 62px;
    }

    .page-banner,
    .page-banner.style-two,
    .page-banner_two,
    .banner-four .slide {
        height: 410px;
        min-height: 410px;
        max-height: 410px;
        overflow: hidden;
    }

    .page-banner,
    .page-banner.style-two {
        padding: 150px 0 96px;
    }

    .page-banner_two {
        padding: 138px 0 88px;
    }

    .banner-four .slide {
        padding: 150px 0 96px !important;
    }

    .page-banner_title {
        font-size: clamp(58px, 7vw, 84px);
        line-height: 0.96em;
    }

    .page-banner_two-title {
        font-size: clamp(52px, 5.6vw, 70px);
        line-height: 1em;
    }

    .banner-four .banner-four_title {
        font-size: clamp(62px, 8vw, 96px) !important;
        line-height: 0.92em !important;
    }
}

@media (min-width: 1200px) {
    .home-hero .row {
        min-height: 720px;
    }

    .home-hero .left-column {
        flex: 0 0 74%;
        max-width: 74%;
    }

    .home-hero .right-column {
        flex: 0 0 26%;
        max-width: 26%;
        gap: 18px;
    }

    .home-hero .banner-two_block-overlay {
        top: 44px;
        bottom: 42px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .home-hero .banner-two_block-overlay > a {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        width: 100%;
        height: 100%;
        color: #ffffff;
        text-decoration: none;
    }

    .home-hero .banner-two_block-overlay .banner-two_block-kicker,
    .home-hero .banner-two_block-overlay h1 {
        max-width: 72%;
    }

    .home-hero .banner-single-image_title {
        font-size: 70px;
    }
}

.home-intro {
    padding: 54px 0 30px;
}

.home-hero + .waavo-widget-shell {
    padding-top: 34px;
}

.home-waavo-widget .waavo-widget-frame {
    padding: 0;
    min-height: 160px;
    overflow: visible;
}

.home-waavo-widget .waavo-iframes,
.home-waavo-widget .waavo-iframes iframe {
    min-height: 160px;
}

.waavo-results-empty_card {
    padding: 34px 38px;
    border-radius: 32px;
    background: linear-gradient(135deg, #f7fbff 0%, #eef5fd 52%, #ffffff 100%);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.waavo-results-page .banner-four .slide {
    padding: 125px 0 80px;
}

.waavo-results-page .banner-four .banner-four_title {
    width: min(100%, 780px);
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-family-Oswald);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    font-size: clamp(72px, 6vw, 118px) !important;
    line-height: 1.2em !important;
    padding-bottom: 0px;
}

.waavo-results-widget .waavo-widget-frame {
    background: transparent;
    padding-top: 8px;
}

.waavo-results-widget .waavo-iframes {
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
}

.waavo-results-empty {
    padding: 18px 0 80px;
}

.waavo-results-empty_card {
    display: block;
    max-width: 760px;
}

.waavo-results-empty_card h2 {
    margin-bottom: 14px;
}

.waavo-results-empty_card p {
    margin-bottom: 0;
    color: rgba(24, 33, 52, 0.78);
    line-height: 1.8;
}

.achivement-block_one-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-top: 18px;
    border-radius: 999px;
    border: 1px solid rgba(56, 137, 204, 0.25);
    background: rgba(56, 137, 204, 0.08);
    color: var(--main-color);
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.achivement-block_one-link:hover,
.achivement-block_one-link:focus-visible,
.achivement-block_one-inner:hover .achivement-block_one-link {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.38);
    transform: translateY(-2px);
}

.waavo-widget-shell + .home-destinations {
    padding-top: 34px;
}

.home-intro_shell {
    padding: 34px 38px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(83, 149, 221, 0.18), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.home-intro_text h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    min-height: 2.1em;
    margin: 10px 0 18px;
    text-transform: none;
}

.home-intro_text p {
    max-width: 560px;
    color: #5f6978;
    font-size: 18px;
    line-height: 1.8;
    min-height: 5.4em;
    margin: 0;
}

.home-intro_points {
    display: grid;
    gap: 16px;
}

.home-intro_point {
    padding: 22px 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(83, 149, 221, 0.12);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.home-intro_point span {
    display: block;
    color: var(--main-color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.home-intro_point strong {
    display: block;
    color: var(--color-two);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

.home-destinations .sec-title_three.centered {
    max-width: 880px;
    margin: 0 auto 10px;
    min-height: 250px;
}

.home-destinations .sec-title_three-heading {
    min-height: 100px;
}

.home-section_note {
    max-width: 640px;
    margin: 34px auto 0;
    color: #667182;
    font-size: 18px;
    line-height: 1.7;
    min-height: 3.4em;
}

.home-destinations .gallery-tab .tab-btns-box .p-tab-btn {
    border-radius: 999px;
    padding: 15px 28px;
}

.home-destinations .gallery-tab .p-tabs-content,
.home-destinations .gallery-tab .p-tab.active-tab,
.home-destinations .gallery-carousel .owl-stage-outer {
    min-height: 610px;
}

.home-destinations .location-block_one.style-two .location-block_one-inner {
    border-radius: 26px;
    border: 1px solid rgba(83, 149, 221, 0.10);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.home-destinations .location-block_one-image {
    aspect-ratio: 268 / 374;
}

.home-destinations .location-block_one-image picture {
    display: block;
    height: 100%;
}

.home-destinations .location-block_one-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-destinations .location-block_one-content {
    padding-bottom: 18px;
    min-height: 142px;
}

.location-block_one-meta {
    margin-top: 12px;
    color: var(--main-color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-process .inner-container {
    padding: 34px 30px;
}

.home-process {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.home-process .process-block_one-inner {
    padding: 22px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    min-height: 100%;
}

.home-process .process-block_one-title {
    color: #111827;
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-banner_title,
.page-banner_two-title,
.banner-one_title,
.banner-one_heading,
.banner-single-image_title,
.banner-four_title,
.waavo-results-page .banner-four .banner-four_title,
.cta-one_title,
.sec-title_heading,
.sec-title_three-heading,
.news-block_one-heading,
.cta-one_heading,
.location-block_one-heading,
.counter-one_title,
.quality-one_title,
.vocation-one_title,
.vocation-one_heading,
.faq-two_title,
.testimonial-one_title,
.explore-one_title,
.gallery-five_title,
.our-blog_title,
.tour-package_title,
.adventure_title,
.reviews-one_title,
.blog-detail_title,
.news-block_two-heading,
.news-block_three-heading,
.about-vision-heading,
.masterclass-heading,
.tour-block_one-heading,
.itinerary-block_one-heading,
.post-widget_heading,
.news-block_four-heading,
.team-block_one-heading,
.hotel-block_one-heading,
.destination-block_two-heading,
.contact-info-card h3,
.banner-two_block-overlay h1,
.banner-two_block-overlay h3 {
    font-family: var(--font-family-Oswald);
}

.news-block_one-heading a,
.news-block_two-heading a,
.news-block_three-heading a,
.location-block_one-heading a,
.explore-one_title a,
.our-blog_title a,
.tour-package_title a,
.blog-detail_title a,
.tour-block_one-heading a,
.itinerary-block_one-heading a,
.post-widget_heading a,
.news-block_four-heading a,
.team-block_one-heading a,
.hotel-block_one-heading a,
.destination-block_two-heading a,
.contact-info-card h3 a {
    font-family: inherit;
}

.home-process .process-block_one-text,
.home-process .process-block_one-text a {
    color: #243447;
}

.home-process .process-block_one-text a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-testimonials .testimonial-three_image-inner img {
    border-radius: 28px;
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.14);
}

.home-testimonials .testimonial-three_carousel-inner {
    padding: 34px 36px;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
}

.home-testimonials .testimonial-block_three-text {
    font-size: 19px;
    line-height: 1.9;
    color: #425062;
}

@media (min-width: 992px) {
    .home-testimonials .row {
        align-items: stretch;
    }

    .home-testimonials .testimonial-three_image-column,
    .home-testimonials .testimonial-three_carousel-column {
        display: flex;
    }

    .home-testimonials .testimonial-three_image-inner,
    .home-testimonials .testimonial-three_carousel-inner {
        flex: 1 1 auto;
        width: 100%;
        height: 100%;
    }

    .home-testimonials .testimonial-three_image-inner picture,
    .home-testimonials .testimonial-three_image-inner img {
        display: block;
        width: 100%;
        height: 100%;
    }

    .home-testimonials .testimonial-three_image-inner img {
        object-fit: cover;
    }
}

.home-faq .faq-two_inner-container {
    border-radius: 34px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.faq-two.style-two:not(.home-faq) {
    padding-top: 42px;
    padding-bottom: 0px;
}

.faq-two.style-two:not(.home-faq) .faq-two_inner-container {
    padding-top: 18px;
}

.faq-two.style-two:not(.home-faq) .faq-two_title-column {
    padding-right: 28px;
}

.faq-two.style-two:not(.home-faq) .faq-two_title-inner {
    padding-top: 12px;
}

.faq-two.style-two:not(.home-faq) .faq-two_accordian-column {
    padding-left: 12px;
}

.faq-two.style-two:not(.home-faq) .accordion-box .block {
    margin-bottom: 36px;
}

@media (min-width: 992px) {
    .home-faq .faq-two_inner-container {
        padding: 22px 28px 28px;
    }

    .home-faq .faq-two_title-inner {
        padding-left: 24px;
        padding-right: 34px;
    }

    .home-faq .accordion-box .block {
        padding: 24px 24px 24px 30px;
        border-radius: 18px;
        margin-bottom: 20px;
    }

    .home-faq .accordion-box .block .acc-btn {
        font-size: 22px;
    }

    .home-faq .accordion-box.style-two .block .acc-btn,
    .home-faq .accordion-box.style-two .block .acc-content {
        padding-left: 92px;
    }

    .home-faq .accordion-box.style-two .block .content {
        padding-top: 26px;
    }

    .home-faq .accordion-box .block .icon-outer {
        top: -2px;
        width: 36px;
        height: 36px;
        line-height: 36px;
    }

    .home-faq .accordion-box .block .content .text {
        font-size: 15px;
        line-height: 1.75;
    }

    .faq-two.style-two:not(.home-faq) .faq-two_title-inner {
        padding-top: 24px;
    }

    .faq-two.style-two:not(.home-faq) .faq-two_accordian-column {
        padding-left: 26px;
    }
}

@media (max-width: 991px) {
    .contact-page-shell {
        padding: 52px 0 22px;
    }

    .faq-two_title-inner {
        padding-left: 10px;
    }

    .contact-page_intro {
        margin-bottom: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .waavo-widget-shell .waavo-widget-frame {
        padding: 22px;
    }

    .home-hero .banner-two_block-image,
    .home-hero .banner-single-image {
        box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
    }

    .home-intro {
        padding: 40px 0 20px;
    }

    .home-intro_shell,
    .home-testimonials .testimonial-three_carousel-inner,
    .home-process .inner-container {
        padding: 26px 22px;
    }

    .home-intro_text h2 {
        font-size: 36px;
    }

    .home-intro_text p,
    .home-section_note {
        font-size: 16px;
    }

    .faq-two.style-two:not(.home-faq) {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .faq-two.style-two:not(.home-faq) .faq-two_inner-container {
        padding-top: 8px;
    }

    .faq-two.style-two:not(.home-faq) .faq-two_title-column,
    .faq-two.style-two:not(.home-faq) .faq-two_accordian-column {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .contact-page-shell {
        padding: 38px 0 12px;
    }

    .contact-page_intro h2 {
        font-size: 30px;
        line-height: 1.08;
    }

    .contact-page_intro p {
        font-size: 16px;
        line-height: 1.75;
    }

    .contact-grid {
        gap: 14px;
    }

    .waavo-widget-shell .waavo-widget-frame {
        padding: 16px;
    }

    .waavo-results-empty_card {
        display: block;
        padding: 24px 20px;
        border-radius: 24px;
    }

    .waavo-results-page .banner-four .banner-four_title {
        width: min(100%, 352px);
        max-width: calc(100vw - 28px);
        padding: 0;
        margin-top: 6px;
        font-family: var(--font-family-Oswald);
        text-transform: uppercase;
        font-size: clamp(34px, 10.5vw, 52px) !important;
        font-weight: 700;
        line-height: 1.02em !important;
        letter-spacing: -0.02em;
    }

    .waavo-results-widget .auto-container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .waavo-results-widget .waavo-widget-frame {
        padding-left: 0;
        padding-right: 0;
    }

    .home-waavo-widget .waavo-widget-frame,
    .home-waavo-widget .waavo-iframes,
    .home-waavo-widget .waavo-iframes iframe {
        min-height: 320px;
    }

    .waavo-widget-shell:not(.home-waavo-widget) .waavo-widget-frame,
    .waavo-widget-shell:not(.home-waavo-widget) .waavo-iframes {
        overflow: visible;
    }

    .waavo-widget-shell:not(.home-waavo-widget) .waavo-iframes iframe {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .contact-info-card {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .contact-info-card h3,
    .contact-info-card h3 a {
        font-size: 24px;
    }

    .contact-info-card p,
    .contact-info-card__text {
        font-size: 15px;
        line-height: 1.7;
    }

    .home-hero {
        padding-top: 0;
    }

    .home-hero .banner-two_block-overlay {
        left: 28px;
        right: 28px;
        top: 44px;
        bottom: 42px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .home-hero .banner-two_block-overlay > a {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        width: 100%;
        height: 100%;
        color: #ffffff;
        text-decoration: none;
    }

    .home-hero .banner-two_block-overlay .banner-two_block-kicker,
    .home-hero .banner-two_block-overlay h1,
    .home-hero .banner-two_block-overlay .banner-two_block-title {
        max-width: 72%;
    }

    .home-hero .banner-single-image_overlay {
        inset: 18px 18px 18px;
    }

    .home-hero .banner-single-image_badge {
        --badge-size: 72px;
        --badge-prefix-size: 12px;
        --badge-price-size: 20px;
        padding: 9px;
    }

    .home-hero .banner-single-image_badge-prefix {
        font-size: var(--badge-prefix-size);
    }

    .home-hero .banner-single-image_badge-price {
        font-size: var(--badge-price-size);
    }

    .home-hero .banner-single-image_title {
        font-size: 54px;
    }

    .home-hero .banner-single-image_note {
        font-size: 15px;
    }

    .home-intro_shell {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .home-intro_text h2 {
        font-size: 30px;
        line-height: 1.08;
    }

    .home-intro_point {
        padding: 18px 18px;
        border-radius: 18px;
    }

    .home-intro_point strong {
        font-size: 16px;
    }

    .home-section_note {
        margin-top: 14px;
        font-size: 15px;
    }

    .home-destinations .gallery-tab .tab-btns-box {
        margin-bottom: 30px;
    }

    .home-destinations .gallery-tab .tab-btns-box .p-tab-btn {
        margin-bottom: 10px;
    }

    .home-destinations .gallery-tab .p-tabs-content,
    .home-destinations .gallery-tab .p-tab.active-tab,
    .home-destinations .gallery-carousel .owl-stage-outer {
        min-height: 735px;
    }

    .location-block_one-meta {
        font-size: 11px;
    }

    .home-process .process-block_one-inner {
        padding: 14px 14px 18px;
        border-radius: 18px;
    }

    .home-process .sec-title_two .title {
        font-size: 34px;
        line-height: 1.08;
        letter-spacing: 0.02em;
    }

    .home-process .process-block_one-icon {
        transform: scale(0.82);
        transform-origin: top center;
        margin-bottom: -6px;
    }

    .home-process .process-block_one-title {
        font-size: 30px;
        line-height: 1.15;
    }

    .home-process .process-block_one-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .home-testimonials .testimonial-three_carousel-inner {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .home-testimonials .testimonial-three .owl-nav .owl-prev,
    .home-testimonials .testimonial-three .owl-nav .owl-next {
        margin-left: 0;
    }

    .home-testimonials .testimonial-block_three-text {
        font-size: 16px;
        line-height: 1.75;
    }

    .home-faq .faq-two_title-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-faq .sec-title_three-title,
    .home-faq .sec-title_three-heading,
    .home-faq .faq-two_text {
        padding-left: 4px;
        padding-right: 4px;
    }

    .home-faq .faq-two_inner-container {
        border-radius: 24px;
    }

    .home-faq.faq-two.style-two {
        padding-bottom: 8px;
    }

    .home-faq .faq-two_accordian-column,
    .home-faq .faq-two_title-column {
        margin-bottom: 0;
    }

    .home-faq .accordion-box .block .acc-btn {
        padding-right: 86px;
    }

    .home-faq .accordion-box .block .icon-outer {
        right: 0;
    }
}

@media (max-width: 575px) {
    .home-process .sec-title_two .title {
        font-size: 38px;
        line-height: 1.06;
    }

    .home-hero .banner-single-image_overlay {
        inset: 16px;
    }

    .home-hero .banner-single-image_badge {
        --badge-size: 64px;
        --badge-prefix-size: 11px;
        --badge-price-size: 18px;
        padding: 8px;
    }

    .home-hero .banner-single-image_badge-prefix {
        font-size: var(--badge-prefix-size);
    }

    .home-hero .banner-single-image_badge-price {
        font-size: var(--badge-price-size);
    }

    .home-hero .banner-single-image_title {
        font-size: 46px;
    }

    .home-hero .banner-single-image_note {
        margin-top: 8px;
        font-size: 14px;
    }
}

.banner-four_title--photo-contest .banner-four_title-line {
    display: inline;
}

.banner-four_title--photo-contest .banner-four_title-line--accent {
    color: #3372ff;
}

.trip-one .trip-tabs .tab-btn {
    transition: color 0.35s ease, transform 0.35s ease;
}

.trip-one .trip-tabs .tab-btn::after {
    transition: background-color 0.35s ease, box-shadow 0.35s ease, right 0.5s ease,
        border-radius 0.5s ease;
}

.trip-one .trip-tabs .tab-btn:hover,
.trip-one .trip-tabs .tab-btn:focus-visible,
.trip-one .trip-tabs .tab-btn.active-btn {
    color: var(--white-color);
    transform: translateX(6px);
}

.trip-one .trip-tabs .tab-btn:hover::after,
.trip-one .trip-tabs .tab-btn:focus-visible::after,
.trip-one .trip-tabs .tab-btn.active-btn::after {
    background-color: var(--main-color);
    box-shadow: 10px 24px 45px rgba(51, 114, 255, 0.25);
}

.photo-contest-video {
    padding: 24px 0 36px;
}

.photo-contest-video + .trip-one {
    padding-top: 24px;
}

.photo-contest-video_embed {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(18, 38, 63, 0.14);
    background: #000;
    padding-top: 56.25%;
}

.photo-contest-video_embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767px) {
    .banner-four_title--photo-contest .banner-four_title-line {
        display: block;
    }

    .banner-four + .about-one {
        padding-bottom: 32px;
    }

    .about-one + .photo-contest-video {
        padding-top: 8px;
        padding-bottom: 18px;
    }

    .photo-contest-video + .trip-one {
        padding-top: 48px;
    }

    .trip-one + .achivements-one {
        padding-top: 56px;
        padding-bottom: 36px;
    }

    .achivements-one + .sec-title.centered {
        margin-top: 8px;
        margin-bottom: 0;
    }

    .photo-contest_partners {
        padding-top: 18px;
        padding-bottom: 8px;
    }

    .photo-contest_partners + br + br + .faq-two.style-two {
        padding-top: 40px;
    }

    .faq-two.style-two + .sec-title.centered {
        margin-top: 0;
    }

    .feature-one.style-two {
        padding-top: 56px;
        padding-bottom: 28px;
    }

    .feature-one.style-two + .about-two {
        padding-top: 52px;
        padding-bottom: 44px;
    }

    #business-travel .business-travel-motto {
        overflow: hidden;
        padding: 56px 0 28px;
    }

    #business-travel .business-travel-motto .sec-title_two {
        margin-bottom: 0;
    }

    #business-travel .business-travel-motto .title {
        margin: 0 auto;
        max-width: 100%;
        line-height: 1.35;
        text-wrap: balance;
    }

    .about-two + .contact-one {
        padding-bottom: 36px;
    }

    .contact-one,
    .contact-one .sec-title,
    .contact-one .column {
        text-align: center;
    }

    .contact-one_pattern {
        display: none;
    }

    .masterclasses-contact-links {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
    }

    .masterclasses-whatsapp-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        color: #25d366;
        line-height: 1;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .masterclasses-whatsapp-link:hover {
        color: #1ebe5b;
        transform: translateY(-1px);
    }

    .masterclasses-whatsapp-link__icon {
        display: block;
        font-size: 34px;
        line-height: 1;
    }

    .counter-one_block--photo-contest-deadline,
    .counter-one_block--photo-contest-deadline .counter-one_block-inner,
    .counter-one_block--photo-contest-deadline .counter-one_counter,
    .counter-one_block--photo-contest-deadline .counter-one_counter-text {
        text-align: center;
    }

    .trip-one .trip-one_title--aero {
        font-size: var(--font-40);
        line-height: 50px;
    }

    .main-footer .footer-bottom_nav {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 10px;
        column-gap: 18px;
        text-align: center;
        margin-top: 8px;
    }

    .main-footer .footer-bottom_nav li {
        display: inline-flex;
        justify-content: center;
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }

    .main-footer .footer-bottom_nav li a {
        display: inline-block;
    }

    .photo-contest_partner:first-child img {
        max-height: 72px;
    }

    .masterclasses-page-banner + .about-one {
        padding-top: 42px;
        padding-bottom: 24px;
    }

    .masterclasses-page-banner + .about-one + .about-one {
        padding-top: 10px;
        padding-bottom: 28px;
    }

    .masterclasses-page-banner + .about-one .about-one_image-column,
    .masterclasses-page-banner + .about-one .about-one_content-column,
    .masterclasses-page-banner + .about-one + .about-one .about-one_image-column,
    .masterclasses-page-banner + .about-one + .about-one .about-one_content-column {
        margin-bottom: 18px;
    }

    .masterclasses-page-banner + .about-one + .about-one + .destination-two {
        padding-top: 36px;
        padding-bottom: 36px;
    }

.masterclasses-page-banner + .about-one + .about-one + .destination-two + .contact-one {
    padding-top: 8px;
    padding-bottom: 36px;
}
}

.cookie-consent-open {
    overflow: hidden;
}

.cookie-consent {
    position: fixed;
    inset: auto 24px 24px 24px;
    z-index: 9999;
}

.cookie-consent__panel {
    max-width: 920px;
    margin-left: auto;
    background: rgba(10, 19, 32, 0.96);
    color: #f4efe6;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(5, 12, 22, 0.28);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent__eyebrow {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d6b26e;
    margin-bottom: 10px;
}

.cookie-consent__title {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.cookie-consent__text {
    margin-bottom: 10px;
    color: rgba(244, 239, 230, 0.88);
    max-width: 760px;
}

.cookie-consent__text--small {
    font-size: 14px;
    color: rgba(244, 239, 230, 0.7);
}

.cookie-consent__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f6c46a;
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.cookie-consent__button {
    min-width: 170px;
}

.cookie-consent__button--light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.cookie-consent__button--light .text-one,
.cookie-consent__button--light .text-two {
    color: #ffffff;
}

.cookie-consent__preferences {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent__option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-consent__option:last-child {
    border-bottom: 0;
}

.cookie-consent__option-title {
    display: block;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 6px;
}

.cookie-consent__option-text {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(244, 239, 230, 0.74);
    max-width: 620px;
}

.cookie-consent__option input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 4px;
    accent-color: #d6b26e;
    flex-shrink: 0;
}

.cookie-consent__actions--preferences {
    margin-top: 18px;
}

.footer-consent-link {
    background: transparent;
    border: 0;
    padding: 0;
    color: var(--white-color);
    font: inherit;
    font-weight: 300;
    font-size: var(--font-16);
}

.footer-consent-link:hover {
    color: var(--main-color);
}

.privacy-policy-page {
    padding: 64px 0;
}

.privacy-policy-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 24px 50px rgba(17, 34, 56, 0.08);
    padding: 40px 42px;
}

.privacy-policy-content {
    color: #5e6672;
    font-size: 17px;
    line-height: 1.8;
}

.privacy-policy-content p {
    margin-bottom: 16px;
}

.privacy-policy-content strong {
    color: #13263f;
}

.privacy-policy-content a {
    color: #d2871c;
    text-decoration: underline;
    word-break: break-word;
}

.privacy-policy-accordion .accordion-box .block .content ul {
    list-style: disc;
    margin: 14px 0 18px 22px;
    padding-left: 18px;
}

.privacy-policy-accordion .accordion-box .block .content li {
    list-style: disc;
    display: list-item;
    margin-bottom: 8px;
    color: #5e6672;
}

.privacy-policy-table-wrap {
    overflow-x: auto;
    margin: 24px 0 28px;
    border-radius: 18px;
    border: 1px solid #ece4d8;
}

.privacy-policy-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #fffdfa;
}

.privacy-policy-table th,
.privacy-policy-table td {
    padding: 14px 16px;
    border: 1px solid #ece4d8;
    vertical-align: top;
    text-align: left;
}

.privacy-policy-table th {
    background: #fde9d9;
    color: #13263f;
    font-weight: 700;
}

#masterclasses .masterclasses-contact-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

#masterclasses .masterclasses-whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 4px;
    color: #25d366;
    font-size: 34px;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
}

#masterclasses .masterclasses-whatsapp-link:hover {
    color: #1ebe5b;
    transform: translateY(-1px);
}

#masterclasses .masterclasses-whatsapp-link__icon {
    display: block;
    font-size: inherit;
    line-height: 1;
}

@media (max-width: 479px) {
    #masterclasses .masterclasses-contact-links {
        flex-direction: column;
        gap: 12px;
    }

    #masterclasses .masterclasses-whatsapp-link {
        margin-left: 0;
    }

    .trip-one .trip-one_title--aero {
        font-size: var(--font-30);
        line-height: 40px;
    }

    .cookie-consent {
        inset: auto 14px 14px 14px;
    }

    .cookie-consent__panel {
        padding: 20px;
        border-radius: 18px;
    }

    .cookie-consent__title {
        font-size: 22px;
    }

    .cookie-consent__option {
        flex-direction: column;
    }

    .cookie-consent__button {
        width: 100%;
    }

    .privacy-policy-page {
        padding: 36px 0;
    }

    .privacy-policy-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .privacy-policy-content {
        font-size: 15px;
        line-height: 1.7;
    }

}
