@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');


body {
  font-family: 'Poppins', sans-serif !important;
  font-size:16px;
  font-weight: 400;
  overflow-x: hidden;
}
.adminFormSection{
  background-color: #000;
  background-image: url('../images/main/bg.png');
  background-size: 100%;
}
* {
  scroll-behavior: smooth;
}
a, ul{
  font-family: 'Poppins', sans-serif;
}
table td i{
  cursor: pointer;
}
table thead tr th, table td{
  min-width: 70px;
  max-width: 70px;
}
::-webkit-scrollbar {
  width: 3px;
  background-color: #532e03;
}
/* adminloader */
.adminLoader {
  /* position: fixed;
  top: 0;
  left: 0; */
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.adminLoader img {
  width: 100px; /* Adjust size as needed */
}
.bodyContent{
  overflow: hidden;
}
.error{
  color: #f25d5d;
  font-size: 12px;
  padding: 8px 0;
}
.hidden {
  display: none;
}
.mainBody{
  /* padding-top: 1.4em; */
  padding-top: 0em;
}
.customContainer{
  width: 90%;
  margin: auto;
}
.container80{
  width: 80%;
  margin: auto;
}
.footerContainer{
  width: 90%;
  margin: auto;
}
.navbar-light .navbar-nav .nav-link {
  color: #fff !important;
}
.navbar-light .navbar-nav .nav-link:focus{
  color: #fff;
}
.navbar-light .navbar-nav .nav-link:hover{
  color: #fff;
}
.myNav{
  /* width: 90%;
  margin: auto; */
  padding: 1.4em 0;
  position: relative;
  z-index: 999;
}
.myNav.fixed-top {
  background-color: #000;
  /* top: 1.4em; */
}
.myNav .navbar{
  padding: 0;
  width: 90%;
  margin: auto;
}
.myNav .active{
  font-weight: 600;
}
.myNav .dropdown-menu {
  left: unset;
  right: 0;
}
.myNav .active .dropdown-item{
  font-weight: 600;
}
.myNav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #000;
  padding: 1.2em 0;
}
.myNav ul li{
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  padding: 0 0.6em;
}
.myNav ul .nav-item::after {
  position: absolute;
  content: '';
  width: 0.5px;
  height: 15px;
  background: #000;
  right: 0;
  top: 10px;
}
.myNav .dropdown-menu .nav-item::after{
background: transparent;
}
.myNav .dropdown-menu li a{
  padding: 0.5em 0.4em;
  text-transform: initial;
}
.myNav ul .nav-item:last-child:after {
  width: 0;
  background: unset;
}
.navbar-expand-lg .navbar-nav .dropdown-menu{
  background-color: #252525;
  padding: 0.5em 0.8em;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.25);
}
.navbar-expand-lg .navbar-nav .dropdown-menu a{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 0.7em 0;
  border-bottom: 1px solid #4F4F4F;
}
.navbar-expand-lg .navbar-nav .dropdown-menu .noBorder{
  border-bottom: none;
}
.navbar-expand-lg .navbar-nav .dropdown-menu .nav-item.active a{
  color: #F89521;
}
.dropdown-item:active {
  background-color: #000;
}
.dropdown-item:hover {
  background-color: transparent;
}
/* LOADER */
.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  transition: opacity 0.5s ease;
}

.loader {
  border: 2px solid #2a2a2a;
  border-top: 2px solid #ffab48;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.footer{
  padding: 3em 0em;
  position: relative;
  background-color: rgba(255,255,255,0.1);
}
/* FORM LOADER */
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #7983ff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin1 1s linear infinite;
}
@keyframes spin1 {
  to {
    transform: rotate(360deg);
  }
}
/* .spinner.hidden {
  display: none;
} */
/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.7); 
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 42%;
}

/* Close Button */
.close {
  color: #f79523;
  float: right;
  font-size: 28px;
  font-weight: 400;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
#loginError{
  font-size: 12px;
  text-align: center;
  padding: 8px 0 0 0;
}
table .short-message{
  word-break: break-word;
}
/* END */
.home .articles{
  padding: 4em 0 5em 0;
}
.home .articles .boxStyle{
  text-align: center;
  width: 83%;
  margin: auto;
  position: relative;
  cursor: pointer;
}
.home .articles .boxStyle img{
  width: 100%;
  border-radius: 10px;
}
.home .articles h2 {
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5em;
}
.home .articles p{
  color: #FFEBD4;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 2em;
  
}
.home .articles .boxStyle p{
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
  padding: 0.6em 2em;
  background-color: #252525;
  border-radius: 8px;
  margin: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  cursor: pointer;
}

.testimonial .owl-carousel button span{
  color: #f79523;
  font-size: 4.5rem;
  font-weight: 200;
}
.testimonial .owl-carousel .owl-prev{
  position: absolute;
  left: -4em;
  top: 11em;
}
.testimonial .owl-carousel .owl-next{
  position: absolute;
  right: -4em;
  top: 11em;
}
.testimonial .owl-carousel.owl-theme .owl-prev:hover, .testimonial .owl-carousel.owl-theme .owl-next:hover {
  background: none;
}
.testimonial .owl-carousel .owl-item img {
  width: 172px;
  height: 50px;
  object-fit: contain;
}

