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


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    /* colors  */
    --primary: #FFC000;
    --secondary: #141b22;
    --black: #000;
    --off-canvus-bg: #00081b;
    --border-dark: #2d3547;
    --white: #fff;
    --black2: #111;
    --light-grey: #777;
    --nav-light: #4f4f4f;
    --border-ddd: #ddd;
    --border-do: #D0D0D0;
    --transtion: all .5s ease-in-out;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    font-weight: 400;
    font-size: 1rem;
}

/* Works in Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--secondary);
    scroll-behavior: smooth;
    font-size: 16px;
}

/* The whole scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

/* The track (background) */
::-webkit-scrollbar-track {
    background: var(--secondary);
}

/* The handle (thumb) */
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}


a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
}

/* container  */

@media (min-width: 1500px) {
    .container {
        max-width: 1420px;
    }
}

/* common button css  */
.common_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    gap: 10px;
    color: var(--white);
    background-color: var(--black);
    font-size: 1rem;
    font-weight: 500;
}

.common_btn a:hover {
    background-color: var(--primary);
    color: var(--black);
    transition: var(--transtion);
}

.common_btn a i {
    transition: var(--transtion);
}

.common_btn a:hover i {
    transform: rotate(45deg);
}

.search_btn i {
    font-weight: 600;
    font-size: 1.5rem;
    cursor: pointer;
}

.py84 {
    padding: clamp(44px, 8vw, 84px) 0;
}

.py94 {
    padding: clamp(44px, 10vw, 104px) 0;
}

/* ========== SCROLL TO TOP BTN ============ */
#scrollTopBtn {
    position: fixed;
    right: 24px;
    bottom: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transtion);
    z-index: 999;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    background: var(--border-dark);
    border: 1px solid var(--primary);
    color: var(--primary);
}

/* ========== SCROLL TO TOP BTN ============ */


/* ===============
HEADER CSS
=============== */
.side_gap {
    padding: 0 clamp(0px, 3vw, 64px);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 100;
}


.top_header_section {
    padding: 20px 0px 10px 260px;
}

.top_header_section .left_div {
    display: flex;
    align-items: center;
    gap: 32px;
}

.top_header_section .left_div>div:first-child {
    position: relative;
}

.top_header_section .left_div>div:first-child::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    height: 24px;
    width: 1px;
    background-color: var(--light-grey);
}

.top_header_section .left_div>div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top_header_section .left_div>div i {
    color: var(--primary);
    font-size: 18px;
}

.top_header_section .left_div>div a {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.top_social_links ul {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 20px);
}

.top_social_links ul li {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background-color: var(--primary);
    color: var(--black);
    font-size: 1.1rem;
    transition: var(--transtion);
}

.top_social_links ul li:hover {
    color: var(--white);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header.scrolled {
    animation: slideDown 0.6s ease-out forwards;
    background-color: var(--secondary);
}

header.scrolled .top_header_section,
header.scrolled .top_logo {
    display: none;
}

header.scrolled .top_logo2 {
    display: flex;
    background-color: var(--white);
    padding: 16px;

}

header.scrolled nav .nav_ul {
    padding: 0;
    padding-left: 24px;
}

header.scrolled nav .nav_ul li a {
    color: var(--white);
}

header.scrolled nav .common_btn a {
    background-color: var(--primary);
}

header.scrolled nav {
    background-color: var(--secondary);
    color: var(--white);
}

header.scrolled .has_sub ul li a {
    color: var(--nav-light);
}

/* nav bar  */
nav {
    background-color: var(--white);
}

nav .nav_ul {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
    padding: 24px 0 24px 260px;
}

nav .nav_ul li a {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transtion);
}

nav .nav_ul li a:hover {
    color: var(--primary) !important;
}

/* nav bar  */


.top_logo {
    position: absolute;
    bottom: 0;
    left: 12px;
    width: 200px;
    height: 110px;
    background-color: var(--primary);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu_bar {
    font-size: 2.2rem;
    cursor: pointer;
}


.offcanvas_menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: var(--off-canvus-bg);
    padding: 30px;
    color: var(--white);
    transition: var(--transtion);
    z-index: 300;
    transform: translateX(100%);
    overflow-y: auto;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    /* IE & Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Chrome, Safari, Opera */
.offcanvas_menu::-webkit-scrollbar {
    display: none;
}

.offcanvas_overly {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 299;
    transition: var(--transtion);
    transform: translateX(100%);
    cursor: pointer;

}

.offcanvas_menu.menu_open,
.offcanvas_overly.menu_open {
    transform: translateX(0);
}

.offcanvas_menu form input {
    width: 100%;
    background: none;
    border: 1px solid var(--border-dark);
    padding: 7px 10px;
    color: var(--white);
    outline: none;
    height: 40px;
}

.offcanvas_menu form button {
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    background-color: var(--primary);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
}

.menu_close {
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transtion);
    display: inline-block;
}

.menu_close:hover {
    color: var(--primary);
    transform: rotate(360deg);
}

.off_canvus_menu_container ul li a {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    transition: var(--transtion);
    border-bottom: 1px solid var(--border-dark);
}

.off_canvus_menu_container ul li:last-child a {
    border-bottom: 0;
}

.menu-one-page-menu-container ul li a {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    transition: var(--transtion);
}

.off_canvus_menu_container ul li a:hover,
.menu-one-page-menu-container ul li a:hover {
    color: var(--primary);
}


.top_logo2 {
    display: none;
    align-items: center;
    justify-content: center;
    width: 180px;
    overflow: hidden;
}

.top_logo2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.has_sub {
    position: relative;
}

.has_sub>ul {
    visibility: hidden;
    position: absolute;
    background-color: var(--white);
    min-width: 250px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    margin-top: 25px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    opacity: 0;
    transition: var(--transtion);
}

