/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM 2026 HEADER
   FULL RESPONSIVE SYSTEM
   POPPINS / BLACK HEADER / GREEN DESTINATION HOVER
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


/* =========================================================
   GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Poppins", sans-serif;

    background: #fff;
    color: #111;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: "Poppins", sans-serif;
}

button {
    border: 0;
    background: transparent;
}

ul,
ol {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --black: #000;
    --black-soft: #080808;
    --black-panel: #101010;

    --white: #fff;
    --white-soft: #f7f7f7;
    --white-hover: #ededed;

    --green: #32633E;
    --green-light: #6dab78;

    --text-dark: #111;
    --text-mid: #555;
    --text-muted: #888;

    --border-light: rgba(0,0,0,.08);
    --border-white: rgba(255,255,255,.12);
    --border-white-strong: rgba(255,255,255,.24);

    --shadow-header:
        0 14px 45px rgba(0,0,0,.28);

    --shadow-dropdown:
        0 24px 65px rgba(0,0,0,.24);

    --radius-small: 5px;
    --radius-medium: 7px;
    --radius-large: 9px;

    --header-height: 94px;
    --contact-height: 48px;

    --container-width: 1580px;

    --ease: cubic-bezier(.22,1,.36,1);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.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;
}


/* =========================================================
   TOP CONTACT / INFO BAR
========================================================= */

.header-info {
    width: 100%;
    min-height: var(--contact-height);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;

    padding: 9px 30px;

    background: #000;
    color: #fff;

    border-bottom: 1px solid rgba(255,255,255,.14);

    position: relative;
    z-index: 1005;
}

.header-info .contact-item {
    display: flex;
    align-items: center;

    min-width: 0;
}

.header-info .contact-item a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #fff;

    font-family: "Poppins", sans-serif;

    font-size: 11.5px;
    font-weight: 400;

    line-height: 1;

    letter-spacing: .15px;

    white-space: nowrap;

    transition:
        color .25s ease,
        opacity .25s ease;
}

.header-info .contact-item a:hover {
    color: var(--green-light);
}

.header-info .contact-item i {
    font-size: 11px;

    color: var(--green-light);
}

.contact-divider {
    width: 1px;
    height: 17px;

    flex: 0 0 auto;

    background: rgba(255,255,255,.28);
}


/* =========================================================
   MAIN HEADER
   ALWAYS BLACK
========================================================= */

.main-header {
    width: 100%;
    height: var(--header-height);

    position: sticky;
    top: 0;

    z-index: 1000;

    background: #000;
    color: #fff;

    border-bottom: 1px solid rgba(255,255,255,.13);

    transition:
        background-color .35s ease,
        box-shadow .35s ease;
}

.main-header.scrolled {
    background: #000;

    box-shadow: var(--shadow-header);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


/* =========================================================
   HEADER INNER
========================================================= */

.header-inner {
    width: min(calc(100% - 70px), var(--container-width));

    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;

    position: relative;

    overflow: visible;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    width: 215px;
    min-width: 215px;

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    position: relative;

    z-index: 1400;

    transition:
        opacity .25s ease,
        transform .3s var(--ease);
}

.logo:hover {
    opacity: .92;
}

.logo-image {
    width: auto;

    height: 72px;

    max-width: 205px;

    object-fit: contain;

    transition:
        transform .35s var(--ease);
}

.logo:hover .logo-image {
    transform: scale(1.035);
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    height: 100%;

    margin-left: auto;

    display: flex;
    align-items: center;

    overflow: visible;
}

.menu {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 4px;

    overflow: visible;
}

.menu-items {
    height: 100%;

    display: flex;
    align-items: center;

    position: relative;

    overflow: visible;
}


/* =========================================================
   MAIN NAVIGATION LINKS
========================================================= */

.main-nav-link,
.sub-btn {
    height: 50px;

    display: inline-flex;
    align-items: center;

    position: relative;

    padding: 0 18px;

    color: #fff;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: .1px;

    line-height: 1;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color .25s ease,
        background-color .25s ease;
}

.main-nav-link:hover,
.sub-btn:hover {
    color: var(--green-light);
}

.main-nav-link::after,
.sub-btn::after {
    content: "";

    position: absolute;

    left: 18px;
    right: 18px;

    bottom: 3px;

    height: 1px;

    background: var(--green-light);

    transform: scaleX(0);

    transform-origin: right center;

    transition:
        transform .35s var(--ease);
}

.main-nav-link:hover::after,
.sub-btn:hover::after,
.menu-items:focus-within > .main-nav-link::after,
.menu-items:focus-within > .sub-btn::after {
    transform: scaleX(1);

    transform-origin: left center;
}


/* =========================================================
   DROPDOWN BUTTON
========================================================= */

.sub-btn {
    gap: 8px;
}

.dropdown-icon {
    font-size: 8px;

    opacity: .65;

    transition:
        transform .35s var(--ease),
        opacity .25s ease;
}

.has-dropdown:hover > .sub-btn .dropdown-icon,
.has-dropdown.desktop-open > .sub-btn .dropdown-icon,
.has-dropdown.open > .sub-btn .dropdown-icon {
    transform: rotate(180deg);

    opacity: 1;
}


/* =========================================================
   ALL DESTINATIONS
   BLACK / WHITE / GREEN ICON
========================================================= */

.all-destinations-item {
    margin-right: 5px;
}

.world-map-link {
    min-width: 150px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;

    gap: 10px;

    padding: 0 17px;

    color: #fff;

    background: transparent;

    border-radius: 7px;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    cursor: pointer;

    transform: none;

    transition:
        color .25s ease;
}


/* =========================================================
   WORLD ICON
========================================================= */

.world-map-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    font-size: 18px;

    color: var(--green-light);

    transition:
        color .25s ease,
        transform .35s var(--ease);
}


/* =========================================================
   DESTINATION TEXT
========================================================= */

.world-map-link::after {
    content: "All Destinations";

    display: inline-block;

    color: inherit;

    font-family: "Poppins", sans-serif;

    font-size: inherit;
    font-weight: inherit;

    white-space: nowrap;
}


/* =========================================================
   GREEN UNDERLINE
   WHOLE ICON + TEXT
========================================================= */

.world-map-link::before {
    content: "";

    position: absolute;

    left: 17px;
    right: 17px;

    bottom: 3px;

    height: 1px;

    background: var(--green-light);

    transform: scaleX(0);

    transform-origin: right center;

    transition:
        transform .35s var(--ease);
}

.world-map-link:hover::before,
.world-map-link:focus-visible::before {
    transform: scaleX(1);

    transform-origin: left center;
}


/* =========================================================
   ALL DESTINATIONS HOVER
   NO WHITE BACKGROUND
========================================================= */

.world-map-link:hover {
    color: var(--green-light);

    background: transparent;

    transform: none;
}

.world-map-link:hover i {
    color: var(--green-light);

    transform: translateX(2px);
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.contact-item-nav {
    margin-left: 12px;
}

.contact-nav-link {
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    color: #fff;

    border: 1px solid rgba(255,255,255,.48);

    border-radius: 7px;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: .1px;

    white-space: nowrap;

    cursor: pointer;

    transition:
        background-color .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s var(--ease),
        box-shadow .3s ease;
}

.contact-nav-link:hover {
    background: #fff;

    color: #000;

    border-color: #fff;

    transform: translateY(-1px);

    box-shadow:
        0 9px 28px rgba(255,255,255,.08);
}


/* =========================================================
   DESKTOP DROPDOWNS
========================================================= */

.sub-menu {
    position: absolute;

    top: calc(100% - 1px);
    left: 50%;

    width: 215px;

    padding: 7px;

    background: #fff;
    color: #111;

    border: 1px solid var(--border-light);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-dropdown);

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 10px);

    pointer-events: none;

    z-index: 1200;

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .35s var(--ease);
}

@media (hover:hover) and (pointer:fine) {

    .has-dropdown:hover > .sub-menu,
    .has-dropdown.desktop-open > .sub-menu,
    .has-dropdown.open > .sub-menu {

        opacity: 1;

        visibility: visible;

        transform: translate(-50%, 0);

        pointer-events: auto;
    }
}


/* =========================================================
   DROPDOWN WIDTHS
========================================================= */

.north-america-menu {
    width: 205px;
}

.africa-menu {
    width: 205px;
}

.asia-sub-menu {
    width: 225px;
}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.dropdown-item,
.asia-destination-item {
    position: relative;

    border-radius: var(--radius-small);
}

.dropdown-link,
.asia-destination-link {
    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 0 13px;

    color: #111;

    font-family: "Poppins", sans-serif;

    font-size: 11.5px;
    font-weight: 500;

    line-height: 1.2;

    border-radius: var(--radius-small);

    cursor: pointer;

    transition:
        background-color .25s ease,
        color .25s ease,
        padding-left .3s var(--ease);
}

.dropdown-link:hover,
.asia-destination-link:hover {
    background: #f1f1f1;

    color: #000;

    padding-left: 18px;
}


/* =========================================================
   DROPDOWN ARROWS
========================================================= */

.dropdown-link-arrow,
.pakistan-link-arrow {
    font-size: 12px;

    line-height: 1;

    opacity: 0;

    transform: translateX(-5px);

    transition:
        opacity .25s ease,
        transform .3s var(--ease);
}

.dropdown-link:hover .dropdown-link-arrow,
.asia-destination-link:hover .dropdown-link-arrow,
.pakistan-link:hover .pakistan-link-arrow {
    opacity: .8;

    transform: translateX(0);
}


/* =========================================================
   PAKISTAN NESTED MENU
========================================================= */

.has-nested-menu {
    position: relative;

    border-radius: var(--radius-small);
}

.nested-sub-btn {
    width: 100%;

    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 13px;

    color: #111;

    font-family: "Poppins", sans-serif;

    font-size: 11.5px;
    font-weight: 600;

    line-height: 1.2;

    border-radius: var(--radius-small);

    cursor: pointer;

    transition:
        background-color .25s ease,
        color .25s ease,
        padding-left .3s var(--ease);
}

.nested-sub-btn:hover,
.has-nested-menu.desktop-open > .nested-sub-btn,
.has-nested-menu.open > .nested-sub-btn {
    background: #f1f1f1;

    color: #000;

    padding-left: 18px;
}

.nested-dropdown-icon {
    font-size: 8px;

    opacity: .55;

    transition:
        transform .3s var(--ease),
        opacity .25s ease;
}

.has-nested-menu:hover > .nested-sub-btn .nested-dropdown-icon,
.has-nested-menu.desktop-open > .nested-sub-btn .nested-dropdown-icon,
.has-nested-menu.open > .nested-sub-btn .nested-dropdown-icon {
    transform: translateX(3px);

    opacity: 1;
}


/* =========================================================
   PAKISTAN NESTED PANEL
========================================================= */

.nested-sub-menu {
    position: absolute;

    top: -7px;
    left: calc(100% + 8px);

    width: 285px;

    max-height: min(calc(100vh - 110px), 580px);

    overflow-y: auto;
    overflow-x: hidden;

    padding: 8px;

    background: #fff;
    color: #111;

    border: 1px solid var(--border-light);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-dropdown);

    opacity: 0;
    visibility: hidden;

    transform: translateX(10px);

    pointer-events: none;

    z-index: 1250;

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .35s var(--ease);

    scrollbar-width: thin;

    scrollbar-color: #bbb transparent;
}

@media (hover:hover) and (pointer:fine) {

    .has-nested-menu:hover > .nested-sub-menu,
    .has-nested-menu.desktop-open > .nested-sub-menu,
    .has-nested-menu.open > .nested-sub-menu {

        opacity: 1;

        visibility: visible;

        transform: translateX(0);

        pointer-events: auto;
    }
}


/* =========================================================
   PAKISTAN CATEGORY TITLES
========================================================= */

.pakistan-category-title {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 34px;

    margin-top: 3px;

    padding: 7px 10px;

    color: #777;

    font-family: "Poppins", sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.25px;

    line-height: 1.3;

    border-radius: var(--radius-small);

    cursor: pointer;

    transition:
        background-color .25s ease,
        color .25s ease,
        padding-left .3s var(--ease);
}

.pakistan-category-title::before {
    content: "";

    width: 2px;
    height: 0;

    margin-right: 7px;

    background: var(--green);

    border-radius: 20px;

    transition:
        height .3s var(--ease);
}

.pakistan-category-title:hover {
    background: #f1f1f1;

    color: #111;

    padding-left: 13px;
}

.pakistan-category-title:hover::before {
    height: 12px;
}

.pakistan-category-title:not(:first-child) {
    margin-top: 6px;

    border-top: 1px solid #ededed;
}


/* =========================================================
   PAKISTAN DESTINATION LINKS
========================================================= */

.pakistan-link-item {
    position: relative;

    border-radius: var(--radius-small);
}

