/* =========================================================
   TRAVELLOLO
   DOMESTIC + INTERNATIONAL FLIGHTS
   SHARED RESPONSIVE CSS
========================================================= */

/* =========================================================
   VARIABLES / PAGE BASE
========================================================= */

.tl-domestic-page,
.tl-international-page {
    --navy: #0A2A5E;
    --navy-dark: #06214A;
    --navy-light: #123F7A;

    --sky: #F3F7FB;

    --blue: #174A8B;
    --blue-light: #DCEAF7;

    --amber: #FF4F18;
    --amber-dark: #E8430F;
    --amber-soft: #FFF0EA;

    --white: #FFFFFF;

    --text: #0A2A5E;
    --slate: #66758A;
    --muted: #8A97A6;

    --line: #DDE5ED;
    --soft: #F7F9FC;

    width: 100%;
    overflow: hidden;

    background: #ffffff;
    color: var(--navy);

    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
}


/* BOX SIZING */

.tl-domestic-page *,
.tl-domestic-page *::before,
.tl-domestic-page *::after,
.tl-international-page *,
.tl-international-page *::before,
.tl-international-page *::after {
    box-sizing: border-box;
}


/* DEFAULT MARGINS */

.tl-domestic-page h1,
.tl-domestic-page h2,
.tl-domestic-page h3,
.tl-domestic-page p,
.tl-international-page h1,
.tl-international-page h2,
.tl-international-page h3,
.tl-international-page p {
    margin-top: 0;
}


/* LINKS */

.tl-domestic-page a,
.tl-international-page a {
    color: inherit;
    text-decoration: none;
}


/* MONO */

.tl-domestic-page .mono,
.tl-international-page .mono {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
}


/* =========================================================
   WRAPPER
========================================================= */

.tl-domestic-page .wrap,
.tl-international-page .wrap {
    width: min(1120px, calc(100% - 40px));
    max-width: 1120px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 0;
    padding-right: 0;
}


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

.tl-domestic-page .hero,
.tl-international-page .hero {
    position: relative;

    overflow: hidden;

    padding: 0 0 120px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 78% 25%,
            rgba(29, 111, 165, .40),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            var(--navy-dark) 0%,
            var(--navy) 45%,
            var(--navy-light) 100%
        );
}


/* INTERNATIONAL HERO SLIGHTLY DIFFERENT */

.tl-international-page .hero {
    background:
        radial-gradient(
            circle at 78% 25%,
            rgba(38, 124, 186, .42),
            transparent 37%
        ),
        radial-gradient(
            circle at 18% 85%,
            rgba(255, 79, 24, .08),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #051D42 0%,
            #0A2A5E 48%,
            #123F7A 100%
        );
}


/* GRID PATTERN */

.tl-domestic-page .hero::before,
.tl-international-page .hero::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .65;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;
}


/* HERO INNER */

.tl-domestic-page .hero-inner,
.tl-international-page .hero-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.1fr .9fr;

    gap: 60px;

    align-items: center;

    padding-top: 70px;
    padding-bottom: 40px;
}


/* EYEBROW */

.tl-domestic-page .eyebrow,
.tl-international-page .eyebrow {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 15px;

    color: var(--amber);

    font-family: 'IBM Plex Mono', monospace;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.tl-domestic-page .eyebrow::before,
.tl-international-page .eyebrow::before {
    content: "✈";

    font-size: 14px;
}


/* HERO TITLE */

.tl-domestic-page .hero h1,
.tl-international-page .hero h1 {
    max-width: 610px;

    margin-bottom: 20px;

    color: #fff;

    font-family: 'Space Grotesk', Arial, sans-serif;

    font-size: clamp(30px, 3.5vw, 40px);
    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -.04em;
}


/* HERO PARAGRAPH */

.tl-domestic-page .hero p,
.tl-international-page .hero p {
    max-width: 540px;

    margin-bottom: 0;

    color: #c9d9e8;

    font-size: 15px;

    line-height: 1.8;
}


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

.tl-domestic-page .hero-visual,
.tl-international-page .hero-visual {
    position: relative;
    height: 300px;
    min-height: 0;
   
    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 18px;

    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(29,111,165,.50),
            transparent 60%
        ),
        repeating-linear-gradient(
            120deg,
            rgba(255,255,255,.04) 0,
            rgba(255,255,255,.04) 1px,
            transparent 1px,
            transparent 60px
        ),
        rgba(255,255,255,.025);

    box-shadow:
        0 25px 55px rgba(0,0,0,.18);
}


/* INTERNATIONAL VISUAL */

.tl-international-page .hero-visual {
    background:
        radial-gradient(
            circle at 67% 40%,
            rgba(37,128,192,.45),
            transparent 50%
        ),
        repeating-linear-gradient(
            120deg,
            rgba(255,255,255,.04) 0,
            rgba(255,255,255,.04) 1px,
            transparent 1px,
            transparent 60px
        ),
        rgba(255,255,255,.025);
}


/* CIRCLE DESIGN */

.tl-domestic-page .hero-visual::before,
.tl-international-page .hero-visual::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -80px;
    right: -70px;

    border:
        1px solid rgba(255,255,255,.06);

    border-radius: 50%;

    box-shadow:
        0 0 0 45px rgba(255,255,255,.02),
        0 0 0 90px rgba(255,255,255,.01);
}


/* FLIGHT PATH */

