@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quattrocento Sans:wght@300;400;500;600;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --first-color: #F78800;
    --second-color: #ED5506;
    --third-color: #00489f;
    --h-color: #00285F;
    --color-white: #ffffff;
    --font-family: "Quattrocento Sans", sans-serif;
    --h-font-family: "Raleway", sans-serif;
    --text-color: #2e2e2e;
}

body {
    font-family: var(--font-family);
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

ul {
    padding: 0;
    margin: 0;
}

h1,
p {
    margin-bottom: 0;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    color: #000;
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 10px;
}

.border-bottom {
    width: 15%;
    height: 4px;
    background-color: var(--first-color);
    margin: auto;
}

.default-padding {
    padding: 65px 0;
}


h1 {
    color: var(--h-color);
    font-size: 32px;
    font-family: var(--h-font-family);
    font-weight: bold;
    border-bottom: 1px solid #dde1de;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.theme_button {
    width: 100%;
    display: inline-block;
    border: 2px solid transparent;
    outline: none;
    background-color: var(--second-color);
    padding: 8px 20px;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
    font-weight: 600;
    color: var(--color-white);
}

.theme_button:hover {
    border-color: var(--second-color);
    color: var(--second-color);
    background: none;
}

.padding-top-24 {
    padding-top: 24px;
}

.add-border {
    position: relative;
}

.add-border::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--first-color);
    border-radius: 5px;
}

.add-border-center {
    position: relative;
}

.add-border-center::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 120px;
    height: 4px;
    background: var(--first-color);
    border-radius: 5px;
    transform: translateX(-50%);
}

/* =========!!header-section!!========= */

.navbar {
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    padding: 20px 0;
}

.navbar-brand {
    padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
    padding: 0 0 5px 0;
    transition: all 0.4s ease-in-out;
    border-bottom: 2px solid transparent;
    color: #000;
    font-weight: 500;
}

li.nav-item {
    padding: 0 15px;
}

.navbar-expand-lg .navbar-nav .nav-link.active {
    border-bottom: 2px solid var(--third-color);
    color: var(--third-color);
    font-weight: 600;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    border-bottom: 2px solid var(--third-color);
    color: var(--third-color);
    font-weight: 600;
}

.get-a-quote {
    background-color: var(--second-color);
    color: var(--color-white) !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}

.get-a-quote:hover {
    background-color: transparent;
    color: var(--second-color) !important;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}


/* ====================== bredcrumb section ====================== */
.breadcrumb_section {
    padding: 12px 0;
    background: #f5f5f5;
}

.breadcrumb_section ul.breadcrumb {
    margin-bottom: 0px;
}

.breadcrumb_section ul.breadcrumb li:not(:last-child) {
    margin-right: 40px;
}

.breadcrumb_section ul.breadcrumb li {
    position: relative;
}

.breadcrumb_section ul.breadcrumb li:not(:last-child):after {
    content: "\F0142";
    position: absolute;
    right: -30px;
    top: 50%;
    display: inline-block;
    font: normal normal normal 24px / 1 "Material Design Icons";
    font-size: 20px;
    transform: translateY(-50%);
}

/* ====================== bredcrumb section ====================== */

/* =======!!home-section!!========= */

a.nav-link.useFulLinks-dropDown {
    cursor: pointer;
    position: relative;
    text-align: center;
    text-decoration: none;
    z-index: 3;
    transform: perspective(1000px);
}

ul.useFulLinks_menu_list {
    background-color: #fff;
    list-style-type: none;
    position: absolute;
    /* left: 70%; */
    padding: 15px 10px 10px 10px;
    top: 66px;
    visibility: hidden;
    opacity: 0;
    z-index: 3;
    /* border: 1px solid #e6e6e6; */
    border-top: none;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    transform: translateY(10px);
    transition: 0.5s;
    border-radius: 6px;
}

