:root {
    --navy: #002a5c;
    --blue: #063b78;
    --orange: #ff6b00;
    --amber: #ff9f1a;
    --ink: #10233f;
    --muted: #667085;
    --line: #e6eaf0;
    --soft: #f5f8fb;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(8, 43, 76, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, Poppins, Arial, sans-serif;
    background: var(--white);
    line-height: 1.6;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 4vw;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}

.site-logo {
    width: 205px;
    height: 66px;
    object-fit: contain;
    object-position: left center;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 42px;
    border-radius: 8px;
    background: var(--navy);
    color: white;
    font-weight: 800;
    letter-spacing: 0;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.2;
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav a {
    padding: 10px 9px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    color: #26364f;
    white-space: nowrap;
}

.nav a:hover,
.nav .is-active {
    color: var(--orange);
    background: #fff2e8;
}

.nav .nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: white;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(255, 107, 0, .22);
}

.button.ghost,
.button.outline {
    background: white;
    color: var(--navy);
    border: 1px solid var(--line);
    box-shadow: none;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: white;
    border-radius: 6px;
    min-width: 54px;
    height: 44px;
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
}

.top-banner {
    min-height: 280px;
    display: flex;
    align-items: end;
    padding: 54px 6vw;
    color: white;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid var(--orange);
}

.top-banner div {
    max-width: 820px;
}

.top-banner span {
    color: var(--amber);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0;
}

.top-banner h1 {
    margin: 8px 0 10px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    letter-spacing: 0;
}

.top-banner p {
    margin: 0;
    max-width: 720px;
    color: #eef6ff;
    font-size: 18px;
}

.hero {
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: end;
    gap: 36px;
    padding: 120px 6vw 72px;
    color: white;
    background: linear-gradient(90deg, rgba(0, 42, 92, .88), rgba(0, 42, 92, .48)), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.hero-content {
    max-width: 760px;
}

.hero span,
.section-title span,
.admin-main>span {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
    margin: 10px 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: .98;
    letter-spacing: 0;
}

.hero p {
    max-width: 650px;
    font-size: 19px;
    color: #edf6ff;
}

.intro-enquiry {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 36px;
    align-items: center;
    padding: 70px 6vw;
    background: linear-gradient(180deg, #ffffff, #f7faff);
}

.intro-enquiry>div {
    max-width: 760px;
}

.intro-enquiry span {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.intro-enquiry h1 {
    margin: 10px 0 18px;
    color: var(--navy);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
}

.intro-enquiry p {
    color: var(--muted);
    font-size: 18px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-panel,
.side-box {
    padding: 24px;
    border-radius: 8px;
    background: white;
    color: var(--ink);
    box-shadow: var(--shadow);
}

.hero-panel {
    align-self: end;
}

.hero-panel h2 {
    margin-top: 0;
    color: var(--navy);
}

input,
textarea {
    width: 100%;
    min-height: 44px;
    margin-top: 6px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font: inherit;
}

.hero-panel input {
    margin-bottom: 12px;
}

.section,
.split,
.gallery {
    padding: 76px 6vw;
}

.soft {
    background: var(--soft);
}

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

.section-title {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-title h2 {
    margin: 6px 0 8px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
}

.section-title p,
.media-card p,
.icon-grid p,
.side-box p {
    color: var(--muted);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.media-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 10px 30px rgba(8, 43, 76, .08);
}

.media-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.media-card div {
    padding: 20px;
}

.media-card span {
    color: var(--orange);
    font-weight: 800;
    font-size: 13px;
}

.media-card h3 {
    margin: 8px 0;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.16;
}

.media-card a,
.icon-grid a {
    color: var(--blue);
    font-weight: 800;
}

.tour-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--navy);
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.icon-grid article,
.metrics article,
.table div {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.icon-grid b {
    display: block;
    color: var(--navy);
    font-size: 20px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 48px;
    align-items: center;
}

.split>img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.check-list {
    padding: 0;
    list-style: none;
}

.check-list li {
    margin: 10px 0;
    padding-left: 28px;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
}

.cta,
.page-hero {
    padding: 80px 6vw;
    background: var(--navy);
    color: white;
}

.image-hero {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.image-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 43, 76, .88), rgba(8, 43, 76, .28));
}

.image-hero h1,
.image-hero p {
    position: relative;
}

.blog-hero {
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1800&q=80');
}

.gallery-hero {
    background-image: url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=80');
}

.portfolio-hero {
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=80');
}

.cta {
    text-align: center;
}

.cta h2 {
    margin: 0;
    font-size: clamp(32px, 5vw, 54px);
}

.page-hero p,
.cta p {
    color: #d8e8f5;
    max-width: 760px;
}

.detail-hero {
    min-height: 520px;
    display: flex;
    align-items: end;
    padding: 90px 6vw;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 43, 76, .82), rgba(8, 43, 76, .18));
}

.detail-hero div {
    position: relative;
    max-width: 760px;
}

.detail-hero h1 {
    font-size: clamp(42px, 7vw, 72px);
    margin: 10px 0;
    line-height: 1;
}

.timeline {
    padding-left: 20px;
}

.timeline li {
    margin-bottom: 18px;
}

.form label {
    display: block;
    margin-bottom: 14px;
    font-weight: 800;
    color: var(--navy);
}

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

.flash {
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 6px;
    font-weight: 800;
}

.flash.success {
    background: #e8f8ef;
    color: #166534;
}

.flash.error {
    background: #fff0f0;
    color: #b42318;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
}

.gallery figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--navy);
}

.gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    opacity: .9;
    transition: transform .25s ease, opacity .25s ease;
}

.gallery figure:hover img {
    transform: scale(1.04);
    opacity: 1;
}

.gallery figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    color: white;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}

.portfolio-grid {
    display: grid;
    gap: 24px;
}

.portfolio-card {
    display: grid;
    grid-template-columns: minmax(280px, 42%) 1fr;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 10px 30px rgba(8, 43, 76, .08);
}

.portfolio-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.portfolio-card div {
    padding: 30px;
}

.portfolio-card span {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.portfolio-card h3 {
    color: var(--navy);
    font-size: 32px;
    margin: 8px 0;
    line-height: 1.1;
}

.portfolio-card p {
    color: var(--muted);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 42px;
    align-items: start;
    padding: 76px 6vw;
}

.article-main {
    max-width: 880px;
}

.article-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
}

.article-meta {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.article-main h1 {
    color: var(--navy);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    margin: 10px 0 16px;
}

.article-main p {
    color: #334155;
    font-size: 18px;
}

.article-main .lead {
    color: var(--muted);
    font-size: 21px;
}

.footer {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 46px 6vw;
    background: #001d3f;
    color: white;
}

.footer-logo {
    width: 230px;
    max-width: 100%;
    height: auto;
    padding: 8px;
    border-radius: 8px;
    background: white;
}

.footer a,
.footer p {
    display: block;
    color: #c8d7e5;
    margin: 8px 0;
}

.footer h3 {
    margin-top: 0;
}

.admin-shell {
    min-height: 720px;
    display: grid;
    grid-template-columns: 280px 1fr;
    background: var(--soft);
}

.admin-shell aside {
    padding: 26px;
    background: #071f38;
    color: white;
}

.admin-shell aside a {
    display: block;
    padding: 12px;
    margin: 6px 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
}

.admin-main {
    padding: 36px;
}

.admin-main h2 {
    margin-top: 6px;
    color: var(--navy);
    font-size: 42px;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.metrics b {
    color: var(--orange);
    font-size: 36px;
}

.table {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 72px;
        padding: 16px 6vw;
        background: white;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
    }

    .nav.is-open {
        display: flex;
    }

    .hero,
    .intro-enquiry,
    .split,
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .cards,
    .icon-grid,
    .gallery,
    .metrics,
    .table,
    .footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 12px 18px;
    }

    .brand {
        min-width: 0;
    }

    .site-logo {
        width: 150px;
        height: 48px;
    }

    .brand small {
        display: none;
    }

    .hero,
    .intro-enquiry {
        min-height: auto;
        padding: 52px 20px;
        grid-template-columns: 1fr;
    }

    .section,
    .split,
    .cta,
    .page-hero {
        padding: 52px 20px;
    }

    .cards,
    .icon-grid,
    .gallery,
    .grid.two,
    .metrics,
    .table,
    .footer {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 42px;
    }

    .media-card img,
    .gallery img,
    .split>img {
        height: 230px;
    }

    .admin-main {
        padding: 22px;
    }

    .top-banner {
        min-height: 230px;
        padding: 42px 20px;
    }

    .article-layout {
        padding: 52px 20px;
    }

    .article-image {
        height: 250px;
    }

    .portfolio-card img {
        height: 230px;
    }
}

/* Rich editor content rendering on frontend */
.rich-content {
    color: #334155;
    font-size: 17px;
    line-height: 1.8;
}

.rich-content h2 {
    color: var(--navy);
    font-size: 26px;
    margin: 28px 0 12px;
}

.rich-content h3 {
    color: var(--navy);
    font-size: 20px;
    margin: 22px 0 8px;
}

.rich-content p {
    margin: 0 0 16px;
}

.rich-content ul,
.rich-content ol {
    padding-left: 24px;
    margin: 0 0 16px;
}

.rich-content li {
    margin: 6px 0;
}

