
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

@font-face{
    font-family: iranSanss;
    src: url('./IRANSans/fonts/woff/IRANSansWeb_Bold.woff');
}

::-webkit-scrollbar{
  width: 10px;
}
::-webkit-scrollbar-track{
  background-color: #303030;
}
::-webkit-scrollbar-thumb{
  background-color: #737270;
  border-radius: 10px;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{


  width: 100%;
  height: 100vh;
}



body,
button {
font-family: iranSanss;
src: url('./IRANSans/fonts/woff/IRANSansWeb_Bold.woff');
}




.container {
min-height: 100vh;
width: 100%;
transform-style: preserve-3d;
}



.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 10;
height: 3rem;
}

.menu {
      border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    background: linear-gradient(120deg,#1b202e1f, #0e0e0e08 100%);
max-width: 60rem;
width: 100%;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
color: #fff;
}

.logo {
  
font-size: 1.1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
line-height: 4rem;
}

.logo span {
font-weight: 300;
}

.hamburger-menu {
  margin-right: 20px;
height: 4rem;
width: 3rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: flex-end;
}

.bar {
width: 1.9rem;
height: 1.5px;
border-radius: 2px;
background-color: black;
transition: 0.5s;
position: relative;
}

.bar:before,
.bar:after {
content: "";
position: absolute;
width: inherit;
height: inherit;
background-color: rgb(0, 0, 0);
transition: 0.5s;
}

.bar:before {
transform: translateY(-9px);
}

.bar:after {
transform: translateY(9px);
}

.main {
position: relative;
width: 100%;
left: 0;
z-index: 5;
overflow: hidden;
transform-origin: left;
transform-style: preserve-3d;
transition: 0.5s;
}

header {
min-height: 100vh;
width: 100%;
position: relative;
}

.overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(43, 51, 59, 0.8);
display: flex;
justify-content: center;
align-items: center;
}

.inner {
max-width: 35rem;
text-align: center;
color: #fff;
padding: 0 2rem;
}

.title {
font-size: 2.7rem;
}

.btn {
margin-top: 1rem;
padding: 0.6rem 1.8rem;
background-color: #1179e7;
border: none;
border-radius: 25px;
color: #fff;
text-transform: uppercase;
cursor: pointer;
text-decoration: none;
}

.container.active .bar {
transform: rotate(360deg);
background-color: transparent;
}

.container.active .bar:before {
transform: translateY(0) rotate(45deg);
}

.container.active .bar:after {
transform: translateY(0) rotate(-45deg);
}

.container.active .main {
animation: main-animation 0.5s ease;
cursor: pointer;
transform: perspective(1300px) rotateY(20deg) translateZ(310px) scale(0.5);
}

@keyframes main-animation {
from {
transform: translate(0);
}

to {
transform: perspective(1300px) rotateY(20deg) translateZ(310px) scale(0.5);
}
}

.links {
position: absolute;
width: 30%;
right: 0;
top: 0;
height: 100vh;
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
}

ul {
list-style: none;
}

.links a {
text-decoration: none;
color: #bebdbd;
padding: 0.7rem 0;
display: inline-block;
font-size: 1rem;
font-weight: 300;
text-transform: uppercase;
letter-spacing: 1px;
transition: 0.3s;
opacity: 0;
transform: translateY(10px);
animation: hide 0.5s forwards ease;
}

.links a:hover {
color: #fff;
}

.container.active .links a {
animation: appear 0.5s forwards ease var(--i);
}

@keyframes appear {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0px);
}
}

@keyframes hide {
from {
opacity: 1;
transform: translateY(0px);
}
to {
opacity: 0;
transform: translateY(10px);
}
}

.shadow {
position: absolute;
width: 100%;
height: 100vh;
top: 0;
left: 0;
transform-style: preserve-3d;
transform-origin: left;
transition: 0.5s;
background-color: white;
}

.shadow.one {
z-index: -1;
opacity: 0.15;
}

.shadow.two {
z-index: -2;
opacity: 0.1;
}

.container.active .shadow.one {
animation: shadow-one 0.6s ease-out;
transform: perspective(1300px) rotateY(20deg) translateZ(215px) scale(0.5);
}

@keyframes shadow-one {
0% {
transform: translate(0);
}

5% {
transform: perspective(1300px) rotateY(20deg) translateZ(310px) scale(0.5);
}

100% {
transform: perspective(1300px) rotateY(20deg) translateZ(215px) scale(0.5);
}
}

.container.active .shadow.two {
animation: shadow-two 0.6s ease-out;
transform: perspective(1300px) rotateY(20deg) translateZ(120px) scale(0.5);
}

@keyframes shadow-two {
0% {
transform: translate(0);
}

20% {
transform: perspective(1300px) rotateY(20deg) translateZ(310px) scale(0.5);
}

100% {
transform: perspective(1300px) rotateY(20deg) translateZ(120px) scale(0.5);
}
}

.container.active .main:hover + .shadow.one {
transform: perspective(1300px) rotateY(20deg) translateZ(230px) scale(0.5);
}

.container.active .main:hover {
transform: perspective(1300px) rotateY(20deg) translateZ(340px) scale(0.5);
}

