:root {
    --unit_Header: 72px;
    --um_Header: 16px;

    --rn-width1: calc(12 * var(--unit_Header) + 22 * var(--um_Header));
    --rn-megaBox: calc(var(--rn-width1) - (var(--unit_Header) + var(--um_Header) * 2) * 2);
    --logo1-height: 80px;

    --socialIconWidth: 30px;

    --margin20: 20px;
    --margin10: 10px;
    --margin5: 5px;
    --margin45: 45px;

    --padding20: 20px;
    --padding22: 22px;

    --fontsize18: 18px;
    --fontsize17: 17px;
    --fontsize15: 15px;
    --fontsize14: 14px;
    --fontsize12: 12px;

    --gray1: #F2F2F2;
    --gray2: #DADADA;
    --gray3: #9D9D9C;
    --hardGray: #999999;
    --yellow: #EC6528;
    --Green: #646B52;
}

p {
    margin: 0;
    padding: 0;
}
button {
    background-color: inherit;
    color: inherit;
    border: inherit;
    border-radius: inherit;
    box-shadow: inherit;
}


/* whatsApp icone */
.float {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 50px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    animation: float 4s infinite ease-in-out, green-shadow 2s infinite alternate;
    transition: transform 0.2s ease-in-out;
}

.float:hover {
    transform: scale(1.1);
}

.whatsAppIcone {
    margin: -5px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes green-shadow {
    from {
        box-shadow: 0 0 10px 0 rgba(37, 211, 102, 0.5);
    }
    to {
        box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0.8);
    }
}


@font-face {
    font-family: "DaciaBlockExtended";
    src: url("../../assets/fonts/DaciaBlockExtended.otf") format("truetype");
}
@font-face {
    font-family: "DaciaBlock";
    src: url("../../assets/fonts/DaciaBlock.otf") format("truetype");
}
@font-face {
    font-family: "DaciaBlockLight";
    src: url("../../assets/fonts/DaciaBlockLight.otf") format("truetype");
}
@font-face {
    font-family: "DaciaBlockExtendedBold";
    src: url("../../assets/fonts/DaciaBlockExtendedBold.otf") format("truetype");
}

