@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lora:ital,wght@0,400..700;1,400..700&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&display=swap');

:root {
    --primary-white: #FFFFFF;
    --primary-gold: #CCA848;
    --primary-gold2: #A7893B;
    --btn-color: #C09C3D;
    --primary-black: #0D0D0D;
    --text-color: #6D6D6D;
    --card-bg: #F6F5F1;
    --secondary-black: #161C1D;
    --slider-bg: #F6F5F1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}


li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: var(--primary-white);
    font-weight: 400;

}

.col100 {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0 15px;
}

.col80 {
    max-width: 80%;
    flex: 0 0 80%;
    padding: 0 15px;
}

.col75 {
    max-width: 75%;
    flex: 0 0 75%;
    padding: 0 15px;
}

.col50 {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 0 15px;
}

.col55 {
    max-width: 55%;
    flex: 0 0 55%;
    padding: 0 15px;
}

.col60 {
    max-width: 60%;
    flex: 0 0 60%;
    padding: 0 15px;
}

.col45 {
    max-width: 45%;
    flex: 0 0 45%;
    padding: 0 15px;
}

.col40 {
    max-width: 40%;
    flex: 0 0 40%;
    padding: 0 15px;
}

.col33 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
    padding: 0 15px;
}

.col35 {
    max-width: 35%;
    flex: 0 0 35%;
    padding: 0 15px;
}

.col25 {
    max-width: 25%;
    flex: 0 0 25%;
    padding: 0 15px;
}

.col20 {
    max-width: 20%;
    flex: 0 0 20%;
    padding: 0 15px;
}


/* navbar */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    /* width: 100%; */
    border: 1px solid #908F8E;
}

.navcontainer {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.navlinks .active {
    color: var(--primary-gold);
}

.navbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

/* header{
    position: fixed;
    width: 100%;
    background: url("images/bannerimg.png") no-repeat;
    background-position: center;
    background-size: cover;
} */

.brand a {
    max-width: 150px;
    width: 100%;
    display: block;
}

.navlinks {
    display: flex;
    /* position: relative; */
}

.navlinks li a {
    font-size: 18px;
    font-family: "Lato", sans-serif;
    padding-right: 18px;
    color: var(--primary-white);
}

.navlinks li a:hover {
    color: var(--primary-gold);
}

.login i {
    color: var(--btn-color);
    font-size: 35px;
    cursor: pointer;
}

.login i:hover {
    color: #a98306;
    transition: 0.3s all ease-in-out;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-white);
    transition: transform 0.3s ease;
}



/* banner section */
.banner {
    position: relative;
    width: 100%;
    min-height: 825px;
    background: url("images/bannerimg.png") no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}


/* left banner */
.left-banner-content {
    margin-top: 150px;
}

.left-banner-content span {
    font-family: "Lora", serif;
    font-size: 57px;
    font-weight: 700;
    display: inline-block;
}

.banner-description {
    font-size: 40px;
    font-family: "Lora", serif;
    font-weight: 400;
}