.slider-one,
.slider-two,
.slider-three,
.slider-four {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
animation: slider-one 12s linear infinite;
}
.slider-one .slider-one-image,
.slider-one .slider-two-image,
.slider-one .slider-three-image,
.slider-one .slider-four-image,
.slider-two .slider-one-image,
.slider-two .slider-two-image,
.slider-two .slider-three-image,
.slider-two .slider-four-image,
.slider-three .slider-one-image,
.slider-three .slider-two-image,
.slider-three .slider-three-image,
.slider-three .slider-four-image,
.slider-four .slider-one-image,
.slider-four .slider-two-image,
.slider-four .slider-three-image,
.slider-four .slider-four-image {
width: 110%;
height: 100%;
background-image: url("./image/pexels-photo-1413412.webp");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
animation: zoom-out 3s linear infinite;
}
.slider-one .slider-one-image .slider-text,
.slider-one .slider-two-image .slider-text,
.slider-one .slider-three-image .slider-text,
.slider-one .slider-four-image .slider-text,
.slider-two .slider-one-image .slider-text,
.slider-two .slider-two-image .slider-text,
.slider-two .slider-three-image .slider-text,
.slider-two .slider-four-image .slider-text,
.slider-three .slider-one-image .slider-text,
.slider-three .slider-two-image .slider-text,
.slider-three .slider-three-image .slider-text,
.slider-three .slider-four-image .slider-text,
.slider-four .slider-one-image .slider-text,
.slider-four .slider-two-image .slider-text,
.slider-four .slider-three-image .slider-text,
.slider-four .slider-four-image .slider-text {
position: absolute;
top: 40%;
left: 22%;
color: #ffffff;
width: 800px;
text-transform: capitalize;
animation: text-up 12s linear infinite;
transform: translateY(100px);
animation-delay: 0s;
}
.slider-one .slider-one-image .slider-text h1,
.slider-one .slider-two-image .slider-text h1,
.slider-one .slider-three-image .slider-text h1,
.slider-one .slider-four-image .slider-text h1,
.slider-two .slider-one-image .slider-text h1,
.slider-two .slider-two-image .slider-text h1,
.slider-two .slider-three-image .slider-text h1,
.slider-two .slider-four-image .slider-text h1,
.slider-three .slider-one-image .slider-text h1,
.slider-three .slider-two-image .slider-text h1,
.slider-three .slider-three-image .slider-text h1,
.slider-three .slider-four-image .slider-text h1,
.slider-four .slider-one-image .slider-text h1,
.slider-four .slider-two-image .slider-text h1,
.slider-four .slider-three-image .slider-text h1,
.slider-four .slider-four-image .slider-text h1 {
font-size: 1.5rem;
margin-bottom: 20px;
color: #d8d8d8e3;
width: 600px;
}
.slider-one .slider-one-image .slider-text p,
.slider-one .slider-two-image .slider-text p,
.slider-one .slider-three-image .slider-text p,
.slider-one .slider-four-image .slider-text p,
.slider-two .slider-one-image .slider-text p,
.slider-two .slider-two-image .slider-text p,
.slider-two .slider-three-image .slider-text p,
.slider-two .slider-four-image .slider-text p,
.slider-three .slider-one-image .slider-text p,
.slider-three .slider-two-image .slider-text p,
.slider-three .slider-three-image .slider-text p,
.slider-three .slider-four-image .slider-text p,
.slider-four .slider-one-image .slider-text p,
.slider-four .slider-two-image .slider-text p,
.slider-four .slider-three-image .slider-text p,
.slider-four .slider-four-image .slider-text p {
font-size: 18px;
line-height: 28px;
color: #fffffff3;
}

.slider-two {
animation: slider-two 12s linear infinite;
}
.slider-two .slider-two-image {
background-image: url("./image/201.jpg");
}
.slider-two .slider-two-image .slider-text {
animation-delay: 3s;
}

.slider-three {
animation: slider-three 12s linear infinite;
}
.slider-three .slider-three-image {
background-image: url("./image/collision-hero-2880w.webp");
}
.slider-three .slider-three-image .slider-text {
animation-delay: 6s;
}

.slider-four {
animation: slider-four 12s linear infinite;
}
.slider-four .slider-four-image {
background-image: url("./image/202.jpg");
}
.slider-four .slider-four-image .slider-text {
animation-delay: 9s;
}

@keyframes text-up {
10% {
transform: translateY(0px);
}
100% {
transform: translateY(0px);
}
}
@keyframes zoom-out {
100% {
width: 100%;
}
}
@keyframes slider-one {
0% {
visibility: visible;
}
25% {
visibility: hidden;
}
50% {
visibility: hidden;
}
75% {
visibility: hidden;
}
100% {
visibility: visible;
}
}
@keyframes slider-two {
0% {
visibility: hidden;
}
25% {
visibility: hidden;
}
50% {
visibility: visible;
}
75% {
visibility: hidden;
}
100% {
visibility: hidden;
}
}
@keyframes slider-three {
0% {
visibility: hidden;
}
25% {
visibility: hidden;
}
50% {
visibility: hidden;
}
75% {
visibility: visible;
}
100% {
visibility: hidden;
}
}
@keyframes slider-four {
0% {
visibility: hidden;
}
25% {
visibility: hidden;
}
50% {
visibility: hidden;
}
75% {
visibility: hidden;
}
100% {
visibility: visible;
}
}
/* ////////////////////////////// */
/* ////////////////////////////// */


.S{
  margin-left: -650px;
  font-size: 19px;
  width: 150px;
  color: black;
}
#is {
  width: 150px;
  height: 60px;
  margin-left: 0px;
  position: relative;
  left: -310px;
}

/* //////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////// */




/*////////////////////////////////////// */
hr{
  width: 80%;
  margin-top: 25px;
  margin-right: 150px;
}
#services{
  width: 100%;
  height: 968px;
  background-image: url("./image/imgbin_car-poster-automotive-design-png.png");
  background-size: cover;
}
.services0{
  width: 100%;
  height: 968px;
  background-image: url("./1imgbin_car-poster-automotive-design-png.png");
  background-size: cover;
}