a{
    text-decoration: none;
    color: inherit;
}
a:hover{
    text-decoration: none !important;
}
a:focus{
    text-decoration: none !important;
}
input:focus{
    outline: none;
}
input:focus, input:focus-visible {
    outline: none;
    border-bottom: 1px dashed black !important;
}
/*---------------- ------------------------------ -------------------*/
/*---------------- ------------------------------ -------------------*/
/*----------------           mega menu            -------------------*/
/*---------------- ------------------------------ -------------------*/
/*---------------- ------------------------------ -------------------*/
.header_container a {
    color: #646b52;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header_container a:hover {
    color:#4E5844 !important;
}
.header_container .nav_list li{
    color:#646b52;
    font-size: 12.5px; /*modif*/
}
.header_container .nav_list li:hover{
    color:#4E5844;
}
.menu_carlist {
    font-family: 'DaciaBlock';
}
.menu_row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.menu_carcard {
    text-align: center;
    width: 24%;
    box-sizing: border-box;
    padding: 0px 2px 0px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.1);
}
.menu_carcard img {/*modif*/
    width: 75%;
    margin: auto;
    transition: scale 0.3s ease;
}
.menu_carcard:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.menu_carcard:hover img {
    scale: 1.01;
}
.menu_carcard a{
    color: #646b52;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.menu_carcard p {
    color: black;
    font-size: 12px;
    margin: 0 0px 0 11px;
    text-align: justify;
}
.menu_carcard .carName {
    font-size: 13px;
    font-family: 'DaciaBlockExtendedBold';
}
.menu_carcard .carPrice {
    font-size: 12px;
    font-family: 'DaciaBlock';
    margin: 7px 11px;
    color: #101010;
}
.menu_allcar {
    text-align: center;
    width: 25%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.menu_allcar:hover {
    background-color: var(--LightGray);
    scale: 1.01;
}
.menu_allcar p {
    color: var(--LightGray3);
    font-size: 12px;
    text-align: justify;
}
.menu_allcar img {
    width: 40px;
    margin: 0 0 25px 0;
}
/*---------------- ------------------------------ -------------------*/
/*---------------- ------------------------------ -------------------*/
/*----------------              Header            -------------------*/
/*---------------- ------------------------------ -------------------*/
/*---------------- ------------------------------ -------------------*/
.carLink{
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
}
.square_btn_text{
    margin-bottom: 0 !important;
}
.plusCarLink{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.header_container {
    background-color: white;
    color: white;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 var(--padding1);
    position: relative;
    justify-content: space-between;
    transition:  padding 0.8s ease, background-color 0.8s ease !important;
    padding: 0 5% 0 2%;/*modif*/
}
.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 12;
    padding: 0 2% !important;
}
.fixed li{
    font-size: 14.5px ;
    letter-spacing: 1px;
}
.mega_menu_desktop {
    width: var(--rn-megaBox);
    background-color: white;
    box-sizing: border-box;
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.1s ease-in-out; /* Adjust the duration and easing as needed */
    height: 0;
    overflow: hidden;
}
.show-menu {
    height: auto;
    transition: all 0.1s ease-in-out;
    padding: 2px 0px;
    z-index: 2;
}
.mega_menu_mobile {
    width: auto;
    background-color: white;
    box-sizing: border-box;
    transition: all 0.1s ease-in-out; /* Adjust the duration and easing as needed */
    max-height: 0;
    overflow: hidden;
    display: none;
}
.show-menu2 {
    max-height: 100%;
    transition: all 0.2s ease-in-out;
}
.right_logo img {
    height: calc(var(--logo1-height) / 2.5);
    margin: calc(var(--logo1-height) / 4);
    cursor: pointer;
}
.right_logo_img.M {
    height: auto ;
    margin-right: 20;/*modif*/
    cursor: pointer;
    width: 40px;
}
.InScroll{
    background-color: white;
    padding: 0px; /*modif*/
}
.left_logo .InScroll{
    background-color: black;
}
.left_logo img {
    height: var(--logo1-height);
    margin: calc(var(--logo1-height) / 4);
    cursor: pointer;
}
.logoInScroll img {
    height: auto;
    width: 35px;
    margin: 0;
    cursor: pointer;
}
.nav_list {
    display: flex;
    align-items: center;
    word-break: normal;
    text-align: center;
    height: 100%;
    width: 100%;
    margin: auto !important;
    padding: 0;
    justify-content: center;
    gap: 10px;
}
.nav_list li {
    font-size: var(--fontsize14);
    font-family: DaciaBlock;
    list-style-type: none;
    color: var(--LightGray);
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 600;
    margin: 0 5px;
    transition: font-size 0.8s ease, letter-spacing 0.8s ease;
}
.carListVPSvg{
    display: none;  
}
.nav_list li:hover {
    color: white;
}
/*modif*/
.header_contact {
    display: flex;
    align-items: baseline;
}
.header_contact a {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    margin: 0 5px; /*modif*/
    transition: color 0.3s ease;
}
.header_contact a:hover span {
    color: white;
}
.header_contact img {
    width: 20px;
}
.header_contact span {
    font-size: 12px;
    text-align: center;
    color: var(--LightGray);
    font-family: DaciaBlock;
    margin-top: var(--margin5);
}
.header_left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: background-color 0.8s ease, padding 0.8s ease;
}
.header_right {
    display: flex;
    align-items: center;
    width: 100%;
}
a.active{
    color: var(--yellow);
}

/*---------------- ------------------------------ -------------------*/
/*---------------- ------------------------------ -------------------*/
/*----------------           Footer               -------------------*/
/*---------------- ------------------------------ -------------------*/
/*---------------- ------------------------------ -------------------*/
.tagSession{
    display: flex;
    align-items: center;
    color: white;
    gap: 10px;
}
.tagSession .textzone p{
    font-size: 9px;
    font-family: 'DaciaBlock';
}
.tagSession .imageZone img{
    width: 50px;
}
.footer_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.f_top_section {
    background-color: black;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.f_top_section_content {
    display: flex;
    justify-content: space-between;
    width: var(--rn-width1);
    box-sizing: border-box;
    margin: var(--margin45) 0;
}
.footer_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    box-sizing: border-box;
}
.footer_block a {
    color: var(--LightGray);
    text-decoration: none;
    font-family: DaciaBlock;
    font-size: var(--fontsize12);
    line-height: 1.3;
    margin: 4px 0;
}
.footer_block a:hover {
    color: white !important;
}
.f_bottom_section {
    width: 100%;
    box-sizing: border-box;
    height: 60px;
    display: flex;
    align-items: center;
    background-color: white;
    padding: 0 32px;
    justify-content: space-between;
}
.f_bottom_section .copyrightSection p{
    font-family: 'DaciaBlock';
    font-size: 15px;
}
.f_bottom_section a {
    color: black;
    font-family: DaciaBlock;
    font-size: var(--fontsize15);
    text-decoration: none;
    padding: 0 var(--padding20);
}
.f_bottom_section a:first-child {
    border-right: 2px solid var(--yellow);
    padding-left: 0;
}
.f_section_title {
    position: relative;
    color: white;
    font-family: DaciaBlock;
    font-weight: 600;
    font-size: var(--fontsize18);
    line-height: 1;
    margin: var(--margin20) 0;
}
.f_section_title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 45px;
    height: 2px;
    background-color: #f2f2f2;
    display: block;
}