.tl-domestic-page .flight-path,
.tl-international-page .flight-path {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-domestic-page .path-svg,
.tl-international-page .path-svg {
    width: 82%;
    max-width: 430px;
    height: auto;
}


/* =========================================================
   BOARDING PASS
========================================================= */

.tl-domestic-page .boarding-pass,
.tl-international-page .boarding-pass {
    position: relative;

    z-index: 10;

    width: min(1120px, calc(100% - 40px));
    max-width: 1120px;

    margin:
        -84px auto 0;
}


/* PASS CARD */

.tl-domestic-page .pass-card,
.tl-international-page .pass-card {
    position: relative;

    min-height: 112px;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1.15fr
        1.15fr
        auto;

    align-items: stretch;

    overflow: visible;

    background: #fff;

    border:
        1px solid #e2e9ef;

    border-radius: 16px;

    box-shadow:
        0 20px 45px rgba(11,37,69,.16);
}


/* TABS */

.tl-domestic-page .pass-tabs,
.tl-international-page .pass-tabs {
    position: absolute;

    top: -38px;
    left: 24px;

    display: flex;

    gap: 4px;
}

.tl-domestic-page .pass-tab,
.tl-international-page .pass-tab {
    padding: 8px 17px;

    color: #fff;

    background:
        rgba(255,255,255,.14);

    border-radius:
        8px 8px 0 0;

    font-size: 12px;
    font-weight: 600;
}

.tl-domestic-page .pass-tab.active,
.tl-international-page .pass-tab.active {
    color: var(--navy);

    background: #fff;
}


/* FIELD */

.tl-domestic-page .pf,
.tl-international-page .pf {
    min-width: 0;

    padding: 22px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 4px;

    border-right:
        1px dashed var(--line);
}

.tl-domestic-page .pf-label,
.tl-international-page .pf-label {
    color: #8897a8;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .09em;

    text-transform: uppercase;
}

.tl-domestic-page .pf-value,
.tl-international-page .pf-value {
    color: var(--navy);

    font-size: 15px;
    font-weight: 600;
}

.tl-domestic-page .pf-code,
.tl-international-page .pf-code {
    font-size: 23px;

    line-height: 1.1;
}


/* BUTTON */

.tl-domestic-page .pf-btn,
.tl-international-page .pf-btn {
    min-width: 155px;

    padding: 20px 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    background: var(--amber);

    border-radius:
        0 16px 16px 0;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.tl-domestic-page .pf-btn:hover,
.tl-international-page .pf-btn:hover {
    color: #fff;

    background: var(--amber-dark);

    transform: translateY(-1px);
}


/* NOTCH */

.tl-domestic-page .notch,
.tl-international-page .notch {
    position: absolute;

    width: 20px;
    height: 20px;

    top: 50%;

    background: #fff;

    border-radius: 50%;

    transform:
        translateY(-50%);
}

.tl-domestic-page .notch.left,
.tl-international-page .notch.left {
    display: none;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.tl-domestic-page > section.wrap,
.tl-international-page > section.wrap {
    padding-top: 34px;
    padding-bottom: 34px;
}


/* SECTION HEAD */

.tl-domestic-page .section-head,
.tl-international-page .section-head {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 28px;
}


/* HEADING */

.tl-domestic-page .section-head h2,
.tl-international-page .section-head h2 {
    margin-bottom: 0;

    color: var(--navy);

    font-family:
        'Space Grotesk',
        Arial,
        sans-serif;

    font-size: 28px;

    line-height: 1.2;
}


/* SMALL EYEBROW */

.tl-domestic-page .eyebrow-sm,
.tl-international-page .eyebrow-sm {
    display: block;

    margin-bottom: 8px;

    color: var(--blue);

    font-family:
        'IBM Plex Mono',
        monospace;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;
}


/* VIEW ALL */

.tl-domestic-page .view-all,
.tl-international-page .view-all {
    flex: 0 0 auto;

    color: var(--blue);

    font-size: 12px;

    font-weight: 700;

    transition:
        color .2s ease;
}

.tl-domestic-page .view-all:hover,
.tl-international-page .view-all:hover {
    color: var(--amber);
}


/* =========================================================
   ROUTE / DEAL CARDS
========================================================= */

.tl-domestic-page .deal-strip,
.tl-international-page .deal-strip {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 17px;
}


/* CARD */

.tl-domestic-page .deal-stub,
.tl-international-page .deal-stub {
    min-width: 0;

    overflow: hidden;

    background: #fff;

    border:
        1px solid var(--line);

    border-radius: 13px;

    box-shadow:
        0 6px 18px rgba(11,37,69,.035);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.tl-domestic-page .deal-stub:hover,
.tl-international-page .deal-stub:hover {
    transform:
        translateY(-4px);

    border-color:
        #c9d5df;

    box-shadow:
        0 15px 30px rgba(11,37,69,.10);
}


/* TOP */

.tl-domestic-page .deal-top,
.tl-international-page .deal-top {
    padding: 19px;
}


/* ROUTE */

.tl-domestic-page .route,
.tl-international-page .route {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 12px;

    margin-bottom: 12px;
}

.tl-domestic-page .route .code,
.tl-international-page .route .code {
    color: var(--navy);

    font-size: 23px;

    line-height: 1;
}

.tl-domestic-page .route .arrow,
.tl-international-page .route .arrow {
    color: var(--amber);

    font-size: 15px;
}


/* AIRLINE */

.tl-domestic-page .deal-airline,
.tl-international-page .deal-airline {
    margin-bottom: 3px;

    color: var(--navy);

    font-size: 14px;

    font-weight: 600;
}


/* DETAIL */

.tl-domestic-page .deal-dates,
.tl-international-page .deal-dates {
    color: var(--slate);

    font-size: 13px;
}


/* PERFORATION */

.tl-domestic-page .perforation,
.tl-international-page .perforation {
    position: relative;

    height: 0;

    margin: 0 18px;

    border-top:
        1px dashed var(--line);
}

.tl-domestic-page .perforation::before,
.tl-domestic-page .perforation::after,
.tl-international-page .perforation::before,
.tl-international-page .perforation::after {
    content: "";

    position: absolute;

    top: -7px;

    width: 14px;
    height: 14px;

    background: #fff;

    border-radius: 50%;
}

.tl-domestic-page .perforation::before,
.tl-international-page .perforation::before {
    left: -26px;
}

.tl-domestic-page .perforation::after,
.tl-international-page .perforation::after {
    right: -26px;
}


/* BOTTOM */

.tl-domestic-page .deal-bottom,
.tl-international-page .deal-bottom {
    padding: 16px 19px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 12px;
}

.tl-domestic-page .deal-price,
.tl-international-page .deal-price {
    color: var(--amber);

    font-family:
        'Space Grotesk',
        Arial,
        sans-serif;

    font-size: 20px;

    font-weight: 700;
}

.tl-international-page .deal-price {
    color: var(--navy);
}

.tl-domestic-page .deal-tag,
.tl-international-page .deal-tag {
    color: var(--slate);

    font-size: 14px;
}

.tl-domestic-page .deal-cta,
.tl-international-page .deal-cta {
    padding: 7px 10px;
    color: #fff;
    background: var(--amber);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
}

.content-box h2{
	font-size:24px;
}
/* =========================================================
   DESTINATION GRID
========================================================= */

.tl-domestic-page .dest-grid,
.tl-international-page .dest-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0,1fr));

    gap: 13px;
}


/* DESTINATION */

.tl-domestic-page .dest-tile,
.tl-international-page .dest-tile {
    position: relative;

    min-width: 0;

    min-height: 190px;

    padding: 15px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    overflow: hidden;

    color: #fff !important;

    border-radius: 13px;

    background:
        radial-gradient(
            circle at 25% 20%,
            rgba(64,155,213,.55),
            transparent 42%
        ),
        linear-gradient(
            155deg,
            #1D6FA5,
            #0B2545
        );

    box-shadow:
        0 9px 24px rgba(11,37,69,.10);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.tl-domestic-page .dest-tile::before,
.tl-international-page .dest-tile::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(6,33,74,.88),
            rgba(6,33,74,.18) 70%
        );

    pointer-events: none;
}

