/* =========================================================
   ADVENTURE LEOPARDS
   RESPONSIVE HEADER
   PREMIUM / STABLE DROPDOWNS / MOBILE FRIENDLY
   FULL RESPONSIVE VERSION
========================================================= */


/* =========================================================
   GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}


body {
    margin: 0;

    background: #000000;
    color: #ffffff;

    overflow-x: hidden;

    font-family: "Poppins", sans-serif;

    text-rendering: optimizeLegibility;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


img {
    display: block;

    max-width: 100%;
    height: auto;
}


button,
a,
input,
select,
textarea {
    font: inherit;
}


button {
    border: 0;
}


a {
    -webkit-tap-highlight-color: transparent;
}


body {
    min-width: 280px;
}


/* =========================================================
   CONTACT BAR
========================================================= */

.header-info {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 2000;

    width: 100%;

    min-height: 52px;

    padding: 7px 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 28px;

    background: #000000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    color: #ffffff;

    isolation: isolate;
}


/* Contact item */

.contact-item {
    display: flex;

    align-items: center;

    min-width: 0;
}


/* Contact link */

.contact-item a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 34px;

    padding: 6px 10px;

    color: #ffffff;

    background: transparent;

    border: 1px solid transparent;

    border-radius: 999px;

    text-decoration: none;

    white-space: nowrap;

    font-size: 0.86rem;

    font-weight: 600;

    line-height: 1.2;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}


.contact-item a:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.08);
}


.contact-item a:active {
    transform: scale(0.98);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    position: fixed;

    top: 52px;
    left: 0;

    z-index: 1500;

    width: 100%;

    min-height: 82px;

    padding: 9px 32px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: rgba(0, 0, 0, 0.96);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        min-height 0.3s ease,
        padding 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.main-header.header-scrolled {
    min-height: 68px;

    padding: 7px 32px;

    background: #000000;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;

    align-items: center;

    flex: 0 0 auto;

    min-width: 0;

    text-decoration: none;
}


.logo img {
    display: block;

    width: 180px;

    max-width: 100%;

    height: auto;

    object-fit: contain;

    transition:
        width 0.3s ease,
        transform 0.3s ease;
}


.logo:hover img {
    transform: scale(1.015);
}


.header-scrolled .logo img {
    width: 150px;
}


/* Keyboard focus */

.logo:focus-visible {
    outline: 2px solid #ffffff;

    outline-offset: 5px;

    border-radius: 4px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    flex: 1 1 auto;

    min-width: 0;

    min-height: 100%;
}


.menu {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 4px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.menu-items {
    position: relative;

    list-style: none;

    flex: 0 0 auto;
}


/* =========================================================
   MAIN NAV LINKS
========================================================= */

.menu-items > a {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 8px 10px;

    color: #ffffff;

    background: transparent;

    border-radius: 6px;

    text-decoration: none;

    white-space: nowrap;

    font-size: clamp(0.78rem, 1vw, 0.98rem);

    font-weight: 600;

    line-height: 1.2;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}


.menu-items > a:hover {
    color: #aaaaaa;
}


/* =========================================================
   NAVIGATION UNDERLINE
========================================================= */

.menu-items > a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #ffffff;

    border-radius: 99px;

    transform: translateX(-50%);

    transition: width 0.25s ease;
}


.menu-items > a:hover::after,
.menu-items > a:focus-visible::after {
    width: 55%;
}


/* =========================================================
   DESKTOP DROPDOWNS
========================================================= */

.sub-menu {
    position: absolute;

    top: calc(100% + 0px);
    left: 0;

    z-index: 3000;

    width: 250px;

    max-width: min(250px, calc(100vw - 30px));

    max-height: min(65vh, 520px);

    overflow-x: hidden;
    overflow-y: auto;

    margin: 0;
    padding: 7px 0;

    list-style: none;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.06);

    border-radius: 13px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;

    overscroll-behavior: contain;

    -webkit-overflow-scrolling: touch;
}


/* =========================================================
   INVISIBLE HOVER BRIDGE
========================================================= */

.sub-menu::before {
    content: "";

    position: absolute;

    top: -10px;
    left: 0;

    width: 100%;
    height: 10px;

    background: transparent;
}


/* =========================================================
   DESKTOP DROPDOWN OPEN
========================================================= */

@media (min-width: 901px) {

    .menu-items:hover > .sub-menu,
    .menu-items:focus-within > .sub-menu {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }

}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.sub-menu li {
    position: relative;

    width: 100%;

    list-style: none;
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.sub-menu a {
    display: flex;

    align-items: center;

    width: 100%;

    min-height: 44px;

    padding: 10px 17px;

    color: #000000 !important;

    background: transparent;

    text-decoration: none !important;

    font-size: 0.92rem;

    font-weight: 550;

    line-height: 1.4;

    transition:
        background-color 0.2s ease,
        padding-left 0.2s ease,
        color 0.2s ease;
}


.sub-menu a:hover {
    color: #000000 !important;

    background: #f1f1f1;

    padding-left: 22px;
}


/* =========================================================
   DROPDOWN SCROLLBAR
========================================================= */

.sub-menu::-webkit-scrollbar {
    width: 6px;
}


.sub-menu::-webkit-scrollbar-track {
    background: #f5f5f5;
}


.sub-menu::-webkit-scrollbar-thumb {
    background: #bbbbbb;

    border-radius: 20px;
}


.sub-menu {
    scrollbar-width: thin;

    scrollbar-color: #bbbbbb #f5f5f5;
}


/* =========================================================
   RIGHT-SIDE DROPDOWN
========================================================= */

@media (min-width: 901px) {

    .menu-items:last-child > .sub-menu {
        left: auto;

        right: 0;
    }

}


/* =========================================================
   HIDE DONATE
========================================================= */

.donate-menu-item {
    display: none !important;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    padding: 0;

    color: #ffffff;

    background: transparent;

    border: 1px solid transparent;

    border-radius: 8px;

    cursor: pointer;

    font-size: 1.65rem;

    line-height: 1;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.10);
}


.menu-toggle:active {
    transform: scale(0.96);
}


.menu-toggle::before {
    content: "☰";
}


.menu-toggle.active::before {
    content: "✕";
}


/* =========================================================
   DROPDOWN ICON
========================================================= */

