﻿
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root {
    --theme_color: #e1b964;
}

* {
    font-family: "Roboto", sans-serif !important;
}


body i {
    font-family: FontAwesome !important;
    font-weight: normal;
}

.cm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    position: relative;
}

body a:hover,
body a:focus {
    color: #e1b964;
}


.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.header-logo img {
    max-width: 170px;
    width: 100%;
    transition: 0.4s all;
}

.header-menu-wrapper ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
}

.header-logo img:hover {
    transform: scale(1.05);
}

.header-menu-wrapper ul li {
    margin: 0 10px;
}

    .header-menu-wrapper ul li a {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--theme_color);
        position: relative;
        transition: 0.4s all;
        padding-bottom: 5px;
    }

        .header-menu-wrapper ul li a:after {
            content: '';
            width: 0%;
            position: absolute;
            height: 2px;
            background: var(--theme_color);
            bottom: 0;
            transition: 0.4s all;
            left: 0;
        }

        .header-menu-wrapper ul li a:hover:after {
            width: 100%;
        }

button.hs-btn {
    border: none;
    background: var(--theme_color);
    padding: 10px 30px;
    border-radius: 5px;
    color: #000;
}

.header-btn .hs-btn a {
    display: flex;
    align-items: end;
    line-height: 1.25;
    color: #000;
    font-weight: 500;
}

    .header-btn .hs-btn a svg path {
        fill: #000;
    }

header.cm-header {
    padding: 10px 0;
    position: relative;
    width: 100%;
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    background: #000;
}

.header-btn .hs-btn a .call-text {
    font-size: 11px;
    font-weight: 600;
}

.header-btn .hs-btn a .call-no {
    font-size: 18px;
    font-weight: 500;
}


.open-menu header.cm-header .mob-header {
    left: 0;
}


body .form-bg .tab-content {
    background: #000;
    padding: 15px 30px 30px 30px;
    border-radius: 20px;
}

body .form-bg input[type=radio]:checked + label {
    background-color: #e1b964;
    border: 1px solid #000;
    color: #000;
}

body .form-bg .form-group.searchwidth input#btn_search {
    background-color: #e1b964 !important;
    color: #000;
    font-size: 20px;
    font-weight: 600;
}


body .form-bg .form-control {
    color: #000;
    font-weight: 600;
}


.slider .cm-container {
    max-width: 1200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    min-height: 600px;
}

    .slider .cm-container .form-bg {
        top: unset;
        width: 100%;
        max-width: 550px;   
        right: auto;
        left: 0;
        padding: 0;
        background: transparent;
        top: 50px;
    }

body .form-bg .form-group.middlewidth.sapce {
    width: 100%;
}

body .form-bg h1 {
    font-weight: 600 !important;
}