.navbar-nav li:hover .useFulLinks_menu_list {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.useFulLinks_menu_list a {
    color: #000;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    -webkit-transition: all 1s;
    transition: all 1s;
}


.useFulLinks_menu_list li a {
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding-bottom: 4px;
    margin-bottom: 2px;
    padding: 6px 20px;
    border-radius: 4px;
}

.useFulLinks_menu_list li a:hover {
    background: var(--second-color);
    color: var(--color-white);
}


/* =========!!info-btn-sidebar!!=========== */
.toggle {
    position: absolute;
    height: 46px;
    width: 169px;
    text-align: center;
    cursor: pointer;
    background: #f19505;
    color: var(--color-white);
    right: 288px;
    top: 42%;
    line-height: 46px;
    transform: rotate(90deg);
    font-weight: 600;
    border-radius: 0 0 4px 4px;
}

.sidebarContactUsInfo .toggle {
    font-size: 18px;
    color: var(--color-white);
}

aside {
    background: var(--color-white);
    width: 350px;
    height: auto;
    position: fixed;
    transition: .3s;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

aside.close {
    right: 0;
    transition: .3s;
}

.toggle:before {
    content: "\efec";
    font-family: remixicon;
    font-size: 18px;
    color: #fff;
    padding-right: 10px;
}

.toggle.active:before {
    content: "\eb99";
    padding-right: 10px;
}

.sidebarContactUsInfo {
    padding: 25px 18px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
}

.contactInfo input {
    width: 100%;
    outline: none;
    padding: 8px 15px;
    margin-bottom: 8px;
    border: 2px solid #e6e6e6;
    border-radius: 4px;
}

.submitBttn {
    margin-top: 10px;
    width: 100%;
    border: none;
    background: var(--second-color);
    color: var(--color-white);
    padding: 8px 0;
    border-radius: 30px;
}

/* !!=========new-banner-section===========!! */
.new-banner-section {
    background-color: #eee;
}

.newsearch-Box-Wrapper .lableTitle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.newsearch-Box-Wrapper .lableTitle i {
    color: var(--second-color);
    font-size: 30px;
}

.newsearch-Box-Wrapper .lableTitle span {
    color: var(--second-color);
    font-weight: bold;
    font-size: var(--font-family);
}

.newsearch-Box-Wrapper-Col {
    display: flex;
    align-items: center;
    position: relative;
}

.newsearch-Box-Wrapper-left {
    width: 100%;
}

.newsearch-Box-Wrapper-right {
    width: 100%;
}

.inputfield input,
.inputfield select {
    width: 100%;
    border: 1px solid #dde1de;
    outline: none;
    padding: 10px 20px;
    border-radius: 30px;
}

.inputfield-Half input[type="date"] {
    width: 100%;
    height: 46px;
    border: none;
    border-top: 1px solid #dde1de;
    border-left: 1px solid #dde1de;
    border-bottom: 1px solid #dde1de;
    outline: none;
    padding: 10px 20px;
    border-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.inputfield-Half.inputBox {
    padding-top: 13px;
}

.select {
    background-image: url('../image/icon/time-fill.png');
    background-repeat: no-repeat;
    display: inline-block;
    background-position: right;
    background-position-x: 90%;
    background-size: 26px;
}

.selectCountry {
    background-image: url('../image/icon/arrow-down.png');
    background-repeat: no-repeat;
    display: inline-block;
    background-position: right;
    background-position-x: 95%;
    background-size: 30px;
}

.res-hideSelect select {
    background: transparent;
    width: 100%;
    margin-top: 0px;
    z-index: -1 !important;
}

select {
    appearance: none;
    text-indent: 0.01px;
    cursor: pointer;
}

.inputfield-Half input[type="datetime"],
.inputfield-Half select {
    width: 100%;
    border: none;
    border-top: 1px solid #dde1de;
    border-right: 1px solid #dde1de;
    border-bottom: 1px solid #dde1de;
    outline: none;
    padding: 10px 20px;
    border-radius: 30px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.bottom_input_grop {
    display: flex;
    align-items: center;
    border: 1px solid #dde1de;
    outline: none;
    padding: 8px 20px;
    border-radius: 30px;
}

.bottom_input_grop .mdi-information-outline {
    margin-right: 10px;
}

.bottom_input_grop .mdi-information-outline:before {
    font-size: 25px;
    color: var(--second-color);
    line-height: 1;
}

.bottom_input_grop .age {
    width: calc(100% - 35px);
    display: flex;
}

.bottom_input_grop .age select {
    width: calc(100% - 33px);
    border: none;
}

.inputdropdown {
    position: relative;
}

.inputdropdown:before {
    content: "\F0140";
    display: inline-block;
    font: normal normal normal 24px / 1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: -6px;
    font-size: 30px;
    top: -3px;
    line-height: 1;
}

.bottom_input_grop label {
    padding-right: 10px;
    white-space: nowrap;
}

.bottom_input_grop select:focus {
    outline: none;
    box-shadow: none;
}

.newsearch-Box-Wrapper-Col::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    background-color: #dde1de;
    left: 50%;
    bottom: 8px;
    transform: translate(-50%, 0);
}

.customer_id {
    display: flex;
    align-items: center;
}

.customer_id p {
    margin-left: auto;
    font-weight: 500;
    margin-right: 8px;
}

.customer_id .inputfield {
    margin-left: 10px;
}

.customer_id .inputfield:last-child {
    margin-right: 47px;
}

.searchBox-promocode-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country.bottom_input_grop {
    position: relative;
}

.country.bottom_input_grop button {
    border: none;
    position: absolute;
    right: 31px;
    background: none;
    line-height: 0;
    top: 10px;
    width: 25px;
    height: 25px;
}

.country.bottom_input_grop button .mdi {
    position: absolute;
}

.country.bottom_input_grop button .mdi-close {
    display: none;
}

.country.bottom_input_grop button .mdi-close:before {
    color: var(--second-color);
}

.offer_row,
.customer_row {
    display: none;
}

.offer_row.active,
.customer_row.active {
    display: block;
}

.country.bottom_input_grop button .mdi:before {
    line-height: 0;
    font-size: 30px;
}

.searchBox-promocode-wrapper-left,
.searchBox-promocode-wrapper-right {
    width: 100%;
}

.searchBox-promocode-wrapper-left .input-box-modale {
    width: 100%;
    border: 1px solid #dde1de;
    outline: none;
    padding: 10px 20px;
    border-radius: 30px;
}

.searchBox-promocode-wrapper-right button {
    width: 100%;
    border: 2px solid transparent;
    outline: none;
    background-color: var(--second-color);
    padding: 8px 20px;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.searchBox-promocode-wrapper-right button a {
    color: var(--color-white);
    font-weight: bold;
    transition: all 0.4s ease-in-out;
}

.searchBox-promocode-wrapper-right button:hover {
    background-color: transparent;
    color: var(--second-color);
    border: 2px solid var(--second-color);
}

.searchBox-promocode-wrapper-right button:hover a {
    color: var(--second-color);
}

/* ===========!!special-offer-car!!============ */

.banner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.special-offer-heading-title {
    text-align: center;
}

.special-offer-heading-title h1 {
    font-size: 50px;
    font-weight: bold;
    color: var(--h-color);
}

.offer-stock-car {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.special-offer-heading-title .para-text {
    width: 80%;
    margin: auto;
    padding-top: 20px;
}

.offer-stock-car p {
    font-size: 17px;
    font-weight: 600;
}

.offer-stock-car a {
    color: var(--color-white);
    font-size: 17px;
    background-color: var(--second-color);
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.offer-stock-car a:hover {
    background-color: transparent;
    color: var(--second-color) !important;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.offers-car-slider .slick-slide {
    margin: 15px;
}

/* box-modale */
.main-car-slider .offers-car-slider {
    margin: -320px auto;
    width: 92%;
}

.car-items {
    position: relative;
    overflow: hidden;
    background-color: var(--color-white);
    border: 1px solid #dde1de;
    border-radius: 12px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px !important;
}

.car-modale-item img {
    width: 100%;
}

.car-items .car-title-content {
    position: relative;
    background-color: #fff;
    padding: 20px 16px;
    margin-top: -40px;
    border-radius: 0px 0px 12px;
}

.car-title-content h4 {
    color: var(--h-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0px;
}

.car-title-content p {
    margin-bottom: 15px;
}

.car-title-content ul {
    padding-top: 15px;
    border-top: 1px solid #dde1de;
}

.car-title-content ul li {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 15px;
}

.car-title-content ul li>div {
    width: 100%;
}

.nameing-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nameing-icon span {
    text-transform: capitalize;
    font-size: 18px;
    color: #2e2e2e;
}

.car-title-content ul li img {
    width: 18px;
    opacity: 0.5;
}

.car-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.car-title-content .expoler-bttn {
    background: var(--second-color);
    text-align: center;
    color: var(--color-white);
    font-size: 14px;
    padding: 6px 18px;
    border-radius: 30px;
    text-transform: capitalize;
}

.offers-car-slider .slick-arrow {
    border-radius: 5%;
    position: absolute;
    left: 14px;
    top: -10%;
    font-size: 21px;
    background: var(--second-color);
    padding: 5px 10px;
    color: var(--color-white);
    border: 1px solid var(--second-color);
    z-index: 1;
}

.offers-car-slider .NextArrow.slick-arrow {
    right: 20px;
    left: unset;
}

button.PrevArrow.slick-arrow {
    left: 20px;
}

.offers-car-slider .slick-arrow:hover {
    background: var(--first-color);
    color: #fff;
    transition: .3s;
    border: 1px solid var(--first-color);
}

ul.slick-dots {
    position: absolute;
    left: 50%;
    bottom: -18px;
    padding: 0;
    transform: translate(-50%, 0);
}

ul.slick-dots li {
    margin-right: 8px;
    border-color: #fff;
    ;
    border: 1px solid #fff;
    ;
    background: var(--color-white);
    ;
    border-radius: 50%;
    display: inline-block;
    width: 10px;
    height: 10px;
}

ul.slick-dots li button {
    display: none;
}

ul.slick-dots li.slick-active {
    width: 10px;
    height: 10px;
    border-color: var(--second-color);
    border: 1px solid var(--first-color);
    background-color: transparent;
}

/* !!=========sale-car-section==========!! */
.sale-car-section {
    background-color: var(--third-color);
    padding: 65px 0px;
}


/* .car-read-section {
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 350px;
} */



.join-car-section h2 {
    font-size: 36px;
    color: var(--color-white);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0px;
    border-bottom: 0;
    text-align: left;
}

.join-car-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.join-form {
    position: relative;
}

.join-form input {
    width: 60%;
    border: 2px solid transparent;
    outline: none;
    padding: 10px 20px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.join-form input:focus {
    border: 2px solid var(--second-color);
    border-right: transparent;
}

.join-form button.submit__btn {
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
}

.join-form button.submit__btn {
    padding: 11px 30px;
    background: var(--second-color);
    color: var(--color-white);
    font-size: 17px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

/* ======== !!carRentalOffers-section!! ========= */

.carRentalOffers-section {
    padding-top: 65px;
}

.budgetBox {
    padding: 15px 16px 19px 16px;
    border-radius: 12px;
    border: 1px solid #dde1de;
    margin-bottom: 24px;
    transition: all 0.3s ease-in-out;
    height: 225px;
    position: relative;
}

.budgetBox:hover {
    transform: translateY(-3px);
}

.budgetBox .budgetBox-image {
    position: relative;
    overflow: hidden;
    height: auto;
    border: 1px solid #dde1de;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 18px;
}

.budgetBox .budgetBox-image img {
    display: block;
    width: 100%;
}

.budget-cart-title {
    color: var(--h-color);
    font-weight: 600;
}

.budget-linkes {
    padding: 8px 0;
}

.budget-linkes a {
    font-size: 15px;
    line-height: 20px;
}

.budget-bttn {
    text-align: right;
}

.budget-bttn a {
    background-color: var(--second-color);
    padding: 4px 5px;
    color: var(--color-white);
    border-radius: 4px;
}

/* ====== !!car-services-modale!! ======= */
.serviceBox-modale {
    background-color: var(--color-white);
    border: 1px solid #dde1de;
    padding: 30px 15px;
    text-align: center;
    margin-bottom: 0px;
    border-radius: 15px;
    position: relative;
}

.serviceBox-modale h4 {
    color: var(--first-color);
}

.budget-linke {
    background: var(--second-color);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.4s;
}


.budget-linke:hover {
    background-color: transparent;
    color: var(--second-color);
    box-shadow: rgba(100, 100, 111, 0.2) 0px -2px 35px 0px;
}

/* ======== !!budgetAbout-service!! ========= */
.budgetAbout-service {
    background-image: url(../image/bg-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0;
}

.budgetAbout-service::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    top: 0;
    left: 0;
    z-index: 1;
}

.budgetAbout-service .location-wrap {
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 2;
    gap: 12px;
}

.location-wrap-left h2 {
    color: var(--color-white);
    font-size: 45px;
    font-weight: bold;
    padding-bottom: 20px;
    line-height: 0;
}

.location-wrap-left h5 {
    color: var(--color-white);
    font-size: 30px;
    line-height: normal;
    font-weight: 600;
}

.location-wrap-left p {
    color: var(--color-white);
}

.find-location-bttn {
    background-color: var(--first-color);
    padding: 11px 16px;
    color: var(--color-white);
    font-weight: 600;
    transition: all 0.4s ease-in-out;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.find-location-bttn:hover {
    color: var(--first-color);
    background-color: var(--color-white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px -2px 35px 0px;
}


/* ================ !!whatsapp-ring End!! =============== */
.contact-float {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 999;
}

.whatsapp-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 11;
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.whatsapp-ring-circle {
    width: 110px;
    height: 110px;
    top: 0;
    left: 0;
    position: absolute;
    /* background-color: transparent;
    border-radius: 100%;
    border: 2px solid #25d366;
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s; */
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: .5;
}

/* .whatsapp-ring-circle-fill,
.whatsapp-ring-img-circle {
    background: #107cb3;
    background: #107cb3;
} */

.whatsapp-ring-circle-fill {
    width: 80px;
    height: 80px;
    top: 16px;
    left: 16px;
    /* position: absolute;
    background-color: #25d366;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%; */
}

.whatsapp-btn-icon {
    display: flex;
}

.whatsapp-ring-img-circle .whatsapp-btn-icon i {
    font-size: 30px;
    color: white;
}

.whatsapp-ring-img-circle {
    background-color: #25d366;
    width: 50px;
    height: 50px;
    top: 31px;
    left: 31px;
    position: absolute;
    background-size: 20px;
    border-radius: 100%;
    /* border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%; */
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        -webkit-opacity: .1
    }

    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -webkit-opacity: .5
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .6
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6
    }

    100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .6
    }
}

/* ================= !!ourFleet-section!! ================= */
.ourFleet-section {
    padding: 30px 0;
}

.offer-imageBanner img {
    border-radius: 10px;
}

.budgetTitleContent {
    text-align: left;
    color: var(--h-color);
    font-size: 32px;
    font-family: var(--h-font-family);
    font-weight: bold;
    border-bottom: 1px solid #dde1de;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.budgetTitlePara {
    color: var(--text-color);
    font-size: 20px;
    padding-top: 8px;
    font-weight: 600;
}

.budgetHeading {
    font-weight: 700;
    font-size: 24px;
    color: var(--h-color);
    font-family: var(--h-font-family);
    margin-bottom: 15px;
}

.paraBudget {
    color: #63666a;
    font-size: 18px;
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 600;
}

.ourFleetDefualtMargin {
    margin-bottom: 400px;
}

.trustedBrandsContent {
    text-align: center;
    /* border: 1px solid #e6e6e6; */
}

.trustedBrandsBanner {
    width: 120px;
    height: 120px;
    background-color: #f8f8f8;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

.trustedBrandsContent span {
    font-size: 16px;
    line-height: 26px;
    color: #63666a;
    margin-top: 10px;
}

/* ===================== !!Budget-Details-Section!! =============== */
.Budget-Details-Section {
    padding: 60px 0;
}

.Budget-Details-Section .car-items {
    height: 100%;
    margin-bottom: 0 !important;
}

.car-modale-item {
    overflow: hidden;
    position: relative;
}

.Budget-Details-Section .car-modale-item .budgetImage {
    padding: 30px;
    transition: all 0.2s ease-in-out;
}

.car-modale-item:hover .budgetImage {
    transform: scale(1.1);
}


.Budget-Details-Section .car-items .car-title-content {
    position: relative;
    background-color: #fff;
    padding: 20px 16px;
    margin-top: 0px;
    border-radius: 0px 0px 12px;
}

.Budget-Details-Section .car-title-content h4 {
    margin-bottom: 0;
    font-size: 18px;
}

.detail-bg {
    background-color: #fff;
    border-radius: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    /* border: 2px solid #e6e6e6; */
    margin-bottom: 60px;
}

.offersContentItem {
    padding: 30px 37px;
}

.D-Title {
    text-align: left;
    font-size: 42px;
    color: var(--h-color);
    font-weight: bold;
    border-bottom: 1px solid #dde1de;
}

.D-para {
    color: #000;
    font-size: 17px;
    font-weight: 500;
}

.carName {
    text-align: center;
}

.carName p {
    margin-bottom: 15px;
}

.carName button {
    border: none;
    outline: none;
}

.carName .expoler-bttn {
    padding: 6px 22px;
    transition: all 0.4s;
    border: 1px solid var(--second-color);
}

.carName .expoler-bttn:hover {
    background-color: var(--color-white);
    border: 1px solid var(--second-color);
    color: var(--second-color);
    font-weight: 600;
}

.modal-dialog {
    margin: 4.75rem auto;
}

/*  =============== !!Budget-Offers-Section!! ================ */
.Budget-Offers-Section {
    padding: 60px 0;
}

/*  =============== !!long-term-leasing!! ================ */
.budgetBox-content p {
    font-size: 18px;
    color: #63666a;
    line-height: normal;
    text-align: justify;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.budgetBox-content h4.budget-cart-title {
    font-size: 24px;
    font-weight: 700;
}

.leasingServiceBoxModale {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.leasingTitle {
    font-weight: 700;
    color: var(--h-color) !important;
    margin-bottom: 16px;
    font-size: 24px;
}

.leasingPara {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}

.leasingBusinessContent {
    margin-top: 20px;
}

/* ----------- !!Label!! ----------- */
.nosVehicleList-wrapper {
    margin-top: 30px;
}

.nosVehicleList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.car-link label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #dde1de;
    padding: 20px 0;
    border-radius: 8px;
    cursor: pointer;
}

.car-link label p {
    font-size: 14px;
}

.car-link input,
.year-link input {
    display: none;
}

.car-link input:checked+label {
    border-color: var(--second-color);
    color: var(--second-color);
}

.year-link label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #dde1de;
    padding: 18px 0;
    border-radius: 8px;
    cursor: pointer;
}

.year-link label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.year-link input:checked+label {
    border-color: var(--second-color);
    color: var(--second-color);
}

/* =================================== */
.leasingBgBox {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    border-radius: 15px;
    padding: 40px 35px;
    margin-top: 40px;
}

.priceRange {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-range-slider {
    width: 100%;
    float: left;
    margin-top: 30px;
}

.price-range-slider .range-value {
    margin: 0;
}

.priceRange .range-value input {
    width: 40px;
    background: none;
    text-align: center;
    color: var(--text-color);
    font-size: 16px;
    font-weight: bold;
    box-shadow: none;
    border: none;
    outline: none;
    margin: 20px 0 20px 0;
}

.price-range-slider .range-bar {
    border: none;
    background: #dde1de;
    height: 4px;
    width: 99%;
    margin-left: 8px;
}

.price-range-slider .range-bar .ui-slider-range {
    background: var(--second-color);
}

.price-range-slider .range-bar .ui-slider-handle {
    border: none;
    border-radius: 25px;
    background: #fff;
    border: 2px solid var(--second-color);
    height: 17px;
    width: 17px;
    top: -0.52em;
    cursor: pointer;
}

.price-range-slider .range-bar .ui-slider-handle+span {
    background: var(--second-color);
}

.rangeValue {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.submitLeaseEnquiry {
    display: block;
    width: 200px;
    margin: auto;
    text-align: center;
    padding: 12px 0;
    color: var(--color-white);
    background: var(--second-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}

.submitLeaseEnquiry:hover {
    color: var(--second-color);
    background: transparent;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.contact-us-quick-box {
    text-align: center;
}

.contacTquickCall {
    margin-top: 20px;
}

.contacTquickCall a {
    display: block;
    padding: 10px 0 0 0;
}

.contacTquickCall a.phone-quick,
.contacTquickCall a.email-quick {
    color: var(--second-color);
    font-size: 20px;
}

/* =============== !!section-smart-monthlyl!! ================ */
.bannerBewSection {
    padding: 30px 0;
    background-color: var(--color-white);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
}

.smart-monthlyBttn {
    margin-top: 44px;
}

.monthRentalBox {
    text-align: center;
    background: var(--color-white);
    border-radius: 10px;
    padding: 40px 20px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    /* border: 1px solid #dde1de; */
}

.monthRentalBox img {
    width: 36px;
    max-height: 36px;
}

.monthRentalTitle {
    font-size: 22px;
    line-height: 1;
    margin: 30px 0 15px;
    color: var(--h-color);
    font-weight: 700;
}

.monthRentalBox:hover {
    transform: translateY(-20px);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.cardBlogSection {
    padding: 60px 0;
}

.cardBlogBox {
    background-color: #f5f5f5;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
}

.cardImage img {
    width: 100%;
}

.cardContent {
    padding: 30px;
}

.cardContent .cardTitle {
    font-size: 24px;
    color: var(--h-color);
    font-weight: 700;
}

.cardContent .cardPara {
    color: #000;
    line-height: 1.4;
    font-size: 16px;
}

.monthlyTestimonialBox {
    border: 1px solid #f7f3f3;
    overflow: hidden;
    height: 100%;
    padding: 30px;
    border-radius: 10px;
}

.starRating-wrap {
    margin-bottom: 15px;
}

.starRating-wrap img {
    width: 15px;
}

.monthlyTestimonialBox .testimonialPara {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.monthlyTestimonialBox strong {
    color: var(--first-color);
    margin-top: 12px;
    display: block;
}

/* ----------//----------- */
.saleCarSection {
    margin-top: 60px !important;
}










































/* =============== !!contactSectionForm!! ================ */
.contactSectionForm {
    padding: 80px 0;
}




/* =============== !!footer-section!! ================ */
.footer-section {
    background-color: #00285f;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px -2px 35px 0px; */
    /* border-top: 2px solid #dde1de; */
    padding: 50px 0 30px 0;
}

.box-info-footer {
    margin-top: 35px;
}

.box-info-footer .infoHere {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
}

.box-info-footer .infoHere i {
    background-color: var(--color-white);
    line-height: 22px;
    text-align: center;
    padding: 4px 8px;
    border-radius: 5px;
    color: var(--first-color);
}

.box-info-footer .infoHere span {
    color: var(--color-white);
}

.box-info-helf-footer {
    margin-top: 35px;
}

.box-info-helf-footer p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 25px;
    color: var(--color-white);
    font-weight: 600;
}

.box-info-helf-footer img {
    width: 28px;
}

.box-info-helf-footer a {
    color: #dde1de;
    font-weight: 600;
}

.footer-title {
    color: var(--color-white);
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    font-family: var(--h-font-family);
}

.menu-footer li {
    margin-bottom: 16px;
}

.menu-footer li a {
    display: block;
    width: 100%;
    color: var(--color-white);
    font-size: 16px;
    text-decoration: none;
    transition-duration: 0.2s;
    line-height: 26px;
}

.menu-footer li a:hover {
    color: var(--second-color);
    padding-left: 2px;
}

/* =================== */
.footer-bottom {
    padding: 30px 0px 10px 0px;
    color: var(--color-white);
    font-size: 14px;
    border-top: 1px solid var(--color-white);
    margin-top: 50px;
}

.footer-para {
    font-weight: 500;
    font-size: 18px;
    margin-right: 10px;
}

a.icon-socials {
    display: inline-block;
    height: 35px;
    width: 35px;
    transition-duration: 0.2s;
    line-height: 35px;
    background-color: var(--color-white);
    text-align: center;
    margin-right: 7px;
    border-radius: 4px;
}

a.icon-socials:hover {
    background: var(--second-color);
    color: var(--color-white);
}

/* !===========!Media Queries!===============! */
@media only screen and (min-width: 1440px) {
    .newsearch-Box-Wrapper-Col::after {
        left: 44%;
    }

    .banner-image img {
        height: auto;
    }
}

/* / ======================= ninja css =============== / */
.headerBtn {
    display: inline-block;
    font-size: 16px;
    font-family: var(--h-font-family);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    background: #fff;
    margin-top: 24px;
    transition: 0.5s;
    color: var(--text-color);
}

.headerBtn:hover {
    background: #000;
    color: #fff;
}

.special-offer-car {
    padding-bottom: 380px;
    padding-top: 160px;
}

.home-section {
    position: relative;
}

.bannerSlider .slick-list .banner_slide {
    height: 509px !important;
    background-size: cover !important;
    background-position: center center !important;
    position: relative;
    z-index: 1;
}

.bannerSlider .slick-list .banner_slide:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    z-index: -1;
    opacity: 0.6;
}

.bannerSlider ul.slick-dots {
    position: absolute;
    left: inherit;
    padding: 0;
    transform: translate(-50%, -50%);
    right: 80px;
    width: 20px;
    top: 50%;
    cursor: pointer;
}

.bookRide.container {
    position: absolute;
    bottom: -115px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 25px;
    border-radius: 23px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.banner-caption {
    padding-top: 65px;
    z-index: 4;
    position: relative;
}

.banner-caption .banner-title {
    color: #fff;
    font-weight: 400;
    font-size: 48px;
    border-bottom: 0
}

.banner-caption .banner-title span {
    display: inline-block;
    font-weight: 700;
}

.banner-caption p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 13px;
}

.slide_design {
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    height: 800px;
    overflow: hidden;
}

.slide_design .shap-1 {
    z-index: 3;
    opacity: 1 !important;
}

.slide_design .shap-1,
.slide_design .shap-2,
.slide_design .shap-3 {
    width: 100%;
    height: 100%;
    background: #ed5505;
    border-radius: 50px;
    transform: rotate(45deg);
    position: absolute;
    left: -257px;
    top: -212px;
    opacity: .6;
}

.slide_design .shap-2 {
    left: -192px;
}

.slide_design .shap-3 {
    left: -146px;
    top: -221px;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: .6;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: .6;
    }
}

.banner_slide.slick-active .slide_design .shap-1 {
    animation: fadeIn 2s;
}

.banner_slide.slick-active .slide_design .shap-2 {
    animation: fadeIn 2.5s;
}

.banner_slide.slick-active .slide_design .shap-3 {
    animation: fadeIn 3s;
}

/* / ======================= ninja css =============== / */

.location-box {
    position: relative;
}

.autocomplete-box {
    background: #fff;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
    max-height: 320px;
    overflow: hidden;
    overflow-y: auto;
}

.autocomplete-box ul {
    padding: 0;
    margin: 0;
}

.autocomplete-box ul li {
    border-bottom: 1px solid #dde1de;
    font-size: 15px;
    font-weight: 400;
    padding: 14px 0;
    padding-left: 43px;
}

.autocomplete-box ul li.li-heading {
    position: relative;
    font-weight: bold;
    display: flex;
}

.autocomplete-box ul li.li-heading .result-count {
    margin-left: auto;
}

.location-box .mdi-close.clear-button {
    position: absolute;
    right: 20px;
    top: 0px;
}

.location-box .mdi-close.clear-button:before {
    font-size: 30px;
    font-weight: 300;
    color: var(--second-color);
}

.autocomplete-box ul li.li-heading .mdi {
    position: absolute;
    left: 10px;
    top: 8px;
}

.autocomplete-box ul li.li-heading .mdi:before {
    font-size: 23px;
}

.autocomplete-box ul li:not(.li-heading) {
    cursor: pointer;
}

/* ==================================== carList ====================== */
.hotel-listing {
    padding-bottom: 65px;
}

.hotel-listing .hotel-block {
    padding: 0px;
    box-shadow: 1px 7px 24px 0px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    overflow: hidden;
}

.hotel-listing .hotel-block:last-child {
    margin-bottom: 0px;

}

.heading-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--first-color);
}

.allFeatures {
    text-align: center;
    border-top: 1px solid #dde1de;
    margin-top: 10px !important;
    padding-top: 10px;
}

.allFeatures a {
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
    font-weight: 700;
    color: var(--first-color);
}

.hotel-listing .hotel-block .image-box {
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}

.hotel-image-slider {
    height: 400px;
    margin-bottom: 20px;
}

.hotel-image-slider .slick-list,
.hotel-image-slider .slick-list .slick-track {
    height: 100%;
}

.hotel-image-slider .slick-prev,
.hotel-image-slider .slick-next {
    top: 50%;
    transform: translateY(-50%);
}

.hotel-image-slider .slick-prev {
    left: 30px;
}

.hotel-listing .hotel-block .image-box img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blogDetail {
    padding-top: 50px;
}

.hotel-listing .hotel-block .image-box a {
    height: 100%;
    object-fit: cover;
}

.hotel-listing .hotel-block .image-box a img {
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    -webkit-transition: all 0.5s linear 0s;
    transition: all 0.5s linear 0s;
}

.hotel-listing .hotel-block .image-box.tour-package {
    position: relative;
}

.hotel-listing .hotel-block .image-box.tour-package .tour-days {
    position: absolute;
    top: 24px;
    left: 0;
    background: #F8F8FF;
    border-radius: 0 10px 10px 0;
    padding: 12px 24px;
}

.hotel-listing .hotel-block .apartment-detail {
    background: rgba(77, 115, 252, 0.1);
    border-radius: 10px;
    padding: 16px;
}

.hotel-listing .hotel-block .rating-number {
    padding: 12px;
    border-radius: 5px;
    background: #1a73e8;
    color: #F8F8FF;
}

.hotel-listing .hotel-block:hover .image-box img {
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
    -webkit-transition: all 0.5s linear 0s;
    transition: all 0.5s linear 0s;
}

.hotel-listing .hotel-block .hotel-detail {
    padding-top: 20px;
}

.carBlockTitle {
    color: var(--h-color);
    font-size: 22px;
    font-weight: 600;
}

.hotel-listing .hotel-block .hotel-detail h6 {
    font-size: 13px;
}

.carsFeatures h4 {
    font-size: 14px;
    text-align: center;
}

.featured_lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.featured_lists li {
    margin-bottom: 5px;
}

h3.threeDays {
    font-size: 26px;
    text-align: right;
    line-height: 24px;
    margin-bottom: 0px;
}

h3.threeDays span {
    font-size: 14px;
    font-weight: 400;
}

.week_month {
    display: flex;
    margin-bottom: 16px;
}

.week_month .Weekly {
    width: 100%;
    padding: 5px;
    margin-bottom: 8px;
}

.week_month .Weekly h6 {
    margin-bottom: 0px;
}

.week_month .Weekly h6 {
    font-size: 14px;
    line-height: 16px;
    text-align: right;
    font-weight: 700;
}

.week_month .Weekly h6 button {
    border: none;
    background: none;
}

.fw-700 {
    font-weight: 700;
}

.carsFeatures h4 span {
    font-size: 13px;
    font-weight: 600;
    color: #2e2e2e;
}

.future .mdi:before {
    font-size: 20px;
}

.hotel-listing .hotel-block .pricing {
    padding-top: 24px;
}

@media (max-width: 692px) {
    .hotel-listing .hotel-block .pricing {
        padding-top: 48px;
    }
}

@media (max-width: 576px) {
    .hotel-listing .hotel-block .pricing {
        padding-top: 8px;
    }
}

.hotel-listing .hotel-block .pricing .review {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
}

@media (max-width: 576px) {
    .hotel-listing .hotel-block .pricing .review {
        justify-content: center;
        gap: 8px;
    }
}

.pricing-area {
    padding: 10px;
    background: #fffbf2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.hotel-listing iframe {
    width: 100%;
    height: 240px;
    border-radius: 10px;
}

.gap-24 {
    gap: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.cus-btn {
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.32px;
    padding: 12px 32px;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    gap: 8px;
    transition: all 0.5s ease-in-out;
    border-radius: 10px;
    border: none;
    background: var(--second-color);
    box-shadow: 4px 4px 10px 0px rgb(237 85 6 / 33%);
    color: var(--color-white);
}

.cus-btn:hover {
    background-color: #fff;
    color: var(--second-color) !important;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.carsFeatures {
    flex-wrap: wrap;
}

.pickup_return {
    padding: 65px 0;
    padding-bottom: 20px;
}

.car_short_info p {
    font-size: 15px;
    margin-bottom: 0px;
    font-weight: 600;
    line-height: 1.3;
}

.car_steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 40px;
    grid-gap: 10px;
}

.car_steps .step_item {
    width: 100%;
}

.car_steps .step_item label {
    font-weight: 700;
    color: #b2b2b2;
}

.car_steps .step_item.active label {
    color: var(--first-color);
}

.car_steps .step_item .divider {
    height: 4px;
    background: #B2B2B2;
}

.car_steps .step_item.active .divider {
    background: var(--second-color);
}

/* ==================================== carList ====================== */

/* ============================ Car list modal ========================== */
.carImage {
    padding-bottom: 10px;
    text-align: center;
}

.carImage img {
    width: 80%;
}

.modal-body {
    padding: 25px;
}

.modal-body {
    margin: 0;
}

.car_nameD .information_title {
    font-size: 24px;
    font-weight: 600;
    color: var(--h-color);
}

.car_nameD .modal_feature {
    display: flex;
    list-style: none;
    margin-top: 20px;
}

.car_nameD .modal_feature li {
    margin-right: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.car_nameD .modal_feature li .mdi {
    line-height: 1;
}

.car_nameD .modal_feature li p {
    font-size: 14px;
    margin-top: 5px;
}

.car_nameD .modal_feature li .mdi:before {
    color: var(--second-color);
    font-size: 20px;
    margin-right: 5px;
}

.member_rate_row {
    position: relative;
    background: #fffbf2;
    padding: 25px;
    margin: 0;
    border-radius: 4px;
}

.carImage {
    padding-bottom: 10px;
    text-align: center;
}

.member_rate_content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--h-color);
    text-align: left;
    margin-bottom: 20px;
    border-bottom: 1px solid #dde1de;
}

.member_rate_content p span {
    color: var(--second-color);
}

.member_rate_list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.member_rate_list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 4px;
}

.member_rate_list li:before {
    content: "\F012C";
    font: normal normal normal 24px / 1 "Material Design Icons";
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    left: 0;
    top: -3;
    position: absolute;
    font-size: 20px;
    color: var(--second-color);
}

.member_rate_content a {
    font-size: 15px;
    margin-top: 10px;
    display: inline-block;
    text-decoration: underline;
    font-weight: 600;
}

.action_content p,
.action_content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 9px;
}

.action_content p {
    color: #666;
    margin-bottom: 0px;
    line-height: 1;
}

.action_price {
    margin-bottom: 10px;
}

.action_content h4 {
    color: var(--h-color);
    margin-bottom: 0px;
    padding-left: 10px;
    line-height: 1;
}

.action_content {
    padding-right: 30px;
}

.car_detail_modal_title {
    color: var(--h-color);
    font-size: 32px;
    font-family: var(--h-font-family);
    font-weight: bold;
}

.pay_now.cus-btn {
    background: #00285f;
}

.pay_now.cus-btn:hover {
    background-color: #fff;
}

.show_all_feature {
    margin: 20px 0;
    text-align: center;
}

.show_all_feature a {
    font-size: 16px;
    text-decoration: underline;
    font-weight: 600;
    transition: 0.5s;
}

/* ============================ Car list modal ========================== */


/* ============================= coverage css ============= */
.coverage_list ul {
    list-style: none;
    display: flex;
    margin: 20px 0;
}

.coverage_list ul li {
    font-size: 18px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    padding: 6px 0;
    cursor: pointer;
}

.coverage_list ul li:not(:last-child) {
    margin-right: 25px;
}

.coverage_list ul li .mdi:before {
    color: var(--second-color);
    font-size: 24px;
    line-height: 1;
}

.coverage_list ul li .mdi {
    margin-right: 10px;
}

.coverage_list ul li.active {
    border-color: red;
    font-weight: 600;
}

.coverage_card {
    padding: 40px 25px 20px;
    border: 1px solid #dde1de;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.coverage_card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--h-color);
    font-weight: 600;
}

.coverage_card p {
    margin-bottom: 16px;
}

.coverage_card .coverage_btn {
    border: none;
    padding: 10px 20px;
    width: 100%;
    background: var(--second-color);
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
}

.coverage_card .coverage_btn input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.coverage_card .coverage_btn:hover {
    background: var(--first-color);
}

.coverage_card h3 .mdi {
    color: var(--second-color);
}

.coverage_card h3 .mdi:before {
    font-size: 24px;
}

span.recommended {
    display: inline-block;
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 7px 40px 7px 25px;
    background: var(--second-color);
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

.coverrage_tab_panel .col-md-4:nth-last-child(1),
.coverrage_tab_panel .col-md-4:nth-last-child(2),
.coverrage_tab_panel .col-md-4:nth-last-child(3) {
    margin-bottom: 0px;
}

.coverrage_tab_panel {
    display: none;
}

.coverrage_tab_panel.active {
    display: block;
}

.coverage_card .coverage_btn strike {
    margin-right: 5px;
}

.baseRate,
.baseRate table {
    width: 100%;
    table-layout: fixed;
}

.baseRate td:first-child {
    padding-left: 20px;
}

.baseRate table td {
    padding: 1px 0;
}

.baseRate .toggle_btn {
    cursor: pointer;
    transition: 0.5s;
}

.baseRate .toggle_btn:hover {
    text-decoration: underline;
}

.baseRate td {
    padding: 3px 0;
}

.baseRate .color_text {
    color: var(--first-color);
}

.border-left-1 {
    border-left: 1px solid #dde1de;
}

.border-right-1 {
    border-right: 1px solid #dde1de;
}

.border-top-1 {
    border-top: 1px solid #dde1de;
}

.border-bottom-1 {
    border-bottom: 1px solid #dde1de;
    margin-bottom: 30px;
}

.rate_term_wrapper {
    padding: 20px 0 20px 20px;
}

.rate_term_list {
    width: 40%;
    margin-left: auto;
}

.rate_term_list li {
    color: var(--first-color);
    font-weight: 600;
}

.baseRate tr:last-child td {
    padding-bottom: 20px;
}

.retal_option_close {
    position: absolute;
    right: 0;
    bottom: -12px;
    background: #fff;
    border: none;
    padding: 0 10px;
    color: var(--first-color);
    font-weight: 600;
    transition: 0.5s;
}

.retal_option_close:hover {
    text-decoration: underline;
}

.car_short_information {
    display: flex;
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.car_short_information .car_image {
    width: 30%;
}

.car_content.car_nameD .modal_feature {
    margin-top: 8px;
}

.car_short_information .car_content.car_nameD {
    width: calc(100% - 30%);
    padding-left: 20px;
}

.car_short_information .car_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#reservation-header-details {
    display: flex;
    align-items: center;
    max-width: 400px;
    padding: 10px;
    position: relative;
    background: #fffbf2;
}

#reservation-header-details .nav-car-image {
    width: 120px;
}

#reservation-header-details .nav-car-image img {
    width: 100%;
}

#reservation-header-details .nav_car_info {
    width: calc(100% - 150px);
    padding-left: 10px;
}

.nav_car_toggle {
    width: 22px;
    height: 22px;
    line-height: 22px;
    border: 1px solid var(--first-color);
    background: none;
    color: var(--first-color);
    border-radius: 50%;
    margin-left: 10px;
}

#reservation-header-details:not(.collapsed) .nav_car_toggle {
    transform: scaleY(-1);
}

#reservation-header-details .nav_car_info p {
    font-size: 20px;
    color: var(--first-color);
}

#reservation-header-details .nav_car_info span {
    font-size: 13px;
    line-height: 1.3;
    display: block;
}

span.nav_distance {
    color: darkgreen;
    font-weight: 600;
}

span.unlimited_free {
    color: var(--second-color);
    font-weight: 600;
}

/* ============================= coverage css ============= */

/* ================ blog css =========== */
.post_meta {
    display: flex;
    line-height: 1;
    margin-bottom: 14px;
}

.post_meta li {
    font-size: 14px;
}

.post_meta li .mdi {
    margin-right: 5px;
    color: var(--second-color);
}

.post_meta li:not(:last-child) {
    margin-right: 10px;
}

.blog-box .lightest-black {
    font-size: 1.1rem;
    color: var(--h-color);
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.blog_disc {
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.budget-bttn a.blog_btn {
    display: inline-block;
    width: auto;
    padding: 6px 24px;
    font-size: 16px;
    border-radius: 22px;
}

.car_model_disc {
    margin-bottom: 1.5rem;
}

/* ================ blog css =========== */

/* ============  global section =========== */
.global_section {
    padding: 60px 0px;
}

/* ============  global section =========== */

/* ============== blog detail =========== */
.blog_detail_section {
    padding: 60px 0;
}

.blog_detail_image img {
    width: 100%;
    aspect-ratio: 4/2;
    object-fit: cover;
    border-radius: 4px;
}

.blog_content {
    line-height: 1.5;
    font-size: 15px;
}

.blog_content h1,
.blog_content h2 {
    font-size: 36px;
}

.blog_content h3,
.blog_content h4,
.blog_content h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--h-color);
    font-weight: bold;
}

.blog_content ol,
.blog_content ul,
.blog_content p {
    margin-bottom: 20px;
}

.blog_content p:last-child {
    margin-bottom: 0px;
}

.blog_content ol li,
.blog_content ul li {
    margin-bottom: 6px;
}

.blog_content p:empty {
    display: none;
}

h1.blog_title {
    margin-bottom: 16px;
    font-size: 26px;
}

.blog_detail_image {
    margin-bottom: 10px;
}

h4.blog_sidebar_title {
    margin-bottom: 16px;
    padding-bottom: 6px;
    border-bottom: 1px solid #dde1de;
    font-size: 18px;
    font-weight: bold;
}

.blog_detail_sidebar {
    padding: 16px;
    border: 1px solid #dde1de;
}

.blog-item {
    display: flex;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 14px;
    padding-bottom: 14px;
}

.blog-item .blog_sidebar_image img {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

.blog-item .blog_sidebar_image {
    width: 80px;
}

.blog-item .blog_sidebar_content {
    width: calc(100% - 80px);
    padding-left: 14px;
}

.blog_sidebar_content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.blog_sidebar_content p {
    line-height: normal;
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog_sidebar_content:hover h5 {
    text-decoration: underline;
}

.blog-item:last-child {
    margin-bottom: 0;
    border: none;
    padding-bottom: 0px;
}

/* ============== blog detail =========== */


/* ================ inner banner design ======================== */
.inner_banner_item {
    position: relative;
}

.container.innerBanner_content {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    top: 50%;
}

/* ================ inner banner design ======================== */

.inner_page_slider ul.slick-dots {
    bottom: 15px;
}

.inner_page_slider ul.slick-dots li {
    margin-right: 8px;
    border-color: var(--second-color);
    border: 1px solid var(--second-color);
    background: var(--second-color);
    border-radius: 50%;
    display: inline-block;
    width: 10px;
    height: 10px;
    cursor: pointer;
    ;
}

.inner_page_slider ul.slick-dots li button {
    display: none;
}

/*ul.slick-dots li.slick-active {*/
/*    width: 10px;*/
/*    border-color: var(--second-color);*/
/*    border: 1px solid var(--first-color);*/
/*    background-color: transparent;*/
/*}*/

ul.slick-dots li.slick-active {
    width: auto !important;
    border: none !important;
    background-color: initial !important;
}

.inner_page_slider_content h1 {
    color: #2d2b2c;
    font-size: 41px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
}

.inner_page_slider_content h1 span {
    color: var(--first-color);
}

.inner_page_slider_content h1 span.spanbg {
    background: var(--first-color);
    color: var(--color-white);
}

.inner_page_slider_content p.MsoNormal {
    color: #605d5d;
    margin-bottom: 10px;
}

.inner_page_slider_content p.MsoNormal b {
    color: var(--text-color);
}

.inner_page_slider_content a.headerBtn.header__btn {
    background: var(--second-color);
    color: var(--color-white);
}

.inner_page_slider_content a.headerBtn.header__btn:hover {
    background: #000;
    color: var(--color-white);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.hotel-listing table td {
    border: none;
}

.hotel-listing table td input.form-control,
.hotel-listing table td select.form-control {
    width: 100%;
    border: 2px solid #dde1de;
    outline: none;
    padding: 6px 12px;
    border-radius: 4px;
}

.hotel-listing table td input.form-control:focus,
.hotel-listing table td select.form-control:focus {
    box-shadow: none !important;
    border: 2px solid var(--first-color);
}

.form_checkBox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
}

.form_checkBox input[type=checkbox] {
    position: relative;
    border: 2px solid var(--second-color);
    border-radius: 3px;
    background: none;
    cursor: pointer;
    line-height: 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    opacity: .5;
}

.form_checkBox input[type=checkbox]:checked {
    background-color: var(--second-color);
    opacity: 1;
}

.form_checkBox input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 5px;
    height: 12px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.form_checkBox label {
    width: 100%;
    cursor: pointer;
    color: var(--text-color);
    font-size: 16px;
}

.hidden-menu {
    display: none;
}

p.tr_para {
    color: var(--h-color);
    font-size: 20px;
    font-weight: 600;
}


/* payment page  */
.payment_option_item {
    margin-bottom: 20px;
}

.payment_option_item input[type="radio"] {
    margin-right: 10px;
}

.card_payment_logo img {
    width: 50px;
    margin: 5px;
}

.card_payment_form {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.card_payment_form input[type="text"] {
    margin-bottom: 15px;
}

.payment_terms {
    font-size: 12px;
}

.payment_note {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

/* ------- thankyou---------- */
.thankyou__contect {
    max-width: 70%;
    margin: auto;
    border: 2px dotted var(--second-color);
    text-align: center;
    padding: 40px 10px;
    border-radius: 10px;
}

.thankyou__contect p a.theme_back-to-home {
    display: inline-block;
    border: 2px solid transparent;
    outline: none;
    background-color: var(--second-color);
    padding: 8px 20px;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
    font-weight: 600;
    color: var(--color-white);
    margin-top: 20px;
}

.thankyou__contect p a.theme_back-to-home:hover {
    border-color: var(--second-color);
    color: var(--second-color);
    background: none;
}

/* -------------button-------------- */
.inner_page_slider_content a.header__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-color);
    z-index: 1;
    overflow: hidden;
    transition: color 0.5s ease-in-out;
    border-radius: 22px;
    padding-right: 20px
}

.inner_page_slider_content a.header__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--first-color);
    z-index: 0;
    transition: width 0.5s ease-in-out;
    border-radius: 22px;
}

.inner_page_slider_content a.header__btn:hover {
    color: var(--color-white);
}

.inner_page_slider_content a.header__btn:hover::before {
    width: 100%;
}

.inner_page_slider_content a.header__btn span {
    position: relative;
    z-index: 2;
}

.inner_page_slider_content a.header__btn span.mdi.mdi-arrow-right {
    background: var(--first-color);
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.inner_page_slider_content a.header__btn:hover span.mdi.mdi-arrow-right {
    transform: scale(1);
}

.inner_page_slider_content a.header__btn::before {
    left: -100%;
}

.inner_page_slider_content a.header__btn:hover::before {
    left: 2px;
    width: 100%;
    padding-right: 20px;
}

.input-group.mb-3.w-50 {
    margin-top: 15px;
    width: 75% !important;
}

.input-group.mb-3.w-50 input.form-control {
    width: 100%;
    border: 2px solid #dde1de;
    outline: none;
    padding: 6px 12px;
    border-radius: 10px !important;
    height: 51px;
}

.input-group.mb-3.w-50 input.form-control:focus {
    box-shadow: none !important;
    border: 2px solid var(--first-color);
}

.input-group-append {
    position: absolute;
    right: 0;
    z-index: 999;
}

.input-group.mb-3.w-50 .input-group-append .cus-btn {
    border-radius: 0px 10px 10px 0px;
}

/* -------- //faq__section// --------- */
section.faq__section .accordion .accordion-item {
    border: none;
}

section.faq__section .accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid var(--second-color);
}

section.faq__section .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: var(--h-color);
    font-size: 18px;
    font-weight: 600;
    border: none;
    background: none;
    outline: none;
}

section.faq__section .accordion button:hover {
    color: var(--second-color);
}

section.faq__section .accordion button:focus {
    cursor: pointer;
    color: var(--second-color);
    box-shadow: none;
}

section.faq__section .accordion button:hover::after,
section.faq__section .accordion button:focus::after {
    cursor: pointer;
    color: var(--second-color);
    border: 1px solid var(--second-color);
}

section.faq__section .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

section.faq__section .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

section.faq__section .accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

section.faq__section .accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

section.faq__section .accordion button[aria-expanded='true'] {
    color: var(--second-color);
}

section.faq__section .accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

section.faq__section .accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: fit-content;
    transition: all 200ms linear;
    will-change: opacity, max-height;
    padding: 15px 0px;
}

section.faq__section .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

section.faq__section .accordion .accordion-content p {
    font-size: 17px;
}

section.faq__section .accordion .accordion-content p span {
    font-size: 17px !important;
    color: var(--text-color) !important;
}

section.faq__section .accordion .accordion-content ul {
    margin-top: 10px !important;
}

section.faq__section .accordion .accordion-content li.MsoNormal {
    font-size: 21px;
    list-style: inside;
}

/* ----------- //contact-us_info// ---------- */
.contact-us.contact-us_info {
    border: 1px solid #e6e6e6;
    margin-top: 25px;
    padding: 20px 10px;
    border-radius: 10px;
    background: #f5f5f5;
}

.links_info h3 {
    font-size: 20px;
    color: var(--h-color);
    font-weight: 600;
}

/* .contact-us.contact-us_info .links_info a:nth-child(even) {
    background: rgb(97 102 120 / 4%);
} */

.contact-us.contact-us_info .links_info a {
    color: var(--text-color);
    display: block;
    font-size: 16px;
    border-bottom: 2px solid var(--color-white);
    transition: 0.3s;
    padding: 4px 0px;
    margin-bottom: 6px;
}

.contact-us.contact-us_info .links_info a:hover {
    color: var(--second-color);
    border-color: var(--second-color);
}

.loc-breadcrumb-info p {
    font-size: 18px;
    padding: 4px 0px;
    color: var(--text-color);
}

.loc-breadcrumb-info p span {
    font-size: 16px;
}

.loc-breadcrumb-info p a {
    transition: 0.3s;
}

.loc-breadcrumb-info p a:hover {
    color: var(--second-color);
}

/* ------------ //reservation-confirm-section// -------------- */
section.reservation-confirm-section {
    padding: 60px 0px;
}

.HeadingTitle__info {
    margin-top: 30px;
    margin-bottom: 25px;
}

.HeadingTitle__info h4 {
    color: var(--h-color);
    font-weight: 600;
}

.booking__details {
    max-width: 980px;
    margin: auto;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.header_title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.booking-container_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0px;
    position: relative;
}

.contact_details::after {
    content: '';
    position: absolute;
    top: 0;
    left: 340px;
    width: 2px;
    height: 76px;
    background: #ddd;
}

.contact_details {
    text-align: center;
    font-size: 17px;
}

.booking-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--second-color);
    padding-bottom: 20px;
}