.tl-domestic-page .dest-tile::after,
.tl-international-page .dest-tile::after {
    content: "✈";

    position: absolute;

    right: 11px;
    bottom: 6px;

    z-index: 1;

    color:
        rgba(255,255,255,.09);

    font-size: 45px;

    transform:
        rotate(-20deg);
}

.tl-domestic-page .dest-tile:hover,
.tl-international-page .dest-tile:hover {
    color: #fff !important;

    transform:
        translateY(-5px);

    box-shadow:
        0 17px 35px rgba(11,37,69,.18);
}


/* CODE */

.tl-domestic-page .dest-tile .code,
.tl-international-page .dest-tile .code {
    position: absolute;

    z-index: 3;

    top: 12px;
    right: 12px;

    padding: 4px 7px;

    color: #fff;

    background:
        rgba(11,37,69,.44);

    border-radius: 5px;

    font-size: 14px;

    opacity: .95;
}


/* NAME */

.tl-domestic-page .dest-tile .name,
.tl-international-page .dest-tile .name {
    position: relative;

    z-index: 3;

    color: #fff;

    font-size: 20px;

    font-weight: 700;
}


/* LINK */

.tl-domestic-page .dest-tile .link,
.tl-international-page .dest-tile .link {
    position: relative;

    z-index: 3;

    margin-top: 3px;

    color: #fff;

    font-size: 16px;

    opacity: .9;
}


/* =========================================================
   WHY STRIP
========================================================= */

.tl-domestic-page .why-strip,
.tl-international-page .why-strip {
    padding: 38px;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 26px;

    color: #fff;

    border-radius: 17px;

    background:
        radial-gradient(
            circle at right top,
            rgba(29,111,165,.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy-light)
        );

    box-shadow:
        0 18px 40px rgba(11,37,69,.13);
}


/* ITEM */

.tl-domestic-page .why-item,
.tl-international-page .why-item {
    min-width: 0;
}


/* ICON */

.tl-domestic-page .why-item .icon,
.tl-international-page .why-item .icon {
    width: 38px;
    height: 38px;

    margin-bottom: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--amber);

    background:
        rgba(255,79,24,.14);

    border-radius: 9px;

    font-size: 15px;

    font-weight: 700;
}


/* TITLE */

.tl-domestic-page .why-item h3,
.tl-international-page .why-item h3 {
    margin-bottom: 7px;

    color: #fff;

    font-size: 20px;
}


/* TEXT */

.tl-domestic-page .why-item p,
.tl-international-page .why-item p {
    margin-bottom: 0;

    color: #B9C9DA;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   AIRLINES
========================================================= */

.tl-domestic-page .airline-row,
.tl-international-page .airline-row {
    padding: 22px 0;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 22px;

    overflow-x: auto;

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);

    scrollbar-width: thin;
}

.tl-domestic-page .airline-row span,
.tl-international-page .airline-row span {
    flex: 0 0 auto;

    color: var(--slate);

    font-size: 18px;

    font-weight: 600;

    white-space: nowrap;
}


/* =========================================================
   TIPS
========================================================= */

.tl-domestic-page .tips-grid,
.tl-international-page .tips-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 19px;
}


/* CARD */