.has_sub ul li a {
    color: var(--nav-light);
    padding: 12px 16px;
    width: 100%;
    display: inline-block;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-ddd);
}

.has_sub:hover>ul {
    visibility: visible;
    opacity: 1;
    margin-top: 15px;
}

/* off canvus accordion  */
.off_canvus_menu_container .submenu {
    list-style: none;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.off_menu.active>.submenu {
    max-height: 500px;
}

.menuToggleLink {
    position: relative;
}

.menuToggleLink::after {
    content: "+";
    position: absolute;
    right: 15px;
}

.off_menu.active .menuToggleLink::after {
    content: "-";
}

/* ===============
HEADER CSS ENDS
=============== */


/* *************************
HOME HERO SECTION
************************* */
.home_hero_section {
    position: relative;
    background:
        linear-gradient(18deg, rgba(20, 27, 34, 0.2) 0%, rgba(20, 27, 34, 0) 100%),
        url('../images/bg/slider_bg_02.png');
    height: 110vh;
    max-height: 950px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    padding-top: clamp(0px, 14vh, 200px);
}

.home_hero_section .slider_content h5 {
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
    font-weight: 600;
}

.home_hero_section .slider_content h2 {
    font-size: clamp(2rem, 6vw, 4.6rem);
    line-height: 1.3;
    margin-bottom: 35px;
    color: var(--white);
    font-weight: 700;
}

.slider_content .slider_btn {
    margin-top: 35px;
}

.home_hero_section .slider_content p {
    font-size: 1.2rem;
    color: var(--white);
    line-height: 26px;
    padding-right: clamp(0px, 4vw, 60px);
}

.home_hero_section .slider_content h2 span {
    color: var(--black);
    position: relative;
    padding: 0 13px;
    z-index: 1;

}

.home_hero_section .slider_content h2 span::before {
    content: "";
    width: 100%;
    height: 80%;
    background: var(--white);
    position: absolute;
    top: 10px;
    z-index: -1;
    left: 0;
    transform: skew(-10deg);
}

/* slider button  */
.slider_btn button,
.slider_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(8px, 1vw, 12px) 32px;
    background-color: var(--secondary);
    width: max-content;
    color: var(--black);
    border-radius: 60px;
    font-weight: 600;
    gap: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transtion);
}

.slider_btn button::before,
.slider_btn a::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--primary);
    border-radius: 60px;
    z-index: -1;
    transition: var(--transtion);
    transform-origin: top;
}

.slider_btn button i,
.slider_btn a i {
    font-size: 1.5rem;
    transition: var(--transtion);
    font-weight: 400;
}

.slider_btn a:hover::before,
.slider_btn button:hover::before {
    inset: 0;
    transform: scale(0);
    transform-origin: top;
}

.slider_btn a:hover {
    color: var(--white);
}

.slider_btn button:hover i,
.slider_btn a:hover i {
    transform: rotate(45deg);
}

.slider_btn button {
    height: 50px;
    width: 100%;
    border: 1px solid var(--black);
    background-color: var(--primary);
    color: var(--white);
}

.slider_btn button::before {
    background-color: var(--secondary);
}

.slider_btn button:hover {
    color: var(--black);
}

/* slider button  */


/* *************************
HOME HERO SECTION ENDS
************************* */

/* +++++++++++++++++
 home about section 
 +++++++++++++++++ */
.skills {
    width: 100%;
    padding: 0 20px 0 0;
}

.skill-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0px 0 15px;
    color: #111;
}

.skill-bar {
    height: 10px;
    background: #e0e0e0;
    border-radius: 0;
}

.skill-per {
    height: 10px;
    background-color: var(--primary);
    border-radius: 0;
    width: 0;
    position: relative;
    transition: 1s linear;
}

.about-content .skill-per::before {
    color: #111;
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    background: none;
}

.skill-per::before {
    content: attr(id);
    position: absolute;
    padding: 4px 6px;
    color: var(--black2);
    font-size: 12px;
    border-radius: 4px;
    top: -43px;
    font-size: 1.1rem;
    font-weight: 600;
    right: 0;
    transform: translateX(50%);
}

.common_heading h5 {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
}

.common_heading h3 {
    font-size: clamp(2.1rem, 4vw, 3.65em);
    font-weight: 700;
    max-width: 90%;
    margin-bottom: 24px;
}

.home_about_left_div p {
    color: var(--light-grey);
}

.home_about_left_div .slider_btn a {
    background-color: var(--primary);
    color: var(--white);
}

.home_about_left_div .slider_btn a::before {
    background-color: var(--secondary);
}

.home_about_left_div .slider_btn a:hover {
    color: var(--black);
}

.home_about_left_div .more_detail .call p {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.home_about_left_div .more_detail .call i {
    font-size: 3.5rem;
    color: var(--primary);
}

.home_about_left_div .more_detail .call a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-grey);
}