.pakistan-link {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding: 0 11px;

    color: #151515;

    font-family: "Poppins", sans-serif;

    font-size: 11px;
    font-weight: 500;

    line-height: 1.2;

    border-radius: var(--radius-small);

    cursor: pointer;

    transition:
        background-color .25s ease,
        color .25s ease,
        padding-left .3s var(--ease);
}

.pakistan-link:hover {
    background: #f1f1f1;

    color: #000;

    padding-left: 17px;
}


/* =========================================================
   SCROLLBAR
========================================================= */

.nested-sub-menu::-webkit-scrollbar {
    width: 4px;
}

.nested-sub-menu::-webkit-scrollbar-track {
    background: transparent;
}

.nested-sub-menu::-webkit-scrollbar-thumb {
    background: #bbb;

    border-radius: 20px;
}

.nested-sub-menu::-webkit-scrollbar-thumb:hover {
    background: #777;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    width: 48px;
    height: 48px;

    margin-left: auto;

    display: none;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    position: relative;

    z-index: 1400;

    border: 1px solid rgba(255,255,255,.28);

    border-radius: 7px;

    background: #000;

    transition:
        background-color .3s ease,
        border-color .3s ease;
}

.menu-toggle:hover {
    background: #fff;

    border-color: #fff;
}

.menu-toggle-line {
    width: 20px;
    height: 1.5px;

    background: #fff;

    transition:
        transform .3s var(--ease),
        opacity .25s ease,
        background-color .25s ease;
}

.menu-toggle:hover .menu-toggle-line {
    background: #000;
}

.menu-toggle.active {
    background: #fff;

    border-color: #fff;
}