.row{
  padding-top: 70px;
  margin-right: 27%;
  width: 45%;
  height: 110px;
  text-align: center;

}
.section-heading{
  font-weight: 400;
  font-size: 40px;
}
.section-subheading{
  font-size: 11px;
}
.text-center0{
  padding-top: 120px;
  display: flex;
  text-align: center;
}
.text-center0 h4{
  font-size: 25px;
}
.text-center0 p{
  font-size: 17px;
}
.col-md-4:first-child{
  margin-right:10% ;
}
.service-heading{
  padding-bottom: 15px;
}
.col-md-4{
  width: 25%;
  height: 150px;
  margin-left: 2%;
}
.logoB{
  margin-top: -450px;
  margin-right: 840px;
  margin-bottom: 250px;
  width: 33%;
  padding: 20px 50px;
  height: 200px;
}
.imgLogo{
  margin-left: 20px;
  width: 80px;
  height: 80px;
  border-radius: 100%;
}

/* /////////////////////////////////////////// */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");


.Simg {
  
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}


h2 {
  font-size: clamp(1rem, 0.8750rem + 0.6250vw, 1.5rem);
  line-height: 1.3;
  font-weight: 700;
}
.h5 h2{
font-size: 14px;}

.Ds{
  width: 100%;
  height: 1510px;

  background-image: url('./image/214.jpeg');
  background-size: cover;
  position: absolute;

}
#SI {
  margin-right: 140px;
  display: grid;
  grid-template-columns: 25% 30% 15% 25%;
  gap: 15px;
  margin-top: -60px !important;

  place-content: center;
  grid-template-rows: 50% 50%;
  width: 80%;
  height: 500px;
  min-height: 460px;
  padding: max(2vh, 1.5rem);
  margin-top: 350px;
}
@media screen and (max-width: 690px) {
  section {
    height: 65vh;
  }
}
@media screen and (max-width: 470px) {
  section {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 35%);
  }
}
section .card {
  border-radius: 25px;
  box-shadow: -2px 4px 15px rgba(0, 0, 0, 0.26);
}
@media screen and (max-width: 470px) {
  section .card {
    grid-column: span 1;
  }
}
section .card:nth-child(2) {
  grid-column: 2/3;
  grid-row: span 2;
}
@media screen and (max-width: 690px) {
  section .card:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
  }
}
section .card:nth-child(3) {
  grid-column: span 2;
}
@media screen and (max-width: 690px) {
  section .card:nth-child(3) {
    grid-column: 2/4;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 690px) {
  section .card:nth-child(6) {
    grid-column: 2/4;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 470px) {
  section .card:nth-child(5) {
    grid-column: span 2;
  }
}
section .card p {
  font-size: clamp(0.9rem, 0.8750rem + 0.1250vw, 1rem);
  line-height: 1.4;
}
section .card img {
  border-radius: 25px;
}
section .card .card__img {
  position: relative;
  height: 100%;
}
section .card .card__img .card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  color: #fff;
  padding: clamp(0.938rem,5vw,1.563rem);
  background: #02022e;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.57) 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 100%;
  border-radius: 25px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
section .card .card__img span {
  position: absolute;
  top: 25px;
  left: min(2vmax, 1.563rem);
  color: #ff7b29;
  background: #fff;
  border-radius: 50px;
  padding: 2px 8px 2px 6px;
  display: flex;
  box-shadow: 0px 1px 20px #0000002b;
}
@media screen and (max-width: 690px) {
  section .card .card__img span {
    top: 20px;
  }
}
@media screen and (max-width: 470px) {
  section .card .card__img span {
    top: 15px;
  }
}
section .card .card__img span svg {
  fill: #ff7b29;
  width: 20px;
  margin-right: 2px;
}

/* ////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////// */


.main1 {
  width:100%;
  height:450px;
  padding-top: 100px;
  position:relative;
	overflow:hidden;
}
  
#prev, #next {
	background:white;
	padding:2px 5px;
	font-weight:200;
	font-size:15px;
	cursor:pointer;
	margin:0 0.5em;
	width:fit-content;
	position:absolute;
	top:0;
  left:0;
  transform:transl
}

#prev {
	left:20px;
}
#next {
	left:90px;
}

#carousel-container {
	width:100%;
	height:100%;
	display: flex;
	flex-flow:column nowrap;
}
#carousel-content {
	height:100%;
}
#carousel-dots {
	position: absolute;
	bottom:150px;
}
#carousel-content, #carousel-dots {
  margin-top: -40px;
  padding-left: 75px;
	width:100%;
	display:flex;
	justify-content:center;
	align-items:center;
}
.Ca,.Cb,.Cc,.Cd,.Ce,.Cf{
  color: rgb(38, 38, 38);
  width: 90%;
  height: 90%;
  padding: 24px 8px;
  border-radius: 25px;
  font-size: 14px;
  text-align: justify;
  font-weight: 900;
}
#span{
 font-size: 19px;
}

.card1 {
	width:800px;
	height:300px;
  background-image: url('./image/111_cleanup.jpg');
  background-size: cover;
	margin:0 1em;
	display:flex;
	justify-content:center;
	align-items:center;
	transition:0.8s ease-in;
	opacity: 0;
	border-radius:7px;
  box-shadow: 0px 0px 45px 5px rgba(0,0,0,0.3);
}

.hidden {
	display:none;
}
.left {
  position: absolute;
  transform-origin: center; 
  animation: card-out 0.6s cubic-bezier(.8,.2,.1,0.8);
  transform: translateX(-30%) scale(0.85);  
  opacity: 1 !important;
  z-index: 0;
 }

.selected {
  transform-origin: center;
  animation: card-in 0.6s cubic-bezier(.8,.2,.1,0.8);
  transform: translateX(0%);
  opacity: 1 !important;
  z-index: 1;
}

.right {
  position: absolute;
  transform-origin: center; 
  animation: new-card 0.6s cubic-bezier(.8,.2,.1,0.8);
  transform: translateX(22%) scale(0.85);  
  opacity: 1 !important;
  z-index: 0;
}