.tl-domestic-page .tip-card,
.tl-international-page .tip-card {
    min-height: 190px;

    padding: 23px;

    background: #fff;

    border:
        1px solid var(--line);

    border-radius: 13px;

    box-shadow:
        0 6px 20px rgba(11,37,69,.035);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.tl-domestic-page .tip-card:hover,
.tl-international-page .tip-card:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 14px 28px rgba(11,37,69,.08);
}


/* NUMBER */

.tl-domestic-page .tip-num,
.tl-international-page .tip-num {
    display: block;

    margin-bottom: 11px;

    color: var(--amber);

    font-family:
        'IBM Plex Mono',
        monospace;

    font-size: 16px;

    font-weight: 600;
}


/* TITLE */

.tl-domestic-page .tip-card h3,
.tl-international-page .tip-card h3 {
    margin-bottom: 8px;

    color: var(--navy);

    font-size: 20px;
}


/* TEXT */

.tl-domestic-page .tip-card p,
.tl-international-page .tip-card p {
    margin-bottom: 0;

    color: var(--slate);

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.tl-domestic-page .newsletter,
.tl-international-page .newsletter {
    padding: 32px 36px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 30px;

    background:
        linear-gradient(
            135deg,
            #edf7fd,
            #f8fbfd
        );

    border:
        1px dashed var(--blue);

    border-radius: 15px;
}


/* INTERNATIONAL NEWSLETTER */

.tl-international-page .newsletter {
    background:
        linear-gradient(
            135deg,
            #F4F8FC,
            #FFF5F1
        );
}


/* TITLE */

.tl-domestic-page .newsletter h2,
.tl-international-page .newsletter h2 {
    margin-bottom: 5px;

    color: var(--navy);

    font-size: 24px;
}


/* TEXT */

.tl-domestic-page .newsletter p,
.tl-international-page .newsletter p {
    margin-bottom: 0;

    color: var(--slate);

    font-size: 16px;
}


/* FORM */

.tl-domestic-page .newsletter form,
.tl-international-page .newsletter form {
    display: flex;

    align-items: stretch;

    gap: 8px;
}


/* INPUT */

.tl-domestic-page .newsletter input[type="email"],
.tl-international-page .newsletter input[type="email"] {
    width: 235px;

    min-height: 44px;

    padding: 10px 13px;

    color: var(--navy);

    background: #fff;

    border:
        1px solid var(--line);

    border-radius: 8px;

    box-shadow: none;

    outline: none;

    font-family: inherit;

    font-size: 12px;
}

.tl-domestic-page .newsletter input[type="email"]:focus,
.tl-international-page .newsletter input[type="email"]:focus {
    border-color:
        var(--blue);
}


/* BUTTON */

.tl-domestic-page .newsletter button,
.tl-international-page .newsletter button {
    min-height: 44px;

    padding: 10px 20px;

    border: 0 !important;

    border-radius:
        8px !important;

    color:
        #fff !important;

    background:
        var(--amber) !important;

    box-shadow:
        none !important;

    font-family:
        inherit !important;

    font-size: 12px !important;

    font-weight: 700 !important;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.tl-domestic-page .newsletter button:hover,
.tl-domestic-page .newsletter button:focus,
.tl-international-page .newsletter button:hover,
.tl-international-page .newsletter button:focus {
    color:
        #fff !important;

    background:
        var(--amber-dark) !important;

    transform:
        translateY(-1px);
}


/* =========================================================
   HELLO ELEMENTOR BUTTON RESET
========================================================= */

.tl-domestic-page .newsletter button,
.tl-international-page .newsletter button,
.tl-domestic-page .newsletter input,
.tl-international-page .newsletter input,
.tl-domestic-page .pf-btn,
.tl-international-page .pf-btn {
    font-family: inherit;
}

.tl-domestic-page button:focus,
.tl-domestic-page input:focus,
.tl-international-page button:focus,
.tl-international-page input:focus {
    outline: none;
}


/* =========================================================
   DESKTOP <= 1100
========================================================= */

@media (max-width: 1100px) {

    .tl-domestic-page .hero-inner,
    .tl-international-page .hero-inner {
        gap: 40px;
    }


    .tl-domestic-page .deal-strip,
    .tl-international-page .deal-strip {
        grid-template-columns:
            repeat(2,1fr);
    }


    .tl-domestic-page .dest-grid,
    .tl-international-page .dest-grid {
        grid-template-columns:
            repeat(3,1fr);
    }


    .tl-domestic-page .pass-card,
    .tl-international-page .pass-card {
        grid-template-columns:
            repeat(4,1fr);
    }


    .tl-domestic-page .pf-btn,
    .tl-international-page .pf-btn {
        grid-column:
            1 / -1;

        min-height: 52px;

        border-radius:
            0 0 16px 16px;
    }

}


/* =========================================================
   TABLET <= 860
========================================================= */

@media (max-width: 860px) {

    .tl-domestic-page .wrap,
    .tl-international-page .wrap {
        width:
            min(100% - 34px,1120px);
    }


    .tl-domestic-page .hero,
    .tl-international-page .hero {
        padding-bottom:
            105px;
    }


    .tl-domestic-page .hero-inner,
    .tl-international-page .hero-inner {
        grid-template-columns:
            1fr;

        gap: 30px;

        padding-top:
            55px;
    }


    .tl-domestic-page .hero h1,
    .tl-international-page .hero h1 {
        max-width: 700px;

        font-size: 40px;
    }


    .tl-domestic-page .hero p,
    .tl-international-page .hero p {
        max-width: 650px;
    }


    .tl-domestic-page .hero-visual,
    .tl-international-page .hero-visual {
        height: 250px;
    }


    .tl-domestic-page .boarding-pass,
    .tl-international-page .boarding-pass {
        width:
            min(100% - 34px,1120px);
    }


    .tl-domestic-page .pass-card,
    .tl-international-page .pass-card {
        grid-template-columns:
            1fr 1fr;
    }


    .tl-domestic-page .pf,
    .tl-international-page .pf {
        border-right: 0;

        border-bottom:
            1px dashed var(--line);
    }


    .tl-domestic-page .pf:nth-of-type(odd),
    .tl-international-page .pf:nth-of-type(odd) {
        border-right:
            1px dashed var(--line);
    }


    .tl-domestic-page .pf-btn,
    .tl-international-page .pf-btn {
        grid-column:
            1 / -1;
    }


    .tl-domestic-page > section.wrap,
    .tl-international-page > section.wrap {
        padding-top:
            45px;

        padding-bottom:
            45px;
    }


    .tl-domestic-page .why-strip,
    .tl-international-page .why-strip {
        grid-template-columns:
            repeat(2,1fr);
    }


    .tl-domestic-page .tips-grid,
    .tl-international-page .tips-grid {
        grid-template-columns:
            1fr;
    }


    .tl-domestic-page .newsletter,
    .tl-international-page .newsletter {
        flex-direction:
            column;

        align-items:
            flex-start;
    }

}


/* =========================================================
   MOBILE <= 640
========================================================= */

@media (max-width: 640px) {

    .tl-domestic-page .wrap,
    .tl-international-page .wrap,
    .tl-domestic-page .boarding-pass,
    .tl-international-page .boarding-pass {
        width:
            min(100% - 28px,1120px);
    }


    .tl-domestic-page .hero,
    .tl-international-page .hero {
        padding-bottom:
            85px;
    }


    .tl-domestic-page .hero-inner,
    .tl-international-page .hero-inner {
        padding-top:
            45px;

        padding-bottom:
            30px;
    }


    .tl-domestic-page .hero h1,
    .tl-international-page .hero h1 {
        font-size: 34px;

        line-height: 1.08;
    }


    .tl-domestic-page .hero p,
    .tl-international-page .hero p {
        font-size: 14px;
    }


    .tl-domestic-page .hero-visual,
    .tl-international-page .hero-visual {
        min-height:
            210px;

        border-radius:
            14px;
    }


    .tl-domestic-page .boarding-pass,
    .tl-international-page .boarding-pass {
        margin-top:
            -55px;
    }


    .tl-domestic-page .pass-tabs,
    .tl-international-page .pass-tabs {
        top: -34px;

        left: 10px;
    }


    .tl-domestic-page .pass-tab,
    .tl-international-page .pass-tab {
        padding:
            7px 10px;

        font-size:
            10px;
    }


    .tl-domestic-page .pass-card,
    .tl-international-page .pass-card {
        grid-template-columns:
            1fr 1fr;
    }


    .tl-domestic-page .pf,
    .tl-international-page .pf {
        padding: 17px;
    }


    .tl-domestic-page .pf-code,
    .tl-international-page .pf-code {
        font-size: 20px;
    }


    .tl-domestic-page > section.wrap,
    .tl-international-page > section.wrap {
        padding-top:
            38px;

        padding-bottom:
            38px;
    }


    .tl-domestic-page .section-head,
    .tl-international-page .section-head {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap: 10px;
    }


    .tl-domestic-page .section-head h2,
    .tl-international-page .section-head h2 {
        font-size: 25px;
    }


    .tl-domestic-page .deal-strip,
    .tl-international-page .deal-strip {
        grid-template-columns:
            1fr;
    }


    .tl-domestic-page .dest-grid,
    .tl-international-page .dest-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .tl-domestic-page .dest-tile,
    .tl-international-page .dest-tile {
        min-height:
            175px;
    }


    .tl-domestic-page .why-strip,
    .tl-international-page .why-strip {
        padding:
            26px 22px;

        grid-template-columns:
            1fr;

        gap: 25px;
    }


    .tl-domestic-page .newsletter,
    .tl-international-page .newsletter {
        padding:
            25px 20px;
    }


    .tl-domestic-page .newsletter form,
    .tl-international-page .newsletter form {
        width: 100%;
    }


    .tl-domestic-page .newsletter input[type="email"],
    .tl-international-page .newsletter input[type="email"] {
        width: 100%;

        flex: 1 1 auto;
    }

}


/* =========================================================
   SMALL MOBILE <= 480
========================================================= */

@media (max-width: 480px) {

    .tl-domestic-page .hero h1,
    .tl-international-page .hero h1 {
        font-size: 30px;
    }


    .tl-domestic-page .eyebrow,
    .tl-international-page .eyebrow {
        font-size: 9px;
    }


    .tl-domestic-page .hero-visual,
    .tl-international-page .hero-visual {
        height: 180px;
    }


    .tl-domestic-page .pass-card,
    .tl-international-page .pass-card {
        display: block;
    }


    .tl-domestic-page .pf,
    .tl-international-page .pf {
        width: 100%;

        border-right:
            0 !important;

        border-bottom:
            1px dashed var(--line);
    }


    .tl-domestic-page .pf-btn,
    .tl-international-page .pf-btn {
        width: 100%;

        min-height: 50px;

        border-radius:
            0 0 16px 16px;
    }


    .tl-domestic-page .dest-grid,
    .tl-international-page .dest-grid {
        grid-template-columns:
            1fr;
    }


    .tl-domestic-page .dest-tile,
    .tl-international-page .dest-tile {
        min-height:
            165px;
    }


    .tl-domestic-page .airline-row,
    .tl-international-page .airline-row {
        gap: 18px;
    }


    .tl-domestic-page .newsletter form,
    .tl-international-page .newsletter form {
        flex-direction:
            column;
    }


    .tl-domestic-page .newsletter input[type="email"],
    .tl-domestic-page .newsletter button,
    .tl-international-page .newsletter input[type="email"],
    .tl-international-page .newsletter button {
        width: 100%;
    }

}


/* =========================================================
   VERY SMALL <= 360
========================================================= */

@media (max-width: 360px) {

    .tl-domestic-page .hero h1,
    .tl-international-page .hero h1 {
        font-size: 27px;
    }


    .tl-domestic-page .section-head h2,
    .tl-international-page .section-head h2 {
        font-size: 22px;
    }


    .tl-domestic-page .deal-top,
    .tl-domestic-page .deal-bottom,
    .tl-international-page .deal-top,
    .tl-international-page .deal-bottom {
        padding-left: 15px;

        padding-right: 15px;
    }


    .tl-domestic-page .newsletter,
    .tl-international-page .newsletter {
        padding:
            22px 17px;
    }

}

/* =========================================================
   SERVICE PAGE - NEW SECTIONS
========================================================= */

.tl-service-page .tl-service-card-label {
    display: block;
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tl-service-page .tl-service-card-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 15px;
    margin: 0 0 24px;
}

.tl-service-page .tl-service-card-points span {
    color: var(--slate);
    font-size: 14px;
}


/* ROUTE GROUPS */

.tl-service-page .tl-service-route-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.tl-service-page .tl-service-route-group {
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(10,42,94,.04);
}

.tl-service-page .tl-service-route-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.tl-service-page .tl-service-route-type {
    display: block;
    margin-bottom: 5px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.tl-service-page .tl-service-route-head h3 {
    margin: 0;
    color: var(--navy);
    font-size: 22px;
}

.tl-service-page .tl-service-route-head > a {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.tl-service-page .tl-service-route-list {
    display: grid;
    gap: 8px;
}

.tl-service-page .tl-service-route-item {
    min-height: 48px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 45px 1fr auto;
    align-items: center;
    gap: 10px;
    color: var(--slate);
    background: var(--soft);
    border: 1px solid #e9edf2;
    border-radius: 7px;
    font-size: 14px;
    transition: transform .2s ease, border-color .2s ease;
}

.tl-service-page .tl-service-route-item:hover {
    transform: translateX(3px);
    border-color: #cdd8e2;
}

.tl-service-page .tl-service-route-code {
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}

.tl-service-page .tl-service-route-item strong {
    color: var(--orange);
}


/* COMPARISON */

.tl-service-page .tl-service-comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
}

.tl-service-page .tl-service-comparison-card {
    padding: 27px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.tl-service-page .tl-service-comparison-title {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.tl-service-page .tl-service-comparison-title > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    color: var(--orange);
    background: var(--orange-soft);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
}

.tl-service-page .tl-service-comparison-title h3 {
    margin: 0;
    color: var(--navy);
    font-size: 20px;
}

.tl-service-page .tl-service-comparison-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tl-service-page .tl-service-comparison-card li {
    position: relative;
    padding: 10px 0 10px 25px;
    color: var(--slate);
    border-bottom: 1px solid #edf0f3;
    font-size: 16px;
}

.tl-service-page .tl-service-comparison-card li:last-child {
    border-bottom: 0;
}

.tl-service-page .tl-service-comparison-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    color: #2d9d67;
    font-weight: 800;
}


/* BOTTOM CTA */

.tl-service-page .tl-service-final-section {
    padding: 0 0 70px;
}

.tl-service-page .tl-service-final-cta {
    position: relative;
    padding: 38px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    overflow: hidden;
    color: #fff;
    border-radius: 17px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255,79,24,.17),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy-light)
        );
}