table.table__format {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table.table__format th,
table.table__format td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

table.table__format th {
    background-color: #00285f;
    color: white;
}

.total {
    font-weight: bold;
    text-align: right;
}

.booking-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.booking-title {
    font-size: 34px;
    font-weight: bold;
    text-transform: uppercase;
    color: #003366;
}

.booking-container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.bold {
    font-weight: bold;
}

p.bold.p-para {
    color: #003366;
    font-size: 22px;
}

.reservation_footer {
    margin-top: 20px;
}

.booking_image-details img {
    width: 280px;
}

.detail-print {
    position: absolute;
    top: -30px;
    right: 0px;
}

.detail-print a {
    color: var(--text-color);
    font-size: 17px;
}

.detail-print a:hover {
    color: var(--second-color);
}

.budgetBox.budgetBox_blogs {
    height: 246px;
}

.budget-bttn {
    text-align: right;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.budget-cart-title:hover {
    color: var(--second-color);
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--second-color);
    border-color: var(--second-color);
}

.page-item .page-link {
    color: var(--text-color);
}

.page-link:focus {
    box-shadow: none;
}

.mobile-tab {
    display: none;
}

.invalid-feedback {
    margin-top: 0 !important;
    margin-bottom: 8px;
}

p.helf-footer-call {
    font-size: 18px;
    padding-left: 8px;
    font-weight: 400;
}

button.submitLeaseEnquiry {
    border: none;
}

input.leasing_input,
textarea.leasing_input,
select.leasing_input {
    width: 100%;
    border: 1px solid #dde1de;
    outline: none;
    padding: 10px 20px;
    border-radius: 30px;
}

input.leasing_input:focus,
textarea.leasing_input:focus,
select.leasing_input:focus {
    border-color: var(--second-color);
    box-shadow: none !important;
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}

.page-content .modal-dialog {
    margin: 1.75rem auto;
}

.location-wrap-right {
    position: relative;
}

.location-wrap-right select {
    width: 100%;
    border: none;
    outline: none;
    padding: 11px 20px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.find-location-bttn {
    position: absolute;
    top: 0;
    right: -130px;
}

.location-wrap-right select:focus {
    box-shadow: none;
    border-color: 0;
}

/* ---------------- //login-section-form// ------------------ */
.login-section-form {
    padding: 50px 0px;
}

.loginForm {
    padding: 25px;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    background-color: var(--color-white);
}

.form_group input,
.form_group select {
    width: 100%;
    border: 1px solid #dde1de;
    outline: none;
    padding: 9px 20px;
    border-radius: 12px;
}

.form_group input:focus,
.form_group select:focus {
    color: #212529;
    background-color: #fff;
    border-color: #dde1de;
    outline: 0;
    box-shadow: none;
}

.form-group_dFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px;
}

.form-group label.col-form-label.text-md-right {
    padding: 0;
    padding-top: 8px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-color);
}