.dot {
  width:10px;
  height:10px;
  background-color:rgb(200,200,200);
  border-radius:50%;
  margin:0 0.5rem;
  cursor:pointer;
}

.active-dot {
	transform: scale(1.2);
	background-color:rgb(120,120,120);
}

@keyframes card-in {
  0% { z-index: 1; }
  50% { transform: translateX(30%); }
  80% { z-index: 20; transform: translateX(0px); }
  100% { transform: translateX(0%); }
}

@keyframes card-out {
  0% { z-index: 20; transform: translateX(0px);}
  50% { transform: translateX(-30%);}
  80% { z-index: 1; }
  100% { transform: translateX(-30%) scale(0.85);}
}

@keyframes new-card {
  from { 
    transform: translateX(0%) scale(0.5);
  } to {
    transform: translateX(22%) scale(0.85);
  }
}


/* //////////////////// */
@import url(https://pro.fontawesome.com/releases/v5.11.2/css/all.css);
:root {
  --user-button-circle: rgba(0,0,0,0.025);
  --user-button-cardborder: rgba(255,255,255,0.25);
  --user-button-text:#323133;
  --user-button-shadow:rgba(0,0,0,0.1);
}

.DivN #user-button {
  z-index: 1000;
  bottom: 1rem !important;
  right: 1rem !important;
  color: var(--user-button-text);
  transition: 1s 0s ease-out;
  -webkit-animation: slide 3s ease-out forwards;
          animation: slide 3s ease-out forwards;
}
@-webkit-keyframes slide {
  0%, 50% {
    opacity: 0;
    display: block !important;
  }
  100% {
    opacity: 1;
    display: block !important;
  }
}
@keyframes slide {
  0%, 50% {
    opacity: 0;
    display: block !important;
  }
  100% {
    opacity: 1;
    display: block !important;
  }
}
.DivN #user-button .u-card {
  border-radius: 100%;
  box-shadow: 0 0 1rem -0.25rem var(--user-button-shadow), inset 0 0 1rem -0.75rem var(--user-button-shadow);
}
.DivN #user-button .u-main {
  cursor: pointer;
  --user-button-background:var(--user-button-main, #EC87C0);
}
.DivN #user-button .u-main img {
  height: 100%;
  width: 100%;
}
.DivN #user-button .u-main iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  opacity: 1;
  transition: 0s 4s;
}
.DivN #user-button .u-icons {
  position: relative;
  z-index: 950;
  transform: translate(-50%, -50%);
  background: var(--user-button-circle);
  box-shadow: 0 0 0 0.125rem var(--user-button-cardborder);
  border-radius: 100%;
  transition: 0.25s;
  opacity: 1 !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);

}
.DivN #user-button .u-icons a {
  color: inherit;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
}
.DivN #user-button .u-icons a div {
  padding: 0.5rem;
  transition: 0s;
}
.DivN #user-button .u-icons a[href="https://twitter.com/zed_dash"] {
  position: relative;
}
.DivN #user-button .u-icons a[href="https://twitter.com/zed_dash"]:before {
  content: "Middle Click";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  white-space: pre;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease-in;
  background: #fffc;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.DivN #user-button .u-icons a[href="https://twitter.com/zed_dash"].show:before {
  opacity: 1;
  transition: 0.25s ease-out;
}
.DivN #user-button .u-icons a[href="https://twitter.com/zed_dash"] div {
  color: #1da1f2;
}
.DivN #user-button .u-icons a[href="https://codepen.io/z-"] div {
  background: black;
  color: white;
}
.DivN #user-button .u-icons a.u-random div {
  position: relative;
  top: -1px;
  -webkit-animation: diespin 2s linear infinite;
          animation: diespin 2s linear infinite;
}
@-webkit-keyframes diespin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes diespin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.DivN #user-button .u-icons a.u-random:not(:hover) div {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.DivN #user-button .u-icons > * {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--singlecolour);
  border-radius: 100%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: 0.25s -0.05s;
}
.DivN #user-button .u-icons > *:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.DivN #user-button .u-icons > *:hover, .DivN #user-button .u-icons > *:focus-within {
  background: var(--hcolour);
}
.DivN #user-button .u-icons > *:first-child:nth-last-child(1):nth-child(1), .DivN #user-button .u-icons > *:first-child:nth-last-child(1) ~ *:nth-child(1) {
  left: 25%;
  top: 25%;
}
.DivN #user-button .u-icons > *:first-child:nth-last-child(2):nth-child(1), .DivN #user-button .u-icons > *:first-child:nth-last-child(2) ~ *:nth-child(1) {
  left: 37.5%;
  top: 18.75%;
}
.DivN #user-button .u-icons > *:first-child:nth-last-child(2):nth-child(2), .DivN #user-button .u-icons > *:first-child:nth-last-child(2) ~ *:nth-child(2) {
  left: 18.75%;
  top: 37.5%;
}
.DivN #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(1), .DivN #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(1) {
  left: 50%;
  top: 15.625%;
}
.DivN #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(2), .DivN #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(2) {
  left: 25%;
  top: 25%;
}
.DivN #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(3), .DivN #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(3) {
  left: 15.625%;
  top: 50%;
}
.DivN #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(1), .DivN #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(1) {
  left: 62.5%;
  top: 18.75%;
}
.DivN #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(2), .DivN #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(2) {
  left: 37.5%;
  top: 18.75%;
}
.DivN #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(3), .DivN #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(3) {
  left: 18.75%;
  top: 37.5%;
}
.DivN #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(4), .DivN #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(4) {
  left: 18.75%;
  top: 62.5%;
}
.DivN #user-button:hover .u-icons, .DivN #user-button:focus-within .u-icons {
  width: 300% !important;
  height: 300% !important;
}