.tl-service-page .tl-service-final-cta::after {
    content: "✈";
    position: absolute;
    right: 30%;
    top: 0;
    color: rgba(255,255,255,.035);
    font-size: 110px;
    transform: rotate(-20deg);
}

.tl-service-page .tl-service-final-cta > * {
    position: relative;
    z-index: 2;
}

.tl-service-page .tl-service-final-cta .tl-svc-kicker {
    color: #ff9a70;
}

.tl-service-page .tl-service-final-cta h2 {
    max-width: 590px;
    margin: 0 0 7px;
    color: #fff;
    font-size: 27px;
    line-height: 1.2;
}

.tl-service-page .tl-service-final-cta p {
    max-width: 620px;
    margin: 0;
    color: #b9cada;
    font-size: 15px;
}

.tl-service-page .tl-service-final-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 9px;
}

.tl-service-page .tl-svc-btn-light {
    color: var(--navy) !important;
    background: #fff;
}


/* RESPONSIVE */

@media (max-width: 860px) {

    .tl-service-page .tl-service-route-groups,
    .tl-service-page .tl-service-comparison {
        grid-template-columns: 1fr;
    }

    .tl-service-page .tl-service-final-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {

    .tl-service-page .tl-service-card-points {
        grid-template-columns: 1fr;
    }

    .tl-service-page .tl-service-route-group,
    .tl-service-page .tl-service-comparison-card {
        padding: 21px;
    }

    .tl-service-page .tl-service-final-section {
        padding-bottom: 45px;
    }

    .tl-service-page .tl-service-final-cta {
        padding: 28px 22px;
    }

    .tl-service-page .tl-service-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .tl-service-page .tl-service-final-actions .tl-svc-btn {
        width: 100%;
    }

    .tl-service-page .tl-service-final-cta h2 {
        font-size: 24px;
    }
}

/* =========================================================
   SERVICE PAGE - BASE
========================================================= */

.tl-service-page {
    --navy: #0A2A5E;
    --navy-dark: #06214A;
    --navy-light: #123F7A;

    --sky: #F3F7FB;

    --blue: #174A8B;
    --blue-light: #DCEAF7;

    --orange: #FF4F18;
    --orange-dark: #E8430F;
    --orange-soft: #FFF0EA;

    --amber: #FF4F18;
    --amber-dark: #E8430F;
    --amber-soft: #FFF0EA;

    --white: #FFFFFF;
    --text: #0A2A5E;
    --slate: #66758A;
    --muted: #8A97A6;
    --line: #DDE5ED;
    --soft: #F7F9FC;

    width: 100%;
    overflow: hidden;

    background: #fff;
    color: var(--text);

    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
}

.tl-service-page *,
.tl-service-page *::before,
.tl-service-page *::after {
    box-sizing: border-box;
}

.tl-service-page h1,
.tl-service-page h2,
.tl-service-page h3,
.tl-service-page p {
    margin-top: 0;
}

.tl-service-page a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.tl-service-page .tl-svc-container {
    width: min(1120px, calc(100% - 40px));
    max-width: 1120px;

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.tl-service-page .tl-svc-section {
    padding: 60px 0;
}

.tl-service-page .tl-svc-soft {
    background: var(--soft);
}


/* =========================================================
   COMMON HEADING
========================================================= */

.tl-service-page .tl-svc-heading {
    max-width: 780px;
    margin-bottom: 30px;
}

.tl-service-page .tl-svc-kicker {
    display: block;

    margin-bottom: 8px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .11em;
    text-transform: uppercase;
}

.tl-service-page .tl-svc-heading h2 {
    margin: 0 0 10px;

    color: var(--navy);

    font-size: clamp(27px, 3vw, 36px);
    line-height: 1.17;

    letter-spacing: -.035em;
}

.tl-service-page .tl-svc-heading p {
    max-width: 750px;

    margin: 0;

    color: var(--slate);

    font-size: 16px;
    line-height: 1.8;
}


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

.tl-service-page .tl-svc-hero {
    position: relative;

    padding: 70px 0;

    overflow: hidden;

    border-bottom: 1px solid #e9eef3;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(255, 79, 24, .13),
            transparent 32%
        ),
        radial-gradient(
            circle at 65% 80%,
            rgba(23, 74, 139, .06),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            #ffffff 0%,
            #ffffff 52%,
            #fff6f2 100%
        );
}

.tl-service-page .tl-svc-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(10, 42, 94, .018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(10, 42, 94, .018) 1px,
            transparent 1px
        );

    background-size: 55px 55px;
}

