@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Questrial&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
:root{
    --secondary-font: "Poppins", sans-serif;
    --primary-color: #DD0223;
    --secondary-color: #1C2182;
    --txt-color: #231F20;
    --bg-linear: linear-gradient(35deg, rgb(62 64 149) 0%, rgb(236 50 55) 0%, rgb(62 64 149) 100%);
    --bg-linear-blue: #4d52ad;
    --bg-linear-change: linear-gradient(90deg, rgb(107 107 251) 0%, rgb(253 78 78) 100%);
}
body{
    overflow-x: hidden;
}
body::-webkit-scrollbar{
    width: 5px;
    background: #000;
}
body::-webkit-scrollbar-thumb{
    background: #f5f5f5;
}
a{text-decoration: none;color: #000; display: block;}
ul{padding: 0; margin: 0; list-style-type: none;}
p,h1,h2,h3,h4,h5,h6{margin: 0;}
h2 i{
color: var(--third-color);
}
.actionbtn{
    border-radius: 4px;
    background: #253C80;
    font-family: var(--secondary-font);
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    padding: 10px 30px;
}
.actionbtn:hover{background: var(--secondary-color);color: #fff;}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
.closemobmenu,
.moblogo,
.togglemenu{}
header{
    /* box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%); */
    /* overflow: hidden; */
    position: relative;
    z-index: 1;
}
header .menu-header{
}
header .menu-header.fix{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    border-radius: 0;
    z-index: 99999;
}
.weblogo{
}
.weblogo img{}
.leftlogo{}
.leftlogo img{}
.headerinfo{}
.headerinfo .boxes{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 35px;
    padding: 0 15px;
}
.headerinfo .boxes.box1{padding: 15px;border-bottom: 1px solid #073654;}
.headerinfo .boxes .infolink{
    color: #ffffffbd;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: .5px;
}
.headerinfo .boxes .infolink .linkicon{
    width: 50px;
    height: 50px;
    background: var(--third-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff99;
}
.headerinfo .boxes .infolink div{}
.headerinfo .boxes .infolink div span{color: var(--secondary-color);font-weight: 600;}
.headerinfo .boxes .infolink.cartlink{
    height: 50px;
    background: var(--third-color);
    padding: 0 20px;
    border-radius: 50px;
}
.headerinfo .boxes .infolink.cartlink .linkicon{
    height: auto;
    width: auto;
    position: relative;
    z-index: 1;
}
.headerinfo .boxes .infolink.cartlink .linkicon .cartcount{
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 12px;
    font-style: normal;
    background: var(--secondary-color);
    width: 15px;
    height: 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
.headerbreadcrumb{
    background: #000;
        padding: 150px 120px 30px;
}
.headerbreadcrumb h3{
    color: #fff;
}

.menubox{
}
.menubox .menulist{
}
.menubox .menulist:not(:first-child):after{
    content: "";
    width: 1px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: -14px;
    transform: translateY(-50%);
    background: rgb(255 255 255 / 40%);
    display: none;
}
.menubox .menulist .menulink{
}
.menubox .menulist .menulink:hover{
    color: #aaa;
}
.menubox .menulist .searchicon{color: #fff; margin-right: 15px;}
.menubox .menulist .searchicon:hover{color: var(--secondary-color);}
.submenu{position: absolute;top: 100%;background: #fff; min-width: 200px;z-index: 9999;left: 50%;transform: translate(-50%, 20px);transition: .3s linear;padding: 10px 20px;border-radius: 2px;opacity: 0;visibility: hidden;pointer-events: none;border-radius: 10px;box-shadow: 0 4px 20px 3px rgb(0 0 0 / 10%);border: 1px solid #ddd;}
.menulist:hover .submenu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.submenu .sublist{
    padding: 5px 0;
}
.submenu .sublist .sublink{
    font-size: 16px;
    transition: .3s linear;
    color: var(--txt-color);
    white-space: nowrap;
    font-weight: 400;
    text-transform: uppercase;
}
.submenu .sublist .sublink:hover{
    color: var(--primary-color);
}
.submenu:before{
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: -5px;
    left: 50%;
    border-radius: 3px;
    transform: translateX(-50%) rotate(45deg);
    background: #fff;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}


.sideicons{
    position: fixed;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    z-index: 999;
    background: var(--bg-linear);
    background: var(--secondary-color);
    padding: 10px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sideicons a{
    font-size: 22px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.sideicons a span{
    position: absolute;
    right: -9px;
    top: 50%;
    transform-origin: right;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 15px;
    background: var(--bg-linear);
    background: var(--secondary-color);
    padding: 4px 50px 4px 15px;
    border-radius: 50px;
    z-index: -1;
    transition: .3s linear;
    opacity: 0;
    pointer-events: none;
}
.sideicons a.b2t{
    display: none;
}
.sideicons a.b2t.fix{
    display: block;
}
.sideicons a:hover span{
    opacity: 1;
    pointer-events: auto;
}

.slider{/* border-radius: 0 0 20px 20px; */overflow: hidden;}
.slider a{}
.slider a img{width: 100%;}


.popupfrm{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0000004f;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: .3s linear;
}
.popupfrm.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.innerpopupfrm{
    width: 70%;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70%;
    position: relative;
}
.innerpopupfrm .popupclose{position: absolute;top: 10px;right: 10px;z-index: 9;color: #999;font-weight: 900;font-size: 30px;line-height: 1;}
.innerpopupfrm .popupclose:hover{color: var(--secondary-color);}
.popup-left{
    flex-basis: 40%;
    overflow: hidden;
    height: 100%;
    display: flex;
    position: relative;
    z-index: 1;
}
.popup-left img{
    position: absolute;
    width: 200%;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
}
.popup-right{
    flex-basis: 60%;
    padding: 30px;
}
.popup-right .innerright{
    text-align: center;
}
.popup-right .innerright .popuplogo{
    display: inline-block;
    margin: 0 0 10px;
}
.popup-right .innerright .popuplogo img{
    width: 150px;
}
.popup-right .innerright h4{
    font-size: 16px;
    margin: 0 0 25px;
    color: #313131;
    letter-spacing: 1px;
}
.popup-right form{
    text-align: start;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.popup-right form .fields{
    position: relative;
    z-index: 1;
    margin: 0 0 30px;
    width: 48%;
}
.popup-right form .fields :is(input, select, textarea){
    color: #000;
    border-radius: 3px;
    border: none;
    outline: none;
    padding: 15px;
    background: none;
    border: 1px solid var(--secondary-color);
    width: 100%;
    height: 50px;
}
.popup-right form .fields :is(input, select, textarea):focus{
    box-shadow: none;
    outline: none;
}
.popup-right form .fields label{
    position: absolute;
    top: -11px;
    left: 15px;
    background: #fff;
    padding: 0 5px;
    color: var(--secondary-color);
    letter-spacing: 1px;
    font-size: 16px;
}


/*.popup-right form .fields{*/
/*    width: 48%;*/
/*    display: inline-block;*/
/*    margin: 0 0 20px;*/
/*}*/
/*.popup-right form .fields :is(input, select){*/
/*    width: 100%;*/
/*    border: 1px solid #ddd;*/
/*    padding: 10px;*/
/*    border-radius: 5px;*/
/*}*/
/*.popup-right form .fields :is(input, select):focus{*/
/*    border-color: var(--secondary-color);*/
/*    outline: none;*/
/*}*/
/*.popup-right form .fields :is(input, select)::placeholder{*/
/*    font-size: 15px;*/
/*}*/
/*.popup-right form .fields input{}*/
/*.popup-right form .fields select{}*/
.popup-right form .fields-btn{}
.popup-right form .fields-btn button{
    background: var(--secondary-color);
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    padding: 10px 40px;
    border-radius: 3px;
    transition: .3s linear;
    letter-spacing: 1px;
}
.popup-right form .fields-btn button:hover{background: #0e1378;}

.homeaboutwidget{
    background: url('../assets/aboutus/homeaboutbg.webp');
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
    padding: 50px 0;
    overflow: hidden;
}
.homeaboutwidget:after{
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 80%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
.homeaboutwidget:before{
    content: "";
    width: 50%;
    height: 100%;
    background: #55d2ed;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    /* transform: skewX(-10deg) translateX(-20%); */
    background: url('../assets/aboutus/homebg.png');
    background-size: 100% 100%;
}
.homeabout-left{}
.homeabout-left figure{}
.homeabout-left figure img{
    width: 90%;
}

.homeabout-right{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 50px;
    padding-right: 50px;
}
.homeabout-right h2{
    font-weight: 400;
    font-family: var(--secondary-font);
    font-size: 28px;
    margin: 0 0 20px;
}
.homeabout-right h2 span{
    font-weight: 600;
    font-family: var(--secondary-font);
}
.homeabout-right p{
    font-size: 15px;
    font-family: var(--secondary-font);
    font-weight: 400;
}
.homeabout-right .actionbtn{
    background: #55d2ed;
    border: none;
    font-weight: 500;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
    color: #fff;
    font-size: 13px;
}





.catwisevehicle{
    padding: 50px 0 80px;

}
.home-aboutus{position: relative;padding: 0 0 50px;}
.home-aboutus h2{
    font-family: var(--secondary-font);
    margin: 0 0 15px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 28px;
}
.home-aboutus h2 span{color: var(--secondary-color);font-family: var(--secondary-font);}
.home-aboutus p{
    color: #313131;
    letter-spacing: 1px;
    text-align: justify;
    margin: 20px 0 0;
    font-size: 18px;
}
.home-aboutus .actionbtns{/* text-align: center; */margin: 15px 0 0;}
.vehicleleft{
    text-align: center;
    background: #87ceeb26;
    padding: 80px 0 100px;
    position: relative;
    border-radius: 10px;
    width: 90%;
    margin-left: auto;
    background: #F2F8F2;
}
.vehicleleft img{
    width: 70%;
}
.vehicleleft h3{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    /* font-weight: 600; */
    color: var(--secondary-color);
    white-space: nowrap;
    /* font-family: bold; */
}
.vehiclecenter{
    text-align: center;
    height: 100%;
    position: relative;
    Z-INDEX: 1;
}
.vehiclecenter img{
    width: 40%;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

.vehicleright{
    height: 100%;
    text-align: center;
    background: #87ceeb26;
    padding: 80px 0 100px;
    position: relative;
    border-radius: 10px;
    width: 90%;
    margin-right: auto;
    background: #F2F8F2;
}
.vehicleright img{
    width: 70%;
}
.vehicleright h3{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    /* font-weight: 600; */
    color: var(--secondary-color);
    white-space: nowrap;
    /* font-family: 'bold'; */
}

.manufacture{
}
.manufacture:before{
}
.manufacture .maintitle{
    text-align: center;
    margin: 0 0 60px;
}
.manufacture .maintitle h2{font-size: 36px;margin: 0 0 20px;/* background: var(--bg-linear); *//* -webkit-background-clip: text; *//* -webkit-text-fill-color: transparent; */color: var(--secondary-color);}
.manufacture .maintitle h2 span{color: var(--primary-color);}
.manufacture .maintitle p{
    letter-spacing: 1px;
    color: #313131;
    font-size: 18px;
}
.manufacture .maintitle p span{
    color: var(--primary-color);
}
.manufactureleft{}
.manufactureleft img{width: 100%;border-radius: 50px;}
.manufactureright{
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}
.manufactureright h3{
    font-size: 32px;
    margin: 0 0 10px;
}
.manufactureright p{
    letter-spacing: 1px;
    color: #313131;
    text-align: justify;
    font-size: 18px;
}
.manufactureright .counterbox{
    padding: 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 20px auto;
}
.manufactureright .counterbox .box{}
.manufactureright .counterbox .box span{
    font-size: 46px;
    display: flex;
    align-items: center;
    line-height: 1;
    color: var(--secondary-color);
}
.manufactureright .counterbox .box span i{font-size: 26px;}
.manufactureright .counterbox .box p{
    font-size: 15px;
    color: var(--primary-color);
    letter-spacing: 1px;
}


.third-widget{
    background: #202020;
    padding: 40px 0 60px;
    position: relative;
    z-index: 0;
}
.third-widget:before,
.third-widget:after{
    content: "";
    width: 100%;
    background: #fff;
    height: 10%;
    position: absolute;
    left: 0;
}
.third-widget:before{
    top: 0;
    border-radius: 0 0 100px 100px;
    display: none;
}
.third-widget:after{
    border-radius: 100px 100px 0 0;
    bottom: 0;
    display: none;
}

.third-widget .headingbox {
    display: block;
    text-align: center;
    margin: 0 0 20px;
}

.third-widget .headingbox h3 {
    font-weight: 500;
    font-size: 20px;
    color: #757575;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.third-widget .headingbox .subheading {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.third-widget .headingbox .subheading h2 {
    font-family: var(--secondary-font);
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0 15px;
}
}

.third-widget .maintitle{text-align: center;margin: 0 0 30px;}
.third-widget .maintitle h2{color: #fff;font-size: 36px;/* background: var(--bg-linear); *//* -webkit-background-clip: text; *//* -webkit-text-fill-color: transparent; */color: #fff;}
.third-widget .maintitle h2 span{color: var(--primary-color);}
.third-widget .maintitle .actionbtn{
    color: #fff;
    border-color: #fff;
}
.third-widget .maintitle .actionbtn:hover{
    border-color: transparent;
}
.thirdwidget-slider{
    width: 90%;
}
.thirdwidget-slider figure{
    text-align: center;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #fff;
}
.thirdwidget-slider figure img{width: 100%;}

.third-widget .swiper-slide{width: 60% !important;}





.virtualtour{
    background: url('../assets/tourbg.jpg');
    padding: 50px 0;
}
.virtualtour .maintitle{
    text-align: center;
    margin: 0 0 20px;
}
.virtualtour .maintitle h3{
    color: #fff;
    letter-spacing: 1px;
}
.virtualtour .tourvdo{}
.virtualtour .tourvdo iframe{width: 100%; height: 500px;}



.advantages{
    padding: 30px 0 60px;
}
.advantages:before{
}
.advantages .maintitle{text-align: center;margin: 0 0 20px;}
.advantages .maintitle h3{font-family: var(--secondary-font);color: #282828;text-transform: uppercase;font-weight: 500;letter-spacing: 1px;padding: 0 0 15px;}
.advantages .maintitle h3 span{}
.advantages .maintitle p{
    font-size: 20px;
    letter-spacing: 1px;
}
.advatanges-outer{
    /* position: relative; */
}
.advatanges-inner{
    width: 75%;
    margin: auto;
    position: sticky;
    top: 15px;
}
.advatanges-inner .innerbox{
    position: sticky;
    top: 10%;
    transition: .3s linear;
}
.advatanges-inner .innerbox:nth-child(2){top: 12%;}
.advatanges-inner .innerbox:nth-child(3){top: 15%;}
.advatanges-inner .innerbox:nth-child(4){top: 13%;}
.advatanges-inner .innerbox img{width: 100%;}
.advatanges-inner .innerbox .overlaybox{
    position: absolute;
    width: 34%;
    top: 30px;
    left: 30px;
}
.advatanges-inner .innerbox .overlaybox h3{
    color: #fff;
    font-size: 32px;
    margin: 0 0 20px;
    line-height: 1.2;
    font-weight: 300;
}
.advatanges-inner .innerbox .overlaybox p{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
}
.advatanges-inner .innerbox:nth-child(2) .overlaybox h3{
    color: #000;
}
.advatanges-inner .innerbox:nth-child(2) .overlaybox p{
    color: #000;
}


.flo{
    padding: 50px 0;
    position: relative;
    z-index: 0;
    background: var(--bg-linear-blue);
}
.flo:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.flobox{
    text-align: center;
    margin: 0 0 30px;
}
.flo .headingbox {
    display: block;
    min-width: 1px;
}

.flo .headingbox h3 {font-weight: 500;font-size: 20px;color: #757575;text-transform: uppercase;margin-bottom: 8px;letter-spacing: 2px;}

.flo .headingbox .subheading {
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.flo .headingbox .subheading h2 {font-family: var(--secondary-font);color: #282828;text-transform: uppercase;font-weight: 500;letter-spacing: 1px;padding: 0 0 15px;}

.flo .headingbox .subheading a {color: var(--secondary-color);transition: all .3s;letter-spacing: 2px;text-transform: uppercase;font-size: 14px;}

.flo .headingbox .subheading a i {
    font-size: 14px;
    padding-left: 4px;
}
.flobox h2{
    color: #000;
    margin: 0 0 10px;
    font-size: 36px;
    color: var(--primary-color);
}
.flobox h2 span{
    color: var(--secondary-color);
}
.flobox p{
    font-size: 20px;
    font-family: 'regular';
}
.flolink{
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 2px solid #ddd;
}
.flolink li{}
.flolink li a{
    font-weight: 600;
    padding: 10px;
    position: relative;
    transition: .3s linear;
    font-family: 'regular';
}
.flolink li a:before{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    opacity: 0  ;
    transition: .3s linear;
}
.flolink li a:hover:before,
.flolink li a.active:before{
    opacity: 1;
}
.flotab-boxes{
    padding: 40px 20px;
}
.flotab-boxes .flotab{
    display: none;
    align-items: start;
    gap: 2%;
}
.flotab-boxes .flotab.active{
    display: flex;
}
.flotab-boxes .flotab .leftbox{
    flex-basis: 68%;
}
.flotab-boxes .flotab .leftbox p{
    font-size: 18px;
    font-weight: 200;
    font-family: 'regular';
}
.flotab-boxes .flotab .rightbox{
    flex-basis: 30%;
}
.flotab-boxes .flotab .rightbox img{
    width: 100%;
    border-radius: 10px;
}

.flotab .leftbox ul{}
.flotab .leftbox ul li{
    padding: 15px;
    border-radius: 3px;
    background: #1c21820f;
    margin: 0 0 15px;
}
.flotab .leftbox ul li a{
    font-size: 18px;
    font-weight: 500;
    position: relative;
    color: #000;
    font-family: 'bold';
}
.flotab .leftbox ul li a i{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 24px;
}
.flotab .leftbox ul li p{
    font-size: 18px;
    margin: 10px 0 0;
    display: none;
}
.flotab .leftbox ul li.active p{
    display: block;
}

.flotab h3{
    font-size: 24px;
    margin: 0 0 10px;
    font-weight: 700;
    color: #000;
    font-family: 'bold';
}
.flotab p{}
.flotab img{
    margin: 15px 0;
    width: 100%;
}

.leadershipbox{box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);border-radius: 10px;padding: 15px 15px 20px;}
.leadershipbox figure{
    margin: 0;
    position: relative;
    z-index: 1;
}
.leadershipbox figure img{width: 100%;border-radius: 5px;}
.leadershipbox .content{
    padding: 30px 0 0;
    text-align: center;
}
.leadershipbox .content h3{position: relative;z-index: 1;font-size: 20px;margin: 0 0 15px;}
.leadershipbox .content h3:before{
    content: "";
    width: 40%;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}
.leadershipbox .content h4{
    font-size: 14px;
    letter-spacing: 1px;
    color: #666;
}
.leadershipbox .socialinfo{
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    background: var(--bg-linear-blue););)
    border-box;)
    border-box;)-;)
    --;)
    border-box;)
    border-box;)-;);
    padding: 8px 20px;
    border-radius: 50px;
    gap: 15px;
}
.leadershipbox .socialinfo a{
    color: #fff;
    font-size: 14px;
    line-height: 1;
}




.saysclient{
    padding: 100px 0;
    background: var(--bg-linear-blue);
    position: relative;
    z-index: 1;
}
.saysclient .overlayimg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 95%;
    aspect-ratio: 1/1;
    opacity: 0.2;
}

.saysclient:before,
.saysclient:after{
    content: "";
    width: 100%;
    background: #fff;
    height: 10%;
    position: absolute;
    left: 0;
}
.saysclient:before{
    top: 0;
    border-radius: 0 0 100px 100px;
    display: none;
}
.saysclient:after{
    border-radius: 100px 100px 0 0;
    bottom: 0;
    display: none;
}
.saysclient .maintitle{
    text-align: center;
    margin: 0 0 30px;
}
.saysclient .maintitle h3{
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1px;
}
.saysclient .saysbox{margin: 0 10px;}
.saysclient .saysbox p{
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 1px;
}
#saysslider{
    background: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    margin: 0 0 30px;
    position: relative;
    width: 88%;
    margin: 0 auto 20px;
}
#saysslider:after,
#saysslider:before{
    position: absolute;
    font-family: 'remixicon';
    font-size: 28px;
}


#saysslider:before{
    content: "\ec51";
    top: 10px;
    left: 15px;
}
#saysslider:after{
    content: "\ec52";
    bottom: 10px;
    right: 15px;
}


.logoslider{width: 90%; margin: auto;}
.logoslider figure{
    background: #fff;
    padding: 20px;
    aspect-ratio: 1 / 0.9;
    border-radius: 10px;
    margin: 0 10px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transform: scale(1);
}
.logoslider figure img{width: 100%; transition: .3s linear;}
.logoslider figure:hover img{transform: scale(1.05);}



footer{
    background: #000;
    padding: 50px 0 0;
    position: relative;
    z-index: 1;
}
footer .getupdate{
    width: 35%;
    padding: 10px 0;
    transform: skewX(-10deg);
    text-align: center;
    margin: -100px auto 50px;
    background: var(--secondary-color);
    border-radius: 10px;
}
footer .getupdate:before{
    content: "";
    /* width: 100%; */
    /* height: 100%; */
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* background: var(--bg-linear); */
    /* z-index: -1; */
    /* transform: skewX(-10deg); */
    /* border-radius: 5px; */
    /* background: #eee; */
}
footer .getupdate img{width: 90%;}
footer .getupdate .left{}
footer .getupdate .left a{
    font-size: 38px;
    color: #fff;
}
footer .getupdate .right{}
footer .getupdate .right h3{
    color: #fff;
    font-weight: 600;
    letter-spacing: .5px;
    font-size: 24px;
    margin: 0 0 10px;
}
footer .getupdate .right p{
    color: #fff;
}
.footerbox{
    height: 100%;
}
.footerbox .footlogo{display: flex;align-items: center;justify-content: start;margin: 0 0 30px;}
.footerbox .footlogo img{width: 60%;}
.footerbox h3{
    font-size: 18px;
    color: #fff;);
    text-transform: uppercase;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
}
.footerbox h3:before{
    content: "";
    width: 100%;
    height: 1px;
    background: #474747;
    position: absolute;
    bottom: -8px;
    left: 0;
}
.footerbox ul{
}
.footerbox ul li{
    padding: 0 0 10px;
}
.footerbox ul li a{
    color: #fff;
    font-size: 15px;
    transition: .3s linear;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footerbox ul li a i{
    color: #fff;
}
.footerbox ul li a:hover{
    color: #999;
}
.footlogo + ul li a{
    text-transform: initial;
}
.footerbox form{}
.footerbox form .fields{
    margin: 0 0 10px;
}
.footerbox form .fields :is(input,select,textarea){outline: none;width: 100%;padding: 5px 10px;background: rgb(255 255 255 / 10%);color: #fff;border: none;padding: 10px;border-radius: 5px;}
.footerbox form .fields :is(input,select,textarea)::placeholder{}
.footerbox form .fields input{}
.footerbox form .fields select{}
.footerbox form .fields select option{
    color: #000;
}
.footerbox form .fields textarea{}
.footerbox form .fields-btn{}
.footerbox form .fields-btn button{
    width: 100%;
    padding: 10px;
    background: var(--bg-linear);
    border: none;
    outline: none;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}
.footerbox form .fields-btn button:hover{}
.bottomfooter{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #000;
    padding: 30px 120px;
}
.bottomfooter .social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.bottomfooter .social a{
    transition: .3s linear;
    color: #aaa;
}
.bottomfooter .social a:hover{
    color: #fff;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.copyright{
    text-align: center;
    padding: 50px 0 30px;
}
.copyright p{color: #fff;font-weight: 300;}
.copyright p a{display: inline-block;color: #666;font-weight: 600;transition: .3s linear;letter-spacing: 1px;}
.copyright p a:hover{
    color: #fff;
}
.ride{
    padding: 50px 0;
    background: var(--bg-linear-blue);
    position: relative;
    z-index: 1;
    display: none;
}
.ride:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    border-radius: 100px;
}
.ridebox{text-align: center; margin: 0 0 60px;}
.ridebox h2{
    color: #000;
    margin: 0 0 10px;
    font-size: 36px;
    font-family: 'bold';
    background: var(--bg-linear);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ridebox p{
    font-size: 20px;
    font-family: 'regular';
}
.ride .swiper {
width: 350px;
height: 450px;
}

.ride .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #fff;
    background: #1c21822b;
    opacity: .5;
}
.ride .swiper-slide.swiper-slide-active{
    background: #1c2182;
    opacity: 1;
}
.ride .swiper-slide .innerbox{
    padding: 20px 40px;
    text-align: center;
}
.ride .swiper-slide .innerbox img{width: 75px;margin: 0 0 20px; user-select: none;}
.ride .swiper-slide .innerbox h3{
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px;
    user-select: none;
}
.ride .swiper-slide .innerbox p{
    font-size: 18px;
    font-weight: 400;
    user-select: none;
}

.process{
    padding: 50px 40px 20px;
    /* background: var(--bg-linear-blue); */
    position: relative;
    z-index: 0;
    border-top: 1px solid #eee;
}

.process .headingbox {
}

.process:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #fff;
    z-index: -1;
    transform: translate(-50%, -5%);
}
.process .maintitle{
    width: 85%;
    margin: 0 auto 30px;
    text-align: center;
}
.process .maintitle h2{
    font-size: 36px;
    margin: 0 0 10px;
    color: #252525;
    color: var(--secondary-color);
}
.process .maintitle h2 span{
    color: var(--primary-color);
}
.process .maintitle p{
    font-size: 18px;
    letter-spacing: 1px;
}
.processblock{
    background-size: cover;
    transition: background .2s linear;
    /* border-radius: 50px; */
    overflow: hidden;
    margin: 0 2px;
}

.processbox{
    height: 500px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-right: 1px solid #c7c7c7;
}
.processblock .gridbox:nth-child(1){

}
.processblock .gridbox:last-child .processbox{
    border: none;
}
.processbox:before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 16%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.processbox h3{
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    font-size: 25px;
    z-index: 3;
}
.processbox .mainimg{
    height: 100%;
    position: absolute;
    top: 0;
    left: -95%;
    z-index: 2;
}



.certificates{
    background: var(--secondary-color);
    position: relative;
    z-index: 1;
    padding: 0 0 50px;
}
.certificates:before{
    content: "";
    width: 100%;
    height: 101%;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    z-index: -1;
    border-radius: 0;
    transform: translate(-50%, -50%);
}
.certificates .maintitle{
    width: 80%;
    margin: 0 auto 30px;
    text-align: center;
}
.certificates .maintitle h2{
    font-size: 36px;
    margin: 0 0 10px;
    color: var(--primary-color););
}
.certificates .swiper{width: 80%}


.swiper-button-next,
.swiper-button-prev {
    color: #000;
}
.swiper-button-next{
    right: -25%;
}
.swiper-button-prev{
    left: -25%;
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size: 18px;
    font-weight: 700;
}



.query{
    padding: 20px 50px 110px;
}
.query:before{}
.queryleft{}
.queryleft h3{
    font-size: 36px;
    width: 70%;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--secondary-font);
    color: #444;
    margin: 0 0 20px;
}
.queryleft h3 span{
    font-weight: 500;
    font-family: var(--secondary-font);
    color: #000;
}
.queryright{
    padding: 100px 0 0;
}
.queryright form{}
.queryright form .title{
    text-align: center;
}
.queryright form .title h3{
    color: #282828;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0 25px;
    font-size: 24px;
}
.queryright form .fields{
    position: relative;
    margin: 0 0 30px;
}
.queryright form .fields :is(input, select, textarea){
    color: #000;
    border-radius: 3px;
    border: none;
    outline: none;
    padding: 15px;
    background: none;
    border: 1px solid var(--secondary-color);
    width: 100%;
}
.queryright form .fields :is(input, select, textarea):focus{
    box-shadow: none;
    outline: none;
}
.queryright form .fields label{
    position: absolute;
    top: -11px;
    left: 15px;
    background: #fff;
    padding: 0 5px;
    color: var(--secondary-color);
    letter-spacing: 1px;
    font-size: 16px;
}

.queryright form .fields-btn{}
.queryright form .fields-btn button{outline: none;border: none;}
.queryright form .fields-btn button:hover{
}

.innerheader{overflow: hidden;}
.innerheader img{width: 100%;}
.aboutcontent{padding: 50px 0;}
.aboutcontent .aboutpage-title{
    padding: 0 0 15px;
}
.aboutcontent .aboutpage-title h2{
    color: #282828;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0 15px;
}
.aboutcontent .aboutpage-title h2 span{
    color: var(--primary-color);
    font-weight: 500;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}
.aboutcontent .gridbox{}
.aboutcontent .gridbox:nth-child(even) .aboutbox{border-radius: 100px;}
.aboutcontent .aboutbox p{font-size: 16px;color: #313131;font-weight: 400;}
.aboutcontent .aboutbox img{width: 100%;margin: auto;height: 280px;}
.aboutcontent .aboutbox{}
.aboutcontent .aboutbox.txtright{
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}
.aboutcontent .aboutbox.txtright p{}
.aboutcontent .aboutbox.txtleft{
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.aboutcontent .aboutbox.txtleft p{
}



.infopoints{
    position: relative;
    background: var(--bg-linear-blue);
    border-radius: 100px 100px 0 0;
    padding: 100px 0 200px;
    margin: 50px 0 0;
}
.infopoints:after{
    content: "";
    width: 100%;
    background: #fff;
    height: 100px;
    position: absolute;
    left: 0;
}
.infopoints:after{
    border-radius: 100px 100px 0 0;
    bottom: 0;
}
.innerinfopoints{
    width: 60%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 50px;
}
.innerpoints{

background: #fff;

padding: 40px;

border-radius: 10px;
}


.innerpoints h4{
    font-size: 28px;
    color: var(--secondary-color);
    margin: 0 0 10px;
}
.innerpoints p{font-weight: 400;font-size: 18px;color: #000;}

.innerinfopoints .slick-dots{
    z-index: 999999;
    bottom: 10px;
}
.innerinfopoints .slick-dots li{width: 10px;height: 10px;background: #ccc;);border-radius: 50px;transition: .3s linear;}
.innerinfopoints .slick-dots li button{
    display: none;
}
.innerinfopoints .slick-dots li.slick-active{
    background: var(--secondary-color);
}



.query-one{
    margin: 0;
    border: 0;
    padding: 0 0 100px;
}
.contact-query .queryleft,
.query-one .queryleft{width: 80%;}
.contact-query{
    padding: 50px 0;
    margin: 0;
    border: none;
}
.contact-query .maintitle{}
.contact-query .maintitle h2{
    text-align: center;
    font-size: 32px;
    margin: 0 0 30px;
    border-bottom: 1px solid var(--secondary-color);
    padding: 0 0 15px;
}
.bottomvehicles{
    transform: translateY(70px);
    display: none;
}
.bottomvehicles .one{
    width: 17%;
    transform: translateX(30%);
}
.bottomvehicles .two{
    width: 26%;
    transform: translateX(40%) translateY(-12px);
}

.newin-section{
    padding: 50px 0;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.newin-section:before{
    content: "";
    width: 100%;
    height: 95%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 0 0 100px 100px;
}
.newin-section .maintitle{
    text-align: center;
}
.newin-section .maintitle h2{
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 30px;
}
.newin-slider{}
.newin-slider .newin-content{}
.newin-slider .newin-content p{
    color: var(--secondary-color);
    font-size: 18px;
    text-align: center;
    margin: 0 0 30px;
}
.newin-slider .newin-content figure{}
.newin-slider .newin-content figure img{width: 100%;}
.newin-slider .slick-dots{
    z-index: 999999;
    bottom: 10px;
}
.newin-slider .slick-dots li{
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50px;
    transition: .3s linear;
}
.newin-slider .slick-dots li button{
    display: none;
}
.newin-slider .slick-dots li.slick-active{
    background: var(--secondary-color);
}

.pods-widget{
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background-color: var(--secondary-color);
}
.pods-widget:before{
    content: "";
    width: 100%;
    height: 90%;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: -1;
    border-radius: 100px;
}
.pods-widget .maintitle{
    text-align: center;
    margin: 0 0 40px;
}
.pods-widget .maintitle h2{
    color: var(--primary-color);
    font-weight: 700;
    font-size: 32px;
}
.pods-widget .maintitle p{
    font-size: 20px;
    font-weight: 400;
}
.podlink{
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 2px solid #ddd;
    margin: 0 0 30px;
}
.podlink li{}
.podlink li a{
    font-weight: 600;
    padding: 10px;
    position: relative;
    transition: .3s linear;
}
.podlink li a:before{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    opacity: 0  ;
    transition: .3s linear;
}
.podlink li a:hover:before,
.podlink li a.active:before{
    opacity: 1;
}

.podstab{
    display: none;
    align-items: start;
    gap: 25px;
    width: 90%;
    margin: auto;
}
.podstab.active{
    display: flex;
}
.podstabs-outer{
    flex: 1;
}
.podstabs-box{
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
    margin: 0 0 30px;
}
.podstabs-box figure{
    margin: 0;
}
.podstabs-box figure img{width: 100%;}
.podstabs-box .content{
    padding: 20px;
}
.podstabs-box .content h3{
    font-weight: 700;
    font-size: 22px;
    color: #000;
    margin: 0 0 20px;
}
.podstabs-box .content p{
    color: #000;
    font-weight: 400;
    font-size: 18px;
}
.podstabs_3,
.podstabs_2{
    align-items: center;
}

.pods-saysclient{
    padding: 50px 0 150px;
}
.pods-saysclient:before{
    display: none;;
}

.podsquery{
    padding: 0;
    margin: 0;
    border: none;
}
.podsquery .maintitle{
    text-align: center;
    margin: 0 0 40px;
}
.podsquery .maintitle h2{
    color: #000;
    font-weight: 700;
    font-size: 32px;
    margin: 0 0 10px;
}
.podsquery .maintitle p{
    font-size: 20px;
    font-weight: 400;
}
.podsquery .maintitle + figure{
    margin: 0 0 20px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 40px;
}
.podsquery .maintitle + figure img{width: 100%;border-radius: 10px;}



.zenflowslider{border-radius: 0 0 20px 20px; overflow: hidden;}
.zenflowslider video{width: 100%; display: block;}

.zenflow-content{
    margin: auto;
    text-align: center;
    padding: 50px 0 70px;
    background: var(--secondary-color);
    position: relative;
    z-index: 1;
}
.zenflow-content:before{
    content: "";
    width: 100%;
    height: 93%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0 0 100px 100px;
}
.zenflow-content .maintitle{
    margin: 0 0 35px;
}
.zenflow-content .maintitle h2{
    font-weight: 700;
    margin: 0 0 15px;
}
.zenflow-content .maintitle p{
    width: 80%;
    padding: 0 0 15px;
    margin: 0 auto 15px;
    border-bottom: 1px solid var(--secondary-color);
    font-size: 18px;
}
.zenflow-content .content{}
.zenflow-content .content h4{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #000;
    margin: 0 0 30px;
}
.zenflow-content .content h5{
    font-weight: 600;
    margin: 0 0 20px;
}
.zenflow-content .content p{
    width: 55%;
    margin: auto;
    background: #eee;
    padding: 20px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 10px;
}
.zenflow-content .content p span{
    font-weight: 600;
}

.offering{
    padding: 50px 0 60px;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.offering:before{
    content: "";
    width: 100%;
    height: 93%;
    background: #fff;
    position: absolute;
    top: 2.5%;
    left: 0;
    z-index: -1;
    border-radius: 100px;
}
.offering .maintitle{
    text-align: center;
    margin: 0 0 50px;
}
.offering .maintitle h2{
    font-size: 28px;
    font-weight: 700;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 10px;
    margin: 0 0 20px;
}
.offering .maintitle p{
    font-size: 18px;
    color: #000;
    font-weight: 500;
    width: 50%;
    margin: auto;
}
.offering .content{
    text-align: center;
}
.offering .content > span{
    font-weight: 500;
    font-size: 18px;
    color: #000;
    margin: 0 0 20px;
    display: inline-block;
}
.offering .content ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 0 30px;
}
.offering .content ul li{
    flex-basis: 230px;
}
.offering .content ul li a{
    background: #eee;
    padding: 20px;
    border-radius: 8px;
    color: #000;
}
.offering .content ul li a.active{
    color: #fff;
    background: var(--secondary-color);
}
.offering .content .contentbox{
    display: flex;
    align-items: start;
    gap: 20px;
    width: 70%;
    margin: auto;
}
.offering .content .contentbox .boxes{
    flex-basis: 50%;
}
.offering .content .contentbox .left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
    justify-content: start;
    padding: 60px 0 0;
}
.offering .content .contentbox .left span{
    background: var(--secondary-color);
    padding: 15px;
    width: 100%;
    color: #fff;
    font-weight: 500;
    letter-spacing: .5px;
    border-radius: 5px;
}
.offering .content .contentbox .right{}
.offering .content .contentbox .right img{width: 100%;}


.infrastructure{    
    padding: 50px 0 60px;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.infrastructure:before{
    content: "";
    width: 100%;
    height: 93%;
    background: #fff;
    position: absolute;
    top: 2.5%;
    left: 0;
    z-index: -1;
    border-radius: 100px;
}
.infrastructure .maintitle{
    text-align: center;
}
.infrastructure .maintitle h4{
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 20px;
}
.infrastructure .maintitle figure{}
.infrastructure .maintitle figure img{
    border-radius: 10px;
}
.infrastructure .maintitle span{
    font-size: 22px;
    font-weight: 700;
}
.infrastructure .maintitle p{
    width: 40%;
    margin: 15px auto;
    font-size: 18px;
    color: #000;
    line-height: 1.3;
}
.infrastructure .batteriesfeature{
    margin: 50px auto 0;
    width: 30%;
    text-align: center;
}
.infrastructure .batteriesfeature span{
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary-color);
}
.infrastructure .batteriesfeature .batteryslider{
    margin: 20px 0 0;
    padding: 15px;
}
.infrastructure .batteriesfeature .batteryslider img{width: 40%;margin: 0 auto 15px;}
.infrastructure .batteriesfeature .batteryslider p{
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 18px;
}


.chooseus{
    text-align: center;
    padding: 50px 0 60px;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.chooseus:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 100px 100px 0 0;
}
.chooseus .maintitle{}
.chooseus .maintitle h2{
    font-weight: 700;
    font-size: 32px;
}
.chooseus .maintitle p{
    font-size: 20px;
    color: #000;
    margin: 10px 0 30px;
}
.chooseus .chooseus-slider{
    background: var(--secondary-color);
    padding: 40px 15px;
    width: 70%;
    margin: auto;
    border-radius: 10px;
}
.chooseus .chooseus-slider p{
    font-size: 18px;
    color: #fff;
}

.chooseimg{
    padding: 20px;
}
.chooseimg img{width: 100%;border-radius: 10px;}



.rdcontent{
    padding: 50px 0 60px;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.rdcontent:before{
    content: "";
    width: 100%;
    height: 98%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0 0 100px 100px;
}
.rdcontent .firstcontent{
    padding: 0 0 40px;
}
.rdcontent .firstcontent p{
    font-size: 19px;
    color: #000;
    font-weight: 500;
}
.rdcontent .firstbox{
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}
.rdcontent .firstbox h2{
    font-size: 34px;
    font-weight: 700;
    padding-right: 90px;
    color: #000;
    letter-spacing: 1px;
    margin: 0 0 50px;
}
.rdcontent .firstbox .innerbox{
    background: #000;
    border-radius: 20px;
    height: 83%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.rdcontent .firstbox .innerbox h4{
    padding: 20px 80px 10px 20px;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
}
.rdcontent .firstbox .innerbox p{
    font-size: 18px;
    padding: 0 20px;
    color: #fff;
    font-weight: 200;
    padding-right: 45px;
}
.rdcontent .firstbox .innerbox img{width: 100%;position: absolute;bottom: 0;left: 0;}
.rdcontent .secondbox{
    display: flex;
    align-items: start;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    /* height: 100%; */
}
.rdcontent .secondbox .secondinnerbox{
    flex-basis: 48%;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.rdcontent .secondbox .secondinnerbox h4{
    font-size: 30px;
    font-weight: 400;
    padding: 0 0 10px;
    color: #fff;
}
.rdcontent .secondbox .secondinnerbox p{
    font-size: 18px;
    color: #fff;
}
.rdcontent .secondbox .secondinnerbox img{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.rdcontent .secondbox .innerthirdbox h4{
}
.rdcontent .secondbox .innerthirdbox p{}



.rdcontent .secondbox .innerfirstbox{
    background: var(--secondary-color);
    height: 550px;
}
.rdcontent .secondbox .innersecondbox{
    background: #000;
    height: 550px;
}
.rdcontent .secondbox .innerthirdbox{
    flex-basis: 100%;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
}
.rdcontent .secondbox .innerfirstbox h4{}
.rdcontent .secondbox .innerfirstbox p{}
.rdcontent .secondbox .innerfirstbox img{}
.rdcontent .secondbox .innersecondbox h4{}
.rdcontent .secondbox .innersecondbox p{}
.rdcontent .secondbox .innersecondbox img{}
.rdcontent .secondbox .innerthirdbox .overlay{
    background: var(--secondary-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    padding: 20px;
    height: 100%;
    z-index: 99;
}
.rdcontent .secondbox .innerthirdbox h4{}
.rdcontent .secondbox .innerthirdbox p{}
.rdcontent .secondbox .innerthirdbox img{
    position: relative;
    left: initial;
    bottom: initial;
}

.perfection{
    padding: 50px 0 60px;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.perfection:before{
    content: "";
    width: 100%;
    height: 93%;
    background: #fff;
    position: absolute;
    top: 2%;
    left: 0;
    z-index: -1;
    border-radius: 100px;
}
.perfection .maintitle{
    text-align: center;
    margin: 0 0 40px;
}
.perfection .maintitle h2{
    font-weight: 700;
    color: #000;
    position: relative;
    display: inline-block;
}
.perfection .maintitle h2:before{
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: -10px;
    left: 0;
}
.perfection .maintitle h2 span{
    color: var(--primary-color);
}
.perfectioncontent{}
.perfectioncontent ul{
    margin: auto;
    width: 35%;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}
.perfectioncontent ul li{}
.perfectioncontent ul li a{
    padding: 10px 20px;
    background: #eee;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
}
.perfectioncontent .content{}
.perfectioncontent .content > p{
    text-align: center;
    font-size: 18px;
    color: #000;
}
.perfectioncontent .content h3{
    text-align: center;
    margin: 20px 0;
    font-weight: 700;
}
.perfectioncontent .content h3 span{color: var(--secondary-color);}
.perfectioncontent .content .perfectionslider{
    width: 70%;
    margin: auto;
}
.perfectioncontent .content .perfectionslider > div{}
.perfectioncontent .content .perfectionslider .box{
    text-align: center;
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 25px 15px;
}
.perfectioncontent .content .perfectionslider .box h4{
    font-size: 19px;
    font-weight: 600;
    color: #fff;
}
.perfectioncontent .content .perfectionslider .box p{
    color: #fff;
    font-size: 18px;
}
.perfectioncontent .content .perfectionslider img{width: 80%;margin: auto;}

.perfectionslider .slick-dots{
    z-index: 999999;
    bottom: 10px;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.perfectionslider .slick-dots li{width: 10px;height: 10px;background: #ccc;);border-radius: 50px;transition: .3s linear;}
.perfectionslider .slick-dots li button{
    display: none;
}
.perfectionslider .slick-dots li.slick-active{
    background: var(--secondary-color);
}

.threepoints{
    padding: 50px 0 60px;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.threepoints:before{
    content: "";
    width: 100%;
    height: 93%;
    background: #fff;
    position: absolute;
    top: 2%;
    left: 0;
    z-index: -1;
    border-radius: 100px 100px 0 0;
}
.threepoints .pointswrapper{
    width: 80%;
    margin: auto;
}
.threepoints .pointswrapper .pointbox{
    background: #eee;
    border-radius: 10px;
    margin: 0 0 20px;
    padding: 30px 20px;
    text-align: center;
}
.threepoints .pointswrapper .pointbox h3{
    font-size: 24px;
    font-weight: 600;
}
.threepoints .pointswrapper .pointbox p{
    font-size: 18px;
    margin: 10px 0 0;
}

.whatsappicon{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}
.whatsappicon img{width: 50px;}

.social{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0 0;
}
.social a{
    color: #fff;
    text-align: center;
    transition: .3s linear;
}
.social a:hover{
    color: var(--primary-color);
}


.privacy-policy-container{padding: 50px 0;}
.policybox{padding: 0 0 40px;width: 80%;margin: auto;}
.policybox h3{font-size: 36px;margin: 0 0 10px;color: var(--secondary-color);}
.policybox h3 span{color: var(--primary-color);}
.policybox p{
    color: #313131;
    letter-spacing: 1px;
    margin: 0 0 20px;
    font-size: 18px;
    text-align: justify;
}
.policybox p:last-child{margin: 0;}
.innerpolicy{
}
.innerpolicy h3{}
.innerpolicy h3 span{color: var(--primary-color);}
.innerpolicy p{}


.becomedealer-container{padding: 50px 0;}
.becomedealer-left{padding-right: 20px;}
.becomedealer-box{padding: 0 0 50px;margin: auto;}
.becomedealer-box h3{
    font-family: var(--secondary-font);
    color: #282828;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0 15px;
}
.becomedealer-box h3 span{color: var(--primary-color);display: block;font-weight: 500;font-family: var(--secondary-font);letter-spacing: 1px;}
.becomedealer-box p{
    color: #313131;
    margin: 10px 0 0;
    font-size: 16px;
    text-align: justify;
    font-family: var(--secondary-font);
}

.becomedealer-frm-container{}
.becomedealer-frm-container .title{padding: 0 0 20px;}
.becomedealer-frm-container .title h3{font-size: 24px;color: #000;font-family: var(--secondary-font);font-weight: 400;}
.becomedealer-frm-container .title p{
    color: var(--primary-color);
    letter-spacing: 1px;
    text-align: center;
    font-size: 18px;
}
.becomedealer-frm-container form{
    background: #fff;
    box-shadow: 0 0 20px 5px rgb(0 0 0 / 10%);
    padding: 30px;
    border-radius: 10px;
}
.becomedealer-frm-container form .fields-steps{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 30px;
    position: relative;
    z-index: 1;
}
.becomedealer-frm-container form .fields-steps:before{
    content: "";
    width: 135px;
    border-top: 2px dashed #ddd;
    position: absolute;
    top: 4px;
    left: 11%;
}
.becomedealer-frm-container form .fields-steps:after{
    content: "";
    width: 135px;
    border-top: 2px dashed #ddd;
    position: absolute;
    top: 4px;
    right: 12%;
}
.becomedealer-frm-container form .fields-steps span{
    font-size: 13px;
    font-family: var(--secondary-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 0;
    /* flex: 1; */
}
.becomedealer-frm-container form .fields-steps span.active{
    color: var(--secondary-color);
    font-weight: 500;
}
.becomedealer-frm-container form .fields-steps span:nth-child(1){
}
.becomedealer-frm-container form .fields-steps span:nth-child(3){
}
.becomedealer-frm-container form .fields-steps span:before{
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    background: #888;
    border-radius: 50px;
}
.becomedealer-frm-container form .fields-steps span.active:before{
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    outline: 1px solid var(--secondary-color);
    outline-offset: 2px;
}
.becomedealer-frm-container form .fields-steps span:not(:first-child):after{
    content: "";
    width: 125px;
    /* border-top: 1px dashed #888; */
    position: absolute;
    top: 0;
    left: -230%;
}
.becomedealer-frm-container form .fields{
    position: relative;
    margin: 0 0 30px;
    
}
.becomedealer-frm-container form .fields small{
    color: red;
    font-size: 12px;
    letter-spacing: .5px;
}
.becomedealer-frm-container form .fields :is(input, select){
    color: #000;
    border-radius: 6px;
    border: none;
    outline: none;
    padding: 10px 15px;
    background: none;
    border: 1px solid #939393;
}
.becomedealer-frm-container form .fields :is(input, select):focus{
    box-shadow: none;
    outline: none;
}
.becomedealer-frm-container form .fields label{
    position: absolute;
    top: -9px;
    left: 10px;
    background: #fff;
    padding: 0 5px;
    color: #333;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--secondary-font);
}
.becomedealer-frm-container form .fields-radio{
    padding: 0 0 30px;
}
.becomedealer-frm-container form .fields-radio label{
    padding: 0 0 5px;
}
.becomedealer-frm-container form .fields-radio .radioinput{
    display: flex;
    align-items: center;
    gap: 80px;
}
.becomedealer-frm-container form .fields-radio .radioinput .radio{}
.becomedealer-frm-container form .fields-radio .radioinput .radio input{}
.becomedealer-frm-container form .fields-radio .radioinput .radio label{
    cursor: pointer;
    padding: 0;
}
.becomedealer-frm-container form .fields input{}
.becomedealer-frm-container form .fields select{}
.becomedealer-frm-container form .fields select option{color: #000;}
.becomedealer-frm-container form .fields-btn{
    display: flex;
    align-items: center;
    gap: 15px;
}
.becomedealer-frm-container form .fields-btn button{outline: none;border: none;margin: 0;border-radius: 3px;background: var(--secondary-color);color: #fff;font-size: 16px;width: 100%;}
.becomedealer-frm-container form .fields-btn button.unactive{
    background: #dddfff;
    color: #bbbbbb;
    cursor: no-drop;
}
.becomedealer-frm-container form .fields-type{
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 0 0 10px;
}
.becomedealer-frm-container form .fields-type label{
    cursor: pointer;
    padding: 0 0 10px;
}
.becomedealer-frm-container form .fields-type input{
    width: 20px;
    height: 20px;
    accent-color: var(--secondary-color);
}



.becomedealer-faq{
}
.becomedealer-faq h2{font-family: var(--secondary-font);color: #282828;text-transform: uppercase;font-weight: 500;letter-spacing: 1px;padding: 0 0 15px;font-size: 28px;}
.becomedealer-faq h2 span{font-family: var(--secondary-font);color: var(--primary-color);text-transform: uppercase;font-weight: 500;letter-spacing: 1px;}
.becomedealer-faq .faqsbox{
    margin: 0 auto 20px;
    padding: 15px;
    box-shadow: 0 2px 10px 1px rgb(0 0 0 / 10%);
    border-radius: 10px;
    background: #f1f1f1;
}
.becomedealer-faq .faqsbox h3{
    font-size: 20px;
    color: #000;
    position: relative;
    z-index: 1;
    cursor: pointer;
    font-weight: 400;
}
.becomedealer-faq .faqsbox h3 i{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 18px;
}
.becomedealer-faq .faqsbox .faqinnerbox{
    padding: 15px 0 0;
    display: none;
}
.becomedealer-faq .faqsbox .faqinnerbox.active{
    display: block;
}
.becomedealer-faq .faqsbox .faqinnerbox p{
    font-size: 16px;
    color: #313131;
    font-weight: 400;
}


.vehiclecat-container{
    padding: 50px 0 100px;
}
.vehiclecatright{
    text-align: end;
}
.vehiclecatright figure{
    background: #f1f1f1;
    border-radius: 20px;
    text-align: center;
    width: 80%;
    margin: auto;
    padding: 20px;
}
.vehiclecatright figure img{width: 100%;}
.vehiclecatleft{
    height: 100%;
    display: flex;
}
.vehiclecatleft .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.vehiclecatleft .content h3{
    font-size: 36px;
    margin: 0 0 10px;
    color: #252525;
    color: var(--secondary-color);
}
.vehiclecatleft .content p{
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
}
.vehiclecatleft .content a{}
.vehiclecatleft .content a:hover{}

.nobanner{
    height: 85px;
    background: #000;
}


.vehicles-container{
    padding: 50px 0 100px;
}
.vehicles-container .vehiclebox{
    background: #f1f1f1;
    border-radius: 20px;
}
.vehicles-container .vehiclebox figure{
    text-align: center;
}
.vehicles-container .vehiclebox figure img{
    width: 80%;
    margin: auto;
}
.vehicles-container .vehiclebox .content{
    text-align: center;
    padding: 0 0 40px;
}
.vehicles-container .vehiclebox .content h3{
}


.blogspage{
    padding: 50px 0 100px;
}
.blogspage .blogbox{
    box-shadow: 0 0 10px 3px rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 20px;
}
.blogspage .blogbox figure{
    text-align: center;
    background: #f1f1f1;
    border-radius: 10px;
}
.blogspage .blogbox figure img{width: 80%;margin: auto;}
.blogspage .blogbox .content{}
.blogspage .blogbox .content .date{color: var(--primary-color);letter-spacing: 1px;}
.blogspage .blogbox .content .date i{color: var(--secondary-color);margin-right: 5px;}
.blogspage .blogbox .content h3{font-size: 18px;margin: 10px 0;letter-spacing: 2px;line-height: 1.4;font-weight: 600;text-overflow: ellipsis;overflow: hidden;-webkit-box-orient: vertical;-webkit-line-clamp: 2;display: -webkit-box;}
.blogspage .blogbox .content p{
    font-size: 18px;
    letter-spacing: 1px;
}

.blogspage .blogbox .content p span{
    font-family: 'regular';
}



.oneblog{}
.oneblog .oneblogbox{}
.oneblog .oneblogbox figure{
    text-align: center;
    background: #f4f4f4;
    border-radius: 10px;
}
.oneblog .oneblogbox figure img{width: 50%;}
.oneblog .oneblogbox .oneblogcontent{
    padding: 20px 0 100px;
    width: 80%;
    margin: auto;
}
.oneblog .oneblogbox .oneblogcontent .date{
    color: var(--primary-color);
    letter-spacing: 1px;
}
.oneblog .oneblogbox .oneblogcontent .date i{
    color: var(--secondary-color);
}
.oneblog .oneblogbox .oneblogcontent h1{
    font-size: 32px;
    margin: 15px 0;
    font-weight: 600;
    letter-spacing: 2px;
}
.oneblog .oneblogbox .oneblogcontent h2{
    font-size: 24px;
    font-weight: 600;
    padding: 15px 0 10px;
    letter-spacing: 2px;
}
.oneblog .oneblogbox .oneblogcontent p{
    letter-spacing: 1px;
    padding: 0 0 15px;
    font-size: 18px;
}


.productcontent{padding: 40px 0 100px;}
.productleft{
    background: #f5f5f5;
    border-radius: 10px;
    text-align: center;
}
.productleft .mainimg{
    width: 80%;
    margin: auto;
}
.productleft .imgs{text-align: center;overflow: auto;display: flex;gap: 10px;align-items: center;justify-content: center;}
.productleft .imgs img{
    border: 1px solid #1c218240;
    margin: 0 0 10px;
    display: inline-block;
    width: 80px;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
}

.productright{}
.productright h3{
    font-size: 36px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1px;
}
.productright .price{
    padding: 15px 0 0;
}
.productright .price .newprice{
    font-weight: 600;
    font-size: 18px;
}
.productright .price .newprice div{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}
.productright .category{
    padding: 10px 0 25px;
}
.productright .category > span{
    font-weight: 500;
    font-size: 18px;
    display: block;
}
.productright .category > span > span{
    color: #999;
}
.productright p{
    font-size: 20px;
}
.productright .actionbtns{
    padding: 20px 0 30px;
    display: flex;
    gap: 15px;
}
.productright .actionbtns .actionbtn{
    padding: 10px 50px;
    border-radius: 3px;
    color: var(--secondary-color);
    font-size: 15px;
    letter-spacing: 1px;
    border: 1px solid var(--secondary-color);
    text-align: center;
    text-transform: uppercase;
    transition: .3s linear;
}
.productright .actionbtns .actionbtn:hover,
.productright .actionbtns .enquiry{background: var(--secondary-color);color: #fff;}
.productright .actbtns .contact{}
.shareit{
    display: flex;
    align-items: center;
}
.shareit > span{
    letter-spacing: 1px;
    color: #999;
    font-size: 18px;
}
.shareit .links{}
.shareit .links a{
    display: inline-block;
    margin: 0 10px;
    transition: .3s linear;
}
.shareit .links a:hover{
    color: var(--secondary-color);
}

.productright .btns .actbtn:hover{}
.productright .actbtns .actbtn:hover{
    background: #444;
    color: #fff;
}
.prodesc-widget{
    padding: 60px 0 0;
}
.prodescbox{}
.prodescbox-header{
}
.prodesc-link{
    font-size: 36px;
    letter-spacing: 1px;
    color: var(--secondary-color);
}
.prodesc-body{
    padding: 10px 0 0 0;
}
.prodesc-body h3{
    font-size: 22px;
    margin: 20px 0 5px;
}
.prodesc-body p{
    font-size: 16px;
    letter-spacing: .5px;
}


.product-faq{
    padding: 40px 0;
}
.product-faq .title{
    padding: 0 0 10px;
}
.product-faq .title h2{
    font-size: 36px;
    color: var(--secondary-color);
}
.product-faq .faqsbox{
    margin: 0 auto 20px;
    box-shadow: 0 1px 10px rgb(0 0 0 / 12%);
    padding: 15px;
    border-radius: 5px;
}
.product-faq .faqsbox h3{
    font-size: 22px;
    color: #000;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.product-faq .faqsbox h3 i{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 18px;
}
.product-faq .faqsbox .faqinnerbox{
    padding: 15px 0 0;
    display: none;
}
.product-faq .faqsbox .faqinnerbox.active{
    display: block;
}
.product-faq .faqsbox .faqinnerbox p{
    letter-spacing: 1px;
    font-size: 18px;
    color: #313131;
}


.enquirypopup{
    background: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: .4s linear;
}
.enquirypopup.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.enquiryinnerpopup{
    width: 60%;
    border-radius: 10px;
    background: #fff;
    padding: 40px;
    position: relative;
    transition: .3s linear;
    margin-top: -20px;
}
.enquirypopup.active .enquiryinnerpopup{
    margin-top: 0;
}
.enquiryinnerpopup .closeenquirypopup{
    position: absolute;
    top: 15px;
    right: 15px;
}
.enquiryinnerpopup .title{
    padding: 0 0 30px;
}
.enquiryinnerpopup .title h3{
    font-weight: 600;
    font-family: var(--secondary-font);
}
.enquiryinnerpopup .title p{
    letter-spacing: 1px;
}
.enquiryinnerpopup form{}
.enquiryinnerpopup form .fields{margin: 0 0 20px;position: relative;}
.enquiryinnerpopup form .fields label{font-size: 13px;color: #00000087;font-weight: 500;display: block;letter-spacing: 1px;text-transform: uppercase;position: absolute;top: -8px;left: 8px;background: #fff;padding: 0 7px;}
.enquiryinnerpopup form .fields select,
.enquiryinnerpopup form .fields input{
    border: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    outline: none;
}
.enquiryinnerpopup form .fields textarea{
    height: 90px;
    width: 100%;
    border: 1px solid #ddd;
    padding: 15px;
}
.enquiryinnerpopup form .fields input:focus,
.enquiryinnerpopup form .fields textarea:focus{
    box-shadow: none;
    outline: none;
}
.enquiryinnerpopup form .fields-btn{
    text-align: center;
}
.enquiryinnerpopup form .fields-btn button{
    width: 30%;
    background: var(--secondary-color);
    border: none;
    padding: 10px;
    border-radius: 3px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* home about section style start */

.aboutsection {background: #202020;padding: 80px 0;}

.aboutsection .aboutsectionbox {}

.aboutsection .aboutsectionbox .abouthead {}

.aboutsection .aboutsectionbox .abouthead h3 {font-weight: 500;font-size: 20px;color: #757575;text-transform: uppercase;margin-bottom: 8px;letter-spacing: 2px;}

.aboutsection .aboutsectionbox .abouthead .aboutsubhead {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aboutsection .aboutsectionbox .abouthead .aboutsubhead h2 {font-family: var(--secondary-font); */font-size: 36px;color: #fff;text-transform: uppercase;font-weight: 500;letter-spacing: 1px;}

.aboutsection .aboutsectionbox .abouthead .aboutsubhead a {
    color: #fff;
    transition: all .3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}
}

.aboutsection .aboutsectionbox .abouthead .aboutsubhead a i {
    font-size: 14px;
}

.aboutsection .aboutsectionbox .abouthead p {
    color: #cacaca;
    width: 100%;
    font-weight: 300;
    font-size: 16px;
    margin: 0;
}

.aboutsection .aboutsectionbox .abouthead p span {
    font-weight: 600;
    color: #c4c4c4;
    letter-spacing: .5px;
}

/* home about section style end */

/* home dealer section style start */

.dealersection {
    padding: 80px 0px;
    background: #fff;
}

.dealersection .dealer-box {
    max-width: 100%;
    margin: 0 16px;
    padding: 40px;
    backdrop-filter: blur(60px);
    box-shadow: 0px 4px 44px 0px #00000024;
    border-radius: 4px;
}

.headingbox {
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.headingbox div {
}

.headingbox div h3 {font-weight: 500;font-size: 20px;color: #757575;text-transform: uppercase;margin-bottom: 8px;letter-spacing: 2px;}

.headingbox div h2 {font-family: var(--secondary-font);color: #282828;text-transform: uppercase;font-weight: 500;letter-spacing: 1px;padding: 0 0 15px;}

.headingbox div p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #4D4D4D;
    width: 663px;
    margin: 0;
    letter-spacing: .5px;
}

.dealersection .dealer-box .dealerbox {
    display: flex;
    margin: 24px 0;
}

.dealersection .dealer-box .dealerbox .dealeritem {
    border-radius: 4px;
    flex: 1;
    margin-right: 13px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.dealersection .dealer-box .dealerbox .dealeritem img {
    width: 90%;
    transition: all .3s;
    margin: 0 auto 40px;
}

.dealersection .dealer-box .dealerbox .dealeritem .innerbox {
    background: linear-gradient(0deg, #000000 0%, rgba(115, 115, 115, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    padding: 16px;
    justify-content: center;
    z-index: -1;
}

.dealersection .dealer-box .dealerbox .dealeritem .innerbox p {
    display: flex;
    align-items: center;
    line-height: 1;
    margin: 0;
}

.dealersection .dealer-box .dealerbox .dealeritem .innerbox p span {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}

.dealersection .dealer-box .dealerbox .dealeritem .innerbox p i {
    font-size: 16px;
    margin-left: 4px;
    transition: all .3s;
}

.dealersection .dealer-box .dealerlowerbox {
    display: flex;
    justify-content: space-between;
    padding: 24px 0 0;
    align-items: flex-end;
    border-top: 1px solid #0000001A;
}

.dealersection .dealer-box .dealerlowerbox div {}

.dealersection .dealer-box .dealerlowerbox div h3 {font-family: var(--secondary-font);color: #282828;/* text-transform: uppercase; */font-weight: 500;letter-spacing: 0px;padding: 0 0 15px;}

.dealersection .dealer-box .dealerlowerbox div p {
    font-weight: 400;
    font-size: 16px;
    line-height: 19.6px;
    max-width: 796px;
    margin: 0;
    color: #4D4D4D;
    letter-spacing: .5px;
}

.dealersection .dealer-box .dealerlowerbox a {
    width: 230px;
    height: 48px;
    border-radius: 4px;
    background: #253C80;
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 21.92px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
}

/* home dealer section style end */

/* award section style start */

.awardsection {
    padding: 50px 0px;
}

.awardsection .awardsectionbox {}

.awardsection .awardsectionbox .headingbox {
    display: block;
    display: block;
    min-width: 1px;
    padding-left: 10px;
}

.awardsection .awardsectionbox .headingbox h3 {font-weight: 500;font-size: 20px;color: #757575;text-transform: uppercase;margin-bottom: 8px;letter-spacing: 2px;}

.awardsection .awardsectionbox .headingbox .subheading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.awardsection .awardsectionbox .headingbox .subheading h2 {
    font-family: var(--secondary-font);
    color: #282828;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0 15px;
}

.awardsection .awardsectionbox .headingbox .subheading a {
    color: var(--secondary-color);
    transition: all .3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.awardsection .awardsectionbox .headingbox .subheading a i {
    font-size: 14px;
    padding-left: 4px;
}

.awardsection .awardsectionbox .award-box {}

.awardsection .awardsectionbox .award-box .awardbox {
    background-color: #fff;
    display: flex;
    align-items: center;
    border: solid 1px #cecece;
    border-color: #dfdfdf;
    border-radius: 4px;
    box-shadow: none;
    padding: 0px;
    margin: 0px 8px;
    padding: 50px 30px;
}

.awardsection .awardsectionbox .award-box .awardbox .awardcontent {
    position: inherit;
    left: 0;
    top: 0;
    /* padding: 60px 25px 65px 25px; */
    background: #ffffff;
    text-align: left;
    flex: 1;
    /* padding-left: 36px; */
    font-size: 18px;
}

.awardsection .awardsectionbox .award-box .awardbox .awardcontent h2.title {
    font-size: 22px;
    text-transform: none;
    font-family: var(--secondary-font);
    font-weight: 400;
}

.awardsection .awardsectionbox .award-box .awardbox .awardcontent h2:after {
    content: "";
    height: 2px;
    width: 105px;
    background: #000000;
    display: block;
    margin: 10px 0;
    border-radius: 50px;
}

.awardsection .awardsectionbox .award-box .awardbox .awardcontent p {
    font-size: 14px;
    color: #787878;
    font-weight: 400;
    font-family: var(--secondary-font);
    letter-spacing: 0.5px;
}

.awardsection .awardsectionbox .award-box .awardbox .awardimg {
    /* background: linear-gradient(270deg, #efefef -4.69%, #f4f4f4 100%); */
    /* padding: 60px 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.awardsection .awardsectionbox .award-box .awardbox .awardimg img {
    width: auto;
    display: inline-block;
    height: 100%;
}

/* award section style end */

/* productsection style start */

.productsection {
    padding: 50px 0px;
}

.productsection .productsectionbox {}

.productsection .productsectionbox .headingbox {
    display: block;
    margin: 0 15px 20px 15px;
    display: block;
    min-width: 1px;
}

.productsection .productsectionbox .headingbox h3 {
    font-weight: 500;
    font-size: 20px;
    color: #757575;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.productsection .productsectionbox .headingbox .subheading {
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.productsection .productsectionbox .headingbox .subheading h2 {
    font-family: var(--secondary-font);
    font-size: 36px;
    color: #282828;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.productsection .productsectionbox .headingbox .subheading a {
    color: var(--secondary-color);
    transition: all .3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.productsection .productsectionbox .headingbox .subheading a i {
    font-size: 14px;
}

.productsection .productsectionbox .product-box {
    padding: 0px 10px;
    margin: 10px 0px;
}

.productsection .productsectionbox .product-box .categorybox {
    max-width: 100%;
    width: auto;
    margin: 0px 15px 20px 10px;
}
.productsection .productsectionbox .product-box .categorybox .leve1.nav-tabs {
    border-bottom: 1px solid #bcbdbd;
    display: inline-block;
    margin-bottom: 0px;
}

.productsection .productsectionbox .product-box .categorybox .leve1.nav-tabs li {
    float: left;
    margin-bottom: -1px;
    font-weight: 500;
    color: #000000;
    font-size: 20px;
    padding: 0 20px;
}
.productsection .productsectionbox .product-box .categorybox .leve1.nav-tabs li:first-child {
    padding-left: 0;
}

.productsection .productsectionbox .product-box .categorybox .leve1.nav-tabs li.active {}

.productsection .productsectionbox .product-box .categorybox .leve1.nav-tabs li a {
    color: #202020;
    border: 0 none;
    margin-top: -1px;
    padding: 13px 15px;
    background: transparent;
    font-size: 16px;
    font-weight: 400;
}

.productsection .productsectionbox .product-box .categorybox .leve1.nav-tabs li a.active {
    border-bottom: solid 4px var(--primary-color);
    font-weight: 600;
}
.productsection .productsectionbox .product-box .tab-content {}

.productsection .productsectionbox .product-box .tab-content .tab-pane {
    position: relative;
    display: block;
    height: 0;
    overflow: hidden;
}

.productsection .productsectionbox .product-box .tab-content .tab-pane.active {
    height: auto;
    opacity: 1;
}

.product-box .tab-content .tab-pane .categoryproductbox {}

.product-box .tab-content .tab-pane .categoryproductbox .productbox {
    background: #ffffff;
    transition: all 0.3s;
    box-shadow: 0 5px 10px 5px #eee;
    /* margin: 0px 10px; */
    /* border: 1px solid #eee; */
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    transition: .3s linear;
}
.product-box .tab-content .tab-pane .categoryproductbox .productbox:hover{
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.product-box .tab-content .tab-pane .categoryproductbox .productbox .productheader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productheader h2 {
    margin-bottom: 0;
    color: #212121;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 20px;
    font-weight: 600;
    font-size: 20px;
    font-family: var(--secondary-font);
    padding: 15px;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox .productimg {
    /* border-radius: 4px; */
    border: 1px solid #ddd9d9;
    padding: 30px;
    background: #c4c4c4;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox .productimg img {
    height: 300px;
    width: 100%;
    object-fit: contain;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox ul {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox ul:before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox ul li {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--secondary-font);
    z-index: 1;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox ul li:nth-child(2){
    border-inline: 1px solid #aaa;
    padding-inline: 15px;
}


.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox ul li:first-child {
    border: none;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox ul li strong {
    color: #fff;
    text-transform: none;
    display: block;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--secondary-font);
    text-transform: uppercase;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox {
    display: flex;
    align-items: center;
    padding: 20px;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox .productinfo {
    margin-top: 0;
    flex: 1 0 0;
    margin-right: 10px;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox .productinfo p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: var(--secondary-font);
    vertical-align: middle;
    margin: 0px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox .productinfo p em {
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-color);
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox .productinfo p span.productprice {
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox .productbtn {}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox .productbtn a {
    padding: 5px 20px;
    min-width: 110px;
    font-size: 16px;
    width: auto;
    font-weight: 500;
    font-family: var(--secondary-font);
    border-radius: 3px;
    border: 1px solid var(--secondary-color);
    text-transform: none;
    color: #fff;
    background: var(--secondary-color);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 8px 15px;
}

/* productsection style start */

/* partners section style start */

.partenrsection {
    padding: 50px 0px;
    background: #eee;
}

.partenrsection .partnersectionbox {
}

.partenrsection .partnersectionbox .headingbox {
    display: block;
}

.partenrsection .partnersectionbox .headingbox h3 {font-weight: 500;font-size: 20px;color: #757575;text-transform: uppercase;margin-bottom: 8px;letter-spacing: 2px;}

.partenrsection .partnersectionbox .headingbox .subheading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partenrsection .partnersectionbox .headingbox .subheading h2 {
    font-family: var(--secondary-font);
    color: #282828;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0 15px;
}

.partenrsection .partnersectionbox .headingbox .subheading a {color: var(--secondary-color);transition: all .3s;letter-spacing: 2px;text-transform: uppercase;font-size: 14px;}

.partenrsection .partnersectionbox .headingbox .subheading a i {
    font-size: 14px;
    margin-left: 4px;
}

.partenrsection .partnersectionbox .partnersbox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 30px 20px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    /* border-radius: 16px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.partenrsection .partnersectionbox .partnersbox .partners-box {

}


.partenrsection .partnersectionbox .partnersbox .partners-box .partnerimg {
    border: 1px solid #eee;
    display: inline-block;
    /* filter: grayscale(1); */
    transition: .3s ease;
    padding: 10px;
    /* margin: 7px; */
    cursor: pointer;
    /* background: #000; */
    width: 100%;
    margin: 0 0 20px;
    border-radius: 5px;
    transition: .3s linear;
    background: #fff;
}
.partenrsection .partnersectionbox .partnersbox .partners-box:hover .partnerimg:not(:hover){
    
    filter: grayscale(1);
}
.partenrsection .partnersectionbox .partnersbox .partners-box .partnerimg:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

.partenrsection .partnersectionbox .partnersbox .partners-box .partnerimg img {
    width: 100%;
    object-fit: contain;
    height: 100px;
}

/* partners section style end */

/* certificate section style start */

.certificatesection {
    padding: 30px 0px 50px;
    position: relative;
    z-index: 0;
}

.certificatesection .certificatesectionbox {}

.certificatesection .certificatesectionbox .headingbox {
    display: block;
    text-align: center;
    padding: 0 0 40px;
}

.certificatesection .certificatesectionbox .headingbox h3 {font-weight: 500;font-size: 20px;color: #757575;text-transform: uppercase;margin-bottom: 8px;letter-spacing: 2px;}

.certificatesection .certificatesectionbox .headingbox .subheading {}

.certificatesection .certificatesectionbox .headingbox .subheading h2 {font-family: var(--secondary-font);color: #282828;text-transform: uppercase;font-weight: 500;letter-spacing: 1px;}
.certificatesection  .slick-list{padding: 100px 0 !important;}
.certificatesection .certificatesectionbox .certificatebox {
    transition: all .3s ease-in-out;
    transform: scale(1.1);
    /* box-shadow: 0 0 30px 10px rgb(0 0 0 / 15%); */
}
.certificatesection .certificatesectionbox .certificatebox:nth-child(1){}
.certificatesection .certificatesectionbox .certificatebox:nth-child(2){}
.certificatesection .certificatesectionbox .certificatebox:nth-child(3){}
.certificatesection .certificatesectionbox .certificatebox:nth-child(4){}
.certificatesection .certificatesectionbox .certificatebox:nth-child(5){
    transform: scale(1.3);
}
.certificatesection .certificatesectionbox .certificatebox:nth-child(6){
}
.certificatesection .certificatesectionbox .certificatebox.slick-active.slick-center {
    z-index: 9;
    position: relative;
    transform: scale(1.4);
}
.certificatesection .certificatesectionbox .certificatebox .certificate-box {
}

.certificatesection .certificatesectionbox .certificatebox .certificate-box figure {
    margin: 0;
}

.certificatesection .certificatesectionbox .certificatebox .certificate-box figure img {
    width: 100%;
}

/* certificates section style end */


.mySwiper3{
    padding: 150px 0;
    overflow-x: hidden;
}
.mySwiper3 .swiper-wrapper{}
.mySwiper3 .swiper-wrapper .swiper-slide{
    transition: .3s linear;
    position: relative;
    z-index: 9;
    transform: scale(1.2);
    margin-top: -30px;
}
.mySwiper3 .swiper-wrapper .swiper-slide.swiper-slide-active{
    transform: scale(1.6);
    z-index: 99;
    margin-top: 0;
    box-shadow: 0 0 30px 10px rgb(0 0 0 / 15%);
}
.mySwiper3 .swiper-wrapper .swiper-slide.swiper-slide-next,
.mySwiper3 .swiper-wrapper .swiper-slide.swiper-slide-prev{
    z-index: 98;
    margin-top: 0;
    box-shadow: 0 0 30px 10px rgb(0 0 0 / 15%);
}
.mySwiper3 .swiper-wrapper .swiper-slide .certificatebox{}
.mySwiper3 .swiper-wrapper .swiper-slide .certificatebox .certificate-box{}
.mySwiper3 .swiper-wrapper .swiper-slide .certificatebox .certificate-box figure{margin: 0;}
.mySwiper3 .swiper-wrapper .swiper-slide .certificatebox .certificate-box figure img{width: 100%;}
.mySwiper3 .swiper-button-next{right: 25%;}
.mySwiper3 .swiper-button-prev{left: 25%;}
.mySwiper3 .swiper-button-next,
.mySwiper3 .swiper-button-prev{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 0 15px 10px #eee;
    border: 1px solid #eee;
}
.mySwiper3 .swiper-button-next:after,
.mySwiper3 .swiper-button-prev:after{
    font-size: 15px;
}


.vehicleproducts{
    padding: 40px 0 100px;
}

.vehicleproducts-box {
    background: #ffffff;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    transition: .3s linear;
}
.vehicleproducts-box:hover{
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.vehicleproducts-head{
    color: #212121;
    white-space: nowrap;
    font-weight: 600;
    font-size: 20px;
    font-family: var(--secondary-font);
    padding: 15px;
    display: block;
    text-align: center;
    line-height: 1;
}

.vehicleimgbox {
    position: relative;
    overflow: hidden;
    background: #c4c4c4;
}

.vehicleimgbox .vehicle-img {
    border: 1px solid #ddd9d9;
    padding: 30px;
    background: #c4c4c4;
    margin: 0;
}

.vehicleimgbox .vehicle-img img {
    height: 300px;
    width: 100%;
    object-fit: contain;
}

.vehicleimgbox ul {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vehicleimgbox ul:before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
}

.vehicleimgbox ul li {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--secondary-font);
    z-index: 1;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.vehicleimgbox ul li:nth-child(2){
    border-inline: 1px solid #aaa;
    padding-inline: 15px;
}


.vehicleimgbox ul li:first-child {
    border: none;
}

.vehicleimgbox ul li span {
    color: #fff;
    text-transform: none;
    display: block;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--secondary-font);
    text-transform: uppercase;
}

.vehiclebox-content {
    display: flex;
    align-items: center;
    padding: 20px;
}

.vehiclebox-content .contentinfo {
    margin-top: 0;
    flex: 1 0 0;
    margin-right: 10px;
}

.vehiclebox-content .contentinfo p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: var(--secondary-font);
    vertical-align: middle;
    margin: 0px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehiclebox-content .contentinfo p .vehicleprice {
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.vehiclebox-content .vehiclebtn {}

.vehiclebox-content .vehiclebtn a {
    padding: 5px 20px;
    min-width: 110px;
    font-size: 16px;
    width: auto;
    font-weight: 500;
    font-family: var(--secondary-font);
    border-radius: 3px;
    border: 1px solid var(--secondary-color);
    text-transform: none;
    color: #fff;
    background: var(--secondary-color);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 8px 15px;
}




@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Questrial&display=swap');
o{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
:root{
    --secondary-font: "Poppins", sans-serif;
    --primary-color: #DD0223;
    --secondary-color: #1C2182;
    --txt-color: #231F20;
    --bg-linear: linear-gradient(35deg, rgb(62 64 149) 0%, rgb(236 50 55) 0%, rgb(62 64 149) 100%);
    --bg-linear-blue: #4d52ad;
    --bg-linear-change: linear-gradient(90deg, rgb(107 107 251) 0%, rgb(253 78 78) 100%);
}
body{
    overflow-x: hidden;
}
body::-webkit-scrollbar{
    width: 5px;
    background: #000;
}
body::-webkit-scrollbar-thumb{
    background: #f5f5f5;
}
a{text-decoration: none;color: #000; display: block;}
ul{padding: 0; margin: 0; list-style-type: none;}
p,h1,h2,h3,h4,h5,h6{margin: 0;}
h2 i{
    color: var(--third-color);
}
.actionbtn{
    border-radius: 4px;
    background: #253C80;
    font-family: var(--secondary-font);
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    padding: 10px 30px;
}
.actionbtn:hover{background: var(--secondary-color);color: #fff;}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
.closemobmenu,
.moblogo,
.togglemenu{display: none;}
header{
    /* box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%); */
    /* overflow: hidden; */
    position: relative;
    z-index: 1;
}
header .menu-header{
    /* background: #000; */
    background: linear-gradient(180deg, black, transparent);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    transition: .3s linear;
}
header .menu-header.fix{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    border-radius: 0;
    z-index: 99999;
}
.weblogo{
    padding: 10px;
    text-align: center;
}
.weblogo img{width: 60px;}
.leftlogo{text-align: right;}
.leftlogo img{width: 180px;margin: 10px 0;}
.headerinfo{}
.headerinfo .boxes{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 35px;
    padding: 0 15px;
}
.headerinfo .boxes.box1{padding: 15px;border-bottom: 1px solid #073654;}
.headerinfo .boxes .infolink{
    color: #ffffffbd;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: .5px;
}
.headerinfo .boxes .infolink .linkicon{
    width: 50px;
    height: 50px;
    background: var(--third-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff99;
}
.headerinfo .boxes .infolink div{}
.headerinfo .boxes .infolink div span{color: var(--secondary-color);font-weight: 600;}
.headerinfo .boxes .infolink.cartlink{
    height: 50px;
    background: var(--third-color);
    padding: 0 20px;
    border-radius: 50px;
}
.headerinfo .boxes .infolink.cartlink .linkicon{
    height: auto;
    width: auto;
    position: relative;
    z-index: 1;
}
.headerinfo .boxes .infolink.cartlink .linkicon .cartcount{
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 12px;
    font-style: normal;
    background: var(--secondary-color);
    width: 15px;
    height: 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
.headerbreadcrumb{
    background: #000;
        padding: 150px 120px 30px;
}
.headerbreadcrumb h3{
    color: #fff;
}

.menubox{
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.menubox .menulist{
    position: relative;
    z-index: 1;
}
.menubox .menulist:not(:first-child):after{
    content: "";
    width: 1px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: -14px;
    transform: translateY(-50%);
    background: rgb(255 255 255 / 40%);
    display: none;
}
.menubox .menulist .menulink{
    padding: 30px 0;
    color: #fff;
    transition: .3s linear;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.menubox .menulist .menulink:hover{
    color: #aaa;
}
.menubox .menulist .searchicon{color: #fff; margin-right: 15px;}
.menubox .menulist .searchicon:hover{color: var(--secondary-color);}
.submenu{position: absolute;top: 100%;background: #fff; min-width: 200px;z-index: 9999;left: 50%;transform: translate(-50%, 20px);transition: .3s linear;padding: 10px 20px;border-radius: 2px;opacity: 0;visibility: hidden;pointer-events: none;border-radius: 10px;box-shadow: 0 4px 20px 3px rgb(0 0 0 / 10%);border: 1px solid #ddd;}
.menulist:hover .submenu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.submenu .sublist{
    padding: 5px 0;
}

.submenu .sublist .sublink:hover{
    color: var(--primary-color);
}
.submenu:before{
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: -5px;
    left: 50%;
    border-radius: 3px;
    transform: translateX(-50%) rotate(45deg);
    background: #fff;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}


.sideicons{
    position: fixed;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    z-index: 999;
    background: var(--bg-linear);
    background: var(--secondary-color);
    padding: 10px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sideicons a{
    font-size: 22px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.sideicons a span{
    position: absolute;
    right: -9px;
    top: 50%;
    transform-origin: right;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 15px;
    background: var(--bg-linear);
    background: var(--secondary-color);
    padding: 4px 50px 4px 15px;
    border-radius: 50px;
    z-index: -1;
    transition: .3s linear;
    opacity: 0;
    pointer-events: none;
}
.sideicons a.b2t{
    display: none;
}
.sideicons a.b2t.fix{
    display: block;
}
.sideicons a:hover span{
    opacity: 1;
    pointer-events: auto;
}

.slider{/* border-radius: 0 0 20px 20px; */overflow: hidden;}
.slider a{}
.slider a img{width: 100%;}


.popupfrm{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0000004f;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: .3s linear;
}
.popupfrm.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.innerpopupfrm{
    width: 70%;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70%;
    position: relative;
}
.innerpopupfrm .popupclose{position: absolute;top: 10px;right: 10px;z-index: 9;color: #999;font-weight: 900;font-size: 30px;line-height: 1;}
.innerpopupfrm .popupclose:hover{color: var(--secondary-color);}
.popup-left{
    flex-basis: 40%;
    overflow: hidden;
    height: 100%;
    display: flex;
    position: relative;
    z-index: 1;
}
.popup-left img{
    position: absolute;
    width: 200%;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
}
.popup-right{
    flex-basis: 60%;
    padding: 30px;
}
.popup-right .innerright{
    text-align: center;
}
.popup-right .innerright .popuplogo{
    display: inline-block;
    margin: 0 0 10px;
}
.popup-right .innerright .popuplogo img{
    width: 150px;
}
.popup-right .innerright h4{
    font-size: 16px;
    margin: 0 0 25px;
    color: #313131;
    letter-spacing: 1px;
}
.popup-right form{
    text-align: start;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.popup-right form .fields{
    position: relative;
    z-index: 1;
    margin: 0 0 30px;
    width: 48%;
}
.popup-right form .fields :is(input, select, textarea){
    color: #000;
    border-radius: 3px;
    border: none;
    outline: none;
    padding: 15px;
    background: none;
    border: 1px solid var(--secondary-color);
    width: 100%;
    height: 50px;
}
.popup-right form .fields :is(input, select, textarea):focus{
    box-shadow: none;
    outline: none;
}
.popup-right form .fields label{
    position: absolute;
    top: -11px;
    left: 15px;
    background: #fff;
    padding: 0 5px;
    color: var(--secondary-color);
    letter-spacing: 1px;
    font-size: 16px;
}


/*.popup-right form .fields{*/
/*    width: 48%;*/
/*    display: inline-block;*/
/*    margin: 0 0 20px;*/
/*}*/
/*.popup-right form .fields :is(input, select){*/
/*    width: 100%;*/
/*    border: 1px solid #ddd;*/
/*    padding: 10px;*/
/*    border-radius: 5px;*/
/*}*/
/*.popup-right form .fields :is(input, select):focus{*/
/*    border-color: var(--secondary-color);*/
/*    outline: none;*/
/*}*/
/*.popup-right form .fields :is(input, select)::placeholder{*/
/*    font-size: 15px;*/
/*}*/
/*.popup-right form .fields input{}*/
/*.popup-right form .fields select{}*/
.popup-right form .fields-btn{}
.popup-right form .fields-btn button{
    background: var(--secondary-color);
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    padding: 10px 40px;
    border-radius: 3px;
    transition: .3s linear;
    letter-spacing: 1px;
}
.popup-right form .fields-btn button:hover{background: #0e1378;}

.homeaboutwidget{
    background: url('../assets/aboutus/homeaboutbg.webp');
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
    padding: 50px 0;
    overflow: hidden;
}
.homeaboutwidget:after{
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 80%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
.homeaboutwidget:before{
    content: "";
    width: 50%;
    height: 100%;
    background: #55d2ed;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    /* transform: skewX(-10deg) translateX(-20%); */
    background: url('../assets/aboutus/homebg.png');
    background-size: 100% 100%;
}
.homeabout-left{}
.homeabout-left figure{}
.homeabout-left figure img{
    width: 90%;
}

.homeabout-right{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 50px;
    padding-right: 50px;
}
.homeabout-right h2{
    font-weight: 400;
    font-family: var(--secondary-font);
    font-size: 28px;
    margin: 0 0 20px;
}
.homeabout-right h2 span{
    font-weight: 600;
    font-family: var(--secondary-font);
}
.homeabout-right p{
    font-size: 15px;
    font-family: var(--secondary-font);
    font-weight: 400;
}
.homeabout-right .actionbtn{
    background: #55d2ed;
    border: none;
    font-weight: 500;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
    color: #fff;
    font-size: 13px;
}





.catwisevehicle{
    padding: 50px 0 80px;

}
.home-aboutus{position: relative;padding: 0 0 50px;}
.home-aboutus h2{
    font-family: var(--secondary-font);
    margin: 0 0 15px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 28px;
}
.home-aboutus h2 span{color: var(--secondary-color);font-family: var(--secondary-font);}
.home-aboutus p{
    color: #313131;
    letter-spacing: 1px;
    text-align: justify;
    margin: 20px 0 0;
    font-size: 18px;
}
.home-aboutus .actionbtns{/* text-align: center; */margin: 15px 0 0;}
.vehicleleft{
    text-align: center;
    background: #87ceeb26;
    padding: 80px 0 100px;
    position: relative;
    border-radius: 10px;
    width: 90%;
    margin-left: auto;
    background: #F2F8F2;
}
.vehicleleft img{
    width: 70%;
}
.vehicleleft h3{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    /* font-weight: 600; */
    color: var(--secondary-color);
    white-space: nowrap;
    /* font-family: bold; */
}
.vehiclecenter{
    text-align: center;
    height: 100%;
    position: relative;
    Z-INDEX: 1;
}
.vehiclecenter img{
    width: 40%;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

.vehicleright{
    height: 100%;
    text-align: center;
    background: #87ceeb26;
    padding: 80px 0 100px;
    position: relative;
    border-radius: 10px;
    width: 90%;
    margin-right: auto;
    background: #F2F8F2;
}
.vehicleright img{
    width: 70%;
}
.vehicleright h3{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    /* font-weight: 600; */
    color: var(--secondary-color);
    white-space: nowrap;
    /* font-family: 'bold'; */
}

.manufacture{
}
.manufacture:before{
}
.manufacture .maintitle{
    text-align: center;
    margin: 0 0 60px;
}
.manufacture .maintitle h2{font-size: 36px;margin: 0 0 20px;/* background: var(--bg-linear); *//* -webkit-background-clip: text; *//* -webkit-text-fill-color: transparent; */color: var(--secondary-color);}
.manufacture .maintitle h2 span{color: var(--primary-color);}
.manufacture .maintitle p{
    letter-spacing: 1px;
    color: #313131;
    font-size: 18px;
}
.manufacture .maintitle p span{
    color: var(--primary-color);
}
.manufactureleft{}
.manufactureleft img{width: 100%;border-radius: 50px;}
.manufactureright{
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}
.manufactureright h3{
    font-size: 32px;
    margin: 0 0 10px;
}
.manufactureright p{
    letter-spacing: 1px;
    color: #313131;
    text-align: justify;
    font-size: 18px;
}
.manufactureright .counterbox{
    padding: 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 20px auto;
}
.manufactureright .counterbox .box{}
.manufactureright .counterbox .box span{
    font-size: 46px;
    display: flex;
    align-items: center;
    line-height: 1;
    color: var(--secondary-color);
}
.manufactureright .counterbox .box span i{font-size: 26px;}
.manufactureright .counterbox .box p{
    font-size: 15px;
    color: var(--primary-color);
    letter-spacing: 1px;
}


.third-widget{
    background: #202020;
    padding: 40px 0 60px;
    position: relative;
    z-index: 0;
}
.third-widget:before,
.third-widget:after{
    content: "";
    width: 100%;
    background: #fff;
    height: 10%;
    position: absolute;
    left: 0;
}
.third-widget:before{
    top: 0;
    border-radius: 0 0 100px 100px;
    display: none;
}
.third-widget:after{
    border-radius: 100px 100px 0 0;
    bottom: 0;
    display: none;
}

.third-widget .headingbox {
    display: block;
    text-align: center;
    margin: 0 0 20px;
}

.third-widget .headingbox h3 {
    font-weight: 500;
    font-size: 20px;
    color: #757575;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.third-widget .headingbox .subheading {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.third-widget .headingbox .subheading h2 {
    font-family: var(--secondary-font);
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0 15px;
}
}

.third-widget .maintitle{text-align: center;margin: 0 0 30px;}
.third-widget .maintitle h2{color: #fff;font-size: 36px;/* background: var(--bg-linear); *//* -webkit-background-clip: text; *//* -webkit-text-fill-color: transparent; */color: #fff;}
.third-widget .maintitle h2 span{color: var(--primary-color);}
.third-widget .maintitle .actionbtn{
    color: #fff;
    border-color: #fff;
}
.third-widget .maintitle .actionbtn:hover{
    border-color: transparent;
}
.thirdwidget-slider{
    width: 90%;
}
.thirdwidget-slider figure{
    text-align: center;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #fff;
}
.thirdwidget-slider figure img{width: 100%;}

.third-widget .swiper-slide{width: 60% !important;}





.virtualtour{
    background: url('../assets/tourbg.jpg');
    padding: 50px 0;
}
.virtualtour .maintitle{
    text-align: center;
    margin: 0 0 20px;
}
.virtualtour .maintitle h3{
    color: #fff;
    letter-spacing: 1px;
}
.virtualtour .tourvdo{}
.virtualtour .tourvdo iframe{width: 100%; height: 500px;}



.advantages{
    padding: 30px 0 60px;
}
.advantages:before{
}
.advantages .maintitle{text-align: center;margin: 0 0 20px;}
.advantages .maintitle h3{font-family: var(--secondary-font);color: #282828;text-transform: uppercase;font-weight: 500;letter-spacing: 1px;padding: 0 0 15px;}
.advantages .maintitle h3 span{}
.advantages .maintitle p{
    font-size: 20px;
    letter-spacing: 1px;
}
.advatanges-outer{
    /* position: relative; */
}
.advatanges-inner{
    width: 75%;
    margin: auto;
    position: sticky;
    top: 15px;
}
.advatanges-inner .innerbox{
    position: sticky;
    top: 10%;
    transition: .3s linear;
}
.advatanges-inner .innerbox:nth-child(2){top: 12%;}
.advatanges-inner .innerbox:nth-child(3){top: 15%;}
.advatanges-inner .innerbox:nth-child(4){top: 13%;}
.advatanges-inner .innerbox img{width: 100%;}
.advatanges-inner .innerbox .overlaybox{
    position: absolute;
    width: 34%;
    top: 30px;
    left: 30px;
}
.advatanges-inner .innerbox .overlaybox h3{
    color: #fff;
    font-size: 32px;
    margin: 0 0 20px;
    line-height: 1.2;
    font-weight: 300;
}
.advatanges-inner .innerbox .overlaybox p{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
}
.advatanges-inner .innerbox:nth-child(2) .overlaybox h3{
    color: #000;
}
.advatanges-inner .innerbox:nth-child(2) .overlaybox p{
    color: #000;
}


.flo{
    padding: 50px 0;
    position: relative;
    z-index: 0;
    background: var(--bg-linear-blue);
}
.flo:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.flobox{
    text-align: center;
    margin: 0 0 30px;
}
.flo .headingbox {
    display: block;
    min-width: 1px;
}

.flo .headingbox h3 {font-weight: 500;font-size: 20px;color: #757575;text-transform: uppercase;margin-bottom: 8px;letter-spacing: 2px;}

.flo .headingbox .subheading {
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.flo .headingbox .subheading h2 {font-family: var(--secondary-font);color: #282828;text-transform: uppercase;font-weight: 500;letter-spacing: 1px;padding: 0 0 15px;}

.flo .headingbox .subheading a {color: var(--secondary-color);transition: all .3s;letter-spacing: 2px;text-transform: uppercase;font-size: 14px;}

.flo .headingbox .subheading a i {
    font-size: 14px;
    padding-left: 4px;
}
.flobox h2{
    color: #000;
    margin: 0 0 10px;
    font-size: 36px;
    color: var(--primary-color);
}
.flobox h2 span{
    color: var(--secondary-color);
}
.flobox p{
    font-size: 20px;
    font-family: 'regular';
}
.flolink{
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 2px solid #ddd;
}
.flolink li{}
.flolink li a{
    font-weight: 600;
    padding: 10px;
    position: relative;
    transition: .3s linear;
    font-family: 'regular';
}
.flolink li a:before{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    opacity: 0  ;
    transition: .3s linear;
}
.flolink li a:hover:before,
.flolink li a.active:before{
    opacity: 1;
}
.flotab-boxes{
    padding: 40px 20px;
}
.flotab-boxes .flotab{
    display: none;
    align-items: start;
    gap: 2%;
}
.flotab-boxes .flotab.active{
    display: flex;
}
.flotab-boxes .flotab .leftbox{
    flex-basis: 68%;
}
.flotab-boxes .flotab .leftbox p{
    font-size: 18px;
    font-weight: 200;
    font-family: 'regular';
}
.flotab-boxes .flotab .rightbox{
    flex-basis: 30%;
}
.flotab-boxes .flotab .rightbox img{
    width: 100%;
    border-radius: 10px;
}

.flotab .leftbox ul{}
.flotab .leftbox ul li{
    padding: 15px;
    border-radius: 3px;
    background: #1c21820f;
    margin: 0 0 15px;
}
.flotab .leftbox ul li a{
    font-size: 18px;
    font-weight: 500;
    position: relative;
    color: #000;
    font-family: 'bold';
}
.flotab .leftbox ul li a i{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 24px;
}
.flotab .leftbox ul li p{
    font-size: 18px;
    margin: 10px 0 0;
    display: none;
}
.flotab .leftbox ul li.active p{
    display: block;
}

.flotab h3{
    font-size: 24px;
    margin: 0 0 10px;
    font-weight: 700;
    color: #000;
    font-family: 'bold';
}
.flotab p{}
.flotab img{
    margin: 15px 0;
    width: 100%;
}

.leadershipbox{box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);border-radius: 10px;padding: 15px 15px 20px;}
.leadershipbox figure{
    margin: 0;
    position: relative;
    z-index: 1;
}
.leadershipbox figure img{width: 100%;border-radius: 5px;}
.leadershipbox .content{
    padding: 30px 0 0;
    text-align: center;
}
.leadershipbox .content h3{position: relative;z-index: 1;font-size: 20px;margin: 0 0 15px;}
.leadershipbox .content h3:before{
    content: "";
    width: 40%;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}
.leadershipbox .content h4{
    font-size: 14px;
    letter-spacing: 1px;
    color: #666;
}
.leadershipbox .socialinfo{
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    background: var(--bg-linear-blue););)
    border-box;)
    border-box;)-;)
    --;)
    border-box;)
    border-box;)-;);
    padding: 8px 20px;
    border-radius: 50px;
    gap: 15px;
}
.leadershipbox .socialinfo a{
    color: #fff;
    font-size: 14px;
    line-height: 1;
}




.saysclient{
    padding: 100px 0;
    background: var(--bg-linear-blue);
    position: relative;
    z-index: 1;
}
.saysclient .overlayimg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 95%;
    aspect-ratio: 1/1;
    opacity: 0.2;
}

.saysclient:before,
.saysclient:after{
    content: "";
    width: 100%;
    background: #fff;
    height: 10%;
    position: absolute;
    left: 0;
}
.saysclient:before{
    top: 0;
    border-radius: 0 0 100px 100px;
    display: none;
}
.saysclient:after{
    border-radius: 100px 100px 0 0;
    bottom: 0;
    display: none;
}
.saysclient .maintitle{
    text-align: center;
    margin: 0 0 30px;
}
.saysclient .maintitle h3{
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1px;
}
.saysclient .saysbox{margin: 0 10px;}
.saysclient .saysbox p{
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 1px;
}
#saysslider{
    background: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    margin: 0 0 30px;
    position: relative;
    width: 88%;
    margin: 0 auto 20px;
}
#saysslider:after,
#saysslider:before{
    position: absolute;
    font-family: 'remixicon';
    font-size: 28px;
}


#saysslider:before{
    content: "\ec51";
    top: 10px;
    left: 15px;
}
#saysslider:after{
    content: "\ec52";
    bottom: 10px;
    right: 15px;
}


.logoslider{width: 90%; margin: auto;}
.logoslider figure{
    background: #fff;
    padding: 20px;
    aspect-ratio: 1 / 0.9;
    border-radius: 10px;
    margin: 0 10px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transform: scale(1);
}
.logoslider figure img{width: 100%; transition: .3s linear;}
.logoslider figure:hover img{transform: scale(1.05);}



footer{
    background: #000;
    padding: 50px 0 0;
    position: relative;
    z-index: 1;
}
footer .getupdate{
    width: 35%;
    padding: 10px 0;
    transform: skewX(-10deg);
    text-align: center;
    margin: -100px auto 50px;
    background: var(--secondary-color);
    border-radius: 10px;
}
footer .getupdate:before{
    content: "";
    /* width: 100%; */
    /* height: 100%; */
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* background: var(--bg-linear); */
    /* z-index: -1; */
    /* transform: skewX(-10deg); */
    /* border-radius: 5px; */
    /* background: #eee; */
}
footer .getupdate img{width: 90%;}
footer .getupdate .left{}
footer .getupdate .left a{
    font-size: 38px;
    color: #fff;
}
footer .getupdate .right{}
footer .getupdate .right h3{
    color: #fff;
    font-weight: 600;
    letter-spacing: .5px;
    font-size: 24px;
    margin: 0 0 10px;
}
footer .getupdate .right p{
    color: #fff;
}
.footerbox{
    height: 100%;
}
.footerbox .footlogo{display: flex;align-items: center;justify-content: start;margin: 0 0 30px;}
.footerbox .footlogo img{width: 60%;}
.footerbox h3{
    font-size: 18px;
    color: #fff;);
    text-transform: uppercase;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
}
.footerbox h3:before{
    content: "";
    width: 100%;
    height: 1px;
    background: #474747;
    position: absolute;
    bottom: -8px;
    left: 0;
}
.footerbox ul{
}
.footerbox ul li{
    padding: 0 0 10px;
}
.footerbox ul li a{
    color: #fff;
    font-size: 15px;
    transition: .3s linear;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footerbox ul li a i{
    color: #fff;
}
.footerbox ul li a:hover{
    color: #999;
}
.footlogo + ul li a{
    text-transform: initial;
}
.footerbox form{}
.footerbox form .fields{
    margin: 0 0 10px;
}
.footerbox form .fields :is(input,select,textarea){outline: none;width: 100%;padding: 5px 10px;background: rgb(255 255 255 / 10%);color: #fff;border: none;padding: 10px;border-radius: 5px;}
.footerbox form .fields :is(input,select,textarea)::placeholder{}
.footerbox form .fields input{}
.footerbox form .fields select{}
.footerbox form .fields select option{
    color: #000;
}
.footerbox form .fields textarea{}
.footerbox form .fields-btn{}
.footerbox form .fields-btn button{
    width: 100%;
    padding: 10px;
    background: var(--bg-linear);
    border: none;
    outline: none;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}
.footerbox form .fields-btn button:hover{}
.bottomfooter{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #000;
    padding: 30px 120px;
}
.bottomfooter .social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.bottomfooter .social a{
    transition: .3s linear;
    color: #aaa;
}
.bottomfooter .social a:hover{
    color: #fff;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.copyright{
    text-align: center;
    padding: 50px 0 30px;
}
.copyright p{color: #fff;font-weight: 300;}
.copyright p a{display: inline-block;color: #666;font-weight: 600;transition: .3s linear;letter-spacing: 1px;}
.copyright p a:hover{
    color: #fff;
}
.ride{
    padding: 50px 0;
    background: var(--bg-linear-blue);
    position: relative;
    z-index: 1;
    display: none;
}
.ride:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    border-radius: 100px;
}
.ridebox{text-align: center; margin: 0 0 60px;}
.ridebox h2{
    color: #000;
    margin: 0 0 10px;
    font-size: 36px;
    font-family: 'bold';
    background: var(--bg-linear);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ridebox p{
    font-size: 20px;
    font-family: 'regular';
}
.ride .swiper {
width: 350px;
height: 450px;
}

.ride .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #fff;
    background: #1c21822b;
    opacity: .5;
}
.ride .swiper-slide.swiper-slide-active{
    background: #1c2182;
    opacity: 1;
}
.ride .swiper-slide .innerbox{
    padding: 20px 40px;
    text-align: center;
}
.ride .swiper-slide .innerbox img{width: 75px;margin: 0 0 20px; user-select: none;}
.ride .swiper-slide .innerbox h3{
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px;
    user-select: none;
}
.ride .swiper-slide .innerbox p{
    font-size: 18px;
    font-weight: 400;
    user-select: none;
}

.process{
    padding: 50px 40px 20px;
    /* background: var(--bg-linear-blue); */
    position: relative;
    z-index: 0;
    border-top: 1px solid #eee;
}

.process .headingbox {
}

.process:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #fff;
    z-index: -1;
    transform: translate(-50%, -5%);
}
.process .maintitle{
    width: 85%;
    margin: 0 auto 30px;
    text-align: center;
}
.process .maintitle h2{
    font-size: 36px;
    margin: 0 0 10px;
    color: #252525;
    color: var(--secondary-color);
}
.process .maintitle h2 span{
    color: var(--primary-color);
}
.process .maintitle p{
    font-size: 18px;
    letter-spacing: 1px;
}
.processblock{
    background-size: cover;
    transition: background .2s linear;
    /* border-radius: 50px; */
    overflow: hidden;
    margin: 0 2px;
}

.processbox{
    height: 500px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-right: 1px solid #c7c7c7;
}
.processblock .gridbox:nth-child(1){

}
.processblock .gridbox:last-child .processbox{
    border: none;
}
.processbox:before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 16%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.processbox h3{
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    font-size: 25px;
    z-index: 3;
}
.processbox .mainimg{
    height: 100%;
    position: absolute;
    top: 0;
    left: -95%;
    z-index: 2;
}



.certificates{
    background: var(--secondary-color);
    position: relative;
    z-index: 1;
    padding: 0 0 50px;
}
.certificates:before{
    content: "";
    width: 100%;
    height: 101%;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    z-index: -1;
    border-radius: 0;
    transform: translate(-50%, -50%);
}
.certificates .maintitle{
    width: 80%;
    margin: 0 auto 30px;
    text-align: center;
}
.certificates .maintitle h2{
    font-size: 36px;
    margin: 0 0 10px;
    color: var(--primary-color););
}
.certificates .swiper{width: 80%}


.swiper-button-next,
.swiper-button-prev {
    color: #000;
}
.swiper-button-next{
    right: -25%;
}
.swiper-button-prev{
    left: -25%;
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size: 18px;
    font-weight: 700;
}



.query{
    padding: 20px 50px 110px;
}
.query:before{}
.queryleft{}
.queryleft h3{
    font-size: 36px;
    width: 70%;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--secondary-font);
    color: #444;
    margin: 0 0 20px;
}
.queryleft h3 span{
    font-weight: 500;
    font-family: var(--secondary-font);
    color: #000;
}
.queryright{}
.queryright form{}
.queryright form .fields{
    position: relative;
    margin: 0 0 25px;
}
.queryright form .fields :is(input, select, textarea){color: #000;border-radius: 6px;border: none;outline: none;padding: 10px 15px;background: none;border: 1px solid #939393;}
.queryright form .fields :is(input, select, textarea):focus{
    box-shadow: none;
    outline: none;
}
.queryright form .fields label{position: absolute;top: -9px;left: 10px;background: #fff;padding: 0 5px;color: #333;font-size: 12px;font-weight: 400;}

.queryright form .fields-btn{
    text-align: center;
}
.queryright form .fields-btn button{outline: none;border: none;}
.queryright form .fields-btn button:hover{
}







.innerheader{overflow: hidden;}
.innerheader img{width: 100%;}


.aboutadvantages{
    background: #61697521;
    padding: 40px 0;
}
.aboutadvantages .maintitle{
    text-align: center;
    padding: 0 0 25px;
}
.aboutadvantages .maintitle h2{color: #282828;text-transform: uppercase;font-weight: 500;letter-spacing: 1px;}
.aboutadvantages .maintitle h2 span{
    color: var(--primary-color);
    font-weight: 500;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}
.advantagebox{
    background: #ffffff;
    margin: 0 0 20px;
    height: 90%;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px -20px rgb(0 0 0 / 15%);
    position: relative;
    z-index: 0;
}
.advantagebox:before{
    content: "";
    background: url('../logo/shieldlogo.png');
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    opacity: .08;
}
.advantagebox p{}

.aboutadvantages2{
    padding: 50px 0;
}
.aboutadvantages2 .advantagebox2{
    background: url('../aboutus/aboutbg.webp');
    background-size: 100%;
    width: 100%;
    padding: 50px 30px;
    position: relative;
    z-index: 0;
    margin: 0 0 20px;
    height: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}
.aboutadvantages2 .advantagebox2:before{
    content: "";
    background: rgb(0 0 0 / 49%);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.aboutadvantages2 .advantagebox2 img{
    width: 80px;
}
.aboutadvantages2 .advantagebox2 h3{color: #fff;font-size: 24px;font-weight: 600;margin: 15px 0;}
.aboutadvantages2 .advantagebox2 p{
    color: #ffff;
    line-height: 1.2;
    text-align: center;
}
.aboutadvantages2 .advantagebox2:nth-child(1){}

.aboutachivements{
    padding: 0 0 100px;
}

.newin-section{
    padding: 50px 0;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.newin-section:before{
    content: "";
    width: 100%;
    height: 95%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 0 0 100px 100px;
}
.newin-section .maintitle{
    text-align: center;
}
.newin-section .maintitle h2{
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 30px;
}
.newin-slider{}
.newin-slider .newin-content{}
.newin-slider .newin-content p{
    color: var(--secondary-color);
    font-size: 18px;
    text-align: center;
    margin: 0 0 30px;
}
.newin-slider .newin-content figure{}
.newin-slider .newin-content figure img{width: 100%;}
.newin-slider .slick-dots{
    z-index: 999999;
    bottom: 10px;
}
.newin-slider .slick-dots li{
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50px;
    transition: .3s linear;
}
.newin-slider .slick-dots li button{
    display: none;
}
.newin-slider .slick-dots li.slick-active{
    background: var(--secondary-color);
}

.pods-widget{
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background-color: var(--secondary-color);
}
.pods-widget:before{
    content: "";
    width: 100%;
    height: 90%;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: -1;
    border-radius: 100px;
}
.pods-widget .maintitle{
    text-align: center;
    margin: 0 0 40px;
}
.pods-widget .maintitle h2{
    color: var(--primary-color);
    font-weight: 700;
    font-size: 32px;
}
.pods-widget .maintitle p{
    font-size: 20px;
    font-weight: 400;
}
.podlink{
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 2px solid #ddd;
    margin: 0 0 30px;
}
.podlink li{}
.podlink li a{
    font-weight: 600;
    padding: 10px;
    position: relative;
    transition: .3s linear;
}
.podlink li a:before{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    opacity: 0  ;
    transition: .3s linear;
}
.podlink li a:hover:before,
.podlink li a.active:before{
    opacity: 1;
}

.podstab{
    display: none;
    align-items: start;
    gap: 25px;
    width: 90%;
    margin: auto;
}
.podstab.active{
    display: flex;
}
.podstabs-outer{
    flex: 1;
}
.podstabs-box{
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
    margin: 0 0 30px;
}
.podstabs-box figure{
    margin: 0;
}
.podstabs-box figure img{width: 100%;}
.podstabs-box .content{
    padding: 20px;
}
.podstabs-box .content h3{
    font-weight: 700;
    font-size: 22px;
    color: #000;
    margin: 0 0 20px;
}
.podstabs-box .content p{
    color: #000;
    font-weight: 400;
    font-size: 18px;
}
.podstabs_3,
.podstabs_2{
    align-items: center;
}

.pods-saysclient{
    padding: 50px 0 150px;
}
.pods-saysclient:before{
    display: none;;
}

.podsquery{
    padding: 0;
    margin: 0;
    border: none;
}
.podsquery .maintitle{
    text-align: center;
    margin: 0 0 40px;
}
.podsquery .maintitle h2{
    color: #000;
    font-weight: 700;
    font-size: 32px;
    margin: 0 0 10px;
}
.podsquery .maintitle p{
    font-size: 20px;
    font-weight: 400;
}
.podsquery .maintitle + figure{
    margin: 0 0 20px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 40px;
}
.podsquery .maintitle + figure img{width: 100%;border-radius: 10px;}



.zenflowslider{border-radius: 0 0 20px 20px; overflow: hidden;}
.zenflowslider video{width: 100%; display: block;}

.zenflow-content{
    margin: auto;
    text-align: center;
    padding: 50px 0 70px;
    background: var(--secondary-color);
    position: relative;
    z-index: 1;
}
.zenflow-content:before{
    content: "";
    width: 100%;
    height: 93%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0 0 100px 100px;
}
.zenflow-content .maintitle{
    margin: 0 0 35px;
}
.zenflow-content .maintitle h2{
    font-weight: 700;
    margin: 0 0 15px;
}
.zenflow-content .maintitle p{
    width: 80%;
    padding: 0 0 15px;
    margin: 0 auto 15px;
    border-bottom: 1px solid var(--secondary-color);
    font-size: 18px;
}
.zenflow-content .content{}
.zenflow-content .content h4{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #000;
    margin: 0 0 30px;
}
.zenflow-content .content h5{
    font-weight: 600;
    margin: 0 0 20px;
}
.zenflow-content .content p{
    width: 55%;
    margin: auto;
    background: #eee;
    padding: 20px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 10px;
}
.zenflow-content .content p span{
    font-weight: 600;
}

.offering{
    padding: 50px 0 60px;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.offering:before{
    content: "";
    width: 100%;
    height: 93%;
    background: #fff;
    position: absolute;
    top: 2.5%;
    left: 0;
    z-index: -1;
    border-radius: 100px;
}
.offering .maintitle{
    text-align: center;
    margin: 0 0 50px;
}
.offering .maintitle h2{
    font-size: 28px;
    font-weight: 700;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 10px;
    margin: 0 0 20px;
}
.offering .maintitle p{
    font-size: 18px;
    color: #000;
    font-weight: 500;
    width: 50%;
    margin: auto;
}
.offering .content{
    text-align: center;
}
.offering .content > span{
    font-weight: 500;
    font-size: 18px;
    color: #000;
    margin: 0 0 20px;
    display: inline-block;
}
.offering .content ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 0 30px;
}
.offering .content ul li{
    flex-basis: 230px;
}
.offering .content ul li a{
    background: #eee;
    padding: 20px;
    border-radius: 8px;
    color: #000;
}
.offering .content ul li a.active{
    color: #fff;
    background: var(--secondary-color);
}
.offering .content .contentbox{
    display: flex;
    align-items: start;
    gap: 20px;
    width: 70%;
    margin: auto;
}
.offering .content .contentbox .boxes{
    flex-basis: 50%;
}
.offering .content .contentbox .left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
    justify-content: start;
    padding: 60px 0 0;
}
.offering .content .contentbox .left span{
    background: var(--secondary-color);
    padding: 15px;
    width: 100%;
    color: #fff;
    font-weight: 500;
    letter-spacing: .5px;
    border-radius: 5px;
}
.offering .content .contentbox .right{}
.offering .content .contentbox .right img{width: 100%;}


.infrastructure{    
    padding: 50px 0 60px;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.infrastructure:before{
    content: "";
    width: 100%;
    height: 93%;
    background: #fff;
    position: absolute;
    top: 2.5%;
    left: 0;
    z-index: -1;
    border-radius: 100px;
}
.infrastructure .maintitle{
    text-align: center;
}
.infrastructure .maintitle h4{
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 20px;
}
.infrastructure .maintitle figure{}
.infrastructure .maintitle figure img{
    border-radius: 10px;
}
.infrastructure .maintitle span{
    font-size: 22px;
    font-weight: 700;
}
.infrastructure .maintitle p{
    width: 40%;
    margin: 15px auto;
    font-size: 18px;
    color: #000;
    line-height: 1.3;
}
.infrastructure .batteriesfeature{
    margin: 50px auto 0;
    width: 30%;
    text-align: center;
}
.infrastructure .batteriesfeature span{
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary-color);
}
.infrastructure .batteriesfeature .batteryslider{
    margin: 20px 0 0;
    padding: 15px;
}
.infrastructure .batteriesfeature .batteryslider img{width: 40%;margin: 0 auto 15px;}
.infrastructure .batteriesfeature .batteryslider p{
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 18px;
}


.chooseus{
    text-align: center;
    padding: 50px 0 60px;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.chooseus:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 100px 100px 0 0;
}
.chooseus .maintitle{}
.chooseus .maintitle h2{
    font-weight: 700;
    font-size: 32px;
}
.chooseus .maintitle p{
    font-size: 20px;
    color: #000;
    margin: 10px 0 30px;
}
.chooseus .chooseus-slider{
    background: var(--secondary-color);
    padding: 40px 15px;
    width: 70%;
    margin: auto;
    border-radius: 10px;
}
.chooseus .chooseus-slider p{
    font-size: 18px;
    color: #fff;
}

.chooseimg{
    padding: 20px;
}
.chooseimg img{width: 100%;border-radius: 10px;}



.rdcontent{
    padding: 50px 0 60px;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.rdcontent:before{
    content: "";
    width: 100%;
    height: 98%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0 0 100px 100px;
}
.rdcontent .firstcontent{
    padding: 0 0 40px;
}
.rdcontent .firstcontent p{
    font-size: 19px;
    color: #000;
    font-weight: 500;
}
.rdcontent .firstbox{
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}
.rdcontent .firstbox h2{
    font-size: 34px;
    font-weight: 700;
    padding-right: 90px;
    color: #000;
    letter-spacing: 1px;
    margin: 0 0 50px;
}
.rdcontent .firstbox .innerbox{
    background: #000;
    border-radius: 20px;
    height: 83%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.rdcontent .firstbox .innerbox h4{
    padding: 20px 80px 10px 20px;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
}
.rdcontent .firstbox .innerbox p{
    font-size: 18px;
    padding: 0 20px;
    color: #fff;
    font-weight: 200;
    padding-right: 45px;
}
.rdcontent .firstbox .innerbox img{width: 100%;position: absolute;bottom: 0;left: 0;}
.rdcontent .secondbox{
    display: flex;
    align-items: start;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    /* height: 100%; */
}
.rdcontent .secondbox .secondinnerbox{
    flex-basis: 48%;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.rdcontent .secondbox .secondinnerbox h4{
    font-size: 30px;
    font-weight: 400;
    padding: 0 0 10px;
    color: #fff;
}
.rdcontent .secondbox .secondinnerbox p{
    font-size: 18px;
    color: #fff;
}
.rdcontent .secondbox .secondinnerbox img{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.rdcontent .secondbox .innerthirdbox h4{
}
.rdcontent .secondbox .innerthirdbox p{}



.rdcontent .secondbox .innerfirstbox{
    background: var(--secondary-color);
    height: 550px;
}
.rdcontent .secondbox .innersecondbox{
    background: #000;
    height: 550px;
}
.rdcontent .secondbox .innerthirdbox{
    flex-basis: 100%;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
}
.rdcontent .secondbox .innerfirstbox h4{}
.rdcontent .secondbox .innerfirstbox p{}
.rdcontent .secondbox .innerfirstbox img{}
.rdcontent .secondbox .innersecondbox h4{}
.rdcontent .secondbox .innersecondbox p{}
.rdcontent .secondbox .innersecondbox img{}
.rdcontent .secondbox .innerthirdbox .overlay{
    background: var(--secondary-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    padding: 20px;
    height: 100%;
    z-index: 99;
}
.rdcontent .secondbox .innerthirdbox h4{}
.rdcontent .secondbox .innerthirdbox p{}
.rdcontent .secondbox .innerthirdbox img{
    position: relative;
    left: initial;
    bottom: initial;
}

.perfection{
    padding: 50px 0 60px;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.perfection:before{
    content: "";
    width: 100%;
    height: 93%;
    background: #fff;
    position: absolute;
    top: 2%;
    left: 0;
    z-index: -1;
    border-radius: 100px;
}
.perfection .maintitle{
    text-align: center;
    margin: 0 0 40px;
}
.perfection .maintitle h2{
    font-weight: 700;
    color: #000;
    position: relative;
    display: inline-block;
}
.perfection .maintitle h2:before{
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: -10px;
    left: 0;
}
.perfection .maintitle h2 span{
    color: var(--primary-color);
}
.perfectioncontent{}
.perfectioncontent ul{
    margin: auto;
    width: 35%;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}
.perfectioncontent ul li{}
.perfectioncontent ul li a{
    padding: 10px 20px;
    background: #eee;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
}
.perfectioncontent .content{}
.perfectioncontent .content > p{
    text-align: center;
    font-size: 18px;
    color: #000;
}
.perfectioncontent .content h3{
    text-align: center;
    margin: 20px 0;
    font-weight: 700;
}
.perfectioncontent .content h3 span{color: var(--secondary-color);}
.perfectioncontent .content .perfectionslider{
    width: 70%;
    margin: auto;
}
.perfectioncontent .content .perfectionslider > div{}
.perfectioncontent .content .perfectionslider .box{
    text-align: center;
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 25px 15px;
}
.perfectioncontent .content .perfectionslider .box h4{
    font-size: 19px;
    font-weight: 600;
    color: #fff;
}
.perfectioncontent .content .perfectionslider .box p{
    color: #fff;
    font-size: 18px;
}
.perfectioncontent .content .perfectionslider img{width: 80%;margin: auto;}

.perfectionslider .slick-dots{
    z-index: 999999;
    bottom: 10px;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.perfectionslider .slick-dots li{width: 10px;height: 10px;background: #ccc;);border-radius: 50px;transition: .3s linear;}
.perfectionslider .slick-dots li button{
    display: none;
}
.perfectionslider .slick-dots li.slick-active{
    background: var(--secondary-color);
}

.threepoints{
    padding: 50px 0 60px;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}
.threepoints:before{
    content: "";
    width: 100%;
    height: 93%;
    background: #fff;
    position: absolute;
    top: 2%;
    left: 0;
    z-index: -1;
    border-radius: 100px 100px 0 0;
}
.threepoints .pointswrapper{
    width: 80%;
    margin: auto;
}
.threepoints .pointswrapper .pointbox{
    background: #eee;
    border-radius: 10px;
    margin: 0 0 20px;
    padding: 30px 20px;
    text-align: center;
}
.threepoints .pointswrapper .pointbox h3{
    font-size: 24px;
    font-weight: 600;
}
.threepoints .pointswrapper .pointbox p{
    font-size: 18px;
    margin: 10px 0 0;
}

.whatsappicon{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}
.whatsappicon img{width: 50px;}

.social{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0 0;
}
.social a{
    color: #fff;
    text-align: center;
    transition: .3s linear;
}
.social a:hover{
    color: var(--primary-color);
}


.privacy-policy-container{padding: 50px 0;}
.policybox{padding: 0 0 40px;width: 80%;margin: auto;}
.policybox h3{font-size: 36px;margin: 0 0 10px;color: var(--secondary-color);}
.policybox h3 span{color: var(--primary-color);}
.policybox p{
    color: #313131;
    letter-spacing: 1px;
    margin: 0 0 20px;
    font-size: 18px;
    text-align: justify;
}
.policybox p:last-child{margin: 0;}
.innerpolicy{
}
.innerpolicy h3{}
.innerpolicy h3 span{color: var(--primary-color);}
.innerpolicy p{}


.becomedealer-container{padding: 50px 0;}
.becomedealer-left{padding-right: 20px;}
.becomedealer-box{padding: 0 0 50px;margin: auto;}
.becomedealer-box h3{
    color: #282828;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0 15px;
}
.becomedealer-box h3 span{color: var(--primary-color);display: block;font-weight: 500;font-family: var(--secondary-font);letter-spacing: 1px;}
.becomedealer-box p{
    color: #313131;
    margin: 10px 0 0;
    font-size: 16px;
    text-align: justify;
    font-family: var(--secondary-font);
}

.becomedealer-frm-container{}
.becomedealer-frm-container .title{padding: 0 0 20px;}
.becomedealer-frm-container .title h3{
    color: #282828;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0 15px;
}
.becomedealer-frm-container .title p{
    color: var(--primary-color);
    letter-spacing: 1px;
    text-align: center;
    font-size: 18px;
}
.becomedealer-frm-container form{
    background: #fff;
    box-shadow: 0 0 20px 5px rgb(0 0 0 / 10%);
    padding: 30px;
    border-radius: 10px;
}
.becomedealer-frm-container form .fields-steps{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 30px;
    position: relative;
    z-index: 1;
}
.becomedealer-frm-container form .fields-steps:before{
    content: "";
    width: 135px;
    border-top: 2px dashed #ddd;
    position: absolute;
    top: 4px;
    left: 11%;
}

.becomedealer-frm-container form .fields-steps.step1:before{
    border-color: var(--secondary-color);
}
.becomedealer-frm-container form .fields-steps:after{
    content: "";
    width: 135px;
    border-top: 2px dashed #ddd;
    position: absolute;
    top: 4px;
    right: 12%;
}
.becomedealer-frm-container form .fields-steps span{
    font-size: 13px;
    font-family: var(--secondary-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 0;
    /* flex: 1; */
}
.becomedealer-frm-container form .fields-steps.step1 span:nth-child(2),
.becomedealer-frm-container form .fields-steps span.active{
    color: var(--secondary-color);
    font-weight: 500;
}
.becomedealer-frm-container form .fields-steps span:nth-child(1){
}
.becomedealer-frm-container form .fields-steps span:nth-child(3){
}

.becomedealer-frm-container form .fields-steps span:before{
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    background: #888;
    border-radius: 50px;
}
.becomedealer-frm-container form .fields-steps.step1 span:nth-child(2):before,
.becomedealer-frm-container form .fields-steps span.active:before{
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    outline: 1px solid var(--secondary-color);
    outline-offset: 2px;
}
.becomedealer-frm-container form .fields-steps span:not(:first-child):after{
    content: "";
    width: 125px;
    /* border-top: 1px dashed #888; */
    position: absolute;
    top: 0;
    left: -230%;
}
.becomedealer-frm-container form .fields{
    position: relative;
    margin: 0 0 30px;
    
}
.becomedealer-frm-container form .fields small{
    color: red;
    font-size: 12px;
    letter-spacing: .5px;
}
.becomedealer-frm-container form .fields :is(input, select){
    color: #000;
    border-radius: 6px;
    border: none;
    outline: none;
    padding: 10px 15px;
    background: none;
    border: 1px solid #939393;
}
.becomedealer-frm-container form .fields :is(input, select):focus{
    box-shadow: none;
    outline: none;
}
.becomedealer-frm-container form .fields :is(input, select)::placeholder{
    font-size: 13px;
    font-weight: 300;
}
.becomedealer-frm-container form .fields label{
    position: absolute;
    top: -9px;
    left: 10px;
    background: #fff;
    padding: 0 5px;
    color: #333;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--secondary-font);
}
.becomedealer-frm-container form .fields-radio{
    padding: 0 0 30px;
}
.becomedealer-frm-container form .fields-radio label{
    padding: 0 0 5px;
}
.becomedealer-frm-container form .fields-radio .radioinput{
    display: flex;
    align-items: center;
    gap: 80px;
}
.becomedealer-frm-container form .fields-radio .radioinput .radio{}
.becomedealer-frm-container form .fields-radio .radioinput .radio input{}
.becomedealer-frm-container form .fields-radio .radioinput .radio label{
    cursor: pointer;
    padding: 0;
}
.becomedealer-frm-container form .fields input{}
.becomedealer-frm-container form .fields select{}
.becomedealer-frm-container form .fields select option{color: #000;}
.becomedealer-frm-container form .fields-btn{
    display: flex;
    align-items: center;
    gap: 15px;
}
.becomedealer-frm-container form .fields-btn button{outline: none;border: none;margin: 0;border-radius: 3px;background: var(--secondary-color);color: #fff;font-size: 16px;width: 100%;}
.becomedealer-frm-container form .fields-btn button.unactive{
    background: #dddfff;
    color: #bbbbbb;
    cursor: no-drop;
}
.becomedealer-frm-container form .fields-type{
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 0 0 10px;
}
.becomedealer-frm-container form .fields-type label{
    cursor: pointer;
    padding: 0 0 10px;
}
.becomedealer-frm-container form .fields-type input{
    width: 20px;
    height: 20px;
    accent-color: var(--secondary-color);
}



.becomedealer-faq{
}
.becomedealer-faq h2{font-family: var(--secondary-font);color: #282828;text-transform: uppercase;font-weight: 500;letter-spacing: 1px;padding: 0 0 15px;font-size: 28px;}
.becomedealer-faq h2 span{font-family: var(--secondary-font);color: var(--primary-color);text-transform: uppercase;font-weight: 500;letter-spacing: 1px;}
.becomedealer-faq .faqsbox{
    margin: 0 auto 20px;
    padding: 15px;
    box-shadow: 0 2px 10px 1px rgb(0 0 0 / 10%);
    border-radius: 10px;
    background: #f1f1f1;
}
.becomedealer-faq .faqsbox h3{
    font-size: 20px;
    color: #000;
    position: relative;
    z-index: 1;
    cursor: pointer;
    font-weight: 400;
}
.becomedealer-faq .faqsbox h3 i{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 18px;
}
.becomedealer-faq .faqsbox .faqinnerbox{
    padding: 15px 0 0;
    display: none;
}
.becomedealer-faq .faqsbox .faqinnerbox.active{
    display: block;
}
.becomedealer-faq .faqsbox .faqinnerbox p{
    font-size: 16px;
    color: #313131;
    font-weight: 400;
}


.vehiclecat-container{
    padding: 50px 0 100px;
}
.vehiclecatright{
    text-align: end;
}
.vehiclecatright figure{
    background: #f1f1f1;
    border-radius: 20px;
    text-align: center;
    width: 80%;
    margin: auto;
    padding: 20px;
}
.vehiclecatright figure img{width: 100%;}
.vehiclecatleft{
    height: 100%;
    display: flex;
}
.vehiclecatleft .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.vehiclecatleft .content h3{
    font-size: 36px;
    margin: 0 0 10px;
    color: #252525;
    color: var(--secondary-color);
}
.vehiclecatleft .content p{
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
}
.vehiclecatleft .content a{}
.vehiclecatleft .content a:hover{}

.nobanner{
    height: 85px;
    background: #000;
}


.vehicles-container{
    padding: 50px 0 100px;
}
.vehicles-container .vehiclebox{
    background: #f1f1f1;
    border-radius: 20px;
}
.vehicles-container .vehiclebox figure{
    text-align: center;
}
.vehicles-container .vehiclebox figure img{
    width: 80%;
    margin: auto;
}
.vehicles-container .vehiclebox .content{
    text-align: center;
    padding: 0 0 40px;
}
.vehicles-container .vehiclebox .content h3{
}


.blogspage{
    padding: 50px 0 100px;
}
.blogspage .blogbox{
    box-shadow: 0 0 10px 3px rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 20px;
}
.blogspage .blogbox figure{
    text-align: center;
    background: #f1f1f1;
    border-radius: 10px;
}
.blogspage .blogbox figure img{width: 80%;margin: auto;}
.blogspage .blogbox .content{}
.blogspage .blogbox .content .date{color: var(--primary-color);letter-spacing: 1px;}
.blogspage .blogbox .content .date i{color: var(--secondary-color);margin-right: 5px;}
.blogspage .blogbox .content h3{font-size: 18px;margin: 10px 0;letter-spacing: 2px;line-height: 1.4;font-weight: 600;text-overflow: ellipsis;overflow: hidden;-webkit-box-orient: vertical;-webkit-line-clamp: 2;display: -webkit-box;}
.blogspage .blogbox .content p{
    font-size: 18px;
    letter-spacing: 1px;
}

.blogspage .blogbox .content p span{
    font-family: 'regular';
}



.oneblog{}
.oneblog .oneblogbox{}
.oneblog .oneblogbox figure{
    text-align: center;
    background: #f4f4f4;
    border-radius: 10px;
}
.oneblog .oneblogbox figure img{width: 50%;}
.oneblog .oneblogbox .oneblogcontent{
    padding: 20px 0 100px;
    width: 80%;
    margin: auto;
}
.oneblog .oneblogbox .oneblogcontent .date{
    color: var(--primary-color);
    letter-spacing: 1px;
}
.oneblog .oneblogbox .oneblogcontent .date i{
    color: var(--secondary-color);
}
.oneblog .oneblogbox .oneblogcontent h1{
    font-size: 32px;
    margin: 15px 0;
    font-weight: 600;
    letter-spacing: 2px;
}
.oneblog .oneblogbox .oneblogcontent h2{
    font-size: 24px;
    font-weight: 600;
    padding: 15px 0 10px;
    letter-spacing: 2px;
}
.oneblog .oneblogbox .oneblogcontent p{
    letter-spacing: 1px;
    padding: 0 0 15px;
    font-size: 18px;
}


.productcontent{padding: 40px 0 100px;}
.productleft{
    background: #f5f5f5;
    border-radius: 10px;
    text-align: center;
}
.productleft .mainimg{
    width: 80%;
    margin: auto;
}
.productleft .imgs{text-align: center;overflow: auto;display: flex;gap: 10px;align-items: center;justify-content: center;}
.productleft .imgs img{
    border: 1px solid #1c218240;
    margin: 0 0 10px;
    display: inline-block;
    width: 80px;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
}

.productright{}
.productright h3{
    font-size: 36px;
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: 1px;
}
.productright .price{
    padding: 15px 0 0;
}
.productright .price .newprice{
    font-weight: 600;
    font-size: 18px;
}
.productright .price .newprice div{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}
.productright .category{
    padding: 10px 0 10px;
}
.productright .category > span{
    font-weight: 400;
    font-size: 16px;
    display: block;
    padding: 0 0 10px;
}
.productright .category > span > span{
    color: #999;
}
.productright p{
    font-size: 17px;
}
.productright .actionbtns{
    padding: 20px 0 30px;
    display: flex;
    gap: 15px;
}
.productright .actionbtns .actionbtn{
    padding: 10px 50px;
    border-radius: 3px;
    color: var(--secondary-color);
    font-size: 15px;
    letter-spacing: 1px;
    border: 1px solid var(--secondary-color);
    text-align: center;
    text-transform: uppercase;
    transition: .3s linear;
    background: none;
}
.productright .actionbtns .actionbtn:hover,
.productright .actionbtns .enquiry{background: var(--secondary-color);color: #fff;}
.productright .actbtns .contact{}
.shareit{
    display: flex;
    align-items: center;
}
.shareit > span{
    letter-spacing: 1px;
    color: #999;
    font-size: 18px;
}
.shareit .links{}
.shareit .links a{
    display: inline-block;
    margin: 0 10px;
    transition: .3s linear;
}
.shareit .links a:hover{
    color: var(--secondary-color);
}

.productright .btns .actbtn:hover{}
.productright .actbtns .actbtn:hover{
    background: #444;
    color: #fff;
}
.prodesc-widget{
    padding: 60px 0 0;
}
.prodescbox{}
.prodescbox-header{
}
.prodesc-link{
    font-size: 22px;
    letter-spacing: 1px;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
}
.prodesc-body{
    padding: 10px 0 0 0;
}
.prodesc-body h3{
    font-size: 22px;
    margin: 20px 0 5px;
}
.prodesc-body p{
    font-size: 16px;
    letter-spacing: .5px;
}
.prodesc-body table{}
.prodesc-body table tr{}
.prodesc-body table tr th{
    font-weight: 500;
    letter-spacing: 1px;
}
.prodesc-body table tr td{
    font-weight: 300;
}
.product-faq{
    padding: 40px 0;
}
.product-faq .title{
    padding: 0 0 10px;
}
.product-faq .title h2{
    font-size: 26px;
    color: #000;
    font-weight: 400;
}
.product-faq .faqsbox{
    margin: 0 auto 20px;
    box-shadow: 0 1px 10px rgb(0 0 0 / 12%);
    padding: 15px;
    border-radius: 5px;
}
.product-faq .faqsbox h3{
    font-size: 20px;
    color: #000;
    position: relative;
    z-index: 1;
    cursor: pointer;
    font-weight: 400;
}
.product-faq .faqsbox h3 i{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 18px;
}
.product-faq .faqsbox .faqinnerbox{
    padding: 15px 0 0;
    display: none;
}
.product-faq .faqsbox .faqinnerbox.active{
    display: block;
}
.product-faq .faqsbox .faqinnerbox p{
    letter-spacing: 1px;
    font-size: 18px;
    color: #313131;
}


.enquirypopup{
    background: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: .4s linear;
}
.enquirypopup.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.enquiryinnerpopup{
    width: 60%;
    border-radius: 10px;
    background: #fff;
    padding: 40px;
    position: relative;
    transition: .3s linear;
    margin-top: -20px;
}
.enquirypopup.active .enquiryinnerpopup{
    margin-top: 0;
}
.enquiryinnerpopup .closeenquirypopup{
    position: absolute;
    top: 15px;
    right: 15px;
}
.enquiryinnerpopup .title{
    padding: 0 0 30px;
}
.enquiryinnerpopup .title h3{
    font-weight: 600;
    font-family: var(--secondary-font);
}
.enquiryinnerpopup .title p{
    letter-spacing: 1px;
}
.enquiryinnerpopup form{}
.enquiryinnerpopup form .fields{margin: 0 0 20px;position: relative;}
.enquiryinnerpopup form .fields label{font-size: 13px;color: #00000087;font-weight: 500;display: block;letter-spacing: 1px;text-transform: uppercase;position: absolute;top: -8px;left: 8px;background: #fff;padding: 0 7px;}
.enquiryinnerpopup form .fields select,
.enquiryinnerpopup form .fields input{
    border: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    outline: none;
}
.enquiryinnerpopup form .fields textarea{
    height: 90px;
    width: 100%;
    border: 1px solid #ddd;
    padding: 15px;
}
.enquiryinnerpopup form .fields input:focus,
.enquiryinnerpopup form .fields textarea:focus{
    box-shadow: none;
    outline: none;
}
.enquiryinnerpopup form .fields-btn{
    text-align: center;
}
.enquiryinnerpopup form .fields-btn button{
    width: 30%;
    background: var(--secondary-color);
    border: none;
    padding: 10px;
    border-radius: 3px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* home about section style start */

.aboutsection {background: #202020;padding: 80px 0;}

.aboutsection .aboutsectionbox {}

.aboutsection .aboutsectionbox .abouthead {}

.aboutsection .aboutsectionbox .abouthead h3 {font-weight: 500;font-size: 20px;color: #757575;text-transform: uppercase;margin-bottom: 8px;letter-spacing: 2px;}

.aboutsection .aboutsectionbox .abouthead .aboutsubhead {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aboutsection .aboutsectionbox .abouthead .aboutsubhead h2 {font-family: var(--secondary-font); */font-size: 36px;color: #fff;text-transform: uppercase;font-weight: 500;letter-spacing: 1px;}

.aboutsection .aboutsectionbox .abouthead .aboutsubhead a {
    color: #fff;
    transition: all .3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    transition: .3s linear;
}
.aboutsection .aboutsectionbox .abouthead .aboutsubhead a:hover{
    color: #999;
}

.aboutsection .aboutsectionbox .abouthead .aboutsubhead a i {
    font-size: 14px;
}

.aboutsection .aboutsectionbox .abouthead p {
    color: #cacaca;
    width: 100%;
    font-weight: 300;
    font-size: 16px;
    margin: 0;
    padding: 20px 0 0;
}

.aboutsection .aboutsectionbox .abouthead p span {
    font-weight: 600;
    color: #c4c4c4;
    letter-spacing: .5px;
}

/* home about section style end */

/* home dealer section style start */

.dealersection {
    padding: 80px 0px;
    background: #fff;
}

.dealersection .dealer-box {
    max-width: 100%;
    margin: 0 16px;
    padding: 40px;
    backdrop-filter: blur(60px);
    box-shadow: 0px 4px 44px 0px #00000024;
    border-radius: 4px;
}

.headingbox {
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.headingbox div {
}

.headingbox div h3 {font-weight: 500;font-size: 20px;color: #757575;text-transform: uppercase;margin-bottom: 8px;letter-spacing: 2px;}

.headingbox div h2 {font-family: var(--secondary-font);color: #282828;text-transform: uppercase;font-weight: 500;letter-spacing: 1px;padding: 0 0 15px;}

.headingbox div p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #4D4D4D;
    width: 663px;
    margin: 0;
    letter-spacing: .5px;
}

.dealersection .dealer-box .dealerbox {
    display: flex;
    margin: 24px 0;
}

.dealersection .dealer-box .dealerbox .dealeritem {
    border-radius: 4px;
    flex: 1;
    margin-right: 13px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.dealersection .dealer-box .dealerbox .dealeritem img {
    width: 90%;
    transition: all .3s;
    margin: 0 auto 40px;
}

.dealersection .dealer-box .dealerbox .dealeritem .innerbox {
    background: linear-gradient(0deg, #000000 0%, rgba(115, 115, 115, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    padding: 16px;
    justify-content: center;
    z-index: -1;
}

.dealersection .dealer-box .dealerbox .dealeritem .innerbox p {
    display: flex;
    align-items: center;
    line-height: 1;
    margin: 0;
}

.dealersection .dealer-box .dealerbox .dealeritem .innerbox p span {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}

.dealersection .dealer-box .dealerbox .dealeritem .innerbox p i {
    font-size: 16px;
    margin-left: 4px;
    transition: all .3s;
}

.dealersection .dealer-box .dealerlowerbox {
    display: flex;
    justify-content: space-between;
    padding: 24px 0 0;
    align-items: flex-end;
    border-top: 1px solid #0000001A;
}

.dealersection .dealer-box .dealerlowerbox div {}

.dealersection .dealer-box .dealerlowerbox div h3 {font-family: var(--secondary-font);color: #282828;/* text-transform: uppercase; */font-weight: 500;letter-spacing: 0px;padding: 0 0 15px;}

.dealersection .dealer-box .dealerlowerbox div p {
    font-weight: 400;
    font-size: 16px;
    line-height: 19.6px;
    max-width: 796px;
    margin: 0;
    color: #4D4D4D;
    letter-spacing: .5px;
}

.dealersection .dealer-box .dealerlowerbox a {
    width: 230px;
    height: 48px;
    border-radius: 4px;
    background: #253C80;
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 21.92px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
}

/* home dealer section style end */

/* award section style start */



.awardsection .awardsectionbox {}

.awardsection .awardsectionbox .headingbox {
    display: block;
    display: block;
    min-width: 1px;
    padding-left: 10px;
}

.awardsection .awardsectionbox .headingbox h3 {font-weight: 500;font-size: 20px;color: #757575;text-transform: uppercase;margin-bottom: 8px;letter-spacing: 2px;}

.awardsection .awardsectionbox .headingbox .subheading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.awardsection .awardsectionbox .headingbox .subheading h2 {
    font-family: var(--secondary-font);
    color: #282828;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0 15px;
}

.awardsection .awardsectionbox .headingbox .subheading a {
    color: var(--secondary-color);
    transition: all .3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.awardsection .awardsectionbox .headingbox .subheading a i {
    font-size: 14px;
    padding-left: 4px;
}

.awardsection .awardsectionbox .award-box {}

.awardsection .awardsectionbox .award-box .awardbox {
    background-color: #fff;
    display: flex;
    align-items: center;
    border: solid 1px #cecece;
    border-color: #dfdfdf;
    border-radius: 4px;
    box-shadow: none;
    padding: 0px;
    margin: 0px 8px;
    padding: 50px 30px;
}

.awardsection .awardsectionbox .award-box .awardbox .awardcontent {
    position: inherit;
    left: 0;
    top: 0;
    /* padding: 60px 25px 65px 25px; */
    background: #ffffff;
    text-align: left;
    flex: 1;
    /* padding-left: 36px; */
    font-size: 18px;
}

.awardsection .awardsectionbox .award-box .awardbox .awardcontent h2.title {
    font-size: 22px;
    text-transform: none;
    font-family: var(--secondary-font);
    font-weight: 400;
}

.awardsection .awardsectionbox .award-box .awardbox .awardcontent h2:after {
    content: "";
    height: 2px;
    width: 105px;
    background: #000000;
    display: block;
    margin: 10px 0;
    border-radius: 50px;
}

.awardsection .awardsectionbox .award-box .awardbox .awardcontent p {
    font-size: 14px;
    color: #787878;
    font-weight: 400;
    font-family: var(--secondary-font);
    letter-spacing: 0.5px;
}

.awardsection .awardsectionbox .award-box .awardbox .awardimg {
    /* background: linear-gradient(270deg, #efefef -4.69%, #f4f4f4 100%); */
    /* padding: 60px 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.awardsection .awardsectionbox .award-box .awardbox .awardimg img {
    width: auto;
    display: inline-block;
    height: 100%;
}

/* award section style end */

/* productsection style start */

.productsection {
    padding: 50px 0px;
}

.productsection .productsectionbox {}

.productsection .productsectionbox .headingbox {
    display: block;
    margin: 0 15px 20px 15px;
    display: block;
    min-width: 1px;
}

.productsection .productsectionbox .headingbox h3 {
    font-weight: 500;
    font-size: 20px;
    color: #757575;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.productsection .productsectionbox .headingbox .subheading {
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.productsection .productsectionbox .headingbox .subheading h2 {
    padding: 0;
    font-family: var(--secondary-font);
    font-size: 36px;
    color: #282828;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.productsection .productsectionbox .headingbox .subheading a {
    color: var(--secondary-color);
    transition: all .3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.productsection .productsectionbox .headingbox .subheading a i {
    font-size: 14px;
}

.productsection .productsectionbox .product-box {
    padding: 0px 10px;
    margin: 10px 0px;
}

.productsection .productsectionbox .product-box .categorybox {
    max-width: 100%;
    width: auto;
    margin: 0px 15px 20px 10px;
}
.productsection .productsectionbox .product-box .categorybox .leve1.nav-tabs {
    border-bottom: 1px solid #bcbdbd;
    display: inline-block;
    margin-bottom: 0px;
}

.productsection .productsectionbox .product-box .categorybox .leve1.nav-tabs li {
    float: left;
    margin-bottom: -1px;
    font-weight: 500;
    color: #000000;
    font-size: 20px;
    padding: 0 20px;
}
.productsection .productsectionbox .product-box .categorybox .leve1.nav-tabs li:first-child {
    padding-left: 0;
}

.productsection .productsectionbox .product-box .categorybox .leve1.nav-tabs li.active {}

.productsection .productsectionbox .product-box .categorybox .leve1.nav-tabs li a {
    color: #202020;
    border: 0 none;
    margin-top: -1px;
    padding: 13px 15px;
    background: transparent;
    font-size: 16px;
    font-weight: 400;
}

.productsection .productsectionbox .product-box .categorybox .leve1.nav-tabs li a.active {
    border-bottom: solid 4px var(--primary-color);
    font-weight: 600;
}
.productsection .productsectionbox .product-box .tab-content {}

.productsection .productsectionbox .product-box .tab-content .tab-pane {
    position: relative;
    display: block;
    height: 0;
    overflow: hidden;
}

.productsection .productsectionbox .product-box .tab-content .tab-pane.active {
    height: auto;
    opacity: 1;
}

.product-box .tab-content .tab-pane .categoryproductbox {}

.product-box .tab-content .tab-pane .categoryproductbox .productbox {
    background: #ffffff;
    transition: all 0.3s;
    box-shadow: 0 5px 10px 5px #eee;
    /* margin: 0px 10px; */
    /* border: 1px solid #eee; */
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    transition: .3s linear;
}
.product-box .tab-content .tab-pane .categoryproductbox .productbox:hover{
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.product-box .tab-content .tab-pane .categoryproductbox .productbox .productheader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productheader h2 {
    margin-bottom: 0;
    color: #212121;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 20px;
    font-weight: 600;
    font-size: 20px;
    font-family: var(--secondary-font);
    padding: 15px;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox .productimg {
    /* border-radius: 4px; */
    border: 1px solid #ddd9d9;
    padding: 30px;
    background: #c4c4c4;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox .productimg img {
    height: 300px;
    width: 100%;
    object-fit: contain;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox ul {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox ul:before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox ul li {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--secondary-font);
    z-index: 1;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox ul li:nth-child(2){
    border-inline: 1px solid #aaa;
    padding-inline: 15px;
}


.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox ul li:first-child {
    border: none;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productimgbox ul li strong {
    color: #fff;
    text-transform: none;
    display: block;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--secondary-font);
    text-transform: uppercase;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox {
    display: flex;
    align-items: center;
    padding: 20px;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox .productinfo {
    margin-top: 0;
    flex: 1 0 0;
    margin-right: 10px;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox .productinfo p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: var(--secondary-font);
    vertical-align: middle;
    margin: 0px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox .productinfo p em {
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-color);
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox .productinfo p span.productprice {
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox .productbtn {}

.product-box .tab-content .tab-pane .categoryproductbox .productbox .productinfobox .productbtn a {
    padding: 5px 20px;
    min-width: 110px;
    font-size: 16px;
    width: auto;
    font-weight: 500;
    font-family: var(--secondary-font);
    border-radius: 3px;
    border: 1px solid var(--secondary-color);
    text-transform: none;
    color: #fff;
    background: var(--secondary-color);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 8px 15px;
}

/* productsection style start */

/* partners section style start */

.partenrsection {
    padding: 50px 0px;
    background: #eee;
}

.partenrsection .partnersectionbox {
}

.partenrsection .partnersectionbox .headingbox {
    display: block;
}

.partenrsection .partnersectionbox .headingbox h3 {font-weight: 500;font-size: 20px;color: #757575;text-transform: uppercase;margin-bottom: 8px;letter-spacing: 2px;}

.partenrsection .partnersectionbox .headingbox .subheading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partenrsection .partnersectionbox .headingbox .subheading h2 {
    font-family: var(--secondary-font);
    color: #282828;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0 15px;
}

.partenrsection .partnersectionbox .headingbox .subheading a {color: var(--secondary-color);transition: all .3s;letter-spacing: 2px;text-transform: uppercase;font-size: 14px;}

.partenrsection .partnersectionbox .headingbox .subheading a i {
    font-size: 14px;
    margin-left: 4px;
}

.partenrsection .partnersectionbox .partnersbox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 30px 20px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    /* border-radius: 16px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.partenrsection .partnersectionbox .partnersbox .partners-box {

}


.partenrsection .partnersectionbox .partnersbox .partners-box .partnerimg {
    border: 1px solid #eee;
    display: inline-block;
    /* filter: grayscale(1); */
    transition: .3s ease;
    padding: 10px;
    /* margin: 7px; */
    cursor: pointer;
    /* background: #000; */
    width: 100%;
    margin: 0 0 20px;
    border-radius: 5px;
    transition: .3s linear;
    background: #fff;
}
.partenrsection .partnersectionbox .partnersbox .partners-box:hover .partnerimg:not(:hover){
    
    filter: grayscale(1);
}
.partenrsection .partnersectionbox .partnersbox .partners-box .partnerimg:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

.partenrsection .partnersectionbox .partnersbox .partners-box .partnerimg img {
    width: 100%;
    object-fit: contain;
    height: 100px;
}

/* partners section style end */

/* certificate section style start */

.certificatesection {
    padding: 30px 0px 50px;
    position: relative;
    z-index: 0;
}

.certificatesection .certificatesectionbox {}

.certificatesection .certificatesectionbox .headingbox {
    display: block;
    text-align: center;
    padding: 0 0 40px;
}

.certificatesection .certificatesectionbox .headingbox h3 {font-weight: 500;font-size: 20px;color: #757575;text-transform: uppercase;margin-bottom: 8px;letter-spacing: 2px;}

.certificatesection .certificatesectionbox .headingbox .subheading {}

.certificatesection .certificatesectionbox .headingbox .subheading h2 {font-family: var(--secondary-font);color: #282828;text-transform: uppercase;font-weight: 500;letter-spacing: 1px;}
.certificatesection  .slick-list{padding: 100px 0 !important;}
.certificatesection .certificatesectionbox .certificatebox {
    transition: all .3s ease-in-out;
    transform: scale(1.1);
    /* box-shadow: 0 0 30px 10px rgb(0 0 0 / 15%); */
}
.certificatesection .certificatesectionbox .certificatebox:nth-child(1){}
.certificatesection .certificatesectionbox .certificatebox:nth-child(2){}
.certificatesection .certificatesectionbox .certificatebox:nth-child(3){}
.certificatesection .certificatesectionbox .certificatebox:nth-child(4){}
.certificatesection .certificatesectionbox .certificatebox:nth-child(5){
    transform: scale(1.3);
}
.certificatesection .certificatesectionbox .certificatebox:nth-child(6){
}
.certificatesection .certificatesectionbox .certificatebox.slick-active.slick-center {
    z-index: 9;
    position: relative;
    transform: scale(1.4);
}
.certificatesection .certificatesectionbox .certificatebox .certificate-box {
}

.certificatesection .certificatesectionbox .certificatebox .certificate-box figure {
    margin: 0;
}

.certificatesection .certificatesectionbox .certificatebox .certificate-box figure img {
    width: 100%;
}

/* certificates section style end */


.mySwiper3{
    padding: 150px 0;
    overflow-x: hidden;
}
.mySwiper3 .swiper-wrapper{}
.mySwiper3 .swiper-wrapper .swiper-slide{
    transition: .3s linear;
    position: relative;
    z-index: 9;
    transform: scale(1.2);
    margin-top: -30px;
}
.mySwiper3 .swiper-wrapper .swiper-slide.swiper-slide-active{
    transform: scale(1.6);
    z-index: 99;
    margin-top: 0;
    box-shadow: 0 0 30px 10px rgb(0 0 0 / 15%);
}
.mySwiper3 .swiper-wrapper .swiper-slide.swiper-slide-next,
.mySwiper3 .swiper-wrapper .swiper-slide.swiper-slide-prev{
    z-index: 98;
    margin-top: 0;
    box-shadow: 0 0 30px 10px rgb(0 0 0 / 15%);
}
.mySwiper3 .swiper-wrapper .swiper-slide .certificatebox{}
.mySwiper3 .swiper-wrapper .swiper-slide .certificatebox .certificate-box{}
.mySwiper3 .swiper-wrapper .swiper-slide .certificatebox .certificate-box figure{margin: 0;}
.mySwiper3 .swiper-wrapper .swiper-slide .certificatebox .certificate-box figure img{width: 100%;}
.mySwiper3 .swiper-button-next{right: 25%;}
.mySwiper3 .swiper-button-prev{left: 25%;}
.mySwiper3 .swiper-button-next,
.mySwiper3 .swiper-button-prev{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 0 15px 10px #eee;
    border: 1px solid #eee;
}
.mySwiper3 .swiper-button-next:after,
.mySwiper3 .swiper-button-prev:after{
    font-size: 15px;
}


.vehicleproducts{
    padding: 40px 0 100px;
}

.vehicleproducts-box {
    background: #ffffff;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    transition: .3s linear;
}
.vehicleproducts-box:hover{
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.vehicleproducts-head{
    color: #212121;
    white-space: nowrap;
    font-weight: 600;
    font-size: 20px;
    font-family: var(--secondary-font);
    padding: 15px;
    display: block;
    text-align: center;
    line-height: 1;
}

.vehicleimgbox {
    position: relative;
    overflow: hidden;
    background: #c4c4c4;
}

.vehicleimgbox .vehicle-img {
    border: 1px solid #ddd9d9;
    padding: 30px;
    background: #c4c4c4;
    margin: 0;
}

.vehicleimgbox .vehicle-img img {
    height: 300px;
    width: 100%;
    object-fit: contain;
}

.vehicleimgbox ul {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vehicleimgbox ul:before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
}

.vehicleimgbox ul li {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--secondary-font);
    z-index: 1;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.vehicleimgbox ul li:nth-child(2){
    border-inline: 1px solid #aaa;
    padding-inline: 15px;
}


.vehicleimgbox ul li:first-child {
    border: none;
}

.vehicleimgbox ul li span {
    color: #fff;
    text-transform: none;
    display: block;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--secondary-font);
    text-transform: uppercase;
}

.vehiclebox-content {
    display: flex;
    align-items: center;
    padding: 20px;
}

.vehiclebox-content .contentinfo {
    margin-top: 0;
    flex: 1 0 0;
    margin-right: 10px;
}

.vehiclebox-content .contentinfo p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: var(--secondary-font);
    vertical-align: middle;
    margin: 0px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehiclebox-content .contentinfo p .vehicleprice {
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    padding-right: 5px;
}

.vehiclebox-content .vehiclebtn {}

.vehiclebox-content .vehiclebtn a {
    padding: 5px 20px;
    min-width: 110px;
    font-size: 16px;
    width: auto;
    font-weight: 500;
    font-family: var(--secondary-font);
    border-radius: 3px;
    border: 1px solid var(--secondary-color);
    text-transform: none;
    color: #fff;
    background: var(--secondary-color);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 8px 15px;
}


.contact-map{}
.contact-map .map{}
.contact-map .map iframe{width: 100%;height: 300px;border: none;border-radius: 0;}

.contactinfo-details{
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 0;
}
.contactinfo-details:before{
    content: "";
    width: 1px;
    height: 100%;
    background: #dddddd;
    position: absolute;
    left: -10%;
    top: 0;
}
.contactinfo-details .infodiv{
    display: flex;
    align-items: center;
    gap: 25px;
}
.contactinfo-details .infodiv .icon{
}
.contactinfo-details .infodiv .icon i{
    font-size: 20px;
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    display: inline-block;
    border: 1px solid #6e6e6e;
    color: #6e6e6e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.contactinfo-details .infodiv .icon img{width: 40px;}
.contactinfo-details .infodiv .content{}
.contactinfo-details .infodiv .content span{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    color: var(--secondary-color);
}
.contactinfo-details .infodiv .content a{
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 300;
    line-height: 1.3;
    color: #000;
}


.social-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px 10px;
    padding: 80px 0 0;
    flex-wrap: wrap;
}
.social-wrap .title{
    flex: 0 0 100%;
    text-align: center;
}
.social-wrap .title h3{
    font-size: 15px;
}
.social-wrap .social-box{}
.social-wrap .social-box a{
    width: 40px;
    height: 40px;
    display: inline-block;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 3px;
    transition: .3s linear;
}
.social-wrap .social-box a:hover{
    transform: translateY(-5px);
}

.social-wrap .social-box a.bi-facebook{
    background: #1877F2;
}
.social-wrap .social-box a.bi-instagram{
    background: linear-gradient(45deg, 
    #f58529, 
    #dd2a7b, 
    #8134af, 
    #515bd4);
}
.social-wrap .social-box a.bi-linkedin{
    background: #0A66C2;
}
.social-wrap .social-box a.bi-twitter{
    background: #000000;
}
.social-wrap .social-box a.bi-youtube{
    background: #FF0000;
}
.social-wrap .social-box a.bi-whatsapp{
    background: #25D366;
}