.social_btns {
    box-sizing: border-box;
    margin: 0px 0 5px 0px;
}

.social_btns a:first-child {
    margin-left: -10px;
}

.social_btns a:hover img {
    scale: 1.1;
}

.social_btns img {
    width: var(--socialIconWidth);
    transition: all 0.2s;
    margin: 0px 14px;
}


.mobileDisplay {
    display: none;
}

.desktopDisplay {
    display: flex;
}

.burger_menu {
    display: none;
}

.contact_itemList {
    display: flex;
    align-items: center;
}
.decoline {
    width: 100%;
    background: var(--LightGray);
    height: 0.5px;
}

/*------addthis-------*/
.mobile_arrange {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer_m_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    transition: all 0.5s;
}

.f_section_m_title {
    position: relative;
    color: white;
    font-family: DaciaBlock;
    font-weight: 600;
    font-size: var(--fontsize18);
    line-height: 1;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: white solid 1px;
    padding: 3px 0;
    transition: all 0.1s;
}
.f_section_m_title:hover {
    transition: all 0.1s;
    border-bottom: var(--yellow) solid 1px;
}
.f_section_m_title span {
    float: right;
    font-size: 30px;
    text-align: center;
    transform: rotate(90deg);
    margin-right: 10px;
    font-family: monospace;
    font-weight: 100;
}
.q_content {
    background-image: initial;
    background-color: rgb(24, 26, 27);
    color: rgb(202, 198, 191);
    display: none;
}
.q_content {
    padding: 0;
    text-align: left;
    max-width: -webkit-fill-available;
    max-height: 0px;
    transition: all 0.1s;
    width: 100%;
    font-weight: normal;
    background: black;
}
.q_content span {
    color: white;
    line-height: 3;
    display: none;
}
.q_content li {
    list-style-type: none;
}
.q_content.show {
    max-height: 300px;
    display: block;
}
.f_top_section_content_mobile {
    width: 100%;
    padding: 0 15px;
}
.footer_m_block a {
    color: var(--LightGray);
    text-decoration: none;
    font-family: DaciaBlock;
    font-size: var(--fontsize12);
    line-height: 1.3;
}

/*----loader----*/
.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: .9s;
    --uib-color: #183153;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
    margin: 80px auto;
}
.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}
.dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}
.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}
.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}
.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}
.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}
.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}
.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}
.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}
.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}
.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}
.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}
.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}
.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}
.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}
.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {
    0%,
    100% {
      transform: scale(0);
      opacity: 0.5;
    }

    50% {
      transform: scale(1);
      opacity: 1;
    }
}
/*----loader----*/

.header_left .left_logo svg:last-child {
    display: none;
}

@media (max-width: 1300px) {
    :root {
        --unit_Header: 64px;
        --um_Header: 16px;

        --rn-width1: calc(12 * var(--unit_Header) + 22 * var(--um_Header));

        --rn-megaBox: calc(var(--rn-width1) - (var(--unit_Header) + var(--um_Header) * 2) * 2);

        --socialIconWidth: 28px;

        --margin20: 18px;
        --margin10: 9px;
        --margin5: 4px;
        --margin45: 42px;

        --padding20: 18px;

        --fontsize18: 16px;
        --fontsize15: 14px;
        --fontsize14: 14px;
        --fontsize12: 11px;
    }
}
@media (max-width: 1100px) {
    :root {
        --unit_Header: 64px;
        --um_Header: 16px;

        --rn-width1: 100%;

        --rn-megaBox: auto;

        --socialIconWidth: 28px;

        --margin10: 9px;
        --margin5: 4px;
        --margin45: 42px;

        --padding20: 18px;

        --fontsize18: 16px;
        --fontsize15: 14px;
        --fontsize14: 12px;
        --fontsize12: 11px;
        --logo1-height: 60px;
    }

    .menu_carcard p {
        color: black;
        font-size: 10px;
        margin: 0 0px 0 15px;
        text-align: justify;
    }
    .buttonList1 {
        justify-content: space-evenly;
    }
    .f_top_section_content {
        margin: var(--margin45) calc(var(--um_Header)*2);
    }
}

