<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-------------------- Desktop ---------------------*/
* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    max-width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



body{
    background: #000;
    -ms-overflow-style: none;
    font-display: swap;
}

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

#desktop{
    display: block;
}

#mobile{
    display: none;
}


/*--------------------Desktop - Loading ---------------------*/
.d_loading{
    position: fixed;
    width: 100%;
    height: 100%;
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-columns: 100%;
    grid-template-rows: 40% 20% 40%;
    color: #fff;
    background: linear-gradient(45deg, #000, #505050);
    z-index: 100000;
    opacity: 1;
    transition: opacity 0.5s ease, z-index 0.1s ease 0.5s;
}

.loading_img {
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% { opacity: 0.1; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.7; transform: scale(1); }
}



/*--------------------Desktop - Back To Top ---------------------*/

.d_backtoTop{
    position: fixed;
    width: 5vh;
    height: 5vh;
    top: 12.5vh;
    right: 4vw;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 5vh;
    aspect-ratio: 1/1;
    border-radius: 7vh;
    background: linear-gradient(135deg, #000000 , #515151);
    border: 2px solid #ffffff50;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transition: width 0.4s ease-in-out;
}

.d_backtoTop.active{
    opacity: 1;
    z-index: 5;
}


.d_backtoTop:hover{
    width: 12vw;
    grid-template-columns: 5vh 20vh;
}

.d_backtoTop:hover .d_backtoTop_bott{
    margin-left: 10%;
}

.d_backtoTop_bott{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease-in-out;
}
.d_backtoTop_bott img{
    position: relative;
    width: 80%;
    rotate: -90deg;
}

.d_backtoTop_text{
    width: 100%;
    height: 100%;
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 1.2em;
    transition: 0.4s ease-in-out;
}

.fadeinup{
    animation: fadeinup 1s ease;
}

@keyframes fadeinup{
    0%{
        transform: translateY(50px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadein{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.fadein{
    animation: fadein 1s ease;
}

.fadeout{
    animation: fadeout 1s ease;
}

@keyframes fadeout{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}


/*--------------------Desktop - Section Position ---------------------*/


.d_section_position_holder{
    position: fixed;
    width: 100vw;
    height: 5vh;
    bottom: 4vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.d_section_position{
    display: flex;
    justify-content: center;
    rotate: -90deg;
    height: 50vh;
    width: 0.3em;
    border-radius: 20px;
    box-sizing: border-box;
    transition: 0.4s ease;
    border: 1px solid #ffffff70;
    z-index: 999;
}


.d_section_position_span{
    display: flex;
    position: relative;
    width: 0.3em;
    height: 50%;
    background: #fff;
    border-radius: 20px;
    transition: 0.4s ease;
    filter: drop-shadow(0px 0px 10px 10px #000);
}

/*--------------------Desktop - Copyright ---------------------*/
.d_footer_copyright_box{
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 4vh;
    background-color: #000000;
    backdrop-filter: blur(20px);
    transition: 0.4s ease;
    z-index: 2;
}
.d_footer_copyright{
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 4vh;
    display: flex;
    direction: rtl;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: #ffffff90;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-size: 1.1em;
    letter-spacing: 1px;
    transition: .4s ease;
}



/*--------------------Desktop - Off Screen Menu - links ---------------------*/
.d_off_screen_menu a {
    color: white;
}
.d_off_screen_menu a:visited {
    color: white;
}




/*--------------------Desktop - Off Screen Menu ---------------------*/
.d_off_screen_menu {
    height: 100vh;
    width: 100%;
    max-width: 33.3%;
    background-color: #00000040;
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    right: -33.3%;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 18% 15.3% 15.3% 15.3% 15.3% 8.8% 12%;
    align-items: center;    
    justify-content: center;
    text-align: center;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 2.2em;
    z-index: 2;
    filter: drop-shadow(0 0 8px #000);
    transition: 0.4s ease;
}
.d_off_screen_menu.active {
    right: 0;
    z-index: 3;
}

.d_off_grid3{
    display: grid;
    grid-template-columns: repeat(3, 33.3%);
    grid-template-rows: 100%;
    justify-content: center;
    align-items: center;
}
.d_off_social{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 20%);
    grid-template-rows: 100%;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ffffff90;
    padding-top: 15px;
}


.d_off_social img{
    width: 35%;
    opacity: 0.5;
    height: auto;
    transition: all 0.5s ease-in-out;
}

.d_off_social img:hover{
    opacity: 1;
}


/*--------------------Desktop - Nav ---------------------*/
#d_navbar{
    position: fixed;
    height: 8vh;
    width: 100%;
    background-color: #00000040;
    backdrop-filter: blur(20px);
    z-index: 2;
    transition: 0.4s ease;
}



/*--------------------Desktop - Nav Content ---------------------*/
.d_nav_content {
    position: fixed;
    height: 8vh;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 33.3%);
    grid-template-rows: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transition: 0.4s ease;

}


/*--------------------Desktop - Ham Menu ---------------------*/
.d_ham-menu {
    position: absolute;
    height: 30px;
    width: 35px;
    right: 120px;
    cursor: pointer;
    z-index: 2;
}
.d_ham-menu span {
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}
.d_ham-menu span:nth-child(1) {
    top: 25%;
}
.d_ham-menu span:nth-child(3) {
    top: 75%;
}
.d_ham-menu.active span {
    background-color: white;
}
.d_ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.d_ham-menu.active span:nth-child(2) {
    opacity: 0;
}
.d_ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}




/*--------------------Desktop - Nav Logo ---------------------*/
.d_nav_logo{
    position: relative;
    height: 3.5em;
    width: auto;
    opacity: 100%;
    transition: .4s ease;
}


/*-------------------- Desktop - Nav Translate ---------------------*/

.d_translate{
    display: flex;
    margin-left: 120px;
    cursor: pointer;
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.d_gTranslate{
    transition: 0.3s ease-in-out;
}

.d_select_lang{
    position: absolute;
    width: 2vw;
    height: 2vw;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 100%;
    justify-content: flex-end;
    border-radius: .5em;
    border: 2px solid #fff;
    overflow: hidden;
    left: 120px;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.d_select_lang.active{
    opacity: 1;
}

.d_select_lang span{
    background: #fff;
}

.d_l_eng{
    width: 100%;
    height: 100%;
    background: url(/pic/england.png);
    background-position: 50%;
    background-size: 180%;
    background-repeat: no-repeat;
}



/*--------------------Desktop - Cars Arrow ---------------------*/

.d_arrow_container_cars {
    cursor: pointer;
    right: -15%;
    width: 35px;
    height: 35px;
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(2, 50%);
    align-items: center;
    justify-content: center;
}

.d_arrow_container_cars span {
    width: 2px;
    height: 50%;
    background-color: #ffffff;
    border-radius: 1px;
    position: absolute;
    transform-origin: bottom;
    transition: .3s ease;
}

.d_arrow_container_cars span:first-child {
    transform: rotate(-45deg);
    left: 30%;
    bottom: 13%;
}

.d_arrow_container_cars span:last-child {
    transform: rotate(45deg);
    left: -5%;
    top: 4%
}
.d_arrow_container_cars.active span:first-child {
    transform: rotate(45deg);
    left: -5%;
    bottom: 13%;
}

.d_arrow_container_cars.active span:last-child {
    transform: rotate(-45deg);
    left: 30%;
    top: 4%;
}

/*--------------------Desktop - Wheels Arrow ---------------------*/

.d_arrow_container_wheels {
    cursor: pointer;
    right: -15%;
    width: 35px;
    height: 35px;
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(2, 50%);
    align-items: center;
    justify-content: center;
}

.d_arrow_container_wheels span {
    width: 2px;
    height: 50%;
    background-color: #ffffff;
    border-radius: 1px;
    position: absolute;
    transform-origin: bottom;
    transition: .3s ease;
}

.d_arrow_container_wheels span:first-child {
    transform: rotate(-45deg);
    left: 30%;
    bottom: 13%;
}

.d_arrow_container_wheels span:last-child {
    transform: rotate(45deg);
    left: -5%;
    top: 4%
}
.d_arrow_container_wheels.active span:first-child {
    transform: rotate(45deg);
    left: -5%;
    bottom: 13%;
}

.d_arrow_container_wheels.active span:last-child {
    transform: rotate(-45deg);
    left: 30%;
    top: 4%;
}


/*--------------------Desktop - Off Screen Car Menu ---------------------*/

.d_off_screen_car_menu{
    background-image: url(/pic/CarsMenu/off_screen_car.jpg);
    background-size:115%;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    width: 66.7vw;
    height: 100vh;
    margin-right: 33.3%;
    position: fixed;
    opacity: 0%;
    transition: .4s ease;
    display: none;
}

.d_off_screen_car_menu.active{
    opacity: 100%;
    z-index: 3;
    display: unset;
}


/*--------------------Desktop - Off Screen Car Menu - Content's ---------------------*/

.d_off_sc_car_content{
    background-image: url(/pic/CarsMenu/img1.png);
    background-size:110%;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    direction: rtl;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 74% 10% 16%;
}

.d_off_sc_car_info{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.d_off_sc_car_name{
    display: flex;
    align-items: flex-end;
    color: white;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 2.5em;
    filter: drop-shadow(0 1px 5px #000);
    cursor: default;
}

.d_off_sc_car_parag_readmore_box{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 5% 70% 25%;
    grid-template-rows: 100%;
    align-items: center;
}

.d_off_sc_car_parag{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 1.4em;
    filter: drop-shadow(0 2px 2px #000);
    cursor: default;
}

.d_off_sc_car_readmore{
    text-align: center;
    align-content: center;
    border: 1px solid #ffffff;
    height: 2em;
    width: 8.5em ;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 1.4em;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    border-radius: 50px;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}


.d_off_sc_car_readmore a{
    color: #fff;
}
.d_off_sc_car_readmore a:visited{
    color: #fff;
}

.d_off_sc_car_readmore:hover{
    box-shadow: inset 0px 0px 5px #ffffff, 0px 0px 20px #ffffff;
    letter-spacing: 1px;
    width: 9em;
}


/*--------------------Desktop - Off Screen Car Menu - Content's - Back and Next Button ---------------------*/

.d_off_sc_car_next_bac{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 5% 70% 25%;
    grid-template-rows: 100%;
    align-items: end;
}

.d_off_sc_car_next_bac_box{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.d_cff_car_button{
    position: relative; 
    margin: 0 1.5%;
}

.d_cff_car_button:hover .d_cff_car_nex_prev{
    transition: 0.5s ease-in-out;
    background-color: #1479EA;
}

.d_cff_car_button:hover .d_cff_car_left_pointer{
    transition: 0.5s ease-in-out;
    background-color: #1479EA;
    z-index: 4;
}
.d_cff_car_button:hover .d_cff_car_right_pointer{
    transition: 0.5s ease-in-out;
    background-color: #1479EA;
    z-index: 4;
}



#d_cff_car_prev {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    clip-path: polygon(100% 50%,85.36% 85.36%,50% 100%,14.64% 85.36%,0% 50%,14.64% 14.64%,50% 0%,85.36% 14.64%);  
    width: 5em;
    position: fixed;
    height: 5em;
    outline: none;
    border: none;
    background-color: transparent;
    color: white;
    transition: 1s;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: 0.5s ease-in-out;
  }
#d_cff_car_next {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    clip-path: polygon(100% 50%,85.36% 85.36%,50% 100%,14.64% 85.36%,0% 50%,14.64% 14.64%,50% 0%,85.36% 14.64%);  
    width: 5em;
    position: fixed;
    height: 5em;
    outline: none;
    border: none;
    background-color: transparent;
    color: white;
    transition: 1s;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: 0.5s ease-in-out;
  }
  
  
  #d_cff_car_prev:hover {
    color: #1479EA;
    transition: 0.5s ease-in-out;
    box-shadow: inset 0px 0px 40px #1479EA;
  }
  #d_cff_car_next:hover {
    color: #1479EA;
    transition: 0.5s ease-in-out;
    box-shadow: inset 0px 0px 40px #1479EA;
  }

  .d_cff_car_nex_prev {
    position: absolute; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 3;
    clip-path: polygon(100% 50%, 85.36% 85.36%, 50% 100%, 14.64% 85.36%, 0% 50%, 14.64% 14.64%, 50% 0%, 85.36% 14.64%, 100% 50%, calc(85.36% - 0.71px) calc(14.64% - -0.71px), calc(50% - 0px) calc(0% - -1px), calc(14.64% - -0.71px) calc(14.64% - -0.71px), calc(0% - -1px) calc(50% - 0px), calc(14.64% - -0.71px) calc(85.36% - 0.71px), calc(50% - 0px) calc(100% - 1px), calc(85.36% - 0.71px) calc(85.36% - 0.71px), calc(100% - 1px) calc(50% - 0px), calc(85.36% - 0.71px) calc(14.64% - -0.71px));
}
.d_cff_car_left_pointer{
    width: 2em;
    height: 2em;
    clip-path: polygon(0 50%, 75% 100%, 35% 50%, 75% 0);
    background-color: #fff;
    color: white;
    filter: drop-shadow(0 0 10px white);
}

.d_cff_car_right_pointer{
    width: 2em;
    height: 2em;
    rotate: 180deg;
    clip-path: polygon(0 50%, 75% 100%, 35% 50%, 75% 0);
    background-color: #fff;
    color: white;
    filter: drop-shadow(0 0 10px white);
}


/*--------------------Desktop - Off Screen Car And Wheels Menu - Back and Next Button - Animations ---------------------*/

.slide-in {
    animation: slideIn 0.5s ease forwards;
  }
  
  .slide-out {
    animation: slideOut 0.5s ease forwards;
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(-5%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideOut {
    from {
      transform: translateX(0);
      opacity: 1;
    }
    to {
      transform: translateX(-5%);
      opacity: 0;
    }
  }



  /*--------------------Desktop - Off Screen Wheels Menu ---------------------*/

  .d_off_screen_wheels_menu{
    background-image: url(/pic/WheelsMenu/back-wheels.jpg);
    background-size:100%;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    width: 66.7vw;
    height: 100vh;
    margin-right: 33.3%;
    position: fixed;
    opacity: 0%;
    transition: .4s ease;
    display: none;
}

.d_off_screen_wheels_menu.active{
    opacity: 100%;
    z-index: 3;
    display: unset;
}


/*--------------------Desktop - Off Screen wheels Menu - Content's ---------------------*/

.d_off_sc_wheels_content{
    background-image: url(/pic/WheelsMenu/R1.png);
    background-size:80%;
    background-position: 50%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    direction: rtl;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 74% 10% 16%;
}

.d_off_sc_wheels_info{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.d_off_sc_wheels_name{
    display: flex;
    align-items: flex-end;
    color: white;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 2.5em;
    filter: drop-shadow(0 1px 5px #000);
    cursor: default;
}

.d_off_sc_wheels_parag_readmore_box{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 5% 70% 25%;
    grid-template-rows: 100%;
    align-items: center;
}

.d_off_sc_wheels_parag{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 1.4em;
    filter: drop-shadow(0 2px 2px #000);
    cursor: default;
}

.d_off_sc_wheels_readmore{
    text-align: center;
    align-content: center;
    border: 1px solid #ffffff;
    height: 2em;
    width: 8.5em ;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 1.4em;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    border-radius: 50px;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}


.d_off_sc_wheels_readmore a{
    color: #fff;
}
.d_off_sc_wheels_readmore a:visited{
    color: #fff;
}

.d_off_sc_wheels_readmore:hover{
    box-shadow: inset 0px 0px 5px #ffffff, 0px 0px 20px #ffffff;
    letter-spacing: 1px;
    width: 9em;
}


/*--------------------Desktop - Off Screen Car Menu - Content's - Back and Next Button ---------------------*/



.d_off_sc_wheels_next_bac{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 5% 70% 25%;
    grid-template-rows: 100%;
    align-items: end;
}

.d_off_sc_wheels_next_bac_box{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.d_cff_wheels_button{
    position: relative; 
    margin: 0 1.5%;
}

.d_cff_wheels_button:hover .d_cff_wheels_nex_prev{
    transition: 0.5s ease-in-out;
    background-color: #1479EA;
}

.d_cff_wheels_button:hover .d_cff_wheels_left_pointer{
    transition: 0.5s ease-in-out;
    background-color: #1479EA;
    z-index: 4;
}
.d_cff_wheels_button:hover .d_cff_wheels_right_pointer{
    transition: 0.5s ease-in-out;
    background-color: #1479EA;
    z-index: 4;
}



#d_cff_wheels_prev {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    clip-path: polygon(100% 50%,85.36% 85.36%,50% 100%,14.64% 85.36%,0% 50%,14.64% 14.64%,50% 0%,85.36% 14.64%);  
    width: 5em;
    position: fixed;
    height: 5em;
    outline: none;
    border: none;
    background-color: transparent;
    color: white;
    transition: 1s;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: 0.5s ease-in-out;
  }
#d_cff_wheels_next {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    clip-path: polygon(100% 50%,85.36% 85.36%,50% 100%,14.64% 85.36%,0% 50%,14.64% 14.64%,50% 0%,85.36% 14.64%);  
    width: 5em;
    position: fixed;
    height: 5em;
    outline: none;
    border: none;
    background-color: transparent;
    color: white;
    transition: 1s;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: 0.5s ease-in-out;
  }
  
  
  #d_cff_wheels_prev:hover {
    color: #1479EA;
    transition: 0.5s ease-in-out;
    box-shadow: inset 0px 0px 40px #1479EA;
  }
  #d_cff_wheels_next:hover {
    color: #1479EA;
    transition: 0.5s ease-in-out;
    box-shadow: inset 0px 0px 40px #1479EA;
  }

  .d_cff_wheels_nex_prev {
    position: absolute; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 3;
    clip-path: polygon(100% 50%, 85.36% 85.36%, 50% 100%, 14.64% 85.36%, 0% 50%, 14.64% 14.64%, 50% 0%, 85.36% 14.64%, 100% 50%, calc(85.36% - 0.71px) calc(14.64% - -0.71px), calc(50% - 0px) calc(0% - -1px), calc(14.64% - -0.71px) calc(14.64% - -0.71px), calc(0% - -1px) calc(50% - 0px), calc(14.64% - -0.71px) calc(85.36% - 0.71px), calc(50% - 0px) calc(100% - 1px), calc(85.36% - 0.71px) calc(85.36% - 0.71px), calc(100% - 1px) calc(50% - 0px), calc(85.36% - 0.71px) calc(14.64% - -0.71px));
}
.d_cff_wheels_left_pointer{
    width: 2em;
    height: 2em;
    clip-path: polygon(0 50%, 75% 100%, 35% 50%, 75% 0);
    background-color: #fff;
    color: white;
    filter: drop-shadow(0 0 10px white);
}

.d_cff_wheels_right_pointer{
    width: 2em;
    height: 2em;
    rotate: 180deg;
    clip-path: polygon(0 50%, 75% 100%, 35% 50%, 75% 0);
    background-color: #fff;
    color: white;
    filter: drop-shadow(0 0 10px white);
}


.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: moveUp linear infinite;
}


@keyframes moveUp {
    0% {
        top: 110vh;
    }
    100% {
        top: -10vh;
    }
}

/*--------------------Desktop - Balls :D ---------------------*/

.d_moving_balls_box{
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.d_moving_ball_1{
    position: absolute;
    width: 40vw;
    height: 40vw;
    opacity: 30%;
    background-color: #fff;
    filter: blur(300px);
    will-change: transform;
    transition:3s ease-in-out;
}

.d_moving_ball_2{
    position: absolute;
    width: 40vw;
    height: 40vw;
    opacity: 30%;
    background-color: #fff;
    filter: blur(300px);
    will-change: transform;
    transition:3s ease-in-out;
}


/*--------------------Desktop - Wheels List ---------------------*/


.d_wheels_list_box_back{
    position: relative;
    width: 90vw;
    height: 70vh;
    left: 5vw;
    top: 15vh;
    background: linear-gradient(45deg,#ffffff25,#ffffff20,#ffffff15,#ffffff25);
    border-radius: 2em;
}

.gradient-right {
    position: absolute;
    box-sizing: border-box;
    width: 4vw;
    height: 70vh;
    right: 0;
    top: 0;
    border-radius: 0 2em 2em  0;
    background: linear-gradient(to left, #00000080, #00000000);
    z-index: 2;
    opacity: 1; 
    transition: opacity 0.3s ease-in-out;
}

.gradient-left {
    position: absolute; 
    box-sizing: border-box;
    width: 4vw;
    height: 70vh;
    left: 0;
    top: 0;
    border-radius: 2em 0 0 2em;
    background: linear-gradient(to left, #00000000, #00000080);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.d_wheels_list_box_back::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2em;
    border: 2px solid transparent;
    background: var(--theme-background, linear-gradient(45deg, #ffffff25, #ffffff20,#ffffff15,#ffffff10,#ffffff25) border-box);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.d_wheels_list_box {
    position: absolute;
    width: 86vw;
    height: 62vh;
    left: 5vw;
    top: 15vh;
    padding: 4vh 2vw;
    display: flex;
    flex-direction: row;
    gap: 2vw;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .d_wheels_list_box::-webkit-scrollbar {
    display: none;
  }

.d_wheels_content{
    position: relative;
    width: 19%;
    height: 100%;
    aspect-ratio: 1.2/2;
    border-radius: 1.2em;
    border: 1px solid #b4b4b4;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 35% 65%;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.d_wheels_content.active{
    grid-template-rows: 25% 75%;
}

.d_wheels_content_color_background{
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1vw;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-display: swap;
    font-weight: 400;
    font-size: 1.5em;
    transition: 0.3s ease-in-out;
}
.d_wheels_content_color_background.active{
    color: transparent !important; 
    background-size: 110% !important;
    background-repeat: no-repeat !important;
    background-position: center 70% !important;
}

.d_wheels_content_FS_pic{
    position: absolute;
    height: 45%;
    top:10%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.d_wheels_content_FS_pic.active{
    height: 60%;
    width: 60%;
    top:0;
}

.d_wheels_content_info{
    background: linear-gradient(to bottom, #4d4d4d,#000,#4d4d4d);
    width: 100%;
    height: 100%;
    direction: rtl;
    box-sizing: border-box;
    position: relative;
    padding-top: 30%;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 0% 100% 0%;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.d_wheels_content_info.active{
    grid-template-rows: 20% 60% 20%;
}

.d_wheels_content_name{
    display: flex;
    align-items: flex-end;
    padding: 0 1vw;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 1.5em;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.d_wheels_content_name.active{
    opacity: 1;
}

.d_wheels_content_info_text{
    padding: 1vw 1vw 0 1vw;
    display: flex;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 1.1em;
    line-height: 1.8em;
}


.d_wheels_content_cta_box{
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    text-align: center;
    grid-template-rows: 100%;
    grid-template-columns: 100%;
    box-sizing: border-box;
    background: radial-gradient(ellipse at bottom, #404040 0%, #000 100%);
    border-top: 1px solid #fff;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.d_wheels_content_cta_box.active{
    opacity: 1;
}

.d_wheels_content_cta{
    position: relative;
    width: 80%;
    font-family: "Electrolize", sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    padding: 2% 10%;
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 3em;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 15px #000;
    z-index: 1;
    cursor: pointer;
}

.d_wheels_content_cta:hover{
    background: #fff;
    color: #000;
    letter-spacing: 0.02em;
}


.d_wheels_content_cta:active{
    transform: translateY(0.11em);
    background: #000;
    border: 2px solid #000;
    color: #fff;
    box-shadow: 0 0 10px #fff;
}


.m_star{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    overflow: hidden;
}


.star {
    position: absolute;
    background: #ffffff70;
    border-radius: 50%;
    animation: moveUp linear infinite;
}


@keyframes moveUp {
    0% {
        top: 110vh;
    }
    100% {
        top: -10vh;
    }
}











/*-------------------- Mobile ---------------------*/

@media (max-width: 768px) {


    #mobile{
        display:block;
    }

    #desktop {
        display: none;
    }

    * {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 100%;
    text-decoration: none;
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none;
    user-select: none;
    }

    body{
        background: #000;
        -ms-overflow-style: none;
        overflow-x: hidden;
        font-display: swap;
    }

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


    /*--------------------Mobile - Loading ---------------------*/
    .m_loading{
        position: fixed;
        width: 100%;
        height: 100%;
        display: grid;
        justify-items: center;
        align-items: center;
        grid-template-columns: 100%;
        grid-template-rows: 40% 20% 40%;
        color: #fff;
        background: linear-gradient(45deg, #000, #505050);
        z-index: 100000;
        opacity: 1;
        transition: opacity 0.5s ease, z-index 0.1s ease 0.5s;
    }

    .m_loading_img {
        animation: blink 1s infinite alternate;
    }





    /*--------------------Mobile - Nav ---------------------*/
    #m_navbar{
        position: fixed;
        height: 80px;
        width: 100%;
        background-color: #00000040;
        backdrop-filter: blur(20px);
        z-index: 2;
    }


    /*--------------------Mobile - Nav Content ---------------------*/
    .m_nav_content {
        position: relative;
        height: 80px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: 100%;
        justify-content: center;
        align-items: center;
    }


    /*--------------------Mobile - Ham Menu ---------------------*/
    .m_ham-menu {
        height: 30px;
        width: 35px;
        position: relative;
        z-index: 4;
        margin-right: 20%;
        margin-left: auto;
        
    }
    .m_ham-menu span {
        height: 2px;
        width: 100%;
        background-color: #ffffff;
        border-radius: 25px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: .3s ease;
    }
    .m_ham-menu span:nth-child(1) {
        top: 25%;
    }
    .m_ham-menu span:nth-child(3) {
        top: 75%;
    }
    .m_ham-menu.active span {
        background-color: white;
    }
    .m_ham-menu.active span:nth-child(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .m_ham-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .m_ham-menu.active span:nth-child(3) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    /*--------------------Mobile - Nav Logo ---------------------*/
    .m_nav_logo_holder{
        padding-left: 15%;
    }

    .m_nav_logo{
        position: relative;
        height: 60px;
        width: auto;
        z-index: 2;
        opacity: 100%;
        transition: all .4s ease;
    }

    .m_nav_logo.active{
        z-index: -1;
        opacity: 0%;
    }

    /*-------------------- Mobile - Translate ---------------------*/

.m_translate{
    position: fixed;
    width: 11vw;
    height: 10vw;
    left: -1vw;
    bottom: 10vh;
    border:2px solid #fff;
    border-top-right-radius: 3vw;
    border-bottom-right-radius: 3vw;
    display: flex;
    overflow: hidden;
    opacity: .2;
    z-index: 2;
    transition: 0.3s ease-in-out;
}

.m_translate.active{
    left: 10vw;
    border-radius: 3vw;
    opacity: 1;
}

.m_gTranslate{
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-mask: url(/pic/translate.svg) no-repeat center;
    mask: url(/pic/translate.svg) no-repeat center;
    mask-size: 60%;
    transition: 0.3s ease-in-out;
}

.m_select_lang{
    position: fixed;
    width: 10vw;
    height: 9vw;
    left: 11vw;
    bottom: 10.4vh;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 100%;
    justify-content: flex-end;
    border-radius: .5em;
    overflow: hidden;
    right: 120px;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.m_select_lang.active{
    opacity: 1;
}

.m_l_eng{
    width: 100%;
    height: 100%;
    background: url(/pic/england.png);
    background-position: 50%;
    background-size: 180%;
    background-repeat: no-repeat;
}


.m_lang_close{
    position: fixed;
    width: 9vw;
    height: 9vw;
    left: 0;
    bottom: 10.4vh;
    background-color: #ffffff;
    -webkit-mask: url(/pic/ctaArrow.svg) no-repeat center;
    mask: url(/pic/ctaArrow.svg) no-repeat center;
    mask-size: 100%;
    transform: rotate(-90deg);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.m_lang_close.active{
    opacity: 1;
    z-index: 2;
}



    /*--------------------Mobile - Off Screen Menu - links ---------------------*/
    .m_off_screen_menu a {
        color: white;
    }
    .m_off_screen_menu a:visited {
        color: white;
    }




    /*--------------------Mobile - Off Screen Menu ---------------------*/
   .m_off_screen_menu {
    height: 100vh;
    width: 100vw;
    background-image: url(/pic/mOffScreen.jpg);
    background-size:cover;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 18% 15.3% 15.3% 15.3% 15.3% 7.5% 13.3%;
    align-items: center;    
    justify-content: center;
    text-align: center;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 2.2em;
    transition: 0.5s ease-in-out;
    z-index: 2;
    opacity: 0%;
    visibility: hidden;
}
.m_off_screen_menu.active {
    opacity: 100%;
    visibility: unset;
}


.m_off_grid3{
    display: grid;
    grid-template-columns: repeat(3, 33.3%);
    grid-template-rows: 100%;
    justify-content: center;
    align-items: center;
}
.m_off_social{
    display: grid;
    grid-template-columns: repeat(3, 25%);
    grid-template-rows: 100%;
    justify-content: center;
    align-items: center;
    border-top: 2px solid;
    border-color: #ffffff80;
    padding-top: 15px;
}


.m_off_social img{
    width: 50%;
    height: auto;
    transition: all 0.5s ease-in-out;
}





/*-------------------- Mobile - Cars Arrow ---------------------*/

.m_arrow_container_cars {
cursor: pointer;
right: -15%;
width: 35px;
height: 35px;
position: relative;
display: grid;
grid-template-columns: 100%;
grid-template-rows: repeat(2, 50%);
align-items: center;
justify-content: center;
}

.m_arrow_container_cars span {
width: 2px;
height: 50%;
background-color: #ffffff;
border-radius: 1px;
position: absolute;
transform-origin: bottom;
transition: .3s ease;
}

.m_arrow_container_cars span:first-child {
transform: rotate(-45deg);
left: 30%;
bottom: 13%;
}

.m_arrow_container_cars span:last-child {
transform: rotate(45deg);
left: 0;
top: 4%
}


/*-------------------- Mobile - Wheels Arrow ---------------------*/

.m_arrow_container_wheels {
cursor: pointer;
right: -15%;
width: 35px;
height: 35px;
position: relative;
display: grid;
grid-template-columns: 100%;
grid-template-rows: repeat(2, 50%);
align-items: center;
justify-content: center;
}

.m_arrow_container_wheels span {
width: 2px;
height: 50%;
background-color: #ffffff;
border-radius: 1px;
position: absolute;
transform-origin: bottom;
transition: .3s ease;
}

.m_arrow_container_wheels span:first-child {
transform: rotate(-45deg);
left: 30%;
bottom: 13%;
}

.m_arrow_container_wheels span:last-child {
transform: rotate(45deg);
left: 0;
top: 4%
}



/*-------------------- Mobile - Off Screen Car Menu ---------------------*/

.m_off_screen_car_menu{
background-image: url(/pic/mCarMenu/m-off_screen_car.jpg);
background-size:cover;
background-position: 50% 100%;
background-repeat: no-repeat;
width: 100vw;
height: 100vh;
position: fixed;
transition: all .5s ease;
opacity: 0%;
z-index: 0;
}

.m_off_screen_car_menu.active{
opacity: 100%;
z-index: 2;
}

.m_carMenu_swip{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50% , -50%);
z-index: 3;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: 0.4s ease;
}

.m_carMenu_swip img{
width: 40%;
animation: mlefttoright 2.5s linear infinite;
}

@keyframes mlefttoright{
0%{
    transform: translateX(-10vw);
}
25%{
    transform: translateX(0);
}
50%{
    transform: translateX(10vw);
}
75%{
    transform: translateX(0);
}
100%{
    transform: translateX(-10vw);
}
}

.m_carMenu_swip.active{
opacity: 1;
}

/*-------------------- Mobile - Off Screen Car Menu - Content's ---------------------*/

.m_off_sc_car_content{
background-image: url(/pic/mCarMenu/m-img1.png);
background-size:105%;
background-position: 50% 50%;
background-repeat: no-repeat;
width: 100%;
height: 100%;
direction: rtl;
display: grid;
grid-template-columns: 100%;
grid-template-rows: 22% 22% 22% 34%;
transition: 0.5s ease;
}

.m_off_sc_car_name{
position: relative;
color: white;
font-family: "Cairo", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-size: 35px;
margin-bottom: 12px;
margin-left: 24px;
margin-right: 24px;
color: #fff;
filter: drop-shadow(0 4px 5px #000);
opacity: 100%;
transition: .5s ease;
}

.m_off_sc_car_parag_readmore_box{
display: grid;
grid-template-columns: 100%;
grid-template-rows: repeat(2, 50%);
}

.m_off_sc_car_parag{
position: relative;
color: white;
font-family: "Cairo", sans-serif;
font-optical-sizing: auto;
font-weight: 300;
font-size: 22px;
margin-bottom: 12px;
margin-left: 24px;
margin-right: 24px;
filter: drop-shadow(0 2px 2px #000);
opacity: 100%;
transition: .5s ease;
}



.fade-out {
opacity: 0 !important;
}

.fade-in {
opacity: 100% !important;
}



.m_off_sc_car_readmore{
position: absolute;
border: 1px solid #ffffff;
height: 2.7rem ;
width: 50% ;
left: 25%;
right: 25%;
bottom: 5%;
color: #ffffff;
border-radius: 50px;
transition: 0.3s ease;
display: flex;
justify-content: center;
align-items: center;
font-family: "Cairo", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-size: 1.3em;
}


.m_off_sc_car_readmore button{
background: none;
color: #ffffff;
border: none;
font-family: "Cairo", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-size: 1.3em;
}

.m_off_sc_car_readmore:active{
transform: translateY(0.5rem);
}


.m_off_sc_car_readmore a{
color: #fff;
}
.m_off_sc_car_readmore a:visited{
color: #fff;
}


.m_off_screen_car_wheels_menu_back {
position: absolute;
margin-left: 8%;
top: 37%;
cursor: pointer;
left: 0;
width: 35px;
height: 35px;
rotate: 180deg;
display: grid;
grid-template-columns: 100%;
grid-template-rows: repeat(2, 50%);
align-items: center;
justify-content: center;
transition: all .4s ease;
opacity: 0%;
z-index: 0;

}

.m_off_screen_car_wheels_menu_back.active {
opacity: 100%;
z-index: 3;

}

.m_off_screen_car_wheels_menu_back span {
width: 2px;
height: 50%;
background-color: #ffffff;
border-radius: 1px;
position: absolute;
transform-origin: bottom;
transition: .3s ease;
}

.m_off_screen_car_wheels_menu_back span:first-child {
transform: rotate(45deg);
left: 30%;
bottom: 13%;
}

.m_off_screen_car_wheels_menu_back span:last-child {
transform: rotate(-45deg);
left: 65%;
top: 4%
}




/*-------------------- Mobile - Off Screen Wheels Menu ---------------------*/

.m_off_screen_wheels_menu{
background-image: url(/pic/mWheelsMenu/m-back-wheels.jpg);
background-size:cover;
background-position: 50% 100%;
background-repeat: no-repeat;
width: 100vw;
height: 100vh;
position: fixed;
transition: all .5s ease;
opacity: 0%;
z-index: 0;
}

.m_off_screen_wheels_menu.active{
opacity: 100%;
z-index: 2;
}

.m_wheelsMenu_swip{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50% , -50%);
z-index: 3;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: 0.4s ease;
}

.m_wheelsMenu_swip img{
width: 40%;
animation: mlefttoright 2.5s linear infinite;
}

.m_wheelsMenu_swip.active{
opacity: 1;
}


/*-------------------- Mobile - Off Screen Wheels Menu - Content's ---------------------*/

.m_off_sc_wheels_content{
background-image: url(/pic/mWheelsMenu/mR1.png);
background-size:100%;
background-position: 50% 30%;
background-repeat: no-repeat;
width: 100%;
height: 100%;
direction: rtl;
display: grid;
grid-template-columns: 100%;
grid-template-rows: 22% 22% 22% 34%;
transition: 0.5s ease;
}

.m_off_sc_wheels_name{
position: relative;
color: white;
font-family: "Cairo", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-size: 32px;
margin-bottom: 12px;
margin-left: 24px;
margin-right: 24px;
color: #fff;
filter: drop-shadow(0 4px 5px #000);
opacity: 100%;
transition: .5s ease;
}

.m_off_sc_wheels_parag_readmore_box{
display: grid;
grid-template-columns: 100%;
grid-template-rows: repeat(2, 50%);
}

.m_off_sc_wheels_parag{
position: relative;
color: white;
font-family: "Cairo", sans-serif;
font-optical-sizing: auto;
font-weight: 300;
font-size: 22px;
margin-bottom: 12px;
margin-left: 24px;
margin-right: 24px;
filter: drop-shadow(0 2px 2px #000);
opacity: 100%;
transition: .5s ease;
}


.m_off_sc_wheels_readmore{
position: absolute;
text-align: center;
align-content: center;
border: 1px solid #ffffff;
height: 2.7rem ;
width: 50% ;
left: 25%;
right: 25%;
bottom: 5%;
color: #ffffff;
border-radius: 50px;
transition: 0.3s ease;
font-family: "Cairo", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-size: 1.3em;
}


.m_off_sc_wheels_readmore button{
background: none;
color: #ffffff;
border: none;
font-family: "Cairo", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-size: 1.3em;
}

.m_off_sc_wheels_readmore:active{
transform: translateY(0.5rem);
}


.m_off_sc_wheels_readmore a{
color: #fff;
}
.m_off_sc_wheels_readmore a:visited{
color: #fff;
}


    /*--------------------Mobile - Back To Top ---------------------*/

.m_backtoTop_box{
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}
.m_backtoTop{
    width: 2vh;
    height: 2vh;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 100%;
    aspect-ratio: 1/1;
    border-radius: 7vh;
    background: linear-gradient(135deg, #000000 , #515151);
    border: 2px solid #ffffff50;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transition: width 0.4s ease-in-out;
}

.m_backtoTop.active{
    opacity: 1;
}


.m_backtoTop_bott{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease-in-out;
}
.m_backtoTop_bott img{
    position: relative;
    width: 70%;
}

.m_backtoTop_text{
    width: 100%;
    height: 100%;
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: "Electrolize", sans-serif;
    font-weight: 400;
    font-size: 1.2em;
    transition: 0.4s ease-in-out;
}



    /*-------------------- Mobile - Section Position ---------------------*/


    .m_section_position_holder{
        position: fixed;
        width: 100vw;
        height: 3vh;
        bottom: 4vh;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .m_section_position{
        position: relative;
        display: flex;
        justify-content: center;
        rotate: -90deg;
        height: 25vh;
        width: 0.3em;
        border-radius: 20px;
        box-sizing: border-box;
        transition: 0.4s ease;
        border: 1px solid #ffffff70;
        overflow: hidden;
    }


    .m_section_position_span{
        position: absolute;
        width: 0.3em;
        height: 15%;
        background: #fff;
        border-radius: 20px;
        top: 0;
        transform: translateY(0);
        transition: transform 0.2s ease;
        box-shadow: 0 0 5px #000000;
    }

    
/*-------------------- Mobile - Copyright ---------------------*/
    .m_footer_copyright_box{
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 4vh;
        background-color: #000;
        backdrop-filter: blur(20px);
        transition: 0.4s ease;
        z-index: 2;
        overflow: hidden;
    }
    .m_footer_copyright{
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 4vh;
        direction: rtl;
        display: grid;
        grid-template-rows: 100%;
        grid-template-columns: 100%;
        justify-items: center;
        justify-content: center;
        align-items: center;
        z-index: 2;
        color: #ffffff95;
        font-family: "Cairo", sans-serif;
        font-optical-sizing: auto;
        font-weight: 200;
        font-style: normal;
        font-size: 0.8em;
        letter-spacing: 1px;
        transition: .4s ease;
    }

    .m_footer_copyright.active{
        grid-template-columns: 75% 10%;
    }





        /*-------------------- Mobile - Balls :D ---------------------*/

    .m_moving_balls_box{
        position: absolute;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }

    .m_moving_ball_1{
        position: absolute;
        width: 20vw;
        height: 20vw;
        opacity: 40%;
        background-color: #fff;
        filter: blur(300px);
        will-change: transform;
        transition:3s ease-in-out;
    }

    .m_moving_ball_2{
        position: absolute;
        width: 20vw;
        height: 20vw;
        opacity: 40%;
        background-color: #fff;
        filter: blur(300px);
        will-change: transform;
        transition:3s ease-in-out;
    }

    /*-------------------- Mobile - Cars List ---------------------*/


    .m_wheels_list_box_back{
        position: relative;
        width: 85vw;
        height: 81vh;
        left: 7.5vw;
        top: 12vh;
        background: linear-gradient(45deg,#ffffff25,#ffffff20,#ffffff15,#ffffff25);
        border-radius: 2em;
    }

    .m_wheels_list_box_back::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 2em;
        border: 2px solid transparent;
        background: var(--theme-background, linear-gradient(45deg, #ffffff25, #ffffff20,#ffffff15,#ffffff10,#ffffff25) border-box);
        mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }
    

    .m_wheels_list_box {
        position: absolute;
        box-sizing: border-box;
        width: 85vw;
        height: 81vh;
        left: 7.5vw;
        top: 12vh;
        padding: 2vh 5vw;
        display: flex;
        flex-direction: column;
        gap: 10vw;
        overflow-x: hidden;
        overflow-y: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        border-radius: 2em;
        --before-opacity: 1;
        --after-opacity: 0;
    }
    
    .m_wheels_list_box::-webkit-scrollbar {
        display: none;
    }


    .gradient-top {
        position: absolute;
        box-sizing: border-box;
        width: 85vw;
        height: 4vh;
        left: 0;
        top: 0;
        border-radius: 2em 2em 0 0;
        background: linear-gradient(to bottom, #00000080, #00000000);
        z-index: 2;
        opacity: 0; 
        transition: opacity 0.3s ease-in-out;
    }
    
    .gradient-bottom {
        position: absolute; 
        box-sizing: border-box;
        width: 85vw;
        height: 4vh;
        left: 0;
        bottom:0;
        border-radius: 0 0 2em 2em;
        background: linear-gradient(to bottom, #00000000, #00000080);
        z-index: 2;
        opacity: 1;
        transition: opacity 0.3s ease-in-out;
    }


    .m_wheels_content{
        position: relative;
        width: 100%;
        height: 90%;
        aspect-ratio: 1.2/2;
        border-radius: 1.2em;
        border: 2px solid #b4b4b4;
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 25% 75%;
        overflow: hidden;
        flex-shrink: 0;
        z-index: 1;
        transition: 0.3s ease-in-out;
    }


    .m_wheels_content_color_background{
        background-size: 140% !important;
        background-repeat: no-repeat !important;
        background-position: center 70% !important;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 1vw;
        transition: 0.3s ease-in-out;
    }
   

    .m_wheels_content_FS_pic{
        position: absolute;
        height: 30%;
        top: 10%;
        width: 50%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 1;
        transition: 0.3s ease-in-out;
    }


    .m_wheels_content_info{
        background: linear-gradient(to bottom, #4d4d4d,#000,#4d4d4d);
        width: 100%;
        height: 100%;
        direction: rtl;
        box-sizing: border-box;
        position: relative;
        padding-top: 25%;
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 20% 65% 15%;
        color: #fff;
        transition: 0.3s ease-in-out;
    }

    .m_wheels_content_name{
        display: flex;
        align-items: flex-end;
        padding: 0 4vw;
        font-family: "Cairo", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-size: 1.5em;
        transition: 0.3s ease-in-out;
    }

    .m_wheels_content_info_text{
        padding: 4vw 4vw 0 4vw;
        display: flex;
        font-family: "Cairo", sans-serif;
        font-optical-sizing: auto;  
        font-weight: 400;
        font-size: 1.4em;
        line-height: 1.4em;
    }


    .m_wheels_content_cta_box{
        position: relative;
        width: 100%;
        height: 100%;
        padding: 1% 4vw ;
        box-sizing: border-box;
        display: grid;
        align-items: center;
        text-align: center;
        grid-template-rows: 100%;
        grid-template-columns: 100%;
        background: radial-gradient(ellipse at bottom, #404040 0%, #000 100%);
        border-top: 2px solid;
        transition: 0.3s ease-in-out;
    }


    .m_wheels_content_cta{
        position: relative;
        width: 80%;
        font-family: "Cairo", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-size: 1.1em;
        padding: 1% 10%;
        background: #000;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 3em;
        transition: 0.3s ease-in-out;
        box-shadow: 0 0 15px #000;
        z-index: 1;
    }

    .m_wheels_content_cta:active{
        transform: translateY(0.11em);
        background: #fff;
        color: #000;
        letter-spacing: 0.02em;
        border: 2px solid #000;
        box-shadow: 0 0 10px #fff;
    }









}</pre></body></html>