/* right banner */
.right-banner-content {
    width: 100%;
    /* height: 410px; */
    background-color: #273234;
    color: var(--primary-white);
    border: 2px solid var(--primary-gold2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 25px 16px 35px 18px;
}

.title {
    font-family: "Lora", serif;
    font-size: 22px;
    line-height: 1.7;
}

.color {
    color: var(--primary-gold);
}

.second-row i {
    color: var(--primary-gold);
    margin-left: 40px;
}

.location {
    border: 1px solid #908F8E;
    padding: 15px 28px 15px 23px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.location i {
    color: var(--primary-gold2);
    font-size: 20px;
}

.location-heading,
.start {
    display: flex;
    flex-direction: column;
    color: #C4C3C0;
}

#country {
    background-color: #273234;
    outline: none;
    border: none;
    color: var(--primary-white);
    appearance: none;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    cursor: pointer;
    padding: 5px 0;
}

.calender-details {
    display: flex;
    width: 100%;
}

.calendar {
    border: 1px solid #908F8E;
    padding: 15px 28px 15px 23px;
    border-radius: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calender-details:nth-child(3) {
    gap: 10px;
}

input[type="date"] {
    position: relative;
    width: 170px;
    height: 30px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-white);
    background: #273234 url("images/calendar.png") no-repeat;
    background-position: 100%;
    outline: none;
    border: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
}


.banner-btn {
    width: 100%;
    background-color: var(--primary-gold);
    padding: 24px 0;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
    color: var(--primary-white);
    font-size: 18px;
}

.banner-btn:hover {
    background-color: #a98306;
    transition: 0.3s ease-in-out;
}


/* about-us */
.about-us {
    position: relative;
    width: 100%;
    min-height: 750px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    display: flex;
    align-items: center;
    padding-bottom: 45px;
}

.car-img img {
    position: absolute;
    /* top: 10px; */
    left: 55px;
    right: 0;
    bottom: 560px;
}

.about-us-details {
    /* position: relative; */
    display: flex;
    flex-direction: column;
    margin-top: 180px;
}

.about-us-heading,
.our-collection-heading,
.choose-us-heading,
.we-offer-heading,
.work-heading,
.testimonials-heading,
.our-blog-heading {
    color: var(--primary-gold2);
    font-family: "Lato", sans-serif;
    font-size: 32px;
    font-weight: 600;
}

.sub-heading {
    font-family: "Lora", serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 24px;
}

.about-us-details p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 30px;
    width: 480px;
}

.cmn-btn {
    display: inline-block;
    padding: 20px 60px;
    background-color: var(--primary-gold);
    color: var(--primary-white);
    text-transform: uppercase;
    border-radius: 18px;
}