.menu-toggle.active .menu-toggle-line {
    background: #000;
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform:
        translateY(6.5px)
        rotate(45deg);
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {
    opacity: 0;

    transform: scaleX(0);
}

.menu-toggle.active .menu-toggle-line:nth-child(3) {
    transform:
        translateY(-6.5px)
        rotate(-45deg);
}


/* =========================================================
   IMAGE AFTER HEADER
========================================================= */

.header-after {
    width: 100%;

    position: relative;

    overflow: hidden;

    background: #000;

    line-height: 0;
}

.header-after-image {
    width: 100%;
    height: auto;

    max-width: 100%;

    display: block;

    object-fit: contain;

    object-position: center;

    filter:
        brightness(.84)
        saturate(.94);

    transition:
        transform 1.2s var(--ease);
}

.header-after:hover .header-after-image {
    transform: scale(1.012);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width:1500px) {

    .header-inner {
        width:
            min(
                calc(100% - 90px),
                1650px
            );
    }

    .logo {
        width: 235px;
        min-width: 235px;
    }

    .logo-image {
        height: 78px;
        max-width: 225px;
    }

    .main-nav-link,
    .sub-btn {
        font-size: 13.5px;

        padding-left: 19px;
        padding-right: 19px;
    }

    .main-nav-link::after,
    .sub-btn::after {
        left: 19px;
        right: 19px;
    }

    .world-map-link {
        font-size: 13.5px;

        min-width: 158px;
    }

    .world-map-link i {
        font-size: 19px;
    }

    .world-map-link::before {
        left: 17px;
        right: 17px;
    }

    .contact-nav-link {
        font-size: 12px;

        padding-left: 23px;
        padding-right: 23px;
    }

    .sub-menu {
        width: 220px;
    }

    .north-america-menu,
    .africa-menu {
        width: 210px;
    }

    .asia-sub-menu {
        width: 230px;
    }

    .nested-sub-menu {
        width: 290px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width:1250px) {

    :root {
        --header-height: 88px;
    }

    .header-inner {
        width: calc(100% - 42px);
    }

    .logo {
        width: 195px;
        min-width: 195px;
    }

    .logo-image {
        height: 67px;
        max-width: 185px;
    }

    .main-nav-link,
    .sub-btn {
        padding-left: 10px;
        padding-right: 10px;

        font-size: 11.5px;
    }

    .main-nav-link::after,
    .sub-btn::after {
        left: 10px;
        right: 10px;
    }

    .menu {
        gap: 1px;
    }

    .world-map-link {
        min-width: 135px;

        padding-left: 10px;
        padding-right: 10px;

        font-size: 11.5px;
    }

    .world-map-link i {
        font-size: 16px;
    }

    .world-map-link::before {
        left: 10px;
        right: 10px;
    }

    .contact-item-nav {
        margin-left: 5px;
    }

    .contact-nav-link {
        padding-left: 14px;
        padding-right: 14px;

        font-size: 10.5px;
    }

    .sub-menu {
        width: 200px;
    }

    .north-america-menu,
    .africa-menu {
        width: 195px;
    }

    .asia-sub-menu {
        width: 210px;
    }

    .nested-sub-menu {
        width: 260px;
    }
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width:900px) {

    :root {
        --header-height: 78px;
        --contact-height: 43px;
    }


    /* =====================================================
       TOP INFO
    ===================================================== */

    .header-info {
        gap: 17px;

        padding: 7px 15px;

        background: #000;
        color: #fff;
    }

    .header-info .contact-item a {
        font-size: 9.5px;

        gap: 7px;

        color: #fff;
    }

    .header-info .contact-item i {
        font-size: 9px;

        color: var(--green-light);
    }

    .contact-divider {
        height: 13px;

        background: rgba(255,255,255,.28);
    }


    /* =====================================================
       MAIN HEADER
    ===================================================== */

    .main-header,
    .main-header.scrolled {
        background: #000;

        color: #fff;

        border-bottom: 1px solid rgba(255,255,255,.13);

        box-shadow:
            0 10px 30px rgba(0,0,0,.25);

        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .header-inner {
        width: calc(100% - 28px);
    }


    /* =====================================================
       LOGO
    ===================================================== */

    .logo {
        width: auto;

        min-width: 0;
    }

    .logo-image {
        height: 61px;

        max-width: 175px;
    }


    /* =====================================================
       MOBILE TOGGLE
    ===================================================== */

    .menu-toggle {
        display: flex;

        background: #000;

        border:
            1px solid rgba(255,255,255,.28);
    }

    .menu-toggle:hover {
        background: #fff;

        border-color: #fff;
    }

    .menu-toggle-line {
        background: #fff;
    }

    .menu-toggle:hover .menu-toggle-line {
        background: #000;
    }

    .menu-toggle.active {
        background: #fff;

        border-color: #fff;
    }

    .menu-toggle.active .menu-toggle-line {
        background: #000;
    }


    /* =====================================================
       MOBILE NAVIGATION
       WHITE OPEN MENU
    ===================================================== */

    .navigation {
        position: fixed;

        top:
            calc(
                var(--contact-height) +
                var(--header-height)
            );

        left: 0;
        right: 0;

        width: 100%;

        height:
            calc(
                100dvh -
                var(--contact-height) -
                var(--header-height)
            );

        min-height: 0;

        display: block;

        padding:
            14px 14px
            max(28px, env(safe-area-inset-bottom));

        background: #fff;

        color: #000;

        overflow-y: auto;
        overflow-x: hidden;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-12px);

        pointer-events: none;

        z-index: 1300;

        border-top: 1px solid #e5e5e5;

        transition:
            opacity .28s ease,
            visibility .28s ease,
            transform .35s var(--ease);

        scrollbar-width: thin;

        scrollbar-color: #aaa transparent;
    }

    .navigation.active {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }

    .navigation::-webkit-scrollbar {
        width: 4px;
    }

    .navigation::-webkit-scrollbar-track {
        background: transparent;
    }

    .navigation::-webkit-scrollbar-thumb {
        background: #aaa;

        border-radius: 20px;
    }


    /* =====================================================
       MOBILE MENU
    ===================================================== */

    .menu {
        width: 100%;

        height: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 6px;
    }

    .menu-items {
        width: 100%;

        height: auto;

        display: block;

        overflow: visible;
    }


    /* =====================================================
       MOBILE MAIN LINKS
    ===================================================== */

    .main-nav-link,
    .sub-btn {
        width: 100%;

        height: 53px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 0 16px;

        color: #000;

        background: #fff;

        font-size: 13px;

        font-weight: 500;

        border:
            1px solid #dedede;

        border-radius: 7px;

        cursor: pointer;

        transition:
            background-color .25s ease,
            border-color .25s ease,
            color .25s ease,
            transform .25s ease;
    }

    .main-nav-link::after,
    .sub-btn::after {
        display: none;
    }

    .main-nav-link:hover,
    .sub-btn:hover {
        color: #000;

        background: #f5f5f5;

        border-color: #c8c8c8;

        transform: translateY(-1px);
    }

    .dropdown-icon {
        color: #000;

        opacity: .7;
    }


    /* =====================================================
       MOBILE ALL DESTINATIONS
       NO WHITE HOVER
    ===================================================== */

    .all-destinations-item {
        margin: 0;
    }

    .world-map-link {
        width: 100%;

        min-width: 0;

        height: 53px;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        position: relative;

        gap: 12px;

        padding: 0 16px;

        color: #000;

        background: #fff;

        border:
            1px solid #dedede;

        border-radius: 7px;

        font-size: 13px;

        font-weight: 500;

        transform: none;

        transition:
            color .25s ease,
            border-color .25s ease;
    }

    .world-map-link i {
        display: inline-flex;

        width: 21px;
        min-width: 21px;

        align-items: center;
        justify-content: center;

        font-size: 18px;

        color: var(--green);

        transition:
            color .25s ease,
            transform .3s ease;
    }

    .world-map-link::after {
        content: "All Destinations";

        display: inline-block;

        color: #000;

        font-family: "Poppins", sans-serif;

        font-size: 13px;

        font-weight: 500;

        white-space: nowrap;
    }

    .world-map-link::before {
        content: "";

        position: absolute;

        left: 16px;
        right: 16px;

        bottom: 3px;

        height: 1px;

        background: var(--green);

        transform: scaleX(0);

        transform-origin: right center;

        transition:
            transform .35s var(--ease);
    }

    .world-map-link:hover::before,
    .world-map-link:focus-visible::before {
        transform: scaleX(1);

        transform-origin: left center;
    }

    .world-map-link:hover {
        background: #fff;

        color: var(--green);

        border-color: #dedede;

        transform: none;
    }

    .world-map-link:hover i {
        color: var(--green);

        transform: translateX(2px);
    }


    /* =====================================================
       MOBILE DROPDOWNS
    ===================================================== */

    .sub-menu {
        position: static;

        width: 100% !important;

        max-height: 0;

        overflow: hidden;

        padding: 0;

        margin-top: 0;

        background: #fff;

        color: #111;

        border:
            1px solid #dedede;

        border-radius: 7px;

        box-shadow:
            0 10px 30px rgba(0,0,0,.08);

        opacity: 1;

        visibility: visible;

        transform: none;

        pointer-events: auto;

        z-index: auto;

        transition:
            max-height .48s var(--ease),
            margin-top .3s ease,
            padding .3s ease;
    }

    .has-dropdown.open > .sub-menu {
        max-height: 1800px;

        padding: 7px;

        margin-top: 5px;
    }


    /* =====================================================
       MOBILE DROPDOWN LINKS
    ===================================================== */

    .dropdown-item,
    .asia-destination-item {
        width: 100%;

        border-radius: 5px;
    }

    .dropdown-link,
    .asia-destination-link {
        width: 100%;

        min-height: 48px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 0 13px;

        color: #111;

        background: #fff;

        font-family: "Poppins", sans-serif;

        font-size: 12px;

        font-weight: 500;

        border-radius: 5px;

        cursor: pointer;

        transition:
            background-color .22s ease,
            color .22s ease,
            padding-left .3s var(--ease);
    }

    .dropdown-link:hover,
    .asia-destination-link:hover {
        background: #f0f0f0;

        color: #000;

        padding-left: 18px;
    }

    .dropdown-link-arrow {
        opacity: .55;

        transform: none;

        color: #000;
    }

    .dropdown-link:hover .dropdown-link-arrow,
    .asia-destination-link:hover .dropdown-link-arrow {
        opacity: 1;

        transform: translateX(2px);
    }


    /* =====================================================
       MOBILE PAKISTAN
    ===================================================== */

    .has-nested-menu {
        width: 100%;

        background: #fff;

        border-radius: 5px;
    }

    .nested-sub-btn {
        width: 100%;

        min-height: 48px;

        padding: 0 13px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        color: #111;

        background: #fff;

        font-size: 12px;

        font-weight: 600;

        border-radius: 5px;

        cursor: pointer;

        transition:
            background-color .22s ease,
            color .22s ease,
            padding-left .3s var(--ease);
    }

    .nested-sub-btn:hover,
    .has-nested-menu.open > .nested-sub-btn {
        background: #ededed;

        color: #000;

        padding-left: 18px;
    }

    .nested-dropdown-icon {
        color: #000;

        opacity: .55;

        transition:
            transform .3s var(--ease),
            opacity .25s ease;
    }

    .has-nested-menu.open >
    .nested-sub-btn
    .nested-dropdown-icon {

        transform: rotate(90deg);

        opacity: 1;
    }


    /* =====================================================
       MOBILE NESTED PANEL
    ===================================================== */

    .nested-sub-menu {
        position: static;

        width: 100% !important;

        max-height: 0;

        overflow: hidden;

        padding: 0;

        margin: 0;

        background: #fff;

        color: #111;

        border: 0;

        border-radius: 5px;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        pointer-events: auto;

        z-index: auto;

        transition:
            max-height .48s var(--ease),
            padding .3s ease,
            margin .3s ease;
    }

    .has-nested-menu.open >
    .nested-sub-menu {

        max-height: 1800px;

        padding: 6px;

        margin-top: 3px;
    }


    /* =====================================================
       MOBILE PAKISTAN CATEGORIES
    ===================================================== */

    .pakistan-category-title {
        min-height: 36px;

        margin-top: 3px;

        padding: 8px 10px;

        color: #777;

        background: #fff;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        font-weight: 700;

        letter-spacing: 1.25px;

        line-height: 1.3;

        border-radius: 4px;

        cursor: pointer;

        transition:
            background-color .22s ease,
            color .22s ease,
            padding-left .3s var(--ease);
    }

    .pakistan-category-title::before {
        background: var(--green);
    }

    .pakistan-category-title:hover {
        background: #ededed;

        color: #111;

        padding-left: 14px;
    }

    .pakistan-category-title:hover::before {
        height: 12px;
    }

    .pakistan-category-title:not(:first-child) {
        margin-top: 6px;

        border-top:
            1px solid #e4e4e4;
    }


    /* =====================================================
       MOBILE PAKISTAN DESTINATIONS
    ===================================================== */

    .pakistan-link-item {
        width: 100%;

        border-radius: 5px;
    }

    .pakistan-link {
        width: 100%;

        min-height: 45px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding:
            0 11px 0 17px;

        color: #202020;

        background: #fff;

        font-family: "Poppins", sans-serif;

        font-size: 11.5px;

        font-weight: 500;

        border-radius: 5px;

        cursor: pointer;

        transition:
            background-color .22s ease,
            color .22s ease,
            padding-left .3s var(--ease);
    }

    .pakistan-link:hover {
        background: #eaeaea;

        color: #000;

        padding-left: 22px;
    }

    .pakistan-link-arrow {
        color: #000;

        opacity: .5;

        transform: none;
    }

    .pakistan-link:hover .pakistan-link-arrow {
        opacity: 1;

        transform: translateX(2px);
    }


    /* =====================================================
       MOBILE CONTACT
    ===================================================== */

    .contact-item-nav {
        width: 100%;

        margin:
            8px 0 0;
    }

    .contact-nav-link {
        width: 100%;

        height: 50px;

        border-radius: 7px;

        font-size: 12px;

        background: #000;

        color: #fff;

        border-color: #000;

        box-shadow: none;
    }

    .contact-nav-link:hover {
        background: #222;

        color: #fff;

        border-color: #222;

        transform: none;

        box-shadow: none;
    }


    /* =====================================================
       IMAGE
    ===================================================== */

    .header-after-image {
        width: 100%;

        height: auto;

        object-fit: contain;

        transform: none;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width:600px) {

    :root {
        --header-height: 72px;
        --contact-height: 39px;
    }

    .header-info {
        gap: 9px;

        padding:
            6px 9px;

        background: #000;
        color: #fff;
    }

    .header-info .contact-item a {
        font-size: 8px;

        gap: 5px;

        color: #fff;
    }

    .header-info .contact-item i {
        font-size: 8px;

        color: var(--green-light);
    }

    .contact-divider {
        height: 11px;
    }

    .main-header,
    .main-header.scrolled {
        background: #000;

        color: #fff;
    }

    .header-inner {
        width: calc(100% - 20px);
    }

    .logo-image {
        height: 55px;

        max-width: 165px;
    }


    /* TOGGLE */

    .menu-toggle {
        width: 44px;
        height: 44px;

        background: #000;

        border-color:
            rgba(255,255,255,.28);
    }

    .menu-toggle-line {
        background: #fff;
    }

    .menu-toggle:hover {
        background: #fff;

        border-color: #fff;
    }

    .menu-toggle:hover .menu-toggle-line {
        background: #000;
    }


    /* OPEN MENU */

    .navigation {
        top:
            calc(
                var(--contact-height) +
                var(--header-height)
            );

        height:
            calc(
                100dvh -
                var(--contact-height) -
                var(--header-height)
            );

        padding:
            10px 10px
            max(24px, env(safe-area-inset-bottom));

        background: #fff;

        color: #000;
    }


    /* MAIN LINKS */

    .main-nav-link,
    .sub-btn,
    .world-map-link {
        height: 51px;

        min-height: 51px;
    }

    .main-nav-link,
    .sub-btn {
        font-size: 12.5px;

        padding-left: 14px;
        padding-right: 14px;

        background: #fff;

        color: #000;

        border-color: #dedede;
    }


    /* DESTINATIONS */

    .world-map-link {
        padding-left: 14px;
        padding-right: 14px;

        gap: 11px;

        font-size: 12.5px;

        background: #fff;

        color: #000;
    }

    .world-map-link i {
        width: 20px;
        min-width: 20px;

        font-size: 17px;

        color: var(--green);
    }

    .world-map-link::after {
        font-size: 12.5px;

        color: #000;
    }

    .world-map-link::before {
        left: 14px;
        right: 14px;

        bottom: 3px;
    }

    .world-map-link:hover {
        background: #fff;

        color: var(--green);

        border-color: #dedede;
    }


    /* DROPDOWN */

    .has-dropdown.open > .sub-menu {
        padding: 6px;
    }

    .dropdown-link,
    .asia-destination-link {
        min-height: 46px;

        font-size: 11.5px;

        padding-left: 12px;
        padding-right: 12px;

        background: #fff;

        color: #111;
    }

    .dropdown-link:hover,
    .asia-destination-link:hover {
        padding-left: 17px;

        background: #f0f0f0;

        color: #000;
    }


    /* PAKISTAN */

    .nested-sub-btn {
        min-height: 46px;

        font-size: 11.5px;

        padding-left: 12px;
        padding-right: 12px;

        background: #fff;

        color: #111;
    }

    .pakistan-category-title {
        font-size: 7.5px;

        letter-spacing: 1.15px;

        background: #fff;
    }

    .pakistan-link {
        min-height: 44px;

        font-size: 11px;

        padding-left: 15px;

        background: #fff;

        color: #202020;
    }

    .pakistan-link:hover {
        padding-left: 20px;

        background: #eaeaea;
    }


    /* CONTACT */

    .contact-nav-link {
        height: 48px;

        font-size: 11.5px;

        background: #000;

        color: #fff;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width:390px) {

    .header-info {
        gap: 6px;

        background: #000;
    }

    .header-info .contact-item a {
        font-size: 7px;

        color: #fff;
    }

    .header-info .contact-item i {
        font-size: 7px;

        color: var(--green-light);
    }

    .main-header,
    .main-header.scrolled {
        background: #000;

        color: #fff;
    }

    .logo-image {
        max-width: 150px;

        height: 51px;
    }

    .menu-toggle {
        width: 41px;
        height: 41px;

        background: #000;

        border-color:
            rgba(255,255,255,.28);
    }

    .menu-toggle-line {
        background: #fff;
    }

    .menu-toggle:hover {
        background: #fff;
    }

    .menu-toggle:hover .menu-toggle-line {
        background: #000;
    }

    .navigation {
        padding-left: 8px;
        padding-right: 8px;

        background: #fff;

        color: #000;
    }

    .main-nav-link,
    .sub-btn {
        font-size: 11.5px;

        color: #000;

        background: #fff;
    }

    .world-map-link {
        font-size: 11.5px;

        gap: 10px;

        color: #000;

        background: #fff;
    }

    .world-map-link i {
        font-size: 16px;

        color: var(--green);
    }

    .world-map-link::after {
        font-size: 11.5px;

        color: #000;
    }

    .world-map-link::before {
        left: 12px;
        right: 12px;
    }

    .world-map-link:hover {
        background: #fff;

        color: var(--green);
    }

    .dropdown-link,
    .asia-destination-link {
        font-size: 11px;

        color: #111;

        background: #fff;
    }

    .nested-sub-btn {
        font-size: 11px;

        color: #111;

        background: #fff;
    }

    .pakistan-link {
        font-size: 10.5px;

        color: #202020;

        background: #fff;
    }
}


/* =========================================================
   LANDSCAPE PHONES
========================================================= */

@media (max-width:900px) and (orientation:landscape) {

    .main-header,
    .main-header.scrolled {
        background: #000;

        color: #fff;
    }

    .header-info {
        background: #000;

        color: #fff;
    }

    .navigation {
        padding-bottom:
            max(
                50px,
                env(safe-area-inset-bottom)
            );

        background: #fff;

        color: #000;
    }

    .main-nav-link,
    .sub-btn,
    .world-map-link {
        height: 49px;

        min-height: 49px;
    }

    .dropdown-link,
    .asia-destination-link {
        min-height: 43px;
    }

    .pakistan-link {
        min-height: 41px;
    }
}


/* =========================================================
   NARROW TABLETS
========================================================= */

@media (min-width:601px) and (max-width:900px) {

    .main-header,
    .main-header.scrolled {
        background: #000;

        color: #fff;
    }

    .header-info {
        background: #000;

        color: #fff;
    }

    .navigation {
        padding-left: 18px;
        padding-right: 18px;

        background: #fff;

        color: #000;
    }

    .main-nav-link,
    .sub-btn,
    .world-map-link {
        height: 55px;

        background: #fff;

        color: #000;
    }

    .dropdown-link,
    .asia-destination-link {
        min-height: 49px;

        font-size: 12.5px;

        background: #fff;

        color: #111;
    }

    .nested-sub-btn {
        min-height: 49px;

        font-size: 12.5px;

        background: #fff;

        color: #111;
    }

    .pakistan-link {
        min-height: 46px;

        font-size: 11.5px;

        background: #fff;

        color: #202020;
    }

    .world-map-link {
        font-size: 13px;

        background: #fff;

        color: #000;
    }

    .world-map-link i {
        font-size: 18px;

        color: var(--green);
    }

    .world-map-link::before {
        left: 16px;
        right: 16px;
    }

    .world-map-link:hover {
        background: #fff;

        color: var(--green);
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover:none) {

    .header-after:hover .header-after-image {
        transform: none;
    }

    .logo:hover .logo-image {
        transform: none;
    }

    .world-map-link:hover {
        background: transparent;
        transform: none;
    }

    .world-map-link:hover i {
        transform: none;
    }

    .contact-nav-link:hover {
        transform: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

        scroll-behavior: auto !important;
    }
}


/* =========================================================
   KEYBOARD FOCUS
========================================================= */

.main-nav-link:focus-visible,
.sub-btn:focus-visible,
.nested-sub-btn:focus-visible,
.dropdown-link:focus-visible,
.asia-destination-link:focus-visible,
.pakistan-link:focus-visible,
.contact-nav-link:focus-visible,
.world-map-link:focus-visible,
.menu-toggle:focus-visible,
.logo:focus-visible {

    outline:
        2px solid var(--green);

    outline-offset: 3px;
}


/* =========================================================
   PRINT
========================================================= */

@media print {

    .header-info,
    .main-header {
        position: static;

        background: #fff;

        color: #000;

        box-shadow: none;
    }

    .navigation,
    .menu-toggle {
        display: none;
    }

    .logo-image {
        filter: brightness(0);
    }
}


/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM RESPONSIVE HEADER END
========================================================= */
 /* =========================================================
   ADVENTURE LEOPARDS — PARAGLIDING ADVENTURES
   Narrower + Taller Image
   ========================================================= */

.al-paragliding-feature {
    width: 100%;
    background: #ffffff;
    color: #151715;
    padding: 100px 30px;
    overflow: hidden;
}

.al-paragliding-wrap {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 430px);
    align-items: center;
    justify-content: space-between;
    gap: 90px;
}

/* =========================================================
   LEFT CONTENT
   ========================================================= */

.al-paragliding-copy {
    width: 100%;
    max-width: 620px;
}

.al-paragliding-heading {
    margin-bottom: 18px;
}

.al-paragliding-overline {
    display: block;
    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: #657c55;
    cursor: pointer;

    transition:
        color 0.3s ease,
        letter-spacing 0.3s ease;
}

.al-paragliding-overline:hover {
    color: #1d5c3b;
    letter-spacing: 0.27em;
}

.al-paragliding-title {
    margin: 0;

    font-size: clamp(2.2rem, 3.1vw, 3.45rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.045em;

    color: #111311;

    white-space: nowrap;
    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.al-paragliding-title:hover {
    color: #1d5c3b;
    transform: translateX(4px);
}

/* =========================================================
   ACCENT LINE
   ========================================================= */

.al-paragliding-accent {
    width: 58px;
    height: 2px;
    margin: 24px 0 24px;

    background: #151715;
    position: relative;
    cursor: pointer;

    transition:
        width 0.35s ease,
        background 0.35s ease;
}

.al-paragliding-accent span {
    position: absolute;
    left: 0;
    top: 0;

    width: 20px;
    height: 2px;

    background: #657c55;

    transition: width 0.35s ease;
}

.al-paragliding-accent:hover {
    width: 78px;
    background: #1d5c3b;
}

.al-paragliding-accent:hover span {
    width: 36px;
}

/* =========================================================
   TEXT
   ========================================================= */

.al-paragliding-lead,
.al-paragliding-body {
    position: relative;

    max-width: 590px;
    margin: 0 0 15px;
    padding: 14px 16px 14px 18px;

    font-size: 15px;
    line-height: 1.8;

    color: #484c48;
    background: #ffffff;

    border: 1px solid transparent;
    border-left: 2px solid transparent;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.al-paragliding-lead {
    font-size: 16px;
    line-height: 1.75;
    color: #292d29;
}

.al-paragliding-lead:hover,
.al-paragliding-body:hover {
    color: #1d5c3b;
    background: #ffffff;

    border-color: #e6ebe6;
    border-left-color: #1d5c3b;

    transform: translateX(5px);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.05);
}

/* =========================================================
   LOCATION TAGS
   ========================================================= */

.al-paragliding-locations {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 8px;
    margin-top: 23px;
    margin-bottom: 30px;
}

.al-paragliding-locations span {
    display: inline-flex;
    align-items: center;

    min-height: 31px;
    padding: 7px 12px;

    border: 1px solid #e1e5e1;
    border-radius: 999px;

    background: #ffffff;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: #555a55;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.al-paragliding-locations span:hover {
    color: #ffffff;
    background: #1d5c3b;
    border-color: #1d5c3b;

    transform: translateY(-3px);

    box-shadow:
        0 8px 18px rgba(29, 92, 59, 0.16);
}

/* =========================================================
   BUTTON
   ========================================================= */

.al-paragliding-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    min-width: 205px;
    padding: 14px 16px 14px 20px;

    background: #111311;
    color: #ffffff;

    border: 1px solid #111311;
    border-radius: 999px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.al-paragliding-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    margin-left: 15px;

    border-radius: 50%;
    background: #ffffff;
    color: #111311;

    font-style: normal;
    font-size: 15px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.al-paragliding-link:hover {
    background: #ffffff;
    color: #111311;
    border-color: #111311;

    transform: translateY(-3px);

    box-shadow:
        0 12px 26px rgba(29, 92, 59, 0.18);
}

.al-paragliding-link:hover i {
    background: #111311;
    color: #ffffff;
    transform: translateX(4px);
}

/* =========================================================
   RIGHT IMAGE
   MUCH NARROWER + MUCH TALLER
   ========================================================= */

.al-paragliding-media {
    width: 100%;
    max-width: 430px;
    justify-self: end;
}

.al-paragliding-image-link {
    display: block;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
}

.al-paragliding-image-frame {
    position: relative;

    width: 100%;
    height: 610px;

    overflow: hidden;

    border-radius: 10px;

    background: #e9ece9;

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.11);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.al-paragliding-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}

.al-paragliding-image-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.04) 55%,
            rgba(0, 0, 0, 0.16) 100%
        );

    pointer-events: none;
}

.al-paragliding-image-corner {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 42px;
    height: 42px;

    border-right: 1px solid rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);

    pointer-events: none;

    transition:
        width 0.35s ease,
        height 0.35s ease,
        border-color 0.35s ease;
}

.al-paragliding-image-link:hover .al-paragliding-image-frame {
    transform: translateY(-7px);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(29, 92, 59, 0.08);
}

.al-paragliding-image-link:hover .al-paragliding-image {
    transform: scale(1.035);
}

.al-paragliding-image-link:hover .al-paragliding-image-corner {
    width: 54px;
    height: 54px;

    border-color: #ffffff;
}

/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1300px) {

    .al-paragliding-feature {
        padding: 120px 40px;
    }

    .al-paragliding-wrap {
        max-width: 1280px;
        grid-template-columns: minmax(0, 1fr) 420px;
        gap: 105px;
    }

    .al-paragliding-image-frame {
        height: 650px;
    }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .al-paragliding-feature {
        padding: 80px 24px;
    }

    .al-paragliding-wrap {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 55px;
    }

    .al-paragliding-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .al-paragliding-media {
        max-width: 360px;
    }

    .al-paragliding-image-frame {
        height: 540px;
    }
}