.home_about_right>img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.home_about_right .ab_exp_tag {
    background-color: var(--primary);
    padding: clamp(16px, 2vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    position: absolute;
    bottom: 80px;
    left: 30px;
    border-radius: 10px;
    gap: 24px;
}

.home_about_right .ab_exp_tag .icon {
    height: 60px;
    width: 60px;
}

.home_about_right .ab_exp_tag h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.home_about_right .ab_exp_tag h5 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

/* +++++++++++++++++
 home about section  ends
 +++++++++++++++++ */



/* =============================
 FIND CAR SECTION 
 ============================= */
.find_car_section {
    background: url('../images/bg/coutner-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: clamp(44px, 10vw, 110px) 0;
    padding-bottom: 180px;
}

.find_car_form h3 {
    font-size: clamp(2.2rem, 4vw, 3.6em);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--black);
}

.find_car_form {
    color: var(--black);
    position: absolute;
    background-color: var(--primary);
    padding: clamp(32px, 3vw, 44px) clamp(16px, 3vw, 44px);
    border-radius: 10px;
    left: -40px;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.find_car_form .form-select {
    height: 50px;
    border-radius: 40px;
    padding: 10px 16px;
    outline: none;
    border: 1px solid var(--black);
    background-color: transparent;
    font-weight: 600;
}

.form-select:focus {
    box-shadow: none;
    outline: none;
}

.find_car_img img {
    height: 420px;
    border-radius: 10px;
    object-fit: cover;
}


/* counter animation  */
.counter_animation_div {
    border: 5px solid #ffffff1c;
    padding: 32px;
    border-radius: 10px;
    margin-top: clamp(44px, 6vw, 120px);
}

.counter_animation_div .counter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.counter_animation_div .counter .icon {
    margin-bottom: 15px;
    display: block;
    width: 50px;
    height: 50px;
}

.counter_animation_div .counter .icon img {
    height: 100%;
    object-fit: contain;
}

.counter_animation_div .counter span,
.counter_animation_div .counter .count {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1;
    display: inline-block;
}

.counter_animation_div .counter p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--white);
    padding-top: 5px;
    line-height: 22px;
    margin: 0;
}

/* counter animation  */
/* =============================
 FIND CAR SECTION ENDS
 ============================= */



/* 
 --------------------------
 car rent tag section 
 -------------------------- */
.car_tag_Section {
    padding: clamp(44px, 5vw, 94px) 0;
}

.car_rent_sec_left_Div ul li .icon {
    height: 60px;
    width: 60px;
    flex-shrink: 0;
}

.car_rent_sec_left_Div ul li {
    display: flex;
    gap: 24px;
}

.car_rent_sec_left_Div ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.car_rent_sec_left_Div ul li .icon img {
    height: 100%;
    object-fit: contain;
}

.car_rent_sec_left_Div ul li .txt h4 {
    font-size: 1.3rem;
    font-weight: 700;
}

.car_rent_sec_left_Div ul li .txt p {
    color: var(--light-grey);
}

/* rent booking form  */
.car_tag_Section form {
    margin-top: 36px;
}

.car_tag_Section .rent_booking_form {
    background: var(--white);
    padding: 80px 50px;
    border-radius: 10px;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    margin-top: -160px;
    position: relative;
    z-index: 1;
}

.rent_booking_form>p {
    color: var(--light-grey);
    margin: 0;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.flatpickr-day.today {
    background: var(--border-ddd) !important;
    border-color: var(--border-ddd) !important;
}

.flatpickr-months .flatpickr-month {
    background: var(--primary) !important;
    color: var(--white) !important;
}

.flatpickr-current-month {
    padding: 5px 0 !important;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
    fill: var(--white) !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    padding-bottom: 8px;
    height: 20px;
    width: 20px;
}

.c_input .rel_div {
    position: relative;
}

.c_input .rel_div i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;

}

.c_input select,
.c_input input {
    display: block;
    width: 100%;
    border: none;
    background-color: rgb(255, 255, 255);
    transition: .3s;
    border-radius: 10px;
    border: 1px solid rgb(183, 183, 183);
    height: calc(2.5em + .75rem + 2px);
    padding: 15px;
    color: var(--black2);
    outline: none;
}

.car_tag_Section .c_input input {
    padding-right: 36px;
}

.c_input input::placeholder {
    color: var(--light-grey);
}

.c_input select:focus,
.form-control:focus {
    box-shadow: none;
    border: 1px solid rgb(183, 183, 183);
    outline: none;
}

.c_input label {
    margin-bottom: 10px;
    display: block;
    color: #111;
    font-weight: 600;
}

.car_tag_Section .rent_booking_form .slider_btn button {
    background-color: var(--secondary);
    border: none;
    color: var(--black);
    font-weight: 600;
}

.car_tag_Section .rent_booking_form .slider_btn button:hover {
    color: var(--white);
}

.car_tag_Section .rent_booking_form .slider_btn button::before {
    background-color: var(--primary);
}

/* rent booking form  */
/* 
 --------------------------
 car rent tag section 
 -------------------------- */



/* =====================
 subscribe section
 ======================= */
.subscribe_banner {
    background-color: var(--primary);
    background-image: url('../images/bg/newslater-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.subscribe_banner .banner_heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.subscribe_banner .banner_heading h3 {
    font-size: clamp(2.1rem, 4vw, 3em);
    font-weight: 700;
}

.subscribe_banner .banner_heading form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.subscribe_banner .banner_heading form .slider_btn button {
    text-wrap: nowrap;
}

.subscribe_banner .banner_heading form input {
    height: 50px;
    min-width: 300px;
    width: 100%;
    border: 1px solid var(--black);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    padding: 10px 16px;
}

.subscribe_banner .banner_heading form input::placeholder {
    color: var(--white);
}

/* =====================
 subscribe section
 ======================= */


/* ============================
CHOOSE BEST DEAL SECTION 
============================ */

.choose_best_deal_section .left_heading p {
    color: var(--light-grey);
    margin: 0;
}

.car_component_wrapper {
    border: 1px solid var(--border-do);
    padding: clamp(24px, 3.5vw, 32px) 24px;
    border-radius: 10px;
    transition: var(--transtion);
    background-color: var(--white);
}

.car_component_wrapper:hover {
    background-color: #fefaf1;
    border-color: var(--primary);
}

.car_component_wrapper .car_img {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car_component_wrapper .car_img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.car_component_wrapper h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.car_component_wrapper ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.car_component_wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.car_component_wrapper ul li p {
    margin: 0;
    color: var(--light-grey);
}

.car_component_wrapper ul li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.car_component_wrapper .book_btn {
    margin-top: clamp(26px, 4vw, 32px);
}

.car_component_wrapper .book_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(8px, 1vw, 10px) 32px;
    ;
    width: 100%;
    border: 1px solid var(--border-do);
    color: var(--secondary);
    border-radius: 60px;
    font-weight: 500;
    gap: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transtion);
}

