html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
}

/* Prevent animated elements from creating horizontal page width */
section,
header,
footer {
    max-width: 100%;
    overflow-x: clip;
}

img,
svg,
video {
    max-width: 100%;
}

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        right: 30px;
        bottom: 30px;
        z-index: 9999;
        transition: transform 0.5s ease;
    }

    .whatsapp-btn:hover {
        transform: rotate(360deg) scale(1.1);
    }


        /* =========================================================
           ROOT
        ========================================================= */

        :root {
            --ts-navy: #101827;
            --ts-navy-2: #17243a;
            --ts-blue: #2468e8;
            --ts-blue-dark: #1552c4;
            --ts-blue-soft: #eaf3ff;
            --ts-sky: #dff1ff;
            --ts-text: #111827;
            --ts-muted: #626a78;
            --ts-border: #dfe5ed;
            --ts-light: #f7f9fc;
            --ts-white: #ffffff;

            --font-body: "DM Sans", sans-serif;
            --font-display: "DM Sans", sans-serif;
            --font-serif: "Playfair Display", serif;

            --container-width: 1240px;
            --section-space: 120px;
            --radius-lg: 28px;
            --radius-md: 18px;

            --ease: cubic-bezier(.16, 1, .3, 1);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--ts-text);
            background: #fff;
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: var(--container-width);
        }

        /* =========================================================
           TYPOGRAPHY
        ========================================================= */

        .display-title {
            font-size: clamp(54px, 7vw, 100px);
            line-height: .96;
            letter-spacing: -0.055em;
            font-weight: 500;
        }

        .section-title {
            font-size: clamp(44px, 5vw, 72px);
            line-height: .98;
            letter-spacing: -0.05em;
            font-weight: 500;
        }

        .section-title .serif,
        .display-title .serif {
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--ts-blue);
        }

        .eyebrow::before {
            content: "";
            width: 28px;
            height: 1px;
            background: currentColor;
        }

        .lead-text {
            color: var(--ts-muted);
            font-size: 18px;
            line-height: 1.65;
        }

        /* =========================================================
           BUTTONS
        ========================================================= */

        .btn-ts {
            min-height: 52px;
            padding: 0 27px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: 999px;
            border: 1px solid transparent;
            font-size: 15px;
            font-weight: 600;
            transition:
                transform .35s var(--ease),
                background .35s ease,
                color .35s ease,
                border-color .35s ease;
        }

        .btn-ts:hover {
            transform: translateY(-3px);
        }

        .btn-primary-ts {
            background: var(--ts-blue);
            color: white;
        }

        .btn-primary-ts:hover {
            background: var(--ts-blue-dark);
            color: white;
        }

        .btn-outline-ts {
            background: transparent;
            border-color: #cbd5e1;
            color: var(--ts-text);
        }

        .btn-outline-ts:hover {
            border-color: var(--ts-text);
            color: var(--ts-text);
        }

        .btn-dark-ts {
            background: var(--ts-navy);
            color: white;
        }

        .btn-dark-ts:hover {
            background: #000;
            color: white;
        }

        /* =========================================================
           NAVIGATION
        ========================================================= */

        .site-header {
            position: fixed;
            left: 0;
            right: 0;
            top: 0;
            z-index: 1000;
            padding: 18px 0;
            transition:
                padding .4s var(--ease),
                background .4s ease,
                box-shadow .4s ease;
        }

        .site-header.scrolled {
            padding: 10px 0;
            background: rgba(255,255,255,.88);
            backdrop-filter: blur(18px);
            box-shadow: 0 10px 40px rgba(16,24,39,.07);
        }

        .navbar-shell {
            max-width: 1320px;
            margin: auto;
            padding: 0 25px;
        }

        .navbar-inner {
            min-height: 70px;
            padding: 0 9px 0 22px;
            border: 1px solid rgba(255,255,255,.35);
            border-radius: 999px;
            background: rgba(255,255,255,.72);
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 35px rgba(16,24,39,.06);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -.04em;
        }

        .brand-mark {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--ts-navy);
            color: white;
            font-size: 16px;
        }

        .brand span {
            color: var(--ts-blue);
        }

        .nav-link {
            color: #273142 !important;
            font-size: 14px;
            font-weight: 500;
            padding: 9px 14px !important;
            position: relative;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 3px;
            height: 1px;
            background: var(--ts-blue);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform .3s var(--ease);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* =========================================================
           HERO
        ========================================================= */

        .hero {
            min-height: 100vh;
            padding-top: 150px;
            padding-bottom: 80px;
            background:
                radial-gradient(circle at 75% 15%, rgba(95,177,255,.24), transparent 30%),
                linear-gradient(180deg, #d9efff 0%, #edf7ff 48%, #fff 82%);
            overflow: hidden;
            position: relative;
        }

        .hero::after {
            content: "";
            position: absolute;
            width: 600px;
            height: 600px;
            right: -250px;
            top: 180px;
            border-radius: 50%;
            background: rgba(255,255,255,.32);
            filter: blur(10px);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            max-width: 950px;
            margin: 25px auto 30px;
            text-align: center;
        }

        .hero-title .italic {
            font-family: var(--font-serif);
            font-style: italic;
        }

        .hero-description {
            max-width: 700px;
            margin: auto;
            text-align: center;
            color: #596475;
            font-size: 18px;
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 14px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .hero-visual {
            max-width: 1170px;
            margin: 70px auto 0;
            height: 530px;
            position: relative;
        }

        .hero-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
            object-position: right;
        }

        .hero-floating-card {
            position: absolute;
            background: rgba(255,255,255,.94);
            backdrop-filter: blur(14px);
            border-radius: 20px;
            box-shadow: 0 25px 70px rgba(16,24,39,.15);
            padding: 20px;
        }

        .hero-card-left {
            left: -35px;
            bottom: 45px;
            width: 225px;
        }

        .hero-card-right {
            right: -35px;
            top: 50px;
            width: 230px;
        }

        .hero-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--ts-blue-soft);
            color: var(--ts-blue);
            margin-bottom: 12px;
        }

        .hero-card-title {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .hero-card-text {
            font-size: 13px;
            color: var(--ts-muted);
        }

        /* =========================================================
           INTRO
        ========================================================= */

        .intro-section {
            padding: var(--section-space) 0;
            position: relative;
        }

        .intro-globe {
            position: absolute;
            left: -160px;
            top: 60px;
            width: 390px;
            height: 390px;
            border: 1px dashed #c9d8ea;
            border-radius: 50%;
            opacity: .7;
        }

        .intro-globe::before,
        .intro-globe::after {
            content: "";
            position: absolute;
            inset: 35px;
            border: 1px dashed #d5e1ef;
            border-radius: 50%;
        }

        .intro-content {
            max-width: 880px;
            margin-left: auto;
            position: relative;
        }

        .intro-heading {
            font-size: clamp(28px, 3vw, 42px);
            line-height: 1.25;
            letter-spacing: -.035em;
            margin-bottom: 25px;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 55px;
        }

        .stat-number {
            font-size: 54px;
            line-height: 1;
            letter-spacing: -.05em;
            font-weight: 500;
        }

        .stat-number span {
            color: var(--ts-blue);
        }

        .stat-text {
            color: var(--ts-muted);
            max-width: 220px;
            margin-top: 10px;
        }

        /* =========================================================
           SERVICES
        ========================================================= */

        .services-section {
            padding: 40px 0 var(--section-space);
            overflow: hidden;
        }

        .services-heading-row {
            display: flex;
            align-items: end;
            justify-content: space-between;
            margin-bottom: 45px;
        }

        .services-slider {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            overflow-y: hidden;
            padding-bottom: 20px;
            scrollbar-width: none;
        }

        .services-slider::-webkit-scrollbar {
            display: none;
        }

        .service-card {
            flex: 0 0 370px;
            border-radius: 26px;
            overflow: hidden;
            background: #f2f5fa;
            transition: transform .45s var(--ease);
        }

        .service-card:hover {
            transform: translateY(-8px);
        }

        .service-image {
            height: 300px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .8s var(--ease);
        }

        .service-card:hover .service-image img {
            transform: scale(1.06);
        }

        .service-content {
            padding: 25px 25px 30px;
        }

        .service-content h3 {
            font-size: 22px;
            letter-spacing: -.03em;
            margin-bottom: 9px;
        }

        .service-content p {
            color: var(--ts-muted);
            margin: 0;
            font-size: 16px;
        }

        .service-arrow {
            position: absolute;
            right: 20px;
            top: 20px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--ts-navy);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .service-image {
            position: relative;
        }

        /* =========================================================
           JOURNEY
        ========================================================= */

        .journey-section {
            padding: var(--section-space) 0;
            overflow: hidden;
        }

        .journey-heading {
            text-align: center;
            margin-bottom: 80px;
        }

        .journey-line {
            position: absolute;
            left: 0%;
            /* right: 7%; */
            top: 24px;
            height: 100px;
            border-top: 1px dashed #a8c7ef;
            border-radius: 50%;
        }

        .journey-items {
            position: relative;
        }

        .journey-item {
            position: relative;
            text-align: center;
        }

        .journey-number {
            position: relative;
            z-index: 2;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            background: var(--ts-blue);
            font-weight: 700;
            font-size: 16px;
        }

        .journey-item:nth-child(2) {
            transform: translateY(42px);
        }

        .journey-item:nth-child(2) .journey-number {
            background: var(--ts-navy);
        }

        .journey-item h3 {
            font-size: 22px;
            margin-top: 22px;
            letter-spacing: -.03em;
        }

        .journey-item p {
            max-width: 290px;
            margin: 8px auto 0;
            color: var(--ts-muted);
        }

        /* =========================================================
           DESTINATIONS
        ========================================================= */

        .destinations-section {
            padding: 0 0 var(--section-space);
        }

        .destination-shell {
            min-height: 520px;
            padding: 65px 55px;
            border-radius: 30px;
            color: white;
            background:
                radial-gradient(circle at 75% 30%, rgba(54,93,145,.28), transparent 25%),
                #111927;
            position: relative;
            overflow: hidden;
        }

        .destination-shell::before {
            content: "";
            position: absolute;
            width: 650px;
            height: 650px;
            right: -150px;
            top: -100px;
            border: 1px dashed rgba(255,255,255,.09);
            border-radius: 50%;
        }

        .destination-title {
            max-width: 480px;
            position: relative;
            z-index: 2;
        }

        .destination-title .eyebrow {
            color: #7bb1ff;
        }

        .destination-title .section-title {
            margin: 20px 0;
        }

        .destination-title p {
            color: #9ca9bb;
            max-width: 410px;
        }

        .destination-list {
            position: absolute;
            right: 45px;
            top: 55px;
            width: 52%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .destination-item {
            min-height: 120px;
            padding: 22px;
            border-radius: 15px;
            background: rgba(255,255,255,.055);
            border: 1px solid rgba(255,255,255,.05);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: transform .4s var(--ease), background .4s ease;
        }

        .destination-item:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,.1);
        }

        .destination-flag {
            font-size: 34px;
            margin-bottom: 8px;
        }

        .destination-item span:last-child {
            font-size: 15px;
            font-weight: 600;
        }

        /* =========================================================
           CASE STUDY
        ========================================================= */

        .case-study-section {
            padding: var(--section-space) 0;
        }

        .case-study-image {
            height: 510px;
            border-radius: 28px;
            overflow: hidden;
        }

        .case-study-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .case-study-content {
            padding: 35px 0 35px 40px;
        }

        .case-study-content h3 {
            font-size: clamp(32px, 4vw, 48px);
            line-height: 1.05;
            letter-spacing: -.045em;
            margin: 18px 0;
        }

        .case-study-content p {
            color: var(--ts-muted);
            max-width: 520px;
        }

        /* =========================================================
           FAQ
        ========================================================= */

        .faq-section {
            padding: var(--section-space) 0;
        }

        .faq-heading {
            text-align: center;
            margin-bottom: 65px;
        }

        .faq-wrap {
            max-width: 900px;
            margin: auto;
        }

        .accordion-item {
            border: 0;
            border-bottom: 1px solid var(--ts-border);
        }

        .accordion-button {
            padding: 27px 0;
            background: transparent !important;
            box-shadow: none !important;
            color: var(--ts-text);
            font-size: 20px;
            font-weight: 500;
        }

        .accordion-button::after {
            background-image: none;
            content: "+";
            font-size: 28px;
            font-weight: 400;
            color: var(--ts-blue);
            width: auto;
            height: auto;
        }

        .accordion-button:not(.collapsed)::after {
            content: "−";
            transform: none;
        }

        .accordion-body {
            padding: 0 50px 28px 0;
            color: var(--ts-muted);
            font-size: 16px;
        }

        /* =========================================================
           BLOG
        ========================================================= */

        .blog-section {
            padding: 0 0 var(--section-space);
        }

        .blog-heading-row {
            display: flex;
            justify-content: space-between;
            align-items: end;
            margin-bottom: 40px;
        }

        .blog-card {
            height: 100%;
        }

        .blog-image {
            height: 310px;
            overflow: hidden;
            border-radius: 25px;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .8s var(--ease);
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-date {
            display: block;
            color: var(--ts-muted);
            font-size: 13px;
            margin-top: 20px;
        }

        .blog-card h3 {
            font-size: 25px;
            line-height: 1.15;
            letter-spacing: -.035em;
            margin: 8px 0 12px;
        }

        .blog-read {
            color: var(--ts-blue);
            font-size: 14px;
            font-weight: 700;
        }

        /* =========================================================
           CONSULTATION
        ========================================================= */

        .consultation-section {
            padding: 0 0 var(--section-space);
        }

        .consultation-shell {
            padding: 70px;
            border-radius: 30px;
            background:
                radial-gradient(circle at 20% 10%, rgba(89,166,255,.17), transparent 25%),
                #f3f7fc;
        }

        .consultation-form {
            background: white;
            border-radius: 22px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(16,24,39,.08);
        }

        .form-control,
        .form-select {
            min-height: 52px;
            border-radius: 10px;
            border: 1px solid #dce3ec;
            padding: 13px 15px;
            font-size: 14px;
            box-shadow: none !important;
        }

        textarea.form-control {
            min-height: 125px;
            resize: vertical;
        }

        .form-label {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 7px;
        }

        .consultation-content {
            padding-left: 35px;
        }

        .contact-detail {
            display: flex;
            gap: 14px;
            margin-top: 25px;
        }

        .contact-icon {
            flex: 0 0 40px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: white;
            color: var(--ts-blue);
        }

        .contact-detail strong {
            display: block;
            font-size: 14px;
        }

        .contact-detail span {
            color: var(--ts-muted);
            font-size: 14px;
        }

        /* =========================================================
           FOOTER
        ========================================================= */

        .site-footer {
            background: #101827;
            color: white;
            padding: 75px 0 35px;
        }

        .footer-brand {
            font-size: 27px;
            font-weight: 700;
            letter-spacing: -.045em;
        }

        .footer-brand span {
            color: #6ea5ff;
        }

        .footer-description p{
            color: #8996a9;
            max-width: 370px;
            margin-top: 18px;
        }

        .newsletter {
            display: flex;
            background: #1b2536;
            border-radius: 999px;
            padding: 5px;
            max-width: 420px;
            margin-top: 25px;
        }

        .newsletter input {
            flex: 1;
            border: 0;
            background: transparent;
            outline: 0;
            padding: 0 17px;
            color: white;
        }

        .newsletter input::placeholder {
            color: #8591a4;
        }

        .newsletter button {
            width: 46px;
            height: 46px;
            border: 0;
            border-radius: 50%;
            background: var(--ts-blue);
            color: white;
        }

        .footer-heading {
            font-size: 15px;
            margin-bottom: 22px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 11px;
        }

        .footer-links a {
            color: #8996a9;
            font-size: 14px;
            transition: color .25s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.08);
            margin-top: 55px;
            padding-top: 25px;
            color: #778398;
            font-size: 13px;
        }

        /* =========================================================
           SCROLL REVEAL
        ========================================================= */

        .reveal {
            opacity: 0;
            transform: translateY(45px);
            transition:
                opacity .9s var(--ease),
                transform 1s var(--ease);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-55px);
            transition:
                opacity .9s var(--ease),
                transform 1s var(--ease);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(55px);
            transition:
                opacity .9s var(--ease),
                transform 1s var(--ease);
        }

        .reveal.active,
        .reveal-left.active,
        .reveal-right.active {
            opacity: 1;
            transform: translate(0);
        }

        .delay-1 {
            transition-delay: .1s;
        }

        .delay-2 {
            transition-delay: .2s;
        }

        .delay-3 {
            transition-delay: .3s;
        }

        .delay-4 {
            transition-delay: .4s;
        }

        /* =========================================================
           HERO ANIMATION
        ========================================================= */

        .hero-title .word {
            display: inline-block;
            opacity: 0;
            transform: translateY(45px);
            animation: heroWord 1s var(--ease) forwards;
        }

        .hero-title .word:nth-child(1) {
            animation-delay: .1s;
        }

        .hero-title .word:nth-child(2) {
            animation-delay: .2s;
        }

        .hero-title .word:nth-child(3) {
            animation-delay: .3s;
        }

        .hero-title .word:nth-child(4) {
            animation-delay: .4s;
        }

        @keyframes heroWord {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-visual {
            opacity: 0;
            transform: translateY(50px) scale(.97);
            animation: heroImage 1.2s .5s var(--ease) forwards;
        }

        @keyframes heroImage {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* =========================================================
           RESPONSIVE
        ========================================================= */

        @media (max-width: 1199px) {

            .hero-card-left {
                left: 20px;
            }

            .hero-card-right {
                right: 20px;
            }

            .destination-list {
                width: 50%;
            }

        }

        @media (max-width: 991px) {

            :root {
                --section-space: 85px;
            }

            .navbar-inner {
                border-radius: 18px;
                padding: 7px 10px 7px 18px;
            }

            .navbar-collapse {
                padding: 20px 5px 10px;
            }

            .nav-link {
                padding: 12px 8px !important;
            }

            .navbar-cta {
                margin-top: 10px;
                width: 100%;
            }

            .hero {
                padding-top: 130px;
            }

            .hero-title {
                font-size: clamp(48px, 9vw, 78px);
            }

            .hero-visual {
                height: 450px;
            }

            .intro-globe {
                opacity: .35;
            }

            .stats-row {
                gap: 20px;
            }

            .destination-shell {
                padding: 50px 35px;
            }

            .destination-list {
                position: relative;
                width: 100%;
                right: auto;
                top: auto;
                margin-top: 50px;
            }

            .destination-shell {
                min-height: auto;
            }

            .case-study-content {
                padding-left: 0;
                padding-top: 35px;
            }

            .consultation-shell {
                padding: 40px;
            }

            .consultation-content {
                padding-left: 0;
                padding-top: 45px;
            }

        }

        @media (max-width: 767px) {

            :root {
                --section-space: 70px;
            }

            .display-title {
                font-size: 50px;
            }

            .section-title {
                font-size: 44px;
            }

            .hero {
                padding-top: 115px;
                padding-bottom: 50px;
            }

            .hero-description {
                font-size: 16px;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions .btn-ts {
                width: 100%;
            }

            .hero-visual {
                height: 380px;
                margin-top: 50px;
            }

            .hero-main-image {
                border-radius: 22px;
            }

            .hero-floating-card {
                display: none;
            }

            .stats-row {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .stat-text {
                max-width: 100%;
            }

            .services-heading-row,
            .blog-heading-row {
                align-items: start;
                flex-direction: column;
                gap: 25px;
            }

            .service-card {
                flex-basis: 310px;
            }

            .service-image {
                height: 250px;
            }

            .journey-heading {
                margin-bottom: 50px;
            }

            .journey-line {
                display: none;
            }

            .journey-items {
                display: flex;
                flex-direction: column;
                gap: 55px;
            }

            .journey-item:nth-child(2) {
                transform: none;
            }

            .destination-shell {
                padding: 40px 25px;
                border-radius: 22px;
            }

            .destination-list {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .destination-item {
                min-height: 100px;
            }

            .case-study-image {
                height: 380px;
                border-radius: 22px;
            }

            .faq-heading {
                margin-bottom: 35px;
            }

            .accordion-button {
                font-size: 17px;
                padding: 22px 0;
            }

            .accordion-body {
                padding-right: 15px;
            }

            .blog-image {
                height: 250px;
            }

            .consultation-shell {
                padding: 25px;
                border-radius: 22px;
            }

            .consultation-form {
                padding: 22px;
            }

            .site-footer {
                padding-top: 60px;
            }

        }

        @media (prefers-reduced-motion: reduce) {

            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
            }

            .reveal,
            .reveal-left,
            .reveal-right {
                opacity: 1;
                transform: none;
            }

        }