.forget_password a {
    padding: 0px;
    color: var(--first-color);
    text-decoration: none;
}

.forget_password a:hover {
    color: var(--second-color);
    text-decoration: underline;
}

.submit_sendBttn {
    width: 100%;
    display: inline-block;
    border: 2px solid transparent;
    outline: none;
    background-color: var(--second-color);
    padding: 8px 20px;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    text-transform: capitalize;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
    font-weight: 600;
    color: var(--color-white);
}

.submit_sendBttn:hover {
    border-color: var(--second-color);
    color: var(--second-color);
    background: none;
}

.form-check input[type=checkbox] {
    position: relative;
    border: 2px solid var(--second-color);
    border-radius: 3px;
    background: none;
    cursor: pointer;
    line-height: 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 18px;
    width: 20px;
    -webkit-appearance: none;
    opacity: .5;
    margin-top: 2px;
}

.form-check input[type=checkbox]:focus {
    box-shadow: none;
}

.form-check input[type=checkbox]:hover {
    opacity: 1;
}

.form-check input[type=checkbox]:checked {
    background-color: var(--second-color);
    opacity: 1;
    background-image: none !important;
}

.form-check input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 5px;
    height: 12px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

section.page-content.our_location-page {
    padding: 50px 0px;
}

section.page-content.our_location-page .contact-us.contact-us_info {
    margin-top: 0;
    padding: 20px;
}