.car_component_wrapper .book_btn a::before {
    content: '';
    position: absolute;
    height: 0%;
    width: 0%;
    inset: 0;
    background-color: var(--primary);
    border-radius: 60px;
    z-index: -1;
    transition: var(--transtion);
}

.car_component_wrapper .book_btn a i {
    font-size: 1.5rem;
    transition: var(--transtion);
    font-weight: 400;
}

.car_component_wrapper .book_btn a:hover::before {
    height: 100%;
    width: 100%;
}

.car_component_wrapper .book_btn a:hover {
    border-color: var(--primary);
}

.car_component_wrapper .book_btn a:hover i {
    transform: rotate(45deg);
}

@media (min-width: 992px) {
    .full-width-slider {
        position: relative;
        width: calc(100vw - ((100vw - 100%) / 2));
        margin-right: calc((100vw - 100%) / -2);
    }
}

.choose_arrows {
    display: flex;
    gap: 12px;
    margin-top: 50px;
}

.choose_arrows .swiper-button-prev,
.choose_arrows .swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
}

.choose_arrows .swiper-button-prev::after,
.choose_arrows .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.choose_arrows .swiper-button-prev:hover,
.choose_arrows .swiper-button-next:hover {
    opacity: 0.8;
}

/* ============================
CHOOSE BEST DEAL SECTION 
============================ */


/* +++++++++++++++++++++++++++++
PRICING ACTION SECTION 
+++++++++++++++++++++++++++++ */
.pricing_action_section {
    background: url('../images/bg/price-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing_action_section .common_heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: auto;
    color: var(--white);
}

.pricing_details_container {
    border-radius: 10px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.08);
    padding: 50px;
    border: 2px solid #ffffff1c;
    padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 44px);
    background-color: transparent;
    color: var(--white);
}