.DivN {
  margin-top: -40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 500px;
  font-family: "Roboto", sans-serif;
  transition: 0.25s;
}
/* .DivN.dark {
  color: white;
} */
/* @media (prefers-color-scheme: dark) {
  .DivN:not(.light) {
    background: #232223;
    color: white;
  }
} */
.DivN .credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: inherit;
}
.DivN .options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-width: 600px;
  max-width: 900px;
  width: calc(100% - 100px);
  height: 400px;
}
 
.DivN .options .option {
  position: relative;
  overflow: hidden;
  min-width: 60px;
  margin: 10px;
  background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
  background-size: auto 120%;
  background-position: center;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.DivN .options .option:nth-child(1) {
  --defaultBackground:#ED5565;
}
.DivN .options .option:nth-child(2) {
  --defaultBackground:#FC6E51;
}
.DivN .options .option:nth-child(3) {
  --defaultBackground:#FFCE54;
}
.DivN .options .option:nth-child(4) {
  --defaultBackground:#2ECC71;
}
.DivN .options .option:nth-child(5) {
  --defaultBackground:#5D9CEC;
}
.DivN .options .option:nth-child(6) {
  --defaultBackground:#AC92EC;
}
.DivN .options .option.active {
  flex-grow: 10000;
  transform: scale(1);
  max-width: 600px;
  margin: 0px;
  border-radius: 40px;
  background-size: auto 100%;
}
.DivN .options .option.active .shadow {
  box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}
.DivN .options .option.active .label {
  bottom: 20px;
  left: 20px;
}
.DivN .options .option.active .label .info > div {
  left: 0px;
  opacity: 1;
}
.DivN .options .option:not(.active) {
  flex-grow: 1;
  border-radius: 30px;
}
.DivN .options .option:not(.active) .shadowN {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}
.DivN .options .option:not(.active) .label {
  bottom: 10px;
  left: 10px;
}
.DivN .options .option:not(.active) .label .info > div {
  left: 20px;
  opacity: 0;
}
.DivN .options .option .shadowN {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.DivN .options .option .label {
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.DivN .options .option .label .iconN {
  margin-right: 9px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  color: var(--defaultBackground);
}
.DivN .options .option .label .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  color: white;
  white-space: pre;
}
.DivN .options .option .label .info > div {
  position: relative;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}
.DivN .options .option .label .info .mainN {
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 5px;
}
.DivN .options .option .label .info .sub {
  transition-delay: 0.1s;
}
/* ///////////////////////////////////// */
.footer {
  position: relative;
  width: 100%;
  background: #1b2129;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menuF {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("https://i.ibb.co/wQZVxxk/wave.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}



/* //////// */
/* animation first */

#first{
  z-index: 1;
	position: relative;
	
}

#first .box{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items:center;	
}

.box{
	width: 80%; height: 480px;
	position: relative;
  margin-top: 160px;
  margin-right: 6.5%;
}
.box:after, .box:before{
	mix-blend-mode:multiply;
	filter:none;
	z-index: -1;
	content:'';
	width:calc(100% + (50px * 2));
	height:calc(100% + (50px * 2));
	position: absolute;
	display: block;
	animation: border 10s ease-in-out infinite;
	transform:translateX(-50px) translateY(-50px);
}
@keyframes border {
  0%, 100% {
    -webkit-clip-path: polygon(0 0, calc(100% - (33.3333333333px)) calc(0% + (33.3333333333px)), 100% 100%, calc(0% + (33.3333333333px)) calc(100% - (33.3333333333px)));
            clip-path: polygon(0 0, calc(100% - (33.3333333333px)) calc(0% + (33.3333333333px)), 100% 100%, calc(0% + (33.3333333333px)) calc(100% - (33.3333333333px)));
  }
  50% {
    -webkit-clip-path: polygon(calc(0% + (33.3333333333px)) calc(0% + (33.3333333333px)), 100% 0, calc(100% - (33.3333333333px)) calc(100% - (33.3333333333px)), 0 100%);
            clip-path: polygon(calc(0% + (33.3333333333px)) calc(0% + (33.3333333333px)), 100% 0, calc(100% - (33.3333333333px)) calc(100% - (33.3333333333px)), 0 100%);
  }
}

.box:after{
	animation-delay: -5s;
  border: 4px ridge #f2deb5;
	clip-path: polygon(0 0, calc(100% - (33.3333333333px)) calc(0% + (33.3333333333px)), 100% 100%, calc(0% + (33.3333333333px)) calc(100% - (33.3333333333px)));
}
.box:before {
  border: 4px ridge #DABA7A;

	  clip-path: polygon(calc(0% + (33.3333333333px)) calc(0% + (33.3333333333px)), 100% 0, calc(100% - (33.3333333333px)) calc(100% - (33.3333333333px)), 0 100%);
}



/* /////////////////////////////////////////// */
@media (min-width:1400px) and (max-width:1900px) {
  .Ds{
    width: 100%;
    height: 1510px;
    background-image: url('./image/214.jpeg');
    background-size: cover;
    position: fixed;
    top: 1940px;
  }
  .logoB{
    margin-top: -650px;
    margin-right: 1100px;
    margin-bottom: 350px;
    width: 25%;
    padding: 20px 50px;
    height: 200px;
  }
  #services{
    width: 100%;
    height: 1200px;
    background-image: url("./image/imgbin_car-poster-automotive-design-png.png");
    background-size: cover;
  }
  
  
}
@media (min-width:482px) and (max-width:768px) {
  .S{
    display: none;
  }
  .slider-one .slider-one-image .slider-text h1, .slider-one .slider-two-image .slider-text h1, .slider-one .slider-three-image .slider-text h1, .slider-one .slider-four-image .slider-text h1, .slider-two .slider-one-image .slider-text h1, .slider-two .slider-two-image .slider-text h1, .slider-two .slider-three-image .slider-text h1, .slider-two .slider-four-image .slider-text h1, .slider-three .slider-one-image .slider-text h1, .slider-three .slider-two-image .slider-text h1, .slider-three .slider-three-image .slider-text h1, .slider-three .slider-four-image .slider-text h1, .slider-four .slider-one-image .slider-text h1, .slider-four .slider-two-image .slider-text h1, .slider-four .slider-three-image .slider-text h1, .slider-four .slider-four-image .slider-text h1{
    font-size: 19px;
  }
  .slider-one .slider-one-image .slider-text p, .slider-one .slider-two-image .slider-text p, .slider-one .slider-three-image .slider-text p, .slider-one .slider-four-image .slider-text p, .slider-two .slider-one-image .slider-text p, .slider-two .slider-two-image .slider-text p, .slider-two .slider-three-image .slider-text p, .slider-two .slider-four-image .slider-text p, .slider-three .slider-one-image .slider-text p, .slider-three .slider-two-image .slider-text p, .slider-three .slider-three-image .slider-text p, .slider-three .slider-four-image .slider-text p, .slider-four .slider-one-image .slider-text p, .slider-four .slider-two-image .slider-text p, .slider-four .slider-three-image .slider-text p, .slider-four .slider-four-image .slider-text p{
    font-size: 16px;
  }
  .slider-one .slider-one-image .slider-text,
.slider-one .slider-two-image .slider-text,
.slider-one .slider-three-image .slider-text,
.slider-one .slider-four-image .slider-text,
.slider-two .slider-one-image .slider-text,
.slider-two .slider-two-image .slider-text,
.slider-two .slider-three-image .slider-text,
.slider-two .slider-four-image .slider-text,
.slider-three .slider-one-image .slider-text,
.slider-three .slider-two-image .slider-text,
.slider-three .slider-three-image .slider-text,
.slider-three .slider-four-image .slider-text,
.slider-four .slider-one-image .slider-text,
.slider-four .slider-two-image .slider-text,
.slider-four .slider-three-image .slider-text,
.slider-four .slider-four-image .slider-text {
position: absolute;
top: 40%;
left: 100px;
color: #ffffff;
width: 600px;
text-transform: capitalize;
animation: text-up 12s linear infinite;
transform: translateY(100px);
animation-delay: 0s;
}
hr{
  display: none;
  width: 0%;
  position: relative;
  top: 0px;  
  margin-right: 0px;
}
.text-center0 p {
  font-size: 12px;
}
.text-center0{
  padding-top: 120px;
  display: flex;
  text-align: none ;
}
.text-center0 .col-md-4 p{
  text-align: center ;
}
.text-center0 .col-md-4 h4{
  font-size: 17px;
}
#services{
  width: 100%;
  height: 668px;
  /* margin-top: 200px; */
  background-image: url("./1imgbin_car-poster-automotive-design-png.png");
  background-size: cover;
}
/* .containerT{
  position: relative;
  top: -180px;
} */
.logoB{
  margin-top: -300px;
  margin-right: 420px;
  margin-bottom: 100px;
  width: 43%;
  padding: 20px 50px;
  height: 200px;
}
.imgLogo{
  margin-left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.Ds{
  width: 100%;
  height: 1510px;
  background-image: url('./image/214.jpeg');
  background-size: cover;
  position: absolute;
}
.box{
	width: 80%; height: 400px;
	position: relative;
  margin-top: 25%;
  margin-right: 3%;
}
#SI {
  margin-top: 24%;
  margin-right: 15px;
  display: grid;
  grid-template-columns: 25% 30% 15% 25%;
  gap: 15px;
  place-content: center;
  grid-template-rows: 50% 50%;
  width: 95%;
  height: 500px;
  min-height: 460px;
  padding: max(2vh, 1.5rem);
}
section .card p{
  font-size: 9px;
}
section .card h2{
  font-size: 16px;
}
.main1 {
  width:100%;
  height:450px;
  padding-right: 50px;
  padding-top: 100px;
  position:relative;
	overflow:hidden;
}.Ca, .Cb, .Cc, .Cd, .Ce, .Cf{
  font-size: 11px;
}
.info{
  background-color: rgba(255,255,255,.3);
  border-radius: 50px;
  width: 400px;
}
.sub{
 
  font-size: 11px;
}
.DivN .options .option .label .info .mainN{
  font-size: 16px;
}
.footer .social-icon .social-icon__item .social-icon__link , .footer .menuF .menu__item .menu__link{
  font-size: 16px;
}.footer p{
  font-size: 14px;
}
}
@media(min-width:426px) and (max-width:481px) {
  .S{
    display: none;
    margin-left: -0px;
    font-size: 14px;
    width: 100px;
  }
  #is{
    width: 90px;
    height: 43px;
   
  }
  .slider-one .slider-one-image .slider-text,