.dropdown-icon {
    display: none;

    margin-left: auto;

    font-size: 0.7rem;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


/* =========================================================
   CONTENT AFTER HEADER
========================================================= */

.header-after {
    width: 100%;

    margin-top: 154px;

    overflow: hidden;
}


.header-after img {
    display: block;

    width: 100%;

    height: auto;

    min-height: 280px;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .main-header {
        padding: 8px 22px;

        gap: 18px;
    }


    .main-header.header-scrolled {
        padding: 7px 22px;
    }


    .logo img {
        width: 160px;
    }


    .header-scrolled .logo img {
        width: 145px;
    }


    .menu {
        gap: 2px;
    }


    .menu-items > a {
        padding: 8px 7px;

        font-size: 0.79rem;
    }


    .sub-menu {
        width: 235px;
    }


    .header-after {
        margin-top: 146px;
    }

}


/* =========================================================
   SMALL LAPTOP SAFETY
   Keeps navigation from getting cramped.
========================================================= */

@media (max-width: 1050px) and (min-width: 901px) {

    .header-info {
        gap: 15px;

        padding-left: 15px;
        padding-right: 15px;
    }


    .contact-item a {
        font-size: 0.76rem;

        padding-left: 7px;
        padding-right: 7px;
    }


    .main-header {
        padding-left: 17px;
        padding-right: 17px;

        gap: 14px;
    }


    .logo img {
        width: 145px;
    }


    .menu {
        gap: 0;
    }


    .menu-items > a {
        padding-left: 6px;
        padding-right: 6px;

        font-size: 0.72rem;
    }

}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 900px) {

    /* =============================================
       CONTACT BAR
    ============================================= */

    .header-info {
        min-height: 48px;

        padding: 6px 12px;

        gap: 8px;
    }


    .contact-item {
        min-width: 0;
    }


    .contact-item a {
        min-height: 32px;

        padding: 5px 8px;

        font-size: 0.72rem;
    }


    /* =============================================
       MAIN HEADER
    ============================================= */

    .main-header {
        top: 48px;

        min-height: 72px;

        padding: 8px 18px;

        gap: 15px;
    }


    .main-header.header-scrolled {
        min-height: 63px;

        padding: 6px 18px;
    }


    /* =============================================
       LOGO
    ============================================= */

    .logo img {
        width: 150px;
    }


    .header-scrolled .logo img {
        width: 140px;
    }


    /* =============================================
       MOBILE BUTTON
    ============================================= */

    .menu-toggle {
        display: flex;
    }


    /* =============================================
       MOBILE NAVIGATION
    ============================================= */

    .navigation {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        max-height: calc(100vh - 120px);

        overflow-x: hidden;
        overflow-y: auto;

        padding: 6px 0 15px;

        background: #ffffff;

        border-bottom: 2px solid #000000;

        box-shadow:
            0 18px 35px rgba(0, 0, 0, 0.25);

        z-index: 2500;

        -webkit-overflow-scrolling: touch;

        overscroll-behavior: contain;
    }


    .navigation.active {
        display: block;
    }


    /* =============================================
       MOBILE MENU
    ============================================= */

    .menu {
        flex-direction: column;

        align-items: stretch;
        justify-content: flex-start;

        gap: 0;

        width: 100%;
    }


    .menu-items {
        width: 100%;
    }


    /* =============================================
       MAIN MOBILE LINKS
    ============================================= */

    .menu-items > a {
        width: 100%;

        min-height: 56px;

        justify-content: flex-start;

        padding: 14px 20px;

        color: #000000;

        background: #ffffff;

        border-bottom: 1px solid #ededed;

        border-radius: 0;

        font-size: 0.98rem;
    }


    .menu-items > a:hover {
        color: #000000;

        background: #f5f5f5;
    }


    /* =============================================
       REMOVE DESKTOP UNDERLINE
    ============================================= */

    .menu-items > a::after {
        display: none;
    }


    /* =============================================
       MOBILE DROPDOWN
    ============================================= */

    .sub-menu {
        position: static;

        display: none;

        width: 100%;

        max-width: none;

        max-height: none;

        overflow: visible;

        padding: 0;

        margin: 0;

        background: #f6f6f6;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: none;

        transition: none;
    }


    /* =============================================
       MOBILE DROPDOWN OPEN
    ============================================= */

    .sub-menu.visible {
        display: block;
    }


    /* =============================================
       REMOVE DESKTOP BRIDGE
    ============================================= */

    .sub-menu::before {
        display: none;
    }


    /* =============================================
       MOBILE SUB LINKS
    ============================================= */

    .sub-menu a {
        display: flex;

        align-items: center;

        width: 100%;

        min-height: 48px;

        padding:
            12px
            20px
            12px
            38px;

        color: #000000 !important;

        background: #f6f6f6;

        border-bottom: 1px solid #e6e6e6;

        font-size: 0.91rem;
    }


    .sub-menu a:hover {
        padding-left: 43px;

        color: #000000 !important;

        background: #e9e9e9;
    }


    /* =============================================
       DROPDOWN ICON
    ============================================= */

    .dropdown-icon {
        display: inline-block;

        margin-left: auto;

        color: #000000;

        font-size: 0.7rem;

        transition:
            transform 0.3s ease;
    }


    .menu-items.open .dropdown-icon {
        transform: rotate(180deg);
    }


    /* =============================================
       HEADER IMAGE
    ============================================= */

    .header-after {
        margin-top: 130px;
    }


    .header-after img {
        min-height: 250px;
    }

}


/* =========================================================
   TABLET PORTRAIT
========================================================= */

