<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{
    position: relative;
    display: block;
    height: 400vh;
}

#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, #036363);
    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 - 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: 80px;
    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: 80px;
    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: 4em;
    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 - 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;
    overflow: hidden;
}
.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 - Balls :D ---------------------*/


.d_ball1{
    position: absolute;
    width: 30vw;
    height: 30vw;
    top: 100vh;
    left: -10vw;
    opacity: 1;
    background: #1AF9F8;
    filter: blur(300px);
    animation: ball2 4s infinite linear alternate;
}
.d_ball2{
    position: absolute;
    width: 50vw;
    height: 50vw;
    top: -25vh;
    right: -25vw;
    opacity: .7;
    background: #1AF9F8;
    filter: blur(300px);
    animation: ball 4s infinite linear alternate;
}
.d_ball3{
    position: absolute;
    width: 40vw;
    height: 40vw;
    top: 170vh;
    right: -20vw;
    opacity: .7;
    background: #1AF9F8;
    filter: blur(300px);
    animation: ball 4s infinite linear alternate;
}
.d_ball4{
    position: absolute;
    width: 50vw;
    height: 50vw;
    top: 260vh;
    left: -25vw;
    opacity: .6;
    background: #1AF9F8;
    filter: blur(300px);
    animation: ball2 4s infinite linear alternate;
}

@keyframes ball{
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(100vh);
    }
}

@keyframes ball2{
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(-100vh);
    }
}


/*-------------------- Desktop - Pics ---------------------*/


.d_pic1{
    position: absolute;
    height: 10%;
    width: auto;
    mix-blend-mode: luminosity;
    opacity: .6;
    top: 1%;
    left: -10vw;
    animation: fade 4s infinite linear alternate;
}
.d_pic2{
    position: absolute;
    height: 10%;
    width: auto;
    mix-blend-mode: luminosity;
    opacity: .6;
    top: 16%;
    right: -15vw;
    animation: fade 4s infinite linear alternate;

}
.d_pic3{
    position: absolute;
    height: 11%;
    width: auto;
    mix-blend-mode: luminosity;
    opacity: .6;
    top: 26%;
    left: -22vw;
    animation: fade 4s infinite linear alternate;
}
.d_pic4{
    position: absolute;
    height: 11%;
    width: auto;
    mix-blend-mode: luminosity;
    opacity: .6;
    top: 39%;
    right: -22vw;
    animation: fade 4s infinite linear alternate;

}
.d_pic5{
    position: absolute;
    height: 10%;
    width: auto;
    mix-blend-mode: luminosity;
    opacity: .6;
    top: 51%;
    left: -12vw;
    animation: fade 4s infinite linear alternate;
}
.d_pic6{
    position: absolute;
    height: 10%;
    width: auto;
    mix-blend-mode: luminosity;
    opacity: .6;
    top: 65%;
    right: -15vw;
    animation: fade 4s infinite linear alternate;
}


@keyframes fade{
    0%{
        opacity: 0.2;
    }
    100%{
        opacity: 0.6;
    }
}


/*-------------------- Desktop - First Box ---------------------*/


.d_logo_name_box{
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 20% 60% 15%;
    justify-items: center;
    align-items: center;
}