.pricing_details_container .icon {
    height: 60px;
    width: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing_details_container .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing_details_container h4 {
    font-size: clamp(2rem, 3vw, 2.2rem);
    font-weight: 700;
    margin: 20px 0;
}

.pricing_details_container ul li {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pricing_details_container ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 36px;
}

.pricing_details_container ul li p {
    margin: 0;
}

.pricing_details_container ul li .price {
    text-align: end;
    font-weight: 800;
    font-size: 1.1rem;
}

.pricing_details_container .slider_btn a {
    background-color: transparent;
    width: 100%;
    color: var(--white);
    border: 1px solid var(--primary);
}

.pricing_details_container .slider_btn a::before {
    height: 100%;
    width: 0%;
}

.pricing_details_container .slider_btn a:hover::before {
    /* background-color: var(--primary); */
    height: 100%;
    width: 100%;
}

.pricing_details_container.primary {
    color: var(--black);
    background-color: var(--primary);
}

.pricing_details_container.primary .slider_btn a {
    background-color: var(--secondary);
}

/* +++++++++++++++++++++++++++++
PRICING ACTION SECTION ENDS
+++++++++++++++++++++++++++++ */



/* ==========================
home client testimonials css
========================== */
.home_client_testimonials_section {
    background: url('../images/bg/testimonial-bg.png');
    /* background-position: center; */
    background-size: cover;
    background-repeat: no-repeat;
}

.latest_blog_section .common_heading,
.work_process_steps .common_heading,
.home_client_testimonials_section .common_heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* cleint review  */
.client_component_container {
    padding: clamp(24px, 3vw, 32px);
    background-color: var(--white);
    box-shadow: 1px 1.732px 60px 0px rgba(0, 0, 0, 0.01);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.client_component_container .c_profile {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.client_component_container .c_profile img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.client_component_container .first_div {
    border-bottom: 1px solid var(--border-ddd);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.client_detail h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.client_detail p {
    color: var(--light-grey);
    margin: 0;
    margin: 2px 0;
}

.client_detail .rating {
    font-size: 1.2rem;
    color: var(--primary);
}

.client_component_container>p {
    color: var(--light-grey);
    margin: 0;
    font-size: 0.9rem;

    /* display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}

.testiSlide .swiper-pagination {
    position: static;
    margin-top: 24px;
    text-align: center;
}

.testiSlide .swiper-pagination-bullet {
    width: 16px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    border-radius: 20px;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.testiSlide .swiper-pagination-bullet-active {
    width: 32px;
    background: var(--primary);
}

/* cleint review  */
/* ==========================
home client testimonials css
========================== */


/* ++++++++++++++++++++++++++++++++
WORK PROCESS STEPS CSS 
++++++++++++++++++++++++++++++++ */
.step_component {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    padding: 32px;
    border-bottom: 5px solid var(--white);
    transition: var(--transtion);
}

.step_component:hover {
    border-color: var(--primary);
}

.step_component .step_first_div {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

.step_component .step_first_div .icon {
    width: 90px;
    flex-shrink: 0;
}

.step_component .step_first_div .line {
    width: 40%;
    background-color: var(--border-do);
    height: 1px;
    margin: auto;
}

.step_component .step_first_div .s_mun {
    font-size: 4.5rem;
    color: #11111114;
    transition: var(--transtion);
    font-weight: 700;
}

.step_component h4 {
    font-size: 1.3rem;
    margin: 16px 0;
    font-weight: 700;

}

.step_component p {
    margin: 0;
    color: var(--light-grey);
}

.readmore_btn a {
    display: block;
    padding: clamp(8px, 1vw, 14px) 32px;
    border: 1px solid var(--border-do);
    width: max-content;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transtion);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.readmore_btn a i {
    font-size: 1.4rem;
    font-weight: 400;
}

.step_component:hover .readmore_btn a {
    background-color: var(--primary);
    border-color: var(--primary);
}

.step_component:hover .s_mun {
    color: var(--primary);
}

.readmore_btn a::before {
    background-color: var(--secondary);
    position: absolute;
    content: '';
    z-index: -1;
    height: 0%;
    width: 0%;
    transition: var(--transtion);
    top: 0;
    left: 0;
}

.readmore_btn a:hover:before {
    height: 100%;
    width: 100%;
}

.readmore_btn a:hover {
    color: var(--white);
}

/* ++++++++++++++++++++++++++++++++
WORK PROCESS STEPS CSS 
++++++++++++++++++++++++++++++++ */



/* ==========================
CTA Banner section 
========================== */
.cta_banner {
    background-color: var(--primary);
    background: url('../images/bg/cta-bg.png');
    background-size: cover;
    background-position: center;
}

.cta_banner .slider_btn a {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--black);
}

.cta_banner .slider_btn a::before {
    background-color: var(--secondary);
}

.cta_banner h3 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
}

/* ==========================
CTA Banner section 
========================== */


/* ================ VIDEO POPUP ============== */
@keyframes pluse-border {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.video_banner {
    background: url('../images/bg/video-img.png');
    height: clamp(320px, 50vw, 570px);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.c_video a .play_icon {
    height: 100px;
    width: 100%;
}

.c_video a .play_icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.c_video a {
    position: relative;
}

.c_video a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 120px;
    width: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pluse-border 1500ms ease-out infinite;
    z-index: 1;
}

/* ================ VIDEO POPUP ============== */


/* ======================================
BLOG COMPONENT CSS
====================================== */
.blog_component {
    padding: clamp(16px, 2vw, 24px);
    border: 1px solid var(--border-do);
    border-radius: 10px;
}

.blog_component .admin_detail>div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog_component .b_imgae img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.blog_component .admin_detail>div i {
    color: var(--primary);
    font-size: 1.2rem;
}

.blog_component .admin_detail>div h6 {
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--light-grey);
}

.blog_component .b_content p {
    color: var(--light-grey);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_component .b_content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 16px 0;
    transition: var(--transtion);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_component .b_content h3:hover {
    color: var(--primary);
    transform: translateX(10px);
}

.blog_component .b_content>a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    width: max-content;
    gap: 10px;
    transition: var(--transtion);
    padding: 10px 0;
    font-weight: 600;
}

.blog_component .b_content>a:hover {
    color: var(--primary);
}

.blog_component .b_content>a i {
    transition: var(--transtion);
}

.blog_component .b_content>a:hover i {
    transform: rotate(45deg);
    color: var(--secondary);
}

.related_blog_Component {
    border: 1px solid var(--border-do);
}

.related_blog_Component .image {
    height: 320px;
    overflow: hidden;
}

.related_blog_Component .image img {
    height: 100%;
    widows: 100%;
    object-fit: cover;
}

.related_blog_Component .component_blog {
    padding: clamp(16px, 3vw, 24px);
}

.related_blog_Component .component_blog h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related_blog_Component .component_blog p {
    color: var(--light-grey);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_comment_div {
    margin-top: 120px;
}

.commenter_div {
    background-color: #f5f5f5;
    padding: 84px clamp(24px, 4vw, 52px) clamp(24px, 4vw, 44px) clamp(24px, 4vw, 52px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.commenter_div .image {
    height: 110px;
    width: 110px;
    overflow: hidden;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid var(--white);
}

.commenter_div ul {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--primary);
}

.commenter_div p {
    color: var(--light-grey);
    margin: 0;
}

.commenter_div h4 {
    font-weight: 600;
    font-size: 1.5rem;
}

/* ======================================
BLOG COMPONENT CSS
====================================== */



/* ======= BRAND SLIDER ========== */

.brandSlider {
    width: 100%;
    overflow: hidden;
}

.brandSlider .swiper-slide {
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brandSlider img {
    max-height: 80px;
    min-width: 120px;
    padding: 10px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.brandSlider img:hover {
    opacity: 1;
}

/* ======= BRAND SLIDER ========== */


/* ============================
 FOOTER 
 ============================ */
footer {
    /* background-color: var(--black2); */
    background: url('../images/bg/footer-bg.png');
    background-position: 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--light-grey);
    padding: 90px 0 50px 0;
}

.footer_logo img {
    max-width: 220px;
    width: 100%;
}

.footer_social_links ul li a {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: var(--light-grey);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transtion);
}

.footer_social_links ul {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer_social_links ul li a:hover {
    background-color: var(--primary);
}

.footer_links_wrapper {
    margin-top: clamp(32px, 4vw, 84px);
}

.footer_links_wrapper h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.footer_links_wrapper p {
    color: var(--border-do);
}

.footer_links_wrapper ul li a {
    transition: var(--transtion);
    color: var(--border-do);
    position: relative;
    font-size: 0.9rem;
}

.footer_links_wrapper ul li a::before {
    content: '\f08f';
    font-family: 'remixicon';
    display: inline-block;
    margin-right: 10px;
    font-size: 0.85rem;
    color: var(--primary);
}

.footer_links_wrapper .footer_contact ul li a::before {
    display: none;
}

.footer_links_wrapper ul li a:hover {
    color: var(--white);
}

.footer_links_wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_contact ul li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 1.2rem;
    color: var(--primary);
    border-radius: 50%;
    background-color: #3a3a3a7d;
    flex-shrink: 0;
}

.footer_contact ul {
    gap: 20px;
}

.footer_contact ul li {
    display: flex;
    gap: 16px;
}

.footer_copy_right {
    padding-top: clamp(44px, 4vw, 64px);
}

.copy_right a:hover {
    color: var(--primary);
}

/* ============================
 FOOTER 
 ============================ */




/* ===============================================
 ABOUT PAGE CSS 
 =============================================== */

.about_hero_sec {
    height: 460px;
    background: url('../images/bg/bdrc-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* display: flex;
    align-items: center; */
    color: var(--white);
}

.about_hero_content {
    padding-top: 250px;
}

.bread_crumb p {
    margin: 0;
    color: #a9a9a9;
}

.bread_crumb a {
    transition: var(--primary);
}

.bread_crumb a:hover {
    color: var(--primary);
}

.bread_crumb {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.about_hero_content h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    margin: 0;
}

/* ===============================================
 ABOUT PAGE CSS 
 =============================================== */



/* 
 ===============================
 INDIVIDUAL SERVICE PAGE
 =============================== */
.service_list_Container {
    border: 1px solid var(--border-do);
    border-radius: 10px;
    overflow: hidden;
}

.service_list_Container h4 {
    padding: 12px 32px;
    background-color: var(--primary);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 400;
}

.service_list_Container ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-bottom: 1px solid var(--border-ddd);
    font-weight: 400;
    transition: var(--transtion);
}

.service_list_Container ul li:last-child a {
    border-bottom: 0;
}

.service_list_Container ul li a:hover {
    color: var(--primary);
}

.right_service_div .rent_booking_form {
    background-color: #f5f5f5;
    padding: 24px 32px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

@media (min-width: 992px) {

    .right_service_div,
    .right_blog_div {
        position: sticky;
        top: 90px;
        right: 0;
    }

    .left_team_image_w {
        position: sticky;
        top: 90px;
        left: 0;
    }

}

.right_service_div .rent_booking_form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.left_ser_indi_div .image {
    height: 420px;
    overflow: hidden;
    margin-bottom: 32px;
}

.left_ser_indi_div .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.left_ser_indi_div h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.left_ser_indi_div p {
    color: var(--light-grey);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.inner_img img {
    height: 210px;
    object-fit: cover;
}

.inner_img p {
    margin: 0;
}

.left_ser_indi_div .step_component h4 {
    font-size: 1.6rem;
}

.left_ser_indi_div .step_component p {
    margin: 0;
}

.left_ser_indi_div .step_component .icon {
    border: 2px dotted var(--border-do);
    border-radius: 10px;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left_ser_indi_div .step_component .icon i {
    font-size: 3.5rem;
    color: var(--primary);
}

/* 
 ===============================
 INDIVIDUAL SERVICE PAGE
 =============================== */


/* ===========================
 TEAM PAGE 
 =========================== */
.team_component {
    background: var(--white);
    box-shadow: 1px 1.732px 60px 0px rgba(0, 0, 0, 0.1);
    transition: var(--transtion);
}

.team_component:hover {
    background-color: #fefaf1;
}

.team_component .team_content {
    padding: clamp(24px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.team_component .team_content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.team_component .team_content ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid var(--border-do);
    border-radius: 4px;
    font-size: 1.2rem;
    transition: var(--transtion);
}

.team_component .team_content ul li a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.team_component .team_content h3 {
    margin: 0;
    font-size: 1.7rem;
    transition: var(--transtion);
    font-weight: 700;
}

.team_component .team_content h3:hover {
    color: var(--primary);
}

.team_component .team_content p {
    font-size: 1rem;
    margin: 0;
    color: var(--primary);
}

.team_component .team_img {
    height: 420px;
    overflow: hidden;
}

.team_component .team_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transtion);
}

.team_component:hover .team_img img {
    transform: scale(1.1) rotate(5deg);

}

.left_team_image_w img {
    width: 100%;
    border-style: solid;
    border-width: 8px;
    border-color: rgb(255, 255, 255);
    box-shadow: 5px 8.66px 58px 0px rgba(0, 0, 0, 0.08);
}

.left_team_image_w ul li a {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transtion);
}

.left_team_image_w ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.left_team_image_w ul li a:hover {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.mt-20 {
    margin-top: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}



.right_team_indi .skill-per::before {
    content: attr(id);
    position: absolute;
    padding: 7px 6px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 12px;
    border-radius: 4px;
    top: -43px;
    right: 0;
    transform: translateX(50%);
}

.right_team_indi .skill-per::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    top: -16px;
    right: 0;
    transform: translateX(50%) rotate(45deg);
    border-radius: 2px;
}

.right_team_indi .per_info {
    background: var(--secondary);
    padding: 30px;
    display: flex;
    border-radius: 10px;
    margin-bottom: 30px;
    margin-top: 30px;
    color: var(--white);
    border-bottom: 6px solid var(--primary);
}

.right_team_indi p {
    color: var(--light-grey);
    font-size: 0.95rem;
}

.right_team_indi .info_text h6 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.right_team_indi .info_text p {
    margin: 0;
    margin-top: 5px;
    color: var(--border-ddd);
    font-size: 1rem;
}

.info_text>div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.info_text>div i {
    color: var(--primary);
    font-size: 1.2rem;
}

.right_team_indi>h3 {
    font-size: 2rem;
    font-weight: 700;
}

/* ===========================
 TEAM PAGE 
 =========================== */

/* ===================
FAQ PAGE 
=================== */
.mb-0 {
    margin-bottom: 0 !important;
}

.faq_section .faq_wrap .card {
    border: none;
    border-radius: 4px !important;
    margin-bottom: 15px;
    box-shadow: none;
    overflow: hidden;
    background: no-repeat;
}

.faq_section .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}

.faq_section .faq-btn.collapsed {
    background: no-repeat;
    color: #777;
    border-bottom: 1px solid #777;
    border-radius: 0;
}

.faq_section .faq-btn {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0px 0px 16px;
    padding-right: 30px;
    width: 100%;
    text-align: left;
    padding-right: 75px;
    background: none;
    border-bottom: 1px solid #111;
    border-radius: 0;
    color: #111;
}

.faq_section .faq-wrap .card-header {
    padding: 0;
    margin-bottom: 0;
    background-color: unset;
    border-bottom: none;
}

.faq_section .card-header {
    padding: 1rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.faq_section .faq_wrap .card-header h2 button {
    position: relative;
}

.faq_section .faq_wrap .card-header h2 button.collapsed::after {
    transform: rotate(180deg);
    color: var(--light-grey);
}

.faq_section .card .card-body {
    color: var(--light-grey);
}

.faq_section .faq_wrap .card-header h2 button::after {
    content: "\ea78";
    font-family: "remixicon";
    font-size: 26px;
    font-weight: normal;
    color: #111;
    position: absolute;
    right: 5px;
    top: 0;
    width: 50px;
    transition: var(--transtion);
    text-align: center;
    color: var(--black);
}

.faq_section .card-header:first-child {
    border: none;
}

.faq_section .section_title h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 700;
    margin-bottom: 32px;
}

.faq_section .section_title p {
    color: var(--light-grey);
    margin-bottom: 26px;
}

/* ===================
FAQ PAGE 
=================== */

/* 
***************************
BLOG PAGE 
*************************** */
.meta-info ul {
    padding-bottom: 0;
    border-bottom: none;
    display: inline-block;
    width: 100%;
    padding-left: 0;
    margin-bottom: 20px;
}

.meta-info ul li {
    display: inline-block;
    font-size: 14px;
    margin-right: 15px;
    font-weight: 500;
    color: var(--light-grey);
}

.meta-info ul li i {
    margin-right: 5px;
    color: var(--primary);
    font-size: 1.2rem;
}

.blog_card_component .blog_content {
    border: 1px solid #f5f5f5;
    padding: clamp(16px, 3vw, 32px);
}

.blog_card_component .blog_content h3 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 24px;
    transition: var(--transtion);

    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qoute_bg {
    background: url('../images/bg/quote_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog_card_component .blog_content h3:hover {
    color: var(--primary);
}

.blog_card_component .blog_content p {
    color: var(--light-grey);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_card_component .image {
    height: 520px;
    overflow: hidden;
}

.blog_card_component .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.quote_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 60px;
    width: 60px;
}

.quote_icon img {
    object-fit: contain;
    height: 100%;
}

.b_relative {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blgo_add_div iframe {
    width: 100%;
    height: 320px;
}

.filter_tag h3,
.r_post h3,
.p_categories h3,
.f_us h3,
.b_search_div h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-ddd);
    color: var(--secondary);
}

.b_search_div form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.b_search_div form input {
    height: 65px;
    padding: 16px 24px;
    width: 100%;
    outline: none;
    background-color: #f5f5f5;
    border: none;
}

.b_search_div form input::placeholder {
    color: var(--border-dark);
    font-size: 0.9rem;
}

.b_search_div form button {
    height: 65px;
    border: none;
    background-color: var(--primary);
    color: var(--black);
    padding: 16px 24px;
}

.f_us ul {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.f_us ul li a {
    height: 40px;
    width: 40px;
    border: 1px solid var(--border-do);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--light-grey);
    transition: var(--transtion);
    font-size: 1.1rem;
}

.p_categories ul {
    display: flex;
    flex-direction: column;
}

.p_categories ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-do);
    font-size: 0.9rem;
    color: var(--light-grey);
}

.p_categories ul li a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.p_categories ul li a span:last-child {
    text-align: end;
}

.p_categories ul li a span:first-child {
    transition: var(--transtion);
}

.p_categories ul li a:hover span:first-child {
    transform: translateX(10px);
    color: var(--secondary);
}

.r_post ul li {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--light-grey);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-ddd);
    padding: 12px 0;
}

.r_post ul li:last-child,
.p_categories ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.r_post ul li a {
    transition: var(--transtion);
}

.r_post ul li:hover a {
    transform: translateX(10px);
    color: var(--secondary);
}

.filter_tag .btns {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.filter_tag .btns a {
    padding: 10px 16px;
    border: 1px solid var(--border-do);
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    font-size: 0.9rem;
    color: var(--light-grey);
    transition: var(--transtion);
}

.filter_tag .btns a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.left_indi_blog_div p {
    color: var(--light-grey);
    font-size: 0.9rem;
}

.left_indi_blog_div h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    padding-bottom: 16px;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 20px;
}

.left_indi_blog_div .image {
    height: 420px;
    overflow: hidden;
    margin-bottom: 32px;
    margin-top: 32px;
}

.left_indi_blog_div .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog_tag_bx {
    padding: clamp(24px, 4vw, 64px);
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-align: center;
    margin: 32px 0 44px 0;
}

.blog_tag_bx h5 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.blog_tag_bx h3 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    margin: 0;
}

.left_Sec_Div .filter_tag .btns a {
    border-width: 1.5px;
    border-radius: 5px;
}

.left_Sec_Div .filter_tag h3 {
    font-size: 1.4rem;
    font-weight: 600;
    padding-bottom: 24px;
}

.left_Sec_Div {
    padding-top: 24px;
    margin-top: 44px;
    border-top: 1px solid var(--border-ddd);
}

.left_Sec_Div .bx a {
    height: 80px;
    width: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.left_Sec_Div .bx a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prev_and_next_blog {
    padding: 32px 0;
    margin: 32px 0;
    border-bottom: 1px solid var(--border-ddd);
    border-top: 1px solid var(--border-ddd);
}

.pree p {
    font-size: 0.9rem;
    margin: 0;
    padding-bottom: 5px;
    color: var(--light-grey);
    text-transform: uppercase;
}

.pree a {
    font-size: 1.3rem;
    font-weight: 600;
    transition: var(--transtion);
}

.pree a:hover {
    color: var(--primary);
}

.comment_div_wrapper>h3,
.related_blog_wrapper>h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    margin-bottom: 24px;
    font-weight: 600;
    padding-top: 24px;
}

.div_comment {
    display: flex;
    gap: 24px;
}

.div_comment .image {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.div_comment .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.replay_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    border: 1px solid var(--border-ddd);
    border-radius: 4px;
    gap: 10px;
    transition: var(--transtion);
    padding: 10px 16px;
    color: var(--secondary);
}

.replay_btn:hover {
    color: var(--white);
    background-color: var(--primary);
}

.div_comment h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.div_comment .date {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--primary);
    padding-top: 6px;
}