@media (max-width: 768px) and (min-width: 601px) {

    .header-info {
        min-height: 46px;

        gap: 6px;

        padding:
            5px
            10px;
    }


    .contact-item a {
        font-size: 0.68rem;

        padding:
            5px
            7px;
    }


    .main-header {
        top: 46px;

        min-height: 68px;

        padding:
            7px
            16px;
    }


    .main-header.header-scrolled {
        min-height: 60px;

        padding:
            6px
            16px;
    }


    .logo img {
        width: 142px;
    }


    .header-scrolled .logo img {
        width: 134px;
    }


    .header-after {
        margin-top: 114px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* =============================================
       CONTACT BAR
    ============================================= */

    .header-info {
        min-height: 44px;

        padding:
            4px
            6px;

        gap: 3px;
    }


    .contact-item a {
        min-height: 32px;

        padding:
            4px
            6px;

        font-size: 0.61rem;

        gap: 5px;
    }


    /* =============================================
       MAIN HEADER
    ============================================= */

    .main-header {
        top: 44px;

        min-height: 66px;

        padding:
            7px
            13px;
    }


    .main-header.header-scrolled {
        min-height: 58px;

        padding:
            6px
            13px;
    }


    /* =============================================
       LOGO
    ============================================= */

    .logo img {
        width: 132px;
    }


    .header-scrolled .logo img {
        width: 125px;
    }


    /* =============================================
       MENU TOGGLE
    ============================================= */

    .menu-toggle {
        width: 42px;

        height: 42px;

        flex-basis: 42px;

        font-size: 1.55rem;
    }


    /* =============================================
       MOBILE MAIN LINKS
    ============================================= */

    .menu-items > a {
        min-height: 54px;

        padding:
            14px
            17px;

        font-size: 0.94rem;
    }


    /* =============================================
       MOBILE SUBMENU
    ============================================= */

    .sub-menu a {
        min-height: 47px;

        padding:
            12px
            17px
            12px
            33px;

        font-size: 0.87rem;
    }


    .sub-menu a:hover {
        padding-left: 38px;
    }


    /* =============================================
       HEADER IMAGE
    ============================================= */

    .header-after {
        margin-top: 112px;
    }


    .header-after img {
        min-height: 210px;
    }

}


/* =========================================================
   MOBILE LANDSCAPE / SHORT SCREENS
========================================================= */

@media (max-width: 900px) and (orientation: landscape) {

    .navigation {
        max-height: calc(100vh - 100px);
    }


    .menu-items > a {
        min-height: 48px;

        padding-top: 11px;
        padding-bottom: 11px;
    }


    .sub-menu a {
        min-height: 42px;

        padding-top: 9px;
        padding-bottom: 9px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    /* =============================================
       CONTACT BAR
    ============================================= */

    .header-info {
        min-height: 41px;

        padding:
            4px
            5px;

        gap: 2px;
    }


    .contact-item a {
        min-height: 29px;

        padding:
            3px
            5px;

        font-size: 0.55rem;

        gap: 4px;
    }


    /* =============================================
       HEADER
    ============================================= */

    .main-header {
        top: 41px;

        min-height: 62px;

        padding:
            6px
            10px;

        gap: 8px;
    }


    .main-header.header-scrolled {
        min-height: 55px;

        padding:
            5px
            10px;
    }


    /* =============================================
       LOGO
    ============================================= */

    .logo img {
        width: 118px;
    }


    .header-scrolled .logo img {
        width: 112px;
    }


    /* =============================================
       MENU BUTTON
    ============================================= */

    .menu-toggle {
        width: 40px;

        height: 40px;

        flex-basis: 40px;

        font-size: 1.45rem;
    }


    /* =============================================
       MAIN MOBILE LINKS
    ============================================= */

    .menu-items > a {
        min-height: 52px;

        padding:
            13px
            15px;

        font-size: 0.90rem;
    }


    /* =============================================
       SUB LINKS
    ============================================= */

    .sub-menu a {
        min-height: 47px;

        padding:
            11px
            15px
            11px
            30px;

        font-size: 0.84rem;
    }


    .sub-menu a:hover {
        padding-left: 35px;
    }


    /* =============================================
       HEADER IMAGE
    ============================================= */

    .header-after {
        margin-top: 104px;
    }


    .header-after img {
        min-height: 180px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 340px) {

    /* =============================================
       CONTACT BAR
       Icons remain visible but text can hide.
    ============================================= */

    .contact-item a span {
        display: none;
    }


    .contact-item a {
        width: 34px;

        height: 30px;

        min-height: 30px;

        padding: 0;

        justify-content: center;
    }


    /* =============================================
       LOGO
    ============================================= */

    .logo img {
        width: 108px;
    }


    .header-scrolled .logo img {
        width: 104px;
    }


    /* =============================================
       MENU BUTTON
    ============================================= */

    .menu-toggle {
        width: 38px;

        height: 38px;

        flex-basis: 38px;
    }


    /* =============================================
       HEADER
    ============================================= */

    .main-header {
        padding-left: 8px;

        padding-right: 8px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.menu-items > a:focus-visible,
.sub-menu a:focus-visible,
.menu-toggle:focus-visible,
.contact-item a:focus-visible {
    outline: 2px solid #ffffff;

    outline-offset: 3px;
}


/* Mobile navigation has black links on white */

@media (max-width: 900px) {

    .menu-items > a:focus-visible,
    .sub-menu a:focus-visible {
        outline-color: #000000;
    }

}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .menu-items > a:hover::after {
        width: 0;
    }


    .logo:hover img {
        transform: none;
    }


    .contact-item a:hover {
        background: transparent;

        border-color: transparent;
    }


    .menu-toggle:hover {
        background: transparent;

        border-color: transparent;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto !important;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

}

/* =========================================================
   ADVENTURE LEOPARDS — RESPONSIVE HEADER END
========================================================= *//* =========================================================
   ABOUT US — ADVENTURE LEOPARDS
========================================================= */

.story-page,
.story-page * {
    box-sizing: border-box;
}

.story-page {
    position: relative;
    width: 100%;
    padding: 0 0 35px;
    background: #fff;
    color: #000;
    overflow: hidden;
    isolation: isolate;
}


/* =========================================================
   MAIN INTRO / HEADER
========================================================= */

.story-heading {
    width: min(1180px, 90%);
    margin: 0 auto;
    padding: clamp(85px, 10vw, 135px) 0 clamp(65px, 7vw, 90px);
}

.story-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 20px;

    color: #000;

    font-size: 10px;
    font-weight: 800;

    line-height: 1;
    letter-spacing: 2.8px;

    text-transform: uppercase;

    cursor: default;
}

.story-eyebrow::before {
    content: "";

    width: 31px;
    height: 1px;

    background: #000;

    flex-shrink: 0;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.story-heading h2 {
    position: relative;

    max-width: 850px;

    margin: 0;

    color: #000;

    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;

    line-height: 0.91;
    letter-spacing: -4.5px;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.5s cubic-bezier(.2, .7, .2, 1),
        letter-spacing 0.45s ease,
        text-shadow 0.4s ease;
}

.story-heading h2:hover {
    color: #1d5c3b;

    transform:
        translateX(7px)
        translateY(-3px);

    letter-spacing: -4px;

    text-shadow:
        0 12px 28px rgba(29, 92, 59, 0.14);
}


/* =========================================================
   TOP INTRO PARAGRAPH
========================================================= */

.story-heading p {
    position: relative;

    width: 100%;
    max-width: 720px;

    margin: 28px 0 0;

    padding: 20px 22px;

    color: #4d4d4d;

    font-size: clamp(14px, 1.15vw, 16px);
    font-weight: 400;

    line-height: 1.88;

    background: #fff;

    border: 1px solid #e5e8e5;
    border-radius: 14px;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.4s cubic-bezier(.2, .7, .2, 1),
        border-color 0.35s ease,
        box-shadow 0.4s ease;
}

.story-heading p::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 18px;

    width: 2px;
    height: 0;

    border-radius: 10px;

    background: #1d5c3b;

    transition:
        height 0.4s cubic-bezier(.2, .7, .2, 1);
}

.story-heading p:hover {
    color: #294638;

    background: #fff;

    transform: translateY(-4px);

    border-color: #cbd9d1;

    box-shadow:
        0 14px 32px rgba(29, 92, 59, 0.075);
}

.story-heading p:hover::before {
    height: calc(100% - 36px);
}


/* =========================================================
   MAIN CONTENT ROWS
========================================================= */

.story-container {
    width: min(1180px, 90%);

    margin: 0 auto;

    padding:
        clamp(65px, 7vw, 95px)
        0;

    display: grid;

    grid-template-columns:
        minmax(0, .84fr)
        minmax(0, 1fr);

    gap: clamp(45px, 7vw, 90px);

    align-items: center;

    border-top: 1px solid #e5e5e5;
}

.story-container-reverse {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .84fr);
}

.story-container-reverse .story-content {
    order: 2;
}

.story-container-reverse .story-image {
    order: 1;
}


/* =========================================================
   CONTENT
========================================================= */

.story-content {
    position: relative;

    width: 100%;
    max-width: 540px;

    padding: 0;

    background: transparent;

    border-radius: 0;

    overflow: visible;
}


/* =========================================================
   SECTION TITLES
========================================================= */

.story-content h2 {
    position: relative;

    display: block;

    width: fit-content;
    max-width: 100%;

    margin: 0 0 24px;

    padding:
        0 0 16px;

    color: #000;

    font-size: clamp(34px, 4vw, 55px);
    font-weight: 800;

    line-height: .98;
    letter-spacing: -2.3px;

    cursor: pointer;

    border-bottom: 1px solid #e4e8e5;

    transition:
        color 0.35s ease,
        transform 0.45s cubic-bezier(.2, .7, .2, 1),
        letter-spacing 0.4s ease,
        border-color 0.35s ease,
        text-shadow 0.35s ease;
}

.story-content h2::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: -2px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background: #1d5c3b;

    transition:
        width 0.45s cubic-bezier(.2, .7, .2, 1);
}

.story-content h2:hover {
    color: #1d5c3b;

    transform:
        translateX(7px)
        translateY(-2px);

    letter-spacing: -1.9px;

    border-color: #cfded5;

    text-shadow:
        0 8px 22px rgba(29, 92, 59, 0.11);
}

.story-content h2:hover::before {
    width: 100%;
}


/* =========================================================
   BODY PARAGRAPHS
========================================================= */

.story-content p {
    position: relative;

    width: 100%;

    margin: 0 0 18px;

    padding:
        20px 0 20px 18px;

    color: #4d4d4d;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.88;

    background: #fff;

    border-left: 1px solid #e5e8e5;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.4s cubic-bezier(.2, .7, .2, 1),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.story-content p::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 20px;

    width: 2px;
    height: 0;

    border-radius: 20px;

    background: #1d5c3b;

    transition:
        height 0.45s cubic-bezier(.2, .7, .2, 1);
}

.story-content p + p {
    margin-top: 12px;
}

.story-content p:hover {
    color: #294638;

    background: #fff;

    transform: translateX(6px);

    border-color: #c9d9cf;

    box-shadow:
        0 10px 26px rgba(29, 92, 59, 0.055);
}

.story-content p:hover::before {
    height: calc(100% - 40px);
}


/* =========================================================
   FINAL STORY CONTENT
========================================================= */

.story-content-final {
    max-width: 570px;

    padding: 0;
}

.story-content-final h2 {
    margin-bottom: 27px;

    font-size: clamp(40px, 4.3vw, 59px);

    letter-spacing: -2.7px;
}

.story-content-final p {
    margin-bottom: 15px;

    background: #fff;
}


/* =========================================================
   IMAGES
========================================================= */

.story-image {
    position: relative;

    width: 100%;
    max-width: 545px;

    justify-self: end;

    overflow: hidden;

    border-radius: 22px;

    background: #f3f3f3;

    border: 1px solid #ddd;

    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.09);

    transition:
        transform 0.55s cubic-bezier(.2, .7, .2, 1),
        box-shadow 0.5s ease,
        border-color 0.45s ease;
}

.story-container-reverse .story-image {
    justify-self: start;
}

.story-image img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    transform: scale(1);

    filter:
        grayscale(3%)
        contrast(1.02);

    transition:
        transform 0.9s cubic-bezier(.2, .7, .2, 1),
        filter 0.6s ease;
}


/* IMAGE HOVER */

.story-container:hover .story-image {
    transform: translateY(-5px);

    border-color: #bfd2c6;

    box-shadow:
        0 28px 70px rgba(29, 92, 59, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.045);
}

.story-container:hover .story-image img {
    transform: scale(1.045);

    filter:
        grayscale(0%)
        contrast(1.05);
}


/* IMAGE REACTION TO TITLE HOVER */

.story-container:has(.story-content h2:hover) .story-image {
    transform: translateY(-7px);

    border-color: #b8cec0;

    box-shadow:
        0 30px 75px rgba(29, 92, 59, 0.13);
}

.story-container:has(.story-content h2:hover) .story-image img {
    transform: scale(1.035);
}


/* IMAGE REACTION TO PARAGRAPH HOVER */

.story-container:has(.story-content p:hover) .story-image {
    transform: translateY(-4px);

    border-color: #c7d8cd;

    box-shadow:
        0 26px 62px rgba(29, 92, 59, 0.10);
}


/* =========================================================
   FINAL ROW
========================================================= */

.story-container-final {
    padding-top:
        clamp(75px, 8vw, 105px);

    padding-bottom:
        clamp(90px, 10vw, 125px);

    border-bottom: 1px solid #e5e5e5;
}

