@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    scroll-padding-top: 1rem;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

/* variables */
:root {
    --main-color: #d90429;
    --text-color: #000000;
    --bg-color: #fff;
}

#loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #ffffff;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Custom Scroll Bar */
html::-webkit-scrollbar {
    width: 0.5rem;
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    border-radius: 5rem;
    background: var(--main-color);
}

.widget-title {
    padding-left: 100px;
    padding-bottom: 20px;
}

section {
    padding: 4rem 0 2rem;
}

img {
    width: 160%;
    margin-top: 7px
}

.attachment-vehicle_thumb {
    border-radius: 30px;
}

body {
    color: var(--bg-color);
}

.textwidget {
    word-wrap: break-word;
}

.container {
    max-width: 1068px;
    margin-left: auto;
    margin-right: auto;
}

.fleet_h1 {
    align-items: center;
    text-align: center;
    margin-top: 60px;
    width: 100%;
    padding: 20px;
    font-size: 48px;
    color: var(--main-color);
    background-color: var(--text-color);
}

.audi-h2 {
    text-align: center;
    margin-left: 20px;
}


.fleet_p {
    padding-left: 100px;
    padding-right: 100px;
    word-wrap: break-word;

    word-spacing: 2px;
    overflow-wrap: break-word;


}

header {
    background: var(--text-color);
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    white-space: nowrap;
}

header.shadow {
    background: var(--text-color);
    box-shadow: 0px 11px 15px #c10929;
    transition: 0.5s ease;
}

header.shadow #menu-icon {
    color: var(--bg-color);
}

header.shadow #search-icon {
    color: var(--bg-color);
}

header.shadow a {
    color: var(--bg-color);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 35px;
    max-width: 87%;
    
}

#menu-icon {
    font-size: 24px;
    cursor: pointer;
    color: var(--bg-color);
    display: none;
}

.logo1 {
    max-width: 150px;
    margin-left: 0px;
    margin-top: 0;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo span {
    color: var(--main-color);
}

.navbar {
    display: flex;
    column-gap: 2rem;
}

.navbar a {
    color: var(--bg-color);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
}

.nav a:hover,
.navbar .active {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

#search-icon {
    font-size: 24px;
    cursor: pointer;
    color: var(--bg-color);
}

.search-box {
    position: absolute;
    top: 110%;
    right: 0;
    left: 0;
    background: var(--bg-color);
    box-shadow: 4px 4px 20px rgb(15 45 55 /10%);
    border: 1px solid var(--main-color);
    border-radius: 0.5rem;
    clip-path: circle(0% at 100% 0%);
}

.search-box.active {
    clip-path: circle(144% at 100% 0%);
    transition: 0.4s;
}

.search-box input {
    width: 100%;
    padding: 20px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
}

.home {
    max-width: 1300px;
    margin: auto;
    width: 100%;
    min-height: 640px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    position: absolute;
    z-index: 5;


}

* {
    box-sizing: border-box
}

/* Slideshow container */
.slideshow-container {
    width: 100%;
    position: relative;
    background-color: #020102;

}

/* Hide the images by default */
.mySlides {
    display: none;
    width: 100%;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */


/* The dots/bullets/indicators */




/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 2s;
}

@keyframes fade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.home-text {
    padding-left: 130px;
}

.home-text h1 {
    font-size: 2.4rem;
    color: #fff;
    text-decoration: none;


}

.home-text span {
    color: var(--main-color);
}

.home-text p {
    font-size: 0.938rem;
    font-weight: 300;
    margin: 0.5rem 0 1.2rem;
    color: #fff;
}

.btn {
    padding: 10px 22px;
    background: var(--main-color);
    color: var(--bg-color);
    font-weight: 400;
}

.btn:hover {
    background: #fd052f;
}

.heading {
    text-align: center;
}

.heading span {
    font-weight: 500;
    color: var(--main-color);
}

.heading h2 {
    color: var(--bg-color);
}

.heading p {
    font-size: 0.938rem;
    font-weight: 300;
    color: var(--bg-color);
}

/*----------BOOK NOW CARDS START----------------*/
.contain-card {
    align-items: center;
    width: 60%;
    justify-content: center;
    margin-top: 160px;
    padding: 26px;
    background: var();
    color: var(--bg-color);
    margin-left: auto;
    margin-right: auto;
}

.card-icons {
    width: 13%;
    margin-right: 5px;
    margin-bottom: -2px;
}

.audi-h2 {
    text-align: center;
    font-size: 1.5rem;
}

.vehicles-item-requirements {
    margin-top: 5px;
}

.vehicles {
    gap: 2rem;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-shadow: 2px 2px 21px rgba(227, 227, 227, 40%);
    border-radius: 40px;
    transition: 0.3s;
}

.vehicles:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 50px var(--main-color);
    z-index: 5;

}