.div_comment .desc {
    margin-top: 16px;
    color: var(--light-grey);
    margin-bottom: 24px;
}

.ccc_wrapper {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-ddd);
    margin-bottom: 44px;
}

.ccc_wrapper>div:nth-child(even) {
    width: 85%;
    margin-left: auto;
}

.comment_form_container h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.comment_form_container .rent_booking_form {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: clamp(24px, 3vw, 32px);
}

.comment_form_container .rent_booking_form>p {
    margin-bottom: 24px;
}

.comment_form_container .rent_booking_form .slider_btn button::before {
    background-color: var(--primary);
}

.comment_form_container .rent_booking_form .slider_btn button {
    width: max-content;
    background-color: var(--secondary);
    border-color: var(--primary);
}

.comment_form_container .rent_booking_form .slider_btn button:hover {
    color: var(--white);
}

.comment_form_container .rent_booking_form .c_input input {
    height: 70px;
    border-radius: 0;
    border: none;
    padding: 12px 24px;
}

.comment_form_container .rent_booking_form .c_input input:focus {
    outline: 1px solid var(--primary);
}

.comment_form_container .rent_booking_form .c_input .rel_div i {
    color: var(--primary);
    font-size: 1.2rem;
}

.comment_form_container .rent_booking_form .c_input textarea {
    width: 100%;
    border: none;
}