.tl-service-page .tl-svc-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.06fr .94fr;

    align-items: center;

    gap: 65px;
}

.tl-service-page .tl-svc-hero-copy h1 {
    max-width: 650px;

    margin: 0;

    color: var(--navy);

    font-size: clamp(20px, 3vw, 42px);
    font-weight: 700;

    line-height: 1.05;
    letter-spacing: -.045em;
}

.tl-service-page .tl-svc-hero-copy h1 span {
    display: block;
}

.tl-service-page .tl-svc-hero-copy > p {
    max-width: 620px;

    margin: 18px 0 0;

    color: var(--slate);

    font-size: 16px;
    line-height: 1.8;
}


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

.tl-service-page .tl-svc-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 26px;
}

.tl-service-page .tl-svc-btn {
    min-height: 46px;

    padding: 0 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 8px;

    font-family: inherit;

    font-size: 16px;
    font-weight: 600;

    line-height: 1;

    text-decoration: none !important;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.tl-service-page .tl-svc-btn:hover {
    transform: translateY(-2px);
}

.tl-service-page .tl-svc-btn-primary {
    color: #fff !important;

    background: var(--orange) !important;

    box-shadow:
        0 10px 24px rgba(255, 79, 24, .22);
}

.tl-service-page .tl-svc-btn-primary:hover {
    color: #fff !important;

    background: var(--orange-dark) !important;
}

.tl-service-page .tl-svc-btn-outline {
    color: var(--navy) !important;

    background: #fff !important;

    border: 1px solid var(--line) !important;

    box-shadow: none !important;
}

.tl-service-page .tl-svc-btn-outline:hover {
    color: var(--navy) !important;

    background: var(--soft) !important;
}


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

.tl-service-page .tl-service-visual {
    position: relative;

    padding: 26px;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--line);
    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(10, 42, 94, .11);
}

