/* =========================================================
   ARPIVA TECHNOLOGIES
   TRAVEL & HOSPITALITY INDUSTRY PAGE
========================================================= */

.arpiva-travel-page {
    --tr-navy: #06183f;
    --tr-deep: #03112d;
    --tr-blue: #1976e5;
    --tr-blue-light: #69b0ff;
    --tr-cyan: #19bfe8;
    --tr-orange: #ff9f1c;
    --tr-white: #ffffff;
    --tr-text: #12213f;
    --tr-muted: #64748b;
    --tr-light: #f5f8fc;
    --tr-border: #e3ebf5;

    width: 100%;
    overflow: hidden;
}

.arpiva-travel-page *,
.arpiva-travel-page *::before,
.arpiva-travel-page *::after {
    box-sizing: border-box;
}

.arpiva-travel-page .container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.arpiva-travel-page img {
    display: block;
    width: 100%;
    max-width: 100%;
}


/* =========================================================
   HERO
   travel-hospitality-hero.png = BACKGROUND ONLY
========================================================= */

.travel-hero {
    position: relative;

    height: 620px;
    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;

    background-color: var(--tr-navy);

    background-image:
        linear-gradient(
            90deg,
            rgba(3,17,45,.98) 0%,
            rgba(3,17,45,.94) 27%,
            rgba(3,17,45,.66) 53%,
            rgba(3,17,45,.12) 100%
        ),
        url("../images/travel-hospitality-hero.png");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;
}

.travel-hero-overlay {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 78% 40%,
            rgba(25,118,229,.17),
            transparent 35%
        );
}

.travel-hero .container {
    position: relative;
    z-index: 2;
}

.travel-hero-content {
    width: min(650px, 60%);

    animation: travelHeroIn .8s ease both;
}

@keyframes travelHeroIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   HERO TEXT
========================================================= */

.travel-eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 7px 14px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;

    color: #d9e6f7;

    background: rgba(255,255,255,.055);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.7px;

    backdrop-filter: blur(8px);
}

.travel-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    margin-right: 8px;

    border-radius: 50%;

    background: #42dc86;

    box-shadow: 0 0 14px rgba(66,220,134,.45);

    animation: travelPulse 2s ease-in-out infinite;
}

@keyframes travelPulse {
    0%, 100% {
        transform: scale(.9);
        opacity: .65;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.travel-kicker {
    display: block;

    margin: 18px 0 10px;

    color: var(--tr-orange);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.8px;
}

.travel-hero h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(45px, 5.2vw, 68px);

    line-height: .98;

    font-weight: 800;

    letter-spacing: -3px;
}

.travel-hero h1 span {
    display: block;

    margin-top: 6px;

    color: var(--tr-blue-light);
}

.travel-hero-content > p {
    max-width: 625px;

    margin: 21px 0 0;

    color: #c3d2e7;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   BUTTONS
========================================================= */

.travel-hero-actions {
    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.travel-primary-button,
.travel-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    min-height: 49px;

    padding: 0 22px;

    border-radius: 9px;

    text-decoration: none !important;

    font-size: 11px;
    font-weight: 700;

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        background .28s ease;
}

.travel-primary-button {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #ffab27,
            #ff8500
        );

    box-shadow:
        0 13px 30px rgba(255,133,0,.22);
}

.travel-primary-button:hover {
    color: #fff !important;

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(255,133,0,.32);
}

.travel-secondary-button {
    color: #fff !important;

    border: 1px solid rgba(255,255,255,.23);

    background: rgba(255,255,255,.055);

    backdrop-filter: blur(8px);
}

.travel-secondary-button:hover {
    color: #fff !important;

    transform: translateY(-3px);

    background: rgba(255,255,255,.10);
}

.travel-primary-button span,
.travel-secondary-button span {
    font-size: 16px;

    transition: transform .25s ease;
}

.travel-primary-button:hover span,
.travel-secondary-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TRUST
========================================================= */

.travel-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 17px;
}

.travel-trust span {
    position: relative;

    padding-left: 11px;

    color: #9db2cf;

    font-size: 8px;
    font-weight: 600;
}

.travel-trust span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: var(--tr-orange);
}


/* =========================================================
   SCROLL
========================================================= */

.travel-scroll {
    position: absolute;

    left: 50%;
    bottom: 18px;

    z-index: 4;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;

    transform: translateX(-50%);

    color: rgba(255,255,255,.42);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.travel-scroll i {
    width: 1px;
    height: 25px;

    display: block;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.65),
            transparent
        );

    animation: travelScroll 1.8s ease-in-out infinite;
}

@keyframes travelScroll {
    0%,100% {
        opacity: .35;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(6px);
    }
}