/* 
***************************
BLOG PAGE 
*************************** */

/* ===========================
Contact page 
=========================== */
.contact_page .rent_booking_form p {
    margin-bottom: 24px;
}

.contact_page .rent_booking_form {
    box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, .03);
    padding: clamp(24px, 3vw, 32px);
    border-radius: 10px;
}

.cc_details>h3 {
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 44px;
}

.cc_details ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 3vw, 32px);
    padding: 0;
    list-style: none;
}

.cc_details ul li:nth-child(3) {
    grid-column: 1 / -1;
}

.cc_details ul li .icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.cc_details ul li a {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    color: var(--light-grey);
}
.cc_details ul li a:hover{
    color: var(--secondary);
}

/* ===========================
Contact page 
=========================== */


/* pagintaon  */
.pagination_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.pagination_div {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page_item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary);
    background: #fff;
    border: 1px solid rgba(20, 27, 34, 0.15);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
    overflow: hidden;
}

.page_item .page-link:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.page_item.active .page-link {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    font-weight: 600;
    pointer-events: none;
    box-shadow: none;
}

.page_item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
}

/* pagintaon  */







/* =================================== 
MEDIA QUERIES
===================================  */
@media (max-width: 1400px) {}

@media (max-width: 1200px) {
    .side_gap {
        padding: 0;
    }

    .top_header_section .left_div>div a {
        font-size: 0.8rem;
    }

    .top_header_section,
    nav .nav_ul {
        padding-left: 160px;
    }

    nav .nav_ul li a {
        font-size: 1rem;
    }

    .top_logo {
        width: 140px;
        height: 95px;
    }

    .nav_right_div .search_btn,
    .nav_right_div .common_btn {
        display: none;
    }

    .car_tag_Section .rent_booking_form {
        padding: 44px 32px;
    }
}