ul.location_ul-header {
    display: flex;
    align-items: center;
    padding-bottom: 12px;
}

.location_map a {
    padding: 0;
    padding-bottom: 12px;
}

.location_map a.viewMapBtn {
    color: var(--first-color);
}

.location_map a.viewMapBtn i {
    font-size: 20px;
}

.our_location-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.location_map {
    text-align: end;
}

.budgetTitleContent i {
    color: var(--second-color);
}

.our_location-items .links_info {
    width: 44%;
}

.our_location-items .loc-breadcrumb-section {
    width: 16%;
    text-align: center;
}

.loc-section_map {
    width: 44%;
}

.our_location-items .links_info p i {
    font-size: 20px;
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}

.inputfield-Half.border_radius input[type="date"],
.inputfield-Half.border_radius select {
    border-radius: 30px;
}

.age_grop.bottom_input_grop {
    white-space: nowrap;
}


.location-wrap.location-wrapper {
    flex-direction: column;
}

.location-wrap-right .select-our_location {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    padding: 0px 33px 0px 12px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.location-wrap.location-wrapper .location-wrap-right {
    position: relative;
    width: 456px;
}

.location-wrap-right i.mdi.mdi-map-marker-outline {
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: var(--color-white);
    font-size: 24px;
    cursor: pointer;
}

.location-wrap-right .select-our_location:hover {
    border: 2px solid var(--first-color);
}

.location-wrap-right .select-our_location:focus {
    border: 2px solid var(--first-color);
}

.find-location {
    margin-top: 30px;
    margin-left: 40px;
}

.find-location a.find-location-bttn {
    position: static;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 18px;
}

.contact-us.contact-us_info .links_info a.location-link.locationLink {
    margin-bottom: 0;
    padding: 0;
    width: auto;
    border-bottom: none;
}

.location-link-item {
    justify-content: space-between;
    border-bottom: 2px solid var(--color-white);
}

.location-link-item.active {
    color: var(--second-color) !important;
}

.location-link-item.active a.location-link.locationLink {
    color: var(--second-color) !important;
}

/* ============= //dashboard//============ */
.user-profile-sidebar {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.user-profile-sidebar-top {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-info-color);
}

.user-profile-img {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50px;
}

.user-profile-img img {
    border-radius: 50%;
}

.user-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-profile-img button {
    position: absolute;
    border-radius: 50px;
    background: var(--second-color);
    color: var(--color-white);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: none;
    right: 0;
    bottom: 0;
}

ul.user-profile-sidebar-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.user-profile-sidebar-list li {
    margin: 5px 0;
}

.user-profile-sidebar-list li a {
    color: var(--text-color);
    padding: 6px 6px 6px 15px;
    display: block;
    font-weight: 500;
    transition: all .5s ease-in-out;
}

.user-profile-sidebar-list .active {
    background: var(--second-color);
    color: var(--color-white);
    border-radius: 8px;
}

.user-profile-sidebar-list li a i {
    margin-right: 5px;
    color: var(--second-color);
}

.user-profile-sidebar-list .active i {
    color: var(--color-white);
}

.user-profile-card {
    background: var(--color-white);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.user-profile-card-title {
    color: var(--text-color);
    font-weight: 600;
}

.user-profile-card p {
    margin-bottom: 16px;
}

.user-profile_row .form-group input,
.user-profile_row .form-group select,
.user-profile_row .form-group textarea {
    width: 100%;
    border: 2px solid #e6e6e6;
    outline: none;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.form-group input.form-control:focus,
.form-group select:focus,
.user-profile_row .form-group textarea:focus {
    box-shadow: none;
    border-color: var(--second-color);
}

button.budget-linke {
    border: none;
    outline: none;
}

.btn-group.float-right {
    width: 100%;
    display: flex;
    justify-content: end;
    margin-bottom: 15px;
}

.user-profile-sidebar-top p .info_mail {
    color: var(--text-color);
}

.user-profile-sidebar-top p .info_mail:hover {
    color: var(--first-color);
}

.user-profile-card a.btn.btn-primary.btn-sm {
    width: 100%;
    background: var(--second-color);
    border-color: var(--second-color);
    border-radius: 30px;
}

.user-profile-card a.btn.btn-primary.btn-sm:hover {
    background-color: transparent;
    color: var(--second-color);
    box-shadow: rgba(100, 100, 111, 0.2) 0px -2px 35px 0px;
    border-color: transparent;
}

/* ==================== */
/* Header Styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #fff;
}

.header-left .logo {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

.header-right .sidebar-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 216px;
}

/* Sidebar Styling */
.sidebar__header {
    position: fixed;
    top: 0;
    right: -310px;
    width: 310px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    overflow-y: auto;
}

.sidebar__header.active {
    right: 0;
}

.sidebar-header {
    position: fixed;
    background: #fff;
    width: 300px;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 20px;
}

.sidebar-header h3 {
    margin: 0;
}

.sidebar-header .close-sidebar {
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
}

.sidebar-header .close-sidebar:hover {
    color: var(--third-color);
}

.sidebar-menu li {
    margin: 10px 0;
}

/* Sidebar Styling */
ul.sidebar-menu {
    list-style: none;
    margin: 0;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 55px;
}

.sidebar-menu li {
    margin: 5px 0;
}

.sidebar-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    border-bottom: 2px solid transparent;
}

.sidebar-menu a:hover {
    border-bottom: 2px solid var(--third-color);
    color: var(--third-color);
    font-weight: 600;
}

li.nav-item .nav-item_menu {
    cursor: pointer;
    font-size: 19px;
}


.text-center p a {
    color: var(--text-color);
}

.text-center p a:hover {
    color: var(--second-color);
    text-decoration: underline;
}

a.teram_conditions {
    color: var(--second-color);
}

.coverrage_tab_panel .coverage_card {
    justify-content: flex-start;
}

.coverage_card label {
    position: relative;
}

.coverage_card label select {
    height: 36px;
    width: 70px;
    font-size: 15px;
    position: relative;
    border-width: 2px;
    border-style: solid;
    border-color: var(--second-color);
    transition: border 0.3s;
    padding-left: 10px;
    border-radius: 4px;
    margin-right: 8px;
}

.coverage_card label select:focus-visible {
    outline: none !important;
}

.coverage_card .coverage_btn-label {
    border: none;
    padding: 5px 20px;
    width: 100%;
    background: var(--second-color);
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
}

.coverage_card .coverage_btn-label:hover {
    background: var(--first-color);
}

.coverage_card label i.mdi.mdi-chevron-down {
    content: "";
    position: absolute;
    left: 65px;
    top: 8px;
    font-size: 20px;
    z-index: 1;
    color: var(--second-color);
    width: 0;
    height: 0;
}

.reservation-includes {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.reservation-includes h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.reservation-includes ul.list-group.list-group-flush {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.reservation-includes ul.list-group.list-group-flush li.list-group-item {
    border-bottom: 0px;
    position: relative;
    padding: 0;
    padding-left: 26px;
    font-weight: 600;
    background: transparent;
    border: 0;
}

.reservation-includes ul.list-group.list-group-flush li.list-group-item::before {
    content: "\F012C";
    position: absolute;
    top: 2px;
    left: 0;
    font: normal normal normal 18px / 1 "Material Design Icons";
    color: var(--second-color);
    font-weight: 600;
}


.payment_option_item [type="radio"]:checked,
.payment_option_item [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.payment_option_item [type="radio"]:checked+label,
.payment_option_item [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--text-color);
}

.payment_option_item [type="radio"]:checked+label:before,
.payment_option_item [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.payment_option_item [type="radio"]:checked+label:after,
.payment_option_item [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--second-color);
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.payment_option_item [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.payment_option_item [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}















.tippy-box[data-theme~='light-border'] {
    background: #fffbf2;
    color: var(--text-color); 
    border: 1px solid var(--second-color);
    border-radius: 8px;
    margin-left: 8px;
}

.tippy-box[data-theme~='light-border'] .tippy-arrow {
    color: var(--second-color); /* Change arrow color to match the background */
}

.reservation-includes ul.list-group.list-group-flush li.list-group-item i.ri-question-line {
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    font-size: 20px;
    padding-left: 8px;
    line-height: 0;
}

.reservation-includes ul.list-group.list-group-flush li.list-group-item i.ri-question-line:hover {
    color: var(--second-color);
}

.tippy-box[data-theme~='light-border'][data-placement^='top'] .tippy-arrow::before {
    border-top-color: var(--second-color);
}

.tippy-box[data-theme~='light-border'][data-placement^='bottom'] .tippy-arrow::before {
    border-bottom-color: #fffbf2;
}

.tippy-box[data-theme~='light-border'][data-placement^='left'] .tippy-arrow::before {
    border-left-color: #fffbf2;
}

.tippy-box[data-theme~='light-border'][data-placement^='right'] .tippy-arrow::before {
    border-right-color: #fffbf2;
}

/* ---------- //@media for Mobile Device// ---------- */
@media (max-width: 768px) {

    li.nav-item .nav-item_menu {
        display: none;
    }

    .budgetTitleContent {
        font-size: 26px;
    }

    .row.align-items-center.add-grid-column .col-md-8 {
        order: 2;
    }

    .cta-image img {
        width: 100%;
    }

    .join-form input {
        width: 100%;
        border-radius: 30px;
    }

    .join-form button.submit__btn {
        position: absolute;
        right: 0;
    }

    .location-wrap-left {
        text-align: center;
    }

    .location-wrap-left h2 {
        color: var(--color-white);
        font-size: 28px;
        font-weight: bold;
        padding-bottom: 0px;
        line-height: 28px;
    }

    .budgetAbout-service .location-wrap {
        flex-direction: column;
    }

    .location-wrap-right select {
        border-radius: 12px !important;
    }

    .find-location-bttn {
        position: static;
    }

    .find-location-bttn {
        display: block;
        text-align: center;
        border-radius: 12px !important;
        margin-top: 10px;
    }

    .footer-para {
        text-align: center;
        margin-bottom: 8px;
    }

    .budgetBox {
        height: 200px;
    }

    .serviceBox-modale {
        margin-bottom: 20px;
    }

    .footer-bottom {
        margin-top: 20px;
    }

    .default-padding {
        padding: 40px 0;
    }

    .budgetAbout-service {
        padding: 50px 0;
    }

    .nosVehicleList {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }

    h1 {
        font-size: 28px;
    }

    .leasingBgBox {
        padding: 20px;
    }

    h2.budgetTitleContent.fs-5.fw-normal.add-border {
        margin-top: 20px;
    }

    .inner_page_slider_content h1 {
        font-size: 20px;
    }

    button.theme_button.w-100.mt-5 {
        margin-top: 10px !important;
    }

    .inner_page_slider_content a.header__btn {
        gap: 5px;
        font-size: 14px;
    }

    .inner_page_slider_content a.header__btn span.mdi.mdi-arrow-right {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .global_section {
        padding: 40px 0px;
    }

    section.faq__section .accordion button .accordion-title {
        display: block;
        padding: 0em 1.5em 0em 0;
    }

    section.faq__section .accordion button .icon {
        top: 20px;
    }

    .car_steps {
        display: flex;
        margin-bottom: 20px;
    }

    .car_steps .step_item {
        width: 20%;
        text-align: center;
    }

    .car_steps .step_item.active {
        width: 80%;
    }

    .carsFeatures {
        justify-content: space-around;
    }

    .hotel-listing .hotel-block .hotel-detail {
        padding: 10px 16px;
    }

    .modal-body {
        padding: 15px;
    }

    .car_nameD .modal_feature {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 10px;
        margin-top: 10px;
    }

    .car_nameD .modal_feature li {
        margin-right: 0;
    }

    .action_content {
        padding-right: 0px;
    }

    .member_rate_row {
        padding: 10px;
    }

    .modal-content {
        width: 98%;
        margin: auto;
    }

    .input-group.mb-3.w-50 {
        margin-top: 15px;
        width: 100% !important;
    }

    ul.navbar-nav.ms-auto.mb-2.mb-lg-0.align-items-center {
        margin-bottom: 0 !important;
        padding-top: 15px;
    }

    .border-left-1 {
        border-left: none;
    }

    .car_short_information {
        flex-direction: column;
        align-items: center;
    }

    .car_short_information .car_content.car_nameD {
        width: 100%;
        padding-left: 0px;
        text-align: center;
    }

    tr:nth-child(1)>td:nth-child(2) {
        width: calc(100%);
        display: block;
    }

    .user-profile-card tr:nth-child(1)>td:nth-child(2) {
        width: calc(100%);
        display: table-cell;
    }

    tr:nth-child(1)>td:nth-child(3) {
        width: calc(100%);
        display: block;
    }

    .user-profile-card tr:nth-child(1)>td:nth-child(3) {
        width: calc(100%);
        display: table-cell;
    }

    tr:nth-child(1)>td:nth-child(4) {
        width: calc(100%);
        display: block;
    }

    tr:nth-child(5)>td:nth-child(2) {
        width: calc(100%);
        display: block;
    }

    tr:nth-child(5)>td:nth-child(3) {
        width: calc(100%);
        display: block;
    }

    tr:nth-child(5)>td:nth-child(4) {
        width: calc(100%);
        display: block;
    }

    .mobile-tab {
        display: block;
        margin-top: 20px;
    }

    li.mobile_menu-hide {
        display: none !important;
    }

    td.display-none {
        display: none;
    }

    .thankyou__contect {
        max-width: 100%;
        padding: 20px 10px;
    }

    button.theme_button {
        width: 100%;
    }

    ul.navbar-nav.ms-auto.mb-2.mb-lg-0 {
        margin-bottom: 0 !important;
        margin-top: 16px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-weight: 600;
    }

    li.nav-item {
        padding: 0px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .special-offer-car {
        padding-bottom: 120px;
        padding-top: 30px;
    }

    .main-car-slider .offers-car-slider {
        margin: -80px auto;
        width: 92%;
    }

    .sale-car-section {
        padding: 50px 0px;
        padding-top: 0px;
    }

    .car-items .car-title-content {
        padding: 20px 16px;
        padding-top: 0;
        margin-top: 0px;
    }

    .car-name {
        margin-top: 0px;
    }

    .budget-linke {
        width: 100%;
        text-align: center;
    }

    .car-modale-item img {
        width: 85%;
        margin: auto;
    }

    .offer-stock-car a {
        width: 40%;
        text-align: center;
        line-height: 24px;
    }

    .join-car-section {
        text-align: center;
    }

    .join-car-section h2 {
        font-size: 32px;
        margin-bottom: 8px;
        line-height: 40px;
        text-align: center;
    }

    .join-car-section p {
        font-size: 16px;
    }

    .bookRide.container {
        width: 94%;
        padding: 20px;
        position: static;
        transform: translate(0px);
        margin-top: 20px;
    }

    .banner-caption .banner-title {
        font-size: 32px;
    }

    .slide_design {
        display: none;
    }

    .banner-caption {
        padding: 65px 0px;
    }

    .bannerSlider .slick-list .banner_slide {
        height: 400px !important;
    }

    .bannerSlider ul.slick-dots {
        bottom: 0px;
        top: auto;
        transform: rotate(-90deg);
        left: 50%;
    }

    .car_pickup_detail.car_short_info {
        margin-bottom: 10px;
    }

    .car_short_information .car_image {
        width: 100%;
    }

    #reservationForm tr:nth-child(1)>td:nth-child(1) {
        width: calc(32%);
    }

    .booking-container_header,
    .booking-container {
        flex-direction: column;
        row-gap: 15px;
        font-size: 14px;
    }

    .booking-container tr:nth-child(1)>td:nth-child(1) {
        width: 120px;
    }

    table.table__format tr:nth-child(1)>td:nth-child(2) {
        width: calc(100%);
        display: table-cell;
    }

    table.table__format tr:nth-child(1)>td:nth-child(3) {
        width: calc(100%);
        display: table-cell;
    }

    table.table__format tr:nth-child(5)>td:nth-child(2) {
        width: calc(100%);
        display: table-cell;
    }

    table.table__format tr:nth-child(5)>td:nth-child(3) {
        width: calc(100%);
        display: table-cell;
    }

    .banner-image img {
        height: auto;
    }

    .row.add-grid-order .col-ms-4.col-md-4.col-lg-4.mb-4.order_1 {
        order: -1;
    }

    .row.add-grid-order .col-ms-4.col-md-4.col-lg-4.mb-4.order_2 {
        order: -1;
    }

    .box-info-helf-footer {
        margin: 30px 0px;
    }

    .action_price {
        margin-bottom: 0;
    }

    .cus-btn {
        margin: 12px 0px;
        font-size: 16px;
    }

    li.feature_list {
        border: 1px solid #dee2e6;
        border-radius: 10px;
        padding: 10px 0px;
    }

    .car_detail_modal_title {
        font-size: 26px;
    }

    button.cus-btn.d-inline-block.w-auto {
        margin: 0;
        font-size: 18px;
    }

    section.our-history.global_section .d-flex.justify-content-between.flex-fill.d-sm-none {
        justify-content: center !important;
    }

    .budget-bttn a.blog_btn {
        margin: 0;
    }

    .carRentalOffers-section {
        padding: 32px 0px;
    }

    .our_location-items {
        flex-direction: column;
    }

    .our_location-items .links_info {
        width: 100%;
    }

    .our_location-items .loc-breadcrumb-section {
        width: 100%;
        text-align: center;
    }

    .loc-section_map {
        width: 100%;
        height: auto !important;
    }

    a.theme_button.w-auto {
        width: 100% !important;
    }

    .loginForm {
        padding: 20px;
    }

    .row.user-profile_row .form-group.col-6 {
        width: 100%;
    }

    .location-wrap.location-wrapper .location-wrap-right {
        width: 100%;
    }

    .location-wrap-right i.mdi.mdi-map-marker-outline {
        top: 2px;
        right: 4px;
        height: 44px;
        line-height: 44px;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .find-location {
        margin-top: 0;
        margin-left: 0;
    }

    .find-location a.find-location-bttn {
        padding: 10px 30px;
        font-size: 16px;
    }

    form.row.row_mobile-set .form-group.col-6 {
        width: 100%;
    }

    .coverrage_tab_panel .col-md-4 {
        margin-bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    .budgetTitleContent {
        font-size: 26px;
        line-height: 32px;
    }

    h1 {
        font-size: 24px;
    }

    .car-link label {
        gap: 6px;
        padding: 10px 0;
        flex-direction: column;
    }

    .car-link label img {
        height: 18px;
    }

    img.w-100 {
        height: 300px;
        object-fit: contain;
    }

    .navbar-light .navbar-brand img {
        width: 180px;
    }

    p.tr_para {
        font-size: 16px;
    }

    label.form-check-label {
        font-size: 15px;
    }

    button.cus-btn.d-inline-block.w-auto {
        width: 100% !important;
    }

    .hotel-listing {
        padding-bottom: 20px;
    }

    .baseRate td:first-child {
        padding-left: 0px;
    }

    .offer-stock-car p {
        font-size: 14px;
        line-height: 22px;
    }

    .coverage_card {
        padding: 20px;
    }

    .coverage_list ul li:not(:last-child) {
        margin-right: 10px;
    }

    .coverage_list ul li {
        font-size: 14px;
    }

    .coverage_list ul li .mdi {
        margin-right: 0px;
    }

    .button_wrapper.text-end {
        margin-top: 10px;
    }

    .button_wrapper.text-end .cus-btn {
        width: 100% !important;
        text-align: center;
    }

    table.table__format th,
    table.table__format td {
        font-size: 12px;
    }

    .booking_image-details img {
        width: 100%;
    }

    .reservation-confirm-section h1 {
        font-size: 26px;
    }

    aside {
        width: 300px;
        right: -300px;
    }

    .toggle {
        right: 245px;
    }

    .banner-caption .banner-title {
        font-size: 26px;
    }

    .bannerSlider ul.slick-dots {
        bottom: 60px;
        top: auto;
        transform: rotate(-90deg);
        left: 50%;
    }

    .banner-caption p {
        font-size: 14px;
    }

    .headerBtn {
        font-size: 14px;
        padding: 8px 18px;
        margin-top: 10px;
    }

    .bookRide.container {
        width: 94%;
        padding: 20px;
        position: static;
        transform: translate(0px);
        margin-top: -60px;
    }

    .toggle {
        height: 40px;
        width: 150px;
        line-height: 40px;
    }

    .toggle:before {
        padding-right: 6px;
    }

    .join-car-section h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .join-car-section p {
        font-size: 14px;
    }

    .offer-stock-car a {
        width: 30%;
        text-align: center;
        line-height: 18px;
    }

    .offer-stock-car a {
        font-size: 15px;
        padding: 8px 20px;
    }

    .join-form input {
        padding: 8px 20px;
    }

    .join-form button.submit__btn {
        padding: 9px 25px;
    }

    .location-wrap-left h2 {
        font-size: 26px;
        line-height: 28px;
    }

    .location-wrap-left h5 {
        font-size: 26px;
    }

    .find-location-bttn {
        padding: 10px 30px;
    }

    .budgetBox-content p {
        text-align: left;
        font-size: 17px;
        line-height: 22px;
        -webkit-line-clamp: 4;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .car_model_disc p {
        text-align: left;
    }

    p.helf-footer-call {
        font-size: 20px;
        padding-left: 8px;
        font-weight: 400;
    }

    .menu-footer li {
        margin-bottom: 6px;
    }

    .menu-footer li a {
        font-size: 15px;
    }

    .footer-title {
        margin-bottom: 12px;
    }

    .car_nameD .information_title {
        font-size: 20px;
        margin-bottom: 0;
    }

    .action_content p,
    .action_content h4 {
        font-size: 17px;
    }

    .year-link label {
        padding: 14px 0;
    }

    .price-range-slider {
        margin-top: 10px;
    }

    .mt-5.rangeValue {
        margin-top: 2rem !important;
    }

    .budgetAbout-service {
        padding: 40px 0;
    }

    h2.budgetTitleContent.add-border.text-center.mb-3.mobile_text {
        font-size: 24px;
        text-align: left !important;
    }
}