.tl-service-page .tl-service-visual::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background:
        rgba(255, 79, 24, .05);
}

.tl-service-page .tl-service-visual-head {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 14px;

    margin-bottom: 20px;

    color: var(--navy);

    font-size: 18px;
    font-weight: 700;
}

.tl-service-page .tl-service-plane {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: grid;
    place-items: center;

    color: #fff;

    background: var(--orange);

    border-radius: 50%;

    box-shadow:
        0 8px 18px rgba(255,79,24,.22);
}

.tl-service-page .tl-service-plane svg {
    width: 21px;
    height: 21px;

    fill: #fff;
}

.tl-service-page .tl-service-mini-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;
}

.tl-service-page .tl-service-mini-card {
    min-width: 0;
    min-height: 108px;

    padding: 14px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: var(--soft);

    border: 1px solid #e8edf2;
    border-radius: 9px;
}

.tl-service-page .tl-service-mini-card small {
    display: block;

    margin-bottom: 5px;

    color: var(--muted);

    font-size: 14px;
}

.tl-service-page .tl-service-mini-card strong {
    color: var(--navy);

    font-size: 14px;
    line-height: 1.4;
}


/* =========================================================
   DOMESTIC + INTERNATIONAL CHOICE CARDS
========================================================= */

.tl-service-page .tl-service-choice-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.tl-service-page .tl-service-choice-card {
    position: relative;

    min-height: 330px;

    padding: 28px;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--line);
    border-radius: 15px;

    box-shadow:
        0 10px 28px rgba(10, 42, 94, .05);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.tl-service-page .tl-service-choice-card::after {
    content: "✈";

    position: absolute;

    right: 20px;
    top: 15px;

    color: rgba(10,42,94,.035);

    font-size: 82px;

    transform: rotate(-20deg);
}