.footer ul{
  padding: 0;
  margin: 0;
}
.footer ul li{
  color: #FFEAD3;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.6em;
  list-style: none;
}
.footer .innerLists li{
  padding: 0.5em 0 0 1em;
}
.footer ul li a{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.6em;
  list-style: none;
}
.footer a:hover{
  text-decoration: none;
}
.footer ul li a img{
  margin-right: 0.7em;
}
.footer h3{
  color: #FFEAD3;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.footer h3 a{
  color: #FFEAD3;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.footer .social{
  margin-left: 0.8em;
  display: block;
  margin-bottom: 0.8em;
}
.index-h1{
  color: #FFEBC0;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  padding: 2em 0;
}
/* ABOUT US */
.headSection{
  padding: 7em 0;
}
.aboutPage .headSection {
  padding: 9em 0;
}
.aboutPage .imgStyle img{ 
  width: 100%;
}
.aboutPage h1{
  color: #FFEBC0;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  width: 750px;
}
.aboutPage h1 p{
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.aboutPage .story{
  padding: 4em 0em;
  background-color: rgba(255,255,255,0.1);
  text-align: center;
}
.aboutPage .story h2{
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.6em;
}
.aboutPage .story p{
  color: #FFEAD3;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
.aboutPage .vision{
  padding: 4em 3em;
}
.aboutPage .vision .imgStyle{
  text-align: end;
}
.aboutPage .vision .imgStyle img{
  width: 82%;
}
.aboutPage .vision .contents{
  text-align: end;
  position: relative;
}
.aboutPage .vision .innercontents{
  position: absolute;
  top: -1em;
  right: 12em;
  width: 500px;
}
.aboutPage .vision h2{
  color: #FFEBC0;
  font-size: 3rem;
  font-weight: 600;
  line-height: normal;
}
.aboutPage .vision p{
  color: #FFF;
  text-align: right;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.aboutPage .experts .content{
  background: #252525;
  color: #fff;
}
.aboutPage .cardDetails .detail{
  background: #252525;
  text-align: center;
  padding: 0.7em 0;
  border-radius: 0px 0px 25px 25px;   
}
.aboutPage .cardDetails{
  margin-bottom: 1em;
}
.aboutPage .cardDetails .cardImg img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 25px 25px 0 0;   
}
.aboutPage .experts h5{
  color: #FFEAD3;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.aboutPage .experts p{
  color: #FFF;
  font-size: 11px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.aboutPage .experts{
 padding: 2em 0 4em 0;
}
.aboutPage .experts h2{ 
  text-align: center;
  color: #FFEAD3;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.5em;
  display: flex;
  align-items: center;
}
.aboutPage .experts h2:before{
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/left.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.aboutPage .experts h2:after {
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/right.svg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100% 100%;
}
.aboutPage .experts h2::before {
  margin-right: 10px;
}
.aboutPage .experts h2::after {
  margin-left: 10px;
}
.aboutPage .taisysAction{
  padding: 0em 0;
}
.aboutPage .taisysAction img{
  width: 100%;
}
.aboutPage .taisysAction h2{ 
  text-align: center;
  color: #FFEAD3;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
.aboutPage .taisysAction h2 span{
  color: #fff;
}
.aboutPage .taisysAction h2:before{
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/left.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.aboutPage .taisysAction h2:after {
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/right.svg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100% 100%;
}
.aboutPage .taisysAction h2::before {
  margin-right: 10px;
}
.aboutPage .taisysAction h2::after {
  margin-left: 10px;
}
.aboutPage .partnership{
  padding: 0 0 4em 0;
  margin-top: -3em;
}
.aboutPage .partnership h2{
  text-align: center;
  color: #FFEAD3;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
.aboutPage .partnership h2:before{
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/left.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.aboutPage .partnership h2:after {
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/right.svg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100% 100%;
}
.aboutPage .partnership h2::before {
  margin-right: 10px;
}
.aboutPage .partnership h2::after {
  margin-left: 10px;
}
.partnership .imgStyle{
  border-radius: 10px;
  background: #252525;
  text-align: center;
  padding: 1em 2em;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
}
.partnership button {
  margin-bottom: 2em;
}
.partnership button .imgStyle{
  margin: 0;
}
.partnership .imgStyle img{
  width: auto;
  height: 75px;
  object-fit: contain;
}
.partnership a{
  color: #FFF;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.aboutPage .clients{
  padding: 0 0 2em 0;
}
.aboutPage .clients h2{
  text-align: center;
  color: #FFEAD3;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
.aboutPage .clients h2:before{
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/left.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.aboutPage .clients h2:after {
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/right.svg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100% 100%;
}
.aboutPage .clients h2::before {
  margin-right: 10px;
}
.aboutPage .clients h2::after {
  margin-left: 10px;
}
.aboutPage .clients button {
  margin-bottom: 2em;
}
.aboutPage .clients button .imgStyle{
  margin: 0;
}
.clients .imgStyle{
  border-radius: 10px;
  background: #252525;
  text-align: center;
  padding: 1em 2em;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
}
.clients .imgStyle img{
  width: auto;
  height: 75px;
  object-fit: contain;
}
.clients a{
  color: #FFF;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.aboutPage .news h2{
  text-align: center;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
.news .owl-nav{
  display: none;
}
.aboutPage .news h2:before{
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/left.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.aboutPage .news h2:after {
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/right.svg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100% 100%;
}
.aboutPage .news h2::before {
  margin-right: 10px;
}
.aboutPage .news h2::after {
  margin-left: 10px;
}
.aboutPage .news .cardBox{
  width: 100%;
  height: 238px;
  padding: 3em 4em;
  background-color: rgba(255,255,255,0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutPage .news .cardBox a{
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  margin: 0;
}
.aboutPage .news .mainCard{
  position: relative;
}
.aboutPage .news .cardImg{
  border-radius: 10px 10px 0px 0px;
  background: #FFEAD3;
  text-align: center;
  padding: 2em;
  width: 90%;
  margin: auto;
  position: relative;
  height: 124px;
  clip-path: polygon(0% 0%, 100% 0, 100% 80%, 50% 100%, 0 80%);
  bottom: -1.4em;
}
.aboutPage .news{
  padding: 0;
}
.aboutPage .news .cardImg img{
  width: 230px;
  margin: auto;
  height: 46px;
  object-fit: contain;
}
.aboutPage .events h2{
  text-align: center;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.5em;
  display: flex;
  align-items: center;
}
.aboutPage .events h2:before{
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/left.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.aboutPage .events h2:after {
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/right.svg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100% 100%;
}
.aboutPage .events h2::before {
  margin-right: 10px;
}
.aboutPage .events h2::after {
  margin-left: 10px;
}
.aboutPage .events .cardBox{
  width: 100%;
  padding: 2em 1em;
  background-color: rgba(255,255,255,0.1);
  border-radius: 0px 0px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutPage .events .cardBox p{
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.aboutPage .events .mainCard{
  position: relative;
}
.aboutPage .events .cardImg{
  border-radius: 10px 10px 0px 0px;
  background: #FFEAD3;
  text-align: center;
  padding: 2em;
  width: 100%;
  position: relative;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutPage .events{
  padding: 4em 0;
}
.aboutPage .gallery img{
  width: 100%;
}
.aboutPage .journey h2{
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
}
.aboutPage .journey h2:before{
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/lgleft.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.aboutPage .journey h2:after {
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/lgright.svg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100% 100%;
}
.aboutPage .journey h2::before {
  margin-right: 10px;
}
.aboutPage .journey h2::after {
  margin-left: 10px;
}
.aboutPage button{
  border: none;
  padding: 0;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  width: 100%;
  background: #252525;
}
.aboutPage button:focus{
  border: none;
  outline: none;
}
.hide{
  display: none;
}
.hideThis{
  display: none;
}
/* FLEET */
.fleetPage .customHead{
  background-color: rgba(255,255,255,0.1);
  margin-top: -6em;
  padding-top: 6em;
  /* height: 100vh; */
  display: flex;
  align-items: center;
}
.iFleetVC video{
  width: 100%;
}
.iFleetVC{
  position: relative;
}
.iFleetVC .downIcon{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  right: 2em;
  bottom: 17em;
}
.iFleetVC .downIcon a{
  text-align: center;
}
.iFleetVC .downIcon p{
  color: #FFEBC0;
  font-size: 8px;
  text-align: center;
  margin: 0.7em 0 0 0;
}
.videoContent video{
  width: 100%;
  height: 324px;
  object-fit: fill;
  position: relative;
  z-index: 2;
}
.videoContent .thumb img{
  width: 100%;
}
.fixedVideo video{
    right: 10px;
    bottom: 2em;
    position: fixed;
    z-index: 999;
    width: 350px;
    /* height: 300px; */
    /* transition: all .3s ease 0s; */
}
.iFleetVC{
  padding-top: 0;
}
.fleetPage .headSection{
  width: 100%;
}
.fleetPage .headSection .imgStyle img{ 
  width: 90%;
}
.fleetPage h1{
  color: #FFEBC0;
  font-size: 3rem;
  font-weight: 600;
  line-height: normal;
}
.fleetPage h1 p{
  color: #FFF;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.fleetPage .sparkBg{
  background-image: url('../images/main/fleet/spark.png');
  width: 100%;
}
.fleetPage .contents{
  text-align: end;
}
.fleetPage .fleetCard{
  text-align: center;
  padding: 4em 0;
}
.fleetPage .fleetCard h2{
  color: #FFF;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  line-height: normal;
}
.fleetPage .fleetCard p{
  color: #FFEAD3;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 3em;
}
.fleetPage .fleetCard .imgStyle img{
  width: 80%;
  margin: auto; 
}
.fleetPage .fleetCard h2 img {
  width: 108px;
}
.fleetYT{
  background-color: transparent !important;
}
.fleetSpend{
  background-color: rgba(255,255,255,0.1);
  padding: 3em 0;
  position: relative;
}
.fleetSpend .spark{
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 60%;
}
.fleetSpend h2{
  color: #FFEBC0;
  font-size: 3rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.5em;
}
.fleetSpend p{
  color: #FFF;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
}
.fleetSpend .contents{
  text-align: left;
}
.fleetSpend ul{
  padding-left: 1em;
}
.fleetSpend ul li{
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.5em;
}
.fleetSpend .imgStyle{
  text-align: center;
}
.w80{
  width: 80%;
  margin: auto;
}
.omniPay{
  padding: 4em 0;
}
.omniPay h2{
  color: #FFEBC0;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin-bottom: 2em;
}
.omniPay p{
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.2em;
}
.omniPay .imgStyle{
  text-align: center;
}
.omniPay h3{
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.efficiency{
  background-color: rgba(255,255,255,0.1);
  padding: 4em 0;
  position: relative;
}
.efficiency h2{
  color: #FFEBC0;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
.efficiency p{
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.4em;
}
.efficiency .custmBox{
  width: 68%;
  margin: auto;
}
.efficiency .contents{
  text-align: right;
  position: absolute;
  right: 0;
  top: -3em;
  width: 1000px;
}
.efficiency .imgStyle{
  text-align: center;
  /* position: relative;
  top: 0;
  left: 6em;
  width: 100%; */
}
.insight{
  padding: 5em 0;
  position: relative;
}
.insight .spark{
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 60%;
}
.insight h2{
  color: #FFEBC0;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1em;
}
.insight p{
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0em;
}
.insight .contents{
  text-align: left;
}
.insight ul{
  padding-left: 1.4em;
}
.insight ul li{
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.6em;
}
.insight .imgStyle{
  text-align: center;
}
/* TIMELINE */
.ps-timeline-sec {
  position: relative;
  background: linear-gradient(180deg, #F89521 0%, #FFEBC0 100%);
}
.ps-timeline-sec h3{
  color: #FFEAD3;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin-bottom: 1.2em;
}
.img-handler-bot h3{
  margin-top: 1.2em;
  margin-bottom: 0;
}
.ps-timeline-sec .container {
  position: relative;
}
.ps-timeline-sec .container ol:before {
  /* background: #faab49; */
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  left: 8px;
  top: -3px;
}
.ps-timeline-sec .container ol:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  right: 8px;
  top: -3px;
}
.ps-timeline-sec .container ol.ps-timeline {
  margin: 350px 0;
  padding: 0;
  border-top: 1px solid #faab49;
  list-style: none;
}
.ps-timeline-sec .container ol.ps-timeline li {
  float: left;
  width: 14.2%;
  padding-top: 30px;
  position: relative;
}
.ps-timeline-sec .container ol.ps-timeline li span {
  width: 70px;
  height: 70px;
  margin-left: -33px;
  background: transparent;
  border-radius: 50%;
  text-align: center;
  line-height: 50px -10;
  font-size: 2em;
  font-style: normal;
  position: absolute;
  top: -1em;
  left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
  content: "";
  color: #faab49;
  width: 1px;
  height: 75px;
  background: linear-gradient(180deg, #F89521 0%, #FFEBC0 100%);
  position: absolute;
  top: -92px;
  left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top-lg:before {
  height: 165px;
  top: -5.6em;
}
/* .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top-lg.xlicon:before{
  height: 225px;
  top: -7.8em;
} */
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
  content: "";
  color: #faab49;
  width: 8px;
  height: 8px;
  background: #faab49;
  position: absolute;
  bottom: 5em;
  left: 44%;
  border-radius: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top-lg:after{
  bottom: 7.7em;
}
/* .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top-lg.xlicon:after{
  bottom: 10em;
} */
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
  content: "";
  color: #faab49;
  width: 1px;
  height: 75px;
  background: linear-gradient(180deg, #FFEBC0 0%, #F89521 100%);
  position: absolute;
  bottom: -92px;
  left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot-lg:before {
  height: 165px;
  bottom: -5.6em;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
  content: "";
  color: #faab49;
  width: 8px;
  height: 8px;
  background: #faab49;
  position: absolute;
  top: 5em;
  left: 44%;
  border-radius: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot-lg:after {
  top: 7.7em;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-top {
  position: absolute;
  bottom: 0;
  margin-bottom: 130px;
  width: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-top-lg{
  bottom: 5.8em;
}
/* .ps-timeline-sec .container ol.ps-timeline li .img-handler-top-lg.xl{
  bottom: 10em;
} */
.ps-timeline-sec .container ol.ps-timeline li .img-handler-top img {
  display: table;
  margin: 0 auto;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot {
  position: absolute;
  margin-top: 5em;
  width: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot-lg {
  margin-top: 10.5em;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot img {
  display: table;
  margin: 0 auto;
}
.img-handler-top p{
  text-align: left;
  width: 80%;
  margin: 0 auto;
  position: absolute;
  left: 6em;
  color: #fff;
}
.ps-timeline-sec .container ol.ps-timeline .img-handler-top .cstmList{
  position: absolute;
  list-style: disc;
  padding: 0;
  width: 196px;
  left: 7em;
  bottom: -3em;
}
.ps-timeline-sec .container ol.ps-timeline .img-handler-top-lg .cstmList {
  bottom: -7em;
}
/* .ps-timeline-sec .container ol.ps-timeline .img-handler-top-lg.xl .cstmList {
  bottom: -12em;
} */
.ps-timeline-sec .container ol.ps-timeline .img-handler-top .cstmList li{
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  float: unset;
  width: auto;
  padding-top: 0;
  position: unset;
  margin-bottom: 0.4em;
}
.ps-timeline-sec .container ol.ps-timeline .img-handler-bot .cstmList{
  position: absolute;
  list-style: disc;
  padding: 0;
  width: 210px;
  left: 7em;
  top: -3em;
}
.ps-timeline-sec .container ol.ps-timeline .img-handler-bot-lg .cstmList{
  top: -9em;
}
.ps-timeline-sec .container ol.ps-timeline .img-handler-bot .cstmList li{
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  float: unset;
  width: auto;
  padding-top: 0;
  position: unset;
  margin-bottom: 0.4em;
}
.ps-timeline-sec .container ol.ps-timeline li .ps-top {
  position: absolute;
  bottom: 0;
  margin-bottom: 100px;
}
.ps-timeline-sec .container ol.ps-timeline li .ps-bot {
  position: absolute;
  margin-top: 35px;
}
/* IOT PAGE */
.iotPage.smart .headSection{
  background-image: url('../images/main/iot/page1/rainbow.png');
  background-repeat: no-repeat;
  width: 100%;
  background-position: bottom;
  background-size: 100%;
  padding: 4em 0 5em 0;
}
.iotPage .headSection{
  position: relative;
}
.iotPage .spark{
  position: absolute;
  right: 0;
  bottom: 0;
}
.iotPage h1{
  color: #FFEAD3;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
.iotPage .contents h1 p{
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.iotPage .contents p{
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.iotPage .connectivity{
  padding: 4em 0;
  background-color: rgba(255,255,255,0.1);
}
.iotPage .connectivity .row{
  width: 100%;
  margin: auto;
}
.iotPage .connectivity h2{
  text-align: center;
  color: #FFEAD3;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1em;
}
.iotPage .connectivity p{
  text-align: center;
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}
.iotPage.iconnect .headSection .imgStyle, .iotPage.smart .headSection .imgStyle{
  text-align: center;
}
.iotPage .circleBox p{
  color: #FFF;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  margin-top: 1.3em;
  padding: 0 1em;
}
.iotPage .circleBox{
  position: relative;
}
.iotPage .circleBox .innerContent{
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0 2em 0 2.6em;
}
.iotPage .counter .countBody{
  width: 88%;
  margin: auto;
}
.iotPage .counter{
  padding: 6em 0;
  background-color: rgba(255,255,255,0.1);
}
.iotPage .counter .box{
  border-radius: 10px;
  background: #000;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 2em 0;
  height: 218px;
}
.iotPage .counter h2{
  text-align: center;
  font-size: 64px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
  background: linear-gradient(280deg, #F89521 43.82%, #FFF 106.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.iotPage .counter p{
  color: #FEE7CB;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.iotPage .mobility{
  padding: 4em 0;
 background-color: rgba(255,255,255,0.1);
}
.iotPage .mobility .wave{
  background-image: url('../images/main/iot/page1/wave.svg');
  width: 100%;
  height: 318px;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
}
.iotPage .mobility h2{
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
  color: #fff;
}
.iotPage .mobility p{
  color: #FFEAD3;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2em;
}
.iotPage .mobility ul{
  display: flex;
  padding: 0;
  margin: 0;
  width: 82%;
  margin: auto;
  justify-content: space-around;
  position: absolute;
  bottom: 0;
  left: 8em;
}
.iotPage .mobility li{
  list-style: none;
}
.iotPage .mobility li:nth-child(2), .iotPage .mobility li:nth-child(4){
  margin-top: -18em;
}
.iotPage .mobility li p{
  color: #FFF;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.iotPage .mobility .wave{
  position: relative;
}
.iotPage .gateway{
  width: 100%;
  padding: 6em 0;
}
.iotPage .gateway .imgstyle img{
  width: 100%;
}
.iotPage .gateway h2{
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
  color: #fff;
  width: 60%;
}
.iotPage .gateway p{
  color: #FFEAD3;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2em;
}
/* ICONNECT */
.iconnect .contents h1 p{
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
}
.iconnect .contents h1 span{
 padding-left: 5em;
}
.iconnect .mgtSection h3{
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1em;
}
.iconnect .mgtSection p{
  color: #FFEBD4;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.iconnect .box{
  padding: 2em 0.5em;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #FBB978;
}
.iconnect .box.lgBox{
  width: 100%;
  height: 278px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.iconnect .box img{
  margin-bottom: 1.4em;
}
.iconnect .mgtSection{
  padding-bottom: 5em;
}
/* VALIDATION */
.validation .contents{
  text-align: end;
}
.validation .contents h1{
  color: #FFEBD4;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
.validation .contents h1 p{
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
}
.iotPage.validation .spark {
  position: absolute;
  left: 0;
  bottom: 0;
}
.validation .verify{
  padding: 5em 0;
  background-color: rgba(255,255,255,0.12);
}
.validation .verify h2{
  color: #FFEBD4;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.5em;
}
.validation .verify .bg{
  background-image: url('../images/main/iot/page3/bg.png');
  background-repeat: no-repeat;
  background-size: 97% 100%;
  width: 100%;
  height: 209px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.validation .verify .box img{
  margin-bottom: 0.5em;
}
.validation .verify p{
  margin-bottom: 1em;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.validation .verify .box{
  text-align: center;
}
.validation .security{
  padding: 6em 0;
}
.validation .security p{
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.validation .security .box{
  padding: 3.4em 0.5em;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #FBB978;
}
.validation .security .box img{
  margin-bottom: 1.6em;
}
.validation .securitySec{
  padding: 0 10em;
}
.validation .mobility.layers .wave{
  background-image: url('../images/main/iot/page3/wave.svg');
  width: 100%;
  height: 318px;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
}
.validation .mobility.layers li p {
  color: #FFEBD4;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.validation .mobility.layers{
  background-color: rgba(255,255,255,0.07);
  padding: 6em 0;
}
/* AI */
.automotive .headSection{
  position: relative;
  padding: 7em 0;
}
.automotive .spark{
  position: absolute;
  right: 0;
  bottom: 0;
}
.automotive.onechip .headSection .contents h1{
  color: #FFEBD4;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  width: 1000px;
}
.automotive.onechip .headSection .contents h1 p{
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.automotive.onechip .headSection .contents h1 img{
  margin-left: 0.5em;
}
.automotive.onechip .headSection .imgStyle{
 text-align: end;
}
.automotive.onechip .headSection .imgStyle img{
  width: 90%;
}
.automotive .compact{
  padding: 4em 0;
  background-color: rgba(255,255,255,0.1);
  position: relative;
}
.automotive .compact .spark{
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 60%;
}
.automotive .compact h2{
  color: #FFEBD4;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.automotive .compact h2 p{
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.automotive .compact .imgStyle{
 text-align: left;
}
.automotive .compact .imgStyle img{
  width: 75%;
}
.automotive .compact .contents{
  text-align: end;
}
.automotive .savings{
  padding: 4em 0;
  position: relative;
}
.automotive .savings .spark {
  position: absolute;
  right: 0;
  bottom: 0;
}
.automotive .savings h2{
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
.automotive .savings .contents p{
  color: #FFEBD4;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.automotive .savings .imgStyle{
 text-align: end;
}
.automotive .savings .imgStyle img{
  width: 75%;
}
.automotive .savings .contents{
  text-align: start;
}
.automotive .dream{
  padding: 4em 0;
  background-color: rgba(255,255,255,0.1);
}
.automotive .dreambg{
  background-image: url('../images/main/automotive/dream.png');
  width: 100%;
  height: 540px;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.automotive .dreambg h2{
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.automotive .dreambg p{
  color: #FFEBD4;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  text-align: center;
}
.automotive .function{
  padding: 4em 0;
  position: relative;
}
.automotive .function h2{
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.automotive .function p{
  color: #FFEBD4;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  text-align: center;
}
.automotive .function {
  padding: 4em 0;
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.automotive .function .lefthand{
  position: absolute;
  top: 0;
  left: 0;
}
.automotive .function .righthand{
  position: absolute;
  bottom: 0;
  right: 0;
}
/* DMS */
.automotive.dms h1{
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}
.automotive.dms .contents{
  text-align: left;
}
.automotive.dms .headSection p{
  color: #FFEBD4;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.automotive.dms .headSection .imgStyle{
  padding-right: 0;
  text-align: end;
}
.automotive.dms .monitor{
  position: relative;
}
.automotive.dms .monitor .spark{
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 50%;
}
.automotive .monitor .contents{
  text-align: end;
}
.automotive .monitor .imgStyle{
  text-align: center;
}
.automotive .monitor{
  padding: 6em 0;
  background-color: rgba(255,255,255,0.1);
}
.automotive .monitor h2{
  color: #FFF;
  text-align: right;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
.automotive .monitor p{
  color: #FFEBD4;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.automotive .whydms{
  padding: 4em 0;
}
.automotive .whydms h2{
  text-align: center;
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.6em;
}
.automotive .whydms h3{
  text-align: center;
  color: #FFEBD4;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
}
.automotive .whydms .bRight{
  border-right: 2px solid #252525;
}
.automotive .whydms .box{
  text-align: center;
}
.automotive .secureDrive{
  padding: 6em 0;
  background-color: rgba(255,255,255,0.1);
}
.automotive .secureDrive h2{
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
.automotive .secureDrive p{
  color: #FFEBD4;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.automotive .secureDrive .contents{
  text-align: left;
}
.automotive .nobg{
  background: transparent;
}
/* AI SENSOR */
.automotive.aiSensor .headSection .imgStyle{
  text-align: end;
}
.automotive.aiSensor .contents h1{
  color: #fff;
  margin-bottom: 0.5em;
}
.automotive.aiSensor .contents p{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.aiSensor .tracks{
  padding: 6em 0;
  background-color: rgba(255,255,255,0.1);
}
.aiSensor .tracks h2{
  color: #fff;
  font-size: 40px;
  font-weight: 600;
}
.aiSensor .tracks p{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.aiSensor .tracks .contents{
  text-align: center;
  background: #000;
  border-radius: 20px;
  padding: 2em 0;
}
.aiSensor .tracks .contents p{
  text-align: center;
  font-size: 12px;
  color: #fff;
  margin: 0;
  margin-top: 0.6em;
}
.aiSensor .tracks .contents img{
  margin-bottom: 0.6em;
}
.aiSensor .tracks .boxSize{
  margin-top: 3em;
}
.aiSensor .measurement{
  padding: 5em 0;
  position: relative;
}
.aiSensor .measurement .imgStyle img{
  width: 70%;
}
.aiSensor .measurement .spark{
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 60%;
}
.aiSensor .measurement .contents{
  text-align: end;
  color: #fff;
}
.aiSensor .measurement .contents h2{
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 0.7em;
}
.aiSensor .measurement .contents p{
  font-size: 16px;
  font-weight: 400;
  width: 80%;
  margin-left: auto;
}
/* FOOTPRINT */
.automotive.footprint h1{
  color: #fff;
  margin-bottom: 0.4em;
}
.automotive.footprint .headSection p{
  color: #FFEBD4;
}
.automotive.footprint .headSection .imgStyle{
  text-align: end;
}
.automotive.footprint .headSection .imgStyle img{
  width: 100%;
}
.automotive .carbon{
  padding: 5em 0 4em 0;
  background-color: rgba(255,255,255,0.1);
  color: #fff;
}
.automotive .carbon h2{
  font-size: 40px;
  font-weight: 600;
  margin: 0.7em 0;
  text-align: end;
}
.automotive .carbon p{
  font-size: 16px;
  font-weight: 400;
  text-align: end;
  color: #FFEBD4;
}
.automotive .carbon span{
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: #FFEBD4;
}
.automotive .carbon .contents{
  text-align: end;
}
.automotive .compliant{
  padding: 6em 0;
}
.automotive .compliant .head{
  text-align: center;
  margin-bottom: 3em;
}
.automotive .compliant h2{
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #fff;
}
.automotive .compliant .head p{
  font-size: 16px;
  font-weight: 400;
  color: #FFEBD4;
}
.automotive .compliant .contents p{
  color: #fff;
  margin: 0;
}
.automotive .compliant .box{
  border-radius: 20px;
  border: 1px solid #FBB978;
  text-align: center;
  padding: 1.5em 1em;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.automotive .compliant .box p{
  color: #fff;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  margin-top: 1.3em;
}
/* ADAS */
.automotive.adas h1{
  color: #FFEBD4;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
.automotive.adas .headSection h1 p{
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.automotive.adas .headSection p{
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
.automotive.adas .headSection .imgStyle{
  text-align: end;
}
.automotive.adas .empower{
  padding: 5em 0;
  background-color: rgba(255,255,255,0.1);
}
.automotive.adas .empower h2{
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.automotive.adas .empower .imgStyle{
  padding-top: 3em;
  text-align: center;
}
.automotive.adas .empower p{
  color: #FFEAD2;
  text-align: center;
  margin: 1em 0 1em 0;
  font-size: 14px;
}
.automotive.adas .empower .iconBody{
  width: 75%;
  margin: auto;
}
.automotive .controls{
  padding: 6em 0;
}
.automotive .controls h2{
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
}
.automotive .controls p{
  color: #FFEBD4;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.automotive .controls ul li{
  color: #FFEBD4;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.automotive .controls ul{
 padding-left: 1em;
}
.text-end{
  text-align: end;
}
.automotive .controls .imgStyle{
  text-align: center;
}
.automotive .controls .imgStyles{
  padding-left: 4em;
}
.automotive .controls{
position: relative;
}
.automotive .controls .spark{
  right: unset;
  left: 0;
}
.automotive .controls .spark1 {
  position: absolute;
  right: 0;
  top: 5em;
}
.automotive .controls .space{
  padding-top: 4em;
}
/* Child safety */
.automotive.safety .headSection{
  position: relative;
  width: 100%;
  height: 90vh;
}
.automotive.safety .headSection .imgStyle{
 text-align: end;
 /* position: absolute;
 top: 0; */
 width: 100%;
}
.automotive.safety .headSection h1{
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
.automotive.safety .headSection .customContainer{
  padding: 0;
  width: 100%;
}
.automotive.safety .headSection p{
  color: #FFEBD4;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  width: 80%;
}
.automotive.safety .headSection .row{
 height: 100%;
}
.automotive.safety .headSection .contents{
  padding: 0 0 0 4.8em;
}
.automotive.safety .detect{
  padding: 4em 0;
  background-color: rgba(255,255,255,0.1);
}
.automotive.safety .detect h2{
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
}
.automotive.safety .detect p{
  color: #FFEBD4;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.automotive.safety .detect .contents{
  text-align: end;
}
.automotive.safety .ourSafety{
  padding: 5em 0;
}
.automotive.safety .ourSafety h2{
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2em;
}
.automotive.safety .ourSafety .txtBox p{
  color: #FFEBC0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.automotive.safety .ourSafety .bgEven{
  background-image: url('../images/main/automotive/bgEven.png');
  width: 100%;
  height: 210px;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  position: relative;
}
.automotive.safety .ourSafety .bgOdd{
  background-image: url('../images/main/automotive/bgOdd.png');
  width: 100%;
  height: 210px;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  position: relative;
}
.automotive.safety .ourSafety .innerTxt{
  position: relative;
  top: -2em;
}
.automotive.safety .ourSafety .imgStyle{
  text-align: center;
  margin-bottom: 0.7em;
}
.automotive.safety .ourSafety .boxBg .row{
  width: 100%;
  margin: auto;
}
/* HOME PAGE */
.circles{
  position: absolute;
  top: -6em;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  /* z-index: 9; */
}
.circles li{
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  animation: animate 25s linear infinite;
  top: 0;
}
.circles li:nth-child(1){
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}
.circles li:nth-child(2){
  left: 10%;
  width: 50px;
  height: 50px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.circles li:nth-child(3){
  left: 70%;
  width: 30px;
  height: 30px;
  animation-delay: 4s;
}
.circles li:nth-child(4){
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}
.circles li:nth-child(5){
  left: 65%;
  width: 40px;
  height: 40px;
  animation-delay: 0s;
}
.circles li:nth-child(6){
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}
.circles li:nth-child(7){
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}
.circles li:nth-child(8){
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}
.circles li:nth-child(9){
  left: 20%;
  width: 40px;
  height: 40px;
  animation-delay: 2s;
  animation-duration: 35s;
}
.circles li:nth-child(10){
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}
@keyframes animate {
  0%{
      transform: translateY(0) rotate(0deg);
      opacity: 1;
      border-radius: 0;
  }
  100%{
      transform: translateY(1000px) rotate(720deg);
      opacity: 1;
      border-radius: 50%;
  }
}

.home .headSection{
  width: 100%;
  height: 90vh;
  padding: 0;
  position: relative;
  z-index: 1;
}
.home .headSection .contents{
  display: flex;
  align-items: center;
  height: 100%;
}
/* .home .headSection .leftspark{
  position: absolute;
  left: 0;
  top: 8em;
} */
.home .headSection .rightspark{
  position: absolute;
  right: 0;
  bottom: 5em;
}
/* .home .headSection .leftspark img, .home .headSection .rightspark img{
  opacity: 70%;
} */
.home .headSection .contents.left{
  justify-content: end;
  position: absolute;
  right: -2em;
  z-index: 2;
}
.home .headSection .contents.right{
  justify-content: start;
  position: absolute;
  left: -2em;
  z-index: 2;
}
.home .headSection h1{
  color: #FFF;
  font-size: 63px;
  line-height: 62px;
  font-weight: 500;
  text-align: left;
  margin: 0;
}
.home .headSection h1 .span1{
  color: rgba(255,0,0,0.1) !important;
  background-size: cover;
  background: linear-gradient(90deg, #FFAB48 5%, #fff 12%, #FFAB48 5%, #fff2e2 6%, #ffab3c 90%, #fff1e0 10%);
  -webkit-background-clip: text;
  animation: text-animation 20s linear infinite alternate;
}
.home .headSection h1 .span2{
  display: block;
  padding-left: 4.4em;
}
@keyframes text-animation {
  0%{
    background-position: left 0px top 50%;
  }
  50%{
    background-position: left 1500px top 50%;
  }
  100%{
    background-position: left 0px top 50%;
  }
}

.home .bannerContent .row{
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
  margin: auto;
}
.home .bannerContent video{
  width: 100%;
  height: 75%;
  padding-right: 6em;
}
.home .animeSec{
  text-align: end;
  display: flex;
  align-items: end;
  justify-content: end;
  height: 100%;
}
.home .animeSec img{
  width: 100%;
  margin-bottom: 0.6em;
}
.home .intro{
  padding: 4em 0;
  position: relative;
}
.home .intro h2{
  color: #FFF;
  font-size: 40px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 0.4em;
}
.home .intro p{
  color: #FFEFDD;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.home .intro ul {
  margin: 1.2em 0 0 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.home .intro ul li{
  background: #252525;
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  border-radius: 100px;
  list-style: none;
  width: 145px;
  margin-right: 1em;
  padding: 0.6em;
}
.home .intro ul li img{
  margin-right: 0.8em;
}
.home .intro .spark{
  position: absolute;
  right: 0;
  bottom: 0;
}
.home .expertise{
  padding: 5em 0;
  background-color: rgba(255,255,255,0.1);
}
.home .expertise h2{
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2em;
}
.home .expertise .txtBox p{
  color: #FFEBC0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.home .expertise .bgEven{
  background-image: url('../images/main/automotive/bgEven.png');
  width: 100%;
  height: 215px;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  position: relative;
}
.home .expertise .bgOdd{
  background-image: url('../images/main/automotive/bgOdd.png');
  width: 100%;
  height: 215px;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  position: relative;
}
.home .expertise .innerTxt{
  position: relative;
  top: -3em;
}
.home .expertise .imgStyle{
  text-align: center;
  margin-bottom: 1em;
}
.home .expertise .boxBg .row{
  width: 100%;
}
.home .technology{
  padding: 5em 0;
  position: relative;
}
.home .technology h2{
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.6em;
  text-transform: capitalize;
}
.home .technology p{
  color: #FFEBD4;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 1em;
}
.home .technology .imgStyle{
  text-align: center;
  position: relative;
  z-index: 2;
}
.home .technology .leftspark{
  position: absolute;
  left: 0;
  bottom: 0;
}
.home .technology .rightspark{
  position: absolute;
  right: 0;
  bottom: 0;
}
.home .marketplace{
  background-color: rgba(255,255,255,0.1);
  padding: 6em 0;
  position: relative;
}
.home .marketplace{
  position: relative;
  height: 630px;
  display: flex;
  align-items: center;
}
/* .home .marketplace .imgStyle{
  position: relative;
  left: -5em;
} */
.home .marketplace .imgStyle{
  position: absolute;
  left: 0;
}
.home .marketplace .spark{
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 55%;
}
.home .marketplace .contents{
  text-align: end;
}
.home .marketplace h2{
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0.6em;
  color: #FFEBD4;
}
.home .marketplace h2 p{
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0.6em;
}
.home .marketplace p{
  color: #FFEBD4;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}
.home .industry{
  padding: 5em 0 0 0;
}
.home .industry h2{
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 0.6em;
  color: #fff;
  text-align: center;
}
.home .industry p{
  color: #FFEBD4;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
  text-align: center;
  margin-bottom: 2em;
}
.home .industry img{
  width: 100%;
}
.home .testimonial{
  padding: 4em 0;
}
.home .testimonial h2{
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1em;
}
.home .testimonial .box{
  padding: 3em 2em;
  border-radius: 20px;
  border: 0.5px solid #FBB978;
  background: #252525;
  text-align: center;
  width: 100%;
  height: 470px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.home .testimonial .box p{
  color: #FFEAD3;
  text-align: justify;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  margin: 2.5em 0 0 0;
}
.home .sliderLogo{
  padding: 1.5em 0;
  background: #fff;
  background-color: rgba(255,255,255,0.1);
}
/* SLIDER */
/* .home .swiper-container img {
  width: auto;
  height: 50px;
  object-fit: contain;
  margin: auto;
}
.home .swiper-container .slideBox{
  border-radius: 10px;
  background: #252525;
  padding: 1.2em 1em;
  text-align: center;
} */
.home .owl-carousel .owl-item img {
  width: auto;
  height: 50px;
  object-fit: contain;
  margin: auto;
}
.home .slideBox{
  border-radius: 10px;
  background: #252525;
  padding: 1.2em 1em;
  text-align: center;
}
.sliderLogo .owl-nav{
  display: none;
}
.home .swiper-wrapper{
  height: unset;
}
.aboutPage .swiper-wrapper{
  height: unset;
}
.swiper-container-free-mode > .swiper-wrapper{
  transition-timing-function : linear !important;
}
/* CONTACT US */
.contactBanner img{
  width: 100%;
}
.contactPage h1{
  color: #FFEBD4;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 1em;
}
.contactPage .formBox{
  background-color: #000;
  border-radius: 20px;
  margin: 7.5em 0 2em 0;
  border: 2px solid #252525;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}
.contactPage .formDetails{
  padding: 3em 4em 0 4em;
}
.contactPage .submitBtn{
  border-radius: 30px;
  border: none;
  padding: 0.6em 7em;
  color: #F89521;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.contactPage .btnSection{
  padding-top: 1em;
}
.light {
  border: 0;
  background: #303030;
  background: linear-gradient(135deg, #303030 0%, #303030 40%, #674114 50%, #303030 60%, #303030 100%);
  background-repeat: no-repeat;  
  background-position:0%;
  background-size:300%; 
}
.light:hover {
  animation:light 1s;
  -webkit-animation:light 1s;
}
@keyframes light {
  0% {
        background-position: 100%; 
  }
  100% { 
        background-position:0%; 
  }
}
        
@-webkit-keyframes light {
  0% {
        background-position: 100%; 
  }
  100% { 
        background-position:0%; 
  }
}
.contactPage .btnDiv{
  text-align: center;
  padding-top: 1.5em;
}
.contactPage .form-group {
  margin-bottom: 2rem;
}
.contactPage .myField{
  margin-bottom: 2rem;
}
.contactPage form input{
  border-radius: 5px;
  background: #252525;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  border: none;
  height: 40px;
  width: 100%;
  padding: 0 1em;
}
.contactPage form textarea{
  border-radius: 5px;
  background: #252525;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  border: none;
  width: 100%;
  height: 40px;
}
.contactPage form select{
  border-radius: 5px;
  background: #252525;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  border: none;
  height: 40px;
  width: 100%;
  padding: 0 1em;
}
.contactPage form select:focus-visible{
  outline: none;
}
.contactPage form .form-control:focus {
  color: #fff;
  background: #252525;
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.thankyouTable{
  background: transparent;
  height: 80vh;
}
.thankyouTable .table-bord{
  padding: 8em 0;
}
.thankyouTable strong{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}
.thankyouTable .token-btn{
  border-radius: 30px;
  background: #252525;
  border: none;
  padding: 0.6em 4em;
  color: #F89521;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.thankyouTable .token-btn-bord{
  padding-top: 3em;
}
/* CONTACT US ENDS */
.successStyle{
  text-align: center;
  margin-bottom: 2em;
}
.aboutList{
  padding-left: 2em !important;
}
.contactBanner{
  text-align: center;
  border-bottom: 0.5px solid #F89521;
}
.contactDetails{
  padding: 1.4em 0.7em 0 0.7em;
}
.contactDetails .detailBox{
  padding: 0.8em 1.2em 0.8em 3em;
  border-radius: 100px 100px 0px 0px;
  background: #252525;
}
.contactDetails ul{
  display: flex;
  padding: 0 0 0 2em;
  margin: 0;
}
.contactDetails li{
  list-style: none;
}
.contactDetails li a{
  color: #FFEBD4;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  
}
.contactDetails li:last-child{
  margin-right: 2em;
  margin-left: 1em;
}
.contactDetails li a img{
  margin-right: 10px;
  width: 20px;
}
.contactDetails p{
  color: #FFEBD4;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin: 0;
}
.contactDetails .txt{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.thankyouTable table{
  width: 100%;
}
.hideOther{
  display: none;
}
/* TAISYS CONTACT */
.taisysContact{
  padding: 1em 0;
}
.taisysContact .formDetails{
  padding: 2em;
  width: 49%;
  margin: auto;
  border-radius: 20px;
  border: 0.5px solid #FBB978;
}
.taisysContact .error {
  color: #f25d5d;
  font-size: 12px;
  line-height: 20px;
  padding: 0;
}
.logoSec{
  width: 90%;
  margin: auto;
}
.thanksContent{
  text-align: center;
  padding: 5em 0;
}
.thanksContent .imgStyle{
  text-align: center;
  margin-bottom: 3em;
}
.thanksContent p{
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

/* SEPARETE FORM */
.formHeroSection{
  width: 100%;
}
.formHeroSection .contents{
  padding-top: 5em;
  height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.formHeroSection h1{
  font-size: 96px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 0.4em;
  position: relative;
  background: linear-gradient(90.12deg, #FFFFFF 8.11%, #999999 91.32%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.formHeroSection .contents .img1{
  position: absolute;
  left: -3.5em;
  top: -1em;
}
.formHeroSection .contents .img2{
  position: absolute;
  right: -4em;
  top: -2.3em;
  z-index: -1;
}
.formHeroSection p img{
  width: 100px;
}
.formHeroSection p{
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
}
.fleetForm{
  padding: 0 0 6em 0;
}
.fleetForm h2{ 
  text-align: center;
  color: #FFEAD3;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}
.fleetForm h2:before{
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/left.svg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100%;
}
.fleetForm h2:after {
  flex: 1;
  height: 6px;
  content: "";
  background-image: url('../images/main/right.svg');
  background-repeat: no-repeat;
  background-position: left;
  background-size: 100%;
}
.fleetForm h2::before {
  margin-right: 0.7em;
}
.fleetForm h2::after {
  margin-left: 0.7em;
}
.fleetForm .para{
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}
.fleetForm .formDetails{
  width: 80%;
  margin: auto;
}
.fleetForm .formDetails p{
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
  padding-top: 0.4em;
}
.fleetForm .formDetails .formField{
  margin: 0;
}
.fleetForm .formDetails .formContents{
  margin-bottom: 1em;
}
.contactPage.fleetForm form textarea{
  height: auto;
  padding: 0.6em 1em;
}
.contactPage.fleetForm form textarea:focus, .contactPage.fleetForm form textarea:focus-visible{
  border: none;
  outline: none;
}
.campaignModal .modal-body{
 background: #000;
 text-align: center;
 padding: 6em 1em;
 border-radius: 10px;
}
.campaignModal img{
  width: 120px;
}
.campaignModal h2{
  color: #fff;
  font-size: 40px;
  line-height: 60px;
  font-weight: 600;
  margin-bottom: 0.6em;
}
.campaignModal p{
  color: #FFEBC0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
}
.campaignModal .modal-dialog {
  max-width: 1000px;
}
.campaignModal .modal-content {
  border-radius: 12px !important;
}
.campCss h2, .campCss p{
  color: #fff;
}
.whyIsmart{
  padding: 4em 0;
}
.whyIsmart h2{
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.5em;
}
.whyIsmart .rectangleBox h3{
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  padding: 0;
}
.whyIsmart .rectangleBox p{
  color: #FFEAD3;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
}
.whyIsmart .rectangleBox{
  border-radius: 20px;
  border: 1px solid #FBB978;
  padding: 3em 5em;
  margin-bottom: 2em;
  width: 88%;
}
.whyIsmart .rectangleBox.shift{
  margin-left: auto;
}
.InAction{
  padding: 4em 0 2em 0;
}
.InAction .actionBox{
  text-align: center;
  background-color: rgba(255,255,255,0.13);
  height: 220px;
  margin-bottom: 2em;
  border-radius: 20px;
}
.InAction .actionBox p{
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
}
.InAction .actionBox img{
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 12px;
}
.InAction h2{
  color: #FFEBC0;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  padding: 0;
  margin-bottom: 1.5em;
}
.mnoSection{
  padding: 0 0 3em 0;
}
.mnoSection h2{
  color: #FFEBC0;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  padding: 0;
  margin-bottom: 1.5em;
}
.mnoSection .logoBox{
  text-align: center;
  background-color: rgba(255,255,255,0.13);
  padding: 1.8em 0;
  margin-bottom: 2em;
  border-radius: 10px;
}
.mnoSection .logoBox img{
  width: 180px;
  height: 60px;
  object-fit: contain;
}
.smart .ismartBanner h1{
  color: #fff;
  font-size: 98px;
  line-height: 100px;
  font-weight: 600;
  margin-bottom: 0;
}
.smart .ismartBanner h2{
  color: #FEE7CB;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
}
.smart .ismartBanner p{
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.smart .ismartBanner ul {
  list-style: none;
  display: flex;
  padding: 0;
  color: #fff;
  justify-content: center;
}
.smart .ismartBanner img{
  margin-bottom: -0.5em;
  position: relative;
  z-index: 1;
}
.smart .ismartBanner ul li{
  margin-right: 0.6em;
  width: 255px;
  background: linear-gradient(195.74deg, #F89521 24.8%, #FFC887 71%);
  border-radius: 6px;
  padding: 1px;

}
.smart .ismartBanner .gradient-border-bg{
  background: #000;
  border-radius: 6px;
  padding: 0.6em 1em;
  width: 100%;
}
.smart .ismartBanner{
  text-align: center;
}
.smart .ismartBanner .link{
  padding-top: 2em;
}
.smart .ismartBanner .link a{
  border-radius: 4px;
  background: linear-gradient(173deg, #252525 15.01%, #F89521 283.94%);
  padding: 0.7em 3em;
  color: #fff;
  position: relative;
}
.smart .ismartBanner .link a::after{
  content: "";
  width: 30px;
  height: 15px;
  background: url("../images/main/iot/page1/link.png");
  top: 16px;
  right: 3px;
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
}
/* iSMART SIM FORM */
.ismartFromSec{
  background-image: url('../images/main/ismart/rainbow.png');
  background-repeat: no-repeat;
  width: 100%;
  background-position: bottom;
  background-size: 100%;
  padding: 4em 0;
}
.ismartFromSec h1{
  font-size: 96px;
  line-height: 95px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
  background: linear-gradient(170.5deg, #FFFFFF 31.21%, #999999 117.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ismartFromSec .contents {
  padding-top: 7em;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.ismartFromSec h2{
  font-size: 32px;
  line-height: 48px;
  font-weight: 400;
  margin-bottom: 0.3em;
  color: #FEE7CB;
  padding-top: 0.5em;
}
.ismartFromSec p{
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.fleetForm.ismartForm h2{
  margin-top: -0.8em;
}
/* ifleetpay form */
.fleetPayForm .formBox{
  margin: 0 0 4em 0;
}
button:focus{
  outline: none;
}
a:-webkit-any-link:focus-visible {
  outline-offset: 0 !important;
}
a:focus-visible {
  outline: none !important;
}
.customContact .contactPage{
  margin: 4em 0 2em 0;
}
.bottomPadding{
  padding-bottom: 4em;
}
.knowMore{
  padding-top: 3em;
}
.knowMore a{
  border-radius: 30px;
  border: none;
  padding: 0.7em 2em;
  color: #F89521;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.knowMore a:hover{
  text-decoration: none;
}
/* CAREERS */
.career .firstSection .customContainer {
  padding: 0;
  width: 100%;
}
.career .firstSection {
  padding: 9em 0;
}
.career .secondSection h2{
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
.career .secondSection a{
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px;
  background: linear-gradient(173deg, #252525 15.01%, #F89521 283.94%);
  padding: 0.5em 1.5em;

}
.career .secondSection {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4em 0;
}
.career .careerForm{
  padding: 3em 0 3em 0;
}
.career .careerForm.contactPage .formDetails{
  padding: 0;
    width: 82%;
    margin: auto;
}
.career .careerForm.contactPage .formDetails p{
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.career .careerForm.contactPage .formDetails form textarea{
  height: 166px;
  padding: 0.8em;
}
.career .careerForm.contactPage form textarea:focus-visible{
  border: none;
  outline: none;
}
.career .careerForm.contactPage form .control-label {
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
  color: #999;
  font-size: 16px;
  font-weight: 400;
  padding: 0.6em 0.5em;
  background: linear-gradient(173.16deg, #252525 15.01%, #F89521 283.94%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
}
.career .careerForm.contactPage form .control-label input{
  cursor: pointer;
}
.career .careerForm.contactPage form .inputfile {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  width: 100%;
}
.career .careerForm.contactPage h2{ 
  text-align: center;
  color: #FFEAD3;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.5em;
  display: flex;
  align-items: center;
}
.career .careerForm.contactPage h2:before{
  flex: 1;
  height: 10px;
  content: "";
  background-image: url('../images/main/left.svg');
  background-repeat: no-repeat;
  background-size: 100%;
}
.career .careerForm.contactPage h2:after {
  flex: 1;
  height: 10px;
  content: "";
  background-image: url('../images/main/right.svg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 100%;
}
.career .careerForm.contactPage h2::before {
  margin-right: 10px;
}
.career .careerForm.contactPage h2::after {
  margin-left: 10px;
}
.career .careerForm h2{
  color: #FFEAD3;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 1em 0;
}
.career .secondSection a:hover{
  text-decoration: none;
}
.career .secondSection p{
  color: #FFEAD3;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.5em;
}
.career .secondSection h2 span{
  color: #FFEBC0;
  display: block;
}
.career .firstSection .contents{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.career .firstSection .contents h1{
  color: #FFEBC0;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
.career .valueCareer{
  background-color: rgb(220 220 220 / 10%);
  padding: 3.5em 0 4em 0;
}
.career .valueCareer h2{
  color: #FFEBC0;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: -1.2em;
}
.career .valueCareer .valueBox h3{
  color: #FFEBC0;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  padding: 0;
}
.career .valueCareer .valueBox img{
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.career .valueCareer .valueBox{
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 2em;
  width: 260px;
  height: 218px;
  margin: auto;
}
.career .valueCareer .contents{
  width: 80%;
  margin: auto;
}
.career .valueCareer .valueBox.box1 h3{
  text-align: left;
  padding: 0 0 0.4em 0;
}
.career .valueCareer .valueBox.box2 h3{
  padding: 0.4em 0 0 2em;
}
.career .valueCareer .valueBox.box3 h3{
  text-align: left;
}
.career .valueCareer .valueBox.box4 h3{
  text-align: left;
  padding: 0.3em 0 0 0;
}
.career .valueCareer .valueBox.box1{
  background-image: url('../images/career/bg1.png');
}
.career .valueCareer .valueBox.box1 .imgStyle{
  text-align: end;
}
.career .valueCareer .valueBox.box2{
  background-image: url('../images/career/bg2.png');
  margin-top: 9em;
}
.career .valueCareer .valueBox.box3{
  background-image: url('../images/career/bg3.png');
}
.career .valueCareer .valueBox.box3 .imgStyle{
  text-align: end;
}
.career .valueCareer .valueBox.box4{
  background-image: url('../images/career/bg4.png');
  margin-top: 12em;
}
.career .valueCareer .valueBox.box4 .imgStyle{
  text-align: end;
}
.career .whyIsmart .text1{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.thankyoutext{
  color: #FFEBC0;
  text-align: center;
}
.thankyoutext h3{
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
.ismartModal .modal-content{
  background: url('../images/modal/modalbg.png'), #000; 
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  padding: 0;
  /* width: 490px; */
  width: 615px;
  height: 340px;
  min-height: 220px;
  border-radius: 5px;
  box-shadow: 0px 4px 10.6px 1px rgba(0, 0, 0, 0.25);
  z-index: 999999;
}
.ismartModal .modal-content .close{
  position: absolute;
  top: 0.5em;
  right: 0.8em;
}
.ismartModal .modal-content h2{
  margin-bottom: 0;
}
.ismartModal .modal-content h3{
  color: #FEE7CB;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.ismartModal .modal-content p{
  color: #E5E5E5;
  font-size: 8px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.ismartModal .modal-content form{
  margin: 0;
}
.ismartModal .modal-content form input{
  box-shadow: none;
  color: #9C9C9C;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  background: #252525;
  border: none;
  width: 95%;
  height: 26px;
}
.ismartModal .modal-content form .formStyle{
  border-radius: 3px;
  background: #252525;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
  width: 100%;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1em 0 0 0;
}
.ismartModal .modal-content form button{
  border-radius: 30px;
  background: linear-gradient(173deg, #252525 15.01%, #F89521 283.94%);
}
.ismartModal .modal-content .closeModal{
  display: block;
  color: #FFF;
  text-align: center;
  font-size: 8px;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  cursor: pointer;
}
.ismartModal .modal-content button{
  color: #FFEBC0;
  text-align: center;
  font-size: 8px;
  font-weight: 400;
  line-height: normal;
  padding: 0.3em 3.5em;
  margin-left: 5px;
}
.ismartModal .modalDetails{
  width: 80%;
  margin: auto;
  padding: 2em 0;
}
.ismartModal .logoDiv{
  text-align: center;
  margin-bottom: 2em;
}
.ismartModal .modal-content .close:hover{
  color: #f79523;
}
.ismartModal .modalDetails .alert-success {
  color: #fff;
  text-align: center;
  font-size: 12px;
  background-color: unset;
  border: none;
  background: #000;
  padding: 4em 0;
}
.ismartModal .btn-close{
  color: #FFF;
  text-align: center;
  font-size: 8px;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  cursor: pointer;
}
.ismartModal .modal-content .alert-success img{
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}
.ismartModal .modal-content .alert-success p{
  font-size: 12px;
}
.openPosition{
  padding: 4em 0;
}
.openPosition h2{
  color: #FFEAD3;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 2em;
}
.openPosition p{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}
.openPosition p span{
  color: #FFEBC0;
}
.openPosition .boxContent{
  border-radius: 27px;
  background: linear-gradient(174deg, #252525 47.1%, #F89521 350.62%);
  padding: 1em;
  width: 290px;
  height: 272px;
  margin-bottom: 1em;
}
.openPosition .boxContent .links{
  text-align: end;
  cursor: pointer;
}
.openPosition a{
  cursor: pointer;
  text-decoration: none;
}
.openPosition .boxImg{
  margin-top: -2.3em;
}
.boxBorder{
  background: #F89521;
  width: 290px;
  height: 1px;
}
/* JOB DETAILS */
.career.jobDetailPage .jdFirst{
  padding: 5em 0 7em 0;
}
.career.jobDetailPage h1{
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.career.jobDetailPage .contents p{
  color: #FFEAD3;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.8em;
}
.career.jobDetailPage .jdFirst .contents a{
  border-radius: 6px;
  background: linear-gradient(173deg, #252525 15.01%, #F89521 283.94%);
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  padding: 0.4em 2em;
  text-decoration: none;
}
.career.jobDetailPage .jdFirst .contents ul{
  margin: 0;
  padding: 2.7em 0 0 0;
  display: flex;
}
.career.jobDetailPage .jdFirst .contents ul li{
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  list-style: none;
  margin-right: 0.8em;
}
.career.jobDetailPage .jdFirst .contents ul li img{
  margin-right: 0.4em;
}
.career.jobDetailPage .jdFirst .contents ul li span{
  color: #FFEAD3;
}
.career.jobDetailPage .experience h2{
  color: #FFEAD3;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.3em;
}
.career.jobDetailPage .experience ul{
  margin: 0 0 4em 0;
  padding: 0 0 0 1.2em;
}
.career.jobDetailPage .experience ul li{
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.career.jobDetailPage .experience ul.ul2{
  margin: 0 0 2em 0;
}
.career.jobDetailPage .experience .contents{
  padding: 0 0 0 6em;
}
/* ADMIN */
.adminFormSection{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adminFormSection.regPage{
  height: 88vh;
  background: transparent;
}
.adminFormSection .adminForm{
  background: #fff;
  border-radius: 10px;
  padding: 4em 2em;
  width: 70%;
  margin: auto;
  border: 1px solid #f79523;
}
.adminFormSection .adminForm.regsec h1{
  color: #fff;
  margin-bottom: 0.5em;
  font-size: 22px;
  line-height: 25px;
}
.adminFormSection .adminForm.regsec {
  padding: 1.5em 0 2em 0;
  background: linear-gradient(173deg, #252525 15.01%, #F89521 283.94%);
}
.adminFormSection .adminForm.regsec form select{
  margin-bottom: 0.2em;
}
.adminFormSection .adminForm.regsec form button {
  padding: 0.5em 4em;
  background: #000;
  margin-top: 1.5em;
}
.adminFormSection .adminForm .contentsSec{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
.adminFormSection .adminForm .contentsSec p{
  margin: 1em 0;
  font-size: 14px;
}
.adminFormSection .adminForm .contentsSec img{
  width: 150px;
}
.adminFormSection .adminForm .borderStyl{
  border-right: 1px solid #f79523;
}
.adminFormSection .adminForm form input{
  width: 100%;
  margin-bottom: 0.6em;
  border-radius: 5px;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  border: none;
  height: 34px;
  width: 100%;
  padding: 0 1em;
}
.adminFormSection .adminForm form button:disabled {
  cursor: not-allowed;
}
.adminFormSection .adminForm h1{
  font-size: 30px;
  line-height: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.6em;
}
.adminFormSection .adminForm form{
  padding: 0 2em;
}
.adminFormSection .adminForm.regsec form {
  width: 70%;
  margin: auto;
}
.adminFormSection .adminForm form button{
  border-radius: 30px;
  border: none;
  padding: 0.3em 4em;
  color: #F89521;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-top: 5px;
}
.adminFormSection .adminForm form select {
  border-radius: 5px;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
  color: #999;
  font-weight: 400;
  line-height: normal;
  border: none;
  height: 34px;
  font-size: 14px;
  width: 100%;
  padding: 0 1em;
  margin-bottom: 2em;
  border: none;
}
.adminFormSection .adminForm form select:focus-visible {
  outline: none;
  border: none;
}
.adminFormSection .adminForm form .error {
  padding: 0 0 4px 0;
}
.dashboardPage .sidenav {
  height: 100%;
  width: 250px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background: linear-gradient(173deg, #252525 15.01%, #F89521 283.94%);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.dashboardPage .sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.dashboardPage .sidenav a:hover {
  color: #f1f1f1;
}

.dashboardPage .sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
.dashboardPage .dashContent{
  background-color: #fff;
}
.dashboardPage .dashContent .navbar{
  color: #000;
}
.dashboardPage .dashContent .dashHeader{
  display: flex;
  background: linear-gradient(173deg, #252525 15.01%, #F89521 283.94%);
  padding: 0 1em;
}
.adminBody{
  background-color: #fff;
  overflow: hidden;
}
.dashboardPage .dropdown {
  position: relative;
  display: inline-block;
}
.dashboardPage .openNav{
  font-size:25px;
  cursor:pointer;
  color: #fff;
}

.dashboardPage .dropdown-content {
  display: none;
  position: absolute;
  background: linear-gradient(173deg, #252525 15.01%, #F89521 283.94%);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 8px 10px;
  z-index: 1;
  right: -1.5em;
}
.dashboardPage .dropdown-content a{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
}
.dashboardPage .dropdown-content ul li{
  border-bottom: 1px solid #e1c8a9;
  padding: 0.5em 0;
}
.dashboardPage .dropdown-content ul li:last-child{
  border-bottom: none;
}
.dashboardPage .nav-item span{
  color: #fff;
}
.dashboardPage .dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content ul{
  list-style: none;
  padding: 0;
}
.dropdown-content ul li{
  text-align: center;
}
#main {
  margin-left: 250px;
  transition: margin-left .5s;
}
.sidelogo{
  border-bottom: 1px solid #6c5641;
  padding: 0.6em 0;
}
.dashboardPage .sidenav {padding: 0;}
.dashboardPage .sidenav a {
  font-size: 15px;
  color: #fff;
}
.dashboardPage .dashDetails{
  padding: 1.2em 2em 2em 2em;
}
.dashboardPage .sidenav ul{
  padding: 0;
  list-style: none;
  margin: 0;
}
.dashboardPage .sidenav ul li a{
  padding: 10px 8px 10px 32px;
}

.dashboardPage table,.dashboardPage td,.dashboardPage th {  
  border: 1px solid #ddd;
  text-align: left;
  font-size: 14px;
}
.dashboardPage table thead th {
  min-width: 110px;
  max-width: 110px;
}

.dashboardPage .table-div{
  overflow: auto;
  height: 73vh;
  display: block;
}
.dashboardPage table {
  border-collapse: collapse;
  width: 100%;
  
}
.dashboardPage .table-data{
    position: relative;
  left:50px;
  top:50px;
}
.dashboardPage table thead {
  position: sticky;
  top: 0;
}
.dashboardPage th, .dashboardPage td {
  padding: 10px;
  word-break: break-word;
}
.dashboardPage .dashFormData h1{
  font-size: 16px;
}
.dashDetails .w-100{
  max-width: 100%;
}
.dashboardPage table thead th{
  background: linear-gradient(173deg, #252525 15.01%, #F89521 283.94%);
  color: #fff;
  font-weight: 500;
}
.dynamicContainer h1{
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 0;
}
.dashboardPage .dashDetails .pagination{
  justify-content: center;
  gap: 1em;
}
.dashboardPage .filterTable{
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.dashboardPage .filterTable a{
  color: #000;
}
.dashboardPage .showForm{
  display: flex;
  align-items: center;
  padding-left: 1em;
}
.dashboardPage .showForm label{
  margin: 0;
  font-size: 14px;
}
.dashboardPage .showForm p{
  margin: 0;
  font-size: 14px;
}
.dashboardPage .showForm select{
  margin: 0 0.5em;
  border-radius: 5px;
  border: 0.5px solid #a6a6a6;
  font-size: 14px;
}
.dashboardPage .showForm select:focus-visible {
  outline: none;
}
.dashboardPage .searchFilter input{
  border-radius: 5px;
  border: 0.5px solid #a6a6a6;
  font-size: 14px;
  padding: 0.2em 0.4em;
}
.dashboardPage .primaryBtn{
  color: #000;
}
.dashboardPage .secondaryBtn{
  color: #000;
}

.dashboardPage .active{
  text-decoration: underline;
}

.dashboardPage .navactive{
  background-color: #f79523;
}
.dashboardPage i{
  color: #5f4423;
}
.taisys-btn{
  background: linear-gradient(173deg, #252525 15.01%, #F89521 283.94%);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
}
.taisys-btn span{
  color: #fff;
}
.taisys-btn i{
  color: #fff;
}
.mydashboard h1{
  margin-bottom: 1em;
}
.mydashboard .barStyle{
  border: 1px solid #ddd;
  padding: 1em;
  border-radius: 20px;
}
expansion-panel {
  display: block;
  background-color: transparent;
  border-radius: 3px;
  transition: margin 225ms ease-in;
  color: #fff;
}
input:not(:checked) + expansion-panel:hover {
  background-color: transparent;
}
input:checked + expansion-panel .expansion-panel-header:after {
  transform: rotate(270deg);
}
input:checked + expansion-panel .expansion-panel-content {
  max-height: 500px;
  padding: 0;
  background: #000;
}
expansion-panel .expansion-panel-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 8px 10px 32px;
 /* height: 48px;
  */
  margin: 0;
  transition: height 200ms ease-in;
  position: relative;
  cursor: pointer;
}
expansion-panel .expansion-panel-header > * {
  flex: 1;
}
expansion-panel .expansion-panel-header:after {
  content: ">";
  position: absolute;
  font-size: 24px;
  transition: transform 200ms ease-in;
  transform: rotate(90deg);
  right: 2em;
}
expansion-panel .expansion-panel-content {
  overflow: hidden;
  max-height: 0px;
  padding: 0;
}

.noBG{
  background: transparent !important;
}
.expansion-panel-content .navactive {
  background-color: #f79523;
}
#navbarSupportedContent .dropdown.navactive{
  background: transparent !important;
}
.profileList i{
  color: #fff;
  margin-right: 0.2em;
}
.adminFormSection .adminForm.regsec form label{
  color: #c9beb2;
  font-size: 12px;
  line-height: 14px;
}
.editable input{
  font-size: 12px;
  padding: 0.2em 0.5em;
}
.editable select{
  font-size: 12px;
  padding: 0.2em 0.5em;
}
.dashboardPage table td i{
  font-size: 13px;
  line-height: 16px;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .15);
  padding: 0.2em 0.6em;
  border-radius: 5px;
  width: 32px;
  text-align: center;
}
.adminFormSection.regPage .subRole{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.adminFormSection.regPage .subRole input{
  margin-bottom: 0;
  border-radius: unset;
  box-shadow: none;
  font-size: 14px;
  border: none;
  height: 20px;
  width: 20px;
  padding: 0;
  margin-right: 0.2em;
}
.adminFormSection .adminForm.regsec h3 {
  color: #c9beb2;
  font-size: 12px;
  line-height: 14px;
  margin-top: 1em;
}
.adminFormSection.regPage .subRole label{
  margin: 0;
  padding: 0;
}
.adminFormSection.regPage .subRole .checkboxField{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px;
  width: 100%;
}
.nested { margin-left: 20px; display: none; }
.expanded { display: block !important; }
.subRole i{
  color: #fff;
  cursor: pointer;
}
.hidden {
  display: none;
}
.adminFormSection .adminForm.regsec .subRole .parent-checkbox{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: center;
  flex-direction: column;
}
.adminFormSection .adminForm.regsec .subRole label{
  display: flex;
  align-items: center;
}
.adminFormSection .wrap-parent{
  display: flex;
  gap: 10px;
  align-items: center;
}
.subRoleError.text-danger{
  color: #f25d5d;
  font-size: 12px;
  padding: 10px 0 5px 0;
}
.customRole{
  display: flex;
  flex-direction: column;
}
.dashboardPage .listView{
  padding: 0 0 0 1.2em;
  margin: 0;
}
.showRole{
  display: block !important;
}
.disabled{
  cursor: not-allowed !important;
  pointer-events: none;
  background-color: rgba(239, 239, 239, 0.3) !important;
  color: #ddd !important;
  border-color: #545454;
}
.pwdInput{
  position: relative;
}
.pwdInput i{
  font-size: 17px;
  position: absolute;
  color: #303030;
  z-index: 99;
  top: 0.55em;
  right: 0.6em;
  cursor: pointer;
}
.adminFormSection.regPage .pwdInput2{
  position: relative;
}
.adminFormSection.regPage .pwdInput2 i{
  font-size: 17px;
  position: absolute;
  color: #303030;
  z-index: 99;
  top: 0.55em;
  right: 0.6em;
  cursor: pointer;
}
.full-message{
  word-break: break-word;
}
.toggle-message{
  word-break: break-word;
}
table .tableButton{
  background: linear-gradient(173deg, #252525 15.01%, #F89521 283.94%);
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
}
.remarkModal .modalBtn{
  background: linear-gradient(173deg, #252525 15.01%, #F89521 283.94%);
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  border: none;
  padding: 6px 20px;
  border-radius: 4px;
}
.remarkModal .modal-header{
border: none;
}
.modal-title{
  font-size: 16px;
}
.remarkContainer{
  height: 13vh;
  overflow-y: scroll;
}
.remarkContainer::-webkit-scrollbar{
    width: 3px;
    background-color:#fff;
}
.remarkContainer::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color: #ae7837;
}
.remarkBox{
  background: #dce9ff;
  padding: 7px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.remarked{
  font-size: 12px;
  line-height: 16px;
}
.remarkBy{
  font-weight: 600;
  font-size: 12px;
}

@media (min-width:2001px) and (max-width:3000px){
  .iotPage .mobility ul {
    width: 54%;
    left: 32em;
  }
  .aboutPage .experts .card{
    height: 276px;
  }
  .aboutPage .cardDetails .cardImg img {
    height: 260px;
  }
  .career .firstSection {
    padding: 11em 0;
  }
  .career .valueCareer .valueBox {
    width: 100%;
    height: 247px;
  }
  .career .firstSection .contents h1 br{
    display: none;
  }
  .career .valueCareer .contents {
    width: 67%;
  }
}
@media (min-width:1900px) and (max-width:2000px){
  .career .valueCareer .contents {
    width: 67%;
  }
  .career .valueCareer .valueBox {
    height: 228px;
  }
  .career .firstSection {
    padding: 11em 0;
  }
  .iotPage .mobility ul {
    width: 67%;
    left: 17em;
  }
  .aboutPage .experts .card{
    height: 276px;
  }
  .aboutPage .cardDetails .cardImg img {
    height: 215px;
  }
  .career .firstSection .contents h1 br{
    display: none;
  }
}
@media (min-width:1900px) and (max-width:3000px){
  body {
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .home .headSection .rightspark {
    bottom: 13em;
  }
  .validation .verify .bg {
    height: 256px;
  }
  .iotPage .boxbg {
    height: 254px;
  }
  .efficiency .custmBox {
    width: 55%;
  }
  .automotive.safety .ourSafety .bgEven, .automotive.safety .ourSafety .bgOdd{
    height: 288px;
  }
  .home .expertise .bgEven, .home .expertise .bgOdd{
    height: 245px;
  }
  .automotive.safety .ourSafety .innerTxt {
    top: -3em;
  }
  .automotive.safety .ourSafety .imgStyle {
    margin-bottom: 3em;
  }
  .home .expertise .imgStyle {
    margin-bottom: 2em;
  }
}
@media (min-width:1350px) and (max-width:1500px){
  .career .firstSection .contents h1 br{
    display: none;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-top .cstmList {
    width: 190px;
  }
  .efficiency .custmBox {
    width: 75%;
  }
  .home .headSection h1 {
    font-size: 60px;
    line-height: 60px;
  }
  .aboutPage .experts .card{
    height: 218px;
  }
  .home .articles .boxStyle p {
    font-size: 16px;
    line-height: 25px;
  }
  .footer ul li a {
    font-size: 12px;
  }
  .iFleetVC .downIcon{
    bottom: 6em;
  }
  .career .whyIsmart .rectangleBox h3 {
    font-size: 27px;
  }
  .career .careerForm.contactPage .formDetails p {
    font-size: 20px;
  }
}
@media (min-width:1281px) and (max-width:1349px){
  .home .articles .boxStyle p {
    font-size: 15px;
    line-height: 22px;
    padding: 0.6em 1em;
  }
  .career .firstSection .contents h1 br{
    display: none;
  }
  .career .whyIsmart .rectangleBox h3 {
    font-size: 27px;
  }
  .career .careerForm.contactPage .formDetails p {
    font-size: 20px;
  }
  .career.jobDetailPage .jdFirst .contents ul li {
    font-size: 14px;
    margin-right: 0.2em;
  }
  .career.jobDetailPage .jdFirst .contents ul li img {
    margin: 0 0.5em;
    width: 24px;
  }
}
@media (min-width:1100px) and (max-width:1280px){
  .career.jobDetailPage .jdFirst .contents ul li {
    font-size: 14px;
    margin-right: 0.2em;
  }
  .career.jobDetailPage .experience .contents {
    padding: 0 0 0 3em;
  }
  .career.jobDetailPage .jdFirst .contents ul li img {
    margin: 0 0.5em;
    width: 24px;
  }
  .ismartModal .modal-content {
    background-size: cover;
  }
  .career .valueCareer .contents {
    width: 88%;
  }
  .career .valueCareer .valueBox.box2 h3 {
    padding: 0.4em 0 0 2em;
  }
  .career .whyIsmart .rectangleBox h3 {
    font-size: 22px;
  }
  .career .valueCareer .valueBox h3 {
    font-size: 21px;
  }
  .career .valueCareer .valueBox {
    width: 238px;
  }
  .career .secondSection h2 {
    font-size: 35px;
  }
  .career .careerForm.contactPage .formDetails p {
    font-size: 19px;
  }
  .career .firstSection .contents h1 br{
    display: none;
  }
  .iotPage .counter h2 {
    font-size: 50px;
  }
  .iotPage .counter .box {
    height: 198px;
  }
  .fleetForm.ismartForm .formDetails p {
    color: #fff;
    font-size: 14px;
  }
  .ismartFromSec h1 {
    font-size: 72px;
    line-height: 72px;
  }
  .ismartFromSec h2 {
    font-size: 26px;
    margin-bottom: 0;
    padding-top: 0.5em;
  }
  .formHeroSection .contents {
    height: 100vh;
  }
  .home .articles .boxStyle p {
    font-size: 15px;
    line-height: 22px;
    padding: 0.6em 1em;
  }
  .automotive .carbon h2 {
    font-size: 30px;
  }
  .contactPage .myField {
    margin-bottom: 1.2em;
  }
  .home .industry p {
    font-size: 17px;
  }
  .home .headSection h1 {
    font-size: 53px;
    line-height: 53px;
  }
  .home .headSection .leftspark, .home .headSection .rightspark{
    top: 3em;
  }
  .home .testimonial .box h3 {
    font-size: 16px;
    margin: 1em 0;
  }
  .home .testimonial .box {
    height: 465px;
  }
  .contactDetails p, .contactDetails li a {
    font-size: 14px;
  }
  .home .headSection{
    height: 91vh;
  }
  .aboutPage h1 {
    font-size: 35px;
  }
  .aboutPage .vision .innercontents {
    right: 6em;
  }
  .aboutPage .experts .card {
    height: 205px;
  } 
  .aboutPage .news .cardBox {
    padding: 3em 2em;
  }
  .footer h3 {
    font-size: 13px;
  }
  .footer h3 a {
    font-size: 13px;
  }
  .aboutPage .vision .imgStyle img {
    width: 89%;
  }
  .efficiency h2 {
    width: 600px;
  }
  .fleetPage h1 {
    font-size: 43px;
  }
  .fleetPage .fleetCard h2 {
    font-size: 40px;
  }
  .fleetSpend h2 {
    font-size: 41px;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-top .cstmList {
    width: 150px;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-top .cstmList li {
    font-size: 10px;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-bot .cstmList li {
    font-size: 10px;
  }
  .iotPage .boxbg{
    padding: 1em 2em 1em 2.5em;
    height: 174px;
  }
  .iotPage .boxbg p {
    margin-top: 0.5em;
  }
  .iotPage .mobility .wave {
    height: 269px 
  }
  .iotPage .mobility li:nth-child(2), .iotPage .mobility li:nth-child(4) {
    margin-top: -16em;
  }
  .iconnect .contents h1 span {
    padding-left: 2em;
  }
  .iconnect .contents h1 {
    font-size: 37px;
  }
  .iconnect .mgtSection h3 {
    font-size: 11px;
  }
  .validation .verify .bg {
    height: 175px;
  }
  .validation .verify p {
    font-size: 11px;
  }
  .validation .security .box {
    padding: 2.5em 0.5em;
  }
  .footer ul li a {
    font-size: 11px;
  }
  .automotive.onechip .headSection .contents h1 {
    font-size: 33px;
  }
  .automotive.dms h1 {
    font-size: 38px;
  }
  .automotive .headSection {
    padding: 6em 0;
  }
  .automotive.aiSensor .headSection, .automotive.adas .headSection {
    padding: 6em 0;
  }
  .aiSensor .tracks .contents p {
    font-size: 10px;
  }
  .automotive.adas .empower p {
    font-size: 12px;
  }
  .insight h2 {
    margin-bottom: 0.5em;
  }
  .headSection {
    padding: 6em 0;
  }
  .automotive.safety .headSection {
    height: 82vh;
  }
  .fleetPage .customHead {
    margin-top: -4em;
    padding-top: 6em;
  }
  .efficiency .contents {
    width: 600px;
  }
  .efficiency .custmBox {
    width: 80%;
  }

}
/* IPAD */
@media (min-width:800px) and (max-width:1000px){
  .career.jobDetailPage .jdFirst .contents ul li {
    font-size: 12px;
  }
  .career .careerForm.contactPage .formDetails p {
    font-size: 14px;
  }
  .home .testimonial .box img {
    width: 105px;
  }
  .taisysContact {
    padding: 4em 0;
  }
  .contactBanner img {
    width: 100%;
    height: 430px;
    object-fit: cover;
  }
  .contactDetails p, .contactDetails li a{
    font-size: 9px;
  }
  .home .industry p {
    font-size: 12px;
    line-height: 20px;
  }
  .home .animeSec img {
    margin-bottom: -2em;
  }
  .circles {
    height: 39vh;
  }
  .home .headSection h1 .span2 {
    padding-left: 4em;
  }
  .home .spark, .fleetPage .spark, .automotive .spark, .automotive .spark1{
    display: none;
  }
  .home .headSection .contents.left {
    justify-content: start;
    right: 0;
  }
  .home .headSection .contents.right {
    justify-content: start;
    left: 1em;
  }
  .contactPage .formBoxOuter {
    margin: 3em 0 2em 0;
  }
  .home .bannerContent video {
    height: 267px;
  }
  .home .headSection h1 {
    font-size: 35px;
    line-height: 44px;
  }
  .order1{
    order: 1;
  }
  .order2{
    order: 2;
  }
  .order3{
    order: 3;
  }
  .aboutPage .headSection {
    padding: 7em 0;
  }
  .home .sliderLogo {
    padding: 0.8em 0;
  }
  .aboutPage .partnership h2, .aboutPage .taisysAction h2, .aboutPage .experts h2 ,.aboutPage .clients h2, .aboutPage .news h2, .aboutPage .events h2, .aboutPage .story h2, .aboutPage .journey h2, .aboutPage .vision h2{
    font-size: 18px;
  }
  .aboutPage .news {
    overflow: hidden;
  }
  .aboutPage h1 {
    font-size: 20px;
    width: 100%;
  }
  .aboutPage h1 p {
    font-size: 16px;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-bot .cstmList {
    left: 2em;
    top: unset;
  }
  .ps-timeline-sec {
    background: transparent;
  }
  .aboutPage .experts {
    padding: 0 0 3em 0;
  }
  .aboutPage .experts .card {
    border-radius: 24px;
    height: 130px;
    margin-bottom: 1em;
  }
  .aboutPage .experts h5 {
    font-size: 10px;
  }
  .aboutPage .experts p{
    font-size: 11px;
  }
  .partnership .imgStyle, .clients .imgStyle {
    padding: 1em 1em;
    height: 84px;
    margin-bottom: 1em;
  }
  .partnership .imgStyle img, .clients .imgStyle img {
    height: 45px;
  }
  .aboutPage .partnership {
    padding: 3em 0 0 0;
  }
  .aboutPage .news .cardBox a {
    font-size: 12px;
    line-height: 25px;
  }
  .aboutPage .news .cardBox {
    height: 185px;
    padding: 3em 1em;
  }
  .aboutPage .events .cardBox {
    padding: 1em 1em;
    margin-bottom: 1em;
  }
  .aboutPage .events .cardBox p {
    font-size: 10px;
  }
  .aboutPage .events .cardImg {
    padding: 1em;
    height: 90px;
  }
  .aboutPage .events {
    padding: 3em 0 2em 0;
  }
  .footer {
    padding: 35px 12px;
  }
  .footer ul li, .footer ul li a {
    font-size: 7px;
  }
  .footer h3 {
    font-size: 8px;
    margin-top: 10px;
  }
  .footer .social {
    margin-left: 0;
    width: 33px;
    display: block;
    padding-right: 0.8em;
  }
  .footer .social img{
    width: 30px;
  }
  .aboutPage .story p {
    font-size: 10px;
  }
  .aboutPage .story {
    padding: 4em 1em;
  }
  .aboutPage .vision .innercontents {
    top: 1em;
    right: 10em;
    width: 100%;
  }
  .aboutPage .vision p {
    font-size: 12px;
  }
  .aboutPage .vision .imgStyle img{
    width: 70%;
  }
  .aboutPage .vision {
    padding: 3em 1em;
  }
  .ps-timeline-sec .container ol:before {
    background: #348e80;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: 130px !important;
    left: 36px !important;
  }
  .ps-timeline-sec .container ol:after {
    background: #348e80;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: inherit !important;
    left: 36px;
  }
  .ps-timeline-sec .container ol.ps-timeline {
    margin: 0 !important;
    border-left: 2px solid #348e80;
    padding-left: 0 !important;
    padding-top: 111px !important;
    border-top: 0 !important;
    margin-left: 25px !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li {
    height: 180px;
    float: none !important;
    width: 100% !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li:nth-child(2) .img-handler-bot img {
    width: 70px;
  }
  .ps-timeline-sec .container ol.ps-timeline li:last-child {
    margin: 0;
    bottom: 0 !important;
    height: 172px; 
  }
  .ps-timeline-sec .container ol.ps-timeline li:last-child .img-handler-bot {
    bottom: 40px !important;
    width: 40% !important;
    margin-left: 25px !important;
    margin-top: 0 !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li:last-child .img-handler-bot img {
    width: 100%;
  }
  .ps-timeline-sec .container ol.ps-timeline li:last-child .ps-top {
    margin-bottom: 0 !important;
    top: 20px;
    width: 50% !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span {
    left: 0 !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
    content: none !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
    content: none !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
    content: none !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
    content: none !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li .img-handler-top {
    position: absolute !important;
    bottom: 170px !important;
    width: 30% !important;
    float: left !important;
    margin-left: 35px !important;
    margin-bottom: 0 !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li .img-handler-top img {
    margin: 0 auto !important;
    width: 80% !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li .img-handler-bot {
    position: absolute !important;
    bottom: 169px !important;
    width: 30% !important;
    float: left !important;
    margin-left: 35px !important;
    margin-bottom: 0 !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li p {
    text-align: left !important;
    width: 100% !important;
    margin: 0 auto !important;
    margin-top: 0px !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li .ps-top {
    width: 60% !important;
    float: right !important;
    right: 0;
    top: -40px;
  }
  .ps-timeline-sec .container ol.ps-timeline li .ps-bot {
    width: 60% !important;
    float: right !important;
    right: 0;
    top: -40px;
  }
  .img-handler-top p {
    width: 100%;
    top: 3em;
    left: 1em;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-bot-lg .cstmList {
    top: unset;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-top-lg .cstmList {
    bottom: unset;
    left: 2em;
  }
  .ps-timeline-sec h3 {
    font-size: 18px;
    margin-bottom: 0;
    text-align: left;
    margin-left: 1.2em;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-bot .cstmList li{
    height: auto;
    font-size: 10px;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-top .cstmList li{
    height: auto;
    font-size: 10px;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-top .cstmList {
    left: 2em;
    bottom: unset;
    top: unset;
  }
  .aboutPage h2:before, .aboutPage h2:after{
    background: unset !important;
  }
  .headSection {
    padding: 4em 0;
  }
  .myNav {
    border-radius: 8px;
  }
  .myNav ul li {
    font-size: 12px;
    line-height: 12px;
    width: 100%;
  }
  .myNav ul .nav-item::after {
    width: 0;
    background: transparent;
  }
  .home .headSection {
    height: 378px;
    background-size: contain;
    padding: 4em 0 2em 0;
    background-position: bottom;
    background-repeat: no-repeat;
  }
  .home .headSection h1 img{
    width: 60%;
  }
  .home .swiper-container .slideBox {
    padding: 0.5em 0.5em;
  }
  .home .intro .spark {
    display: none;
  }
  .home .expertise h2 {
    margin-bottom: 3em;
  }
  .iotPage .mobility p {
    margin-bottom: 4em;
  }
  .automotive .compact {
    padding: 3em 0;
  }
  .automotive .function {
    height: 450px;
  }
  .home .intro h2, .home .expertise h2, .home .technology h2, .home .marketplace h2, .home .industry h2{
    font-size: 18px;
    line-height: 24px;
  }
  .home .intro h2 img{
    width: 34%;
    margin-left: 5px;
  }
  .home .intro p {
    font-size: 12px;
  }
  .home .technology p {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
  }
  .home .technology .rightspark, .home .technology .leftspark{
    display: none;
  }
  .home .headSection .leftspark, .home .headSection .rightspark {
    top: 7em;
  }
  .home .headSection .leftspark{
   text-align: left;
  }
  .home .headSection .rightspark{
    text-align: end;
  }
  .home .headSection .leftspark img{
    width: 60%;
    opacity: 50%;
  }
  .home .headSection .rightspark img{
    width: 60%;
    opacity: 50%;
  }
  .home .marketplace{
    padding: 3em 0;
  }
  .home .marketplace h2 p {
    font-size: 12px;
  }
  .home .marketplace p {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 0;
  }
  .home .marketplace .imgStyle{
    text-align: center;
  }
  .home .marketplace img{
   width: 80%;
   margin-bottom: 1em;
  }
  .home .industry {
    padding: 3em 0 0 0;
  }
  .home .industry h2 br{
    display: none;
  }
  .home .testimonial .box p {
    font-size: 9px;
  }
  .home .testimonial .box {
    padding: 1em 1em;
    height: auto;
    margin-bottom: 1em;
    height: 332px;
  }
  .testimonial .owl-carousel .owl-prev{
    left: -3em;
    top: 6.5em;
  }
  .testimonial .owl-carousel .owl-next {
    right: -3em;
    top: 6.5em;
  }
  .home .testimonial {
    padding: 3em 0 2em 0;
  }
  .footer h3 a{
    font-size: 8px;
    margin-top: 0;
  }
  .home .expertise {
    padding: 3em 0 3em 0;
  }
  .home .expertise .boxBg {
    width: 100%;
    margin: auto;
    padding-left: 2em;
  }
  .home .expertise .txtBox p {
    font-size: 10px;
  }
  .automotive.onechip .headSection .contents h1 p {
    font-size: 18px;
  }
  .automotive.onechip .headSection .contents h1 img {
    width: 145px;
  }
  .automotive.onechip .headSection .contents h1 {
    font-size: 18px;
    width: 100%;
  }
  .automotive .compact .imgStyle {
    text-align: center;
  }
  .automotive .compact h2 p{
    font-size: 10px;
  }
  .automotive .compact h2, .automotive .savings h2, .automotive .dreambg h2, .automotive .function h2, .automotive .monitor h2, .automotive .whydms h2, .automotive .secureDrive h2, .automotive .monitor h2, .aiSensor .tracks h2, .aiSensor .measurement .contents h2, .automotive .carbon h2, .automotive .compliant h2, .automotive.adas .empower h2, .automotive .controls h2, .automotive.safety .detect h2, .automotive.safety .ourSafety h2, .validation .verify h2, .fleetPage .fleetCard h2, .fleetSpend h2, .efficiency h2, .insight h2, .omniPay h2, .iotPage .connectivity h2, .iotPage .mobility h2, .iotPage .gateway h2{
    font-size: 18px;
  }
  .automotive .dreambg {
    height: auto;
    background: none;
  }
  .automotive .dreambg p {
    font-size: 12px;
  }
  .automotive .dream {
    padding: 4em 0;
  }
  .lefthand img, .righthand img{
    width: 210px;
  }
  .automotive .function p {
    font-size: 12px;
  }
  .automotive .function p br{
   display: none;
  }
  .automotive .headSection {
    padding: 2em 0;
  }
  .automotive.dms h1 {
    font-size: 20px;
  }
  .automotive.dms .headSection p {
    font-size: 12px;
  }
  .automotive .monitor, .automotive .secureDrive {
    padding: 3em 0;
  }
  .automotive .whydms h3 {
    font-size: 15px;
  }
  .automotive .monitor .contents {
    text-align: center;
    padding-top: 1em;
  }
  .automotive .monitor .contents h2, .automotive .monitor .contents p{
    text-align: end;
  }
  .automotive.aiSensor .contents h1, .automotive.footprint h1, .automotive.adas h1, .automotive.safety .headSection h1, .iconnect .contents h1, .validation .contents h1, .fleetPage h1, .iotPage h1{
    font-size: 18px;
  }
  .aiSensor .measurement .contents p {
    font-size: 12px;
    width: 100%;
    margin-left: auto;
  }
  .aiSensor .measurement .contents{
    padding-top: 1em;
    text-align: end;
  }
  .automotive.aiSensor .contents p {
    font-size: 12px;
  }
  .automotive.aiSensor .headSection {
    padding: 4em 0;
  }
  .aiSensor .tracks .contents {
    padding: 1em 1em;
    margin-bottom: 1em;
    height: 140px; 
  }
  .aiSensor .tracks .contents img {
    margin-bottom: 0.4em;
    width: 60%;
  }
  .aiSensor .tracks p {
    font-size: 10px;
  }
  .aiSensor .tracks {
    padding: 3em 0;
  }
  .aiSensor .tracks .boxSize {
    width: 100%;
    margin-top: 2em;
  }
  .aiSensor .measurement {
    padding: 3em 0;
  }
  .automotive .compliant .box{
    margin-bottom: 1em;
  }
  .automotive .compliant .box {
    padding: 1em 0.8em;
    height: 160px;
  }
  .automotive .compliant {
    padding: 3em 0;
  }
  .automotive .compliant .box p {
    font-size: 12px;
  }
  .automotive .compliant .head {
    margin-bottom: 2em;
  }
  .automotive.footprint .headSection p {
    font-size: 14px;
  }
  .automotive .compliant .head p {
    font-size: 14px;
  }
  .automotive.adas .headSection h1 p {
    font-size: 14px;
  }
  .automotive.adas .headSection p {
    font-size: 12px;
    margin-bottom: 2em;
  }
  .automotive.adas .empower .imgStyle {
    padding-top: 1em;
  }
  .automotive.adas .empower .iconBody {
    width: 100%;
  }
  .automotive.adas .empower p {
    font-size: 10px;
  }
  .automotive.adas .empower,.automotive .controls {
    padding: 3em 0;
  }
  .automotive .controls p , .automotive .controls ul li{
    font-size: 12px;
  }
  .automotive .controls .space {
    padding-top: 2em;
  }
  .automotive .controls .imgStyles {
    padding-left: 0;
  }
  .automotive.safety .headSection .contents {
    padding: 0 0 0 3em;
  }
  .automotive.safety .headSection p {
    width: 100%;
    font-size: 12px;
  }
  .automotive.safety .headSection .row {
    height: auto;
  }
  .automotive.safety .headSection {
    height: auto;
  }
  .automotive.safety .headSection{
    padding: 4em 0;
  }
  .automotive.safety .detect {
    padding: 3em 0;
  }
  .automotive.safety .boxBg{
    padding-left: 2em;
  }
  .automotive.safety .ourSafety .txtBox p {
    font-size: 10px;
  }
  .automotive.safety .ourSafety .innerTxt {
    top: -1em;
  }
  .automotive.safety .ourSafety .imgStyle img {
    width: 80%;
  }
  .automotive.safety .ourSafety {
    padding: 3em 0 3em 0;
  }
  .automotive.safety .ourSafety .bgOdd, .automotive.safety .ourSafety .bgEven {
    width: 100%;
    height: 174px;
  }
  .iconnect .contents h1 p{
    font-size: 12px;
  }
  .iconnect .contents h1 span {
    padding-left: 0;
  }
  .iotPage.iconnect .imgStyle img {
    width: 80%;
  }
  .iotPage.iconnect .imgStyle {
   text-align: center;
  }
  .iotPage.iconnect .spark{
    display: none;
  }
  .iconnect .box.lgBox{
    margin-bottom: 1em;
  }
  .iconnect .mgtSection h3 {
    font-size: 12px;
  }
  .iconnect .box {
    padding: 1em 0.5em;
    height: 168px;
    margin-bottom: 1em;
  }
  .iconnect .mgtSection {
    padding-bottom: 2em;
  }
  .validation .contents h1 p {
    font-size: 17px;
  }
  .validation .contents h1{
    margin-top: 1em;
  }
  .validation .verify {
    padding: 3em 0;
  }
  .validation .verify .bg {
    height: 110px;
    margin-bottom: 1em;
  }
  .validation .verify p {
    font-size: 7px;
  }
  .validation .securitySec {
    padding: 0;
  }
  .validation .security {
    padding: 3em 0;
  }
  .validation .security .box {
    padding: 2em 0.5em;
    margin-bottom: 1em;
  }
  .validation .mobility.layers .wave {
    height: 150px;
  }
  .iotPage .mobility li:nth-child(2), .iotPage .mobility li:nth-child(4) {
    margin-top: -9em;
  }
  .validation .mobility.layers li p {
    font-size: 8px;
  }
  .iotPage .mobility ul {
    width: 78%;
    left: 5em;
  }
  .validation .mobility.layers {
    padding: 4em 0;
  }
  .iotPage.validation .spark{
    display: none;
  }
  .fleetPage h1 p {
    font-size: 24px;
    margin-top: 1em;
  }
  .fleetPage .customHead {
    height: auto;
  }
  .fleetPage .headSection {
    padding: 5em 0;
  }
  .fleetPage .fleetCard p {
    font-size: 12px;
    margin-bottom: 4em;
  }
  .fleetPage .fleetCard img {
    width: 100%;
  }
  .fleetSpend p {
    font-size: 20px;
  }
  .fleetSpend ul li {
    font-size: 12px;
  }
  .w80 {
    width: 100%;
    margin: auto;
  }
  .fleetSpend .imgStyle img{
    width: 56%;
  }
  .omniPay p, .efficiency p, .insight p{
    font-size: 12px;
  }
  .insight ul li{
    font-size: 12px;
  }
  .omniPay h3 {
    font-size: 12px;
    margin-bottom: 1em;
  }
  .omniPay {
    padding: 3em 0;
  }
  .efficiency .imgStyle {
    left: 0;
  }
  .efficiency .contents {
    right: 0;
    padding-top: 2em;
  }
  .insight {
    padding: 3em 0;
  }
  .contactPage .formBox {
    padding: 0;
    margin: 0;
  }
  .contactPage .formDetails {
    padding: 2em 2em 0 2em;
  }
  .contactPage .myField {
    margin-bottom: 1em;
  }
  .contactPage h1 {
    font-size: 18px;
  }
  .automotive .compact .contents {
    padding-top: 2em;
  }
  .automotive .monitor p , .automotive .secureDrive p, .iotPage .mobility p{
    font-size: 12px;
  }
  .iotPage .contents h1 p {
    font-size: 20px;
  }
  .iotPage .headSection .imgStyle{
    text-align: center;
  }
  .iotPage .headSection .imgStyle img{
    width: 80%;
  }
  .iotPage .headSection .spark{
    display: none;
  }
  .iotPage .mobility .wave {
    height: 162px;
  }
  .iotPage .mobility {
    padding: 3em 0;
  }
  .iotPage .gateway p {
    font-size: 12px;
    margin-bottom: 0;
    margin-top: 1em;
  }
  .iotPage .gateway {
    height: 255px;
  }
  .iotPage .counter h2{
    font-size: 44px;
  }
  .iotPage .counter p {
    font-size: 12px;
    margin: 0;
  }
  .iotPage .connectivity p {
    font-size: 8px;
    margin-bottom: 0.8em;
  }
  .iotPage .counter .box {
    height: 143px;
    margin-bottom: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .iotPage .counter {
    padding: 3em 0 2em 0;
  }
  .iotPage .boxbg {
    padding: 1em 1em;
    width: 100%;
    height: 129px;
    margin-bottom: 1em;
  }
  .mainBody {
    padding-top: 4em;
  }
  .automotive.dms .headSection, .automotive.footprint .headSection, .automotive.adas .headSection {
    padding: 5em 0;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    color: #000;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu a {
    font-size: 12px;
    line-height: 12px;
    color: #000;
    border-bottom: none;
  }
  .home .testimonial .box h3 {
    font-size: 10px;
  }
  .home .testimonial h2{
    font-size: 18px;
  }
  .home .testimonial .box img{
    width: 70px;
    height: 70px;
    object-fit: contain;
  }
  .iconnect .mgtSection p {
    font-size: 10px;
  }
  .automotive.onechip .spark, .automotive.footprint .spark {
    display: none;
  }
  .swiper-horizontal {
    overflow-x: hidden !important;
  }
  .contactBanner {
    padding: 0;
  }
  .contactPage .submitBtn {
    padding: 0.6em 5em;
  }
  .aboutPage .clients button, .aboutPage button {
    font-size: 12px;
  }
  .home .expertise .bgOdd, .home .expertise .bgEven {
    height: 180px;
  }
  .automotive.safety .ourSafety .bgOdd, .automotive.safety .ourSafety .bgEven{
    height: 170px;
  }
  .home .intro ul li {
    font-size: 8px;
    width: 100%;
  }
  .taisysContact .formDetails{
    width: 70%;
  }

}
/* ENDS */
@media (max-width:768px){
  .order1{
    order: 1;
  }
  .order2{
    order: 2;
  }
  .order3{
    order: 3;
  }
  .navbar-light .navbar-toggler {
    background: linear-gradient(173.16deg, #c47815 15.01%, #000000 283.94%);
  }
  .career .valueCareer .valueBox {
    width: 100%;
    height: 162px;
  }
  .career .valueCareer .valueBox {
    padding: 2em 0.4em;
    text-align: center;
  }
  .career .valueCareer .valueBox img{
    height: 55px;
    width: 45px;
  }
  .career .whyIsmart .text1 img{
    width: 56px;
  }
  
  .career .careerForm.contactPage .formDetails p {
    font-size: 12px;
  }
  .career .whyIsmart .rectangleBox h3{
    font-size: 15px;
  }
  .career .whyIsmart .rectangleBox p {
    font-size: 14px;
    line-height: 25px;
  }
  .career .secondSection h2{
    font-size: 24px;
  }
  .career .valueCareer .valueBox .imgStyle, .career .valueCareer .valueBox.box3 .imgStyle, .career .valueCareer .valueBox.box4 .imgStyle,.career .valueCareer .valueBox.box1 .imgStyle, .career .valueCareer .valueBox.box3 h3, .career .valueCareer .valueBox.box4 h3, .career .valueCareer .valueBox.box1 h3{
    text-align: center;
  }
  .career .valueCareer .valueBox.box2 h3 {
    padding: 0;
  }
  .career .valueCareer .valueBox h3 {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
  }
  .career .firstSection .contents h1 br{
    display: none;
  }
  .career .firstSection .contents h1{
    font-size: 22px;
  }
  .whyIsmart .rectangleBox {
    padding: 2em 2em;
  }
  .InAction .actionBox img {
    width: 106px;
    height: 136px;
  }
  .InAction .actionBox p {
    font-size: 12px;
    line-height: 20px;
  }
  .InAction .actionBox {
    height: 207px;
  }
  .knowMore a{
    font-size: 12px;
  }
  .aiSensor .measurement .imgStyle img{
    width: 66%;
  }
  .testimonial .owl-carousel .owl-prev, .testimonial .owl-carousel .owl-next {
    position: unset;
  }
  .testimonial .owl-carousel button span {
    font-size: 34px;
    display: block;
    width: 44px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
  }
  .aboutPage .cardDetails .cardImg img {
    height: 130px;
  }
  .aboutPage .news .cardBox a {
    font-size: 12px;
  }
  .home .spark, .fleetPage .spark, .automotive .spark, .automotive .spark1{
    display: none;
  }
  .home .headSection h1 {
    display: unset;
    font-size: 32px;
    line-height: 44px;
  }
  .home .bannerContent video {
    height: 310px;
  }
  .home .headSection .contents.left {
    justify-content: start;
    right: 0;
  }
  .home .headSection .contents.right {
    justify-content: start;
    left: 1em;
  }
  .circles {
    display: none;
  }
  .contactBanner {
    padding: 4em 0 0 0;
  }
  .myNav.fixed-top {
    top: 0.6em;
  }
  .myNav{
    width: 100%;
  }
  .aboutUrl{
    padding-left: 0;
  }
 
  .home .bannerContent .row {
    width: unset;
  }
  .footerContainer {
    width: 100%;
    margin: auto;
    padding: 0 12px;
  }
  .container80 {
    width: 100%;
    padding: 0 12px;
  }
  .aboutPage .partnership h2, .aboutPage .taisysAction h2, .aboutPage .experts h2 ,.aboutPage .clients h2, .aboutPage .news h2, .aboutPage .events h2, .aboutPage .story h2, .aboutPage .journey h2, .aboutPage .vision h2{
    font-size: 18px;
  }
  .aboutPage .news {
    overflow: hidden;
  }
  .aboutPage h1 {
    font-size: 20px;
    width: 100%;
  }
  .aboutPage h1 p {
    font-size: 16px;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-bot .cstmList {
    left: 2em;
    top: unset;
  }
  .ps-timeline-sec {
    background: transparent;
  }
  .aboutPage .experts {
    padding: 0 0 3em 0;
  }
  .aboutPage .experts .card {
    border-radius: 24px;
    height: 130px;
    margin-bottom: 1em;
  }
  .aboutPage .experts h5 {
    font-size: 10px;
  }
  .aboutPage .experts p{
    font-size: 11px;
  }
  .partnership .imgStyle, .clients .imgStyle {
    padding: 1em 1em;
    height: 84px;
    margin-bottom: 1em;
  }
  .partnership .imgStyle img, .clients .imgStyle img {
    height: 45px;
  }
  .aboutPage .partnership {
    padding: 3em 0 0 0;
  }
  .aboutPage .news .cardBox p {
    font-size: 12px;
    line-height: 25px;
  }
  .aboutPage .news .cardBox {
    height: 185px;
    padding: 3em 1em;
  }
  .aboutPage .events .cardBox {
    padding: 1em 1em;
    margin-bottom: 1em;
  }
  .aboutPage .events .cardBox p {
    font-size: 10px;
  }
  .aboutPage .events .cardImg {
    padding: 1em;
    height: 90px;
  }
  .aboutPage .events {
    padding: 3em 0 2em 0;
  }
  .footer {
    padding: 1em 0;
  }
  .footer ul li, .footer ul li a {
    font-size: 8px;
  }
  .footer h3 {
    font-size: 12px;
    margin-top: 10px;
  }
  .footer .social {
    margin-left: 0;
    width: 33px;
    display: inline;
    padding-right: 0.8em;
  }
  .aboutPage .story p {
    font-size: 10px;
  }
  .aboutPage .story {
    padding: 2em 1em;
  }
  .aboutPage .vision .innercontents {
    top: -3em;
    right: 0;
    width: 100%;
  }
  .aboutPage .vision p {
    font-size: 12px;
  }
  .aboutPage .vision .imgStyle img{
    width: 100%;
  }
  .aboutPage .vision {
    padding: 3em 1em;
  }
  .ps-timeline-sec .container ol:before {
    background: #348e80;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: 130px !important;
    left: 36px !important;
  }
  .ps-timeline-sec .container ol:after {
    background: #348e80;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: inherit !important;
    left: 36px;
  }
  .ps-timeline-sec .container ol.ps-timeline {
    margin: 58px 0 !important;
    border-left: 2px solid #348e80;
    padding-left: 0 !important;
    padding-top: 111px !important;
    border-top: 0 !important;
    margin-left: 25px !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li {
    height: 210px;
    float: none !important;
    width: 100% !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li:nth-child(2) .img-handler-bot img {
    width: 70px;
  }
  .ps-timeline-sec .container ol.ps-timeline li:last-child {
    margin: 0;
    bottom: 0 !important;
    height: 172px; 
  }
  .ps-timeline-sec .container ol.ps-timeline li:last-child .img-handler-bot {
    bottom: 40px !important;
    width: 40% !important;
    margin-left: 25px !important;
    margin-top: 0 !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li:last-child .img-handler-bot img {
    width: 100%;
  }
  .ps-timeline-sec .container ol.ps-timeline li:last-child .ps-top {
    margin-bottom: 0 !important;
    top: 20px;
    width: 50% !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span {
    left: 0 !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
    content: none !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
    content: none !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
    content: none !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
    content: none !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li .img-handler-top {
    position: absolute !important;
    bottom: 170px !important;
    width: 30% !important;
    float: left !important;
    margin-left: 35px !important;
    margin-bottom: 0 !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li .img-handler-top img {
    margin: 0 auto !important;
    width: 80% !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li .img-handler-bot {
    position: absolute !important;
    bottom: 169px !important;
    width: 30% !important;
    float: left !important;
    margin-left: 35px !important;
    margin-bottom: 0 !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li p {
    text-align: left !important;
    width: 100% !important;
    margin: 0 auto !important;
    margin-top: 0px !important;
  }
  .ps-timeline-sec .container ol.ps-timeline li .ps-top {
    width: 60% !important;
    float: right !important;
    right: 0;
    top: -40px;
  }
  .ps-timeline-sec .container ol.ps-timeline li .ps-bot {
    width: 60% !important;
    float: right !important;
    right: 0;
    top: -40px;
  }
  .img-handler-top p {
    width: 100%;
    top: 3em;
    left: 1em;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-bot-lg .cstmList {
    top: unset;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-top-lg .cstmList {
    bottom: unset;
    left: 2em;
  }
  .ps-timeline-sec h3 {
    font-size: 18px;
    margin-bottom: 0;
    text-align: left;
    margin-left: 1.2em;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-bot .cstmList li{
    height: auto;
    font-size: 10px;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-top .cstmList li{
    height: auto;
    font-size: 10px;
  }
  .ps-timeline-sec .container ol.ps-timeline .img-handler-top .cstmList {
    left: 2em;
    bottom: unset;
    top: unset;
  }
  .aboutPage h2:before, .aboutPage h2:after{
    background: unset !important;
  }
  .headSection {
    padding: 4em 0;
  }
  .myNav ul li {
    font-size: 12px;
    line-height: 12px;
    width: 100%;
  }
  .myNav ul .nav-item::after {
    width: 0;
    background: transparent;
  }
  .home .headSection {
    height: 35vh;
  }
  .home .swiper-container .slideBox {
    padding: 0.8em 0.8em;
  }
  .home .swiper-container .slideBox {
    padding: 0.8em 0.8em;
  }
  .home .intro h2, .home .expertise h2, .home .technology h2, .home .marketplace h2, .home .industry h2{
    font-size: 18px;
    line-height: 24px;
  }
  .home .intro h2 img{
    width: 34%;
    margin-left: 5px;
  }
  .home .intro p {
    font-size: 12px;
  }
  .home .technology p {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
  }
  .home .rightspark, .home .leftspark{
    display: none;
  }
  .home .marketplace{
    padding: 3em 0;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .home .marketplace .imgStyle{
    margin-top: 2em;
  }
  .home .marketplace .imgStyle img{
    margin: 0;
  }
  .home .marketplace h2 p {
    font-size: 12px;
  }
  .home .marketplace p {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 0;
  }
  .home .marketplace .imgStyle{
    text-align: left;
    position: unset;
  }
  .home .marketplace img{
   width: 80%;
   margin-bottom: 1em;
  }
  .home .industry {
    padding: 3em 0 0 0;
  }
  .home .industry h2 br{
    display: none;
  }
  .home .testimonial .box p {
    font-size: 10px;
  }
  .home .testimonial .box {
    padding: 1em 1em;
    height: auto;
    margin-bottom: 1em;
    height: 390px;
  }
  
  .home .testimonial {
    padding: 3em 0 2em 0;
  }
  .footer h3 a{
    font-size: 12px;
    margin-top: 0;
  }
  .home .expertise {
    padding: 3em 0 0 0;
  }
  .home .expertise .boxBg {
    width: 100%;
    margin: auto;
  }
  .home .expertise .boxBg .row {
    width: 98%;
    margin: auto;
  }
  .home .expertise .txtBox p {
    font-size: 10px;
  }
  .automotive.onechip .headSection .contents h1 p {
    font-size: 18px;
  }
  .automotive.onechip .headSection .contents h1 img {
    width: 145px;
  }
  .automotive.onechip .headSection .contents h1 {
    font-size: 18px;
    width: 100%;
  }
  .automotive .compact .imgStyle {
    text-align: center;
  }
  .automotive .compact h2 p{
    font-size: 10px;
  }
  .automotive .compact h2, .automotive .savings h2, .automotive .dreambg h2, .automotive .function h2, .automotive .monitor h2, .automotive .whydms h2, .automotive .secureDrive h2, .automotive .monitor h2, .aiSensor .tracks h2, .aiSensor .measurement .contents h2, .automotive .carbon h2, .automotive .compliant h2, .automotive.adas .empower h2, .automotive .controls h2, .automotive.safety .detect h2, .automotive.safety .ourSafety h2, .validation .verify h2, .fleetPage .fleetCard h2, .fleetSpend h2, .efficiency h2, .insight h2, .omniPay h2, .iotPage .connectivity h2, .iotPage .mobility h2, .iotPage .gateway h2{
    font-size: 18px;
  }
  .automotive .dreambg {
    height: auto;
    background: none;
  }
  .automotive .dreambg p {
    font-size: 12px;
  }
  .automotive .dream {
    padding: 3em 0;
  }
  .lefthand img, .righthand img{
    width: 210px;
  }
  .automotive .function p {
    font-size: 12px;
  }
  .automotive .function p br{
   display: none;
  }
  .automotive .headSection {
    padding: 6em 0;
  }
  .automotive.dms h1 {
    font-size: 20px;
  }
  .automotive.dms .headSection p {
    font-size: 12px;
  }
  .automotive .monitor, .automotive .secureDrive {
    padding: 3em 0;
  }
  .automotive .whydms h3 {
    font-size: 15px;
  }
  .automotive .monitor .contents {
    text-align: center;
    padding-top: 1em;
  }
  .automotive .monitor .contents h2, .automotive .monitor .contents p{
    text-align: center;
  }
  .automotive.aiSensor .contents h1, .automotive.footprint h1, .automotive.adas h1, .automotive.safety .headSection h1, .iconnect .contents h1, .validation .contents h1, .fleetPage h1, .iotPage h1{
    font-size: 18px;
  }
  .aiSensor .measurement .contents p {
    font-size: 12px;
    width: 100%;
    margin-left: auto;
  }
  .aiSensor .measurement .contents{
    padding-top: 1em;
    text-align: center;
  }
  .automotive.aiSensor .contents p {
    font-size: 12px;
    margin-bottom: 3em;
  }
  .aiSensor .tracks .contents {
    padding: 1em 1em;
    margin-bottom: 1em;
    height: 158px;
  }
  .aiSensor .tracks .contents img {
    margin-bottom: 0.4em;
    width: 60%;
  }
  .aiSensor .tracks p {
    font-size: 10px;
  }
  .aiSensor .tracks {
    padding: 3em 0;
  }
  .aiSensor .tracks .boxSize {
    width: 100%;
    margin-top: 2em;
  }
  .aiSensor .measurement {
    padding: 3em 0;
  }
  .automotive .compliant .box{
    margin-bottom: 1em;
  }
  .automotive .compliant .box {
    padding: 1em 0.8em;
    height: 160px;
  }
  .automotive .compliant {
    padding: 3em 0;
  }
  .automotive .compliant .box p {
    font-size: 12px;
  }
  .automotive .compliant .head {
    margin-bottom: 2em;
  }
  .automotive.footprint .headSection p {
    font-size: 14px;
  }
  .automotive .compliant .head p {
    font-size: 14px;
  }
  .automotive.adas .headSection h1 p {
    font-size: 14px;
  }
  .automotive.adas .headSection p {
    font-size: 12px;
    margin-bottom: 2em;
  }
  .automotive.adas .empower .imgStyle {
    padding-top: 1em;
  }
  .automotive.adas .empower .iconBody {
    width: 100%;
  }
  .automotive.adas .empower p {
    font-size: 10px;
  }
  .automotive.adas .empower,.automotive .controls {
    padding: 3em 0;
  }
  .automotive .controls p , .automotive .controls ul li{
    font-size: 12px;
  }
  .automotive .controls .space {
    padding-top: 2em;
  }
  .automotive .controls .imgStyles {
    padding-left: 0;
  }
  .automotive.safety .headSection .contents {
    padding: 0 12px;
  }
  .automotive.safety .headSection p {
    width: 100%;
    font-size: 12px;
  }
  .automotive.safety .headSection .row {
    height: auto;
  }
  .automotive.safety .headSection {
    height: auto;
  }
  .automotive.safety .headSection{
    padding: 4em 0;
  }
  .automotive.safety .detect {
    padding: 3em 0;
  }
  .automotive.safety .ourSafety .txtBox p {
    font-size: 10px;
  }
  .automotive.safety .ourSafety .innerTxt {
    top: -1em;
  }
  .automotive.safety .ourSafety .imgStyle img {
    width: 80%;
  }
  .automotive.safety .ourSafety {
    padding: 3em 0 0 0;
  }
  .automotive.safety .ourSafety .bgOdd, .automotive.safety .ourSafety .bgEven {
    width: 100%;
    height: 174px;
  }
  .iconnect .contents h1 p{
    font-size: 12px;
  }
  .iconnect .contents h1 span {
    padding-left: 0;
  }
  .iotPage.iconnect .imgStyle img {
    width: 80%;
  }
  .iotPage.iconnect .imgStyle {
   text-align: center;
  }
  .iotPage.iconnect .spark{
    display: none;
  }
  .iconnect .box.lgBox{
    margin-bottom: 1em;
  }
  .iconnect .mgtSection h3 {
    font-size: 12px;
  }
  .iconnect .box {
    padding: 1em 0.5em;
    height: 168px;
    margin-bottom: 1em;
  }
  .iconnect .mgtSection {
    padding-bottom: 2em;
  }
  .validation .contents h1 p {
    font-size: 17px;
  }
  .validation .contents h1{
    margin-top: 1em;
  }
  .validation .verify {
    padding: 3em 0;
  }
  .validation .verify .bg {
    height: 110px;
    margin-bottom: 1em;
  }
  .validation .verify p {
    font-size: 7px;
  }
  .validation .securitySec {
    padding: 0;
  }
  .validation .security {
    padding: 3em 0;
  }
  .validation .security .box {
    padding: 2em 0.5em;
    margin-bottom: 1em;
  }
  .validation .mobility.layers .wave {
    height: 150px;
  }
  .iotPage .mobility li:nth-child(2), .iotPage .mobility li:nth-child(4) {
    margin-top: -9em;
  }
  .validation .mobility.layers li p {
    font-size: 8px;
  }
  .iotPage .mobility ul {
    width: 81%;
    left: 4em;
  }
  .validation .mobility.layers {
    padding: 4em 0;
  }
  .iotPage.validation .spark{
    display: none;
  }
  .fleetPage h1 p {
    font-size: 24px;
    margin-top: 1em;
  }
  .fleetPage .customHead {
    height: auto;
  }
  .fleetPage .fleetCard p {
    font-size: 12px;
    margin-bottom: 4em;
  }
  .fleetPage .fleetCard .imgStyle img {
    width: 100%;
  }
  .fleetPage .fleetCard h2 img {
    width: 50px;
  }
  .fleetSpend p {
    font-size: 20px;
  }
  .fleetSpend ul li {
    font-size: 12px;
  }
  .w80 {
    width: 100%;
    margin: auto;
  }
  .fleetSpend .imgStyle img{
    width: 56%;
  }
  .omniPay p, .efficiency p, .insight p{
    font-size: 12px;
  }
  .insight ul li{
    font-size: 12px;
  }
  .omniPay h3 {
    font-size: 12px;
    margin-bottom: 1em;
  }
  .omniPay {
    padding: 3em 0;
  }
  .efficiency .imgStyle {
    left: 0;
    padding-bottom: 1.5em;
  }
  .efficiency .custmBox {
    width: 82%;
    margin: auto;
  }
  .efficiency .contents {
    right: 0;
    padding-top: 0em;
    top: 0;
    width: 100%;
  }
  .insight {
    padding: 3em 0;
  }
  .contactPage .formBox {
    padding: 3em 1em 0 1em;
    margin: 0;
  }
  .contactDetails {
    padding: 3em 0 0 0;
  }
  .contactPage .formDetails {
    padding: 0;
  }
  .contactDetails p , .contactDetails li a{
    font-size: 9px;
  }
  .contactPage h1 {
    font-size: 18px;
  }
  .automotive .compact .contents {
    padding-top: 2em;
  }
  .automotive .monitor p , .automotive .secureDrive p, .iotPage .mobility p{
    font-size: 12px;
  }
  .iotPage .contents h1 p {
    font-size: 20px;
  }
  .iotPage .headSection .imgStyle{
    text-align: center;
  }
  .iotPage .headSection .imgStyle img{
    width: 80%;
  }
  .iotPage .headSection .spark{
    display: none;
  }
  .iotPage .mobility .wave {
    height: 162px;
  }
  .iotPage .mobility {
    padding: 3em 0;
  }
  .iotPage .gateway p {
    font-size: 12px;
    margin-bottom: 2em;
    margin-top: 1em;
  }
  .iotPage .counter h2{
    font-size: 32px;
  }
  .iotPage .counter p {
    font-size: 10px;
    margin: 0;
  }
  .iotPage .connectivity p {
    font-size: 8px;
    margin-bottom: 0.8em;
  }
  .iotPage .counter .box {
    height: 130px;
    margin-bottom: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .iotPage .counter {
    padding: 3em 0 2em 0;
  }
  .iotPage .boxbg {
    padding: 1em 1em;
    width: 100%;
    height: 129px;
    margin-bottom: 1em;
  }
  .mainBody {
    padding-top: 0;
  }
 
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    color: #000;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu a {
    font-size: 12px;
    line-height: 12px;
    border-bottom: none;
  }
  .home .testimonial .box h3 {
    font-size: 12px;
  }
  .home .testimonial h2{
    font-size: 18px;
  }
  .home .testimonial .box img{
    width: 70px;
    height: 70px;
    object-fit: contain;
  }
  .iconnect .mgtSection p {
    font-size: 10px;
  }
  .automotive.onechip .spark, .automotive.footprint .spark {
    display: none;
  }
  .automotive.safety .ourSafety .boxBg .row {
    width: 98%;
    margin: auto;
  }
  .contactPage .formBoxOuter {
    padding: 0.7em 0.5em;
    margin: 1em 0 0 0;
  }
  .contactBanner img {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }
  .contactBanner .innerBox {
    padding: 1em;
  }
  .home .industry p {
    font-size: 12px;
    line-height: 20px;
  }
  .taisysContact .formDetails{
    padding: 1em;
    width: 65%;
    margin: auto;
    border-radius: 8px;
  }
  .taisysContact {
    padding: 2em 0;
  }
  .home .articles{
    padding: 3em 0;
  }
  .home .articles .boxStyle{
    width: 100%;
    margin-bottom: 1em;
  }
  .home .articles h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0.3em;
  }
  .home .articles p{
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 1em;
  }
  .home .articles .boxStyle p{
    font-size: 10px;
    line-height: 16px;
    font-weight: 500;
    padding: 0.6em 1em;
  }
  .formHeroSection .contents {
    padding-top: 5em;
    height: 50vh;
  }
  .fleetForm .formDetails {
    width: 95%;
  }
  .formHeroSection h1 {
    font-size: 72px;
  }
  .formHeroSection .contents .img1 {
    position: absolute;
    left: -1.8em;
    top: 0em;
    width: 34%;
  }
  .formHeroSection .contents .img2 {
    position: absolute;
    right: -2.9em;
    top: -1.4em;
    z-index: -1;
    width: 68%;
  }
  .career.jobDetailPage .jdFirst{
    padding: 2em 0 4em 0;
  }
  .career.jobDetailPage h1{
    font-size: 20px;
    line-height: 44px;
  }
  .career.jobDetailPage .contents p{
    font-size: 15px;
    margin-bottom: 2em;
  }
  .career.jobDetailPage .jdFirst .contents a{
    font-size: 14px;
    padding: 0.4em 2em;
  }
  .career.jobDetailPage .jdFirst .contents ul{
    margin: 0;
    padding: 2em 0 0 0;
    display: block;
  }
  .career.jobDetailPage .jdFirst .contents ul li{
    font-size: 14px;
    margin-right: 0.8em;
    margin-bottom: 0.7em;
  }
  .career.jobDetailPage .jdFirst .contents ul li img{
    margin-right: 0.4em;
    width: 22px;
  }
  .career.jobDetailPage .experience .contents{
    padding: 0;
  }
  .career.jobDetailPage .experience ul li {
    font-size: 11px;
    line-height: 23px;
  }
  .career.jobDetailPage .experience h2{
    font-size: 18px;
    margin-bottom: 1em;
  }
  .career.jobDetailPage .experience ul.ul2 {
    margin: 0;
  }

}


@media (max-width:767px){
  .openPosition {
    padding: 0;
  }
  .openPosition h2 {
    margin-bottom: 1em;
  }
  .boxBorder {
    width: 100%;
  } 
  .openPosition .boxContent {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
  }
  .customContainer {
    padding: 0 12px;
    width: 100%;
  }
  .aboutList{
    padding-left: 0 !important;
  }
  .career .careerForm {
    padding: 3em 1em;
  }
  .ismartModal .modal-content .closeModal {
    margin-top: 1em;
  }
  .modal.ismartModal{
    padding: 0;
    top: 4em;
  }
  .ismartModal .modalDetails {
    width: 88%;
  }
  .ismartModal .modal-content {
    width: 100%;
  }
  .career .careerForm.contactPage .formDetails p.text-center{
    text-align: left !important;
  }
  .iconnect .headSection, .validation .headSection{
    padding: 2em 0 4em 0;
  }
  .thankyoutext h3{
    font-size: 20px;
  }
  .thankyoutext p{
    font-size: 14px;
    padding: 0 0.6em;
  }
  .thankyoutext img{
    width: 100px;
  }
  .career .whyIsmart .text1 {
    justify-content: flex-start;
  }
  .career .whyIsmart .rectangleBox p {
    font-size: 12px;
    line-height: 21px;
  }
  .career .whyIsmart .rectangleBox h3 {
    font-size: 15px;
    order: 2;
    padding-left: 10px;
  }
  .career .whyIsmart .text1 img{
    order: 1;
    text-align: left;
    padding-left: 10px;
    width: 50px;
  }
  .career .whyIsmart .text2 h3{
    order: 2;
    text-align: left;
    font-size: 14px;
  }
  .career .valueCareer h2 {
    font-size: 25px;
    margin-bottom: 1em;
  }
  .career .valueCareer .valueBox h3 {
    font-size: 17px;
    font-weight: 500;
  }
  .career .valueCareer .valueBox.box2 h3 {
    padding: 0;
  }
  .career .valueCareer .valueBox {
    width: 100%;
  }
  .career .valueCareer .contents {
    width: 100%;
  }
  
  .career .valueCareer .valueBox {
    padding: 1em;
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .career .whyIsmart {
    padding: 2em 0;
  }
  .career .valueCareer .valueBox h3{
    text-align: center;
    margin: 0;
    order: 2;
  }
  .career .valueCareer .valueBox img{
    width: 80px;
    height: 62px;
    margin-bottom: 11px;
    order: 1;
  }
  .career .valueCareer .valueBox .imgStyle, .career .valueCareer .valueBox.box1 .imgStyle, .career .valueCareer .valueBox.box3 .imgStyle,.career .valueCareer .valueBox.box4 .imgStyle{
    text-align: center;
  }
  .career .valueCareer .valueBox.box2,.career .valueCareer .valueBox.box4 {
    margin-top: 0;
  }
  .contactPage .submitBtn {
    width: 100%;
  }
  .ismartModal .modal-content button {
    width: 130px;
    padding: 0.8em 3.5em;
  }
  .ismartModal .modal-content {
    background-size: cover;
  }
  .career .careerForm.contactPage .formDetails {
    width: 95%;
  }
  .career .careerForm.contactPage h2 {
    font-size: 25px;
    margin-bottom: 0.6em;
    justify-content: center;
  }
  .career .careerForm.contactPage h2::before, .career .careerForm.contactPage h2::after{
    display: none;
  }
  .career .firstSection {
    padding: 4em 0;
  }
  .career .careerForm.contactPage .formDetails p.text-end{
    text-align: left;
  }
  .career .careerForm.contactPage .formDetails form textarea {
    height: 100px;
  }
  .career .careerForm.contactPage .formDetails p {
    font-size: 14px;
    margin: 0.5em 0;
  }
  .career .secondSection h2 {
    font-size: 25px;
  }
  .career .secondSection p {
    font-size: 14px;
  }
  .career .secondSection h2 span {
    display: unset;
  }
  .career .firstSection .contents .imgStyle img{
    width: 80%;
  } 
  .career .firstSection .contents .imgStyle.right{
    text-align: end;
  }
  .career .firstSection .contents {
    flex-direction: column;
  }
  .career .firstSection .contents h1 {
    font-size: 22px;
    margin-bottom: 2em;
  }
  .career .firstSection .contents h1 br{
    display: none;
  }
  .myNav.sticky {
    padding: 1.2em 0;
  }
  .smart .ismartBanner h1 img {
    width: 84%;
  }
  .iotPage .gateway {
    padding: 2em 0;
    text-align: center;
  }
  .iotPage .gateway h2 {
    font-size: 20px;
    width: 100%;
  }
  .knowMore {
    padding: 1.5em 0 2em 0;
  }
  .mnoSection h2 {
    margin-bottom: 0.8em;
  }
  .mnoSection .logoBox {
    padding: 1em 0.5em;
  }
  .InAction .actionBox p {
    font-size: 11px;
    line-height: 20px;
  }
  .mnoSection {
    padding: 0 0 2em 0;
  }
  .InAction .actionBox {
    height: 133px;
    margin-bottom: 2em;
    border-radius: 10px;
    padding: 1em;
  }
  .InAction .actionBox {
    height: 148px;
    margin-bottom: 2em;
    border-radius: 10px;
  }
  .InAction .actionBox img {
    width: 100px;
    height: 72px;
  }
  .InAction {
    padding: 2em 0 0 0;
  }
  .InAction h2{
    font-size: 24px;
    line-height: 20px;
  }
  .whyIsmart h2 {
    font-size: 25px;
  }
  .whyIsmart .rectangleBox {
    padding: 1em;
    margin-bottom: 1em;
    width: 100%;
  }
  .whyIsmart .rectangleBox h3 {
    font-size: 20px;
  }
  .whyIsmart .rectangleBox p {
    font-size: 14px;
    line-height: 24px;
  }
  .whyIsmart .rectangleBox h3 br{
    display: none;
  }
  .smart .ismartBanner .gradient-border-bg span{
    font-size: 10px;
  }
  .smart .ismartBanner h2{
    font-size: 20px;
  }
  .smart .ismartBanner p {
    font-size: 10px;
  }
  .iotPage.smart .headSection {
    padding: 2em 0 3em 0;
  }
  .navbar-light .navbar-toggler {
    background: linear-gradient(173.16deg, #c47815 15.01%, #000000 283.94%);
  }
  .iFleetVC .downIcon {
    right: 1em;
    bottom: 1em;
  }
  .videoContent video{
    height: 165px;
  }
  .fixedVideo video{
    width: 100%;
  }
  .aboutPage .partnership{
    padding: 0 0 4em 0;
    margin-top: 0em;
  }
  .bottomPadding{
    padding-bottom: 2em;
  }
  .bottomPadding .formBoxOuter {
    margin: 0;
    padding: 0;
  } 
  .customContact .contactPage{
    padding: 0;
    margin: 0;
  }
  .contactPage.fleetPayForm .formBoxOuter{
    margin: 0 0 2em 0;
  }
  .ismartFromSec .contents img{
    width: 45px;
  }
  .ismartFromSec .contents {
    height: 26vh;
    justify-content: flex-end;
  }
  .fleetForm {
    padding: 3em 0 5em 0;
  }
  .ismartFromSec{
    padding: 0;
  }
  .ismartFromSec h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .ismartFromSec h2 {
    font-size: 17px;
    line-height: 25px;
    margin-bottom: 0.3em;
    padding-top: 1em;
  }
  .campaignModal{
    padding: 0 !important;
    width: 100%;
  }
  .campaignModal h2 {
    font-size: 18px;
    line-height: 30px;
  }
  .campaignModal p {
    font-size: 15px;
    line-height: 25px;
  }
  .formHeroSection .contents {
    padding-top: 7em;
    height: 40vh;
  }
  .fleetForm .formDetails {
    width: 95%;
  }
  .formHeroSection h1 {
    font-size: 35px;
  }
  .formHeroSection .contents .img1 {
    position: absolute;
    left: -1.8em;
    top: 0em;
    width: 34%;
  }
  .formHeroSection .contents .img2 {
    position: absolute;
    right: -2.9em;
    top: -1.4em;
    z-index: -1;
    width: 68%;
  }
  .formHeroSection p, .fleetForm .para {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
  }
  .fleetForm .formDetails p{
    text-align: left !important;
    padding: 0.5em 0;
  }
  .fleetForm h2 {
    font-size: 22px;
    text-align: center;
    display: block;
  }
  .fleetForm h2:before,.fleetForm h2:after{
    display: none;
  }
  .contactPage.fleetForm .btnSection {
    text-align: center;
  }
  .formHeroSection p img {
    width: 44px;
  }
  .automotive .carbon span {
    font-size: 15px;
  }
  .logoSec{
    width: 100%;
    margin: auto;
    padding: 0 12px;
  }
  .contactDetails li:last-child{
    margin-right: 1em;
    margin-left: 0;
  }
  .contactBanner img {
    width: 100%;
    height: 250px;
  }
  .contactDetails .detailBox {
    padding: 0.6em;
    margin-top: 2em;
    border-radius: 5px;
  }
  .error {
    font-size: 12px;
    line-height: 20px;
    padding: 0;
  }
  .contactDetails {
    padding: 0;
  }
  .contactPage .myField {
    margin-bottom: 1.5em;
  }
  .contactPage .btnSection {
    padding-top: 0.8em;
  }
  .contactPage .formDetails {
    padding: 0;
  }
  .taisysContact .formDetails{
    padding: 1em;
    width: 100%;
    margin: auto;
    border-radius: 8px;
  }
  .home .industry p {
    font-size: 12px;
    line-height: 20px;
  }
  .thankyouTable{
    height: auto;
  }
  .thankyouTable table{
    width: 100%;
    padding: 0 12px;
  }
  .thankyouTable strong {
    font-size: 12px;
  }
  .home .animeSec {
    text-align: center;
    display: block;
    height: auto;
    padding-top: 2em;
  }
  .home .spark, .fleetPage .spark, .automotive .spark, .automotive .spark1{
    display: none;
  }
  .automotive.dms .headSection .imgStyle{
    text-align: center;
  }
  .automotive .savings .imgStyle{
    padding-top: 2em;
  }
  .home .headSection .contents.left, .home .headSection .contents.right {
    position: unset;
  }
  .home .headSection h1 {
    font-size: 33px;
    line-height: 42px;
    width: 100%;
    text-align: center;
    display: block;
    margin: 0;
  }
  .home .headSection h1 .span2{
    display: unset;
    padding-left: 0;
  }
  .home .headSection .contents{
    display: unset;
    width: 100%;
    text-align: center;
  }
  .home .headSection .contents.left, .home .headSection .contents.right{
    position: unset;
  }
  .home .bannerContent video {
    height: 255px;
    padding: 0;
  }
  .aboutPage .headSection {
    padding: 3em 0 5em 0;
  }
  .home .intro .spark {
   display: none;
  }
  .home .intro {
    padding: 3em 0;
  }
  .home .intro .imgStyle{
    padding-top: 2em;
  }
  .home .intro ul li {
    font-size: 8px;
    width: 100%;
  }
  .contactDetails .txt {
    display: block;
  }
  .contactDetails ul {
    display: block;
    padding: 0;
    margin: 0;
  }
  .contactDetails li {
    text-align: left;
  }
  .contactDetails p{
    font-size: 10px;
    margin-bottom: 0.5em;
  }
  .contactDetails li a {
    font-size: 10px;
    margin-right: 1em;
  }
  .headSection {
    padding: 6em 0;
  }
  .automotive .headSection {
    padding: 3em 0 6em 0;
  }
  .contactBanner {
    padding: 0;
  }
  .contactPage .formBox {
    padding: 2em 1em 1em 1em; 
  }
  .home .testimonial .box h3 {
    font-size: 12px;
  }
  .home .testimonial .box {
    height: 300px;
  }
  .home .headSection {
    height: 488px;
    background-size: cover;
    padding: 0;
  }
  .home .animeSec img {
    margin-bottom: -1em;
  }
  .iotPage .boxbg {
    padding: 1em 1em;
    width: 100%;
    height: 165px;
    margin-bottom: 1em;
  }
  .iotPage .connectivity h2 p {
    font-size: 16px;
  }
  .iotPage .connectivity p {
    font-size: 8px;
  }
  .iotPage .mobility li:nth-child(2), .iotPage .mobility li:nth-child(4) {
    margin-top: -8em;
  }
  .iotPage .mobility ul {
    width: 81%;
    left: 2em;
  }
  .validation .verify .bg {
    height: 172px;
  }
  .ps-timeline-sec h3 {
    font-size: 18px;
    margin-bottom: 0;
  }
  .aboutPage .experts .card {
    height: 175px;
  }
  .footer ul li , .footer ul li a{
    font-size: 10px;
  }
  .iotPage .mobility li p {
    font-size: 8px;
  }
  .img-handler-top p {
    top: 3em;
    left: 2.2em;
    font-size: 10px;
  }
  .home .expertise h2 {
    margin-bottom: 3em;
  }
  .home .expertise .bgOdd, .home .expertise .bgEven {
    height: 180px;
    margin-bottom: 3em;
  }
  .automotive.safety .ourSafety .bgOdd, .automotive.safety .ourSafety .bgEven{
    height: 180px;
    margin-bottom: 1.5em;
  }
  .automotive.safety .headSection {
    padding: 2em 0 3em 0;
  }

}

input:focus-visible {
  outline: none;
}

.ytBtn{
  background: linear-gradient(173.16deg, #252525 15.01%, #F89521 283.94%);
  border-radius: 30px;
  border: none;
  
  font-size: 16px;
  text-decoration: underline;
}

@media (max-width:767px){
  .ytBtn{
    margin-bottom: 2em;
  }
}
.ytBtn a{
  color: #F89521 !important;
  text-decoration: underline;
}

iframe{
  z-index: 9;
}
@media (min-width: 576px) {
  .modal-dialog {
      max-width: 100%;
  }
}
.modal-backdrop {
  position: unset !important;
}
