@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -3%;
}

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

body,
html {
    max-width: 100%;
    scroll-behavior: smooth;
    /* min-height: 500dvh; */
    position: relative;
    /* overflow-x: hidden; */
    transition: background-color 0.5s ease;
}

html::-webkit-scrollbar {
    display: none;
}

.overflow-width {
    max-width: 100%;
    overflow: hidden;
}

/* -------------------- */
/* preloader */
.preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    background: white;
    width: 100%;
    height: 100dvh;
    left: 0;
    top: 0;
    flex-direction: column;
    gap: 1rem;
    z-index: 100000 !important;
    transition: top 2s ease, z-index 2s ease, opacity 2s ease;
}

.preloader img {
    max-width: 40%;
    animation: heartbeat .5s ease 1;
}

.preloader.hide {
    top: -200dvh;
    opacity: 0;
    z-index: -1000 !important;
}

@keyframes heartbeat {
    from {
        transform: scale(5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media screen and (max-width: 800px) {
    .preloader img {
        max-width: 6rem;
    }
}

/* -------------------- */
/* whatsapp phone */

#whatsapp-phone {
    display: flex;
    position: fixed;
    gap: .25rem;
    bottom: 2rem;
    right: 5%;
    width: max-content;
    z-index: 1000 !important;
    flex-direction: column;
}

#whatsapp-phone a {
    padding: .6rem;
    /* border-radius: .3rem; */
    cursor: pointer;
}

#insta {
    background: rgb(255, 204, 184);
}

#phone {
    background: rgb(207, 243, 255);
}

#map {
    background: rgb(247, 247, 185);
}

#whatsapp {
    background: rgb(231, 255, 195);
}

.common-w-o {
    max-width: 100%;
    overflow: hidden;
}

@media screen and (width <=1700px) {
    #whatsapp-phone {
        right: 2.5%;
    }
}

@media screen and (width <=800px) {
    #whatsapp-phone {
        bottom: .25rem;
        right: .25rem;
    }
}

/* --------------------- */
/* navbar */
.navbar {
    max-width: 80%;
    width: 100%;
    left: 10%;
    top: 2rem;
    height: 50px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0%;
    position: fixed;
    z-index: 1000 !important;
}

.navbar-clickable {
    display: none;
}

.navbar * {
    color: black;
}

.navbar-logo {
    text-transform: capitalize;
    width: max-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    padding-inline: 1rem;
    font-size: 1.1rem;
    z-index: 100000 !important;
    border: 1px solid #000;
    background: #ffffff;
    /* color: white; */
}

.navbar-logo img {
    height: 35px;
    margin-right: .5rem;
}

.responsive-lap-mobile {
    display: flex;
    width: max-content;
    gap: 5rem;
    justify-content: space-between;
    height: 100%;
}

.navbar .navbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    height: 100%;
    /* background: white; */
    /* border: 1px solid #ffffff; */
}

.navbar .navbar-menu a {
    position: relative;
    z-index: 100;
    font-size: 1.1rem;
    text-transform: capitalize;
    border: 1px solid gainsboro !important;
    background: white;
    padding: 0 1rem;
    align-self: stretch;
    display: flex;
    align-items: center;
    font-weight: 400;
    transition: background .3s ease, color .7s ease;
}

.show {
    background: #000 !important;
    color: white !important;
    border: 1px solid gainsboro !important;
}

.navbar .navbar-menu a:hover {
    background: #000;
    color: white;
    transition: background .3s ease, color .7s ease;
    border-color: white;
}

#agna {
    display: none;
    text-transform: uppercase;
}

@media screen and (max-width: 1700px) {
    .navbar {
        max-width: 90%;
        width: 100%;
        left: 5%;
    }
}