.story-image-final {
    justify-self: end;

    border-radius: 24px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .story-heading {
        width: 90%;

        padding:
            75px 0 65px;
    }

    .story-container,
    .story-container-reverse,
    .story-container-final {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 60px 0;
    }

    .story-container-reverse .story-content,
    .story-container-reverse .story-image {
        order: initial;
    }

    .story-content,
    .story-content-final {
        max-width: 680px;
    }

    .story-image,
    .story-image-final {
        max-width: 700px;

        justify-self: start;
    }

    .story-container-reverse .story-image {
        justify-self: start;
    }

    .story-content h2:hover {
        transform:
            translateX(5px)
            translateY(-2px);
    }

    .story-content p:hover {
        transform: translateX(4px);
    }

    .story-container:has(.story-content h2:hover) .story-image,
    .story-container:has(.story-content p:hover) .story-image {
        transform: translateY(-4px);
    }

    .story-heading p:hover {
        transform: translateY(-3px);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .story-heading {
        width: 90%;

        padding:
            60px 0 50px;
    }

    .story-eyebrow {
        margin-bottom: 16px;

        font-size: 9px;
        letter-spacing: 2.2px;
    }

    .story-eyebrow::before {
        width: 25px;
    }

    .story-heading h2 {
        font-size: clamp(42px, 12.5vw, 59px);

        letter-spacing: -2.7px;
    }

    .story-heading h2:hover {
        transform:
            translateX(3px)
            translateY(-2px);

        letter-spacing: -2.4px;
    }

    .story-heading p {
        margin-top: 20px;

        padding: 17px 18px;

        font-size: 13px;

        line-height: 1.82;

        border-radius: 12px;
    }

    .story-heading p::before {
        top: 16px;
    }

    .story-heading p:hover {
        transform: translateY(-2px);

        box-shadow:
            0 10px 24px rgba(29, 92, 59, 0.06);
    }

    .story-heading p:hover::before {
        height: calc(100% - 32px);
    }

    .story-container,
    .story-container-reverse,
    .story-container-final {
        width: 90%;

        gap: 32px;

        padding: 48px 0;
    }

    .story-content,
    .story-content-final {
        max-width: 100%;
    }

    .story-content h2,
    .story-content-final h2 {
        margin-bottom: 20px;

        padding-bottom: 12px;

        font-size: clamp(32px, 9vw, 45px);

        letter-spacing: -1.7px;
    }

    .story-content h2:hover,
    .story-content-final h2:hover {
        transform:
            translateX(4px)
            translateY(-1px);

        letter-spacing: -1.4px;
    }

    .story-content p,
    .story-content-final p {
        margin-bottom: 14px;

        padding:
            16px 0 16px 13px;

        font-size: 13px;

        line-height: 1.82;

        background: #fff;
    }

    .story-content p:hover,
    .story-content-final p:hover {
        transform: translateX(3px);

        color: #1d5c3b;

        background: #fff;

        box-shadow:
            0 8px 20px rgba(29, 92, 59, 0.05);
    }

    .story-content p::before {
        top: 16px;
    }

    .story-image,
    .story-image-final {
        width: 100%;

        border-radius: 17px;
    }

    .story-image img {
        width: 100%;
        height: auto;
    }

    .story-container:hover .story-image {
        transform: translateY(-3px);

        box-shadow:
            0 18px 40px rgba(29, 92, 59, 0.09);
    }

    .story-container:hover .story-image img {
        transform: scale(1.02);
    }

    .story-container:has(.story-content h2:hover) .story-image {
        transform: translateY(-3px);
    }

    .story-container:has(.story-content p:hover) .story-image {
        transform: translateY(-2px);
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .story-heading {
        width: 91%;

        padding:
            52px 0 42px;
    }

    .story-heading h2 {
        font-size: 40px;

        letter-spacing: -2px;
    }

    .story-heading p {
        font-size: 12.5px;

        line-height: 1.8;

        padding: 15px 16px;
    }

    .story-heading p:hover {
        transform: translateY(-2px);
    }

    .story-container,
    .story-container-reverse,
    .story-container-final {
        width: 91%;

        padding: 43px 0;
    }

    .story-content h2,
    .story-content-final h2 {
        font-size: 31px;
    }

    .story-content p,
    .story-content-final p {
        font-size: 12px;

        line-height: 1.8;
    }

    .story-image,
    .story-image-final {
        border-radius: 15px;
    }

    .story-content h2:hover {
        transform:
            translateX(3px)
            translateY(-1px);
    }

    .story-content p:hover {
        transform: translateX(2px);
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .story-heading h2,
    .story-heading p,
    .story-content h2,
    .story-content h2::before,
    .story-content p,
    .story-content p::before,
    .story-image,
    .story-image img {
        transition: none !important;
    }

}

/* =========================================================
   ADVENTURE LEOPARDS
   MEET OUR LEADER
   PREMIUM EDITORIAL TEAM SECTION
========================================================= */

.al-leader-section,
.al-leader-section * {
    box-sizing: border-box;
}

.al-leader-section {
    position: relative;
    width: 100%;
    padding: clamp(95px, 10vw, 145px) 0;
    background: #ffffff;
    color: #000000;
    overflow: hidden;
    isolation: isolate;
}

.al-leader-container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.al-leader-header {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 0 clamp(52px, 7vw, 78px);
}


/* =========================================================
   OUR TEAM
========================================================= */

.al-leader-eyebrow {
    display: flex;
    align-items: center;
    width: fit-content;

    gap: 12px;
    margin: 0 0 19px;

    color: #111111;

    font-size: 10px;
    font-weight: 800;

    line-height: 1;
    letter-spacing: 2.9px;

    text-transform: uppercase;

    cursor: default;
    user-select: none;
}

.al-eyebrow-line {
    display: block;

    width: 34px;
    height: 1px;

    flex: 0 0 auto;

    background: #111111;

    transition:
        width 0.45s cubic-bezier(.2, .7, .2, 1),
        background-color 0.35s ease;
}

.al-leader-header:hover .al-eyebrow-line {
    width: 48px;
    background: #1d5c3b;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.al-leader-heading {
    position: relative;

    display: block;
    width: fit-content;
    max-width: 100%;

    margin: 0 0 24px;

    color: #080808;

    font-size: clamp(48px, 6.4vw, 80px);
    font-weight: 800;

    line-height: 0.94;
    letter-spacing: -4px;

    cursor: pointer;

    /*
       IMPORTANT:
       No translateY or translateX on hover.
       This prevents the heading from visually moving
       beside/below the OUR TEAM label.
    */

    transition:
        color 0.35s ease,
        letter-spacing 0.4s ease,
        text-shadow 0.4s ease;
}

.al-leader-heading::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 0;
    height: 2px;

    background: #1d5c3b;

    border-radius: 50px;

    transition:
        width 0.5s cubic-bezier(.2, .7, .2, 1);
}

.al-leader-heading:hover {
    color: #1d5c3b;
    letter-spacing: -3.65px;

    text-shadow:
        0 9px 26px rgba(29, 92, 59, 0.11);
}

.al-leader-heading:hover::after {
    width: 100%;
}


/* =========================================================
   INTRO
========================================================= */

.al-leader-intro {
    display: block;

    max-width: 610px;

    margin: 0;
    padding-left: 1px;

    color: #666666;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.82;

    cursor: pointer;

    transition:
        color 0.35s ease;
}

.al-leader-intro:hover {
    color: #1d5c3b;
}


/* =========================================================
   MAIN CARD
========================================================= */

.al-leader-card {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.04fr)
        minmax(0, 0.96fr);

    width: 100%;

    background: #ffffff;

    border: 1px solid #dedfdd;
    border-radius: 30px;

    overflow: hidden;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.055),
        0 3px 12px rgba(0, 0, 0, 0.025);

    transition:
        transform 0.55s cubic-bezier(.2, .7, .2, 1),
        box-shadow 0.55s ease,
        border-color 0.4s ease;
}

.al-leader-card:hover {
    transform: translateY(-4px);

    border-color: #d2ddd6;

    box-shadow:
        0 30px 80px rgba(29, 92, 59, 0.085),
        0 8px 22px rgba(0, 0, 0, 0.035);
}


/* =========================================================
   PREMIUM IMAGE AREA
========================================================= */

.al-leader-image {
    position: relative;

    width: 100%;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f1f3f1 0%,
            #f8f9f7 48%,
            #eef1ee 100%
        );

    cursor: pointer;
}


/*
   Natural responsive image.
   No forced height.
   No crop.
   No large zoom.
*/

.al-leader-photo {
    position: relative;

    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;
    object-position: center center;

    transform: scale(1);

    filter:
        saturate(0.98)
        contrast(1.01);

    user-select: none;

    transition:
        transform 0.8s cubic-bezier(.2, .7, .2, 1),
        filter 0.55s ease;
}


/*
   Very restrained image interaction.
*/

.al-leader-card:hover .al-leader-photo {
    transform: scale(1.012);

    filter:
        saturate(1)
        contrast(1.025);
}


/*
   Read More NEVER zooms or changes image size.
*/

.al-leader-card:has(.al-read-more.is-open) .al-leader-photo {
    transform: scale(1);
}


/* =========================================================
   IMAGE FRAME DETAIL
========================================================= */