/* =========================================================
   TABLET / SMALLER
   ========================================================= */

@media (max-width: 820px) {

    .al-paragliding-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .al-paragliding-copy {
        max-width: 700px;
    }

    .al-paragliding-media {
        width: min(100%, 390px);
        max-width: 390px;
        justify-self: start;
    }

    .al-paragliding-image-frame {
        height: 560px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .al-paragliding-feature {
        padding: 65px 18px;
    }

    .al-paragliding-wrap {
        gap: 38px;
    }

    .al-paragliding-overline {
        font-size: 9px;
        letter-spacing: 0.18em;
    }

    .al-paragliding-title {
        font-size: 2rem;
        line-height: 1.08;
        white-space: normal;
    }

    .al-paragliding-accent {
        margin: 19px 0 20px;
    }

    .al-paragliding-lead,
    .al-paragliding-body {
        max-width: 100%;
        padding: 13px 14px;

        font-size: 14px;
        line-height: 1.72;
    }

    .al-paragliding-lead {
        font-size: 14.5px;
    }

    .al-paragliding-locations {
        gap: 7px;
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .al-paragliding-locations span {
        font-size: 8px;
        min-height: 29px;
        padding: 6px 10px;
    }

    .al-paragliding-link {
        min-width: 195px;
        padding: 13px 14px 13px 18px;
        font-size: 10px;
    }

    .al-paragliding-link i {
        width: 29px;
        height: 29px;
    }

    .al-paragliding-media {
        width: 100%;
        max-width: 320px;
    }

    .al-paragliding-image-frame {
        height: 500px;
        border-radius: 10px;
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

    .al-paragliding-feature {
        padding: 55px 15px;
    }

    .al-paragliding-title {
        font-size: 1.8rem;
    }

    .al-paragliding-media {
        max-width: 285px;
    }

    .al-paragliding-image-frame {
        height: 455px;
    }

    .al-paragliding-link {
        width: 100%;
    }
}

/* =========================================================
   LANDSCAPE MOBILE
   ========================================================= */

@media (max-height: 600px) and (orientation: landscape) {

    .al-paragliding-feature {
        padding: 50px 24px;
    }

    .al-paragliding-wrap {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 40px;
    }

    .al-paragliding-image-frame {
        height: 430px;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .al-paragliding-feature *,
    .al-paragliding-feature *::before,
    .al-paragliding-feature *::after {
        transition: none !important;
        animation: none !important;
    }
}
/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM HOMEPAGE HERO
   BRIGHTER TEXT / LARGER DESCRIPTION / POINTER HOVER
========================================================= */

.al-home-hero,
.al-home-hero * {
    box-sizing: border-box;
}

.al-home-hero {
    position: relative;
    width: 100%;
    height: clamp(720px, 94vh, 980px);
    min-height: 680px;
    overflow: hidden;
    background: #111;
    isolation: isolate;
}


/* =========================================================
   SLIDES
========================================================= */

.al-home-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 1s cubic-bezier(.2,.7,.2,1),
        visibility 1s ease;
}

.al-home-slide-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.al-home-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;

    transform: scale(1.045);

    filter:
        brightness(.84)
        contrast(1.05)
        saturate(.96);

    transition:
        transform 9s cubic-bezier(.16,1,.3,1),
        filter 1s ease;
}

.al-home-slide-active .al-home-image {
    transform: scale(1);
}

.al-home-slide:hover .al-home-image {
    filter:
        brightness(.88)
        contrast(1.06)
        saturate(1);
}


/* =========================================================
   BRIGHTER CINEMATIC OVERLAY
========================================================= */

.al-home-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.56) 0%,
            rgba(0,0,0,.34) 27%,
            rgba(0,0,0,.10) 62%,
            rgba(0,0,0,.04) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.42) 0%,
            rgba(0,0,0,.08) 44%,
            rgba(0,0,0,.04) 100%
        );
}


/* =========================================================
   INNER
========================================================= */

.al-home-inner {
    position: relative;
    z-index: 4;

    width: min(1380px, 90%);
    height: 100%;

    margin: 0 auto;

    padding:
        clamp(70px, 8vw, 110px)
        0
        clamp(70px, 8vw, 105px);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    pointer-events: none;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.al-home-content {
    width: min(760px, 100%);

    margin-top:
        clamp(65px, 11vh, 125px);

    pointer-events: auto;

    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity .82s ease .18s,
        transform .95s cubic-bezier(.16,1,.3,1);
}

.al-home-slide-active .al-home-content {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   EYEBROW
========================================================= */

.al-home-eyebrow {
    display: flex;
    align-items: center;

    width: fit-content;

    margin-bottom: 18px;

    color: rgba(255,255,255,.95);

    font-size: 10px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 3px;
    text-transform: uppercase;

    cursor: pointer;

    text-shadow:
        0 2px 10px rgba(0,0,0,.25);

    transition:
        color .35s ease,
        transform .4s cubic-bezier(.2,.7,.2,1),
        letter-spacing .35s ease,
        text-shadow .35s ease;
}

.al-home-eyebrow::before {
    content: "";

    width: 34px;
    height: 1px;

    margin-right: 12px;

    background: rgba(255,255,255,.96);

    transition:
        width .4s ease,
        background .35s ease;
}

.al-home-eyebrow:hover {
    color: #ffffff;

    transform:
        translateX(5px);

    letter-spacing: 3.3px;

    text-shadow:
        0 4px 16px rgba(255,255,255,.16);
}

.al-home-eyebrow:hover::before {
    width: 48px;

    background: #1d5c3b;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.al-home-title {
    display: block;

    width: fit-content;
    max-width: 100%;

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(62px, 7.6vw, 108px);

    font-weight: 800;

    line-height: .88;

    letter-spacing: -.068em;

    cursor: pointer;

    text-shadow:
        0 15px 45px rgba(0,0,0,.34);

    transition:
        color .35s ease,
        transform .5s cubic-bezier(.2,.7,.2,1),
        letter-spacing .45s ease,
        text-shadow .4s ease;
}

.al-home-title:hover {
    color: #f3faf6;

    transform:
        translateX(8px)
        translateY(-3px);

    letter-spacing: -.061em;

    text-shadow:
        0 18px 52px rgba(0,0,0,.44),
        0 0 24px rgba(255,255,255,.08);
}


/* =========================================================
   DESCRIPTION
   LARGER / BRIGHTER / EASIER TO READ
========================================================= */

.al-home-description {
    position: relative;

    width: min(600px, 100%);

    margin:
        30px
        0
        0;

    padding:
        18px
        0
        18px
        19px;

    color:
        rgba(255,255,255,.94);

    font-size: 15px;

    font-weight: 400;

    line-height: 1.82;

    border-left:
        1px solid
        rgba(255,255,255,.68);

    background:
        rgba(0,0,0,.06);

    text-shadow:
        0 2px 12px rgba(0,0,0,.20);

    cursor: pointer;

    transition:
        color .35s ease,
        transform .45s cubic-bezier(.2,.7,.2,1),
        background .35s ease,
        border-color .35s ease,
        box-shadow .4s ease,
        padding-left .4s ease;
}

.al-home-description::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 18px;

    width: 2px;
    height: 0;

    background: #1d5c3b;

    border-radius: 10px;

    transition:
        height .45s cubic-bezier(.2,.7,.2,1);
}

.al-home-description:hover {
    color: #ffffff;

    transform:
        translateX(7px);

    padding-left: 21px;

    background:
        rgba(255,255,255,.10);

    border-color:
        rgba(255,255,255,.88);

    box-shadow:
        0 16px 36px rgba(0,0,0,.13),
        0 0 18px rgba(29,92,59,.06);

    text-shadow:
        0 2px 10px rgba(0,0,0,.15);
}

.al-home-description:hover::before {
    height:
        calc(100% - 36px);
}


/* =========================================================
   CTA
========================================================= */

.al-home-cta {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 34px;

    min-width: 235px;

    margin-top: 30px;

    padding:
        8px
        9px
        8px
        21px;

    color: #111;

    background: #fff;

    border:
        1px solid #fff;

    border-radius: 999px;

    text-decoration: none;

    font-size: 9px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    overflow: visible;

    cursor: pointer;

    transition:
        color .35s ease,
        background .35s ease,
        border-color .35s ease,
        transform .45s cubic-bezier(.2,.7,.2,1),
        box-shadow .45s ease;
}

.al-home-cta::before {
    content: "";

    position: absolute;

    inset: -5px;

    z-index: -1;

    border-radius: inherit;

    background:
        linear-gradient(
            120deg,
            rgba(29,92,59,.92),
            rgba(255,255,255,.30),
            rgba(29,92,59,.92)
        );

    opacity: 0;

    filter: blur(11px);

    transition:
        opacity .45s ease,
        inset .45s ease;
}

.al-home-cta::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    border-radius: inherit;

    background: #111;

    transform:
        scaleX(0);

    transform-origin: left center;

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1);
}