.slider-one .slider-two-image .slider-text,
.slider-one .slider-three-image .slider-text,
.slider-one .slider-four-image .slider-text,
.slider-two .slider-one-image .slider-text,
.slider-two .slider-two-image .slider-text,
.slider-two .slider-three-image .slider-text,
.slider-two .slider-four-image .slider-text,
.slider-three .slider-one-image .slider-text,
.slider-three .slider-two-image .slider-text,
.slider-three .slider-three-image .slider-text,
.slider-three .slider-four-image .slider-text,
.slider-four .slider-one-image .slider-text,
.slider-four .slider-two-image .slider-text,
.slider-four .slider-three-image .slider-text,
.slider-four .slider-four-image .slider-text {
position: absolute;
top: 40%;
right: 15px;
color: #ffffff;
width: 400px;
text-transform: capitalize;
animation: text-up 12s linear infinite;
transform: translateY(100px);
animation-delay: 0s;
}
.slider-one .slider-one-image .slider-text h1,
.slider-one .slider-two-image .slider-text h1,
.slider-one .slider-three-image .slider-text h1,
.slider-one .slider-four-image .slider-text h1,
.slider-two .slider-one-image .slider-text h1,
.slider-two .slider-two-image .slider-text h1,
.slider-two .slider-three-image .slider-text h1,
.slider-two .slider-four-image .slider-text h1,
.slider-three .slider-one-image .slider-text h1,
.slider-three .slider-two-image .slider-text h1,
.slider-three .slider-three-image .slider-text h1,
.slider-three .slider-four-image .slider-text h1,
.slider-four .slider-one-image .slider-text h1,
.slider-four .slider-two-image .slider-text h1,
.slider-four .slider-three-image .slider-text h1,
.slider-four .slider-four-image .slider-text h1 {
font-size: 16px;
margin-bottom: 5px;
color: #d8d8d8e3;
width: 600px;
}
.slider-one .slider-one-image .slider-text p,
.slider-one .slider-two-image .slider-text p,
.slider-one .slider-three-image .slider-text p,
.slider-one .slider-four-image .slider-text p,
.slider-two .slider-one-image .slider-text p,
.slider-two .slider-two-image .slider-text p,
.slider-two .slider-three-image .slider-text p,
.slider-two .slider-four-image .slider-text p,
.slider-three .slider-one-image .slider-text p,
.slider-three .slider-two-image .slider-text p,
.slider-three .slider-three-image .slider-text p,
.slider-three .slider-four-image .slider-text p,
.slider-four .slider-one-image .slider-text p,
.slider-four .slider-two-image .slider-text p,
.slider-four .slider-three-image .slider-text p,
.slider-four .slider-four-image .slider-text p {
font-size: 11px;
line-height: 18px;
color: #fffffff3;
}
.links a{
  font-size: 13px;
}
.shadow {
  position: absolute;
  width: 80%;
  height: 100vh;
  top: 0;
  left: 0;
  transform-style: preserve-3d;
  transform-origin: left;
  transition: 0.5s;
  background-color: white;
  }

  hr{
    display: none;
    width: 0%;
    position: relative;
    top: 0px;    
    margin-right: 0px;
  }
  #services{
    /* margin-top: 32%; */
    width: 100%;
    height: 468px;
    background-image: url("./1imgbin_car-poster-automotive-design-png.png");
    background-size: cover;
  }
  .containerT{
    position: relative;
    top: -35px;
  }
  .row h2{
    font-size: 21px;
  
  }
  .row h3{
    font-size: 11px;
    width: 210px;
    padding-top: 10px;
    margin-right: 0px;
  }
  .text-center0{
    margin-right: 10px;
    margin-top: -60px;
  }
  .text-center0 h4{
    font-size: 12px;
  }
  .text-center0 p{
    font-size: 8px;
    text-align: justify;
  }
  .logoB{
    margin-top: -190px;
    margin-right: 240px;
    margin-bottom: 0;
    width: 60%;
    padding: 20px 50px;
    height: 200px;
  }
  .imgLogo{
    margin-left: 20px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
  }
  #first .box{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items:center;	
  }
  
  .box{
    display: none;
    width: 70%; height: 430px;
    position: relative;
    margin-right: 3%;
    margin-top: 35%;

  }
  .Ds{
    position: absolute;
    margin-top: -30px;

  }
  .C5{
    width: 240px;
  }
  #SI {
    margin-top: 13%;
    margin-right: 20px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 15px;
    place-content: center;
    grid-template-rows: 30% 30% 40%;
    width: 90%;
    height: 480px;
    padding: max(2vh, 1.5rem);
  }
  section .card .card__img span{
    width: 35px;
    font-size: 11px;
  }
  section .card p{
    font-size: 8px;
  }
  section .card h2{
    font-size: 12px;
  }