.al-leader-image::before {
    content: "";

    position: absolute;

    top: 22px;
    left: 22px;

    width: 54px;
    height: 54px;

    z-index: 3;

    border-top: 1px solid rgba(29, 92, 59, 0.55);
    border-left: 1px solid rgba(29, 92, 59, 0.55);

    pointer-events: none;

    transition:
        width 0.45s ease,
        height 0.45s ease,
        border-color 0.35s ease;
}

.al-leader-image::after {
    content: "";

    position: absolute;

    right: 22px;
    bottom: 22px;

    width: 54px;
    height: 54px;

    z-index: 3;

    border-right: 1px solid rgba(29, 92, 59, 0.55);
    border-bottom: 1px solid rgba(29, 92, 59, 0.55);

    pointer-events: none;

    transition:
        width 0.45s ease,
        height 0.45s ease,
        border-color 0.35s ease;
}

.al-leader-card:hover .al-leader-image::before,
.al-leader-card:hover .al-leader-image::after {
    width: 67px;
    height: 67px;

    border-color: rgba(29, 92, 59, 0.75);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.al-leader-image-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.00) 45%,
            rgba(0, 0, 0, 0.035) 67%,
            rgba(0, 0, 0, 0.42) 100%
        );

    opacity: 0.78;

    transition:
        opacity 0.45s ease;
}

.al-leader-card:hover .al-leader-image-overlay {
    opacity: 0.94;
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.al-leader-image-caption {
    position: absolute;

    left: 31px;
    right: 31px;
    bottom: 27px;

    z-index: 4;

    display: flex;
    align-items: center;

    pointer-events: none;
}

.al-leader-image-caption span {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 8px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 2px;

    text-transform: uppercase;

    text-shadow:
        0 2px 14px rgba(0, 0, 0, 0.38);

    transition:
        letter-spacing 0.4s ease;
}

.al-leader-image-caption span::before {
    content: "";

    display: block;

    width: 22px;
    height: 1px;

    background: rgba(255, 255, 255, 0.88);

    transition:
        width 0.4s ease;
}

.al-leader-card:hover .al-leader-image-caption span {
    letter-spacing: 2.25px;
}

.al-leader-card:hover .al-leader-image-caption span::before {
    width: 30px;
}


/* =========================================================
   CONTENT PANEL
========================================================= */

.al-leader-content {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;

    padding: clamp(50px, 6vw, 76px);

    background: #ffffff;
}


/* =========================================================
   LOCATION
========================================================= */

.al-leader-meta {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;

    margin-bottom: 34px;
    padding-bottom: 15px;

    border-bottom: 1px solid #e8e8e8;

    transition:
        border-color 0.35s ease;
}

.al-leader-meta::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 1px;

    background: #1d5c3b;

    transition:
        width 0.45s cubic-bezier(.2, .7, .2, 1);
}

.al-leader-meta:hover::after {
    width: 45px;
}

.al-leader-meta span {
    display: inline-block;

    color: #888888;

    font-size: 9px;
    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 1.9px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.3s ease,
        letter-spacing 0.35s ease;
}

.al-leader-meta span:hover {
    color: #1d5c3b;
    letter-spacing: 2.15px;
}

.al-leader-meta:hover {
    border-color: #d0dad4;
}


/* =========================================================
   NAME
========================================================= */

.al-leader-name {
    position: relative;

    display: block;

    width: fit-content;
    max-width: 100%;

    margin: 0 0 11px;

    color: #080808;

    font-size: clamp(38px, 4.2vw, 56px);
    font-weight: 800;

    line-height: 0.98;
    letter-spacing: -2.45px;

    overflow-wrap: anywhere;

    cursor: pointer;

    transition:
        color 0.35s ease,
        letter-spacing 0.4s ease,
        text-shadow 0.35s ease;
}

.al-leader-name::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background: #1d5c3b;

    transition:
        width 0.45s cubic-bezier(.2, .7, .2, 1);
}

.al-leader-name:hover {
    color: #1d5c3b;

    letter-spacing: -2.05px;

    text-shadow:
        0 8px 20px rgba(29, 92, 59, 0.08);
}

.al-leader-name:hover::after {
    width: 100%;
}


/* =========================================================
   ROLE
========================================================= */

.al-leader-role {
    display: block;

    width: fit-content;

    margin: 15px 0 0;

    color: #616161;

    font-size: 11px;
    font-weight: 800;

    line-height: 1.4;

    letter-spacing: 2.05px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.3s ease,
        letter-spacing 0.35s ease;
}

.al-leader-role:hover {
    color: #1d5c3b;
    letter-spacing: 2.35px;
}


/* =========================================================
   ACCENT LINE
========================================================= */

.al-leader-accent {
    width: 44px;
    height: 2px;

    margin: 26px 0 29px;

    background: #111111;

    border-radius: 20px;

    transition:
        width 0.45s cubic-bezier(.2, .7, .2, 1),
        background-color 0.3s ease;
}

.al-leader-content:hover .al-leader-accent {
    width: 70px;
    background: #1d5c3b;
}


/* =========================================================
   BIO
========================================================= */

.al-leader-bio {
    width: 100%;
    max-width: 590px;
}

.al-leader-bio p {
    position: relative;

    margin: 0 0 17px;

    padding: 17px 18px;

    color: #454545;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.87;

    background: #ffffff;

    border-left: 1px solid #e6e9e7;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.4s cubic-bezier(.2, .7, .2, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.al-leader-bio p::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 17px;

    width: 2px;
    height: 0;

    border-radius: 20px;

    background: #1d5c3b;

    transition:
        height 0.4s cubic-bezier(.2, .7, .2, 1);
}

.al-leader-bio p:last-child {
    margin-bottom: 0;
}

.al-leader-bio p:hover {
    color: #294638;

    transform: translateX(5px);

    border-color: #c9d9cf;

    box-shadow:
        0 10px 25px rgba(29, 92, 59, 0.055);
}

.al-leader-bio p:hover::before {
    height: calc(100% - 34px);
}


/* =========================================================
   EXPANDED AREA
========================================================= */

.al-leader-more {
    width: 100%;
    overflow: hidden;
}

.al-leader-more.hidden {
    display: none;
}

.al-leader-more:not(.hidden) {
    animation:
        alLeaderReveal 0.45s cubic-bezier(.2, .7, .2, 1);
}