.rich-content strong {
    color: var(--ink);
}

.rich-content a {
    color: var(--blue);
    text-decoration: underline;
}

.rich-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0;
}

.rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.rich-content table td,
.rich-content table th {
    padding: 10px 12px;
    border: 1px solid var(--line);
}

.rich-content table th {
    background: var(--navy);
    color: white;
}

/* Contact page office cards */
.contact-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(8, 43, 76, .07);
}

.contact-card h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 17px;
}

.contact-card p {
    margin: 6px 0;
    color: var(--muted);
    font-size: 14px;
}

.contact-card a {
    color: var(--blue);
    font-weight: 700;
}

.contact-card .company-name strong {
    color: var(--navy);
    font-size: 15px;
}

.wa-link {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 18px;
    background: #25d366;
    color: white !important;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

/* =============================================
   VIDEO HERO SECTION
   ============================================= */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 860px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* YouTube iframe stretched to cover full area */
.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.video-bg iframe,
.video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
    object-fit: cover;
}

/* Dark gradient overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 26, 60, 0.82) 0%,
            rgba(0, 42, 92, 0.65) 50%,
            rgba(0, 20, 50, 0.75) 100%);
    z-index: 1;
}

/* Hero content on top of video */
.video-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 6vw;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: center;
}

.video-hero-text {
    color: white;
}

.hero-eyebrow {
    display: inline-block;
    color: var(--amber);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}

.video-hero-text h1 {
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    margin: 0 0 20px;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.video-hero-text p {
    font-size: 18px;
    color: #daeeff;
    max-width: 560px;
    line-height: 1.7;
    margin: 0 0 28px;
}

/* Quick Enquiry form card */
.hero-enquiry-form {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    backdrop-filter: blur(10px);
}

.hero-enquiry-form h3 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
}

.hero-enquiry-form input {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 7px;
    font: inherit;
    font-size: 14px;
    background: #f8fafc;
    color: var(--ink);
    transition: border-color .2s;
}

.hero-enquiry-form input:focus {
    outline: none;
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(6, 59, 120, .1);
}

.hero-enquiry-form .button {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
    margin-top: 4px;
    border-radius: 7px;
}

/* Scroll indicator */
.scroll-down {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    animation: fadeInUp 2s ease infinite;
}

.scroll-arrow {
    font-size: 22px;
    margin-top: 4px;
    animation: bounce 1.8s ease infinite;
    color: var(--amber);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes fadeInUp {

    0%,
    100% {
        opacity: .6;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive video hero */
@media (max-width: 900px) {
    .video-hero {
        height: 80vh;
        max-height: 700px;
    }

    .video-hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 5vw;
    }

    .hero-enquiry-form {
        max-width: 480px;
    }

    .video-hero-text h1 {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .video-hero {
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 80px 0 40px;
    }

    .video-hero-content {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .video-hero-text h1 {
        font-size: 32px;
    }

    .video-hero-text p {
        font-size: 15px;
    }

    .hero-enquiry-form {
        padding: 20px;
    }

    .scroll-down {
        display: none;
    }
}

/* Video fallback background when video hasn't loaded */
.video-hero {
    background: linear-gradient(135deg, #001a3c 0%, #002a5c 50%, #001020 100%);
}

/* Destination ticker at bottom of video hero */
.video-destinations-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(8px);
    display: flex;
    gap: 0;
    overflow: hidden;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.video-destinations-ticker span {
    white-space: nowrap;
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, .15);
    animation: tickerScroll 30s linear infinite;
}

.video-destinations-ticker span:last-child {
    border-right: none;
}

@keyframes tickerScroll {
    0% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .5;
    }
}

/* Stagger animation delays for each destination */
.video-destinations-ticker span:nth-child(1) {
    animation-delay: 0s;
}

.video-destinations-ticker span:nth-child(2) {
    animation-delay: 0.3s;
}

.video-destinations-ticker span:nth-child(3) {
    animation-delay: 0.6s;
}

.video-destinations-ticker span:nth-child(4) {
    animation-delay: 0.9s;
}

.video-destinations-ticker span:nth-child(5) {
    animation-delay: 1.2s;
}

.video-destinations-ticker span:nth-child(6) {
    animation-delay: 1.5s;
}

.video-destinations-ticker span:nth-child(7) {
    animation-delay: 1.8s;
}

.video-destinations-ticker span:nth-child(8) {
    animation-delay: 2.1s;
}

.video-destinations-ticker span:nth-child(9) {
    animation-delay: 2.4s;
}

.video-destinations-ticker span:nth-child(10) {
    animation-delay: 2.7s;
}

@media (max-width: 640px) {
    .video-destinations-ticker {
        display: none;
    }
}