.vehicles-item {
    display: grid;
    grid-template-columns: 300px auto;
    gap: 11rem;
    padding: 10px;
    width: 100%;
    background-color: #191919;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.vehicles-item-image {
    margin-left: 0;
    width: 250px;
    display: inline;
}

.vehicles-item-content-main-cols {
    gap: 0.1rem;
    display: flex;
    margin-left: 10px;
}

.vehicles-item-content-price .btn {
    margin-top: 30px;
}

.vehicles-item-content-price h3 {
    margin-bottom: 15px;
}

.vehicles-item-content-price {
    margin-top: -5px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: 2rem;
}

.vehicles-item-content {
    margin-left: 0;
    font-size: smaller;
}

.vehicles-item-content-cols {
    gap: 1.1rem;
    display: flex;
    margin-left: -5%;
    align-items: center;
    justify-content: center;
}



/*----------BOOK NOW CARDS END----------------*/

.cars-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.cars-container .box {
    flex: 1 1 17rem;
    position: relative;
    height: 200px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cars-container .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.cars-container .box img:hover {
    transform: scale(1.1);
    transition: 0.5s;
}

.cars-container .box h2 {
    position: absolute;
    bottom: 0.2rem;
    left: 0.2rem;
    font-weight: 400;
    font-size: 0.6rem;
    background: var(--bg-color);
    padding: 8px;
    border-radius: 0.5rem;
}

.cars-container .box:hover h2 {
    background: var(--main-color);
    color: var(--text-color);
}

.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.about-img {
    flex: 1 1 21rem;
}

.about-text {
    flex: 1 1 21rem;
}

.about-text span {
    font-weight: 500;
    color: var(--main-color);
}

.about-text h2 {
    font-size: 1.7rem;
    color: var(--bg-color);
}

.about-text p {
    font-size: 0.938rem;
    margin: 0.5rem 0 1.4rem;
    color: var(--bg-color);
}

.parts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.parts-container .box {
    flex: 1 1 17rem;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: #f6f6f6;
    border-radius: 0.5rem;
}

.parts-container .box img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 1rem;
}

.parts-container .box h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.parts-container .box span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--main-color);
}

.parts-container .box .bx {
    color: var(--main-color);
    margin: 0.8rem 0;
}

.parts-container .box .btn {
    max-width: 120px;
}

.parts-container .box .details {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 1.8rem;
    right: 1rem;
    font-size: 1rem;
    color: var(--text-color);
}