@media screen and (max-width: 1200px) {

    .navbar {
        top: 1rem;
        height: 50px;
        z-index: 10000 !important;
    }

    .responsive-lap-mobile {
        position: fixed;
        top: -200vh;
        transition: top 1s ease;
        flex-direction: column;
        width: 100%;
        left: 0%;
        border-radius: 0rem;
        z-index: 1000 !important;
        height: 100dvh;
        background: white;
        /* padding: 1rem; */
        padding-inline: 5%;
        padding-top: 75px;
        justify-content: flex-start;
        /* border: 1px solid black; */
    }

    .navbar-logo img {
        height: 35px;
    }

    #agna {
        position: absolute;
        font-size: 2.5rem;
        bottom: 0;
        width: 100%;
        left: 0;
        line-height: 1;
        display: flex;
        justify-content: center;
        opacity: .1;
    }

    .navbar .navbar-menu a {
        border: 1px solid #000;
        width: 100%;
        text-align: center;
        padding: .5rem;
        font-size: 1.25rem;
        background: whitesmoke;
    }

    .navbar-logo {
        font-size: 1.25rem;
        padding-inline: 1rem;
    }

    .responsive-lap-mobile.active {
        top: 0;
        transition: top 1s ease;
        z-index: 10000 !important;
    }

    .navbar .navbar-menu {
        flex-direction: column;
        gap: .5rem;
        background: white;
        border: none;
        justify-content: flex-start;

    }

    .navbar-menu a {
        font-size: 1.25rem;
        justify-content: center;
        height: 50px;
    }

    .navbar-clickable {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        height: 100%;
        width: 50px;
        transition: transform 2s ease;
        border: 1px solid #000;
        background: white;
        z-index: 100000 !important;

    }

    .navbar-clickable * {
        position: absolute;
        height: 100%;
        width: 1.25rem;
        transition:
            opacity 0.5s ease,
            transform 0.6s ease;
        color: rgb(0, 0, 0);
    }

    /* Default State */
    .navbar-clickable .hamIcon {
        opacity: 1;
        transform: rotate(0deg);
    }

    .navbar-clickable .closeIcon {
        opacity: 0;
        width: 1rem;
        transform: rotate(-1080deg);
    }

    /* Active State */
    .navbar-clickable.active .hamIcon {
        opacity: 0;
        transform: rotate(1080deg);
    }

    .navbar-clickable.active .closeIcon {
        opacity: 1;
        transform: rotate(0deg);
    }
}

/* ---------------------------- */
/* inbetween section height adjuster */
.height-adj {
    height: 5rem;
    width: 100%;
    /* background: greenyellow; */
}

@media screen and (width<=800px) {
    .height-adj {
        height: 2.5rem;
    }
}

/* ---------------------------- */
/* home-sec1 */

.home-sec1,
.home-sec1 .swiper-wrapper {
    height: 100dvh;
}

.home-sec1 .swiper-slide {
    height: 100%;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    padding: 0 40% 15vh 10%;
    background-size: cover !important;
    background-position: 50% 50% !important;
    background-repeat: no-repeat !important;
}

.home-sec1 .swiper-slide h2 {
    font-size: 4rem;
    text-align: left;
    color: white;
    font-weight: 400;
    line-height: 1;
}

.home-sec1 .swiper-slide a {
    background: #ffffff;
    padding: 1rem 1.5rem;
    color: rgb(0, 0, 0);
    display: block;
    max-width: max-content;
    margin-top: 2rem;
    font-weight: 400;
    border: 1px solid white;
    transition: background .5s ease, color .75s ease;
}

.home-sec1 .swiper-slide a:hover {
    background: black;
    color: white;
    transition: background .5s ease, color .75s ease;
}