.tl-service-page .tl-service-choice-card:hover {
    transform: translateY(-4px);

    border-color: #cbd7e2;

    box-shadow:
        0 18px 38px rgba(10,42,94,.09);
}

.tl-service-page .tl-service-choice-card > * {
    position: relative;
    z-index: 2;
}

.tl-service-page .tl-service-badge {
    width: 39px;
    height: 39px;

    margin-bottom: 14px;

    display: grid;
    place-items: center;

    color: var(--orange);

    background: var(--orange-soft);

    border-radius: 8px;

    font-size: 12px;
    font-weight: 600;
}

.tl-service-page .tl-service-choice-card h3 {
    margin: 0 0 10px;

    color: var(--navy);

    font-size: 24px;
    line-height: 1.3;
}

.tl-service-page .tl-service-choice-card > p {
    margin: 0 0 20px;
    color: var(--slate);
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.tl-service-page .tl-service-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 17px;
}

.tl-service-page .tl-service-feature-card {
    min-height: 185px;

    padding: 22px;

    background: #fff;

    border: 1px solid var(--line);
    border-radius: 12px;

    box-shadow:
        0 7px 22px rgba(10,42,94,.035);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.tl-service-page .tl-service-feature-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(10,42,94,.07);
}

.tl-service-page .tl-service-feature-icon {
    width: 38px;
    height: 38px;

    margin-bottom: 15px;

    display: grid;
    place-items: center;

    color: var(--orange);

    background: var(--orange-soft);

    border-radius: 8px;

    font-size: 14px;
    font-weight: 800;
}

.tl-service-page .tl-service-feature-card h3 {
    margin: 0 0 7px;
   font-weight:700;
    color: var(--navy);
    font-size: 20px;
}

.tl-service-page .tl-service-feature-card p {
    margin: 0;
    color: var(--slate);
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   GUIDE / VALUE GRID
========================================================= */

.tl-service-page .tl-guide-layout {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 55px;

    align-items: start;
}


/* =========================================================
   CHECKLIST
========================================================= */

.tl-service-page .tl-service-check-list {
    display: grid;

    gap: 10px;
}

.tl-service-page .tl-service-check {
    min-height: 48px;

    padding: 11px 15px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: #53657a;

    background: #fff;

    border: 1px solid var(--line);
    border-radius: 8px;

    font-size: 16px;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.tl-service-page .tl-service-check:hover {
    transform: translateX(3px);

    border-color: #ccd7e1;

    box-shadow:
        0 5px 15px rgba(10,42,94,.04);
}

.tl-service-page .tl-service-check > span {
    width: 21px;
    height: 21px;

    flex: 0 0 21px;

    display: grid;
    place-items: center;

    color: #2d9d67;

    background: #e8f7ef;

    border-radius: 50%;

    font-size: 9px;
    font-weight: 900;
}


/* =========================================================
   HELLO ELEMENTOR RESET
========================================================= */

.tl-service-page .tl-svc-btn,
.tl-service-page .tl-svc-btn:hover,
.tl-service-page .tl-svc-btn:focus {
    text-decoration: none !important;
}

.tl-service-page button,
.tl-service-page input {
    font-family: inherit;
}


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

@media (max-width: 1024px) {

    .tl-service-page .tl-svc-hero-grid {
        gap: 40px;
    }
}


@media (max-width: 860px) {

    .tl-service-page .tl-svc-container {
        width: min(100% - 34px, 1120px);
    }

    .tl-service-page .tl-svc-hero {
        padding: 55px 0;
    }

    .tl-service-page .tl-svc-hero-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .tl-service-page .tl-svc-hero-copy h1 {
        font-size: 40px;
    }

    .tl-service-page .tl-service-visual {
        max-width: 650px;
    }

    .tl-service-page .tl-service-choice-grid {
        grid-template-columns: 1fr;
    }

    .tl-service-page .tl-service-feature-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .tl-service-page .tl-guide-layout {
        grid-template-columns: 1fr;

        gap: 20px;
    }
}


@media (max-width: 640px) {

    .tl-service-page .tl-svc-container {
        width: min(100% - 28px, 1120px);
    }

    .tl-service-page .tl-svc-section {
        padding: 42px 0;
    }

    .tl-service-page .tl-svc-hero {
        padding: 45px 0;
    }

    .tl-service-page .tl-svc-hero-copy h1 {
        font-size: 33px;
        line-height: 1.08;
    }

    .tl-service-page .tl-svc-hero-copy > p {
        font-size: 14px;
    }

    .tl-service-page .tl-svc-actions {
        flex-direction: column;
    }

    .tl-service-page .tl-svc-actions .tl-svc-btn {
        width: 100%;
    }

    .tl-service-page .tl-service-mini-grid {
        grid-template-columns: 1fr;
    }

    .tl-service-page .tl-service-choice-card {
        min-height: 0;

        padding: 23px;
    }

    .tl-service-page .tl-service-feature-grid {
        grid-template-columns: 1fr;
    }

    .tl-service-page .tl-svc-heading h2 {
        font-size: 27px;
    }
}