.d_logo1{
    height: 100%;
    opacity: .8;
    filter: drop-shadow(0 0 100px #1AF9F880);
    animation: logoShadow 4s linear alternate ;
}

@keyframes logoShadow{
    0%{
        filter: drop-shadow(0 0 100px #1AF9F800);
    }
    1%{
        filter: drop-shadow(0 0 100px #1AF9F8);
    }
    5%{
        filter: drop-shadow(0 0 100px #1AF9F800);
    }
    50%{
        filter: drop-shadow(0 0 100px #1AF9F800);
    }
    51%{
        filter: drop-shadow(0 0 100px #1AF9F880);
    }
    55%{
        filter: drop-shadow(0 0 100px #1AF9F850);
    }
    98%{
        filter: drop-shadow(0 0 100px #1AF9F800);
    }
    99%{
        filter: drop-shadow(0 0 100px #1AF9F880);
    }
    100%{
        filter: drop-shadow(0 0 100px #1AF9F800);
    }

}



.d_name1 {
    color: #1AF9F870;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 3em;
    position: relative;
    animation: glitch 3s linear;
}

@keyframes glitch {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    15% {
        opacity: 0.3;
        filter: brightness(1.2);
    }
    20% {
        opacity: 0;
    }
    25% {
        opacity: 0.8;
    }
    30% {
        opacity: 0.6;
        filter: brightness(0.8);
    }
    35% {
        opacity: 0;
    }
    38% {
        opacity: 0.4;
    }
    45% {
        opacity: 1;
        filter: brightness(1.5);
    }
    50% {
        opacity: 0;
    }
    55% {
        opacity: 1;
    }
    60% {
        opacity: 0.7;
        filter: brightness(0.7);
    }
    65% {
        opacity: 0.2;
    }
    75% {
        opacity: 0;
        filter: brightness(2);
    }
    80% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.5;
        filter: brightness(0.9);
    }
    95% {
        opacity: 0;
    }
}

/*-------------------- Desktop - Secend Box ---------------------*/

.d_logo_name_box2{
    position: fixed;
    width: 100vw;
    height: 10vh;
    top: 15vh;
    left: -30vw;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 49.5% 2px 49.5%;
    column-gap: 1%;
    align-items: center;
    justify-content: center;
}

.d_logo_name_box2_span{
    height: 60%;
    width: 100%;
    background: #1AF9F8;
    border-radius: 3px;
}

.d_logo2{
    position: relative;
    height: 100%;
    width: 10vh;
    left: 10%;
    background-color: #1AF9F8;
    -webkit-mask: url(/pic/Cars/Ghost/logoWhite.svg) no-repeat center;
    mask: url(/pic/Cars/Ghost/logoWhite.svg) no-repeat center;
    mask-size: 100%;
}

.d_name2{
    position: relative;
    color: #1AF9F8;
    display: flex;
    left: 70%;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 2.5em;
}

.d_media_Box{
    position: fixed;
    width: 60%;
    height: 65%;
    left: 20%;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 33.3% 33.3% 33.3%;
}

.d_box1{
    margin: 5%;
    background: url(/pic//Cars/Ghost/box1.jpg);
    background-size: 120%;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 2em;
    border: 2px solid #1AF9F8;
    box-shadow: 10px 10px 30px #1AF9F850;
    box-sizing: border-box;
}
.d_box2{
    margin: 5%;
    background: url(/pic//Cars/Ghost/box2.jpg);
    background-size: 120%;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 2em;
    border: 2px solid #1AF9F8;
    box-shadow: 10px 10px 30px #1AF9F850;
    box-sizing: border-box;
}
.d_box3{
    margin: 5%;
    background: url(/pic//Cars/Ghost/box3.jpg);
    background-size: 120%;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 2em;
    border: 2px solid #1AF9F8;
    box-shadow: 10px 10px 30px #1AF9F850;
    box-sizing: border-box;
}



/*-------------------- Desktop - Info ---------------------*/


.d_car_info{
    position: fixed;
    width: 50vw;
    height: 60vh;
    top: 20%;
    left: 35vw;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 20% 80%;
    opacity: 0;
}

.d_logo_name_box3{
    height: 100%;
    width: 100%;
    direction: rtl;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 10% 3px 90%;
    align-items: center;
}

.d_logo3{
    position: relative;
    height: 100%;
    width: 10vh;
    left: 10%;
    background-color: #fff;
    -webkit-mask: url(/pic/Cars/Ghost/logoWhite.svg) no-repeat center;
    mask: url(/pic/Cars/Ghost/logoWhite.svg) no-repeat center;
    mask-size: 90%;
}

.d_logo_name_box3_span{
    height: 60%;
    width: 100%;
    background: #fff;
    border-radius: 3px;
}

.d_name3{
    position: relative;
    color: #fff;
    display: flex;
    right: 2%;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 2.5em;
}

.d_info_text{
    direction: rtl;
    color: #fff;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 1.3em;
    line-height: 1.8em;
    margin-left: 3%;
    box-sizing: border-box;
}



/*-------------------- Desktop - 3D ---------------------*/

.d_3d_box{
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/pic/Cars/Ghost/ghostbg.jpg);
    background-size: 100%;
    background-position: 50% 80%;
    background-repeat: no-repeat;
    z-index: 1;
}


.d_quicklinks{
    position: absolute;
    top: 30%;
    width: 60%;
    height: 10vh;
    direction: rtl;
    display: grid;
    grid-template-rows: 100% 100%;
    grid-template-columns: 25% 25% 25% 25%;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-size: 2em;
    z-index: 3;
}

.d_quicklinks a{
    color: #036363;
    transition: 0.3s ease-in-out;
}
.d_quicklinks a:visited{
    color: #036363;
}
.d_quicklinks a:hover{
    color: #1AF9F8;
}



.d_3d_Rotate{
    position: absolute;
    width: 70%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: url(/pic/Cars/Ghost/Rotate.png);
    background-size: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    z-index: 1;
}

.d_3d_iframe{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 40%;
    max-width: 100%;
    max-height: 100%;
    border: none;
    z-index: 2;
}

.d_3d_Rotate_blink{
    animation: blinker 5s;
}

@keyframes blinker{
    0%{
        opacity: 1;
    }
    20%{
        opacity: 0;
    }
    40%{
        opacity: 1;
    }
    60%{
        opacity: 0;
    }
    80%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.d_social{
    position: absolute;
    width: 12%;
    height: 7vh;
    bottom: 5vh;
    gap: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.d_social a{
    opacity: 0.5;
    transition: 0.3s ease-in-out;
}
.d_social a:hover{
    opacity: 1;
}





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

@media (max-width: 768px) {


    #mobile{
        display:block;
        height: 400vh;
    }

    #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, #036363);
        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_holder.active{
        z-index: 0;
        opacity: 0%;
    }

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

    .m_nav_logo.active{
        z-index: 0;
        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 - 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: #1AF9F8;
        font-family: "Cairo", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 0.8em;
        letter-spacing: 1px;
        transition: .4s ease;
    }

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

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

    .m_ball1{
        position: absolute;
        width: 70vw;
        height: 80vw;
        left: -50vw;
        background: #1AF9F8;
        filter: blur(250px);
        animation: mBall 4s infinite linear alternate;
    }
    .m_ball2{
        position: absolute;
        width: 60vw;
        height: 70vw;
        top: 90vh;
        right: -50vw;
        background: #1AF9F8;
        filter: blur(220px);
        animation: mBall2 4s infinite linear alternate;
    }
    .m_ball3{
        position: absolute;
        width: 70vw;
        height: 80vw;
        top: 150vh;
        left: -50vw;
        background: #1AF9F8;
        filter: blur(250px);
        animation: mBall 4s infinite linear alternate;
    }

    .m_ball4{
        position: absolute;
        width: 60vw;
        height: 70vw;
        top: 230vh;
        right: -50vw;
        background: #1AF9F8;
        filter: blur(220px);
        animation: mBall2 4s infinite linear alternate;
    }

@keyframes mBall {
    0%{
        transform: translateY(-10vh);
    }
    100%{
        transform: translateY(100vh);
    }
}
@keyframes mBall2 {
    0%{
        transform: translateY(10vh);
    }
    100%{
        transform: translateY(-100vh);
    }
}


/*-------------------- Mobile - First Box ---------------------*/


.m_logo_name_box{
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 20% 45% 15%;
    justify-items: center;
    align-items: center;
    transition: all 0.3s ease;
    will-change: opacity, transform, background-color, color;
}

.m_logo1{
    height: 100%;
    opacity: .8;
    filter: drop-shadow(0 0 100px #1AF9F880);
    animation: logoShadow 4s linear alternate ;
}


.m_name1 {
    color: #1AF9F870;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 2.8em;
    position: relative;
    animation: glitch 3s linear;
}

/*-------------------- Mobile - Slider Box ---------------------*/


.m_slider_box{
    position: fixed;
    width: 90vw;
    height: 84vh;
    left: 5vw;
    top: 11vh;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 12% 88%;
    align-items: center;
    justify-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    will-change: opacity, transform, background-color, color;
}

.m_logo_name_box2{
    position: relative;
    width: 60%;
    height: 10vh;
    right: -10vw;
    direction: rtl;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 25% 2px 49.5%;
    column-gap: 2%;
    align-items: center;    
}

.m_logo_name_box2_span{
    position: relative;
    height: 50%;
    width: 100%;
    background: #1AF9F8;
    border-radius: 3px;
    transition: all 0.3s ease;
    will-change: opacity, transform, background-color, color;
}

.m_logo2{
    position: relative;
    height: 100%;
    width: 8vh;
    background-color: #1AF9F8;
    -webkit-mask: url(/pic/Cars/Ghost/logoWhite.svg) no-repeat center;
    mask: url(/pic/Cars/Ghost/logoWhite.svg) no-repeat center;
    mask-size: 100%;
    transition: all 0.3s ease;
    will-change: opacity, transform, background-color, color;
}

.m_name2{
    position: relative;
    margin-right: 2vw;
    color: #1AF9F8;
    display: flex;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 2.5em;
    transition: all 0.3s ease;
    will-change: opacity, transform, background-color, color;
}

.m_slider{
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: 95% 5%;
    grid-template-columns: 100%;
    justify-items: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

.m_slider_content{
    width: 90%;
    height: 90%;
    margin: 5%;
    background: url(/pic/Cars/Ghost/box3.jpg);
    background-size: 145%;
    background-repeat: no-repeat;
    background-position: 50%;
    border: 2px solid #1AF9F8;
    border-radius: 2em;
    transition: opacity 0.3s ease-in-out;
}

.m_slider_spans{
    width: 80vw;
    height: 0.5vh;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 30% 5% 30% 5% 30%;
    overflow: hidden;
    border-radius: 1vh;
}

.m_slider_span_1{
    width: 100%;
    height: 0.5vh;
    border-radius: 1vh;
    background: #1AF9F8;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.m_slider_span_2{
    width: 100%;
    height: 0.5vh;
    border-radius: 1vh;
    background: #1AF9F8;
    opacity: 0.3;
    transition: opacity 0.3s ease-in-out;
}

.m_slider_span_3{
    width: 100%;
    height: 0.5vh;
    border-radius: 1vh;
    background: #1AF9F8;
    opacity: 0.3;
    transition: opacity 0.3s ease-in-out;
}

/*-------------------- Mobile - Info Box ---------------------*/

.m_info{
    position: fixed;
    width: 90vw;
    height: 84vh;
    direction: rtl;
    left: 5vw;
    top: 11vh;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 12% 88%;
    align-items: center;
    background: #00000050;
    border-radius: 1.5em;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    will-change: opacity, transform, background-color, color;
}

.m_info::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 2px solid transparent;
    background: var(--theme-background, linear-gradient(to bottom, #1AF9F8, #ffffff00, #1AF9F8) border-box);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.m_underline{
    height: 100%;
    border-image: linear-gradient(to right, #ffffff00, #ffffff, #ffffff00) 1;
    border-bottom: 2px solid;
}

.m_info_box{
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: 85% 15%;
    grid-template-columns: 100%;
    justify-items: center;
    align-items: center;
}
.m_info_text{
    margin: 5%;
    color: #fff;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-size: 1.07em;
    line-height: 1.7em;
}
/*-------------------- Mobile - 3D Box ---------------------*/

.m_3d_box{
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    top: 300vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/pic/Cars/Ghost/ghostbgM.jpg);
    background-size: 120%;
    background-position: 50%;
    background-repeat: no-repeat;
    z-index: 1;
}


.m_quicklinks{
    position: absolute;
    direction: rtl;
    top: 30%;
    width: 90%;
    height: 10vh;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 25% 25% 25% 25%;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-size: 1.1em;
    z-index: 3;
}

.m_quicklinks a{
    color: #fff;
    transition: 0.3s ease-in-out;
}
.m_quicklinks a:visited{
    color: #fff;
}



.m_3d_Rotate{
    position: absolute;
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: url(/pic/Cars/Ghost/Rotate.png);
    background-size: 110%;
    background-position: 50% 55%;
    background-repeat: no-repeat;
    z-index: 1;
}

.m_3d_iframe{
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 40%;
    max-width: 100%;
    max-height: 100%;
    border: none;
    z-index: 2;
}

.m_3d_Rotate_blink{
    animation: blinker 5s;
}

.m_social{
    position: absolute;
    width: 100%;
    height: 10vh;
    bottom: 20%;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 27.5% 15% 15% 15% 27.5%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.m_social img{
    width: 2.5em;
    border: none;
}








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