/*<%-- hero image --% >*/

/* ==========================================
       HERO
    ========================================== */
.gtHero {
    position: relative;
    width: 100%;
    min-height: 480px;
    overflow: hidden;
}


/* ==========================================
       IMAGE SLIDER
    ========================================== */

.gtHero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}


/* Current image */
.gtHero-image-current {
    transform: translateX(0);
}


/* Incoming image */
.gtHero-image-next {
    transform: translateX(100%);
}


/* ==========================================
       NEXT SLIDE
    ========================================== */

.gtHero.slide-next .gtHero-image-current {
    transform: translateX(-100%);
    transition: transform 0.6s ease-in-out;
}

.gtHero.slide-next .gtHero-image-next {
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}


/* ==========================================
       PREVIOUS SLIDE
    ========================================== */

.gtHero.slide-prev .gtHero-image-current {
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out;
}

.gtHero.slide-prev .gtHero-image-next {
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}


/* ==========================================
       WHITE GRADIENT
    ========================================== */

.gtHero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(255,255,255,1) 0%, rgba(255,255,255,.95) 20%, rgba(255,255,255,.65) 40%, rgba(255,255,255,0) 70% );
    z-index: 5;
    pointer-events: none;
}


/* ==========================================
       CONTENT
    ========================================== */

.gtHero-track {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 480px;
}


/* ==========================================
       SLIDES
    ========================================== */

.gtHero-slide {
    position: relative;
    display: none;
    width: 100%;
    min-height: 480px;
    overflow: hidden;
}

    .gtHero-slide.gtHero-active {
        display: flex;
    }


/* ==========================================
       BADGE
    ========================================== */

.gtHero-offer-badge {
    position: absolute;
    top: 4.7rem;
    right: 4rem;
    width: 130px;
    height: auto;
    z-index: 100;
    display: none;
}


/* ==========================================
       TEXT
    ========================================== */

.gtHero-text {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
    flex: 1;
}


    .gtHero-text h1 {
        margin: 0;
        font-size: 64px;
        color: #111;
        text-shadow: 8px 8px 8px #ccc;
        font-weight: 600;
        white-space: nowrap;
    }


        .gtHero-text h1 span {
            color: rgb(204, 0, 0);
            font-weight: 600;
            text-shadow: 8px 8px 8px #ccc;
        }


/* ==========================================
       RATING
    ========================================== */

.gtHero-rating {
    margin-top: 32px;
    font-size: 16px;
    color: #222;
}

    .gtHero-rating span {
        color: #ff9d2e;
        font-size: 21px;
        letter-spacing: 1px;
    }

    .gtHero-rating strong {
        margin-left: 8px;
        font-weight: 500;
    }

.gtHero-subtext {
    margin: 3px 0 0;
    font-size: 14px;
    color: #555;
}

.gtHero-stars {
    font-size: 20px;
    color: #f5a623;
    letter-spacing: 1px;
}

.half-star {
    background: linear-gradient( 90deg, #f5a623 50%, #ddd 50% );
    background-clip: text;
    -webkit-background-clip: text;
}

/* ==========================================
       offer text
    ========================================== */
.gtHero-off {
    margin-top: 32px !important;
}

.gtHero-off-p {
    color: #111;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 0;
}


/* ==========================================
       BUTTON
    ========================================== */

.gtHero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 35px;
    padding: 12px 24px;
    border-radius: 7px;
    background: rgb(204, 0, 0);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: .3s ease;
    border: none;
}

    .gtHero-button:hover {
        background: #a80000;
        color: #fff;
        text-decoration: none;
    }


/* ==========================================
       ARROWS
    ========================================== */

.gtHero-arrow {
    position: absolute;
    z-index: 20;
    top: 55%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: #222;
    font-size: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    transition: .2s ease;
}

.gtHero-left {
    left: 20px;
}

.gtHero-right {
    right: 20px;
}

.gtHero-arrow:hover {
    background: rgb(204,0,0);
    color: #fff;
}


/* ==========================================
       PAGINATION
    ========================================== */

.gtHero-pagination {
    position: absolute;
    z-index: 20;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gtHero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: .3s ease;
}

    .gtHero-dot.gtHero-dot-active {
        width: 25px;
        border-radius: 10px;
        background: rgb(204,0,0);
    }


/* ==========================================
       Search
    ========================================== */

.gtHero-input-wrapper {
    position: relative;
    width: 100%;
}

    .gtHero-input-wrapper #attSearchBox1 {
        width: 100%;
        padding-right: 40px;
    }

    .gtHero-input-wrapper #clearSearch1 {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        font-size: 16px;
        line-height: 1;
    }

/* ==========================================
       TABLET
    ========================================== */

@media (max-width: 1200px) {

    .gtHero-text h1 {
        font-size: 52px;
    }
}


@media (max-width: 768px) {

    .gtHero,
    .gtHero-track {
        min-height: 450px;
    }

    .gtHero-slide {
        min-height: 450px;
    }

/*    .gtHero-text h1 {
        font-size: 44px;
        line-height: 1.08;
        letter-spacing: -1px;
    }*/

    .gtHero-rating {
        margin-top: 25px;
    }

    .gtHero-off {
        margin-top: 25px;
    }

    .gtHero-button {
        margin-top: 25px;
    }
}