.al-home-cta span,
.al-home-cta i {
    position: relative;
    z-index: 2;
}

.al-home-cta span {
    transition:
        color .35s ease,
        transform .35s cubic-bezier(.2,.7,.2,1),
        letter-spacing .35s ease;
}

.al-home-cta i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 37px;
    height: 37px;

    color: #fff;

    background: #111;

    border-radius: 50%;

    font-size: 12px;
    font-style: normal;

    transition:
        background .35s ease,
        color .35s ease,
        transform .45s cubic-bezier(.2,.7,.2,1);
}

.al-home-cta:hover {
    color: #fff;

    background: #111;

    border-color: #1d5c3b;

    transform:
        translateY(-5px);

    box-shadow:
        0 14px 30px rgba(0,0,0,.26),
        0 0 0 1px rgba(29,92,59,.18);
}

.al-home-cta:hover::before {
    opacity: 1;

    inset: -8px;
}

.al-home-cta:hover::after {
    transform:
        scaleX(1);
}

.al-home-cta:hover span {
    color: #fff;

    transform:
        translateX(4px);

    letter-spacing: 2px;
}

.al-home-cta:hover i {
    color: #111;

    background: #fff;

    transform:
        rotate(45deg)
        scale(1.05);
}


/* =========================================================
   BOTTOM BRAND
========================================================= */

.al-home-footer {
    display: flex;

    align-items: center;

    gap: 15px;

    width: fit-content;

    color:
        rgba(255,255,255,.88);

    font-size: 8px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: 1.9px;

    text-transform: uppercase;

    pointer-events: auto;
}

.al-home-brand,
.al-home-category {
    cursor: pointer;

    transition:
        color .35s ease,
        transform .35s cubic-bezier(.2,.7,.2,1),
        letter-spacing .35s ease,
        text-shadow .35s ease;
}

.al-home-brand {
    color: #fff;
}

.al-home-brand:hover,
.al-home-category:hover {
    color: #fff;

    transform:
        translateY(-3px);

    letter-spacing: 2.2px;

    text-shadow:
        0 3px 12px rgba(255,255,255,.18);
}

.al-home-rule {
    display: block;

    width: 43px;
    height: 1px;

    flex-shrink: 0;

    background:
        rgba(255,255,255,.60);

    transition:
        width .4s ease,
        background .35s ease;
}

.al-home-footer:hover .al-home-rule {
    width: 60px;

    background: #1d5c3b;
}


/* =========================================================
   ARROWS
========================================================= */

.al-home-arrow {
    position: absolute;

    top: 50%;

    z-index: 40;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    padding: 0;

    color: #fff;

    background:
        rgba(0,0,0,.15);

    border:
        1px solid
        rgba(255,255,255,.55);

    border-radius: 50%;

    cursor: pointer;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transform:
        translateY(-50%);

    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        transform .4s cubic-bezier(.2,.7,.2,1),
        box-shadow .4s ease;
}

.al-home-arrow-prev {
    left: 28px;
}

.al-home-arrow-next {
    right: 28px;
}

.al-home-arrow i {
    font-size: 12px;

    transition:
        transform .35s cubic-bezier(.2,.7,.2,1);
}

.al-home-arrow:hover {
    color: #111;

    background: #fff;

    border-color: #fff;

    transform:
        translateY(-50%)
        scale(1.08);

    box-shadow:
        0 15px 38px rgba(0,0,0,.25),
        0 0 18px rgba(255,255,255,.08);
}

.al-home-arrow-prev:hover i {
    transform:
        translateX(-4px);
}

.al-home-arrow-next:hover i {
    transform:
        translateX(4px);
}

.al-home-arrow:active {
    transform:
        translateY(-50%)
        scale(.94);
}


/* =========================================================
   DOTS
========================================================= */

.al-home-dots {
    position: absolute;

    left: 50%;
    bottom: 27px;

    z-index: 41;

    display: flex;

    align-items: center;

    gap: 7px;

    transform:
        translateX(-50%);
}

.al-home-dot {
    position: relative;

    width: 30px;
    height: 12px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.al-home-dot span {
    position: absolute;

    left: 0;
    top: 50%;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.60);

    transform:
        translateY(-50%);

    transition:
        width .4s cubic-bezier(.2,.7,.2,1),
        background .35s ease,
        box-shadow .35s ease;
}

.al-home-dot:hover span {
    width: 11px;

    background: #fff;

    box-shadow:
        0 0 11px rgba(255,255,255,.50);
}

.al-home-dot-active span {
    width: 27px;

    border-radius: 999px;

    background: #fff;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1500px) {

    .al-home-hero {
        height: 95vh;
        max-height: 1050px;
    }

    .al-home-inner {
        width: min(1450px, 91%);
    }

    .al-home-title {
        font-size: 112px;
    }

    .al-home-description {
        font-size: 15.5px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .al-home-inner {
        width: 88%;
    }

    .al-home-title {
        font-size:
            clamp(58px, 7.5vw, 96px);
    }

    .al-home-description {
        font-size: 14px;
    }

    .al-home-arrow-prev {
        left: 18px;
    }

    .al-home-arrow-next {
        right: 18px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .al-home-hero {
        height: 84vh;
        min-height: 650px;
    }

    .al-home-inner {
        width: 88%;

        padding:
            65px
            0
            82px;
    }

    .al-home-content {
        margin-top: 70px;
    }

    .al-home-title {
        font-size:
            clamp(52px, 8.5vw, 80px);
    }

    .al-home-description {
        font-size: 13.5px;
    }

    .al-home-arrow {
        width: 49px;
        height: 49px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .al-home-hero {
        height: 700px;
        min-height: 700px;
    }

    .al-home-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.10) 0%,
                rgba(0,0,0,.23) 35%,
                rgba(0,0,0,.66) 100%
            );
    }

    .al-home-inner {
        width:
            calc(100% - 32px);

        padding:
            67px
            0
            53px;
    }

    .al-home-content {
        width: 100%;

        margin-top: 68px;
    }

    .al-home-eyebrow {
        margin-bottom: 13px;

        font-size: 7px;

        letter-spacing: 2px;
    }

    .al-home-eyebrow::before {
        width: 22px;

        margin-right: 8px;
    }

    .al-home-title,
    .al-home-title-nowrap {
        width: 100%;

        font-size:
            clamp(45px, 12.5vw, 66px);

        line-height: .92;

        letter-spacing: -.06em;

        white-space: nowrap;
    }

    .al-home-title:hover {
        transform:
            translateX(4px)
            translateY(-2px);

        letter-spacing: -.054em;
    }

    .al-home-description {
        width: 100%;

        margin-top: 20px;

        padding:
            13px
            0
            13px
            13px;

        font-size: 10.5px;

        line-height: 1.72;
    }

    .al-home-description:hover {
        transform:
            translateX(4px);

        padding-left: 14px;
    }

    .al-home-cta {
        min-width: 205px;

        margin-top: 20px;

        padding:
            7px
            8px
            7px
            17px;

        font-size: 7px;

        letter-spacing: 1.2px;
    }

    .al-home-cta i {
        width: 32px;
        height: 32px;

        font-size: 10px;
    }

    .al-home-footer {
        gap: 9px;

        max-width: 100%;

        flex-wrap: wrap;

        font-size: 5.8px;

        letter-spacing: 1.3px;
    }

    .al-home-rule {
        width: 22px;
    }

    .al-home-arrow {
        top: 23px;

        width: 40px;
        height: 40px;

        transform: none;
    }

    .al-home-arrow-prev {
        left: 13px;
    }

    .al-home-arrow-next {
        right: 13px;
    }

    .al-home-arrow:hover {
        transform:
            scale(1.07);
    }

    .al-home-arrow:active {
        transform:
            scale(.94);
    }

    .al-home-dots {
        bottom: 18px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .al-home-hero {
        height: 650px;
        min-height: 650px;
    }

    .al-home-inner {
        width:
            calc(100% - 24px);

        padding:
            61px
            0
            49px;
    }

    .al-home-title,
    .al-home-title-nowrap {
        font-size:
            clamp(39px, 11.8vw, 55px);
    }

    .al-home-description {
        font-size: 9.2px;
    }

    .al-home-footer {
        font-size: 5.3px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.al-home-arrow:focus-visible,
.al-home-cta:focus-visible,
.al-home-dot:focus-visible {
    outline:
        2px solid #fff;

    outline-offset:
        4px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .al-home-slide,
    .al-home-image,
    .al-home-content,
    .al-home-title,
    .al-home-cta,
    .al-home-arrow,
    .al-home-dot {
        transition: none !important;
    }

    .al-home-image,
    .al-home-slide-active .al-home-image {
        transform: none;
    }
}
/* =========================================================
   ADVENTURE LEOPARDS
   DESTINATIONS PAGE
   PREMIUM WHITE / BLACK EDITORIAL DESIGN
   FULL RESPONSIVE CSS
========================================================= */

.destinations-page,
.destinations-page * {
    box-sizing: border-box;
}


/* =========================================================
   PAGE
========================================================= */

.destinations-page {
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    color: #000000;
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.destinations-hero {
    position: relative;
    width: 100%;
    min-height: 820px;

    padding:
        34px 4.2vw 105px;

    display: flex;
    align-items: center;

    background: #ffffff;
}


/* =========================================================
   HERO INNER
========================================================= */

.destinations-hero-inner {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(320px, .55fr);

    gap:
        clamp(60px, 7vw, 110px);

    align-items: center;
}


/* =========================================================
   HERO LEFT
========================================================= */

.destinations-hero-left {
    position: relative;
    min-width: 0;
}


/* =========================================================
   EYEBROW
========================================================= */

.destinations-eyebrow {
    position: relative;

    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-bottom: 30px;

    color: #777777;

    font-size: .66rem;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 4px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .4s cubic-bezier(.2,.7,.2,1),
        letter-spacing .35s ease;
}

.destinations-eyebrow::before {
    content: "";

    width: 34px;
    height: 1px;

    margin-right: 12px;

    background: #111111;

    transition:
        width .4s ease,
        background .35s ease;
}

.destinations-eyebrow:hover {
    color: #1d5c3b;

    transform:
        translateX(5px);

    letter-spacing: 4.3px;
}

.destinations-eyebrow:hover::before {
    width: 47px;

    background: #1d5c3b;
}


/* =========================================================
   HERO TITLE
========================================================= */

.destinations-title {
    position: relative;

    margin: 0;

    max-width: 980px;

    color: #000000;

    font-size:
        clamp(
            4.3rem,
            8.2vw,
            9.2rem
        );

    font-weight: 850;

    line-height: .84;

    letter-spacing: -.075em;

    cursor: pointer;

    transition:
        color .4s ease,
        transform .5s cubic-bezier(.2,.7,.2,1),
        letter-spacing .45s ease,
        text-shadow .4s ease;
}

.destinations-title:hover {
    color: #1d5c3b;

    transform:
        translateX(7px)
        translateY(-3px);

    letter-spacing: -.069em;

    text-shadow:
        0 12px 35px rgba(29,92,59,.10);
}

.destinations-title span,
.destinations-title em {
    display: block;
}

.destinations-title span,
.destinations-title em {
    color: #b4b4b4;

    transition:
        color .35s ease;
}

.destinations-title:hover span,
.destinations-title:hover em {
    color: #98aa9f;
}


/* =========================================================
   HERO RIGHT
========================================================= */

.destinations-hero-right {
    position: relative;

    width: 100%;
    max-width: 560px;

    padding-top: 55px;
}


/* =========================================================
   HERO ACCENT
========================================================= */

.destinations-hero-right::before {
    content: "";

    display: block;

    width: 42px;
    height: 2px;

    margin-bottom: 28px;

    background: #000000;

    transition:
        width .4s ease,
        background .35s ease;
}

.destinations-hero-right:hover::before {
    width: 66px;

    background: #1d5c3b;
}


/* =========================================================
   HERO TEXT
========================================================= */

.destinations-hero-right p {
    position: relative;

    margin: 0;

    color: #333333;

    font-size:
        clamp(
            .95rem,
            1.28vw,
            1.1rem
        );

    line-height: 1.86;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .4s cubic-bezier(.2,.7,.2,1),
        padding-left .35s ease;
}

.destinations-hero-right p:hover {
    color: #1d5c3b;

    transform:
        translateX(6px);
}

.destinations-hero-lead {
    color: #555555 !important;
}

.destinations-hero-right strong {
    color: #000000;

    font-weight: 800;

    transition:
        color .3s ease;
}

.destinations-hero-right p:hover strong {
    color: #1d5c3b;
}

.destinations-hero-text p,
.destinations-hero-text {
    margin-top: 25px !important;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.hero-scroll-indicator {
    position: absolute;

    left: 4.2vw;
    bottom: 34px;

    display: flex;

    align-items: center;

    gap: 17px;

    color: #999999;

    font-size: .59rem;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .35s cubic-bezier(.2,.7,.2,1);
}

.hero-scroll-indicator:hover {
    color: #1d5c3b;

    transform:
        translateX(4px);
}

.scroll-line {
    width: 70px;
    height: 1px;

    background: #d5d5d5;

    transition:
        width .4s ease,
        background .35s ease;
}

.hero-scroll-indicator:hover .scroll-line {
    width: 92px;

    background: #1d5c3b;
}


/* =========================================================
   SHOWCASE
========================================================= */

.destinations-showcase {
    position: relative;

    width: 100%;

    padding:
        115px
        4.2vw
        140px;

    background: #ffffff;
}


/* =========================================================
   TOP DIVIDER
========================================================= */

.destinations-showcase::before {
    content: "";

    position: absolute;

    top: 0;
    left: 4.2vw;
    right: 4.2vw;

    height: 1px;

    background: #eeeeee;
}


/* =========================================================
   SHOWCASE HEADER
========================================================= */

.destinations-showcase-header {
    width: 100%;
    max-width: 1500px;

    margin:
        0 auto
        60px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, .4fr);

    gap:
        clamp(60px, 8vw, 130px);

    align-items: end;
}


/* =========================================================
   SHOWCASE EYEBROW
========================================================= */

.showcase-eyebrow {
    display: inline-flex;

    align-items: center;

    width: fit-content;

    margin-bottom: 22px;

    color: #999999;

    font-size: .65rem;

    font-weight: 800;

    line-height: 1;

    letter-spacing: 3px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .35s cubic-bezier(.2,.7,.2,1),
        letter-spacing .35s ease;
}

.showcase-eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    margin-right: 10px;

    background: #111111;

    transition:
        width .35s ease,
        background .35s ease;
}

.showcase-eyebrow:hover {
    color: #1d5c3b;

    transform:
        translateX(4px);

    letter-spacing: 3.3px;
}

.showcase-eyebrow:hover::before {
    width: 40px;

    background: #1d5c3b;
}


/* =========================================================
   SHOWCASE TITLE
========================================================= */

.destinations-showcase h2 {
    margin: 0;

    color: #000000;

    font-size:
        clamp(
            3rem,
            5.4vw,
            6rem
        );

    font-weight: 800;

    line-height: .9;

    letter-spacing: -.06em;

    cursor: pointer;

    transition:
        color .4s ease,
        transform .45s cubic-bezier(.2,.7,.2,1),
        letter-spacing .4s ease,
        text-shadow .35s ease;
}

.destinations-showcase h2:hover {
    color: #1d5c3b;

    transform:
        translateX(6px)
        translateY(-2px);

    letter-spacing: -.055em;

    text-shadow:
        0 12px 30px rgba(29,92,59,.08);
}

.destinations-showcase h2 span {
    display: block;

    color: #b5b5b5;

    transition:
        color .35s ease;
}

.destinations-showcase h2:hover span {
    color: #98aa9f;
}


/* =========================================================
   SHOWCASE DESCRIPTION
========================================================= */

.destinations-showcase-header > p {
    position: relative;

    margin: 0;

    max-width: 430px;

    padding:
        17px
        0
        17px
        17px;

    color: #555555;

    font-size: .95rem;

    line-height: 1.82;

    border-left:
        1px solid
        #e0e3e1;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .4s cubic-bezier(.2,.7,.2,1),
        background .35s ease,
        border-color .35s ease,
        box-shadow .4s ease,
        padding-left .35s ease;
}

.destinations-showcase-header > p::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 17px;

    width: 2px;
    height: 0;

    background: #1d5c3b;

    transition:
        height .4s cubic-bezier(.2,.7,.2,1);
}

.destinations-showcase-header > p:hover {
    color: #294638;

    transform:
        translateX(6px);

    padding-left: 20px;

    background: #ffffff;

    border-color: #ccd9d1;

    box-shadow:
        0 12px 30px rgba(29,92,59,.06);
}

.destinations-showcase-header > p:hover::before {
    height:
        calc(100% - 34px);
}


/* =========================================================
   SLIDER
========================================================= */

.destination-slider {
    position: relative;

    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
}


/* =========================================================
   VIEWPORT
========================================================= */

.destination-viewport {
    width: 100%;

    overflow: hidden;

    touch-action: pan-y;

    cursor: grab;
}

.destination-viewport:active {
    cursor: grabbing;
}


/* =========================================================
   TRACK
========================================================= */

.destination-track {
    display: flex;

    gap: 28px;

    will-change: transform;
}


/* =========================================================
   CARD
========================================================= */

.destination-card {
    position: relative;

    flex:
        0 0
        calc(
            (100% - 56px) / 3
        );

    min-width: 0;

    overflow: hidden;

    border:
        1px solid
        #e2e2e2;

    border-radius: 26px;

    background: #ffffff;

    box-shadow:
        0 10px 32px
        rgba(0,0,0,.055);

    cursor: pointer;

    transition:
        transform .5s cubic-bezier(.2,.7,.2,1),
        border-color .4s ease,
        box-shadow .5s ease;
}

.destination-card:hover {
    transform:
        translateY(-9px);

    border-color:
        #c7c7c7;

    box-shadow:
        0 26px 68px
        rgba(0,0,0,.13),
        0 5px 15px
        rgba(29,92,59,.035);
}


/* =========================================================
   PHOTO
========================================================= */

.destination-photo {
    position: relative;

    display: block;

    height: 510px;

    overflow: hidden;

    color: #ffffff;

    text-decoration: none;

    background: #eeeeee;

    cursor: pointer;
}

.destination-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform:
        scale(1.001);

    transition:
        transform 1s cubic-bezier(.16,1,.3,1),
        filter .65s ease;
}

.destination-card:hover
.destination-photo img {
    transform:
        scale(1.065);

    filter:
        contrast(1.04)
        saturate(1.03);
}


/* =========================================================
   PHOTO OVERLAY
========================================================= */

.photo-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.05),
            transparent 38%,
            rgba(0,0,0,.66) 100%
        );

    transition:
        background .5s ease;
}