@keyframes alLeaderReveal {

    from {
        opacity: 0;
        transform: translateY(-7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   QUOTE
========================================================= */

.al-leader-quote {
    position: relative;

    width: 100%;
    max-width: 575px;

    margin: 29px 0 0;

    padding: 26px 55px 27px 50px;

    color: #253b2e;

    background: #f8faf8;

    border: 1px solid #dce7df;

    border-left: 3px solid #1d5c3b;

    border-radius: 14px;

    font-size: 14px;
    font-weight: 600;

    font-style: italic;

    line-height: 1.78;

    cursor: pointer;

    box-shadow:
        0 8px 24px rgba(29, 92, 59, 0.045);

    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        transform 0.4s cubic-bezier(.2, .7, .2, 1),
        box-shadow 0.4s ease;
}

.al-leader-quote:hover {
    color: #1d5c3b;

    background: #ffffff;

    border-color: #bfd2c6;

    transform: translateX(5px) translateY(-3px);

    box-shadow:
        0 16px 35px rgba(29, 92, 59, 0.085);
}


/* =========================================================
   QUOTATION MARKS
========================================================= */

.al-leader-quote-mark {
    position: absolute;

    color: #1d5c3b;

    font-size: 34px;
    font-weight: 700;

    font-style: normal;

    line-height: 1;

    transition:
        transform 0.35s ease,
        color 0.3s ease;
}

.al-quote-open {
    top: 15px;
    left: 16px;
}

.al-quote-close {
    right: 17px;
    bottom: 11px;
}

.al-leader-quote:hover .al-quote-open {
    transform: translateY(-2px) scale(1.08);
    color: #236044;
}

.al-leader-quote:hover .al-quote-close {
    transform: translateY(2px) scale(1.08);
    color: #236044;
}

.al-leader-quote-text {
    display: block;
}


/* =========================================================
   READ MORE BUTTON
========================================================= */

.al-read-more {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 23px;

    width: fit-content;
    min-width: 154px;

    margin-top: 29px;

    padding: 10px 11px 10px 18px;

    color: #ffffff;

    background: #000000;

    border: 1px solid #000000;

    border-radius: 999px;

    cursor: pointer;

    appearance: none;

    font-family: inherit;

    font-size: 10px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s cubic-bezier(.2, .7, .2, 1),
        box-shadow 0.35s ease;
}

.al-read-more-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    color: #000000;

    background: #ffffff;

    border-radius: 50%;

    font-size: 15px;
    font-weight: 500;

    line-height: 1;

    transition:
        transform 0.35s cubic-bezier(.2, .7, .2, 1),
        color 0.3s ease,
        background-color 0.3s ease;
}

.al-read-more:hover {
    color: #ffffff;

    background: #1d5c3b;

    border-color: #1d5c3b;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(29, 92, 59, 0.18);
}

.al-read-more:hover .al-read-more-icon {
    color: #1d5c3b;

    background: #ffffff;

    transform: rotate(90deg) scale(1.04);
}

.al-read-more.is-open {
    color: #1d5c3b;

    background: #ffffff;

    border-color: #1d5c3b;

    box-shadow:
        0 10px 25px rgba(29, 92, 59, 0.10);
}

.al-read-more.is-open .al-read-more-icon {
    color: #ffffff;

    background: #1d5c3b;

    transform: rotate(180deg);
}

.al-read-more:focus-visible {
    outline: 2px solid #1d5c3b;
    outline-offset: 5px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .al-leader-section {
        padding: 90px 0;
    }

    .al-leader-container {
        width: 90%;
    }

    .al-leader-card {
        grid-template-columns:
            minmax(0, 0.96fr)
            minmax(0, 1.04fr);

        border-radius: 25px;
    }

    .al-leader-content {
        padding: 48px 42px;
    }

    .al-leader-heading {
        font-size: clamp(43px, 6vw, 63px);
        letter-spacing: -3.3px;
    }

    .al-leader-heading:hover {
        letter-spacing: -3.05px;
    }

    .al-leader-name {
        font-size: clamp(36px, 4.7vw, 49px);
    }

}


/* =========================================================
   TABLET PORTRAIT
========================================================= */

@media (max-width: 820px) {

    .al-leader-section {
        padding: 86px 0;
    }

    .al-leader-card {
        grid-template-columns: 1fr;
    }

    .al-leader-image {
        width: 100%;
    }

    .al-leader-photo {
        width: 100%;
        height: auto;

        object-fit: contain;
    }

    .al-leader-content {
        padding: 48px 42px 52px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .al-leader-section {
        padding: 70px 0;
    }

    .al-leader-container {
        width: 91%;
    }

    .al-leader-header {
        margin-bottom: 39px;
    }

    .al-leader-eyebrow {
        margin-bottom: 16px;

        font-size: 9px;
        letter-spacing: 2.25px;
    }

    .al-eyebrow-line {
        width: 25px;
    }

    .al-leader-header:hover .al-eyebrow-line {
        width: 35px;
    }

    .al-leader-heading {
        display: block;

        width: fit-content;

        margin-bottom: 20px;

        font-size: clamp(39px, 11.8vw, 55px);

        letter-spacing: -2.8px;
    }

    .al-leader-heading:hover {
        letter-spacing: -2.55px;
    }

    .al-leader-intro {
        font-size: 14px;
        line-height: 1.74;
    }

    .al-leader-card {
        border-radius: 20px;
    }

    .al-leader-image {
        min-height: 0;
    }

    .al-leader-photo {
        width: 100%;
        height: auto;

        transform: scale(1);
    }

    .al-leader-card:hover .al-leader-photo {
        transform: scale(1.008);
    }

    .al-leader-card:has(.al-read-more.is-open) .al-leader-photo {
        transform: scale(1);
    }

    .al-leader-image::before {
        top: 16px;
        left: 16px;

        width: 42px;
        height: 42px;
    }

    .al-leader-image::after {
        right: 16px;
        bottom: 16px;

        width: 42px;
        height: 42px;
    }

    .al-leader-card:hover .al-leader-image::before,
    .al-leader-card:hover .al-leader-image::after {
        width: 50px;
        height: 50px;
    }

    .al-leader-image-caption {
        left: 20px;
        right: 20px;
        bottom: 19px;
    }

    .al-leader-image-caption span {
        font-size: 7px;
        letter-spacing: 1.6px;
    }

    .al-leader-image-caption span::before {
        width: 17px;
    }

    .al-leader-content {
        padding: 39px 27px 40px;
    }

    .al-leader-meta {
        margin-bottom: 29px;
        padding-bottom: 13px;
    }

    .al-leader-meta span {
        font-size: 8px;
        letter-spacing: 1.65px;
    }

    .al-leader-name {
        font-size: 36px;
        letter-spacing: -1.95px;
    }

    .al-leader-name:hover {
        letter-spacing: -1.7px;
    }

    .al-leader-role {
        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .al-leader-accent {
        width: 38px;

        margin: 22px 0 24px;
    }

    .al-leader-content:hover .al-leader-accent {
        width: 56px;
    }

    .al-leader-bio p {
        padding: 15px 14px;

        font-size: 13px;
        line-height: 1.82;
    }

    .al-leader-bio p:hover {
        transform: translateX(3px);
    }

    .al-leader-quote {
        margin-top: 24px;

        padding: 22px 43px 23px 42px;

        font-size: 12.5px;
        line-height: 1.76;

        border-radius: 12px;
    }

    .al-leader-quote-mark {
        font-size: 29px;
    }

    .al-quote-open {
        top: 14px;
        left: 12px;
    }

    .al-quote-close {
        right: 13px;
        bottom: 9px;
    }

    .al-read-more {
        width: 100%;

        min-width: 0;

        margin-top: 25px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .al-leader-section {
        padding: 60px 0;
    }

    .al-leader-container {
        width: 92%;
    }

    .al-leader-header {
        margin-bottom: 34px;
    }

    .al-leader-eyebrow {
        font-size: 8.5px;
        letter-spacing: 2.1px;
    }

    .al-leader-heading {
        font-size: 39px;
        letter-spacing: -2.35px;
    }

    .al-leader-heading:hover {
        letter-spacing: -2.15px;
    }

    .al-leader-intro {
        font-size: 13px;
        line-height: 1.76;
    }

    .al-leader-card {
        border-radius: 18px;
    }

    .al-leader-content {
        padding: 34px 22px 36px;
    }

    .al-leader-name {
        font-size: 31px;
        letter-spacing: -1.7px;
    }

    .al-leader-role {
        font-size: 9px;
        letter-spacing: 1.65px;
    }

    .al-leader-bio p {
        font-size: 12px;
        line-height: 1.8;
    }

    .al-leader-quote {
        padding: 21px 39px 22px 38px;

        font-size: 12px;
    }

    .al-leader-image-caption {
        left: 16px;
        bottom: 15px;
    }

    .al-leader-image::before {
        top: 13px;
        left: 13px;

        width: 34px;
        height: 34px;
    }

    .al-leader-image::after {
        right: 13px;
        bottom: 13px;

        width: 34px;
        height: 34px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 350px) {

    .al-leader-section {
        padding: 53px 0;
    }

    .al-leader-container {
        width: 92%;
    }

    .al-leader-heading {
        font-size: 35px;
        letter-spacing: -2px;
    }

    .al-leader-heading:hover {
        letter-spacing: -1.85px;
    }

    .al-leader-name {
        font-size: 28px;
    }

    .al-leader-content {
        padding-left: 19px;
        padding-right: 19px;
    }

    .al-leader-bio p {
        font-size: 11.5px;
    }

    .al-leader-quote {
        font-size: 11.5px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .al-leader-header,
    .al-eyebrow-line,
    .al-leader-heading,
    .al-leader-heading::after,
    .al-leader-intro,
    .al-leader-card,
    .al-leader-photo,
    .al-leader-image::before,
    .al-leader-image::after,
    .al-leader-image-overlay,
    .al-leader-image-caption,
    .al-leader-image-caption span,
    .al-leader-image-caption span::before,
    .al-leader-meta,
    .al-leader-meta::after,
    .al-leader-meta span,
    .al-leader-name,
    .al-leader-name::after,
    .al-leader-role,
    .al-leader-accent,
    .al-leader-bio p,
    .al-leader-bio p::before,
    .al-leader-quote,
    .al-leader-quote-mark,
    .al-read-more,
    .al-read-more-icon {
        transition: none !important;
    }

    .al-leader-more:not(.hidden) {
        animation: none !important;
    }

}
/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM CONTACT SECTION
========================================================= */


/* =========================================================
   MAIN CONTACT SECTION
========================================================= */

.al-contact {
    position: relative;

    width: 100%;

    padding: 105px 30px;

    background: #f5f6f4;

    box-sizing: border-box;

    overflow: hidden;
}

.al-contact,
.al-contact * {
    box-sizing: border-box;
}


/* =========================================================
   CONTACT CONTAINER
========================================================= */

.al-contact-container {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 0.85fr);

    gap: 75px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.al-contact-content {
    width: 100%;

    min-width: 0;
}


/* =========================================================
   EYEBROW
========================================================= */

.al-contact-eyebrow {
    position: relative;

    display: inline-block;

    margin-bottom: 14px;

    color: #1d5c3b;

    font-size: 10px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 2.8px;

    text-transform: uppercase;

    cursor: default;

    transition:
        color 0.3s ease,
        letter-spacing 0.35s ease,
        transform 0.35s ease;
}


/* Eyebrow line */

.al-contact-eyebrow::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    border-radius: 20px;

    background: #1d5c3b;

    transition:
        width 0.45s cubic-bezier(.2,.7,.2,1);
}


/* Eyebrow hover */

.al-contact-eyebrow:hover {
    color: #173d2b;

    letter-spacing: 3.05px;

    transform: translateY(-1px);
}

.al-contact-eyebrow:hover::after {
    width: 100%;
}


/* =========================================================
   CONTACT TITLE
========================================================= */

.al-contact-title {
    position: relative;

    max-width: none;

    width: 100%;

    margin: 0 0 18px;

    color: #111111;

    font-size: clamp(27px, 2.65vw, 40px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1px;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color 0.35s ease,
        letter-spacing 0.4s ease,
        text-shadow 0.35s ease;
}


/* Title underline */

.al-contact-title::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #1d5c3b;

    border-radius: 20px;

    transition:
        width 0.45s cubic-bezier(.2,.7,.2,1);
}


/* Title hover */

.al-contact-title:hover {
    color: #1d5c3b;

    letter-spacing: -0.7px;

    text-shadow:
        0 7px 20px rgba(29,92,59,.10);
}

.al-contact-title:hover::after {
    width: 100%;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.al-contact-description {
    position: relative;

    max-width: 590px;

    margin: 0 0 38px;

    padding-left: 0;

    color: #626762;

    font-size: 15px;

    line-height: 1.75;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.35s cubic-bezier(.2,.7,.2,1);
}


/* Description hover */

.al-contact-description:hover {
    color: #294638;

    transform: translateX(4px);
}


/* =========================================================
   CONTACT DETAILS GRID
========================================================= */

.al-contact-details {
    width: 100%;

    max-width: 650px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px 32px;
}


/* =========================================================
   CONTACT DETAIL
========================================================= */

.al-contact-detail {
    min-width: 0;

    display: flex;

    align-items: flex-start;

    gap: 14px;

    cursor: pointer;

    transition:
        transform 0.35s cubic-bezier(.2,.7,.2,1);
}


.al-contact-detail:hover {
    transform: translateX(4px);
}


/* =========================================================
   CONTACT ICON
========================================================= */

.al-contact-icon {
    position: relative;

    flex: 0 0 45px;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #111111;

    color: #ffffff;

    font-size: 14px;

    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s cubic-bezier(.2,.7,.2,1),
        box-shadow 0.35s ease;
}


/* Icon hover */

.al-contact-detail:hover .al-contact-icon {
    background: #1d5c3b;

    color: #ffffff;

    transform:
        translateY(-3px)
        scale(1.05);

    box-shadow:
        0 10px 24px rgba(29,92,59,.18);
}


/* Icon itself */

.al-contact-icon i {
    transition:
        transform 0.35s ease;
}

.al-contact-detail:hover .al-contact-icon i {
    transform: scale(1.08);
}


/* =========================================================
   CONTACT DETAIL TEXT WRAPPER
========================================================= */

.al-contact-detail > div:last-child {
    min-width: 0;
}


/* =========================================================
   CONTACT DETAIL LABEL
========================================================= */

.al-contact-detail span {
    display: block;

    margin-bottom: 5px;

    color: #777777;

    font-size: 10px;

    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.3s ease,
        letter-spacing 0.3s ease;
}


/* Label hover */

.al-contact-detail:hover span {
    color: #1d5c3b;

    letter-spacing: 1.7px;
}


/* =========================================================
   CONTACT VALUES
========================================================= */

.al-contact-detail a,
.al-contact-detail p {
    display: block;

    max-width: 100%;

    margin: 0;

    color: #171717;

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none;

    overflow-wrap: anywhere;

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* Detail text hover */

.al-contact-detail:hover a,
.al-contact-detail:hover p {
    color: #1d5c3b;

    transform: translateX(2px);
}


/* Direct link hover */

.al-contact-detail a:hover {
    color: #1d5c3b;

    transform: translateX(3px);
}


/* =========================================================
   CONTACT CARD
========================================================= */

.al-contact-card {
    width: 100%;

    min-width: 0;

    padding: 43px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e1e4e1;

    border-radius: 22px;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.5s cubic-bezier(.2,.7,.2,1),
        box-shadow 0.5s ease,
        border-color 0.4s ease;
}


/* Card hover */

.al-contact-card:hover {
    transform: translateY(-6px);

    border-color: #d2ded6;

    box-shadow:
        0 30px 75px rgba(29,92,59,.09),
        0 8px 25px rgba(0,0,0,.04);
}


/* =========================================================
   CARD HEADER
========================================================= */

.al-contact-card-header {
    margin-bottom: 30px;
}


/* Card eyebrow */

.al-contact-card-header > span {
    position: relative;

    display: inline-block;

    margin-bottom: 12px;

    color: #1d5c3b;

    font-size: 10px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.3s ease,
        letter-spacing 0.35s ease,
        transform 0.3s ease;
}


.al-contact-card-header > span:hover {
    color: #173d2b;

    letter-spacing: 2.25px;

    transform: translateX(3px);
}


/* Card title */

.al-contact-card-header h2 {
    position: relative;

    display: inline-block;

    margin: 0 0 12px;

    color: #111111;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 800;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.35s ease,
        letter-spacing 0.35s ease;
}


.al-contact-card-header h2::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);
}


.al-contact-card-header h2:hover {
    color: #1d5c3b;

    transform: translateX(4px);

    letter-spacing: .1px;
}


.al-contact-card-header h2:hover::after {
    width: 100%;
}


/* Card description */

.al-contact-card-header p {
    margin: 0;

    color: #777777;

    font-size: 14px;

    line-height: 1.6;

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.al-contact-card-header p:hover {
    color: #294638;

    transform: translateX(3px);
}


/* =========================================================
   FORM
========================================================= */

.al-contact-form {
    width: 100%;
}


/* =========================================================
   FORM GROUP
========================================================= */

.al-form-group {
    width: 100%;

    margin-bottom: 20px;
}


/* =========================================================
   FORM LABEL
========================================================= */

.al-form-group label {
    display: block;

    margin-bottom: 8px;

    color: #222222;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        letter-spacing 0.25s ease;
}


.al-form-group label:hover {
    color: #1d5c3b;

    transform: translateX(2px);

    letter-spacing: .15px;
}


/* =========================================================
   INPUT + TEXTAREA
========================================================= */

.al-form-group input,
.al-form-group textarea {
    display: block;

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #dfe2df;

    border-radius: 10px;

    background: #fafbfa;

    color: #111111;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


/* Input */

.al-form-group input {
    height: 52px;

    padding: 0 16px;
}


/* Textarea */

.al-form-group textarea {
    min-height: 135px;

    padding: 15px 16px;

    resize: vertical;
}


/* =========================================================
   INPUT HOVER
========================================================= */

.al-form-group input:hover,
.al-form-group textarea:hover {
    border-color: #bfcac3;

    background: #ffffff;

    transform: translateY(-1px);

    box-shadow:
        0 5px 16px rgba(29,92,59,.045);
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.al-form-group input::placeholder,
.al-form-group textarea::placeholder {
    color: #999999;

    transition:
        color 0.25s ease;
}


.al-form-group input:hover::placeholder,
.al-form-group textarea:hover::placeholder {
    color: #858585;
}


/* =========================================================
   INPUT FOCUS
========================================================= */

.al-form-group input:focus,
.al-form-group textarea:focus {
    border-color: #1d5c3b;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(29,92,59,.08),
        0 7px 20px rgba(29,92,59,.05);

    transform: translateY(-1px);
}


/* =========================================================
   SEND BUTTON
========================================================= */

.al-contact-button {
    width: 100%;

    min-height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 3px;

    padding: 0 20px;

    border: 0;

    border-radius: 10px;

    background: #111111;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.35s cubic-bezier(.2,.7,.2,1),
        box-shadow 0.35s ease,
        letter-spacing 0.3s ease;
}


/* Button hover */

.al-contact-button:hover {
    background: #1d5c3b;

    color: #ffffff;

    transform: translateY(-3px);

    letter-spacing: .15px;

    box-shadow:
        0 12px 28px rgba(29,92,59,.18);
}


/* Button icon */

.al-contact-button i {
    transition:
        transform 0.35s ease;
}

.al-contact-button:hover i {
    transform: translateX(3px);
}


/* Button press */

.al-contact-button:active {
    transform: translateY(0);

    box-shadow:
        0 5px 14px rgba(29,92,59,.12);
}


/* Disabled */

.al-contact-button:disabled {
    cursor: wait;
}


/* =========================================================
   SENDING STATE
========================================================= */

.al-contact-button.sending {
    background: #333333;

    opacity: 0.75;

    cursor: wait;

    transform: none;

    box-shadow: none;
}


.al-contact-button.sending i {
    animation:
        al-contact-spinner 0.8s linear infinite;
}


@keyframes al-contact-spinner {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.al-form-success {
    display: none;

    align-items: flex-start;

    gap: 14px;

    width: 100%;

    margin: 0 0 20px;

    padding: 17px;

    box-sizing: border-box;

    border: 1px solid #cde3d5;

    border-radius: 12px;

    background: #f1f8f4;

    cursor: pointer;

    animation:
        al-success-in 0.35s ease;

    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.al-form-success.show {
    display: flex;
}


.al-form-success:hover {
    border-color: #b5d1c1;

    background: #f5faf7;

    transform: translateY(-2px);

    box-shadow:
        0 9px 24px rgba(29,92,59,.055);
}


@keyframes al-success-in {

    from {
        opacity: 0;

        transform: translateY(-6px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================================================
   SUCCESS ICON
========================================================= */

.al-success-icon {
    flex: 0 0 38px;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #1d5c3b;

    color: #ffffff;

    font-size: 13px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.al-form-success:hover .al-success-icon {
    transform: scale(1.06);

    box-shadow:
        0 7px 18px rgba(29,92,59,.17);
}


/* =========================================================
   SUCCESS HEADING
========================================================= */

.al-form-success h3 {
    margin: 0 0 5px;

    color: #173d2a;

    font-size: 14px;

    line-height: 1.3;

    font-weight: 800;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.al-form-success h3:hover {
    color: #1d5c3b;

    transform: translateX(2px);
}


/* =========================================================
   SUCCESS TEXT
========================================================= */

.al-form-success p {
    margin: 0;

    color: #557061;

    font-size: 12px;

    line-height: 1.6;

    transition:
        color 0.3s ease;
}


.al-form-success p:hover {
    color: #294638;
}


/* =========================================================
   ERROR MESSAGE
========================================================= */

.al-form-error {
    display: none;

    align-items: center;

    gap: 10px;

    width: 100%;

    margin: 0 0 20px;

    padding: 14px 16px;

    box-sizing: border-box;

    border: 1px solid #ead2d2;

    border-radius: 10px;

    background: #fbf3f3;

    color: #873f3f;

    font-size: 13px;

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.al-form-error.show {
    display: flex;
}


.al-form-error:hover {
    border-color: #dfbcbc;

    background: #fff8f8;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(135,63,63,.06);
}


/* =========================================================
   ERROR ICON
========================================================= */

.al-form-error i {
    transition:
        transform 0.3s ease;
}

.al-form-error:hover i {
    transform: scale(1.08);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .al-contact {
        padding: 80px 25px;
    }


    .al-contact-container {
        max-width: 760px;

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .al-contact-title {
        max-width: 100%;

        font-size: clamp(30px, 5vw, 44px);

        white-space: nowrap;
    }


    .al-contact-description {
        max-width: 700px;
    }


    .al-contact-details {
        max-width: 700px;
    }


    .al-contact-card {
        padding: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .al-contact {
        padding: 65px 18px;
    }


    .al-contact-container {
        gap: 38px;
    }


    .al-contact-eyebrow {
        margin-bottom: 14px;

        font-size: 10px;

        letter-spacing: 2.5px;
    }


    .al-contact-eyebrow:hover {
        letter-spacing: 2.7px;
    }


    .al-contact-title {
        max-width: 100%;

        margin-bottom: 18px;

        font-size: clamp(30px, 8.5vw, 40px);

        line-height: 1.08;

        letter-spacing: -1px;

        white-space: normal;
    }


    .al-contact-title:hover {
        letter-spacing: -.75px;
    }


    .al-contact-description {
        margin-bottom: 32px;

        font-size: 14px;

        line-height: 1.75;
    }


    .al-contact-details {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .al-contact-detail {
        gap: 13px;
    }


    .al-contact-icon {
        flex-basis: 42px;

        width: 42px;

        height: 42px;
    }


    .al-contact-detail a,
    .al-contact-detail p {
        font-size: 13px;
    }


    .al-contact-card {
        padding: 28px 20px;

        border-radius: 17px;
    }


    .al-contact-card-header {
        margin-bottom: 25px;
    }


    .al-contact-card-header h2 {
        font-size: 26px;
    }


    .al-contact-card-header p {
        font-size: 13px;
    }


    .al-form-group {
        margin-bottom: 18px;
    }


    .al-form-group input {
        height: 50px;
    }


    .al-form-group textarea {
        min-height: 120px;
    }


    .al-contact-button {
        min-height: 52px;
    }


    .al-form-success {
        padding: 15px;

        gap: 12px;
    }


    .al-success-icon {
        flex-basis: 34px;

        width: 34px;

        height: 34px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .al-contact {
        padding-left: 14px;

        padding-right: 14px;
    }


    .al-contact-title {
        font-size: 29px;

        white-space: normal;
    }


    .al-contact-card {
        padding: 24px 16px;
    }


    .al-contact-card-header h2 {
        font-size: 24px;
    }


    .al-form-group input,
    .al-form-group textarea {
        font-size: 13px;
    }

}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .al-contact-card:hover {
        transform: none;

        border-color: #e1e4e1;

        box-shadow:
            0 20px 55px rgba(0, 0, 0, 0.08);
    }


    .al-contact-detail:hover {
        transform: none;
    }


    .al-contact-detail:hover .al-contact-icon {
        transform: none;

        box-shadow: none;

        background: #111111;
    }


    .al-contact-button:hover {
        transform: none;

        background: #111111;

        box-shadow: none;

        letter-spacing: normal;
    }


    .al-form-group input:hover,
    .al-form-group textarea:hover {
        transform: none;

        box-shadow: none;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.al-contact a:focus-visible,
.al-contact button:focus-visible,
.al-contact input:focus-visible,
.al-contact textarea:focus-visible {
    outline: 2px solid #1d5c3b;

    outline-offset: 4px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .al-contact *,
    .al-contact *::before,
    .al-contact *::after {
        transition: none !important;

        animation: none !important;
    }

}

/*donation page start*/
/* ===========================
   DONATION PAGE WRAPPER
=========================== */
.donation-page {
    background: #ffffff;
    max-width: 900px;
    margin: 4em auto;
    padding: 4em 2.5em;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0,0,0,0.08);
}

/* ===========================
   HEADER TEXT
=========================== */
.donation-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.6em;
    letter-spacing: -1px;
}

.donation-header p {
    font-size: 1.35rem;
    line-height: 1.9em;
    color: #333;
    max-width: 700px;
    margin: 0 auto 2.8em auto;
}

/* ===========================
   DONATION BUTTONS
=========================== */
.donation-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2em;
    margin-bottom: 3em;
}

.donation-options button {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 1.1em 2.2em;
    font-size: 1.35rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
}

.donation-options button:hover {
    background: #fff;      /* white background */
    color: #000;           /* black text */
    border-color: #000;
    transform: translateY(-4px);
}

/* ===========================
   CUSTOM AMOUNT
=========================== */
.custom-amount {
    display: flex;
    justify-content: center;
    gap: 1em;
    flex-wrap: wrap;
}

.custom-amount input {
    width: 220px;
    padding: 1.1em;
    font-size: 1.25rem;
    border: 2px solid #000;
    border-radius: 12px;
    outline: none;
    transition: 0.25s ease;
}

.custom-amount input:focus {
    border-color: #333;
}

.custom-amount button {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 1.1em 2.2em;
    font-size: 1.35rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.custom-amount button:hover {
    background: #fff;
    color: #000;
    border-color: #000;
    transform: translateY(-4px);
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {

    .donation-header h2 {
        font-size: 2.4rem;
    }

    .donation-header p {
        font-size: 1.25rem;
    }

    .donation-options button {
        width: 100%;
        padding: 1em;
        font-size: 1.3rem;
    }

    .custom-amount {
        flex-direction: column;
        align-items: center;
    }

    .custom-amount input {
        width: 100%;
        max-width: 320px;
    }

    .custom-amount button {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {

    .donation-header h2 {
        font-size: 2rem;
    }

    .donation-header p {
        font-size: 1.15rem;
    }

    .donation-options button {
        font-size: 1.2rem;
    }

    .custom-amount input,
    .custom-amount button {
        font-size: 1.15rem;
    }
}

/*donation page end*/ /* =========================================================
   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: 365px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;

    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;
    }

}