/* =========================================================
   SECTIONS
========================================================= */

.travel-intro,
.travel-solutions,
.travel-operations,
.travel-automation {
    padding: 100px 0;

    background: #fff;
}

.travel-experience,
.travel-intelligence,
.travel-enterprise {
    padding: 100px 0;

    background: var(--tr-light);
}

.travel-challenges,
.travel-why {
    padding: 100px 0;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #03122f,
            #06183f
        );
}


/* =========================================================
   HEADINGS
========================================================= */

.travel-heading {
    max-width: 780px;

    margin: 0 auto 55px;

    text-align: center;
}

.travel-heading > span,
.travel-label {
    display: block;

    color: var(--tr-orange);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.6px;
}

.travel-heading > span {
    margin-bottom: 13px;
}

.travel-label {
    margin-bottom: 13px;
}

.travel-heading h2 {
    margin: 0;

    color: var(--tr-navy);

    font-size: clamp(32px, 4vw, 49px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.8px;
}

.travel-heading h2 strong {
    display: block;

    color: var(--tr-blue);
}

.travel-heading p {
    max-width: 720px;

    margin: 18px auto 0;

    color: var(--tr-muted);

    font-size: 13px;

    line-height: 1.8;
}

.travel-heading-light h2 {
    color: #fff;
}

.travel-heading-light p {
    color: #aebfd8;
}


/* =========================================================
   INTRO
========================================================= */

.travel-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.travel-intro-content {
    max-width: 570px;
}

.travel-intro-content h2 {
    margin: 0 0 17px;

    color: var(--tr-navy);

    font-size: clamp(29px, 3.5vw, 43px);

    line-height: 1.12;

    letter-spacing: -1.5px;
}

.travel-intro-content h2 strong {
    display: block;

    color: var(--tr-blue);
}

.travel-intro-content > p {
    margin: 0;

    color: var(--tr-muted);

    font-size: 13px;

    line-height: 1.8;
}

.travel-intro-points {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 11px;

    margin-top: 27px;
}

.travel-intro-points > div {
    padding: 17px;

    border: 1px solid var(--tr-border);

    border-radius: 12px;

    background: #fbfcfe;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.travel-intro-points > div:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 32px rgba(6,24,63,.08);
}

.travel-intro-points span {
    display: block;

    margin-bottom: 9px;

    color: var(--tr-blue);

    font-size: 9px;
    font-weight: 800;
}

.travel-intro-points strong {
    display: block;

    color: var(--tr-navy);

    font-size: 11px;
}

.travel-intro-points p {
    margin: 6px 0 0;

    color: var(--tr-muted);

    font-size: 9px;

    line-height: 1.5;
}


/* =========================================================
   ORBIT
========================================================= */

.travel-intro-visual {
    display: flex;

    align-items: center;
    justify-content: center;
}

.travel-orbit {
    position: relative;

    width: 400px;
    height: 400px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.travel-orbit-ring {
    position: absolute;

    border: 1px dashed rgba(25,118,229,.18);

    border-radius: 50%;
}

.travel-ring-one {
    width: 390px;
    height: 390px;

    animation: travelRotate 24s linear infinite;
}

.travel-ring-two {
    width: 290px;
    height: 290px;

    border-color: rgba(25,191,232,.18);

    animation: travelRotate 18s linear infinite reverse;
}

.travel-ring-three {
    width: 190px;
    height: 190px;

    border-color: rgba(25,118,229,.20);

    animation: travelRotate 13s linear infinite;
}

@keyframes travelRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.travel-core {
    position: relative;
    z-index: 3;

    width: 140px;
    height: 140px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #1976e5,
            #06183f
        );

    box-shadow:
        0 20px 55px rgba(25,118,229,.25);
}

.travel-core span {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.travel-core strong {
    margin-top: 5px;

    font-size: 17px;

    line-height: 1;
}

.travel-core small {
    margin-top: 7px;

    color: #a9c5e6;

    font-size: 5px;

    letter-spacing: 1px;
}

.travel-node {
    position: absolute;
    z-index: 4;

    width: 67px;
    height: 67px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 7px;

    border: 1px solid #dbe7f5;

    border-radius: 50%;

    color: var(--tr-navy);

    background: #fff;

    box-shadow:
        0 12px 30px rgba(6,24,63,.11);

    font-size: 7px;
    font-weight: 800;

    text-align: center;
}

.travel-node-one {
    top: 10px;
    left: 52px;
}

.travel-node-two {
    top: 10px;
    right: 52px;
}

.travel-node-three {
    right: 0;
    bottom: 52px;
}

.travel-node-four {
    left: 0;
    bottom: 52px;
}


/* =========================================================
   CHALLENGES
========================================================= */

.travel-challenge-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.travel-dark-card {
    min-height: 245px;

    padding: 25px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 16px;

    background: rgba(255,255,255,.045);

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}

.travel-dark-card:hover {
    transform: translateY(-7px);

    background: rgba(255,255,255,.075);

    border-color: rgba(103,173,255,.30);
}

.travel-dark-card small {
    color: rgba(255,255,255,.25);

    font-size: 10px;
    font-weight: 800;
}

.travel-dark-card h3 {
    margin: 32px 0 12px;

    color: #fff;

    font-size: 17px;
}

.travel-dark-card p {
    margin: 0;

    color: #9db1cf;

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.travel-solution-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.travel-solution-card {
    min-height: 235px;

    padding: 24px;

    border: 1px solid var(--tr-border);

    border-radius: 16px;

    background: #fff;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.travel-solution-card:hover {
    transform: translateY(-7px);

    border-color: rgba(25,118,229,.24);

    box-shadow:
        0 18px 40px rgba(6,24,63,.08);
}

.travel-solution-card small {
    color: #a5b5c9;

    font-size: 9px;
    font-weight: 800;
}

.travel-solution-card > span {
    display: block;

    margin-top: 22px;

    color: var(--tr-blue);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.travel-solution-card h3 {
    margin: 9px 0 10px;

    color: var(--tr-navy);

    font-size: 16px;
}

.travel-solution-card p {
    margin: 0;

    color: var(--tr-muted);

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   TWO COLUMN
========================================================= */

.travel-two-column {
    display: grid;

    grid-template-columns: 1.08fr .92fr;

    gap: 70px;

    align-items: center;
}

.travel-image {
    overflow: hidden;

    border-radius: 19px;

    background: var(--tr-navy);

    box-shadow:
        0 25px 60px rgba(6,24,63,.13);
}

.travel-image img {
    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}

.travel-image:hover img {
    transform: scale(1.025);
}

.travel-content h2 {
    margin: 0 0 17px;

    color: var(--tr-navy);

    font-size: clamp(31px, 3.7vw, 48px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.travel-content h2 strong {
    display: block;

    color: var(--tr-blue);
}

.travel-content > p {
    color: var(--tr-muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   CHECK LIST
========================================================= */

.travel-check-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0 20px;

    margin-top: 23px;
}

.travel-check-list > div {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 0;

    border-bottom: 1px solid var(--tr-border);
}

.travel-check-list span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    border-radius: 50%;

    color: #fff;

    background: var(--tr-blue);

    font-size: 9px;
}

.travel-check-list strong {
    color: var(--tr-navy);

    font-size: 10px;
}


/* =========================================================
   GUEST EXPERIENCE
========================================================= */

.travel-experience-grid {
    display: grid;

    grid-template-columns: 1fr .75fr;

    gap: 70px;

    align-items: center;
}

.travel-experience-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 25px;
}

.travel-experience-points > div {
    padding: 16px;

    border: 1px solid var(--tr-border);

    border-radius: 12px;

    background: #fff;
}

.travel-experience-points strong {
    display: block;

    color: var(--tr-navy);

    font-size: 11px;
}

.travel-experience-points span {
    display: block;

    margin-top: 6px;

    color: var(--tr-muted);

    font-size: 9px;

    line-height: 1.5;
}

.travel-experience-card {
    min-height: 360px;

    padding: 42px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    border-radius: 22px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #0b3c86,
            #03122f
        );

    box-shadow:
        0 25px 55px rgba(6,24,63,.16);
}

.travel-experience-card > span {
    color: var(--tr-orange);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.travel-experience-card > strong {
    margin-top: 22px;

    font-size: clamp(34px, 4vw, 53px);

    line-height: 1.02;

    letter-spacing: -2px;
}

.travel-experience-card small {
    max-width: 280px;

    margin-top: 25px;

    color: #a9c0dc;

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   INTELLIGENCE
========================================================= */

.travel-intelligence-grid {
    grid-template-columns: .92fr 1.08fr;
}

.travel-intelligence-list {
    margin-top: 24px;
}

.travel-intelligence-list > div {
    padding: 13px 0;

    border-bottom: 1px solid var(--tr-border);
}

.travel-intelligence-list strong {
    display: block;

    color: var(--tr-navy);

    font-size: 11px;
}

.travel-intelligence-list span {
    display: block;

    margin-top: 4px;

    color: var(--tr-muted);

    font-size: 9px;
}


/* =========================================================
   AUTOMATION
========================================================= */

.travel-automation-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.travel-automation-card {
    min-height: 220px;

    padding: 25px;

    border: 1px solid var(--tr-border);

    border-radius: 15px;

    background: #fff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.travel-automation-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 38px rgba(6,24,63,.08);
}

.travel-automation-card small {
    color: var(--tr-orange);

    font-size: 9px;
    font-weight: 800;
}

.travel-automation-card h3 {
    margin: 24px 0 10px;

    color: var(--tr-navy);

    font-size: 16px;
}

.travel-automation-card p {
    margin: 0;

    color: var(--tr-muted);

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   ENTERPRISE
========================================================= */

.travel-enterprise-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.travel-enterprise-grid > div:first-child p {
    max-width: 570px;

    margin: 0;

    color: var(--tr-muted);

    font-size: 13px;

    line-height: 1.8;
}

.travel-enterprise-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.travel-enterprise-points > div {
    padding: 20px;

    border: 1px solid var(--tr-border);

    border-radius: 13px;

    background: #fff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.travel-enterprise-points > div:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(6,24,63,.07);
}

.travel-enterprise-points span {
    display: block;

    margin-bottom: 18px;

    color: var(--tr-blue);

    font-size: 9px;
    font-weight: 800;
}

.travel-enterprise-points strong {
    color: var(--tr-navy);

    font-size: 10px;
}


/* =========================================================
   WHY ARPIVA
========================================================= */

.travel-why-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.travel-why-card {
    padding: 25px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 15px;

    background: rgba(255,255,255,.045);

    transition:
        transform .3s ease,
        background .3s ease;
}

.travel-why-card:hover {
    transform: translateY(-6px);

    background: rgba(255,255,255,.075);
}

.travel-why-card > span {
    color: var(--tr-orange);

    font-size: 9px;
    font-weight: 800;
}

.travel-why-card h3 {
    margin: 22px 0 10px;

    color: #fff;

    font-size: 17px;
}

.travel-why-card p {
    margin: 0;

    color: #9db1cf;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.travel-final-cta {
    position: relative;

    padding: 105px 0;

    overflow: hidden;

    text-align: center;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #03112d,
            #06183f
        );
}

.travel-final-glow {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 600px;
    height: 600px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(25,118,229,.20),
            transparent 68%
        );

    pointer-events: none;
}

.travel-final-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    margin: 0 auto;
}

.travel-final-content > span {
    display: block;

    margin-bottom: 13px;

    color: var(--tr-orange);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.travel-final-content h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(35px, 4.5vw, 55px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.travel-final-content h2 strong {
    display: block;

    color: var(--tr-blue-light);
}

.travel-final-content p {
    max-width: 650px;

    margin: 18px auto 28px;

    color: #a9bdd8;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .travel-hero-content {
        width: 63%;
    }

    .travel-challenge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .travel-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .travel-automation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .arpiva-travel-page .container {
        width: 92%;
    }

    .travel-hero {
        height: 700px;
        min-height: 700px;

        align-items: flex-start;

        padding-top: 55px;

        background-position: center;
    }

    .travel-hero-content {
        width: 100%;
    }

    .travel-hero h1 {
        font-size: 44px;

        letter-spacing: -2px;
    }

    .travel-hero-content > p {
        font-size: 12px;
    }

    .travel-hero-actions {
        flex-direction: column;
    }

    .travel-primary-button,
    .travel-secondary-button {
        width: 100%;
    }

    .travel-scroll {
        display: none;
    }

    .travel-intro,
    .travel-challenges,
    .travel-solutions,
    .travel-operations,
    .travel-experience,
    .travel-intelligence,
    .travel-automation,
    .travel-enterprise,
    .travel-why {
        padding: 75px 0;
    }

    .travel-intro-grid,
    .travel-two-column,
    .travel-experience-grid,
    .travel-enterprise-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .travel-intro-points,
    .travel-experience-points,
    .travel-check-list,
    .travel-enterprise-points {
        grid-template-columns: 1fr;
    }

    .travel-challenge-grid,
    .travel-solution-grid,
    .travel-automation-grid,
    .travel-why-grid {
        grid-template-columns: 1fr;
    }

    .travel-orbit {
        width: 320px;
        height: 320px;
    }

    .travel-ring-one {
        width: 310px;
        height: 310px;
    }

    .travel-ring-two {
        width: 230px;
        height: 230px;
    }

    .travel-ring-three {
        width: 155px;
        height: 155px;
    }

    .travel-core {
        width: 115px;
        height: 115px;
    }

    .travel-node-one {
        left: 15px;
    }

    .travel-node-two {
        right: 15px;
    }

    .travel-node-three {
        right: -5px;
    }

    .travel-node-four {
        left: -5px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .travel-hero-content,
    .travel-eyebrow::before,
    .travel-scroll i,
    .travel-orbit-ring {
        animation: none !important;
    }

}