﻿:root {
    --color-org: #5d1df9;
    --color-blue: #ff8d29;
    --color-darkblue: #7B56F1;
    --color-bluedark: #976cff;
    --color-black: #26303f;
    --color-white: white;
    --color-light: #f8f8f8;
}

p,h1,h2,h3,h4,h6{
    line-height:140%;
}

/*----------floating button---------------*/

.float-call-phome {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 14px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

    .float-call-phome .fab-btn,
    .float-call-phome .fab-option {
        border: none;
        color: #fff;
        cursor: pointer;
        border-radius: 999px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
    }

    .float-call-phome .fab-btn {
        width: 56px;
        height: 56px;
        background: linear-gradient(95deg, #EF6C23 0%, #9630DA 50%, #105598 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
    }

        .float-call-phome .fab-btn.active {
            border: 3px solid rgba(255, 255, 255, 0.95);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
        }

        .float-call-phome .fab-btn:active {
            transform: scale(0.96);
        }

    .float-call-phome .fab-option {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 0;
        min-width: 102px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(18px);
        gap: 8px;
    }

        .float-call-phome .fab-option.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .float-call-phome .fab-option.call {
            background: #00C859;
        }

        .float-call-phome .fab-option.help {
            background: #3380FF;
        }

/*---------------Features----------------*/
.features-section {
    margin-top: 5px;
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 42px;
    background: #F9FAFB;
    padding-top: 60px;
    margin-top: -58px;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 85px;
}

.feature-card {
    border-radius: 12px;
    display: flex;
    gap: 12px;
    transition: 0.3s ease;
    justify-content: center;
    align-items: center;
    position:relative;
}

    .feature-card:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 27px;
        right: -40px;
        width: 1px;
        height: 38px;
        background: #E5E7EB;
        transform: translateY(-50%);
    }

    .feature-card .tit {
        margin: 0 0 4px;
        font-size: 16px;
        font-weight: 600;
        color: #101828;
    }

    .feature-card p {
        margin: 0;
        font-size: 14px;
        color: #4A5565;
        /*line-height: 1.2;*/
    }

.icon {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #F0FDF4;
}


/*----------Trending Destination--------------------*/
.trending-dest {
    padding-top: 60px;
    margin: 0 auto;
    padding-bottom: 60px;
}


.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.dest-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    box-shadow: 0px 10px 15px -3px #0000001A;
}

.dest-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease-in-out;
    background-repeat: no-repeat;
}

.dest-card:hover .dest-image {
    transform: scale(1.05);
}

.dest-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #FFFFFFE5;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #101828;
    box-shadow: 0px 10px 15px -3px #0000001A;
}

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    padding: 24px;
    color: white;
}

.dest-region {
    font-size: 14px;
    margin: 0;
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 300;
}

.dest-name {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0 12px 0;
}

.dest-subtitle {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.8;
}

.dest-price {
    font-size: 24px;
    font-weight: 700;
}

.explore-btn {
    background: white;
    color: #155DFC;
    border: none;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    right: 20px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    box-shadow: 0px 10px 15px -3px #0000001A;
}

    .explore-btn:hover {
        background: #f0f0f0;
    }


.title-tag, .view-all-trend {
    display: inline-block;
    font-weight: 600;
    color: #155DFC;
    margin-bottom: 14px;
}