/* ==========================================
       MOBILE
    ========================================== */

@media (max-width: 480px) {

    .gtHero,
    .gtHero-track {
        min-height: 350px;
    }

    .gtHero-slide {
        min-height: 350px;
    }

    .gtHero-text h1 {
        font-size: 36px;
    }

    .gtHero-rating {
        font-size: 14px;
    }

        .gtHero-rating span {
            font-size: 18px;
        }

    .gtHero-off-p {
        font-size: 14px;
    }

    .gtHero-subtext {
        font-size: 13px;
    }

    .gtHero-button {
        padding: 10px 20px;
        font-size: 16px;
    }

    .gtHero-arrow {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .gtHero-left {
        left: 8px;
    }

    .gtHero-right {
        right: 8px;
    }

    .gtHero-offer-badge {
        width: 90px;
        top: 7px;
        right: 1rem;
    }
}


/* ==========================================
       BADGE TABLET
    ========================================== */

@media (width: 992px) {

    .gtHero-offer-badge {
        width: 115px;
        top: 7rem;
        right: 1rem;
    }
}

@media (min-width: 481px) and (max-width: 991px) {

    .gtHero-offer-badge {
        width: 115px;
        top: 0rem;
        right: 1rem;
    }
}


/*<%-- paranomic card css--% >*/


.pkg-section {
    margin-top: 5rem;
}


.pkg-slider {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding: 10px 10px 10px 0;
}

    .pkg-slider::-webkit-scrollbar {
        display: none;
    }

.pkg-card {
    /*  flex: 0 0 290px;*/
    flex: 1;
    min-width: 290px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    overflow: hidden;
    /*   box-shadow: 0 5px 20px rgba(0,0,0,.08);*/
    transition: .35s;
    position: relative;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

    .pkg-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.15);
    }

.pkg-image {
    position: relative;
}

    .pkg-image img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

.pkg-tag {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: #fff;
    color: rgb(204,0,0);
    font-size: 12px;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 10px;
    letter-spacing: .5px;
}

.pkg-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    background: #d71920;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
}

    .pkg-badge.green {
        background: #138a36;
    }

.pkg-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .pkg-content h3 {
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 12px 0;
        padding: 0;
        color: #222;
    }

.pkg-route {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #555;
}

    .pkg-route span {
        color: rgb(204,0,0);
        margin: 0 8px;
    }

.pkg-content p {
    color: #555;
    line-height: 1.6;
    font-size: 13px;
    flex: 1;
    /* margin-bottom: 12px;*/
}

.pkg-seat {
    background: #edf8f2;
    color: #0d7a42;
    padding: 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.seat-offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 1.5px dashed #ff4d4f;
    border-radius: 8px;
    background: #fff;
}

.offer-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 51p;
    padding: 0 5px 0 15px;
    height: 24px;
    background: rgb(204, 0, 0, 0.2);
    color: rgb(204, 0, 0, 1);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

    /* Left coupon cut */
    .offer-label::before {
        content: "";
        position: absolute;
        left: -6px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 16px;
        background: #fff;
        border-radius: 50%;
    }

.pkg-price {
    display: flex;
    flex-direction: column;
    /*  align-items: flex-end;*/
    /*   gap: 10px;*/
    /* margin-bottom: 18px;*/
}

    .pkg-price small {
        color: #777;
        font-size: 12px;
    }

    .pkg-price strong {
        font-size: 18px;
        color: #111;
    }

.pkg-btn {
    display: block;
    text-align: center;
    /* background: rgb(204, 0, 0); */
    color: rgb(204, 0, 0, 1);
    text-decoration: none;
    /* padding: 14px; */
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

    .pkg-btn:hover {
        /*    background: #b50000;*/
        color: black;
    }

.pkg-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    border: 1px solid #D9D9D9;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
    z-index: 10;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: grey;
}

.pkg-prev {
    left: 0 !important;
}

.pkg-next {
    right: 0 !important;
}

.pkg-nav:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.pkg-card-a {
    display: flex;
    flex: 0 0 290px;
}

@media(max-width:992px) {
    .pkg-section {
        margin-top: 3rem;
    }
}



/*search bar design*/

.gtHero-search {
    width: 80%;
    max-width: 600px;
    height: 45px;
    margin-top: 35px;
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

    .gtHero-search input {
        flex: 1;
        border: 0;
        outline: none;
        padding: 0 20px;
        font-size: 16px;
    }

    .gtHero-search button {
        width: 140px;
        border: 0;
        background: rgb(204,0,0,1);
        color: #fff;
        font-size: 18px;
        font-weight: 500;
    }

.gtHero-input-wrapper {
    position: relative;
    flex: 1;
}

    .gtHero-input-wrapper input {
        width: 100%;
       height: 100%;
    }

#clearSearch {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 14px;
}

    #clearSearch:hover {
        color: #333;
    }

/* Mobile */
@media (max-width: 576px) {

    .gtHero-search {
        width: 90%;
        height: 48px;
    }

        .gtHero-search input {
            padding: 0 12px;
            font-size: 14px;
        }

        .gtHero-search button {
            width: 90px;
            font-size: 14px;
        }
}