@media (max-width: 1024px) { /*modif*/
    .mega_menu_desktop {
        width: 66%;
    }
    .menu_carcard {
        width: 32%;
    }

    .fixed li {
        font-size: 9.5px ;
        letter-spacing: 1px;
    }
    .logoInScroll img {
        height: auto;
        width: 20px;
        margin: 0;
        cursor: pointer;
    }
    .right_logo_img.M {
        width: 41px !important;
    }
    .header_container .nav_list li {
        font-size: 9.5px;
    }
    .header_contact {
        margin-right: 0px;
    }
    .header_contact a {
        margin: 0 2px;
    }
    .header_contact a svg{
        width: 18px !important;
    }
    .header_contact a .connectSvg {
        width: 16px !important;
    }
    .left_logo svg{
        width: 72px !important;
    }
    .header_container {
        padding: 0 4% 0 3%;
    }
    .header_left .left_logo svg:first-child {
        display: none;
    }
    .header_left .left_logo svg:last-child {
        display: block;
    }

    .menu_carcard img {
        width: 60%;
    }
    .menu_row {
        gap: 5px;
        justify-content: space-between;
    }
    .mega_menu_desktop {
        width: 64%;
        left: 44%;
    }
    .menu_carcard p {
        margin: 0 0px 0 9px;
    }
    .menu_carcard .carName {
        font-size: 10.5px;
    }
    .menu_carcard .carPrice {
        font-size: 10px;
    }
}