.title-tag {
    text-transform: uppercase;
}
    /*-------------deals and offers---------------*/
    .deals-offers {
        padding-bottom:60px;
    }

    .deals-offers .title-tag {
        display: flex;
        align-items: center;
        font-size: 12px;
        font-weight: 600;
        color: #F54900;
        text-transform: uppercase;
        margin-bottom: 10px;
        justify-content: center;
        margin: auto;
    }


    .deals-offers .common_title {
        text-align: center;
        margin: 15px 0;
    }

    .deals-offers .deals-desc {
        font-size: 18px;
        color: #4A5565;
        /*line-height: 1;*/
        text-align: center;
        font-weight: 400;
    }

    .deals-offers .deals-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 24px;
        margin-top: 30px;
    }

    .deals-offers .offer-card {
        position: relative;
        padding: 24px;
        border-radius: 24px;
        min-height: 223px;
        overflow: hidden;
        background: #ffffff;
        display: grid;
        box-shadow: 0px 10px 15px -3px #0000001A;
        border-top: 1px solid #F3F4F6;
        transition: all 0.5s linear;
    }

        .deals-offers .offer-card:hover {
            box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
        }

        .deals-offers .offer-card::before {
            content: "";
            position: absolute;
            width: 106px;
            height: 106px;
            border-radius: 50%;
            top: -35px;
            right: -35px;
            transition: all 0.2s ease-out;
        }

    .deals-offers .offer-blue {
        background: linear-gradient(180deg, #eff7ff 0%, #ffffff 100%);
    }

        .deals-offers .offer-blue:hover {
            background: linear-gradient(180deg, #eff7ff 100%, #ffffff 100%);
        }

            .deals-offers .offer-blue:hover::before, .deals-offers .offer-pink:hover::before, .deals-offers .offer-peach:hover::before, .deals-offers .offer-green:hover::before {
                width: 130px;
                height: 130px;
            }

        .deals-offers .offer-blue::before {
            background: linear-gradient(135deg, #2B7FFF 0%, #00B8DB 100%);
            opacity: 10%;
        }

    .deals-offers .offer-pink {
        background: linear-gradient(135deg, #FBF6FF 0%, #FFF5FA 100%);
    }

        

        .deals-offers .offer-pink::before {
            background: linear-gradient(135deg, #F6E4FA 0%, #FDE6F4 100%);
        }



    .deals-offers .offer-peach {
        background: linear-gradient(135deg, #FFF7F3 0%, #FEF5F5 100%);
    }

        .deals-offers .offer-peach::before {
            background: linear-gradient(135deg, #FFE7DD 0%, #FEE6E5 100%);
        }

    .deals-offers .offer-green {
        background: linear-gradient(135deg, #F3FCF6 0%, #F3FBF8 100%);
    }

        .deals-offers .offer-green::before {
            background: linear-gradient(135deg, #DCF6E8 0%, #E0F6EE 100%);
        }


    .deals-offers .offer-pink:hover {
        background: linear-gradient(135deg, #F8F0FF 0%, #FFF0F6 100%);
    }

    .deals-offers .offer-peach:hover {
        background: linear-gradient(135deg, #FFF3EC 0%, #FFF1F1 100%);
    }

    .deals-offers .offer-green:hover {
        background: linear-gradient(135deg, #EEF9F2 0%, #ECF8F4 100%);
    }







    .deals-offers .offer-head {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 16px;
        z-index: 1;
    }

    .deals-offers .offer-date {
        font-size: 14px;
        color: #6A7282;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .deals-offers .offer-badge {
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 700;
        color: #ffffff;
        background: linear-gradient(90deg, #2B7FFF 0%, #00B8DB 100%);
    }

    .deals-offers .offer-pink .offer-badge {
        background: linear-gradient(90deg, #AD46FF 0%, #F6339A 100%);
    }

    .deals-offers .offer-peach .offer-badge {
        background: linear-gradient(90deg, #FF6900 0%, #FB2C36 100%);
    }

    .deals-offers .offer-green .offer-badge {
        background: linear-gradient(90deg, #00C950 0%, #00BC7D 100%);
    }

    .deals-offers .offer-route {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
        z-index: 1;
    }

    .deals-offers .route-item {
        display: grid;
    }

    .deals-offers .route-code {
        font-size: 24px;
        font-weight: 700;
        color: #101828;
    }

    .deals-offers .route-city {
        font-size: 16px;
        color: #4A5565;
    }

    .deals-offers .route-outer {
        display: flex;
        align-items: center;
        /* gap: 10px; */
    }

        .deals-offers .route-outer .line {
            width: 40px;
            height: 1px;
            background: #B8B8B8;
        }

        .deals-offers .route-type {
            font-size: 12px;
            padding: 6px 12px;
            border-radius: 15px;
            background: #F3F4F6;
            color: #364153;
            font-weight: 600;
            text-align: center;
        }

    .deals-offers .middle .trip {
        font-size: 12px;
        padding: 6px 12px;
        border-radius: 15px;
        background: #e5e7eb;
        color: #374151;
        font-weight: 600;
    }


    .deals-offers .route-outer:before, .deals-offers .route-outer:after {
        content: "";
        width: 6px;
        height: 6px;
        background: #B8B8B8;
        border-radius: 50%;
    }

    .deals-offers .route-outer:after {
        right: 0;
    }

    .deals-offers .offer-footer {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 12px;
        z-index: 1;
    }

    .deals-offers .offer-price {
        font-size: 24px;
        font-weight: 700;
        color: #101828;
    }

        .deals-offers .offer-price span {
            font-weight: 400;
            font-size: 14px;
            color: #6A7282;
        }
        .deals-offers .offer-price .deal_title {
            font-size: 24px;
            color: #101828;
            font-weight: 700;
        }
        .deals-offers .offer-action {
            border: none;
            background: transparent;
            color: #0A0A0A;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            padding: 10px 14px;
            transition: all 0.2s ease-out;
            border-radius: 45px;
        }

.offer-card.offer-blue:hover .offer-action {
    text-decoration: none;
    background: linear-gradient(90deg, #2B7FFF 0%, #00B8DB 100%);
    color: #fff;
}

.offer-card.offer-pink:hover .offer-action {
    background: linear-gradient(90deg, #AD46FF 0%, #F6339A 100%);
    color: #fff;
}

.offer-card.offer-peach:hover .offer-action {
    background: linear-gradient(90deg, #FF6900 0%, #FB2C36 100%);
    color: #fff;
}


.offer-card.offer-green:hover .offer-action {
    background: linear-gradient(90deg, #00C950 0%, #00BC7D 100%);
    color: #fff;
}

    .deals-offers .deals-footer {
        display: grid;
        gap: 16px;
        align-items: center;
    }

.deals-offers .deals-note {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
    /*line-height: 1.6;*/
}

    .deals-offers .deals-note a {
        color: #111827;
        text-decoration: underline;
    }

.deals-offers .view-all-btn {
    width: fit-content;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin: auto;
}

    .deals-offers .view-all-btn:hover {
        background: #f3f4f6;
    }



 /*--------------------why book us------------------*/


.why-book {
    padding-bottom: 60px;
    background: #fff;
}

    .why-book .title-tag {
        color: #F6339A;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-book .deals-desc {
        font-size: 18px;
        color: #4A5565;
    }

    .why-book__heading {
        text-align: center;
        margin-bottom: 32px;
    }

.why-book__heading .common_title{
    margin-bottom:12px;
}

.why-book__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.why-book__card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 17px 20px;
    text-align: center;
    transition: .3s;
    box-shadow: 0px 10px 15px 0px #0000000D;
}

    .why-book__card:hover {
        transform: translateY(-4px);
    }

.why-book__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
}


.why-book__card .tit {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: #101828;
}

.why-book__card p {
    margin: 0;
    font-size: 14px;
    color: #4A5565;
}

@media (max-width: 1199px) {
    .why-book__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .why-book {
        padding: 40px 0;
    }


    .why-book__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .why-book__card {
        padding: 22px 15px;
    }

        .why-book__card h4 {
            font-size: 16px;
        }

        .why-book__card p {
            font-size: 14px;
        }
}


@media(max-width:576px){
    .why-book__grid {
        gap: 12px;
    }
}






 /*-------------testimonials-------------*/


.testimonial-card__avatar {
    background: #EFF6FF;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    font-weight: 600;
    color: #000000;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials {
    width: 100%;
    padding: 42px 0px;
    background: linear-gradient(135deg, #EFF6FF 0%, #FAF5FF 50%, #FDF2F8 100%);
    box-sizing: border-box;
}


.testimonials__header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials__label {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #9810FA;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 700;
}


.testimonials__header p {
    margin: 16px auto 0;
    color: #4A5565;
    font-size: 18px;
}

.testimonials__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
    padding: 20px 16px;
}

    .testimonials__cards .swiper-button-next,
    .testimonials__cards .swiper-button-prev {
        width: 32px;
        height: 32px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        color: #333;
        transition: all 0.3s ease;
    }

        .testimonials__cards .swiper-button-next, .testimonials__cards .swiper-button-prev
        /* Arrow size */
        .testimonials__cards .swiper-button-next::after,
        .testimonials__cards .swiper-button-prev::after {
            font-size: 16px;
            font-weight: bold;
        }
    .testimonials__cards .swiper-button-prev {
        left:1px;
    }

        .testimonials__cards .swiper-button-next{
            right:3px;
        }
        /* Hover */
        .testimonials__cards .swiper-button-next:hover,
        .testimonials__cards .swiper-button-prev:hover {
            background: #333;
            color: #fff;
        }

            .testimonials__cards .swiper-button-next:hover::after,
            .testimonials__cards .swiper-button-prev:hover::after {
                color: #fff;
            }





.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 24px 24px 24px;
    position: relative;
    min-height: 285px;
    box-shadow: 0px 10px 15px -3px #0000001A;
    border-top: 1px solid #FFFFFF80;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card__badge {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #fff;
    border-radius: 14px;
    font-size: 20px;
    margin-bottom: 16px;
    position: absolute;
    top: -15px;
}

.testimonial-card__stars {
    margin-bottom: 18px;
}

.testimonial-card__text {
    margin: 0 0 12px;
    color: #334155;
    /*line-height: 1.8;*/
    font-size: 16px;
}

.testimonial-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #F3F4F6;
}


.testimonial-card__meta strong {
    display: block;
    color: #101828;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-card__meta span {
    color: #6A7282;
    font-size: 14px;
}

.testimonials__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
}

.stat {
    text-align: center;
}

    .stat strong {
        font-size: 36px;
        font-weight: 700;
        /*line-height: 1;*/
        background: linear-gradient(90.17deg, #EF6C23 0.68%, #9630DA 50%, #004A91 99.32%);
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        display: inline-block;
    }

    .stat span {
        color: #4A5565;
        font-size: 16px;
        display: block;
    }


/*--------------FAQ section----------------*/

.faq-box {
    max-width: 832px;
    margin:auto;
}

.faq-sec {
    padding: 60px 0;
}

.faq-box .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}


.faq-box .accordion-button {
    font-weight: 500;
    font-size: 16px;
    color: #101828;
    padding: 0px;
    background: transparent;
    box-shadow: none;
}

#faqAccordion .accordion-body {
    padding: 16px 24px;
    border-top: 0px;
    background: #F9FAFB;
    padding-top: 0;
    font-size: 16px;
    color: #4A5565;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.faq-box .accordion-button {
    font-weight: 500;
    font-size: 16px;
    color: #101828;
    padding: 0px;
    background: transparent;
    box-shadow: none;
    line-height: 28px;
}

.faq-box .accordion-item {
    border-radius: 16px;
    border: 1px solid #D9D9D9;
    padding: 0px;
    background: #F9FAFB;
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: #8FC5FF;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}


.faq-header {
    text-align: center;
    margin-bottom: 31px;
}

.faq-box .accordion{
    grid-gap:16px;
}


.faq-box .accordion-button::after {
    background-size: 16px;
}


/*subscribe css start */
.mob-error {
    color: red;
}

.sub-outer {
    padding-bottom: 60px;
    background: linear-gradient(90deg, #EF6C23 0%, #9630DA 50%, #105598 100%);
    padding: 42px;
}


.subs-sec img {

}

.subscribe {
    display: flex;
    align-items: center;
    gap: 36px;
}

.textsec {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
    flex: 1;
}

    .textsec .scrib-tit {
        font-size: 32px;
        color: white;
        font-weight: 700;
    }

    .textsec p {
        /*line-height: 1.3;*/
        font-size: 16px;
        color: #FFFFFFE5;
        font-weight: 300;
    }

.subs-sec {
    max-width: 500px;
}

    .subs-sec a {
        color: #ffffff;
    }

.sub-input-box {
    background: white;
    box-shadow: 0px 25px 50px -12px #00000040;
    border-radius: 16px;
    padding: 5px;
    display: flex;
    border: 1px solid #fff;
}

.subs-input {
    background: #FFFFFFF2;
    padding: 8px;
    font-size: 14px;
    color: #101828;
    font-weight: 400;
    border: 0 !important;
}

.subs-btn {
    color: #ffffff;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
    font-weight: 500;
    max-width: 117px;
    border: 0;
    background: linear-gradient(90.17deg, #EF6C23 0.68%, #9630DA 50%, #004A91 99.32%);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .subs-btn:hover {
        background: linear-gradient(90.17deg, #BE4C0C 0.68%, #7D1FBC 50%, #01305E 99.32%);
    }

.subs-sec p {
    font-size: 12px;
    color: #FFFFFFCC;
    margin-top: 16px;
    font-weight: 400;
    text-align: left;
}

.subs-sec .error {
    font-size: 12px;
    color: red;
    padding: 4px 8px;
    background: #ffffff;
    border-radius: 10px;
    margin-top: 5px;
    width: fit-content;
    line-height: 1;
}

.thksub {
    background: #ecf7ec;
    color: var(--color-black);
    padding: 20px 15px;
    border-radius: 15px;
    display: flex;
    grid-gap: 15px;
    align-items: center;
    margin-left: 60px;
}

    .thksub i {
        color: #00a922;
        font-size: 20px;
    }

.sub-input-box input:focus {
    outline: 0;
    border: 0 !important;
}

.sub-input-box:focus-within {
    border: 1px solid #155DFC
}
/*Header*/
.sub_header {
    background-color: var(--color-blue);
}

.line_1 {
    display: inline-flex;
    width: 1px;
    height: 22px;
    background-color: var(--color-white);
}

.sub1 ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .sub1 ul li a {
        color: var(--color-white);
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .sub1 ul li a i {
            width: 25px;
            height: 25px;
            border-radius: 3px;
            background-color: var(--color-white);
            color: var(--color-blue);
            display: flex;
            align-items: center;
            justify-content: center;
        }

.logo_img img {
    height: 50px;
    width: auto;
}

.nav_links ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.way_cont {
    background-color: #eff2f8;
    padding: 6px 10px;
    border-radius: 5px
}

.nav_links ul li a {
    color: var(--color-black);
    font-weight: 500;
}

.drop_down {
    gap: 4px;
}

.call_title {
    font-size: 20px;
}

.call_icon {
    /* position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -60px; */
    width: 45px;
    height: 45px;
    background-color: var(--color-blue);
    border-radius: 3px;
}

    .call_icon img {
        height: 23px;
        width: auto;
    }

.search_btn p {
    display: none;
}

.swiper-button-lock {
    display: flex !important;
}

.call_container {
    color: var(--color-black)
}

    .call_container:hover {
        color: var(--color-black)
    }
/*Footer*/
/*.footer {
    background-color: #EEEEEE;
}

.footer_title {
    position: relative;
    display: inline-flex;
}



.footer_bottom {
    background-color: var(--color-white);
}

.footer_ul_bottom li a {
    color: var(--color-black);
    font-size: 15px;
}*/



.slick-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    display: inline-block;
    font-weight: 900;
    color: var(--color-black);
    font-size: 16px;
}

.slick-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f104";
    display: inline-block;
    font-weight: 900;
    color: var(--color-black);
    font-size: 16px;
}

.slick-arrow {
    width: 37px !important;
    height: 37px !important;
    border: 1px solid var(--color-black) !important;
    border-radius: 5px;
    top: 25px !important;
    background: var(--color-light) !important;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    z-index: 9;
    top: -30px !important;
}



.all-slide .slick-prev {
    left: initial;
    right: 56px;
}

.flight-deals .slick-list {
    margin: -10px
}

.serach-eng {
    height: auto;
    padding: 52px 0;
    background-size: cover;
    background: linear-gradient(95deg, #EF6C23 0%, #9630DA 50%, #105598 100%);
    padding-bottom: 78px;
}



.search-Button i {
    font-size: 40px;
}

@keyframes anim_hero {
    0% {
        background-size: 110% 110%;
    }

    100% {
        background-size: 100% 100%;
    }
}


.banner_title {
    font-size: 48px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    text-align: center;
    color: #fff;
}

.banner_title2 {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    /*line-height: 1;*/
    font-family: "Inter", sans-serif;
    text-align: center;
    font-weight: 400;
}


.hero_form {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
}

    .hero_form::after {
        content: "";
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 2px;
        background-color: var(--color-light);
        border-radius: 50px;
    }

.hero_tabs {
    gap: 24px;
}

.btns_cont_hero {
    gap: 24px;
}

.hero_tabs button {
    background-color: transparent;
    color: var(--color-white);
    border: none;
    font-size: 18px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .hero_tabs button img {
        height: 28px;
        width: auto;
    }

.linehr {
    height: 25px;
    width: 2px;
    background-color: var(--color-white);
    display: inline-flex;
}



.form_control {
    background-color: transparent;
    padding: 0px;
    border: none;
    border-radius: 0px;
}

    .form_control:focus {
        box-shadow: none;
    }

.form_holder {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 12px;
}

.form_control {
    font-size: 19px;
    font-weight: 700;
}

.form_label {
    color: var(--color-black);
    font-size: 12px;
    margin: 0px;
    opacity: 0.6;
}

.nav_pills_hero li button {
    color: var(--color-black);
    padding: 0px;
}

.nav-link.active {
    background-color: transparent !important;
    color: var(--color-black) !important;
}

.form-check-input:checked {
    background-color: var(--color-bluedark);
    border-color: var(--color-bluedark);
}

.form_check_input:checked[type="radio"] {
    --bs-form-check-bg-image: none;
}

.form-check-input {
    position: relative;
}

    .form-check-input:checked::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        width: 1.4rem;
        height: 1.4rem;
        background-color: transparent;
        border: 1px solid var(--color-bluedark);
    }

.form_check_input {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-left: 0px !important;
    margin-top: 0px;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
}

.form_check {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-left: 0px;
}

.arrow_turns {
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
    font-size: 13px;
}

.form_icon {
    color: var(--color-blue);
}

    .form_icon i {
        font-size: 26px;
    }

.form_holder_gap {
    gap: 12px;
    height: 100%;
}

.search_btn {
    background-color: var(--color-org);
    border: none;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

    .search_btn img {
        height: 40px;
        width: auto;
    }

.sup_icon {
    background: #32BB66;
    width: 50px;
    height: 50px;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 15px 20px 0px #226D7633;
}

.sup_container .interface {
    background: #2E8CEC;
}

.sup_container .nonstop_deals {
    background: #E24081
}

.sup_content .color-blue {
    font-size: 16px
}

.sup_container {
    gap: 10px;
    background: #F4F4F4;
    padding: 17px;
    border: 1px solid #D8D8D8;
    border-radius: 5px;
    height: 100%;
}
/*Offers*/
.box_shadow {
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.offers_container img {
    border-radius: 4px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
}

.arrow_common {
    border: 2px solid var(--color-blue);
    background: var(--color-white);
    z-index: 99;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px !important;
    color: #1B1B1B;
    font-weight: 800;
}







/*Process*/
.process_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.process_img_cont img {
    height: 70px;
    width: auto;
}

.num_c {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 6rem;
    font-weight: 600;
    color: #fbf1ef;
    /* color: var(--color-black); */
    rotate: -90deg;
    translate: -50% -50%;
    z-index: -1;
}

.process_content {
    margin-top: 35px;
}

.after_arrow {
    position: relative;
}

    .after_arrow::after {
        content: "";
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        position: absolute;
        right: -110px;
        top: 50%;
        transform: translateY(-50%);
        width: 220px;
        height: 40px;
        object-fit: contain;
        opacity: 0.2;
    }

.after_arrow_right {
    position: relative;
}

    .after_arrow_right::after {
        content: "";
        background-repeat: no-repeat !important;
        background-position: center;
        background-size: contain !important;
        position: absolute;
        right: -150px;
        top: 50%;
        transform: translateY(-50%);
        width: 220px;
        height: 40px;
        object-fit: contain;
        opacity: 0.2;
    }
/*Top Package*/
.explore_btn {
    background-color: #edf1f6;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: inline-flex;
    padding: 14px 30px;
    gap: 5px;
    font-weight: 600;
    color: var(--color-blue);
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.package_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
}

.package_img img {
    height: 310px;
    object-fit: cover;
    border-radius: 5px;
}

.pack_title {
    font-size: 17px;
}

.deals_slider .swiper-wrapper {
}
/*Customer Reviews*/
.trust_img img {
    height: 60px;
    width: auto;
}

.semi_para {
    font-size: 28px;
}

.semi_para2 {
    font-size: 24px;
}

.process_container {
    z-index: 1;
}

.common_title_cust {
    font-size: 50px;
}

    .common_title_cust span {
        font-size: 60px !important;
    }
/*Customer*/
.customer_bg {
    /*background-image: url("/Images/imgs2/customer-bg.png"); */
    z-index: 1;
}

    .customer_bg::after {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        width: 43%;
        height: 100%;
        background-color: var(--color-darkblue);
        z-index: -1;
    }
/* .customer_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
} */
.cust_ratings {
    flex-direction: row !important;
}

    .cust_ratings i {
        color: var(--color-org);
        font-size: 14px;
    }

.cust_container {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    background-color: var(--color-white);
    border-radius: 5px;
    z-index: 1;
    box-shadow: 1px 1px 15px rgba(0,0,0,0.2);
    min-height: 140px;
}

.tru_img {
    height: 60px;
    width: auto;
}

.testi_slide .swiper-wrapper {
    padding: 20px 0px;
}

.testi_slide .swiper-slide {
    padding-right: 20px;
}

.quotes_img {
    position: absolute;
    left: -20px;
    top: -20px;
    z-index: -1;
    opacity: 0.1;
    display: none;
}

.cont_testi_1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: start;
    margin-bottom: 4px;
}

.quotes_img img {
    height: 60px;
    width: auto;
}



/*.returnlabel {
    top: 35px;
    right: initial;
}*/

/*.call-opt .call-tfn {
    font-weight: 600;
    font-size: 20px;
}*/

.des_img img {
    transition: 0.3s
}

.des_img {
    overflow: hidden;
    border-radius: 10px;
}

/*.des_container:hover .des_img img {
    transform: scale(1.1)
}*/

.deal-sec {
    padding: 0px;
}

.package_container {
    color: var(--color-black)
}

    .package_container:hover {
        color: var(--color-black)
    }

.desti_testi {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-weight: 600;
}

@media screen and (max-width: 1200px) {

    .textsec .scrib-tit {
        margin-bottom: 10px;
    }

    .subs-sec p {
        text-align: center;
    }

    .textsec {
        flex-direction: column;
        text-align: center;
        max-width: 700px;
    }


    .subscribe {
        flex-direction: column;
    }

    .deals-offers .offer-route {
        gap: 15px;
    }

    .subs-input {
        min-width: 315px;
    }

    .trusted-airlines {
        flex-wrap: wrap;
    }

    .common_padding {
        padding: 0px 15px;
    }

    .hero_tabs {
        gap: 24px;
    }
}



@media screen and (max-width:1023px) {
}

@media screen and (max-width: 992px) {

    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .features-container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .feature-card:not(:last-child)::after {
        right: -17px;
    }

    .banner_title {
        font-size: 42px;
    }

    .banner_title2{
        font-size:16px;
    }

    .deals-offers .deals-grid {
        grid-template-columns: 1fr;
    }

    .thksub {
        margin-left: 0;
        margin-top: 20px;
    }

    .subs-sec form .position-relative {
        width: 100%;
    }

    .subs-btn {
        width: 40%;
    }

    .subs-input {
        width: 100%;
    }




    .plan-trip .book-now {
        width: 100%;
        margin: 0;
        text-align: center;
        text-decoration: none;
    }


    /*.plan-trip .trip-type:before {
        top: 11px;
        left: -43%;
    }*/

    .plan-trip .destination-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .plan-trip .card-content {
        width: 100%;
        justify-content: space-between;
    }

    .hero_tabs {
        gap: 16px;
    }


    .nav_links {
        background-color: rgba(0, 0, 0, 0.4);
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        z-index: 99;
        display: none;
    }

        .nav_links ul {
            width: 30%;
            height: 100%;
            background-color: var(--color-white);
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
            padding: 10px;
        }

    .hero_tabs button {
        font-size: 16px;
    }

    .logo_img img {
        height: 43px;
    }

    .call_icon {
        width: 42px;
        height: 42px;
    }

    .hero_section {
        height: initial;
        padding: 30px 0px;
    }
}


@media (max-width:991px) {
 
}

@media screen and (max-width: 768px) {

    .deals-offers .deals-grid {
        margin-top: 16px;
    }


    .deals-offers .deals-note {
        margin-top: 15px;
    }

    .deals-offers .offer-head {
        position: relative;
    }

    .slick-dots {
        bottom: -13px;
    }

    .slick-dots li button:before {
        font-size: 30px;
    }

    .slick-dots li.slick-active button:before {
        color: #155DFC;
    }

    /*.deals-offers .offer-card {
        box-shadow: none;
    }*/

    .slick-slide {
        padding: 15px 4px;
    }

    .textsec {
        grid-gap: 16px;
    }

    .sub-input-box {
        flex-direction: column;
    }

    .sub-outer {
        padding: 40px 0;
    }

    .float-call-phome {
        display: none;
    }
    .banner_title{
        font-size:24px;
    }

    .serach-eng {
        padding: 50px 0;
        padding-top: 30px;
    }


    .banner_title2 {
        font-size: 18px;
    }


    .trusted-airlines {
        gap: 15px;
    }

    .feature-card {
        gap: 15px;
    }

    .plan-trip .card-content {
        align-items: flex-start;
    }

    .plan-trip .route-middle:after {
        right: -21px;
    }

    .plan-trip .route-middle:before {
        left: -24px;
    }

    .plan-trip .trip-type:before {
        width: 120px;
        left: -25%;
    }


    .margin_top {
        margin-top: 50px;
    }

    .hero_tabs {
        gap: 14px;
    }

    .common_title_cust span {
        font-size: 40px !important;
    }

    .process_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px 20px;
    }

    .after_arrow::after {
        display: none;
    }

    .customer_bg::after {
        width: 100%
    }

    .after_arrow_right::after {
        display: none;
    }

    .process_img_cont img {
        height: 50px;
    }

    .search_btn {
        padding: 15px 0px;
        font-weight: 500;
    }

        .search_btn img {
            display: none;
        }

        .search_btn p {
            display: initial;
            font-size: 18px;
        }

    .subs-btn {
        max-width: 100%;
        padding: 14px;
        border-radius: 5px;
        margin-top: 5px;
        margin-left: 0;
        min-width: 100%;
        text-align: center;
        justify-content: center;
        gap: 10px;
    }

    .trending-grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }
}

@media screen and (max-width: 576px) {


    .subs-btn {
        border-radius: 16px;
    }

    .subscribe {
        grid-gap: 30px;
    }


    .deals-offers .offer-card:hover {
        box-shadow: none;
    }

    .deals-offers .offer-price .deal_title {
        font-size: 18px;
    }

    .sub-outer {
        padding: 32px 0;
    }


    .faq-box .accordion {
        grid-gap: 12px;
    }

    .testimonials__header {
        margin-bottom: 30px;
    }

    .testimonials {
        padding: 32px 0px;
    }

    .trending-grid {
        gap: 12px;
    }

    .features-section{
        padding-bottom:32px;
    }

    .why-book__grid > :last-child {
        grid-column: span 2;
    }

    .why-book .deals-desc {
        font-size: 16px
    }

    .testimonials__cards {
        padding: 20px 0px;
    }

    .sequre-sec li {
        padding: 0 10px;
    }

    .features-container {
        gap: 16px;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-card:not(:last-child)::after{
        display:none;
    }
 .faq-sec {
        padding: 40px 0;
    }
    .deals-offers {
       padding-top:40px;
    }



    .subs-sec p {
        font-size: 12px;
    }

    .textsec .scrib-tit {
        font-size: 25px;
    }

    .faq-box .accordion-button {
        font-size: 14px;
        line-height: 1.6;
    }

    #faqAccordion .accordion-body{
        font-size:14px;
    }

    .testimonial-card {
        padding: 43px 15px 15px 15px;
    }

    .testimonials__cards .swiper-button-next, .testimonials__cards .swiper-button-prev {
        display: none;
    }

    .deals-offers .offer-route {
        margin-bottom: 15px;
        position: relative;
        gap: 10px;
        margin-top: 10px;
    }

    .deals-offers .route-outer .line {
        width: 20px;
    }

    .deals-offers .offer-price {
        font-size: 20px;
    }

    .deals-offers .route-code {
        font-size: 16px;
    }
    .deals-offers .route-city{
        font-size:12px;
    }

    .deals-offers .offer-card {
        padding: 15px;
        max-height: 200px;
        min-height: auto;
    }



    .trending-dest {
        padding-top: 40px;
        padding-bottom: 0;
    }


    .banner_title_mob {
        font-size: 50px;
        font-weight: 700;
        background: linear-gradient(90deg, #5B3FD6 0%, #9675FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke: 2px #FDF1EC;
        font-family: "Inter", sans-serif;
        /* padding-top: 50px; */
        /* line-height: 0; */
        text-align: center;
    }

    .banner_title2 {
        font-size: 15px;
        margin-top: 5px;
        font-weight: 700;
        margin-bottom:20px;
        /*line-height: 1.4;*/
    }


    .textsec p {
        margin-bottom: 0;
        font-size:14px;
    }




    .subs-input {
        border-radius: 5px;
        min-width: auto;
        font-size: 16px;
    }

 

    /*#flightDeal {
        margin: 40px 0;
    }*/

    .trusted p {
        margin-bottom: 20px;
    }

    .trusted-airlines {
        gap: 0;
    }

    .trusted {
        margin: 30px 0;
        padding: 20px;
    }

    .flight-banner {
        margin-top: 30px;
    }

    .flight-banner {
        margin-bottom: 30px;
    }


    .plan-trip .destination-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .margin_top {
        margin-top: 40px;
    }

    /*.margin_res {
        margin-top: 130px;
    }*/

    .common_padding {
        padding: 0px 12px;
    }

    .common_title_cust span {
        font-size: 30px !important;
    }

    .plan-trip .section-title, .common_title, .faq-header h2 {
        font-size: 22px;
    }

    .hero_tabs button {
        font-size: 17px;
    }

    .hero_form::after {
        width: 200px;
    }


    .hero_form {
        margin-bottom: 120px !important;
    }


    .arrow_common2 {
        width: 28px !important;
        height: 28px !important;
    }

    .swiper-button-prev.arrow_common2 {
        right: 36px;
    }

    .logo_img img {
        height: 36px;
    }

    .call_title {
        font-size: 16px;
    }

    .sub1 ul li a {
        font-size: 13px;
    }

    .hero_tabs button img {
        height: 27px;
    }

    .call_icon {
        width: 34px;
        height: 34px;
    }

        .call_icon img {
            height: 18px;
        }

    .explore_btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    /*.banner_title {
        font-size: 20px;
    }

    .banner_title2 {
        font-size: 20px;
        display: none;
    }*/

    .form_icon i {
        font-size: 20px;
    }

    .form_control {
        font-size: 18px;
    }

    .form_holder {
        padding: 8px 12px;
    }

    .sup_icon {
        width: 45px;
        height: 45px;
    }

    .padding_top {
        padding-top: 50px;
    }


    .margin_minus {
        margin-top: -35px;
    }

    .offers_container img {
        height: 100px;
    }

    .package_img img {
        height: 200px;
    }

    .pack_title {
        font-size: 16px;
    }

    .pack_content .font_15 {
        font-size: 13px;
    }

    .num_c {
        font-size: 5rem;
    }

    .process_grid {
        grid-gap: 30px 20px;
    }

    .process_content {
        margin-top: 15px;
    }

        .process_content .font_15 {
            font-size: 13px;
        }

    .quotes_img {
        display: none;
    }

        .quotes_img img {
            height: 40px;
        }

    .testi_slide .swiper-wrapper {
        padding: initial;
    }

    .search_btn p {
        font-size: 16px;
        display: initial;
    }

    .search_btn img {
        display: none;
    }


    .footer_icon {
        width: 34px;
        height: 34px;
    }

    footer .font_15 {
        font-size: 12px;
    }


    .footer_ul_bottom li a {
        font-size: 12px;
    }

    .des_title {
        font-size: 17px;
    }

    .arrow_common {
        width: 34px !important;
        height: 34px !important;
    }

    .des_hr {
        margin: 13px 0px;
        border-width: 1px;
    }

    .box_shadow {
        box-shadow: none;
    }

    .arrow_common2 {
        box-shadow: none;
    }

    .deal_title {
        font-size: 20px;
    }

    .offers_container img {
        box-shadow: none;
    }

    .sup_container::after {
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        display: inline-block;
        font-weight: 900;
        color: var(--color-black);
        font-size: 20px;
    }

    .sup_container {
        justify-content: space-between;
    }

    .sup_icon {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 375px) {

    .deals-offers .offer-price {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .hero_tabs button {
        font-size: 14px;
    }

    .hero_tabs {
        gap: 11px;
    }

    .footer_ul_bottom li a {
        font-size: 11px;
    }

    .process_content .font_15 {
        font-size: 12px;
    }

    .explore_btn {
        font-size: 13px;
        padding: 8px 10px;
    }

    .arrow_common {
        width: 30px !important;
        height: 30px !important;
    }



    .footer_ul {
        margin-top: 4px !important;
    }
}

@media screen and (max-width: 584px) {
    .brandpush-news-logo {
        max-width: 70px !important;
    }

    .brandpush-title {
        font-size: 15px;
        top: -5px;
        letter-spacing: 6px;
    }

        .brandpush-title:before, .brandpush-title:after {
            border-bottom: none !important;
        }

    .brandpush-leaf {
        display: none !important;
    }
}

@media screen and (max-width: 340px) {
    .brandpush-title-hr {
        display: none !important;
    }

    .brandpush-title {
        font-size: 14px;
        padding: 0 !important;
    }

    .brandpush-footer {
        font-size: 11px !important;
        margin: 20px 0 25px 0 !important;
        letter-spacing: 2px !important;
    }

    .brandpush-news-logo {
        max-width: 50px !important;
    }
}