.parts-container .box .details:hover {
    color: var(--main-color);
    text-decoration: underline;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.blog-container .box {
    flex: 1 1 13rem;
    padding: 20px;

}

.blog-container .box:hover {
    background: var(--main-color);
}

.blog-container .box span {
    font-size: 0.8rem;
    color: var(--main-color);
}

.blog-container .box:hover span {
    font-size: 0.8rem;
    color: var(--text-color);
}


.blog-container h3 {
    font-size: 1.2rem;
    color: var(--bg-color);
}

.blog-container .box p {
    font-size: 0.938rem;
    margin: 4px 0;
    color: var(--bg-color);
}

.blog-container .box blog-btn {
    display: flex;
    align-items: center;
    column-gap: 4px;
    color: var(--text-color);
}

.blog-container .box .blog-btn .bx {
    font-size: 20px;
}

.blog-container .box .blog-btn:hover {
    color: var(--text-color);
    column-gap: 0.7rem;
    transition: 0.4s;
}

.footer {
    background: var(--text-color);
    color: #f6f6f6;
    border-top: 2px solid var(--main-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.footer-container .logo {
    color: var(--bg-color);
    margin-bottom: 1rem;
}

.footer-container .footer-box {
    display: flex;
    flex-direction: column;
}

.social {
    display: flex;
    align-items: center;
    gap: 3.5rem;

}

.social a {
    font-size: 24px;
    color: var(--bg-color);
    margin-right: 1rem;
}

.sociala:hover {
    color: var(--main-color);
}

.footer-box h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.footer-box a,
.footer-box p {
    color: #818181;
    margin-bottom: 10px;
}

.footer-box a:hover {
    color: var(--main-color);
}

.copyright {
    padding: 20px;
    text-align: center;
    color: var(--bg-color);
    background: var(--text-color);
}

/* popup */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

/* Making Responsive */
@media (max-width:1440px) {
    .contain-card {
        width: 70%;
    }

    .logo1 {
        max-width: 150px;
    }

    .nav {
        padding: 20px 50px;
        max-width: 87%;
    }

}

@media (max-width:1200px) {

    .vehicles-item-content-cols {
        margin-left: 0;
    }

    .vehicles-item-content-price {
        width: 30%;
        margin-bottom: 0;
    }

    .vehicles-item-content-price {
        margin-left: 8px;
    }

    .btn {
        padding: 3px;
        width: auto;
        font-size: auto;
    }

    .vehicles-item {
        grid-template-columns: 280px auto;
    }

    .contain-card {
        width: 70%;
    }

    .logo1 {
        max-width: 150px;
    }
    .nav{
        max-width: 87%;
    }

}

@media (max-width:1080px) {
    .container {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .vehicles-item-image {
        margin-left: 1%;
        width: 80%;
    }

    .contain-card {
        width: 90%;
    }

    .vehicles-item {
        gap: 10rem;
    }

    .logo1 {
        max-width: 150px;
    }
    .nav{
        max-width: 87%;
    }
}

@media (max-width: 1000px) {
    .vehicles-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vehicles-item-content {
        text-align: center;
    }

    .btn {
        width: 4%;
    }

    .card-icons {
        font-size: 1px;
    }

    .vehicles {
        text-align: center;
        justify-content: center;
    }

    .audi-h2 {
        text-align: center;
    }

    .vehicles-item-content-main-cols {
        font-size: 16px;
    }

    .vehicles-item-content-main {
        text-align: left;
        align-items: center;
    }

    .contain-card {
        width: 90%;
    }

    .vehicles-item-image {
        width: 60%;
        margin-left: 2%;
    }

    .logo1 {
        max-width: 150px;
    }

    .nav {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .nav {
        padding: 15px 20px;
    }

    section {
        padding: 3rem 0 1rem;
    }

    .home-text {
        padding-left: 2rem;
    }

    .home-text h1 {
        font-size: 2.1rem;
    }

    .vehicles-item-image {
        width: 60%;
        margin-left: 2%;
    }

    .vehicles-item {
        gap: 1rem;
    }

    .contain-card {
        width: 80%;
    }

    .nav {
        max-width: 100%;
    }


}

@media (max-width: 920px) {
    #search-icon {
        color: var(--bg-color)
    }

    .home {
        min-height: 50px;
        font-size: 20px;
        position: absolute;
        margin-top: 120px;

    }

    .home-text h1 {
        font-size: 18px;

    }

    .home-text p {
        font-size: 12px;
    }

    .btn {
        font-size: 1rem;
    }

    .slideshow-container {
        position: relative;
    }

    .contain-card {
        margin-top: 15%;
        width: 70%;
    }

    .vehicles-item-image {
        margin-left: 2%;
        width: 60%;
    }

    .vehicles-item {
        gap: 1rem;
    }

    .logo1 {
        max-width: 150px;
    }

    .nav {
        max-width: 100%;
    }

}

@media (max-width: 768px) {
    .search-box input {
        padding: 15px;
    }

    .btn {
        font-size: 10px;
    }

    .nav {
        padding: 10px 0;
    }

    #menu-icon {
        display: initial;
    }

    header.shadow #search-icon {
        color: var(--bg-color);

    }

    header.shadow a {
        color: var(--text-color);
    }

    .audi-h2 {
        font-size: 18px;
        text-align: center;
    }

    .vehicles-item-image {
        margin-left: 1%;
        width: 62%;
    }

    .vehicles-item {
        gap: 1rem;

    }

    .contain-card {
        width: 70%;
    }



    .navbar {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        background: var(--main-color);
        row-gap: 0.5rem;
        text-align: center;
        box-shadow: 4px 4px 20px rgb(15 54 55 / 20%);
        clip-path: circle(0% at 0% 0%);
        transition: 0.6s;
    }

    .navbar a {
        color: var(--text-color);
        display: block;
        padding: 15px;
    }

    .navbar a:hover,
    .navbar.active {
        border-bottom: none;
        background: var(--bg-color);
        color: var(--main-color);
    }

    .navbar.active {
        clip-path: circle(144% at 0% 0%);
    }

    .blog-container .box {
        padding: 4px;
    }

    .home {
        min-height: 25px;
        font-size: 20px;
        position: absolute;
        margin-top: 70px;

    }

    .home-text h1 {
        font-size: 20px;

    }

    .home-text p {
        font-size: 10px;
    }

    .vehicles-item-content-main-cols {
        font-size: 14px;
    }

    .vehicles-item-content-main {
        display: inline;
    }

    .contain-card {
        margin-top: 18%;
        width: 90%;
    }

    .vehicles-item {
        gap: 1rem;
    }

    .logo1 {
        max-width: 150px;
    }

    .nav {
        max-width: 100%;
    }

}

@media (max-width:722px) {
    .heading span {
        font-size: 0.9rem;
    }

    .heading h2 {
        font-size: 1.4rem;
    }

    .about {
        flex-direction: column-reverse;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 1.4rem;
    }

    .transmission {
        font-size: 10px;

    }

    .card-icons {
        margin-left: -10px;
    }

    .acceleration {
        font-size: 10px;
    }

    .home {
        min-height: 25px;
        font-size: 20px;
        position: absolute;
        margin-top: 70px;

    }

    .home-text h1 {
        font-size: 20px;

    }

    .home-text p {
        font-size: 10px;
    }

    .btn {
        font-size: 10px;
    }

    .slideshow-container {
        position: relative;
    }

    .audi-h2 {
        text-align: center;
        font-size: 16px;
    }

    .vehicles-item-requirements {
        font-size: 14px;
    }

    .contain-card {
        margin-top: 20%;
        width: 90%;
    }

    .vehicles-item-image {
        margin-left: 1%;
        width: 62%;
    }

    .vehicles-item {
        gap: 1rem;
    }

    .logo1 {
        max-width: 150px;
    }

    .nav {
        max-width: 100%;
    }

}

@media (max-width:607px) {
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .home {
        min-height: 25px;
        font-size: smaller;
        position: absolute;
        margin-top: 50px;

    }

    .home-text h1 {
        font-size: 12px;

    }

    .home-text p {
        font-size: 10px;
    }

    .vehicles-item-requirements {
        font-size: 8px;
    }

    .slideshow-container {
        position: relative;
    }

    .vehicles-item-content-price {
        margin-left: 8px;
    }

    .btn {
        padding: 3px;
        width: auto;
        font-size: auto;
    }

    .audi-h2 {
        text-align: center;
        font-size: 12px;
    }

    .vehicles-item-requirements {
        font-size: 12px;
    }

    .contain-card {
        margin-top: 25%;
        width: 100%;
    }

    .logo1 {
        max-width: 150px;
        margin-left: 0px;
        margin-top: 0;
    }

    .vehicles-item-image {
        margin-left: 1%;
        width: 62%;
    }

    .vehicles-item {
        gap: 1rem;
    }

    .nav {
        max-width: 100%;
    }
}

@media (max-width:494px) {

    .vehicles-item-requirements {
        font-size: 12px;

    }

    .contain-card {
        margin-top: 25%;
        width: 100%;
    }

    .btn {
        font-size: 8px;
    }

    .vehicles-item-content-price h3 {
        font-size: 8px;
        margin-bottom: 6px;

    }

    .vehicles-item-content-price {
        width: 30%;
        margin: 0;
    }

    .vehicles-item-specs .transmission {
        font-size: 6px;

    }

    .vehicles-item-specs .acceleration {
        font-size: 6px;
    }

    .customer,
    .tick {
        margin-top: 5px;
        font-size: 10px;
    }

    .vehicles-item-image {
        margin-left: 1%;
        width: 62%;
    }

    .vehicles-item {
        gap: 1rem;
    }

    .logo1 {
        max-width: 140px;
    }

    .nav {
        max-width: 100%;
    }


}

@media (max-width:470px) {
    .envelope {
        font-size: 16px;
    }

    .envelope-two {
        font-size: 16px;
    }

    .envelope-icon {
        display: flex;
    }

    .vehicles-item-image {
        margin-left: 1%;
        width: 62%;

    }

    .vehicles-item {
        gap: 1rem;
    }

    .logo1 {
        max-width: 150px;
    }

    .contain-card {
        margin-top: 35%;
    }

    .nav {
        max-width: 100%;
    }

}

@media (max-width:450px) {
    .search-box input {
        padding: 11px;
    }

    .home {
        min-height: 200px;
        margin-top: 0;
    }

    .home-text h1 {
        font-size: 12px;
    }

    .home-text p {
        font-size: 8px;
        margin-right: 150px;

    }

    .home-text p br {
        display: contents;
    }

    .slideshow-container {
        position: relative;
    }

    .btn {
        padding: 2px;
    }

    .vehicles-item-requirements {
        margin-left: -20%;
    }

    .contain-card {
        margin-top: 40%;
        width: 100%;
    }

    .slider-modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .slider-content {
        position: relative;
        text-align: center;
        margin: 20px auto;
    }

    .slider-image {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
    }

    .close {
        position: absolute;
        top: 20px;
        right: 35px;
        color: white;
        font-size: 40px;
        cursor: pointer;
    }

    .prev {
        cursor: pointer;
        position: absolute;
        top: 50%;
        left: 0;
        width: auto;
        padding: 16px;
        margin-top: -50px;
        color: white;
        font-weight: bold;
        font-size: 20px;
        transition: 0.6s ease;
        border-radius: 3px 0 0 3px;
        user-select: none;
    }

    .vehicles-item-image {
        width: 62%;
        margin-left: 1%;
    }

    .vehicles-item {
        gap: 1rem;
    }

    .logo1 {
        max-width: 140px;
    }

    .nav {
        max-width: 100%;
    }


}

@media (max-width:300px) {
    .vehicles-item-specs {
        font-size: 16px;
    }

    .vehicles-item-content-main-cols {
        font-size: 5px;
    }

    .vehicles-item-content-price {
        width: 60%;
    }

    .vehicles-item-image {
        width: 60%;
        margin-left: 2%;

    }

    .vehicles-item {
        gap: 1rem;
    }

    .logo1 {
        max-width: 150px;
    }

    .nav {
        max-width: 100%;
    }

}