.slide-1 {
    background: linear-gradient(0deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url('./branches/01.png');
}

.slide-2 {
    background: linear-gradient(0deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url('./branches/05.png');
    background-position: 0% 100% !important;
}

.slide-3 {
    background: linear-gradient(0deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url('./branches/02.jpeg');
}

.slide-4 {
    background: linear-gradient(0deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url('./branches/04.png');
}

.slide-5 {
    background-image: url('img/car5.jpg');
}

.slide-6 {
    background-image: url('img/car6.jpg');
}

@media screen and (max-width: 1700px) {
    .home-sec1 .swiper-slide h2 {
        font-size: 3.25rem;
    }

    .home-sec1 .swiper-slide {
        padding: 0 30% 10vh 5%;
    }
}

@media screen and (max-width: 800px) {
    .home-sec1 .swiper-slide h2 {
        font-size: 1.75rem;
        line-height: 1;
        text-align: center;
    }

    .home-sec1,
    .home-sec1 .swiper-wrapper {
        height: 600px;
    }

    .home-sec1 .swiper-slide {
        align-items: center !important;
        padding: 3rem 1.5rem;
    }

    .home-sec1 .swiper-slide a {
        padding: .5rem 1rem;
        margin-top: 1rem;
    }
}

/* ---------------------------- */
/* home-sec2 */
.home-sec2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 10%;
}

.home-sec2 * {
    text-align: center;
}

.home-sec2 h2 {
    font-size: 3rem;
    line-height: 1.2;
}

.home-sec2 .home-sec2-flex {
    display: flex;
    gap: 1%;
    justify-content: space-between;
    align-items: flex-start;
}

.home-sec2 .home-sec2-flex div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 2rem;
    border: 1px solid gainsboro;
    align-self: stretch;
    position: relative;
}

.home-sec2 .home-sec2-flex div::after {
    content: '';
    height: 20px;
    width: 20px;
    background: black;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .1;
}

.home-sec2 .home-sec2-flex div::before {
    content: '';
    height: 20px;
    width: 20px;
    background: black;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: .1;
}

.home-sec2-flex img {
    height: 8rem;
}

.home-sec2-flex h4 {
    font-size: 1.75rem;
    font-weight: 400;
}

.home-sec2-flex p {
    font-size: 1.1rem;
    line-height: 1.5;
}

@media screen and (max-width: 1700px) {
    .home-sec2 {
        padding: 0 5%;
    }

    .home-sec2 h2 {
        font-size: 2.5rem;
    }

    .home-sec2-flex img {
        height: 6.5rem;
    }
}

@media screen and (max-width :800px) {
    .home-sec2-flex h4 {
        font-size: 1.3rem;
        margin-top: 1rem;
    }

    .home-sec2 {
        gap: 1.25rem;
    }

    .home-sec2 h2 {
        font-size: 1.5rem;
        font-weight: 400;
    }

    .home-sec2-flex p {
        font-size: 1rem;
    }

    .home-sec2-flex img {
        height: 5rem;
    }

    .home-sec2 .home-sec2-flex div {
        border: 1px solid gainsboro;
        min-width: 80%;
        padding: 1.5rem .5rem;
        gap: .25rem;
    }

    .home-sec2 .home-sec2-flex {
        gap: .25rem;
        overflow-x: scroll;
        padding-bottom: 1.25rem;
        width: 100%;
    }

    .home-sec2 .home-sec2-flex::-webkit-scrollbar {
        height: 4px;
        display: block !important;
    }

    .home-sec2 .home-sec2-flex::-webkit-scrollbar-track {
        background-color: gainsboro;
    }

    .home-sec2 .home-sec2-flex::-webkit-scrollbar-thumb {
        background: black;
    }

}

/* ---------------------- */
/* iframe1 */
.iframe1 {
    height: 80vh;
    max-width: 80%;
    margin: 0 10%;
}

.iframe1-heading {
    font-size: 3rem;
    text-align: center;
    padding: 0 10% 1rem;
    font-weight: 400;
}

@media screen and (width <=1700px) {
    .iframe1 {
        height: 600px;
        max-width: 90%;
        margin: 0 5%;
    }

    .iframe1-heading {
        font-size: 2.5rem;
        padding: 0 5% 1rem;
    }
}

@media screen and (width <=800px) {
    .iframe1 {
        height: 250px;
    }

    .iframe1-heading {
        font-size: 1.5rem;
        padding: 0 5% .5rem;
    }
}

/* ----------------------- */
/* home section 3 */

.swiper-title {
    padding: 0 10%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swiper-title h2 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.3;
}

.swiper-title a {
    background-color: rgb(0, 0, 0);
    padding: .75rem 1.25rem;
    color: white;
    font-weight: 400;
    display: flex;
    align-items: center;
    position: relative;
    transition: padding-right .5s ease;
}

.swiper-title a svg {
    width: 16px;
    opacity: 0;
    left: 0;
    position: absolute;
    transition: opacity .5s ease, left .75s ease;
}

.swiper-title a:hover {
    padding-right: 3rem;
    transition: padding-right .5s ease;
}

.swiper-title a:hover svg {
    opacity: 1;
    left: calc(100% - 2rem);
    transition: opacity .5s ease, left .75s ease;
}

@media screen and (max-width: 1700px) {
    .swiper-title {
        padding-inline: 5%;
    }

    .swiper-title h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width:800px) {
    .swiper-title {
        flex-direction: column;
        align-items: center;
        gap: .75rem;
    }

    .swiper-title h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .swiper-title a {
        padding: .65rem 1rem;
    }
}

/* ------------------------------- */
/* cars home swiper */
.swiper-doctor-list {
    position: relative;
    max-width: 80%;
    margin: auto;
}

.swiper-doctor-list .swiper-wrapper {
    position: relative;
    height: auto;
    width: 100%;
}

.swiper-doctor-list .swiper-slide {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: .25rem;
    padding: 2rem;
    background: whitesmoke;
    min-height: 22rem;
    width: 100%;
}

.swiper-doctor-list .swiper-slide img {
    width: 100%;
    overflow: hidden;
    height: 350px;
    object-fit: cover;
    margin-bottom: 2rem;
    position: relative !important;
}

.swiper-doctor-list .swiper-slide img::after {
    position: absolute;
    content: '';
    height: 16px;
    width: 16px;
    background: #000;
    left: 1rem;
    top: 1rem;
    z-index: 1000 !important;
}

.second-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid gainsboro;
    margin-bottom: 1rem;
    width: 100%;
    gap: 1rem;
}

.second-row .name {
    font-size: 1.25rem;
}

.second-row .brand {
    display: none;
}

.second-row .price {
    font-size: 2rem;
    font-weight: 400;
    max-width: max-content;
}

.third-row {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    width: 100%;

}

.third-row p {
    display: inline;
    background: gainsboro;
    text-align: center;
    max-width: max-content;
    padding: .5rem 1rem;
}


.swiper-pagination-group {
    margin-top: .5rem;
    position: relative;
    margin-left: -.5rem;
    height: 4rem;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    max-width: 6.5rem;
    padding: 0 !important;
}

.sb-buttons {
    padding: .75rem;
    min-width: 2.5rem;
    background-color: rgb(0, 0, 0) !important;
    border-radius: .25rem !important;
    outline: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.2rem !important;
    color: white !important;
    fill: white !important;
}


@media screen and (max-width: 1700px) {
    .swiper-doctor-list {
        max-width: 90%;
    }
}

@media screen and (max-width: 800px) {
    .swiper-doctor-list .swiper-slide {
        padding: 1.25rem;
        max-width: 100%;
        width: 100%;
    }

    .swiper-doctor-list .swiper-slide img {
        height: 300px;
        margin-bottom: 1rem;
    }

    .swiper-pagination-group {
        margin-inline: auto;
        margin-top: 0;
    }

    .second-row {
        flex-direction: column;
        gap: .5rem;
    }

    .third-row {
        justify-content: center;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 1rem !important;
    }
}

/* ----------------------- */
/* testy */
.testy {
    max-width: 80%;
}

.testy .swiper-slide {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    border-block: 1px solid gainsboro;
}

.testy .swiper-slide img {
    position: absolute;
    filter: blur(100px);
    opacity: .5;
    left: -10%;
    height: 150px;
    top: 2rem;
}

.testy .swiper-slide h2 {
    font-size: 1.25rem;
    font-weight: 500;
}

.testy .swiper-slide h4 {
    font-size: 2rem;
    opacity: .25;
    font-style: italic;
}

.testy .swiper-slide h6 {
    color: goldenrod;
    font-size: 2rem;
    font-weight: 900 !important;
}

.testy .swiper-slide h1 {
    font-size: 1.25rem;
}


@media screen and (max-width: 1700px) {
    .testy {
        max-width: 90%;
    }
}

@media screen and (max-width: 800px) {

    .testy .swiper-slide h1,
    .testy .swiper-slide h2 {
        font-size: 1.1rem;
    }

    .testy .swiper-slide h4 {
        font-size: 1.75rem;
    }

}

/* --------------------- */
/* contact */
.page-opening-section {
    padding-top: 9rem;
    padding-inline: 10%;
}

.page-opening-section-contact {
    padding-top: 0rem;
}

.height-virugambakam {
    height: 4rem;
}

.page-opening-section h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-opening-section-contact h2 {
    font-size: 3rem;
}

.page-opening-section p {
    /* max-width: 60%; */
    font-size: 1.25rem;
    opacity: .75 !important;
}

.page-opening-section p strong {
    /* font-style: italic; */
    font-weight: 600;
    font-size: inherit;
}

@media screen and (max-width: 1700px) {
    .page-opening-section h2 {
        font-size: 3.25rem;
    }

    .page-opening-section {
        padding-inline: 5%;
    }

    .page-opening-section-contact h2 {
        font-size: 2.5rem;
    }

    .height-virugambakam {
        height: 3.5rem;
    }

    .page-opening-section p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 800px) {
    .page-opening-section {
        padding-top: 6rem;
    }

    .page-opening-section-contact {
        padding-top: 0rem;
    }

    .page-opening-section h2 {
        font-size: 2.25rem;
        margin-bottom: .5rem;
    }

    .page-opening-section-contact h2 {
        font-size: 1.75rem;
    }

    .page-opening-section p {
        font-size: 1.1rem;
    }

    .height-virugambakam {
        height: 3rem;
        /* background-color: red; */
    }
}

/* ----------------------------------- */
/* happy-clients-grid */

.happy-clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-inline: 10%;
    gap: 1rem;
}