.destination-card:hover
.photo-overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.07),
            transparent 35%,
            rgba(0,0,0,.57) 100%
        );
}


/* =========================================================
   META
========================================================= */

.destination-meta {
    position: absolute;

    top: 22px;
    left: 22px;
    right: 22px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    pointer-events: none;
}


/* =========================================================
   REMOVE NUMBERS
========================================================= */

.destination-meta span:first-child {
    display: none;
}


/* =========================================================
   REGION PILL
========================================================= */

.destination-meta span:last-child {
    margin-left: auto;

    padding:
        9px
        13px;

    border:
        1px solid
        rgba(255,255,255,.82);

    border-radius: 999px;

    background:
        rgba(255,255,255,.91);

    backdrop-filter:
        blur(12px);

    color: #000000;

    font-size: .58rem;

    font-weight: 800;

    line-height: 1;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    pointer-events: auto;

    cursor: pointer;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s cubic-bezier(.2,.7,.2,1),
        border-color .35s ease,
        box-shadow .35s ease;
}

.destination-meta span:last-child:hover {
    color: #ffffff;

    background: #1d5c3b;

    border-color: #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.17);
}


/* =========================================================
   PHOTO LABEL
========================================================= */

.photo-label {
    position: absolute;

    left: 22px;
    bottom: 22px;

    padding:
        8px
        12px;

    color: #ffffff;

    font-size: .61rem;

    font-weight: 800;

    line-height: 1;

    letter-spacing: 2px;

    text-transform: uppercase;

    border:
        1px solid
        rgba(255,255,255,.40);

    border-radius: 999px;

    background:
        rgba(0,0,0,.15);

    backdrop-filter:
        blur(8px);

    opacity: 0;

    transform:
        translateY(12px);

    cursor: pointer;

    transition:
        opacity .4s ease,
        transform .45s cubic-bezier(.2,.7,.2,1),
        background .35s ease,
        border-color .35s ease;
}

.destination-card:hover
.photo-label {
    opacity: 1;

    transform:
        translateY(0);
}

.photo-label:hover {
    background:
        #1d5c3b;

    border-color:
        #ffffff;
}


/* =========================================================
   CARD BOTTOM
========================================================= */

.destination-card-bottom {
    min-height: 125px;

    padding: 25px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    background: #ffffff;

    cursor: pointer;

    transition:
        background .4s ease;
}

.destination-card:hover
.destination-card-bottom {
    background:
        #fbfcfb;
}


/* =========================================================
   CARD TEXT AREA
========================================================= */

.destination-card-bottom > div {
    min-width: 0;

    cursor: pointer;

    transition:
        transform .35s cubic-bezier(.2,.7,.2,1);
}

.destination-card:hover
.destination-card-bottom > div {
    transform:
        translateX(3px);
}


/* =========================================================
   CARD CATEGORY
========================================================= */

.destination-card-bottom small {
    display: block;

    margin-bottom: 10px;

    color: #999999;

    font-size: .59rem;

    font-weight: 800;

    line-height: 1;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color .3s ease,
        transform .3s ease,
        letter-spacing .3s ease;
}

.destination-card-bottom small:hover {
    color: #1d5c3b;

    transform:
        translateX(3px);

    letter-spacing: 1.9px;
}


/* =========================================================
   CARD TITLE
========================================================= */

.destination-card-bottom h3 {
    margin: 0;

    color: #000000;

    font-size:
        clamp(
            1.35rem,
            2vw,
            1.7rem
        );

    font-weight: 750;

    line-height: 1;

    letter-spacing:
        -.025em;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .4s cubic-bezier(.2,.7,.2,1),
        letter-spacing .35s ease,
        text-shadow .35s ease;
}

.destination-card-bottom h3:hover {
    color: #1d5c3b;

    transform:
        translateX(4px)
        translateY(-2px);

    letter-spacing: -.015em;

    text-shadow:
        0 7px 20px
        rgba(29,92,59,.10);
}


/* =========================================================
   CARD ARROW
========================================================= */

.destination-card-arrow {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        #000000;

    border-radius: 50%;

    background: #000000;

    color: #ffffff;

    text-decoration: none;

    font-size: 1.25rem;

    cursor: pointer;

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1),
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        box-shadow .4s ease;
}

.destination-card:hover
.destination-card-arrow {
    transform:
        rotate(8deg)
        scale(1.08);
}

.destination-card-arrow:hover {
    background: #ffffff;

    color: #000000;

    border-color: #1d5c3b;

    box-shadow:
        0 0 0 5px
        rgba(29,92,59,.08),
        0 10px 24px
        rgba(0,0,0,.12);
}


/* =========================================================
   SLIDER NAVIGATION
========================================================= */

.destination-nav {
    position: absolute;

    top: 50%;

    z-index: 20;

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border:
        1px solid
        #d6d6d6;

    border-radius: 50%;

    background: #ffffff;

    color: #000000;

    font-size: 1.3rem;

    cursor: pointer;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.08);

    transform:
        translateY(-50%);

    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        transform .4s cubic-bezier(.2,.7,.2,1),
        box-shadow .35s ease;
}

.destination-nav:hover {
    background: #000000;

    color: #ffffff;

    border-color: #000000;

    transform:
        translateY(-50%)
        scale(1.08);

    box-shadow:
        0 14px 34px
        rgba(0,0,0,.18),
        0 0 0 5px
        rgba(29,92,59,.05);
}

.destination-nav:active {
    transform:
        translateY(-50%)
        scale(.94);
}

.destination-prev {
    left: -31px;
}

.destination-next {
    right: -31px;
}


/* =========================================================
   SLIDER FOOTER
========================================================= */

.destination-slider-bottom {
    width: 100%;
    max-width: 1500px;

    margin:
        27px
        auto
        0;

    display: flex;

    align-items: center;

    gap: 25px;
}


/* =========================================================
   PROGRESS
========================================================= */

.destination-progress {
    position: relative;

    flex: 1;

    height: 2px;

    background:
        #e4e4e4;

    overflow: hidden;

    cursor: pointer;
}

.destination-progress span {
    display: block;

    width: 5%;
    height: 100%;

    background:
        #000000;

    transition:
        width .7s cubic-bezier(.22,1,.36,1),
        background .35s ease;
}

.destination-progress:hover span {
    background:
        #1d5c3b;
}


/* =========================================================
   COUNT
========================================================= */