.cmn-btn:hover {
    color: var(--primary-black);
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

.about-us-right {
    /* position: absolute; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 170px;
}

.about-us-right .long {
    margin-right: 12px;
}

.right-section {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.experience {
    position: relative;
    background: url("images/aboutus2.png") no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    min-height: 175px;
    color: var(--primary-white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.experience div {
    font-size: 40px;
    font-family: "Lato", sans-serif;
    font-weight: 600;
}

.experience span {
    display: block;
    font-size: 20px;
    font-weight: 400;
    font-family: "Lora", serif;
}


/* logos */
.logo {
    position: relative;
    background-color: #273234;
    width: 100%;
    min-height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes slide {
    form {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.logos-slide {
    display: flex;
    animation: 15s slide infinite linear;
}

.logos:hover .logos-slide {
    animation-play-state: paused;
}

.car-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.Large {
    background-color: var(--primary-white);
    border-radius: 18px;
    width: 185px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.medium {
    background-color: var(--primary-white);
    border-radius: 18px;
    width: 106px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.small {
    background-color: var(--primary-white);
    border-radius: 18px;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* collections */
.our-collection {
    position: relative;
    width: 100%;
    min-height: 780px;
    /* display: flex; */
    color: var(--primary-black);
    padding: 95px 0;
}

.our-collection-details,
.choose-us-details,
.we-offer-details,
.work-details,
.testimonials-details,
.our-blog-details {
    text-align: center;
}

.our-collection-heading {
    margin-bottom: 15px;
}

.our-collection-details .sub-heading {
    margin-bottom: 35px;
}

.collection-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collection-btn {
    border: none;
    font-size: 28px;
    padding: 12px 20px;
    background-color: #161616;
    color: var(--primary-gold2);
    border-radius: 50%;
}

.collection-btn:hover {
    color: #161616;
    background-color: var(--primary-gold2);
}

.collection-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.collection-items {
    max-width: 33.33%;
    flex: 0 0 33.33%;
    padding: 0 15px;
}

.collection-items-content {
    background-color: var(--slider-bg);
    padding: 25px 20px 30px;
    color: #161616;
    text-align: center;
}

.heading {
    font-size: 20px;
    font-family: "Lora", serif;
    /* display: block; */
}

.rating {
    color: var(--primary-gold2);
    display: inline-block;
    margin-bottom: 10px;
}

.dollar {
    display: inline-block;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dollar i {
    margin-bottom: 8px;
    font-size: 18px;
}

.large {
    font-size: 30px;
}

.more-details {
    font-size: 15px;
    border: 2px solid var(--primary-gold2);
    padding: 10px 0;
    position: relative;
    /* transition: 0.3s ease-out; */
    z-index: 1;
    color: #161616;
}

.more-details a {
    color: #161616;
}

.more-details:hover a {
    cursor: pointer;
    color: #FFFFFF;
}

.more-details::before {
    /* transition: 0.5s all ease; */
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    background-color: var(--primary-gold2);

}

.more-details:hover::before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: -1;
}


/* choose-us */
.choose-us {
    position: relative;
    width: 100%;
    min-height: 680px;
    background-color: var(--secondary-black);
    color: var(--primary-black);
    padding: 50px 0;
}


.choose-us-details .sub-heading {
    color: var(--primary-white);
    margin: 15px 0 30px;
}

.col-change-row {
    display: none;
}

.choose-us-left,
.choose-us-right {
    display: flex;
    flex-direction: column;
    /* text-align: left; */
}

.choose-us-right {
    text-align: right;
}

.left-boxes,
.right-boxes {
    background-color: var(--slider-bg);
    padding: 33px 20px;
    border-radius: 18px;
}

.left-boxes:nth-child(n+1),
.right-boxes:nth-child(n+1) {
    margin-bottom: 20px;
}

.left-boxes span,
.right-boxes span {
    font-weight: 800;
}

.left-boxes p,
.right-boxes p {
    font-size: 14px;
    font-weight: 500;
}

.choose-us-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.front-img {
    position: absolute;
    bottom: 0;
}



/* we offer */
.we-offer {
    position: relative;
    width: 100%;
    min-height: 730px;
    padding: 70px 0;
    color: var(--primary-black);
}

.we-offer-heading {
    margin-bottom: 18px;
}

.we-offer-details .sub-heading {
    margin-bottom: 35px;
}

.offer-service {
    background-color: var(--slider-bg);
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    padding: 65px 22px 60px;
    box-shadow: -3px 3px 6px lightgrey, 3px 3px 6px lightgrey;
    cursor: pointer;
}

.service-details {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-logo {
    position: absolute;
}

.service-details {
    flex-direction: column;
    text-align: center;
}

.service-details span {
    font-family: "Lora", serif;
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0;
}

.service-details p {
    font-size: 14px;
    font-weight: 400;
}

.offer-btn {
    margin-top: 45px;
    text-align: center;
}

.cards .card {
    transition: 400ms;
}

.cards .card:hover {
    transform: scale(1.0.5, 1.0.5);
}

.cards:hover>.card:not(:hover) {
    filter: blur(3px);
    transform: scale(0.9, 0.9);
}


/* how-it-work */
.how-it-work {
    position: relative;
    background-color: var(--secondary-black);
    width: 100%;
    min-height: 670px;
    color: var(--primary-white);
    padding: 73px 0;
}

.work-details .sub-heading {
    margin-top: 25px;
}

.work-row .col25 {
    padding: 0;
    margin-top: 40px;
}

.work-row .howitwork-all {
    display: none;
}

.group-one,
.group-two,
.group-three,
.group-four {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.group-one .car {
    position: absolute;
    left: -25px;
    bottom: -63px;
}

.up-ellipse {
    position: absolute;
    top: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.group-logo {
    position: absolute;
}

.work-decription {
    position: absolute;
    bottom: -50px;
}

.work-decription span,
.down-work-decription span {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.9;
}

.work-decription p,
.down-work-decription p {
    font-size: 18px;
    max-width: 203px;
}

.down-line {
    position: absolute;
    top: 162px;
    left: -13.5px;
}

.down-ellipse {
    position: absolute;
    top: 280px;
    left: 80px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.down-work-decription {
    position: absolute;
    top: 105px;
    left: 25px;
}

.group-three {
    left: -45px;
}

.group-three .work-decription {
    bottom: -20px;
}

.group-four {
    left: -45px;
}

.group-four .down-work-decription {
    left: 55px;
}

.group-four .work-dot {
    position: absolute;
    right: 18px;
    top: 133px;
}



/* testimonials */
.testimonials {
    position: relative;
    width: 100%;
    min-height: 680px;
    color: var(--primary-black);
    padding: 75px 0;
}

.testimonials-details .sub-heading {
    margin-bottom: 45px;
}

.testimonials-content {
    display: flex;
    text-align: start;
    background-color: var(--slider-bg);
    padding: 17px 17px;
    border-radius: 18px;
}

.testimonials-content-details {
    padding: 30px 23px;
    border-radius: 18px;
    border: 2px solid #908F8E;
}

.content-heading {
    font-family: "Lora", serif;
    font-weight: 700;
    font-size: 24px;
}

.content-rating {
    display: inline-block;
    color: var(--primary-gold2);
    padding: 15px 0 25px;
}

.testimonials-content-details p {
    color: #424242;
    font-size: 14px;
    /* max-width: 277px; */
    margin-bottom: 20px;
}

.reviewer {
    color: var(--primary-gold2);
    font-size: 20px;
    font-weight: 700;
    font-family: "Lora", serif;
}

.swiper {
    min-height: 400px;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-gold2) !important;
}



/* book-car */
.book-car {
    position: relative;
    width: 100%;
    background-color: var(--primary-black);
    /* height: 100%; */
    /* height: 100%; */
}

.book-background {
    width: 100%;
}

.background-car {
    position: absolute;
    /* width: 100%; */
}

.book-background img {
    /* position: absolute; */
    width: 100%;
}

.book-car-content {
    position: absolute;
    top: 140px;
}

.book-car-content p {
    max-width: 470px;
    font-size: 20px;
    font-family: "Lora", serif;
    font-weight: 400;
    margin: 20px 0;
}

.book-heading {
    color: var(--primary-white);
    font-family: "Lora", serif;
    font-size: 36px;
}

.book-car-btn {
    display: flex;
}

.book-call {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-call .call {
    display: inline-block;
    border: 3px solid var(--primary-gold);
    border-radius: 15px;
    margin-left: 25px;
    padding: 3px 25px;
    font-size: 25px;
    color: var(--btn-color);
}

.book-car-btn .cmn-btn {
    text-transform: none;
}

.call:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}


/* our-blog */
.our-blog {
    position: relative;
    width: 100%;
    min-height: 800px;
    color: var(--primary-black);
    padding: 88px 0;
}

.our-blog-details .sub-heading {
    margin-bottom: 45px;
}

.left-container {
    position: relative;
}

.left-container .car {
    position: absolute;
    z-index: -1;
}

.container-content {
    position: absolute;
    bottom: 30px;
    left: 25px;
    right: 0;
    color: var(--primary-white);
}

.container-content span,
.right-row-content span {
    font-size: 18px;
    font-weight: 500;
    margin-left: 6px;
}

.container-content p {
    font-family: "Lora", serif;
    font-size: 24px;
    font-weight: 600;
    max-width: 411px;
    margin: 10px 0;
}

.right-icon i {
    font-size: 34px;
    color: var(--primary-gold);
}

.right-row-content {
    margin-left: 10px;
    color: var(--primary-black);
}

.right-row {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 15px; */
}

.middle {
    margin: 15px 0;
}

.right-row-content p {
    font-family: "Lora", serif;
    font-size: 22px;
    font-weight: 500;
    max-width: 354px;
    margin: 10px 0;
}


/* rentive-app */
.rentive-app {
    position: relative;
    background-color: var(--secondary-black);
    width: 100%;
    min-height: 500px;
    /* padding: 45px 0; */
    padding-top: 50px;
}

.app-container {
    padding-top: 35px;
}

.app-container h1 {
    font-family: "Lora", serif;
    font-size: 36px;
    font-weight: 600;
}

.qr-text {
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    color: #C4C3C0;
    margin: 25px 0 40px;
}

.qr {
    display: flex;
    align-items: center;
}

.all-store {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
}

.qr-store {
    background-color: var(--primary-gold2);
    border-radius: 18px;
}

.store-gap {
    margin-bottom: 20px;
}

.play-store,
.apple-store {
    display: flex;
    padding: 10px 38px 10px 12px;
}

.apple-store {
    padding-right: 24px;
}

.play-store i,
.apple-store i {
    font-size: 44px;
    color: var(--primary-black);
    padding-right: 5px;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.get {
    color: #E3E2DE;
    font-size: 14px;
}

.store-heading {
    font-family: "Lora", serif;
    font-size: 20px;
    color: var(--primary-white);
}


.phone-section {
    position: relative;
    z-index: 1;
}

.phone-section .phone {
    position: absolute;
    z-index: -999;
}


/* become a host */
.host {
    position: relative;
    background-color: rgba(204, 204, 202, 0.5);
    width: 100%;
    min-height: 470px;
}

.girl-photo {
    position: absolute;
    top: 70%;
    left: 40px;
}

.girl-photo2 {
    position: absolute;
    top: 20%;
    left: 60px;
}

.girl-photo3 {
    position: absolute;
    top: 20%;
    left: 40%;
}

.girl-photo4 {
    position: absolute;
    top: 70%;
    left: 50%;
}

.host-banner {
    margin-top: 80px;
}

.host-heading {
    font-family: "Lora", serif;
    font-size: 64px;
    font-weight: 600;
    color: var(--primary-gold2);

}

.host-banner h1 {
    font-size: 125px;
    color: rgba(22, 22, 22, 0.8);
    line-height: 1.1;
}

.host-banner p {
    color: #686868;
    font-size: 24px;
    font-weight: 500;
}

.host-btn {
    margin-top: 15px;
}

.host-right-section {
    position: relative;
}

.host-car {
    position: relative;
    right: -190px;
}

.host-car-full {
    display: none;
}

.host-woman {
    position: absolute;
    left: 265px;
    bottom: 0px;
}



/* footer */
footer {
    position: relative;
    width: 100%;
    background-color: var(--secondary-black);
    min-height: 470px;
    padding: 60px 0;
}

.brand-logo a {
    display: inline-block;
    max-width: 150px;
}

.footer-logo-icons p {
    font-size: 18px;
    color: var(--slider-bg);
    margin: 18px 0;
}

.social-media-icons span {
    font-family: "Lora", serif;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    margin-bottom: 7px;
}

.social-media-icons i {
    color: var(--primary-white);
    background-color: var(--primary-gold2);
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 50%;
    margin-right: 3px;
}

.social-media-icons i:hover {
    color: var(--primary-gold2);
    background-color: var(--primary-white);
}

.links {
    padding-top: 25px;
    padding-left: 40px;
}

.links span {
    font-family: "Lora", serif;
    font-size: 24px;
    font-weight: 600;
}

.lists i {
    color: var(--primary-gold2);
    -webkit-text-stroke: 1.5px;
    font-size: 18px;
    margin-right: 5px;
}

.contactus i {
    color: var(--primary-gold2);
    font-size: 18px;
    margin-right: 5px;
}

.lists a,
.contactus a {
    color: var(--primary-white);
}

.lists a:hover,
.contactus a:hover {
    color: var(--primary-gold2);
}

.lists li,
.contactus li {
    margin-bottom: 15px;
    margin-top: 18px;
}




/* Media Queries Start */

@media (max-width:1399px) {

    /* car */
    .car-img img {
        left: 20px;
    }

    /* become a host */
    .host-car {
        right: -130px;
    }

    .girl-photo4 {
        left: 40%;
    }

    .girl-photo2 {
        top: 10%;
        left: 42px;
    }

    .host-woman {
        left: 200px;
    }
}


@media (max-width:1199px) {

    /* right banner content */
    .calendar {
        padding: 15px 13px 15px 13px;
    }

    /* become a host */
    .girl-photo2 {
        top: 3%;
    }

    .girl-photo {
        display: none;
    }

    .host-car {
        right: -30px;
    }

    .host-woman {
        left: 110px;
    }


    /* our blog */
    .our-blog-row .col50 {
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .left-container {
        margin-bottom: 25px;
    }
}

@media (max-width:1125px) {
    .content-heading {
        width: 211px;
    }
}

@media (max-width:1024px) {

    /* banner */
    .banner {
        min-height: 900px;
    }

    .banner-row .col55,
    .col45 {
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .left-banner-content {
        text-align: center;
        margin-top: 70px;
        margin-bottom: 40px;
    }

    /* right banner calender */
    input[type="date"] {
        width: 43vw;
    }

    /* about us */
    .about-us-details p {
        max-width: 440px;
    }

    /* logo */
    .logo-container {
        max-width: 925px;
    }

    /* how it work */
    .work-row {
        margin: 0 auto;
    }

    .up-line {
        position: relative;
        left: 8px;
    }

    .down-line {
        left: 4px;
        top: 147px;
    }

    .group-three,
    .group-four {
        left: -12px;
    }

    .down-ellipse {
        top: 245px;
        left: 85px;
    }

    .group-four .work-dot {
        right: -13px;
        top: 118px;
    }

    /* book a car */
    .book-car-content {
        top: 65px;
    }

    /* rentive app */
    .phone-section {
        bottom: -48px;
    }

    /* become a host */
    .host-woman {
        bottom: -40px;
        left: 100px;
    }

    .host-car {
        right: -15px;
    }

    .girl-photo4 {
        display: none;
    }
}


@media (max-width:991px) {

    /* car */
    .car-img img {
        top: -90px;
        /* display: ; */
    }

    /* aboutus & choose-us */
    .about-us-row .col50,
    .choose-us-row .col50 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .about-us-details {
        text-align: center;
    }

    .about-us-details .sub-heading {
        max-width: 600px;
        margin: 10px auto;
    }

    .about-us-details p {
        margin: 0 auto;
        max-width: 550px;
    }

    .about-btn {
        margin-top: 25px;
    }

    .about-us-right {
        margin-top: 30px;
    }


    /* choose us */
    .choose-us-row .col25 {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .choose-us-row {
        display: none;
    }

    .choose-us-img {
        bottom: 20px;
    }

    .col-change-row {
        display: inline-flex;
    }

    .col-change-row .col25 {
        max-width: 50%;
        flex: 0 0 50%;
    }


    /* we-offer */
    .we-offer-row {
        margin: 0 auto;
    }

    .we-offer-row .col25 {
        max-width: 50%;
        flex: 0 0 50%;
        padding: 15px 20px;
    }

    /* how it work */
    .down-line {
        left: 4px;
        top: 139px;
    }

    .down-ellipse {
        top: 236px;
    }

    .work-row .col25 {
        display: none;
    }

    .work-row .howitwork-all {
        display: block;
        margin: 0 auto;
    }


    /* testimonials */
    .testimonials {
        padding: 75px 0 50px;
    }

    .content-heading {
        width: 92%;
    }

    /* .testimonials-row {
        /* max-width: 890px; */
    /* margin: 0 auto; */
    /* } */

    .swiper {
        min-height: 420px;
    }

    .testimonials-content-details {
        padding: 15px;
    }

    .content-rating {
        padding: 15px 0 15px;
    }

    /* .testimonials-row .col33{
        max-width: 50%;
        flex: 0 0 50%;
    } */


    /* book a car */
    .book-car-content {
        top: 60px;
    }

    .book-car-content p {
        max-width: 360px;
    }


    /* our blog */
    .our-blog-details .sub-heading {
        max-width: 600px;
        margin: 0 auto;
    }

    .our-blog-row .col50 {
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .left-container {
        margin: 25px 0;
    }

    /* rentive-app */
    .rentive-app-row .col50,
    .host-row .col40,
    .col60 {
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .phone-section {
        bottom: 0px;
        margin-top: 35px;
    }


    /* host */
    .host-right-section .host-car {
        display: none;
    }

    .host-right-section .host-car-full {
        display: block;
    }

    .host-woman {
        bottom: 0px;
    }

    .girl-photo3,
    .girl-photo2 {
        display: none;
    }


    /* footer section */
    .footer-row {
        text-align: center;
    }

    .footer-row .col25 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .links {
        padding-left: 0px;
    }

    .footer-logo-icons p {
        max-width: 400px;
        margin: 8px auto;
    }

    .social-media-icons span {
        display: block;
        margin: 8px 0;
    }
}


@media (max-width:767px) {
    .navbox .navlinks {
        position: fixed;
        /* top: 18%; */
        top: 105px;
        right: 0;
        width: 100%;
        height: 100vh;
        /* height: calc(100vh - 18%); */
        background: url("images/bannerimg.png") no-repeat;
        background-size: cover;
        background-position: center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translate(100%);
        transition: transform 0.8s ease-in-out;
    }


    .navbox .navlinks.active {
        transform: translate(0);
    }

    .hamburger {
        display: flex;
    }

    .navbox .navlinks li {
        margin: 20px 0;
    }

    .navbox .navlinks a {
        font-size: 22px;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(50deg) translateY(10px);
        background: var(--primary-gold2);
    }


    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-50deg) translateY(-11px);
        background: var(--primary-gold2);
    }

    .login i {
        display: none;
    }



    /* about us */
    .about-us-details p {
        font-size: 12px;
    }

    .about-us-details .sub-heading {
        max-width: 530px;
    }


    /* all sub heading */
    .sub-heading {
        font-size: 28px;
    }

    /* btn */
    .cmn-btn {
        padding: 15px 35px;
        font-size: 13px;
    }

    /* logo */
    .logo-container {
        max-width: 625px;
    }

    /* collection */
    .collection-items {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .collection-btn {
        font-size: 18px;
        padding: 10px 15px;
    }

    /* choose us */
    .left-boxes,
    .right-boxes {
        padding: 33px 25px;
    }

    /* service section */
    .service-details p {
        font-size: 10px;
    }

    /* testimonials */
    /* .swiper {
        min-height: 450px;
    } */
    .testimonials-row .col33 {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .content-heading {
        width: 62%;
    }

    /* book car */
    .book-car-content {
        top: 20px;
    }

    .book-heading {
        font-size: 32px;
    }

    .book-car-content p {
        font-size: 18px;
        margin: 15px 0;
    }

    .book-call .call {
        padding: 3px 18px;
        border-radius: 10px;
        font-size: 16px;
    }

    /* our blog & aboutus*/
    .our-blog-details .sub-heading,
    .about-us-details p {
        max-width: 460px;
    }

    .container-content p,
    .right-row-content p,
    .host-banner p {
        font-size: 18px;
    }


    /* host */
    .host-banner {
        margin: 30px;
    }

    .host-heading {
        font-size: 44px;
    }

    .host-banner h1 {
        font-size: 90px;
    }
}


@media (max-width:600px) {

    /* banner */
    .left-banner-content span {
        font-size: 50px;
    }

    .banner-description {
        font-size: 30px;
    }

    /* car img */
    .car-img img {
        top: -57px;
    }

    /* aboutus */
    .about-us-details .sub-heading {
        max-width: 511px;
    }

    .about-us-details p {
        max-width: 360px;
    }

    .about-us-details {
        margin-top: 130px;
    }

    /* logo */
    .logo-container {
        max-width: 500px;
    }

    /* collection */
    .our-collection {
        min-height: 700px;
    }

    .collection-items {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .collection-items-content {
        padding: 12px 15px;
    }

    .heading {
        font-size: 18px;
    }

    .rating {
        margin-bottom: 0;
        font-size: 10px;
    }

    .collection-items-content .details {
        font-size: 12px;
    }

    .dollar {
        margin-top: 5px;
        font-size: 12px;
    }

    .dollar .large {
        font-size: 25px;
    }

    .more-details {
        font-size: 14px;
    }

    /* choose us */
    .left-boxes,
    .right-boxes {
        padding: 25px 15px;
    }

    .offer-service {
        padding: 45px 22px 45px;
    }

    .service-details span {
        margin: 15px 0;
    }

    /* testimonial */
    .testimonials-row .col33 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* book car */
    .book-car-content {
        text-align: center;
        top: 16px;
    }

    .book-car-content p {
        margin: 10px 0;
    }

    .book-car-btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* host car */
    .host-woman {
        left: 23px;
        width: 232px;
    }
}

@media (max-width:530px) {

    /* banner */
    .left-banner-content span {
        font-size: 40px;
    }

    .banner-description {
        font-size: 25px;
    }

    .title {
        margin: 0 auto;
        font-size: 18px;
    }

    .right-banner-content {
        width: 100%;
    }

    .calender-details {
        flex-direction: column;
    }

    input[type="date"] {
        width: 80vw;
    }

    /* testimonails */
    .content-heading {
        width: 42%;
    }

    /* car */
    .car-img img {
        left: 5px;
    }

    .about-us-details .sub-heading,
    .our-blog-details .sub-heading {
        font-size: 20px;
        max-width: 330px;
    }

    .about-us-details p {
        font-size: 10px;
        max-width: 220px;
    }

    .about-us-right {
        display: block;
        text-align: center;
    }

    /* logo */
    .Large,
    .medium,
    .small {
        height: 70px;
    }

    /* all sub heading */
    .sub-heading {
        font-size: 20px;
    }

    /* collection */
    .collection-items {
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* choose us */
    .left-boxes p,
    .right-boxes p {
        font-size: 12px;
    }

    /* we offer */
    .service-details span {
        font-size: 15px;
        font-weight: 600;
    }

    /* testimonials */
    .testimonials-row .col33 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* book car */
    .book-heading {
        font-size: 25px;
    }

    .book-car-content p {
        font-size: 12px;
        width: 100%;
        /* text-align: center; */
    }

    .book-car-btn .cmn-btn {
        padding: 14px 25px;
    }

    /* rentiv app */
    .app-container h1 {
        font-size: 28px;
    }
}

@media (max-width:480px) {

    /* banner */
    .left-banner-content span {
        font-size: 30px;
    }

    .banner-description {
        font-size: 20px;
    }


    /* testimonals */
    .content-heading {
        width: 100%;
    }


    /* logo */
    .logo-container {
        max-width: 370px;
    }

    .sub-heading {
        font-size: 15px;
    }

    /* footer */
    .footer-logo-icons p {
        max-width: 300px;
        margin: 8px auto;
    }

    /* book a car */
    .book-car-btn .cmn-btn {
        padding: 8px 18px;
    }

    .book-call .call {
        padding: 3px 14px;
        font-size: 12px;
    }

    /* our blog */
    .container-content p {
        font-size: 17px;
    }

    .right-row {
        flex-direction: column;
        text-align: center;
    }

    /* download app */
    .play-store {
        padding: 10px 8px 8px 12px;
    }

    .apple-store {
        padding-right: 23px;
    }

    /* choose us */
    .left-boxes p,
    .right-boxes p {
        font-size: 11px;
    }

    /* we offer */
    .we-offer-row .col25 {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 15px 20px;
    }

    .service-details span {
        font-size: 20px;
    }
}

@media (max-width:375px) {

    /* testimonials */
    .content-heading {
        width: 62%;
    }

    /* logo */
    .logo-container {
        max-width: 330px;
    }

    /* we offer */
    .we-offer-row .col25 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .col-change-row .col25 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .col-change-row .left-boxes,
    .right-boxes {
        text-align: center;
    }

    /* book car */
    .book-heading {
        font-size: 20px;
    }

    .book-car-content p {
        margin: 5px 0;
    }

    .book-car-content {
        top: 9px;
    }

    .book-car-btn .cmn-btn {
        padding: 11px 22px
    }

    /* our blog */
    .container-content p {
        font-size: 14px;
    }

    /* rentive app */
    .qr img,
    .all-store {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .all-store {
        margin-left: 0;
    }

    .qr img {
        margin-bottom: 10px;
    }

    .qr {
        display: block;
        text-align: center;
    }

    /* host */
    .host-banner p {
        font-size: 12px;
    }

    .host-woman {
        width: 200px;
    }
}

@media (max-width:320px) {

    /* banner section */
    .left-banner-content span {
        font-size: 28px;
    }

    /* banner right section */
    .right-banner-content {
        padding: 25px 10px 35px 10px;
    }

    .title {
        font-size: 17px;
    }

    .second-row i {
        margin-left: 0;
    }

    #country {
        font-size: 14px;
    }

    .location {
        padding: 15px 14px 15px 14px
    }

    .banner-btn {
        padding: 17px 0;
    }

    /* testimonials */
    .content-heading {
        width: 32%;
    }


    /* book a car */
    .book-car-content {
        top: 5px;
    }

    .book-car-btn .cmn-btn {
        padding: 6px 19px;
        font-size: 12px;
    }

    .book-call .call {
        padding: 1px 12px;
        font-size: 12px;
    }

    /* host car */
    .host-woman {
        width: 175px;
    }
}