@media (max-width: 920px) {
    .nav_list .mobileDisplay{
        font-size: 20px !important;
    }

    .f_section_m_title {
        padding: 10px 0;
    }
    .header_container a {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        flex-direction: row !important;
    }
    .logoInScroll img {
        width: 23px;
    }
    .InScroll{
        padding: 12px 5px;
    }
    .right_logo.mobileDisplay.InScroll {
        width: 45% !important;
    }
    .f_bottom_section a:first-child {
        border-right: 0;
        padding: 0 var(--padding20);
    }
    .f_bottom_section {
        align-items: flex-start;
        background: white;
        flex-direction: column;
        height: auto;
        padding: 6px 0;
        margin: 15px 0 0px 0;
    }
    .f_bottom_section a {
        margin: 5px 0;
    }
    .f_bottom_section a:last-child {
        border-left: 0;
    }
    .f_bottom_section .copyrightSection{
        margin: auto;
        margin-top: 20px;
    }
    .f_bottom_section .copyrightSection p{
        font-size: 11px;
    }
    .f_section_title::after {
        display: none;
    }
    .footer_block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        box-sizing: border-box;
    }
    .mobile_arrange {
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow-y: auto;
        background-color: white;
        box-shadow: 5px 0 13px var(--LightGray);
        border-left: 1px solid var(--LightGray);
    }
    .header_contact img {
        width: 35px;
    }
    .header_contact span {
        font-size: 10.5px;
        font-family: 'DaciaBlock';
        width: 58px;
    }
    .right_logo {
        width: 40% !important;
    }
    .burger_menu {
        display: block;
        width: 55px;
        margin: 0 5px;
        cursor: pointer;
    }
    .mobileDisplay {
        display: block;
    }
    .desktopDisplay {
        display: none !important;
    }
    .mega_menu_mobile {
        display: block;
        overflow: auto;
    }
    .header_contact { /*modif*/
        display: flex;
        align-items: center;
        margin: 15px 0;
        justify-content: space-between;
        width: 85%;
    }
    .right_logo img {
        height: calc(var(--logo1-height) / 2.5);
        margin: 10px 0 0px 15px;
        cursor: pointer;
    }
    .header_container {
        padding: 11px 7%;
    }
    .header_right {
        align-items: flex-start;
        flex-direction: row;
        position: fixed;
        top: 0;
        right: 0;
        width: 0;
        display: flex;
        z-index: 15;
        height: 100%;
        overflow: hidden;
        transition: all 0.2s;
    }
    .left_logo img {
        height: auto;
        margin: 0 calc(var(--logo1-height) / 4);
        width: 30px;
    }
    .closeMenu1 {
        width: 25%;
        background: rgb(0 0 0 / 71%);
        height: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        font-family: sans-serif;
        transition: all 0.2s;
        cursor: pointer;
    }
    .closeMenu1 p {/*modif*/
        color: rgb(100, 107, 82);
        font-size: 25px;
        margin: 0px;
        transition: all 0.5s;
        font-weight: 100;
        background-color: white;
        width: 100%;
        border-bottom: 2px solid #646b52;
        text-align: center;
        font-family: 'DaciaBlock';
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .show_m_menu {
        transition: all 0.2s;
        width: 100%;
    }
    .nav_list {
        display: flex;
        align-items: flex-start;
        word-break: normal;
        flex-direction: column;
        margin: 0px 0 20px 0;
        padding: 0;
        justify-content: flex-start;
    }
    li.mobileDisplay {
        margin: 0 16px !important;
        font-family: 'DaciaBlock' !important;
        letter-spacing: 2px !important;
        font-size: 17px !important;
        height: 62px !important;
        display: flex !important;
        align-items: center !important;
        font-weight: 100 !important;
    }
    .fixed li {
        font-size: 15px ;
        letter-spacing: 0px;
    }
    .nav_list li {
        font-size: 15px;
        list-style-type: none;
        margin: 20px 15px;
        font-family: 'DaciaBlock';
        display: flex;
        justify-content: space-between;
        width: 94%;
        align-items: center;
    }
    .carListVPSvg{
        fill: var(--Green);
        display: block;
        width: 11.3px;
        margin-right: 15px;
        transform: rotate(0deg);
        transition: transform 0.3s ease-in-out;
    }
    .nav_list li.liOpen svg {/*modif*/
        transform: rotate(90deg);
    }
    .nav_list li .st0{
        fill: var(--Green);
    }
    .menu_carcard {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        cursor: pointer;
        transition: all 0.1s;
        display: flex;
        align-items: center;
        margin: 5px 0;
    }
    .menu_carcard p {
        color: black;
        font-size: 12px;
        text-align: justify;
    }
    .menu_carcard img {/*modif*/
        width: 25%;
        margin: 0 10px;
    }
    .menu_allcar {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 20px 0;
    }
    .menu_allcar p {
        color: var(--LightGray3);
        font-size: 12px;
        text-align: justify;
    }
    .menu_allcar img {
        width: 40px;
        margin: 0 20px 0 0;
    }
    
    /* whatsApp icone */
    .float {
        width: 30px;
        height: 30px;
    }
}


/*----addthis---*/
@media (max-width: 430px) { /*modif*/
    .menu_carcard img {
        width: 35%;
        margin: 0 10px;
    }
    .header_container .nav_list li {
        font-size: 11px;
    }
    .header_contact a svg {
        width: 20px !important;
        margin: 0 3px;
    }
    .header_contact a .connectSvg {
        width: 20px !important;
    }

    .menu_carcard .carName {
        font-size: 11px;
    }
    .menu_carcard .carPrice {
        font-size: 9px;
    }
    .menu_carcard {
        margin: 7px 0;
    }
    .menu_carcard img {
        width: 40%;
    }

    .social_btns img {
        margin: 0px;
    }
    .social_btns {
        margin: 0px 0 5px 0px;
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .header_contact span {
        font-size: 10.5px;
        font-family: 'DaciaBlock';
        width: 58px;
    }

    .header_contact img {
        width: 20px;
    }

    .logoInScroll img {
        width: 24px;
    }

    .closeMenu1 {
        background: rgb(0 0 0 / 71%);
    }
}

  /*----addthis---*/
@media (max-width: 340px) {
    .menu_carcard p {
        color: black;
        font-size: 10.5px;
        text-align: justify;
    }
}

@media (max-width: 335px) {
    .header_contact span {
        font-size: 8.5px;
        width: 47px;
    }
    .nav_list li {
        font-size: 13px;
        width: 93.9%;
    }
}