/* =========================================================
   TRAVELLOLO HOME - FINAL
========================================================= */

.tl-home {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.tl-home *,
.tl-home *::before,
.tl-home *::after,
.tl-modal *,
.tl-modal *::before,
.tl-modal *::after {
    box-sizing: border-box;
}


/* CRITICAL SVG RESET */
.tl-home svg,
.tl-modal svg {
    display: block;
    width: 20px;
    height: 20px;
    max-width: 100%;
    max-height: 100%;
    flex-shrink: 0;
}


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

.tl-home-hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
}

.tl-home-hero__media,
.tl-home-hero__overlay {
    position: absolute;
    inset: 0;
}

.tl-home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tl-home-hero__overlay {
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .98) 0%,
            rgba(255, 255, 255, .92) 30%,
            rgba(255, 255, 255, .53) 50%,
            rgba(255, 255, 255, .05) 75%);
}

.tl-home-hero__container {
    position: relative;
    z-index: 2;
    min-height: 520px;
}

.tl-home-hero__content {
    max-width: 610px;
    padding-top: 68px;
}

.tl-home-hero__content h1 {
    margin: 0;
    color: #071d49;
    font-size: clamp(20px, 3vw, 44px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -2px;
}

.tl-home-hero__content p {
    max-width: 560px;
    margin: 19px 0 0;
    color: #344760;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   FLIGHT SEARCH
========================================================= */

.tl-flight-box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -44px;
}

.tl-trip-tabs {
    display: inline-flex;
}

.tl-home .tl-trip-tab {
    min-width: 125px;
    height: 49px;
    margin: 0 !important;
    padding: 0 20px !important;

    border: 1px solid #dce3eb !important;
    border-bottom: 0 !important;

    border-radius: 0 !important;

    background: rgba(255, 255, 255, .95) !important;
    color: #0b2654 !important;

    box-shadow: none !important;

    font-size: 16px !important;
    font-weight: 700 !important;

    cursor: pointer;
}

.tl-home .tl-trip-tab:first-child {
    border-radius: 8px 0 0 0 !important;
}

.tl-home .tl-trip-tab:last-child {
    border-radius: 0 8px 0 0 !important;
}

.tl-home .tl-trip-tab.is-active {
    background: #082f78 !important;
    border-color: #082f78 !important;
    color: #fff !important;
}


.tl-flight-form {
    min-height: 108px;
    padding: 15px 17px;

    display: grid;
    grid-template-columns:
        minmax(175px, 1.2fr) 40px minmax(175px, 1.2fr) minmax(140px, .9fr) minmax(140px, .9fr) minmax(185px, 1.15fr) 145px;

    align-items: center;

    border: 1px solid #dce3eb;
    border-radius: 0 10px 10px 10px;

    background: #fff;

    box-shadow:
        0 12px 30px rgba(16, 40, 74, .14);
}


/* =========================================================
   FIELD RESET
========================================================= */

.tl-home .tl-flight-field,
.tl-home button.tl-flight-field {
    position: relative;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 72px !important;

    margin: 0 !important;
    padding: 9px 14px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;

    border: 0 !important;
    border-right: 1px solid #e4e9ef !important;
    border-radius: 0 !important;

    background: transparent !important;
    color: #10264c !important;

    box-shadow: none !important;

    text-align: left !important;

    cursor: pointer;
}

.tl-home .tl-flight-field:hover {
    background: #f8faff !important;
}

.tl-home .tl-flight-field:focus {
    outline: none !important;
    box-shadow: none !important;
}

.tl-flight-field__label {
    margin-bottom: 5px;
    color: #8792a3;
    font-size: 9px;
}

.tl-flight-field__body {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 9px;
}

.tl-flight-field__body>svg {
    width: 18px !important;
    height: 18px !important;

    color: #113a7d;
}

.tl-flight-field__copy {
    min-width: 0;
}

.tl-flight-field__copy strong {
    display: block;

    overflow: hidden;

    color: #0b2149;

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

    white-space: nowrap;
    text-overflow: ellipsis;
}

.tl-flight-field__copy small {
    display: block;

    margin-top: 2px;

    overflow: hidden;

    color: #929cab;

    font-size: 14px;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* DATE */

.tl-date-field {
    cursor: pointer;
}

.tl-date-field input {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    cursor: pointer;
}


/* SWAP */

.tl-home .tl-swap {
    width: 34px !important;
    height: 34px !important;

    margin: auto !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid #d7dfe9 !important;
    border-radius: 50% !important;

    background: #f7f9fc !important;
    color: #123d7d !important;

    box-shadow: none !important;

    cursor: pointer;
}

.tl-home .tl-swap svg {
    width: 17px !important;
    height: 17px !important;
}


/* SEARCH BUTTON */

.tl-search-button-wrap {
    padding-left: 13px;
}

.tl-home .tl-search-button {
    width: 100% !important;
    min-height: 50px !important;

    margin: 0 !important;
    padding: 0 15px !important;

    border: 0 !important;
    border-radius: 6px !important;

    background: #f4511e !important;
    color: #fff !important;

    box-shadow:
        0 6px 16px rgba(244, 81, 30, .23) !important;

    font-size: 16px !important;
    font-weight: 700 !important;

    cursor: pointer;
}

.tl-home .tl-search-button:hover {
    background: #df4214 !important;
}


/* MULTI CITY */

.tl-multi-city {
    margin-top: 9px;
    padding: 12px 14px;

    display: grid;
    grid-template-columns:
        80px 1fr 1fr 1fr;

    gap: 9px;
    align-items: center;

    border: 1px solid #e1e6ed;
    border-radius: 8px;

    background: #fff;

    box-shadow:
        0 10px 25px rgba(18, 41, 72, .09);
}

.tl-multi-city[hidden] {
    display: none;
}

.tl-multi-city>strong {
    color: #123a7a;
    font-size: 16px;
}

.tl-home .tl-multi-location,
.tl-multi-date {
    position: relative;
    min-height: 55px;

    padding: 8px 11px !important;

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

    border: 1px solid #dfe5ec !important;
    border-radius: 6px !important;

    background: #fff !important;
    color: #10264b !important;

    box-shadow: none !important;

    text-align: left !important;
}

.tl-multi-location small,
.tl-multi-date small {
    color: #8792a3;
    font-size: 14px;
}

.tl-multi-location span,
.tl-multi-date span {
    margin-top: 3px;

    color: #10264b;

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

.tl-multi-date input {
    position: absolute;
    inset: 0;

    opacity: 0;
}


/* =========================================================
   SHORTCUTS
========================================================= */

.tl-flight-shortcuts {
    border-bottom: 1px solid #e3e8ee;
}

.tl-flight-shortcuts__grid {
    min-height: 72px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.tl-flight-shortcuts a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: #0b285a;

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

.tl-flight-shortcuts a svg {
    width: 20px !important;
    height: 20px !important;

    color: #113d86;
}

.tl-flight-shortcuts a.is-orange svg {
    color: #f4511e;
}


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

.tl-home-section {
    padding: 34px 0;
}

.tl-home-section--small {
    padding-top: 16px;
}

.tl-section-title {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
   flex-wrap: wrap;
}

.tl-section-title h2 {
    margin: 0;
    color: #081e48;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.tl-section-title a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #0e3d87;

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


/* =========================================================
   DEALS
========================================================= */

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

.tl-deal-card {
    min-width: 0;

    padding: 16px;

    border: 1px solid #dfe5ec;
    border-radius: 7px;

    background: #fff;
}

.tl-deal-route {
    display: grid;
    grid-template-columns: 1fr 24px 1fr;

    align-items: center;
    gap: 6px;
}

.tl-deal-route svg {
    width: 22px !important;
    height: 22px !important;

    color: #112c62;
}

.tl-deal-route strong {
    display: block;

    color: #101f3d;

    font-size: 16px;
}

.tl-deal-route small {
    display: block;

    margin-top: 2px;

    color: #6e7989;

    font-size: 14px;
}

.tl-airline-name {
    min-height: 45px;

    padding-top: 16px;

    color: #18305e;

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

.tl-deal-details {
    display: flex;
    justify-content: space-between;

    gap: 10px;

    color: #536076;

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

.tl-deal-price {
    margin-top: 13px;

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

.tl-deal-price strong {
    color: #ef4619;
    font-size: 28px;
}

.tl-home .tl-deal-cta {
    min-height: 34px !important;

    padding: 0 11px !important;

    border: 0 !important;
    border-radius: 4px !important;

    background: #f4511e !important;
    color: #fff !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    cursor: pointer;
}

.tl-deal-updated {
    display: block;

    margin-top: 9px;

    color: #9199a6;

    font-size: 14px;
}


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

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

.tl-destination-card {
    position: relative;

    height: 300px;

    overflow: hidden;

    border-radius: 6px;
}

.tl-destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tl-destination-card__shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(4, 18, 44, .85),
            transparent 62%);
}

.tl-destination-card__content {
    position: absolute;

    left: 8px;
    right: 8px;
    bottom: 8px;
}

.tl-destination-card h3 {
    margin: 0 0 7px;

    color: #fff;

    font-size: 20px;
}

.tl-home .tl-destination-card button {
    width: 100% !important;
    min-height: 27px !important;

    margin: 0 !important;
    padding: 0 5px !important;

    border: 0 !important;
    border-radius: 3px !important;

    background: #fff !important;
    color: #102c63 !important;

    box-shadow: none !important;

    font-size: 14px !important;
    font-weight: 700 !important;
}


/* =========================================================
   FEATURE DEALS
========================================================= */

.tl-feature-deals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tl-feature-deal {
    min-height: 260px;

    padding: 28px 26px;

    overflow: hidden;

    border-radius: 8px;

    background-size: cover;
    background-position: center;
}

.tl-feature-deal--domestic {
    background:
        linear-gradient(90deg,
            rgba(234, 242, 255, .99) 0%,
            rgba(234, 242, 255, .93) 55%,
            rgba(234, 242, 255, .25) 100%),
        url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1000&q=80');
}

.tl-feature-deal--international {
    background:
        linear-gradient(90deg,
            rgba(255, 247, 240, .99) 0%,
            rgba(255, 247, 240, .93) 55%,
            rgba(255, 247, 240, .20) 100%),
        url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=1000&q=80');
}

.tl-feature-deal__content {
    max-width: 60%;
}

.tl-feature-deal h2 {
    margin: 0;

    color: #0d367c;

    font-size: 24px;
}

.tl-feature-deal--international h2 {
    color: #f04b22;
}

.tl-feature-deal p {
    max-width: 260px;

    margin: 8px 0 16px;

    color: #243a5e;

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

.tl-city-list {
    margin-bottom: 23px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;

    color: #173567;

    font-size: 14px;
}

.tl-region-list {
    margin-bottom: 23px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;

    color: #343d51;

    font-size: 14px;
}

.tl-home .tl-feature-button {
    min-height: 39px !important;

    padding: 0 15px !important;

    border: 0 !important;
    border-radius: 4px !important;

    color: #fff !important;

    font-size: 14px !important;
    font-weight: 700 !important;
}

.tl-feature-button--blue {
    background: #0b357b !important;
}

.tl-feature-button--orange {
    background: #f4511e !important;
}


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

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

.tl-airlines-section {
    padding-top: 8px;
    padding-bottom: 35px;
}


.tl-airlines-section .tl-section-title {
    margin-bottom: 16px;
}


.tl-airlines-section .tl-section-title h2 {
    margin: 0;

    color: #081e48;

    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;

    letter-spacing: -0.4px;
}


/* GRID */

.tl-airlines-grid {
    display: grid;

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

    gap: 7px;
}


/* CARD */

.tl-airline-card {
    width: 100%;
    min-width: 0;
    height: 82px;

    padding: 12px 11px;

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

    overflow: hidden;

    border: 1px solid #e0e5eb;
    border-radius: 6px;

    background: #ffffff;

    box-shadow:
        0 2px 7px rgba(17, 38, 70, 0.025);

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


.tl-airline-card:hover {
    transform: translateY(-2px);

    border-color: #cfd8e4;

    box-shadow:
        0 8px 20px rgba(18, 41, 75, 0.07);
}


/* LOGO */

.tl-airline-card img {
    display: block;

    width: auto !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: 43px !important;

    object-fit: contain;

    filter: none !important;

    transform: none !important;
}


/* Individual logo control for better visual matching */

.tl-airline-card:nth-child(1) img {
    max-width: 92px !important;
}

.tl-airline-card:nth-child(2) img {
    max-width: 95px !important;
    max-height: 48px !important;
}

.tl-airline-card:nth-child(3) img {
    max-width: 84px !important;
}

.tl-airline-card:nth-child(4) img {
    max-width: 92px !important;
}

.tl-airline-card:nth-child(5) img {
    max-width: 91px !important;
}

.tl-airline-card:nth-child(6) img {
    max-width: 74px !important;
}

.tl-airline-card:nth-child(7) img {
    max-width: 78px !important;
    max-height: 52px !important;
}

.tl-airline-card:nth-child(8) img {
    max-width: 92px !important;
    max-height: 47px !important;
}

.tl-airline-card:nth-child(9) img {
    max-width: 92px !important;
}


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

@media (max-width: 1100px) {

    .tl-airlines-grid {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
    }

}


@media (max-width: 767px) {

    .tl-airlines-section .tl-section-title h2 {
        font-size: 19px;
    }

    .tl-airlines-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 8px;
    }

    .tl-airline-card {
        height: 76px;

        padding: 10px;
    }

    .tl-airline-card img {
        max-height: 38px !important;
    }

}


@media (max-width: 480px) {

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

    .tl-airline-card {
        height: 72px;
    }

}


/* =========================================================
   BENEFITS
========================================================= */

.tl-benefits {
    padding: 25px 0 32px;
}

.tl-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border: 1px solid #e8edf2;

    background: #fafcff;
}

.tl-benefit {
    min-height: 120px;

    padding: 22px;

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

    gap: 15px;

    border-right: 1px solid #e5eaf0;
}

.tl-benefit:last-child {
    border-right: 0;
}

.tl-benefit>svg {
    width: 38px !important;
    height: 38px !important;

    color: #10377d;
}

.tl-benefit strong {
    color: #102a5c;
    font-size: 26px;
}

.tl-benefit p {
    margin: 5px 0 0;

    color: #58667b;

    font-size: 18px;
    line-height: 1.55;
}


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

.tl-newsletter {
    padding: 50px 0;

    background:
        linear-gradient(90deg,
            #0b3b89,
            #07265f);
}

.tl-newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.tl-newsletter h2 {
    margin: 0;

    color: #fff;

    font-size: 32px;
}

.tl-newsletter p {
    margin: 6px 0 0;

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

    font-size: 18px;
}

.tl-newsletter__form {
    width: min(100%, 500px);

    display: grid;
    grid-template-columns: 1fr 125px;
    gap: 10px;
}

.tl-newsletter__form input {
    height: 44px;

    padding: 0 15px;

    border: 0;
    border-radius: 5px;

    outline: none;

    font-size: 16px;
}

.tl-newsletter__form button {
    border: 0 !important;
    border-radius: 5px !important;

    background: #f4511e !important;
    color: #fff !important;

    font-size: 16px !important;
    font-weight: 700 !important;
}


/* =========================================================
   MODALS
========================================================= */

body.tl-modal-open {
    overflow: hidden;
}

.tl-modal {
    position: fixed;
    inset: 0;

    z-index: 999999;

    display: none;

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

    padding: 20px;
}

.tl-modal.is-open {
    display: flex;
}

.tl-modal__backdrop {
    position: absolute;
    inset: 0;

    background: rgba(4, 18, 43, .62);

    backdrop-filter: blur(3px);
}

.tl-modal__dialog {
    position: relative;
    z-index: 2;

    width: min(100%, 540px);
    max-height: calc(100vh - 40px);

    overflow-y: auto;

    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 30px 80px rgba(0, 20, 55, .3);
}

.tl-modal__dialog--small {
    width: min(100%, 430px);
}

.tl-modal__header {
    padding: 20px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    border-bottom: 1px solid #e6ebf0;
}

.tl-modal__header small {
    display: block;

    margin-bottom: 4px;

    color: #f4511e;

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

    text-transform: uppercase;
}

.tl-modal__header h2 {
    margin: 0;

    color: #0a234d;

    font-size: 28px;
}

.tl-modal__close {
    width: 34px !important;
    height: 34px !important;

    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid #dce3ea !important;
    border-radius: 50% !important;

    background: #fff !important;
    color: #163766 !important;

    box-shadow: none !important;
}

.tl-modal__close svg {
    width: 15px !important;
    height: 15px !important;
}


/* LOCATION */

.tl-location-search {
    margin: 17px 20px 12px;
    padding: 0 12px;

    display: flex;
    align-items: center;
    gap: 9px;

    border: 1px solid #cad4e0;
    border-radius: 7px;
}

.tl-location-search svg {
    width: 17px !important;
    height: 17px !important;

    color: #52637b;
}

.tl-location-search input {
    width: 100%;
    height: 43px;

    border: 0;
    outline: 0;

    font-size: 16px;
}

.tl-location-option {
    width: calc(100% - 24px) !important;

    margin: 0 12px !important;
    padding: 11px 12px !important;

    display: grid !important;
    grid-template-columns: 1fr auto !important;

    align-items: center;

    border: 0 !important;
    border-bottom: 1px solid #edf0f3 !important;
    border-radius: 0 !important;

    background: #fff !important;
    color: #132a50 !important;

    box-shadow: none !important;

    text-align: left !important;
}

.tl-location-option:hover {
    background: #f6f9fd !important;
}

.tl-location-option strong {
    display: block;

    font-size: 16px;
}

.tl-location-option small {
    display: block;

    margin-top: 2px;

    color: #7c8797;

    font-size: 14px;
}

.tl-location-option span {
    padding: 4px 6px;

    border-radius: 4px;

    background: #edf3fa;

    color: #123b7d;

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


/* TRAVELER */

.tl-traveler-row {
    padding: 18px 20px;

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

    border-bottom: 1px solid #edf0f3;
}

.tl-traveler-row strong {
    display: block;

    color: #122a51;

    font-size: 16px;
}

.tl-traveler-row small {
    color: #8893a3;
    font-size: 14px;
}

.tl-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tl-counter button {
    width: 30px !important;
    height: 30px !important;

    padding: 0 !important;

    border: 1px solid #d5dde6 !important;
    border-radius: 50% !important;

    background: #fff !important;
    color: #123b7b !important;

    box-shadow: none !important;
}

.tl-cabin {
    padding: 18px 20px;
}

.tl-cabin label {
    display: block;

    margin-bottom: 7px;

    color: #203858;

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

.tl-cabin select {
    width: 100%;
    height: 42px;

    padding: 0 10px;

    border: 1px solid #d5dde6;
    border-radius: 6px;
}

.tl-modal-done {
    width: calc(100% - 40px) !important;
    height: 43px !important;

    margin: 0 20px 20px !important;

    border: 0 !important;
    border-radius: 6px !important;

    background: #0b367c !important;
    color: #fff !important;

    font-size: 16px !important;
    font-weight: 700 !important;
}


/* CALL MODAL */

.tl-call-dialog {
    width: min(100%, 510px);

    padding: 35px 28px 27px;

    text-align: center;
}

.tl-call-dialog__close {
    position: absolute;

    top: 14px;
    right: 14px;
}

.tl-call-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 13px;

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

    border-radius: 50%;

    background: #edf4ff;

    color: #123d80;
}

.tl-call-icon svg {
    width: 29px !important;
    height: 29px !important;
}

.tl-call-eyebrow {
    color: #f4511e;

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

    text-transform: uppercase;
}

.tl-call-dialog h2 {
    max-width: 380px;

    margin: 7px auto 0;

    color: #09224e;

    font-size: 28px;
}

.tl-call-dialog>p {
    max-width: 410px;

    margin: 10px auto 18px;

    color: #6c7889;

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

.tl-call-route {
    margin-bottom: 15px;
    padding: 14px;

    display: grid;
    grid-template-columns: 1fr 40px 1fr;

    align-items: center;

    border-radius: 8px;

    background: #f4f7fb;
}

.tl-call-route svg {
    width: 22px !important;
    height: 22px !important;

    margin: auto;

    color: #f4511e;
}

.tl-call-route strong {
    color: #102952;
    font-size: 16px;
}

.tl-call-button {
    min-height: 48px;

    padding: 0 18px;

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

    gap: 8px;

    border-radius: 6px;

    background: #f4511e;
    color: #fff;

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

.tl-call-button svg {
    width: 19px !important;
    height: 19px !important;
}

.tl-call-note {
    display: block;

    margin-top: 10px;

    color: #929aa6;

    font-size: 14px;
}


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

@media (max-width: 1150px) {

    .tl-home-hero,
    .tl-home-hero__container {
        min-height: 625px;
    }

    .tl-flight-form {
        grid-template-columns:
            1fr 40px 1fr 1fr 1fr;
    }

    #tlTravelerButton {
        grid-column: 1 / 4;

        margin-top: 8px !important;
    }

    .tl-search-button-wrap {
        grid-column: 4 / 6;

        padding-top: 8px;
    }

    .tl-deals-grid {
        overflow-x: auto;

        grid-template-columns:
            repeat(5, 355px);
    }

    .tl-destinations-grid {
        overflow-x: auto;

        grid-template-columns:
            repeat(8, 175px);
    }

    .tl-airlines-grid {
        grid-template-columns: repeat(5, 1fr);
    }

}


@media (max-width: 850px) {

    .tl-home-hero,
    .tl-home-hero__container {
        min-height: 800px;
    }

    .tl-home-hero__overlay {
        background: rgba(255, 255, 255, .78);
    }

    .tl-flight-form {
        grid-template-columns: repeat(2, 1fr);

        padding: 10px;
    }

    .tl-swap {
        display: none !important;
    }

    .tl-home .tl-flight-field {
        border-right: 0 !important;
        border-bottom: 1px solid #e4e9ef !important;
    }

    #tlTravelerButton {
        grid-column: auto;
        margin-top: 0 !important;
    }

    .tl-search-button-wrap {
        grid-column: auto;
        padding: 8px 0 0;
    }

    .tl-flight-shortcuts__grid {
        grid-template-columns: repeat(3, 1fr);

        gap: 12px;

        padding: 15px 0;
    }

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

    .tl-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-benefit:nth-child(2) {
        border-right: 0;
    }

    .tl-newsletter__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .tl-newsletter h2 {
        font-size: 26px;
    }

    .tl-newsletter p {

        font-size: 16px;
    }
}


@media (max-width: 600px) {

    .tl-home-hero,
    .tl-home-hero__container {
        min-height: 950px;
    }

    .tl-home-hero__content {
        padding-top: 38px;
    }

    .tl-home-hero__content h1 {
        font-size: 28px;
    }

    .tl-flight-box {
        bottom: 22px;
    }

    .tl-trip-tabs {
        width: 100%;
    }

    .tl-home .tl-trip-tab {
        flex: 1;

        min-width: 0;

        padding: 0 7px !important;

        font-size: 10px !important;
    }

    .tl-flight-form {
        grid-template-columns: 1fr;
    }

    .tl-home .tl-flight-field {
        min-height: 68px !important;
    }

    .tl-flight-shortcuts__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-section-title h2 {
        font-size: 19px;
    }

    .tl-section-title a {
        font-size: 12px;
    }

    .tl-feature-deal__content {
        max-width: 80%;
    }

    .tl-airlines-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-benefit {
        justify-content: flex-start;

        border-right: 0;
        border-bottom: 1px solid #e5eaf0;
    }

    .tl-newsletter__form {
        grid-template-columns: 1fr;
    }

    .tl-multi-city {
        grid-template-columns: 1fr;
    }

    .tl-newsletter h2 {
        font-size: 22px;
    }

    .tl-newsletter p {

        font-size: 16px;
    }

    .tl-benefit strong {
        font-size: 20px;
    }

    .tl-benefit p {
       
        font-size: 14px;
    }
    .tl-flight-shortcuts a{
        font-size: 12px;
    }
}

/* =========================================================
   DOMESTIC + INTERNATIONAL DEAL CARDS
========================================================= */

.tl-flight-promo-section {
    padding-top: 10px;
    padding-bottom: 34px;
}

.tl-flight-promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}


/* CARD */

.tl-flight-promo-card {
    position: relative;

    min-height: 350px;

    overflow: hidden;

    border: 1px solid #e2e7ed;
    border-radius: 9px;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    box-shadow:
        0 3px 10px rgba(15, 37, 70, 0.04);
}


/* DOMESTIC BACKGROUND */

.tl-flight-promo-card--domestic {
    background-image:
        linear-gradient(90deg,
            rgba(236, 245, 255, 0.99) 0%,
            rgba(230, 242, 255, 0.98) 44%,
            rgba(220, 238, 255, 0.68) 66%,
            rgba(220, 238, 255, 0.04) 100%),
        url("https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?auto=format&fit=crop&w=1100&q=85");

    background-position:
        center,
        right center;
}


/* INTERNATIONAL BACKGROUND */

.tl-flight-promo-card--international {
    background-image:
        linear-gradient(90deg,
            rgba(255, 248, 241, 0.99) 0%,
            rgba(255, 243, 233, 0.98) 45%,
            rgba(255, 237, 220, 0.70) 67%,
            rgba(255, 237, 220, 0.03) 100%),
        url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=1100&q=85");

    background-position:
        center,
        right center;
}


/* CONTENT */

.tl-flight-promo-content {
    position: relative;
    z-index: 2;
    padding: 29px 26px 25px;
}


/* HEADING */

.tl-flight-promo-content h2 {
    margin: 0;
    color: #0b3478;
    font-size: 28px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.tl-flight-promo-card--international .tl-flight-promo-content h2 {
    color: #ef4a22;
}

/* DESCRIPTION */

.tl-flight-promo-content>p {
    margin: 9px 0 19px;
    color: #273a5d;
    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   ICON GRID
========================================================= */

.tl-flight-icon-grid {
    max-width: 315px;
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 15px;
    row-gap: 15px;
}

.tl-flight-icon-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #122f66;
}

.tl-flight-icon-item svg {
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 22px;
    color: #18386e;
}

.tl-flight-icon-item span {
    overflow: hidden;
    color: #172c52;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* International icons slightly bigger like reference */

.tl-flight-icon-grid--international {
    max-width: 355px;

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

    column-gap: 8px;

    margin-top: 7px;
}

.tl-flight-icon-grid--international .tl-flight-icon-item {
    flex-direction: column;
    justify-content: flex-start;

    gap: 5px;

    text-align: center;
}

.tl-flight-icon-grid--international .tl-flight-icon-item svg {
    width: 25px !important;
    height: 25px !important;

    flex-basis: 25px;
}

.tl-flight-icon-grid--international .tl-flight-icon-item span {
    width: 100%;

    font-size: 14px;

    text-align: center;
}


/* =========================================================
   BUTTON
========================================================= */

.tl-home .tl-flight-promo-btn,
.tl-flight-promo-btn {
    min-height: 42px !important;

    margin: 0 !important;
    padding: 0 19px !important;

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

    border: 0 !important;
    border-radius: 5px !important;

    color: #ffffff !important;

    box-shadow: none !important;

    font-family: inherit !important;
    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 700 !important;

    cursor: pointer;

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


.tl-flight-promo-btn--blue {
    background: #07377f !important;
}


.tl-flight-promo-btn--blue:hover {
    background: #062b65 !important;
}


.tl-flight-promo-btn--orange {
    background: #f4511e !important;
}


.tl-flight-promo-btn--orange:hover {
    background: #df4214 !important;
}


.tl-flight-promo-btn:hover {
    transform: translateY(-1px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .tl-flight-promo-card {
        min-height: 300px;
    }

    .tl-flight-promo-content {
        padding:
            31px 28px 27px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .tl-flight-promo-grid {
        grid-template-columns: 1fr;
    }

    .tl-flight-promo-card {
        min-height: 285px;
    }

    .tl-flight-promo-content {
        width: 60%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .tl-flight-promo-card {
        min-height: 380px;

        background-position:
            center,
            right bottom;
    }


    .tl-flight-promo-card--domestic {
        background-image:
            linear-gradient(180deg,
                rgba(236, 245, 255, .99) 0%,
                rgba(236, 245, 255, .96) 58%,
                rgba(236, 245, 255, .55) 76%,
                rgba(236, 245, 255, .15) 100%),
            url("https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?auto=format&fit=crop&w=800&q=85");
    }


    .tl-flight-promo-card--international {
        background-image:
            linear-gradient(180deg,
                rgba(255, 248, 241, .99) 0%,
                rgba(255, 245, 236, .96) 58%,
                rgba(255, 240, 225, .55) 76%,
                rgba(255, 240, 225, .15) 100%),
            url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=800&q=85");
    }


    .tl-flight-promo-content {
        width: 100%;

        padding: 24px 20px;
    }


    .tl-flight-promo-content h2 {
        font-size: 20px;
    }


    .tl-flight-icon-grid {
        max-width: 100%;

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


    .tl-flight-icon-grid--international {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}

/* =========================================
   POPULAR AIRLINES SECTION
========================================= */

.tl-airlines-section {
    padding: 70px 0;
    background: #f7f9fc;
}

/* Container */
.tl-airlines-section .tl-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================
   SECTION TITLE
========================================= */

.tl-airlines-section .tl-section-title {
    margin-bottom: 32px;
    text-align: center;
}

.tl-airlines-section .tl-section-title h2 {
    margin: 0;
    color: #10233f;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

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

/* =========================================
   AIRLINE CARD
========================================= */

.tl-destination-airline-card {
    min-height: 110px;
    padding: 24px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;

    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 14px;

    box-shadow: 0 5px 20px rgba(15, 35, 65, 0.06);

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

/* Hover */
.tl-destination-airline-card:hover {
    transform: translateY(-5px);
    border-color: #cbd6e3;
    box-shadow: 0 14px 32px rgba(15, 35, 65, 0.12);
}

/* =========================================
   AIRLINE LOGO / IMAGE
========================================= */

.tl-destination-airline-card img {
    display: block;

    width: 100%;
    max-width: 150px;
    height: 60px;

    object-fit: contain;
    object-position: center;

    transition: transform 0.25s ease;
}

.tl-destination-airline-card:hover img {
    transform: scale(1.05);
}

/* =========================================
   AIRLINE NAME
========================================= */

.tl-destination-airline-card span {
    display: block;
    margin: 0;

    color: #172b46;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .tl-airlines-section {
        padding: 55px 0;
    }

    .tl-airlines-section .tl-section-title h2 {
        font-size: 30px;
    }

    .tl-airlines-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .tl-airlines-section {
        padding: 45px 0;
    }

    .tl-airlines-section .tl-container {
        width: min(100% - 30px, 1180px);
    }

    .tl-airlines-section .tl-section-title {
        margin-bottom: 24px;
    }

    .tl-airlines-section .tl-section-title h2 {
        font-size: 22px;
        line-height: 1.25;
    }

    .tl-airlines-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .tl-destination-airline-card {
        min-height: 130px;
        padding: 18px 12px;
        gap: 12px;
        border-radius: 12px;
    }

    .tl-destination-airline-card img {
        max-width: 115px;
        height: 48px;
    }

    .tl-destination-airline-card span {
        font-size: 14px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 360px) {

    .tl-airlines-grid {
        grid-template-columns: 1fr;
    }

    .tl-destination-airline-card {
        min-height: 125px;
    }

}