.Ca, .Cb, .Cc, .Cd, .Ce, .Cf{
  font-size: 10px;
}
#carousel-content, #carousel-dots{
  padding-left: 0;
}
.footer .social-icon .social-icon__item .social-icon__link {
  font-size: 17px;
}
 .footer .menuF .menu__item .menu__link{
  font-size: 11px;
}.footer p{
  font-size: 12px;
}
#span{
  font-size: 16px;
}
.DivN{
  rotate: 270deg;
  width: 800px;
    position: relative;
    top: 200px;
    left: 160px;
    margin-bottom: 400px;
    /* background: linear-gradient(270deg, #e1e1e100, white); */
}
.label , .shadowN{
  rotate: 90deg;

}
.DivN .options .option.active .label{
  bottom: 10px;
  right: 330px;

}
.DivN .options .option .label .info{
  margin-right: 5px;
  font-size: 12px;

}
.DivN .options .option .label .iconN{
  margin-top: 5px;
}
.f1{
  --optionBackground:url(./image/car00.jpg);
}
.f2{
  --optionBackground:url(./image/car01.jpg);
}
.f3{
  --optionBackground:url(./image/car02.jpg);
}
.f4{
  --optionBackground:url(./image/car05.png);
}
.f5{
  --optionBackground:url(./image/car04.jpeg);
}

}
@media(max-width:425px) {
  .S{
    display: none;
  }
  .Ds{
    margin-top: -3%;
    position: absolute;
    height: 1900px;
  }
  #is {
    width: 120px;
    height: 40px;
    left: -110px;
}
  .slider-one .slider-one-image .slider-text,