.happy-clients-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media screen and (max-width: 1700px) {
    .happy-clients-grid {
        padding-inline: 5%;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 800px) {
    .happy-clients-grid img {
        height: 200px;
    }

    .happy-clients-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* ---------------------------------- */
/* contact form */
.contact-form {
    padding: 5rem 10%;
    display: flex;
    justify-content: space-between;
}

.contact-form * {
    font-size: 1.2rem;
}

.contact-left {
    max-width: 40%;
    width: 40%;
}

.contact-left-h3 {
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.grid-contact-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 1rem;
}

.grid-contact-left div {
    width: 100%;
    border-left: .5px solid gainsboro;
    display: flex;
    padding-left: 1.5rem;
    flex-direction: column;
    gap: 1rem;
}

.grid-contact-left div img {
    max-width: 2.5rem;
}

.grid-contact-left div h5 {
    font-weight: 400;
}

.contact-right {
    max-width: 50%;
    width: 50%;
    /* border: 1px solid red; */
    max-height: max-content;
    align-self: self-start;
}

.contact-right form {
    padding: 3rem;
    background: whitesmoke;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
}

.contact-right form div {
    display: flex;
    gap: .25rem;
    flex-direction: column;
}

.contact-right form div * {
    max-width: 100%;
}

.contact-right form input {
    padding: .5rem;
    outline: none;
}

.contact-form form textarea {
    height: 100px;
    resize: none;
    padding: .5rem;
    outline: none;
}

.contact-form form button {
    padding: .75rem 2.5rem;
    outline: none;
    border-radius: 0;
    border: 1px solid black;
    max-width: max-content;
}

@media screen and (max-width: 1100px) {

    /* contact form */
    .contact-form {
        padding: 3rem 10% 1rem;
        gap: 2rem;
        flex-direction: column;
    }

    .contact-right,
    .contact-left {
        max-width: 100%;
        width: 100%;
    }

    .contact-form * {
        font-size: 1rem;
    }

    .contact-left-h3 {
        font-size: 1.5rem;
    }

    .grid-contact-left {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .grid-contact-left div {
        gap: .5rem;
        padding-left: 0rem;
        border-left: none;
        /* padding-top: 1rem;
        border-top: 1px solid black; */
    }

    .contact-right form {
        padding: 3rem 1.5rem;
    }
}

@media screen and (max-width: 800px) {
    .contact-form {
        padding-inline: 5%;
    }
}


/* iframe */
.iframe iframe {
    width: 100%;
    height: 500px;
    border: none;
}

@media screen and (max-width: 800px) {
    .iframe iframe {
        height: 400px;
    }
}


/* ----------------------- */
/* sec-three */

.sec-three {
    display: flex;
    padding: 0 10%;
    justify-content: space-between;
    gap: 5%;
}

.sec-three .metrics-div {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.sec-three .metrics-div .value {
    font-size: 6rem;
    background: linear-gradient(120deg, rgb(255, 0, 0), orange);
    background-clip: text;
    color: transparent;
    font-weight: 400;
    max-width: max-content;
    position: relative;
    line-height: 1;
}

.sec-three .metrics-div .value::after {
    content: '+';
}

.sec-three .metrics-div .value.value-last::after {
    content: '%';
}

.sec-three .metrics-div .value-description {
    font-size: 1.1rem;
    line-height: 1.3;
}

.sec-three .metrics-div .value-description span {
    font-weight: 400;
    line-height: 1.3;
    font-size: 1.75rem;
}

@media screen and (max-width: 1700px) {
    .sec-three {
        padding-inline: 5%;
    }

    .sec-three .metrics-div .value {
        font-size: 5rem;
    }

}

@media screen and (max-width: 800px) {
    .sec-three {
        /* flex-direction: column; */
        padding-top: 2rem;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .sec-three .metrics-div {
        gap: 0rem;
        max-width: calc(50% - 1rem);
    }

    .sec-three .metrics-div .value {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .sec-three .metrics-div .value-description,
    .sec-three .metrics-div .value-description span {
        font-size: 1.1rem;
    }

    .sec-three .metrics-div .value-description span {
        margin-bottom: .25rem;
        display: inline-block;
    }
}

@media screen and (max-width: 400px) {
    .sec-three .metrics-div .value {
        font-size: 2.5rem;
    }
}

/* -------------------------- */
/* marquee */

.marquee {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: whitesmoke;
    /* border: 2px solid red; */
    position: relative;
}

.marquee-footer {
    margin-bottom: 0 !important;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
}

.marquee-item {
    padding: 5px 2rem;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    border-right: none;
    padding-block: 1rem;
}

@media screen and (max-width: 800px) {
    .marquee-item {
        padding-block: .75rem;
        font-size: 1.25rem;
    }
}

/* -------------------- */
/* home-sec3 */
.home-sec3 {
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
}

.home-sec3-img {
    max-height: 1700px;
    width: 50%;
    display: flex;
    align-self: stretch;
    background: url(./imgs/steps.jpg) no-repeat 50% 50%;
    background-size: cover;
}

.home-sec3 .home-sec3-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 50%;
    background: whitesmoke;
    padding: 3.5rem;
}

.home-sec3-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.home-sec3-content .content-div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.home-sec3-content h3 {
    width: max-content;
    padding: 1rem;
    /* border-radius: 50%; */
    background: black;
    color: white;
}

.home-sec3-content .content-div-div {
    display: flex;
    flex-direction: column;
    /* background: greenyellow; */
    max-width: calc(100% - 80px);
    gap: .5rem;
}

.home-sec3-content div h6 {
    font-size: 1.65rem;
    line-height: 1;
    margin-bottom: .5rem;
}

.content-div-div p {
    font-size: 1.2rem;
    line-height: 1.4;
    font-style: italic;
    opacity: .5;
}

@media screen and (max-width: 800px) {
    .home-sec3 {
        padding: 0;
        flex-direction: column;
    }

    .home-sec3-img {
        width: 100%;
        max-width: 100%;
        height: 400px;
    }

    .home-sec3 .home-sec3-content {
        gap: 2.5rem;
        width: 100%;
        background: whitesmoke;
        padding: 2.5rem 5%;
    }

    .home-sec3-content h2 {
        font-size: 1.75rem;
        text-align: center;
        line-height: 1.2;
    }

    .home-sec3-content h3 {
        padding: 1rem;
        margin-right: 7.5%;
        /* margin-top: -.85rem;s */
    }

    .home-sec3-content div h6 {
        font-size: 1.25rem;
        margin-bottom: .25rem;
    }

    .content-div-div p {
        font-size: 1rem;
        line-height: 1.5;
    }

}

/* --------------------- */
/* about */


/* Cars */


/* ------------------- */
/* sec-six */
.sec-six {
    padding: 4rem 10% 0;
    background: black;
}

.sec-six * {
    color: white;
}

.sec-six .footer-bottom {
    border-top: 1px solid gainsboro;
    padding-top: 1rem;
    font-size: 1.25rem;
    text-align: center;
}

.sec-six .footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
    gap: 2rem;
}

.ft-left {
    max-width: 35%;
}

.ft-left h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 400;
}

.ft-left p {
    font-size: 1.25rem;
    font-weight: 300;
}

.ft-middle {
    display: flex;
    gap: 3rem;
}

.ft-middle-div {
    display: flex;
    flex-direction: column;
}

.ft-middle-div h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

.ft-middle-div a {
    margin-top: 1rem;
    font-size: 1.1rem;
}

@media screen and (max-width:1700px) {
    .ft-left p {
        font-size: 1.15rem;
    }


    .sec-six {
        padding-inline: 5%;
    }

    .ft-middle {
        display: flex;
        gap: 1.5rem;
    }

}

@media screen and (max-width: 800px) {
    .sec-six .footer-bottom {
        font-size: 1rem;
    }

    .sec-six {
        padding: 3rem 5% 0;
    }

    .sec-six .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .ft-middle-div h2 {
        font-size: 1.25rem;
        padding-bottom: .5rem;
        width: 100%;
        /* text-align: center; */
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .ft-left h2 {
        font-size: 2rem;
    }

    .ft-middle {
        /* flex-direction: column; */
        gap: 3rem 1.5rem;
        flex-wrap: wrap;
    }

    .ft-middle-div {
        min-width: calc(50% - .75rem);
        max-width: 100%;
        /* background: red; */
        /* align-items: center; */
    }

    .ft-middle-div a {
        margin-top: .5rem;
    }

    .ft-left p {
        font-size: 1.1rem;
    }

    .ft-left {
        max-width: 100%;
    }
}

/* ----------------------- */
/* sec-seven */

.sec-seven {
    padding: 2rem 10% 0;
    display: flex;
    align-items: center;
    margin-bottom: -.5rem;
    justify-content: center;
    background: black;

}

.sec-seven h2 {
    font-size: 12vw;
    font-weight: 400;
    opacity: .3 !important;
    color: white;
    line-height: 1 !important;
}

@media screen and (width <=800px) {
    .sec-seven {
        padding: 2rem 5% 0;
    }
}


/* -------------------------------- */
/* about-ceo */
.about-ceo {
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
}

.about-ceo-right {
    width: 45%;
    max-width: 45%;
}

.about-ceo img {
    max-width: 50%;
    width: 50%;
    max-height: 600px;
    object-fit: cover;
    object-position: 0% 0%;
    border-radius: .5rem;
}

.about-ceo-right h2 {
    font-size: 3rem;
    font-weight: 400;
}

.about-ceo-right h3 {
    font-size: 2rem;
}

.about-ceo-right p {
    margin-top: 2rem;
    /* opacity: .75; */
    padding-left: 2rem;
    font-size: 1.25rem;
    font-weight: 200;
    position: relative;
}

.about-ceo-right p strong {
    font-size: inherit;
    font-weight: 400;
}

.about-ceo-right p::before {
    height: 15px;
    width: 15px;
    top: 5px;
    content: '';
    background-color: black;
    left: 0;
    position: absolute;
}

/* -------------------- */
/* about-ceo-grid */
.about-ceo-grid {
    display: grid;
    padding: 0 10%;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}

.about-ceo-grid-div {
    max-width: 100%;
}

.about-ceo-grid-div img {
    max-width: 100%;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: 50% 30%;
    border-radius: .5rem;
}

.about-ceo-grid-div h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: .5rem 0 .25rem;
    text-align: center;
}

.about-ceo-grid-div p {
    text-align: center;
    font-size: 1.25rem;
}

@media screen and (max-width: 1700px) {

    .about-ceo-grid,
    .about-ceo {
        padding-inline: 5%;
    }
}

@media screen and (max-width : 800px) {
    .about-ceo {
        flex-direction: column;
    }

    .about-ceo-right h2 {
        font-size: 2rem;
        margin-top: 1.5rem;
    }

    .about-ceo-right h3 {
        font-size: 1.5rem;
    }

    .about-ceo-right p {
        margin-top: 1rem;
        font-size: 1.1rem;
    }

    .about-ceo img,
    .about-ceo-right {
        width: 100%;
        max-width: 100%;
    }

    .about-ceo-grid-div h2 {
        margin-top: .25rem;
        font-size: 1.75rem;
    }

    .about-ceo-grid-div p {
        font-size: 1.1rem;
    }

    .about-ceo-grid {
        padding: 0 5%;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .about-ceo-grid-div img {
        height: 250px;
    }
}

/* -------------------------- */
/* cars-list-main */

#test-list {
    padding: 0 10%;
}

.cars-list-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    /* background: red; */
}

.cars-list-main .cars-list-div {
    width: 100%;
    background: whitesmoke;
    border: 1px solid gainsboro;
    padding: 1rem;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cars-list-main .cars-list-div img {
    max-width: 100%;
    margin: auto !important;
    height: 300px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 1.75rem !important;
    position: relative;
    /* border: 10px solid red; */
    margin-top: 0 !important;
}

.car-search-div {
    display: flex;
    border: 1px solid gainsboro;
    padding: 1.25rem;
    margin: auto;
    gap: 1rem;
}

.car-search-div input {
    outline: none;
    border: none;
    width: 100%;
}


@media screen and (max-width: 1700px) {

    #test-list {
        padding: 0 5%;
    }

    .cars-list-main {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 800px) {
    .car-search-div {
        padding-block: 1rem;
    }

    .cars-list-main .cars-list-div {
        padding: 1rem .5rem;
    }

    .cars-list-main {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}

/* ---------------- */
.iframe-info {
    display: flex;
    padding: 1rem 10% 0;
    gap: 4%;
}

.iframe-info .iframe-left {
    max-width: 48%;
    min-width: 48%;
}

.iframe-info .iframe-left iframe {
    width: 100%;
    height: 500px;
}

.iframe-info .info-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-right div {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    justify-content: flex-start;
}

.info-right div svg {
    margin-top: .25rem;
}

.info-right div h2 {
    min-width: 22%;
    /* background: green; */
    font-weight: 400;
}

.info-right div p {
    text-align: left;
    /* background: red; */
    max-width: 60%;
}

.info-right div * {
    font-size: 1.25rem;
    line-height: 1.5;
}

@media screen and (max-width: 1700px) {
    .iframe-info {
        padding-inline: 5%;
    }
}

@media screen and (max-width: 800px) {
    .iframe-info {
        flex-direction: column;
    }

    .iframe-info .iframe-left {
        max-width: 100%;
        min-width: 100%;
    }

    .info-right div h2 {
        min-width: 25%;
    }

    .info-right div {
        gap: .5rem;
    }

    .info-right div svg {
        margin-top: .2rem;
    }

    .info-right div * {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .iframe-info .iframe-left iframe {
        height: 350px;
        margin-bottom: 2rem;
    }
}

/* ------------------ */
/* filter-buttons */
.filter-buttons {
    padding: 1rem 0;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.filter-buttons button {
    background: whitesmoke;
    border: 1px solid black;
    padding: .75rem 1.5rem;
    cursor: pointer;
}

.filter-buttons button.active {
    background: black;
    color: white;
}

/* -------------------- */
/* sold-out */

.cars-list-main .sold-out {
    /* border: 5px solid red !important; */
    /* opacity: .75 !important; */
    pointer-events: none;
    position: relative;
    border: 2px solid red;
}

.cars-list-main .sold-out::after {
    content: 'Sold Out';
    position: absolute;
    background: red;
    color: white;
    font-weight: 500;
    left: 0;
    top: 0;
    padding: 1rem;
    opacity: 1 !important;
}

.cars-list-main .closing-soon {
    border: 2px solid yellow;
    position: relative;
}

.cars-list-main .closing-soon::after {
    content: 'Deal Closing Soon';
    position: absolute;
    background: yellow;
    /* color: white; */
    font-weight: 500;
    left: 0;
    top: 0;
    padding: 1rem;
    /* animation: blinking 2s ease infinite; */

}

@keyframes blinking {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}