body .home-bg {
    background-image: url('../../images/newimages/flight-banner3.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
    height: auto;
}
body .bg-atlanta {
    background-image: url('../../images/newimages/atlanta.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
    height: auto;
}
body .bg-san-francisco {
    background-image: url('../../images/newimages/san-francisco.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
    height: auto;
}

body .bg-amsterdam {
    background-image: url('../../images/newimages/amsterdam.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
    height: auto;
}
body .bg-boston {
    background-image: url('../../images/newimages/boston.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
    height: auto;
}
body .bg-indonesia {
    background-image: url('../../images/newimages/indonesia.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
    height: auto;
}
body .bg-japan {
    background-image: url('../../images/newimages/japan.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
    height: auto;
}
body .bg-london {
    background-image: url('../../images/newimages/london.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
    height: auto;
}
body .bg-vietnam {
    background-image: url('../../images/newimages/vietnam.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
    height: auto;
}
.quote-form-container {
    background-color: #000;
    color: white;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quote-form-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom:1px solid #e1b964;
}

    .quote-form-header h2 {
        font-size: 30px;
        margin: 0 0 5px 0;
        color: #fff;
        font-weight: 600;
        font-family: "Roboto", sans-serif !important;
    }

    .quote-form-header p {
        font-size: 14px;
        margin-bottom: 15px;
        text-align: center;
        font-weight: 500;
        color: #e1b964;
    }

    .quote-form-header .call-btn svg {
        margin-bottom: -7px;
    }

    .quote-form-header .call-btn {
        background-color: #e1b964;
        color: #000;
        font-weight: 500;
        font-size: 16px;
        display: inline-block;
        padding: 10px;
        text-decoration: none;
        border-radius: 5px;
    }

.quote-form {
    display: grid;
    grid-template-columns: 1fr;
    /*grid-gap: 10px;*/
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
        border-radius: 4px;
        border: 1px solid #ccc;
        font-size: 16px;
        background-color: #fff;
    }

.submit-btn {
    background-color: #e1b964;
    color: #000;
    padding: 10px;
    font-size: 18px;
    border: none;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

.payBanner {
    position: relative;
    width: 100%;
    min-height: 750px;
    background-image: url('../../images/newimages/listingbanner.png');
    background-size: cover;
    background-position: center;
}

    .payBanner:after {
        width: 100%;
        height: 100%;
        position: absolute;
        content: '';
        background: rgba(0,0,0,0.3);
        z-index: 99;
        top: 0;
        left: 0;
    }

    .payBanner .bannerWrapper {
        padding: 10px;
    }

        .payBanner .bannerWrapper .bannerContainer {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 24px;
            padding-top: 130px;
            padding-bottom: 30px;
        }

            .payBanner .bannerWrapper .bannerContainer > div {
                flex-grow: 1;
                width: 100%;
                flex-basis: 0;
                position: relative;
                z-index: 999;
            }

.bannerContent .top-content {
    padding: 35px;
    background: #000000;
}

    .bannerContent .top-content .limited-time {
        background: #e1b964;
        color: #000;
        text-transform: uppercase;
        font-weight: 600;
        border-radius: 5px;
        padding: 4px 8px;
        line-height: 1.25;
        font-size: 12px;
        text-align: center;
    }

    .bannerContent .top-content .wp-cover {
        display: flex;
        gap: 35px;
    }

    .bannerContent .top-content .place-name {
        margin-top: 18px;
    }

        .bannerContent .top-content .place-name p {
            margin: 0;
            font-size: 25px;
            color: #fff;
            font-weight: 600;
            text-transform: uppercase;
            line-height: 1;
        }

.wp-cover .place-section {
    width: 45%;
}
.wp-cover .low_price{
    width: 15%;
}
.wp-cover .price-group {
    width: 40%;
}

.bannerContent .top-content .c-section p {
    color: #ccc;
    font-size: 15px;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 0;
}

.wp-cover .price-group p {
    color: #ccc;
    text-transform: capitalize;
    font-weight: 500;
    text-align: right;
}

    .wp-cover .price-group p span {
        position: relative;
        font-size: 16px;
    }

        .wp-cover .price-group p span:after {
            position: absolute;
            content: '';
            width: 100%;
            height: 1px;
            background: #cccc;
            top: 50%;
            left: 0;
        }

.wp-cover .price-group .Cmnew-price {
    display: flex;
    justify-content: end;
}

    .wp-cover .price-group .Cmnew-price > p {
        font-size: 40px;
        color: #fff;
        font-weight: 600;
        margin: 0;
    }

    .wp-cover .price-group .Cmnew-price .usd-wrapper {
        display: flex;
        flex-direction: column;
        margin-left: 5px;
    }

        .wp-cover .price-group .Cmnew-price .usd-wrapper p {
            margin: 0;
        }

            .wp-cover .price-group .Cmnew-price .usd-wrapper p:last-child {
                font-size: 20px;
                color: #e1b964;
                font-weight: 600;
            }

.bannerContent .btm-content .other-deal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bannerContent .btm-content {
    margin-top: 30px;
}

    .bannerContent .btm-content .other-deal p {
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .bannerContent .btm-content .other-deal > div {
        height: 1px;
        background: #fff;
        width: 100%;
    }


.deal-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #000;
    border-radius: 4px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    margin: 10px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-header {
    display: flex;
    align-items: center;
}

.airline-logo {
    width: 120px;
    height: 48px;
    object-fit: cover;
    margin-right: 15px;
}

.airline-name {
    font-weight: 600;
    font-size: 1.2em;
    margin: 0;
}

.deal-details {
    text-align: right;
}

.flight-class {
    font-weight: 400;
    font-size: 1em;
    margin: 0;
}

.price-container {
    margin-top: 8px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    font-size: 1.4em;
}

.currency {
    font-size: 0.8em;
    margin-right: 5px;
    text-transform: uppercase;
    color: #e1b964;
}

.flight-price {
    font-size: 20px;
    color: #fff;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.bannerContent .btm-content .related-flight {
    margin-top: 30px;
}

.quote-form-container .form-group {
    margin-right: 0 !important;
}

.quote-form .drop-down {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

    .quote-form .drop-down .form-group {
        overflow: visible;
        width: calc((100% - 16px) / 3);
    }


.quote-form .from-to,
.quote-form .departure-return,
.quote-form .personal-details {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.quote-form .form-group {
    width: 100%;
}


.payment-header .btnPay-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 10px 20px;
    gap: 15px;
    border-radius: 5px;
}

    .payment-header .btnPay-wrapper .btnpay-text {
        color: #fff;
        font-weight: 600;
    }

    .payment-header .btnPay-wrapper button.hs-btn {
        padding: 5px 8px;
    }

        .payment-header .btnPay-wrapper button.hs-btn a {
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

            .payment-header .btnPay-wrapper button.hs-btn a svg path {
                fill: #000;
            }

.form-group input,
.form-group select {
    color: #000;
}


.quote-form-container a {
    color: #e1b964;
}

.payBanner .bannerWrapper .new-request {
    display: none;
    background: #000;
    padding: 25px;
    border-radius: 5px;
}

    .payBanner .bannerWrapper .new-request .request-wrapper {
        padding: 40px 20px;
        border: 2px solid #e1b964;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .payBanner .bannerWrapper .new-request h3 {
        color: #fff;
        font-family: "Roboto", sans-serif !important;
        font-size: 28px;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 20px;
        line-height: 1;
    }

    .payBanner .bannerWrapper .new-request p {
        color: #fff;
        max-width: 390px;
        width: 100%;
        text-align: center;
        font-weight: 500;
    }

    .payBanner .bannerWrapper .new-request .new-text p {
        color: #e1b964;
        text-transform: uppercase;
        font-weight: 600;
        cursor: pointer;
    }

    .payBanner .bannerWrapper .new-request .submit-btn {
        display: flex;
        align-items: center;
    }

.cm-footer {
    background-color: #000;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    color: #fff;
}

    .cm-footer a {
        color: #fff;
    }


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ftr-address img {
    width: 180px;
    margin-bottom: 20px;
}

.ftr-address ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.ftr-address li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.ftr-address i {
    margin-right: 10px;
    color: var(--theme_color);
}

.ftr-btm p {
    font-size: 14px;
}

.ftr-service, .ftr-legal, .ftr-social {
    margin-bottom: 20px;
}

.cm-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--theme_color);
}

.ftr-service ul, .ftr-legal ul, .ftr-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ftr-service li,
.ftr-legal li,
.ftr-social li {
    margin-bottom: 10px;
}

    .ftr-service li a,
    .ftr-legal li a,
    .ftr-social li a {
        margin-bottom: 10px;
        color: #fff;
        font-size: 14px;
    }

.ftr-service a, .ftr-legal a, .ftr-social a {
    color: #333;
    text-decoration: none;
}

    .ftr-service a:hover, .ftr-legal a:hover, .ftr-social a:hover {
        color: var(--theme_color)
    }

.ftr-btm {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--theme_color);
}

.services {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.services__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.service {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 22%;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .service:hover {
        transform: translateY(-10px);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

.service__icon img {
    width: 60px;
    margin-bottom: 15px;
}

.service__details h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
}

.service__details p {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.services .top-title {
    width: 100%;
    text-align: center;
}

.top-title h2 {
    font-size: 45px;
    line-height: 1;
    color: #000;
    position: relative;
    border-bottom: 3px solid #e1b964;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif !important;
    text-align: center;
}

section.cm-spacing {
    padding: 80px 0;
}


.how-it-works h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    min-width: 280px;
    padding: 25px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .step-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

.icon-container {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

    .icon-container img {
        width: 100%;
        height: auto;
    }

.step-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #222;
}

.step-box p {
    font-size: 14px;
    color: #333;
    text-align: center;
}

section.cm-spacing.bg-color {
    background: #f8f9fa;
}

.popular-destinations-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 50px;
}

    .filter-buttons button {
        background-color: #000000;
        color: white;
        border: none;
        padding: 10px 20px;
        margin: 0 5px;
        border-radius: 25px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .filter-buttons button.active,
        .filter-buttons button:hover {
            background-color: var(--theme_color);
            color: #333;
        }

.destinations-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px 20px;
    margin-top: 60px;
}

    .destinations-grid .destination-card {
        width: 32%;
    }

.destination-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .destination-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

.filter-buttons button.active {
    background-color: var(--theme_color);
    color: #333;
}

.filter-buttons button {
    font-weight: 600;
}

/* Add any additional hover effects or changes here */


.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid var(--theme_color);
}

.destination-info {
    padding: 15px 0 15px 15px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    align-items: center;
    min-height:180px;
}
.car-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
    .destination-info .destination-Cmplace {
        width: 65%;
    }

    .destination-info .destination-Cmprice {
        width: 32%;
    }



    .destination-info span {
        display: block;
        font-size: 14px;
        color: var(--theme_color);
        font-weight: 900;
        text-transform: capitalize;
    }

    .destination-info h3 {
        font-weight: 900;
        font-family: "Roboto", sans-serif !important;
        line-height: 1;
        margin-top: 5px;
        font-size: 22px;
    }

    .destination-info p {
        font-size: 14px;
        color: #666;
    }

    .destination-info .price {
        font-size: 20px;
        font-weight: bold;
        color: #e1b964;
        margin: 0;
        background: #000;
        text-align: center;
        padding: 5px;
        border-radius: 15px 0 0 15px;
    }

    .destination-info .btn-wrapper {
        padding-right: 15px;
    }

.btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

    .btn-wrapper button.hs-btn a {
        color: #000;
        font-weight: 600;
        text-transform: uppercase;
    }

    .btn-wrapper button.hs-sec-btn {
        padding: 10px 15px;
        border-radius: 5px;
        border: none;
        background: #000;
        width: 100%;
    }

        .btn-wrapper button.hs-sec-btn a {
            color: #e1b964;
            text-transform: uppercase;
            font-weight: 600;
        }

/* Slick slider */

.wrapper {
    width: 100%;
    padding-top: 20px;
    text-align: center;
}

.carousel {
    width: 90%;
    margin: 0px auto;
}

.slick-slide {
    margin: 10px;
}

    .slick-slide img {
        width: 100%;
        border: 2px solid #fff;
    }

.slick-prev:before, .slick-next:before {
    background: #000;
    border-radius: 50%;
}

.wrapper .slick-dots li button:before {
    font-size: 20px;
    color: white;
}

.slick-slide img {
    border: none;
}

.cards-wrapper .destination-card:hover {
    transform: unset;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cards-wrapper .destination-info h3 {
    text-align: left;
    font-size: 18px;
    color: #000;
}

.cards-wrapper .destination-info .destination-Cmplace {
    width: 64%;
}

.cards-wrapper .destination-info .price {
    font-size: 15px;
}


/* General styling for the banner */
.hero-banner {
    position: relative;
    background-image: url('https://t4.ftcdn.net/jpg/03/08/44/53/360_F_308445331_ZZinysRse5xOZacNTnoQqG24TAy7ftZ5.jpg'); /* Replace with your background image URL */
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-banner-car {
    position: relative;
    background-image: url('../../images/car-img/car-bg.webp');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-banner-cruise {
    position: relative;
    background-image: url('../../images/cruise-img/cruise_banner_cyo.webp');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.hero-banner-hotel {
    position: relative;
    background-image: url('../../images/hotel-img/hotel-bg.webp');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.hero-banner-PrivacyPolicy {
    position: relative;
    background-image: url('../../images/newimages/policy-bg.webp');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.hero-banner-Policy-tc {
    position: relative;
    background-image: url('../../images/newimages/tc-policybg.webp');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-color: rgba(0, 0, 0, 0.6);*/ /* Adds a dark overlay to make text more readable */
}

.banner-content {
    position: relative;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    flex-direction: column;
    padding: 10px;
}
.align-items-end{align-items:end !important;}

    .banner-content h1 {
        color: #e1b964;
        font-size: 45px;
        font-family: "Roboto", sans-serif !important;
        line-height: 1.5;
        font-weight: 600;
    }

.call-now-btn {
    color: #fff;
}


.banner-content p.subtitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Roboto", sans-serif !important;
}



* {
    margin: 0px;
    padding: 0px;
}

    *, *:after, *:before {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
    }

.clearfix:before, .clearfix:after {
    display: table;
    content: '';
}

.clearfix:after {
    clear: both;
}


body {
    background: #ffffff;
    color: #333;
    font-weight: normal;
    font-size: 1em;
    font-family: 'Roboto', Arial, sans-serif;
}

input:focus, textarea:focus, keygen:focus, select:focus {
    outline: none;
}

::-moz-placeholder {
    color: #666;
    font-weight: 300;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #666;
    font-weight: 300;
}


/* Contact Form Styling */


.textcenter {
    text-align: center;
}

.section1 {
    text-align: center;
    display: table;
    width: 100%;
}


.section2 {
    width: 1200px;
    margin: 25px auto;
}

    .section2 .col2 {
        width: 48.71%;
    }

        .section2 .col2.first {
            float: left;
        }

        .section2 .col2.last {
            float: right;
        }

        .section2 .col2.column2 {
            padding: 0 30px;
        }

    .section2 span.collig {
        color: #a2a2a2;
        margin-right: 10px;
        display: inline-block;
    }

    .section2 .sec2addr {
        display: block;
        line-height: 26px;
    }

        .section2 .sec2addr p:first-child {
            margin-bottom: 10px;
        }

    .section2 .sec2contactform input[type="text"],
    .section2 .sec2contactform input[type="email"],
    .section2 .sec2contactform textarea {
        padding: 18px;
        border: 0;
        background: #EDEDED;
        margin: 7px 0;
    }

    .section2 .sec2contactform textarea {
        width: 100%;
        display: block;
        color: #666;
        resize: none;
    }

    .section2 .sec2contactform input[type="submit"] {
        padding: 15px 40px;
        color: var(--theme_color);
        border: 0;
        background: #000;
        font-size: 16px;
        text-transform: uppercase;
        margin: 7px 0;
        cursor: pointer;
        font-weight: 500;
        border-radius: 5px;
    }

    .section2 .sec2addr p {
        color: #000;
        font-size: 16px;
        font-weight: 500;
    }

    .section2 .sec2contactform h3 {
        margin: 20px 0;
        margin-top: 30px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 19px;
        color: var(--theme_color);
        font-weight: 600;
        font-family: "Roboto", sans-serif !important;
    }

/* @media querries */

@media only screen and (max-width: 1266px) {
    .section2 {
        width: 100%;
    }
}

@media only screen and (max-width: 960px) {
    .container {
        padding: 0 30px 70px;
    }

    .section2 .col2 {
        width: 100%;
        display: block;
    }

        .section2 .col2.first {
            margin-bottom: 10px;
        }

        .section2 .col2.column2 {
            padding: 0;
        }

    body .sec2map {
        height: 100% !important;
    }
}

@media only screen and (max-width: 768px) {
    .section2 .sec2addr {
        font-size: 14px;
    }

    .section2 .sec2contactform h3 {
        font-size: 16px;
    }

    .section2 .sec2contactform input[type="text"], .section2 .sec2contactform input[type="email"], .section2 .sec2contactform textarea {
        padding: 10px;
        margin: 3px 0;
    }

    .section2 .sec2contactform input[type="submit"] {
        padding: 10px 30px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 420px) {
    .section1 h1 {
        font-size: 28px;
    }
}

.about-contact p {
    color: #000;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    font-family: "Roboto", sans-serif !important;
}

body input[type=radio]:checked + label {
    background: #e1b964;
    color: #000;
    font-weight: 700;
    text-transform: capitalize;
}

body input[type=radio] + label {
    background: #fff;
    color: #000;
}

body .form-group.radiowidth {
    justify-content: center;
    text-align: center;
}

    body .form-group.radiowidth span.type-bg {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

.quote-form-container form#frmIndexList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

    .quote-form-container form#frmIndexList .clearfix {
        display: none;
    }

    .quote-form-container form#frmIndexList .flip, .quote-form-container form#frmIndexList .date {
        height: 0;
        position: relative;
    }

    .quote-form-container form#frmIndexList .date {
    }

.quote-form-container form#frmIndexList .flip img, .quote-form-container form#frmIndexList .date img {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

body .form-group.middlewidth.sapce {
    position: relative;
}

    body .form-group.middlewidth.sapce .other-option {
        left: 0;
        right: auto;
        margin-top: 10px;
        top: 100%;
    }

body .other-option .form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.quote-form {
    display: flex;
    flex-direction: column;
}

.payBanner .bannerWrapper .bannerContainer > #quoteForm {
    max-width: 450px;
}

body .quote-form .personal-details {
    flex-direction: column;
    width: 100%;
}

/* Responsive Design */

@media(max-width:1149px) {

    .destinations-grid .destination-card {
        width: 48%;
    }

}

@media(max-width:991px) {

    body .form-group.radiowidth, 
    body .form-group.autowidth, 
    body .form-group.middlewidth {
        width: 100%;
    }

    .payBanner .bannerWrapper .bannerContainer > #quoteForm {
        max-width: 100%;
    }

    .payBanner .bannerWrapper .bannerContainer {
        flex-direction: column;
        align-items: center;
    }

        .payBanner .bannerWrapper .bannerContainer > div {
            width: 90%;
        }

    .bannerContent .top-content .limited-time {
        max-width: 300px;
    }

    .wp-cover .price-group p {
        text-align: right;
    }

    .wp-cover .price-group .Cmnew-price {
        justify-content: end;
    }
}

@media(min-width:768px) {
    header.cm-header .mob-header,
    header.cm-header .toggleMenu {
        display: none;
    }
}

@media(max-width:767px) {

    #flight-listings > .container {
        padding: 0;
        width: 100%;
    }

    body .listing .list-container .round-cover-all {
        width: 100%;
    }

    body .quote-form .personal-details {
    width:100%;
    }

    .quote-form .personal-details .form-group {
        display: flex;
    }

    .service {
        flex: 1 1 47%;
    }

    .destination-info .destination-Cmplace {
        width: 64%;
    }

    .top-title h1 {
        font-size: 30px;
    }

    .destinations-grid .destination-card {
        width: 100%;
    }

    .filter-buttons {
        flex-wrap: wrap;
    }

        .filter-buttons button {
            margin: 5px;
        }

    .destination-card img {
        height: 180px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-box {
        width: 90%;
        margin-bottom: 20px;
    }

    .navbar-toggle .icon-bar {
        background: #000 !important;
    }

    header.cm-header .toggleMenu .navbar-toggle {
        background: var(--theme_color);
        border: none;
    }

    .form-bg .flip,
    .form-bg .date {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .type-bg {
        background: transparent !important;
    }

    .cm-container input[type=radio] + label {
        background: transparent;
    }

    .slider .cm-container .form-bg {
        background: #000;
    }

    header.cm-header .mob-header {
        position: fixed;
        z-index: 99;
        background: #fff;
        width: 75%;
        left: -100%;
        height: 100%;
        top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 3px 0 15px rgba(0, 0, 0, 0.3);
        transition: 0.4s all;
    }

        header.cm-header .mob-header ul {
            display: block;
        }

            header.cm-header .mob-header ul li {
                width: 100%;
                margin: 0 15px 15px 15px;
            }

        header.cm-header .mob-header .header-menu-wrapper {
            width: 100%;
/*            margin-bottom: 50px;
*/        }

        header.cm-header .mob-header .header-btn {
            width: 100%;
        }

            header.cm-header .mob-header .header-btn button.hs-btn {
                margin-left: 15px;
            }


    .payBanner .bannerWrapper .new-request .submit-btn {
        font-size: 14px;
    }

    .payBanner .bannerWrapper .new-request,
    .payBanner .bannerWrapper .new-request .request-wrapper {
        padding: 15px;
    }

        .payBanner .bannerWrapper .new-request h3 {
            font-size: 20px;
        }

    .bannerContent .top-content .place-name p {
        font-size: 18px;
    }

    .wp-cover .price-group .Cmnew-price > p {
        font-size: 25px;
    }

    .wp-cover .price-group .Cmnew-price .usd-wrapper p:last-child {
        margin: 0;
        font-size: 14px;
        line-height: 1;
    }

    .bannerContent .top-content .c-section p {
        font-size: 14px;
    }

    .payBanner .bannerWrapper .bannerContainer > div {
        width: 100%;
    }

    .bannerContent .top-content {
        padding: 25px 15px;
        margin-top: -45px;
    }

    .wp-cover .price-group .Cmnew-price {
        align-items: flex-start;
    }

    header .payment-wrapper .header-container img {
        max-width: 120px !important;
    }

    header .payment-wrapper .header-container {
        gap: 15px;
    }

        header .payment-wrapper .header-container img {
            max-width: 120px;
        }

    .payment-header .btnPay-wrapper button.hs-btn a svg {
        margin: 0 !important;
        max-width: 15px;
        width: 100%;
    }

    .payment-header .btnPay-wrapper button.hs-btn a {
        font-size: 12px;
    }

    .payment-header .btnPay-wrapper {
        gap: 5px;
        padding: 5px 10px;
    }

        .payment-header .btnPay-wrapper .btnpay-text {
            display: none;
        }

    .deal-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
    }

    .deal-details {
        text-align: left;
        margin-top: 10px;
    }

    .price-container {
        justify-content: flex-start;
        font-size: 1.3em;
    }

    .flight-price {
        font-size: 20px;
    }

    header.cm-header .mob-header .closeMenu {
        display: flex;
        width: 100%;
        justify-content: right;
      /*  margin-bottom: 50px;*/
    }

        header.cm-header .mob-header .closeMenu span {
            width: 40px;
            height: 40px;
            background: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--theme_color);
            font-size: 22px;
            cursor: pointer;
        }

    header.cm-header .toggleMenu,
    header.cm-header .toggleMenu .navbar-toggle {
        display: block !important;
        border-radius: 4px;
        padding: 8px 6px;
    }

    header.cm-header .header-wrapper > .header-menu-wrapper {
        display: none;
    }

    header.cm-header .header-wrapper > .header-btn {
        display: none;
    }
}


@media(max-width:499px) {
    .quote-form .from-to,
    .quote-form .departure-return,
    .quote-form .personal-details {
        flex-direction: column;
    }

    .quote-form .drop-down .form-group {
        width: 100%;
    }

    .quote-form .drop-down {
        flex-direction: column;
    }
}
.toplistprice {
    font-size: 21px !important;
    color: #e1b964;
    font-weight: 900;
}
.about-contact li {
    color: #000;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    font-family: "Roboto", sans-serif !important;
}

.about-contact ul {
    padding-left: 25px;
}
.bg-atlanta {
    position: relative;
    background-image: url('../../images/car-img/car-bg.webp');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ui-widget-content{max-width:80%;}

.footer-icon ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
}

    .footer-icon ul li img {
        width: 100%;
    }

.footer-icon .container {
    padding: 0px;
}