.destination-count {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 8px;

    min-width: 70px;

    color: #999999;

    font-size: .72rem;

    font-weight: 800;

    line-height: 1;

    cursor: pointer;

    transition:
        color .3s ease;
}

.destination-count:hover {
    color: #1d5c3b;
}

.destination-count strong {
    color: #000000;

    transition:
        color .3s ease;
}

.destination-count:hover strong {
    color: #1d5c3b;
}


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.destinations-button-wrap {
    margin-top: 60px;

    text-align: center;
}

.destinations-button {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 18px;

    min-width: 235px;

    padding:
        7px
        8px
        7px
        23px;

    border:
        1px solid
        #000000;

    border-radius: 999px;

    background: #ffffff;

    color: #000000;

    text-decoration: none;

    font-size: .88rem;

    font-weight: 800;

    line-height: 1;

    cursor: pointer;

    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        transform .4s cubic-bezier(.2,.7,.2,1),
        box-shadow .4s ease;
}

.destinations-button span {
    transition:
        transform .35s cubic-bezier(.2,.7,.2,1),
        letter-spacing .3s ease;
}

.destinations-button b {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #000000;

    color: #ffffff;

    font-size: 1.1rem;

    transition:
        background .35s ease,
        color .35s ease,
        transform .4s cubic-bezier(.2,.7,.2,1);
}

.destinations-button:hover {
    background: #000000;

    color: #ffffff;

    border-color: #000000;

    transform:
        translateY(-5px);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.15),
        0 0 0 5px
        rgba(29,92,59,.035);
}

.destinations-button:hover span {
    transform:
        translateX(4px);

    letter-spacing: .2px;
}

.destinations-button:hover b {
    background: #ffffff;

    color: #000000;
}


/* =========================================================
   UNIVERSAL POINTERS FOR CONTENT
========================================================= */