.slider-one .slider-two-image .slider-text,
.slider-one .slider-three-image .slider-text,
.slider-one .slider-four-image .slider-text,
.slider-two .slider-one-image .slider-text,
.slider-two .slider-two-image .slider-text,
.slider-two .slider-three-image .slider-text,
.slider-two .slider-four-image .slider-text,
.slider-three .slider-one-image .slider-text,
.slider-three .slider-two-image .slider-text,
.slider-three .slider-three-image .slider-text,
.slider-three .slider-four-image .slider-text,
.slider-four .slider-one-image .slider-text,
.slider-four .slider-two-image .slider-text,
.slider-four .slider-three-image .slider-text,
.slider-four .slider-four-image .slider-text {
position: absolute;
top: 40%;
right: 15px;
color: #ffffff;
width: 400px;
text-transform: capitalize;
animation: text-up 12s linear infinite;
transform: translateY(100px);
animation-delay: 0s;
}
.slider-one .slider-one-image .slider-text h1,
.slider-one .slider-two-image .slider-text h1,
.slider-one .slider-three-image .slider-text h1,
.slider-one .slider-four-image .slider-text h1,
.slider-two .slider-one-image .slider-text h1,
.slider-two .slider-two-image .slider-text h1,
.slider-two .slider-three-image .slider-text h1,
.slider-two .slider-four-image .slider-text h1,
.slider-three .slider-one-image .slider-text h1,
.slider-three .slider-two-image .slider-text h1,
.slider-three .slider-three-image .slider-text h1,
.slider-three .slider-four-image .slider-text h1,
.slider-four .slider-one-image .slider-text h1,
.slider-four .slider-two-image .slider-text h1,
.slider-four .slider-three-image .slider-text h1,
.slider-four .slider-four-image .slider-text h1 {
font-size: 16px;
margin-bottom: 5px;
color: #d8d8d8e3;
width: 600px;
}
.slider-one .slider-one-image .slider-text p,
.slider-one .slider-two-image .slider-text p,
.slider-one .slider-three-image .slider-text p,
.slider-one .slider-four-image .slider-text p,
.slider-two .slider-one-image .slider-text p,
.slider-two .slider-two-image .slider-text p,
.slider-two .slider-three-image .slider-text p,
.slider-two .slider-four-image .slider-text p,
.slider-three .slider-one-image .slider-text p,
.slider-three .slider-two-image .slider-text p,
.slider-three .slider-three-image .slider-text p,
.slider-three .slider-four-image .slider-text p,
.slider-four .slider-one-image .slider-text p,
.slider-four .slider-two-image .slider-text p,
.slider-four .slider-three-image .slider-text p,
.slider-four .slider-four-image .slider-text p {
font-size: 11px;
line-height: 18px;
color: #fffffff3;
}
.links a{
  font-size: 13px;
}
.shadow {
  position: absolute;
  width: 80%;
  height: 100vh;
  top: 0;
  left: 0;
  transform-style: preserve-3d;
  transform-origin: left;
  transition: 0.5s;
  background-color: white;
  }

  hr{
    display: none;
    width: 0%;
    position: relative;
    top: 0px;    
    margin-right: 0px;
  }
  #services{
    /* margin-top: 150px; */
    width: 100%;
    height: 450px;
    background-image: url("./1imgbin_car-poster-automotive-design-png.png");
    background-size: cover;
  }
  .containerT{
    position: relative;
    top: -35px;
  }
  .row h2 {
    font-size: 21px;
    width: max-content;
    position: relative;
    left: 80px;
    /* align-items: center; */
}
  .row h3{
    font-size: 10px;
    width: 210px;
    padding-top: 10px;
    margin-right: -10px;
  }
  .text-center0{
    margin-top: -60px;
  }
  .text-center0 h4{
    font-size: 12px;
  }
  .text-center0 p{
    font-size: 8px;
  }
  .logoB{
    margin-top: -190px;
    margin-right: 210px;
    margin-bottom: 0px;
    width: 70%;
    padding: 20px 50px;
    height: 200px;
  }
  .imgLogo{
    margin-left: 20px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
  }
  #first .box{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items:center;	
  }
  
  .box{
    display: none;
    width: 70%; height: 430px;
    position: relative;
    margin-right: 3%;
    margin-top: 35%;

  }
  #SI {
    margin-top: 20px !important;
    margin-right: 20px;
    display: grid;
    gap: 15px;
    place-content: center;
    width: 90%;
    grid:none;
    height: 400px;
    min-height: 560px;
    padding: max(2vh, 1.5rem);
  }
  section .card .card__img span{
    width: 35px;
    font-size: 11px;
  }
  section .card p{
    font-size: 8px;
  }
  section .card h2{
    font-size: 12px;
  }

.Ca, .Cb, .Cc, .Cd, .Ce, .Cf{
  font-size: 9px;
}
#carousel-content, #carousel-dots{
  padding-left: 0;
}
.footer .social-icon .social-icon__item .social-icon__link {
  font-size: 17px;
}
 .footer .menuF .menu__item .menu__link{
  font-size: 11px;
}.footer p{
  font-size: 12px;
}
#span{
  font-size: 16px;
}
.DivN{
  rotate: 270deg;
  width: 800px;
    position: relative;
    top: 200px;
    left: 190px;
    margin-bottom: 400px;
    /* background: linear-gradient(270deg, #e1e1e100, white); */
}
.label , .shadowN{
  rotate: 90deg;

}
.DivN .options .option.active .label{
  bottom: 10px;
  right: 330px;

}
.DivN .options .option .label .info{
  margin-right: 5px;
  font-size: 12px;

}
.DivN .options .option .label .iconN{
  margin-top: 5px;
}
.f1{
  --optionBackground:url(./image/car00.jpg);
}
.f2{
  --optionBackground:url(./image/car01.jpg);
}
.f3{
  --optionBackground:url(./image/car02.jpg);
}
.f4{
  --optionBackground:url(./image/car05.png);
}
.f5{
  --optionBackground:url(./image/car04.jpeg);
}

}