@media (max-width: 992px) {
    header.scrolled .header_class nav {
        padding: 0;
    }

    .home_hero_section {
        max-height: 800px;
    }

    .top_header_section {
        padding: 16px;
    }

    .side_gap {
        padding: 0;
    }

    .top_logo,
    nav .nav_ul {
        display: none;
    }

    nav .nav_ul {
        padding-left: 0;
    }

    .nav_right_div .search_btn,
    .nav_right_div .common_btn {
        display: none;
    }


    .header_class .container-fluid {
        padding: 0;
        width: 100%;
    }

    .header_class nav {
        padding: 16px;
    }

    .nav_right_div .menu_bar {
        display: block;
    }

    .top_logo2 {
        display: flex;
    }

    .find_car_form {
        position: static;
        transform: translateY(0);
    }

    .car_tag_Section .rent_booking_form {
        margin-top: 0;
    }

    .find_car_section {
        padding-bottom: 64px;
    }
}

@media (max-width: 768px) {
    .top_header_section {
        display: none;
    }

    .home_hero_section {
        display: block;
    }

    .slider_content {
        padding-top: 100px;
    }

    .find_car_section {
        padding-bottom: 44px;
    }

    .car_tag_Section .rent_booking_form {
        padding: 32px 16px;
    }

    .common_heading h3 {
        max-width: 100%;
    }

    .about_hero_sec {
        height: 420px;
    }

    .about_hero_content {
        padding-top: 180px;
    }

    .inner_img img {
        margin-bottom: 24px;
    }

    .div_comment .image {
        height: 80px;
        width: 80px;
    }
         .cc_details ul {
             grid-template-columns: 1fr;
         }
    
         .cc_details ul li:nth-child(3) {
             grid-column: auto;
         }
}

@media (max-width: 576px) {
    .home_hero_section .slider_content h2 span {
        padding-top: 5px;
    }

    .home_about_right .ab_exp_tag {
        left: 0;
        bottom: 15px;
    }

    .subscribe_banner .banner_heading form {
        flex-direction: column;
    }

    .subscribe_banner .banner_heading form input {
        background-color: transparent;
        color: var(--black);
    }

    .subscribe_banner .banner_heading form input::placeholder {
        color: var(--black);
    }

    .subscribe_banner {
        background-image: none;
    }

    .page_item .page-link {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .blog_card_component .image {
        height: 320px;
    }

    .div_comment {
        flex-direction: column;
    }

    .ccc_wrapper>div:nth-child(even) {
        width: 100%;
    }
}