.destinations-page h1,
.destinations-page h2,
.destinations-page h3,
.destinations-page p,
.destinations-page small {
    cursor: pointer;
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .destinations-hero {
        min-height: 760px;

        padding:
            80px
            5vw
            100px;
    }

    .destinations-hero-inner {
        gap: 55px;
    }

    .destinations-title {
        font-size:
            clamp(
                4rem,
                8vw,
                7.8rem
            );
    }

    .destinations-showcase {
        padding:
            90px
            5vw
            115px;
    }

    .destinations-showcase::before {
        left: 5vw;
        right: 5vw;
    }

    .destinations-showcase-header {
        gap: 60px;
    }

    .destination-card {
        flex:
            0 0
            calc(
                (100% - 28px) / 2
            );
    }

    .destination-photo {
        height: 470px;
    }

    .destination-prev {
        left: -20px;
    }

    .destination-next {
        right: -20px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .destinations-hero {
        min-height: auto;

        padding:
            80px
            6vw
            100px;
    }

    .destinations-hero-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .destinations-hero-right {
        max-width: 700px;

        padding-top: 0;
    }

    .destinations-showcase-header {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .destinations-showcase-header > p {
        max-width: 650px;
    }

    .hero-scroll-indicator {
        left: 6vw;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .destinations-hero {
        min-height: auto;

        padding:
            65px
            20px
            90px;

        align-items: flex-start;
    }

    .destinations-hero-inner {
        gap: 42px;
    }

    .destinations-eyebrow {
        margin-bottom: 25px;

        font-size: .58rem;

        letter-spacing: 2.7px;
    }

    .destinations-eyebrow::before {
        width: 23px;

        margin-right: 9px;
    }

    .destinations-title {
        font-size:
            clamp(
                3.55rem,
                15vw,
                5.1rem
            );

        line-height: .88;

        letter-spacing: -.07em;
    }

    .destinations-title:hover {
        transform:
            translateX(4px)
            translateY(-2px);

        letter-spacing: -.064em;
    }

    .destinations-hero-right::before {
        margin-bottom: 22px;
    }

    .destinations-hero-right p {
        font-size: .92rem;

        line-height: 1.76;
    }

    .destinations-hero-text p,
    .destinations-hero-text {
        margin-top: 20px !important;
    }

    .hero-scroll-indicator {
        display: none;
    }


    /* =====================================================
       SHOWCASE
    ====================================================== */

    .destinations-showcase {
        padding:
            58px
            20px
            90px;
    }

    .destinations-showcase::before {
        left: 20px;
        right: 20px;
    }

    .destinations-showcase-header {
        margin-bottom: 37px;

        gap: 23px;
    }

    .showcase-eyebrow {
        margin-bottom: 17px;

        font-size: .59rem;

        letter-spacing: 2.5px;
    }

    .destinations-showcase h2 {
        font-size:
            clamp(
                2.95rem,
                12.8vw,
                4.2rem
            );

        line-height: .9;
    }

    .destinations-showcase-header > p {
        font-size: .88rem;

        line-height: 1.74;
    }


    /* =====================================================
       SLIDER
    ====================================================== */

    .destination-track {
        gap: 18px;
    }

    .destination-card {
        flex:
            0 0 100%;

        border-radius: 23px;
    }

    .destination-card:hover {
        transform:
            translateY(-6px);
    }

    .destination-photo {
        height: 415px;
    }

    .destination-meta {
        top: 17px;
        left: 17px;
        right: 17px;
    }

    .destination-meta span:last-child {
        padding:
            8px
            11px;

        font-size: .54rem;
    }

    .photo-label {
        left: 17px;
        bottom: 17px;

        opacity: 1;

        transform:
            translateY(0);

        font-size: .57rem;
    }

    .destination-card-bottom {
        min-height: 112px;

        padding: 19px;
    }

    .destination-card-bottom small {
        font-size: .55rem;
    }

    .destination-card-bottom h3 {
        font-size:
            clamp(
                1.28rem,
                6vw,
                1.55rem
            );
    }

    .destination-card-arrow {
        width: 46px;
        height: 46px;
    }


    /* =====================================================
       NAVIGATION
    ====================================================== */

    .destination-nav {
        width: 47px;
        height: 47px;

        font-size: 1rem;
    }

    .destination-prev {
        left: 11px;
    }

    .destination-next {
        right: 11px;
    }

    .destination-slider-bottom {
        gap: 15px;

        margin-top: 20px;
    }

    .destination-count {
        min-width: 57px;

        font-size: .66rem;
    }


    /* =====================================================
       VIEW ALL
    ====================================================== */

    .destinations-button-wrap {
        margin-top: 45px;
    }

    .destinations-button {
        min-width: 215px;

        font-size: .79rem;

        padding-left: 19px;
    }

    .destinations-button b {
        width: 39px;
        height: 39px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .destinations-hero {
        padding:
            55px
            16px
            80px;
    }

    .destinations-title {
        font-size:
            clamp(
                3.15rem,
                15vw,
                4.3rem
            );
    }

    .destinations-hero-right p {
        font-size: .88rem;
    }

    .destinations-showcase {
        padding:
            50px
            16px
            75px;
    }

    .destinations-showcase::before {
        left: 16px;
        right: 16px;
    }

    .destinations-showcase h2 {
        font-size:
            clamp(
                2.7rem,
                12.8vw,
                3.7rem
            );
    }

    .destination-photo {
        height: 350px;
    }

    .destination-card-bottom {
        padding: 17px;
    }

    .destination-card-arrow {
        width: 43px;
        height: 43px;
    }

    .destination-slider-bottom {
        gap: 10px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 340px) {

    .destinations-title {
        font-size: 3rem;
    }

    .destinations-showcase h2 {
        font-size: 2.55rem;
    }

    .destination-photo {
        height: 315px;
    }

    .destination-card-bottom {
        min-height: 104px;
    }

    .destination-card-bottom h3 {
        font-size: 1.18rem;
    }

    .destination-card-arrow {
        width: 40px;
        height: 40px;
    }

    .destinations-button {
        min-width: 195px;

        font-size: .72rem;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.destinations-page
a:focus-visible,
.destinations-page
button:focus-visible {
    outline:
        2px solid
        #1d5c3b;

    outline-offset:
        4px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .destinations-page *,
    .destinations-page *::before,
    .destinations-page *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

        scroll-behavior: auto !important;
    }
}
/* =========================================================
   ADVENTURE LEOPARDS
   DESTINATIONS PAGE
   PREMIUM WHITE / BLACK EDITORIAL DESIGN
========================================================= */
/* =========================================================
   ADVENTURE LEOPARDS
   OUR STORY — PREMIUM EDITORIAL SECTION
========================================================= */

.left-image-section {
    width: 100%;
    padding: 125px 4.5vw 135px;
    background: #ffffff;
    color: #111311;
    overflow: hidden;
}


/* =========================================================
   WRAPPER
========================================================= */

.left-image-wrapper {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.78fr);

    align-items: center;
    gap: clamp(55px, 7vw, 110px);
}


/* =========================================================
   IMAGE
========================================================= */

.left-image-box {
    position: relative;

    width: 100%;
    max-width: 760px;

    overflow: hidden;

    border-radius: 10px;

    background: #edf0ed;

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.10);

    cursor: pointer;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.left-image-box img {
    display: block;

    width: 100%;
    height: 590px;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.8s cubic-bezier(.16, 1, .3, 1),
        filter 0.4s ease;
}


/* IMAGE HOVER */

.left-image-box:hover {
    transform: translateY(-7px);

    box-shadow:
        0 32px 75px rgba(0, 0, 0, 0.14);
}

.left-image-box:hover img {
    transform: scale(1.035);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.left-image-box::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 55%,
            rgba(0, 0, 0, 0.13) 100%
        );
}


/* =========================================================
   CONTENT
========================================================= */

.left-image-content {
    width: 100%;
    max-width: 610px;
}


/* =========================================================
   EYEBROW
========================================================= */

.left-image-content::before {
    content: "ADVENTURE LEOPARDS";

    display: block;

    margin-bottom: 14px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: #657c55;

    cursor: pointer;

    transition:
        color 0.3s ease,
        letter-spacing 0.3s ease;
}

.left-image-content::before:hover {
    color: #1d5c3b;
    letter-spacing: 0.27em;
}


/* =========================================================
   TITLE
========================================================= */

.left-image-content h2 {
    position: relative;

    margin: 0;
    padding-top: 24px;

    font-size: clamp(2.8rem, 4.5vw, 4.7rem);
    line-height: 0.98;

    font-weight: 800;
    letter-spacing: -0.055em;

    color: #111311;

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.left-image-content h2::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 52px;
    height: 2px;

    background: #111311;

    transition:
        width 0.35s ease,
        background 0.35s ease;
}

.left-image-content h2:hover {
    color: #1d5c3b;
    transform: translateX(4px);
}

.left-image-content h2:hover::before {
    width: 74px;
    background: #1d5c3b;
}


/* =========================================================
   STORY TEXT
========================================================= */

.left-image-content p {
    position: relative;

    margin: 30px 0 0;
    padding: 16px 18px 16px 20px;

    max-width: 590px;

    color: #505550;
    background: #ffffff;

    border: 1px solid transparent;
    border-left: 2px solid transparent;

    font-size: 15px;
    line-height: 1.82;

    cursor: pointer;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.left-image-content p:hover {
    color: #1d5c3b;

    border-color: #e5e9e5;
    border-left-color: #1d5c3b;

    background: #ffffff;

    transform: translateX(5px);

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.055);
}


/* =========================================================
   READ MORE BUTTON
========================================================= */

.left-image-content .read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 30px;

    min-width: 155px;

    padding: 13px 23px;

    border: 1px solid #111311;
    border-radius: 999px;

    background: #111311;
    color: #ffffff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.left-image-content .read-more-btn:hover {
    background: #ffffff;
    color: #111311;

    transform: translateY(-4px);

    border-color: #111311;

    box-shadow:
        0 12px 28px rgba(29, 92, 59, 0.14);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .left-image-section {
        padding: 95px 5vw 105px;
    }

    .left-image-wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .left-image-content {
        max-width: 800px;
    }

    .left-image-box {
        max-width: 900px;
    }

    .left-image-box img {
        height: 540px;
    }
}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .left-image-section {
        padding: 85px 28px 95px;
    }

    .left-image-wrapper {
        gap: 45px;
    }

    .left-image-box {
        max-width: 100%;
    }

    .left-image-box img {
        height: 500px;
    }

    .left-image-content {
        max-width: 720px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .left-image-section {
        padding: 70px 18px 80px;
    }

    .left-image-wrapper {
        gap: 38px;
    }

    .left-image-box {
        border-radius: 10px;
    }

    .left-image-box img {
        height: 440px;
    }

    .left-image-content::before {
        margin-bottom: 11px;

        font-size: 8px;
        letter-spacing: 0.2em;
    }

    .left-image-content h2 {
        padding-top: 21px;

        font-size: clamp(2.6rem, 12vw, 4rem);

        letter-spacing: -0.06em;
    }

    .left-image-content h2::before {
        width: 43px;
    }

    .left-image-content p {
        margin-top: 24px;
        padding: 14px 14px 14px 16px;

        font-size: 13.5px;
        line-height: 1.75;
    }

    .left-image-content .read-more-btn {
        margin-top: 25px;

        min-width: 145px;

        padding: 12px 20px;

        font-size: 9px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .left-image-section {
        padding: 60px 15px 70px;
    }

    .left-image-box img {
        height: 390px;
    }

    .left-image-content h2 {
        font-size: 2.6rem;
    }

    .left-image-content p {
        font-size: 13px;
    }
}


/* =========================================================
   LANDSCAPE MOBILE
========================================================= */

@media (max-height: 600px) and (orientation: landscape) {

    .left-image-section {
        padding: 60px 28px;
    }

    .left-image-wrapper {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 45px;
    }

    .left-image-box img {
        height: 430px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .left-image-section *,
    .left-image-section *::before,
    .left-image-section *::after {
        transition: none !important;
        animation: none !important;
    }
}
/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM 2026 TRAVEL FOOTER
========================================================= */


/* =========================================================
   FOOTER
========================================================= */

.premium-footer {
    position: relative;
    width: 100%;

    background: #000000;
    color: #ffffff;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   WHITE TOP LINE
========================================================= */

.footer-top-line {
    width: 100%;
    height: 2px;

    background: #ffffff;
}


/* =========================================================
   CONTAINER
========================================================= */

.footer-container {
    width: min(1220px, 92%);

    margin: 0 auto;

    padding: 78px 0 30px;

    box-sizing: border-box;
}


/* =========================================================
   MAIN GRID
========================================================= */

.footer-main {
    display: grid;

    grid-template-columns:
        1.25fr
        0.9fr
        1fr;

    gap: 75px;

    align-items: start;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    min-width: 0;

    text-align: center;
}


/* =========================================================
   CLICKABLE LOGO
========================================================= */

.footer-logo-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: fit-content;

    text-decoration: none;

    outline: none;

    cursor: pointer;

    transition:
        transform 0.35s cubic-bezier(.2, .7, .2, 1);
}


/* =========================================================
   LARGE PREMIUM LOGO
========================================================= */

.footer-logo {
    display: block;

    width: 205px;
    height: 205px;

    margin: 0 auto 22px;

    object-fit: contain;

    border: none;
    border-radius: 0;

    background: transparent;

    box-shadow: none;

    cursor: pointer;

    transition:
        transform 0.45s cubic-bezier(.2, .7, .2, 1),
        filter 0.4s ease;
}


/* Logo hover */

.footer-logo-link:hover {
    transform: translateY(-2px);
}

.footer-logo-link:hover .footer-logo {
    transform: scale(1.035);

    filter: brightness(1.12);
}


/* Logo focus */

.footer-logo-link:focus-visible {
    outline: 2px solid #ffffff;

    outline-offset: 7px;

    border-radius: 8px;
}


/* =========================================================
   BRAND NAME
========================================================= */

.footer-brand h2 {
    position: relative;

    display: inline-block;

    margin: 0 auto 24px;

    color: #ffffff;

    font-size: 21px;

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.35s cubic-bezier(.2, .7, .2, 1),
        letter-spacing 0.35s ease,
        text-shadow 0.35s ease;
}


/* Brand underline */

.footer-brand h2::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #1d5c3b;

    border-radius: 20px;

    transform: translateX(-50%);

    transition:
        width 0.45s cubic-bezier(.2, .7, .2, 1);
}


/* Brand hover */

.footer-brand h2:hover {
    color: #1d5c3b;

    transform: translateY(-2px);

    letter-spacing: 1.95px;

    text-shadow:
        0 5px 18px rgba(29, 92, 59, 0.28);
}


.footer-brand h2:hover::after {
    width: 100%;
}


/* =========================================================
   OUR PROMISE
   HEADER ABOVE / TEXT BELOW
========================================================= */

.footer-promise {
    display: block;

    width: 100%;
    max-width: 390px;

    margin: 0 auto 22px;

    text-align: center;

    cursor: pointer;
}


/* =========================================================
   PROMISE LABEL
========================================================= */

.promise-label {
    position: relative;

    display: inline-block;

    margin: 0 0 9px;

    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        letter-spacing 0.3s ease;
}


/* Promise underline */

.promise-label::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: #1d5c3b;

    border-radius: 20px;

    transform: translateX(-50%);

    transition:
        width 0.4s cubic-bezier(.2, .7, .2, 1);
}


/* =========================================================
   PROMISE TEXT
========================================================= */

.footer-promise p {
    display: block;

    width: 100%;
    max-width: 400px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
    text-align: left;

    font-weight: 400;

    line-height: 1.55;

    white-space: normal;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   PROMISE HOVER
========================================================= */

.footer-promise:hover .promise-label {
    color: #1d5c3b;

    transform: translateY(-2px);

    letter-spacing: 1.9px;
}


.footer-promise:hover .promise-label::after {
    width: 70%;
}


.footer-promise:hover p {
    color: #ffffff;

    transform: translateY(-1px);
}



/* =========================================================
   ABOUT US BUTTON
========================================================= */

.footer-about {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 18px;

    min-width: 142px;

    padding: 12px 20px;

    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.45);

    border-radius: 999px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* About arrow */

.footer-about-arrow {
    font-size: 15px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


/* About hover */

.footer-about:hover {
    color: #000000;

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 9px 27px rgba(255, 255, 255, 0.09);
}


.footer-about:hover .footer-about-arrow {
    transform:
        translate(3px, -3px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    min-width: 0;

    text-align: left;
}


/* =========================================================
   COLUMN HEADINGS
========================================================= */

.footer-column h3 {
    position: relative;

    display: inline-block;

    margin: 0 0 24px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        letter-spacing 0.3s ease;
}


/* Heading underline */

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: #1d5c3b;

    border-radius: 20px;

    transition:
        width 0.4s cubic-bezier(.2, .7, .2, 1);
}


/* Heading hover */

.footer-column h3:hover {
    color: #1d5c3b;

    transform: translateX(4px);

    letter-spacing: 1.85px;
}


.footer-column h3:hover::after {
    width: 100%;
}


/* =========================================================
   EXPLORE LIST
========================================================= */

.footer-column ul {
    list-style: none;

    margin: 0;

    padding: 0;
}


.footer-column ul li {
    margin: 0 0 13px;

    padding: 0;
}


/* =========================================================
   EXPLORE LINKS
========================================================= */

.footer-explore-column ul li a {
    display: inline-block;

    color: rgba(255, 255, 255, 0.62);

    background: transparent;

    border: none;

    text-decoration: none;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.5;

    cursor: pointer;

    transition:
        color 0.25s ease,
        transform 0.25s ease,
        letter-spacing 0.25s ease;
}


/* Explore hover */

.footer-explore-column ul li a:hover {
    color: #ffffff;

    transform: translateX(6px);

    letter-spacing: 0.2px;
}


/* =========================================================
   CONTACT MESSAGE
========================================================= */

.contact-message {
    margin: 0 0 20px;

    cursor: pointer;
}


.contact-message p {
    margin: 0;

    color: rgba(255, 255, 255, 0.60);

    font-size: 13px;

    font-weight: 400;

    line-height: 1.75;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* Contact message hover */

.contact-message:hover p {
    color: #ffffff;

    transform: translateX(3px);
}


/* =========================================================
   PHONE / EMAIL / WEBSITE
========================================================= */

.footer-contact-link {
    position: relative;

    display: block;

    width: fit-content;

    max-width: 100%;

    margin-bottom: 9px;

    padding-bottom: 2px;

    color: rgba(255, 255, 255, 0.60);

    text-decoration: none;

    font-size: 13px;

    line-height: 1.6;

    cursor: pointer;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


/* Contact underline */

.footer-contact-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: #1d5c3b;

    transition:
        width 0.35s cubic-bezier(.2, .7, .2, 1);
}


/* Contact hover */

.footer-contact-link:hover {
    color: #ffffff;

    transform: translateX(5px);
}


.footer-contact-link:hover::after {
    width: 100%;
}


/* =========================================================
   WHITE DIVIDER
========================================================= */

.footer-divider {
    width: 100%;

    height: 1px;

    margin: 58px 0 25px;

    background: #ffffff;

    opacity: 1;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.48);

    font-size: 10px;

    font-weight: 400;

    line-height: 1.5;

    letter-spacing: 0.8px;

    transition:
        color 0.3s ease;
}


/* Copyright hover */

.footer-bottom p:hover {
    color: rgba(255, 255, 255, 0.78);

    cursor: pointer;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.footer-socials {
    display: flex;

    align-items: center;

    gap: 8px;
}


/* Social button */

.footer-social {
    width: 40px;
    height: 40px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.28);

    border-radius: 50%;

    text-decoration: none;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Social hover */

.footer-social:hover {
    color: #000000;

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 8px 25px rgba(255, 255, 255, 0.10);
}


.footer-social i {
    font-size: 14px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.footer-social:hover i {
    transform: scale(1.08);
}


/* =========================================================
   FOCUS
========================================================= */

.footer-social:focus-visible,
.footer-column a:focus-visible,
.footer-contact-link:focus-visible,
.footer-about:focus-visible,
.footer-logo-link:focus-visible {
    outline: 2px solid #ffffff;

    outline-offset: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .footer-container {
        width: 90%;

        padding-top: 65px;
    }


    .footer-main {
        grid-template-columns:
            1fr
            1fr;

        gap: 50px;
    }


    .footer-brand {
        grid-column: 1 / -1;

        text-align: center;
    }


    .footer-logo {
        width: 185px;
        height: 185px;
    }


    .footer-brand h2 {
        font-size: 20px;

        letter-spacing: 1.5px;
    }


    .footer-brand h2:hover {
        letter-spacing: 1.7px;
    }


    .footer-promise {
        width: 100%;
        max-width: 390px;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }


    .promise-label {
        font-size: 8.5px;
    }


    .footer-promise p {
        font-size: 9.5px;

        max-width: 350px;
    }


    .footer-divider {
        margin-top: 48px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-container {
        width: 88%;

        padding-top: 55px;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 43px;
    }


    .footer-brand {
        grid-column: auto;

        text-align: center;
    }


    .footer-logo {
        width: 160px;
        height: 160px;

        margin-bottom: 19px;
    }


    .footer-brand h2 {
        font-size: 18px;

        letter-spacing: 1.35px;

        margin-bottom: 21px;
    }


    .footer-brand h2:hover {
        transform: translateY(-1px);

        letter-spacing: 1.55px;
    }


    /* OUR PROMISE */

    .footer-promise {
        display: block;

        width: 100%;
        max-width: 100%;

        margin-bottom: 21px;

        text-align: center;
    }


    .promise-label {
        display: inline-block;

        margin-bottom: 8px;

        font-size: 8px;

        letter-spacing: 1.4px;

        white-space: nowrap;
    }


    .promise-label::after {
        bottom: -4px;
    }


    .footer-promise p {
        width: 100%;
        max-width: 100%;

        font-size: 10px;

        line-height: 1.55;

        white-space: normal;
    }


    .footer-column {
        text-align: left;
    }


    .footer-column h3 {
        font-size: 17px;
    }


    .footer-explore-column ul li a {
        font-size: 14px;
    }


    .footer-contact-link {
        max-width: 100%;

        word-break: break-word;
    }


    .footer-divider {
        margin: 43px 0 23px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .footer-socials {
        flex-wrap: wrap;

        justify-content: flex-start;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .footer-container {
        width: 90%;
    }


    .footer-logo {
        width: 145px;
        height: 145px;
    }


    .footer-brand h2 {
        font-size: 16px;

        letter-spacing: 1.1px;
    }


    .footer-brand h2:hover {
        letter-spacing: 1.3px;
    }


    .promise-label {
        font-size: 7.5px;

        letter-spacing: 1.2px;
    }


    .footer-promise p {
        font-size: 9px;

        line-height: 1.5;
    }


    .footer-about {
        padding: 11px 18px;

        font-size: 10px;
    }


    .footer-social {
        width: 37px;
        height: 37px;
    }


    .footer-social i {
        font-size: 13px;
    }


    .footer-bottom p {
        font-size: 9px;
    }

}


/* =========================================================
   EXTRA SMALL PHONES
========================================================= */

@media (max-width: 330px) {

    .footer-logo {
        width: 132px;
        height: 132px;
    }


    .footer-brand h2 {
        font-size: 15px;

        letter-spacing: 1px;
    }


    .footer-promise {
        width: 100%;
    }


    .promise-label {
        font-size: 7px;

        letter-spacing: 1px;
    }


    .promise-label::after {
        width: 0;
    }


    .footer-promise p {
        font-size: 8.8px;

        line-height: 1.5;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .premium-footer *,
    .premium-footer *::before,
    .premium-footer *::after {
        transition: none !important;
    }

}