@font-face {
     font-family: 'kalame';
     src: url('../../fonts/Kalameh/KalamehWebFaNum-Light.woff') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}
 @font-face {
     font-family: 'kalame';
     src: url('../../fonts/Kalameh/KalamehWebFaNum-Medium.woff') format('woff');
     font-weight: bold;
     font-style: normal;
     font-display: swap;
}
 html{
     scroll-behavior: smooth;
}
 :root {
     --gutter: 20px;
     --gap: 25px;
     --primary-c: #00b0bc;
     --secondary-c: #f4f8fa;
     --tertiary-c: #f2f4fe;
     --quarternary-c: #edf2f6;
     --alternate-c: #2860e6;
}
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
}
 a{
     text-decoration: none;
     color: #33404a;
}
 img {
     width: 100%;
}
 p{
     line-height: 32px;
}
 body {
     font-family: kalame;
     direction: rtl;
     font-weight: normal;
     font-size: 15px;
     z-index: 1;
}
 h1,h2,h3,h4,h5,h6{
     font-weight: bold;
}
html.lenis, html.lenis body {
  height: auto !important;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}
.title-color{
    color:#233D62
}
.title-caption{
    color: #485666;
    line-height: 29px;
}
 .overflow-h{
     overflow: hidden;
}
 .container {
     max-width: 1280px;
     margin: 0 auto;
     width: 100%;
     padding: 0 var(--gutter);
}
 .container-fluid {
     margin: 0 auto;
     width: 100%;
}
 .row {
     display: flex;
     flex-wrap: wrap;
     margin-left: calc(var(--gutter) / 2);
     margin-right: calc(var(--gutter) / 2);
     gap: var(--gap);
     padding-top: calc(var(--gutter) * 2);
     padding-bottom: calc(var(--gutter) * 2);
}
 .button{
     padding: 3px 10px;
     text-align: center;
     border:1px solid #000;
     width: max-content;
}
 .nowrap {
     flex-wrap: nowrap !important;
}
 .nopadding{
     padding: 0 !important;
}
 .nomargin{
     margin:0 !important;
}
 .flex-wrap{
     flex-wrap: wrap;
}
 .hover-opacity{
     transition: 0.4s;
}
 .hover-opacity:hover{
     opacity: 0.6;
}
 .col-1 {
     width: calc((100% / 12 * 1) - var(--gap));
}
 .col-2 {
     width: calc((100% / 12 * 2) - var(--gap));
}
 .col-3 {
     width: calc(25% - (3/4 * var(--gap))) 
}
 .col-4 {
     width: calc((100% / 12 * 4) - var(--gap) * 2/3);
}
 .col-5 {
     width: calc((100% / 12 * 5) - var(--gap));
}
 .col-6 {
     width: calc((100% / 12 * 6) - var(--gap)/2);
}
 .col-7 {
     width: calc((100% / 12 * 7) - var(--gap));
}
 .col-8 {
     width: calc((100% / 12 * 8) - var(--gap));
}
 .col-9 {
     width: calc((100% / 12 * 9) - var(--gap));
}
 .col-10 {
     width: calc((100% / 12 * 10) - var(--gap));
}
 .col-11 {
     width: calc((100% / 12 * 11) - var(--gap));
}
 .col-12 {
     width: 100%;
}
/* ===== Breakpoints ===== */
/* 💻 Large devices (tablets & small desktops) */
 @media (max-width: 992px) {
     .col-md-12 {
         width: 100%;
    }
     .col-md-6 {
         width: calc(50% - var(--gap));
    }
     .col-md-4 {
         width: calc(33.333% - var(--gap));
    }
}
/* 📱 Medium devices (tablets) */
 @media (max-width: 768px) {
     .col-sm-12 {
         width: 100%;
    }
     .col-sm-8 {
         width: calc(66.666% - var(--gap));
    }
    /* 2/3 */
     .col-sm-6 {
         width: calc(50% - var(--gap));
    }
     .col-sm-7 {
         width: calc((100% / 12 * 7) - var(--gap));
    }
     .col-sm-5 {
         width: calc((100% / 12 * 5) - var(--gap));
    }
     .col-sm-4 {
         width: calc(33.333% - var(--gap));
    }
}
/* 📲 Small devices (mobiles) */
 @media (max-width: 576px) {
     .col-xs-12 {
         width: 100%;
    }
     .col-xs-8 {
         width: calc(66.666% - var(--gap));
    }
     .col-xs-6 {
         width: calc(50% - var(--gap));
    }
     .col-xs-4 {
         width: calc(33.333% - var(--gap));
    }
     .col-xs-3 {
         width: calc(25% - var(--gap));
    }
}
 .mt-1{
     margin-top: 10px;
}
 .mt-2{
     margin-top: 20px;
}
 .mt-3{
     margin-top: 30px;
}
 .mt-4{
     margin-top: 40px;
}
 .mt-5{
     margin-top: 50px;
}
 .mt-17-neg{
     margin-top: -17px;
}
 .p-1{
     padding: 10px;
}
 .p-2{
     padding: 20px;
}
 .p-3{
     padding: 30px;
}
 .p-4{
     padding: 40px;
}
 .p-5{
     padding: 50px;
}
 .pt-5{
     padding-top: 50px;
}
 .pt-4{
     padding-top: 40px;
}
 .pt-1{
     padding-top: 10px;
}
 .pt-2{
     padding-top: 20px;
}
 .pt-3{
     padding-top: 30px;
}
 .pb-1{
     padding-bottom: 10px;
}
 .pb-2{
     padding-bottom: 20px;
}
 .pb-5{
     padding-bottom: 50px;
}
 .mt-10{
     margin-top: 100px;
}
 .mb-05{
     margin-bottom: 5px;
}
 .mb-1{
     margin-bottom: 10px;
}
 .mb-2{
     margin-bottom: 20px;
}
 .mb-3{
     margin-bottom: 30px;
}
 .mb-4{
     margin-bottom: 40px;
}
 .mb-5{
     margin-bottom: 50px;
}
 .mb-10{
     margin-bottom: 100px;
}
.mb-3px{
    margin-bottom: 3px;
}
 .w-30{
     width: 30px;
}
 .w-15{
     width: 15px;
}
 .w-50{
     width: 50px;
}
 .w-40{
     width: 40px;
}
 .w-200{
     width: 200px;
}
.h-100{
    height: 100%;
}
 .row-child{
     padding: 0 !important;
     margin:0 !important 
}
 .gap1{
     gap: 10px;
}
 .gap2{
     gap: 20px;
}
 .gap3{
     gap: 30px;
}
 .bg-white{
     background-color: #fff !important;
}
 .d-flex {
     display: flex;
}
 .d-inline-block {
     display: inline-block;
}
 .d-block{
     display: block;
}
 .flex-row {
     flex-direction: row;
}
 .flex-row-reverse {
     flex-direction: row-reverse;
}
 .flex-column {
     flex-direction: column;
}
 .flex-column-reverse {
     flex-direction: column-reverse;
}
 .justify-start {
     justify-content: flex-start;
}
 .justify-center {
     justify-content: center;
}
 .justify-end {
     justify-content: flex-end;
}
 .justify-between {
     justify-content: space-between;
}
 .justify-around {
     justify-content: space-around;
}
 .justify-evenly {
     justify-content: space-evenly;
}
 .align-start {
     align-items: flex-start;
}
 .align-center {
     align-items: center;
}
 .align-end {
     align-items: flex-end;
}
 .align-stretch {
     align-items: stretch;
}
 .align-baseline {
     align-items: baseline;
}
 .text-center {
     text-align: center;
}
 .text-justify{
     text-align: justify;
}
 .text-bold{
     font-weight: bold;
}
 .text-normal{
     font-weight: normal;
}
 .text-white {
     color:#fff !important 
}
 .text-black * {
     color:#000 !important 
}
 .text-10{
     font-size: 10px !important;
}
 .text-13{
     font-size: 13px !important;
}
 .text-14{
     font-size: 14px !important;
}
 .text-15{
     font-size: 15px !important;
}
 .text-18{
     font-size: 18px !important;
}
 .text-22{
     font-size: 22px !important;
}
 .text-26{
     font-size: 26px !important;
}
 .text-32{
     font-size:32px !important;
}
 .rounded-1 {
     border-radius: 4px;
}
 .rounded-2 {
     border-radius: 8px;
}
 .rounded-3 {
     border-radius: 12px;
}
 .rounded-4 {
     border-radius: 18px;
}
 .rounded-5 {
     border-radius: 24px;
}
 .rounded-6{
     border-radius: 40px;
}
 .lh-4{
     line-height: 40px;
}
 .demo-box {
     background-color: var(--secondary-c);
     text-align: center;
     padding: 12px;
     margin-bottom: 8px;
}
 .ltr{
     direction: ltr;
}
 .section-zero{
     margin-top: -66px;
     min-height: 55vh;
     background-position: center;
     background-size: cover;
}
 .image-center{
     margin-left: auto;
     margin-right: auto;
}
 .login {
     font-size: 14px;
}
 .breadcrumb-desc {
     position: relative;
     padding-right: 10px;
     text-align: justify;
}
 .breadcrumb-desc::after {
     position: absolute;
     content: '';
     top: 10px;
     right: 0;
     background-color: #00b0bc;
     width: 3px;
     height: 45px;
     border-radius: 15px;
}
 .breadcrumb-path {
     margin-bottom: 35px;
     font-size: 11px;
}
 .breadcrumb-titles {
     font-size: 24px;
     font-weight: bold;
     margin-bottom: 5px;
}
 .section-padding{
     padding-top:50px;
     padding-bottom: 50px;
}
 .prods-inner a {
     background-color: #33404a;
     width: max-content;
     margin: 10px auto 0 auto;
     border-radius: 5px;
     font-size: 12px;
     padding: 2px 8px;
     font-weight: normal;
     color: #fff;
     transition: 0.6s;
}
 .prods-inner a:hover {
     padding: 2px 18px;
     border-radius: 12px;
     transition: 0.2s;
}
 header {
     padding: 3px 30px;
     position: sticky;
     top: 0;
     font-weight: bold;
     z-index: 99;
     border-bottom: 1px solid #ffffff26;
}
 .underlay-head {
     background-color: #ffffff8a;
     box-shadow: 0px 0px 20px #0000000d;
     backdrop-filter: blur(5px);
     -webkit-backdrop-filter: blur(5px);
     transform: translateY(-100%);
     width: 100%;
     z-index: 8;
     position: fixed;
     top: 0;
     right: 0;
     height: 66px;
     transition: 0.4s all;
     opacity: 0;
}
 .underlay-head.open {
     transform: translateY(0);
     opacity: 1;
}
 nav {
     z-index: 10;
     position: inherit;
}
 .main-menu li{
     position: relative;
}
 .main-menu {
     list-style: none;
     display: flex;
     gap: 25px;
     position: relative;
}
 .main-menu a {
     color: #000;
     text-decoration: none;
     transition: 0.3s color;
     padding: 10px 5px;
     cursor: pointer;
}
 .its-transparent .main-menu a.active:after{
     background-color: #fff;
}
 .main-menu a.active {
     position: relative;
}
 .main-menu a.active::after {
     content: '';
     position: absolute;
     bottom: 6px;
     left: 50%;
     transform: translateX(-50%);
     background-color: #00b0bc;
     width: 6px;
     height: 6px;
     border-radius: 100%;
}
 .main-menu a:hover {
     color: var(--primary-c);
}
 nav img.header-logo {
     padding: 5px 0px;
     width: 120px;
     transition: 0.5s;
}
 .sub-menu {
     position: absolute;
     width: max-content;
     right: 50%;
     display: block;
     background-color: #ffffffb9;
     padding: 5px 3px;
     top: 45px;
     border-radius: 8px;
     box-shadow: 0px 4px 10px #00000021;
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     opacity: 0;
     transition: 0.3s;
     visibility: hidden;
     max-height: 0px;
     transform: translateX(50%);
     text-align: center;
     z-index: 1;
}
 .has-sub-menu:hover > .sub-menu{
     opacity: 1;
     visibility: visible;
     max-height: 400px;
     transition: 0.5s;
}
 .sub-menu a {
     display: block;
     color: #000 !important;
     border-bottom: 1px solid oklch(96.7% .003 264.542);
     padding: 10px 60px;
     font-weight: normal;
     transition: 0.3s;
     font-size: 13px;
     font-weight: bold;
     border-radius: 1px;
}
 .sub-menu a:hover {
     background-color: #eeeef261;
     box-shadow: inset 0px 0px 20px #80808021;
}
 .sub-menu a:last-child {
     border:none;
}
 .its-transparent .header-logo {
     filter: brightness(0) invert(1);
}
 .titles2::after {
     content: " ";
     position: absolute;
     bottom: -1px;
     right: 0;
     display: block;
     height: 7px;
     width: calc(100% + 6px);
     background-color: #00a4b04d;
     -webkit-clip-path: polygon(6px 0,100% 0,100% 100%,0 100%);
     clip-path: polygon(6px 0,100% 0,100% 100%,0 100%);
     z-index: 0;
     border-radius: 1px;
}
 .titles2 {
     position: relative;
     width: max-content;
}
 .the-menu {
     position: relative;
     width: 40px;
     height: 40px;
     cursor: pointer;
     z-index: 1;
}
 .the-menu .menubar1 {
     top: 17px;
     width: 24px;
}
 .the-menu .menubar2 {
     top: 25px;
     width: 13px;
}
 .the-menu.cross .menubar1 {
     transform: rotate(45deg);
     top: 19px;
     width: 32px;
}
 .the-menu.cross .menubar2 {
     transform: rotate(-45deg);
     top: 19px;
     width: 32px;
}
 .menu-logo {
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1;
}
 .the-menu .menubar1, .the-menu .menubar2 {
     position: absolute;
     right: 3px;
     height: 2px;
     background-color: #000;
     border-radius: 5px;
     transition: all 0.5s ease;
}
 .its-transparent .main-menu a {
     color: #fff;
     transition: 0.3s;
}
 .main-menu a:hover {
     color: #00b0bc;
}
 .make-it-white{
     filter: brightness(0) invert();
}
 .make-it-black{
     filter: brightness(100) invert();
}
 .its-transparent .login a{
     background-color: transparent;
     color:#fff;
     border:1px solid #fff 
}
 .its-transparent .the-menu span {
     background-color: #fff;
}
 .login a {
     background-color: var(--primary-c);
     color: #fff;
     padding: 6px 12px;
     text-decoration: none;
     font-weight: normal;
     display: flex;
     gap: 10px;
     transition: 0.3s all;
     border: 1px solid transparent;
}
 .login a img {
     width: 20px;
     transition: 0.5s all;
}
 .login a:hover img {
     transform: scale(-1);
     transform-origin: center;
}
 .login a:hover {
     transform: scale(0.9);
}

#products {
  background-color: #fff;
  position: fixed;
  top: -130%;
  width: 100%;
  opacity: 0;
  right: 0;
  box-shadow: 0px 0px 20px #00000014;
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
}
 .prods-menubg {
     background-color: #fff;
     height: 66px;
}
.prods-head {
  background-color: #33404a;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 66px;
  z-index: 2;
}
 .close {
     border: 1px solid #fff;
     border-radius: 100%;
     background-color: #fff;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 24px;
     height: 24px;
}
 .close span {
     color: #33404a;
     width: 22px;
     height: 22px;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .prods-cat {
     list-style: none;
     display: flex;
     gap: 30px;
     font-weight: normal;
}
 .prods-inner h4 {
     margin-top: 00px;
}
 .prods-inner {
     padding-top: 15px;
}
 .prods-inner span {
     font-weight: normal;
     font-size: 12px;
     display: none;
}
 .prods-inner p {
     font-weight: normal;
     font-size: 13px;
}
.carname-fa{
    font-weight: bold !important;
    font-size: inherit !important;
}
.carname-en {
  font-size: 13px !important;
  white-space: nowrap;
}
 .black-overlay,.black-overlay-darker{
     position: relative;
}
.notice-modal a {
  cursor: pointer;
  transition: 0.4s;
}
.notice-modal a:hover{
  background-color: #354c6e;
  color: #fff;
}
.notice-modal p {
  text-align: justify;
}
.post-titles {
  font-size: 16px !important;
  margin-top: 20px;
  margin-bottom: 5px !important;
  font-weight: bold;
}
.post-imgs {
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 12px;
}
.related-posts h4 {
  font-size: 13px !important;
  height: 30px;
}
.related-posts .blog-cards-inner img {
  width: 14px;
  margin-bottom: -2px;
  margin-left: 3px;
}
 .black-overlay::after,.black-overlay-darker::after{
     position: absolute;
     top: 0;
     right: 0;
     content: '';
     background-color: #0000006b;
     width: 100%;
     height: 100%;
     z-index: 0;
}
 .black-overlay > div,.black-overlay-darker > div{
     z-index: 2;
}
 .black-overlay-darker::after{
     background-color: #000000b3;
}
 .breadcrumb span, .breadcrumb p, .breadcrumb a {
     color: #fff !important;
}
 .section1-cta a {
     padding: 4px 10px;
     border: 1px solid;
}
 .home-ccards-detail img {
     width: 16px;
     filter: brightness(0);
     margin-bottom: 1px;
     margin-left: 5px;
     object-fit: contain;
}
 div:has(.homa-grad){
     position: relative;
}
 .homa-grad{
     background: linear-gradient(180deg,#00b0bc1f 0%,#ffffff00 100%);
     position: absolute;
     width: 100%;
     height: 80px;
     top: 0;
     right: 0;
     z-index: -1;
}
 .home-ccards {
     background-color: var(--secondary-c);
     border-radius: 8px;
}
 .home-ccards-cta a:first-child {
     background-color: #33404a;
     color: #fff;
}
 .home-ccards-cta a {
     border-radius: 15px;
     width: 80px;
     transition: 0.4s;
     text-align: center;
     background-color: #fff;
     padding: 4px 10px;
     font-weight: bold;
     font-size: 13px;
}
 .home-ccards img {
     display: block;
}

 .hover-rotate-span a span {
     transition: 0.25s;
     display: inline-block;
}
 .hover-rotate-span a:hover span {
     transform: rotate(-180deg);
}
 ul.featlist {
     list-style: none;
}
 ul.featlist li {
     margin-bottom: 10px;
}
 ul.featlist li span {
     background-color: var(--tertiary-c);
     width: 27px;
     display: inline-block;
     height: 27px;
     padding: 3px;
     padding-right: 3px;
     padding-right: 7px;
     border-radius: 100%;
     margin-left:10px;
     font-weight: normal;
}
 .a-readmore {
     background-color: #00b0bc;
     padding: 4px 10px;
     color: #fff;
     border-radius: 12px;
     border: 2px double #f2f4fe;
     display:inline-block;
     width: max-content;
}
 .titles1::after {
     content: '';
     bottom: 5px;
     right: 50%;
     transform: translateX(50%);
     position: absolute;
     width: 50px;
     height: 2px;
     background-color: #00b0bc;
}
 .titles1 {
     position: relative;
     padding-bottom: 20px;
}
 .blog-cards {
     overflow: hidden;
     border-radius: 12px;
     border: 1px solid #dde1de;
     white-space: normal;
     transition: 0.8s;
}
 .home-ccards-date > img,.home-ccards-tag > img {
     width: 15px;
     height: 15px;
     margin-top: 0px;
     display: inline-block;
     margin-left: 5px;
     opacity: 0.7;
     white-space: normal;
}
.home-ccards-model-desc {
  line-height: 23px;
}
 .home-ccards-date,.home-ccards-tag {
     font-size: 11px;
     color: gray;
     width: 100%;
}
 .blog-cards-inner {
     margin-top: -22px;
     background-color: #fff;
     position: relative;
     border-radius: 15px;
     transition: 0.6s;
}
 .blog-cards:hover .blog-cards-inner {
     margin-top: -30px;
     transition: 0.3s all;
}
 .blog-cards-cat {
     position: absolute;
     top: -14px;
     right: 20px;
     padding: 4px 12px;
     background-color: #60c4ca91;
     color: #fff;
     border-radius: 8px;
     font-size: 13px;
     backdrop-filter: blur(5px);
}
 .blog-cards-title.mb-1 {
     font-size: 14px;
     height: 40px;
}
 .blog-cards-excerp {
     font-size: 13px;
     height: 40px;
     line-height: 24px;
}
 .blog-cards-read {
     background-color: #33404a;
     padding: 1px 10px;
     border-radius: 4px;
     font-size: 12px;
     color: #fff;
     cursor: pointer;
     width: max-content;
}
 footer {
     background-color: #0d161f;
}
 footer span.footer-title {
     color: #868686;
     display: inline-block;
}
 footer .footer-desc{
     color:#fff 
}
 .footimg {
     width: 21px;
     margin-left: 16px;
}
 .copyright img {
     width: 70px;
}
 .copyright {
     padding-top: 20px !important;
     border-top: 1px solid #ffffff14;
     padding-bottom: 10px !important;
}
 .copyright span,.copyright * {
     color: #868686;
     font-size: 11px;
}
 .copyright span{
     text-align: left;
}
 .copyright ul {
     list-style-type: none;
     display: flex;
     gap: 20px;
}
 footer {
     font-size: 14px;
}
 .copyright > div {
     display: flex;
     align-items: center;
}
 .copyright > ul {
     display: flex;
}
 footer > div > div > div > div:last-child img {
     width: 100px;
}
 .social-footer img {
     width: 15px !important;
     transition: 0.5s;
}
 .social-footer img:hover {
     transform: scale(1.2) rotate(360deg);
}
 .social-footer {
     gap: 15px;
}
 footer li a{
     transition: 0.4s;
}
 footer li a:hover {
     color: #fff;
}
 iframe {
     width: 100%;
}

/* **************** */
 #contact-section1 {
     background-image: url('../../images/auto/contact-bg.jpg');
}
 .contact-div img {
     width: 16px;
}
 .contact-div > div {
     margin-top: 25px;
     margin-bottom: 25px;
}
 .contact-div {
     padding: 25px;
     border: 1px solid #00000017;
     border-radius: 12px;
}
 #about-section1{
     background-image: url('../../images/auto/wallpaper-6.jpg');
}
 .three-images {
     overflow: hidden;
     padding: 20px;
}
 .three-images img {
     width: 50%;
     margin: auto;
     margin-left: auto;
     display: block;
     border-radius: 6px;
     opacity: 0;
}
 .three-images img:nth-child(1) {
     margin-left: 5%;
}
 .three-images img:nth-child(2) {
     margin-right: 10%;
     margin-top: -30%;
     z-index: 0;
     position: relative;
}
 .three-images img:nth-child(3) {
     margin-top: -30%;
     margin-left: 15%;
     position: relative;
     z-index: 0;
     width: 40%;
}
 #about-section2 {
     background-image: url('https://itbusinesspro.liquid-themes.com/wp-content/uploads/2021/01/bg-2@2x.jpg');
     z-index: -0;
     background-size: contain;
     background-repeat: no-repeat;
     background-position: right 35% center;
}
 #about-section3 {
     background-color: var(--secondary-c);
}
 #about-section5{
     background-image: url('../../images/auto/wallpaper-5.jpg');
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
     position: relative;
     z-index:1;
     padding: 7% 0px !important;
}
 #about-section5::after{
     position: absolute;
     width: 100%;
     top: 0;
     right: 0;
     content: '';
     background-color: #0000009f;
     height: 100%;
     z-index: -1;
}

 #blog-section1 {
     background-position: center bottom;
     background-image: url('../../images/auto/blog-bg.jpg');
}
 .blog-sidebar,#bloglist,.product-sidebar {
     margin-top: 10px;
     background-color: #fff;
     position: relative;
     border-radius: 15px;
     transition: 0.6s;
     padding: 20px;
     box-shadow: -5px 18px 60px 0px rgba(210, 210, 234, 0.4);
}
 .sidebar-post img {
     width: 110px;
     border-radius: 4px;
}
 .widget-title::after {
     position: absolute;
     content: '';
     background-color: #00b0bc;
     top: -3px;
     right: -24px;
     height: 30px;
     width: 4px;
     border-radius: 0px 5px 5px 0px;
}
 .widget-title {
     position: relative;
     font-size: 15px;
     font-weight: bold;
     margin-bottom: 15px;
     display: block;
}
 .sidebar-post a {
     display: flex;
     gap: 10px;
}
 .widget {
     margin-bottom: 45px;
}
 .sidebar-post {
     margin-bottom: 20px;
}
 #blog-section-2 {
     box-shadow: -5px 18px 60px 0px rgba(210, 210, 234, 0.4);
     margin-bottom: 30px;
}
 #bloglist .sidebar-post img{
     width: 100% !important;
}
 .blog-meta img,#bloglist .blog-meta img {
     width: 14px !important;
}
 .blog-meta span {
     line-height: 0px;
     font-size: 11px;
     color: gray;
     display: flex;
     align-items: center;
     gap: 5px;
}
.blog-post-comment img {
  width: 20px;
}

.post-meta img {
  width: 16px;
}
.post-meta {
  border-bottom: 1px solid #00000014;
  padding-bottom: 20px;
}
.post-meta span {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 12px;
}
 .insta-gradient {
     background: linear-gradient(to right,#833ab4,#fd1d1d,#fcb045);
     background-clip: border-box;
     background-clip: border-box;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     color: transparent;
     width: max-content;
     direction: ltr;
     transition:0.3s 
}
 .widget-insta{
     width: 80px;
     margin-top: 10px;
     margin-bottom: 15px;
     transition:0.2s 
}
 .widget-insta:hover,.insta-gradient:hover{
     transform: scale(1.05);
}
 .blog-sidebar-inner .widget:last-child {
     margin-bottom: 0px;
}
 #bloglist .sidebar-post {
     margin-bottom: 20px !important;
}
#bloglist .sidebar-post {
  border-bottom: 1px dashed #00000012;
  padding-bottom: 20px;
}
.homefeatbox > .featbox {
  box-shadow: none;
}

.homefeatbox .featbox span:first-child {
  margin-bottom: 10px;
}

.homefeatbox .featbox {
    padding: 30px;
}
 .sidebar-post p {
  line-height: 22px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
 .blog-sidebar, #bloglist {
     height: max-content;
}
 .blog-sidebar{
     position: sticky;
     top:75px 
}
 .pagination ul {
     list-style: none;
     display: flex;
     gap: 15px;
     margin-top: 20px;
     padding: 10px 20px;
     background-color: #f8f8fc;
     border-radius: 35px;
}
 .pagination li {
     display: inline-block;
     padding: 1px 10px;
     border:1px solid #fff;
}
 .pagination ul li.active {
     background-color: #00b0bc;
}
 .pagination ul li.active a {
     color:#fff 
}
 .pagination li {
     display: inline-block;
     padding: 1px 10px;
     border-radius: 100%;
     transition: 0.3s;
     cursor: pointer;
     background-color: #fff;
}
 .pagination li:hover {
     border: 1px solid #00b0bc;
}
 .loader {
     opacity: 0;
     width: 28px;
     height: 28px;
     border-radius: 50%;
     display: inline-block;
     border-top: 1px solid #00B0BC;
     border-right: 3px solid transparent;
     box-sizing: border-box;
     transition: 0.4s;
     animation: rotation 0.35s linear infinite;
}
 @keyframes rotation {
     0% {
         transform: rotate(0deg);
    }
     100% {
         transform: rotate(360deg);
    }
}
 #bloglist {
     scroll-margin: 80px;
}
.download-pdf {
  border: 1px solid #040a0b63;
  width: max-content;
  border-radius: 8px;
  padding: 3px 10px;
  font-weight: normal;
}
#carname img {
  width: 190px !important;
  filter: brightness(0) invert();
  opacity: 0;
}
 .ht-input span {
     position: absolute;
     right: 9px;
     top: 9px;
     color: #acacac;
     font-size: 13px;
     transition: 0.3s;
     background-color: #fff;
     pointer-events: none;
     padding: 0px 3px;
}
 .ht-input {
     position: relative;
}
 .ht-input input {
     width: 100%;
     padding: 10px;
     margin-bottom: 10px;
     border: 1px solid #e3e3e3;
     border-radius: 4px;
     background-color: #fff;
}
 .submit {
     background-color: #00b0bc;
     border: none;
     border-radius: 4px;
     padding: 5px 10px;
     color: #fff;
     font-family: inherit;
     cursor: pointer;
}
 .ht-input input:focus + span,
.ht-input input:not(:placeholder-shown) + span {
     font-size: 9px;
     top: -7px;
     right: 6px;
}
 .ht-input input:focus {
     outline: none;
}
 .product-title::after {
     position: absolute;
     width: 3px;
     height: 65px;
     content: '';
     background-color: #00b0bc;
     top: 5px;
     border-radius: 10px;
     right: 0;
}
 .product-title{
     padding-right: 10px;
     position: relative;
}
 .breadcrumb.breadcrumb-products *{
     color:#000 !important 
}
 .product-sidebar {
     margin-top: 0px;
     height: max-content;
     position: sticky;
     top: 75px;
}
 .product-sidebar > div img {
     width: 15px;
     height: 15px;
     margin-bottom: -3px;
     margin-left: 5px;
     filter: brightness(0);
}
 .product-sidebar > div {
     padding-bottom: 14px;
     border-bottom: 1px solid #f0f0f0;
     padding-top: 13px;
}
 #product-section3 .col-8{
     box-shadow: -5px 18px 60px 0px rgba(210, 210, 234, 0.4);
}
 .product-sidebar > div:first-child{
     padding-top: 0;
}
 .carintro img {
     border-radius: 15px;
}
 .test-drive img, .get-cataloge img {
     width: 25px;
}
 .test-drive, .get-cataloge {
     display: flex;
     cursor: pointer;
     align-items: center;
     gap: 5px;
     margin-left: 20px;
     background-color: #00b0bc0f;
     padding: 10px 20px;
     border-radius: 12px;
     color: #008d97;
     border: 1px solid #a5dde1;
}
 .product-sidebar > div:last-child{
     border-bottom:none;
     padding-bottom: 0;
}
 #testdrivemodal,.notice-modal {
     background-color: #00000075;
     position: fixed;
     top: 0;
     right: 0;
     width: 100%;
     height: 100%;
     z-index: 999999999999;
     backdrop-filter: blur(5px);
     transition: 0.5s all;
     opacity: 0;
     visibility: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
}
 #testdrivemodal > div {
     background-color: #fff;
     border-radius: 25px;
}
 #testdrivemodal.open,.notice-modal.open{
     opacity: 1 !important;
     visibility: visible !important;
}
 .closemodal span {
     background-color: #33404a;
     font-size: 14px;
     line-height: 0px;
     padding: 0px 7px;
     border-radius: 100%;
     display: inline;
     cursor: pointer;
     color: #fff;
}
 .car-menu ul {
     list-style: none;
     display: flex;
     gap: 15px;
}
 .car-menu {
     background-color: #33404a;
     color: #fff;
     padding-top: 12px;
     margin-top: -8px;
     padding-bottom: 12px;
     z-index: 12;
     top: 66px;
     position: sticky;
}
 .car-table ul.featlist li span {
     font-size: 10px;
     height: 23px;
     width: 24px;
     margin-top: 5px;
}
 .car-table ul.featlist li {
     font-size: 14px;
}
 .car-colors span {
     width: 24px;
     height: 24px;
     margin: 0px 10px;
     display: inline-block;
     border-radius: 100%;
     border: 1px solid #0000002b;
}
 .car-colors span {
     margin-left: 0px;
}
 .car-menu a{
     color: #fff;
     padding: 10px;
}
 #overview,#specs,#buy,#features,#gallery {
     scroll-margin: 112px;
}
 .spec-list {
     display: flex;
     justify-content: space-between;
     padding: 6px 0px;
}
 .titles3::after {
     content: '';
     bottom: 5px;
     right: 50%;
     transform: translateX(50%);
     position: absolute;
     width: 130px;
     height: 2px;
     background: linear-gradient( to right, rgba(0, 0, 0, 0) 0%, #00b0bcb8 50%, rgba(0, 0, 0, 0) 100% );
}
 .titles3 {
     position: relative;
     padding-bottom: 20px;
}
 #announcements-section1{
     background-image: url('../../images/auto/announcements-2.jpg');
}

 .notices-wrapper {
     width: 100%;
     display: flex;
     flex-direction: column;
     gap: 8px;
     font-family: inherit;
}
 .notices-header {
     display: grid;
     grid-template-columns: 1fr 1fr 2fr auto;
     background: #e5e5e5;
     padding: 10px;
     border-radius: 8px;
     font-weight: bold;
}
 .notices-row {
     display: grid;
     grid-template-columns: 1fr 1fr 2fr auto;
     align-items: center;
     background: #f9f9f9;
     padding: 12px;
     border-radius: 8px;
     position: relative;
}
 .notices-row.alt {
     background: #f0f0f0;
}
 .notices-row .title {
     margin-right: 10px;
}
.notice-img{
    width: 80%;
  margin: auto;
  display: block;
  border-radius: 25px 25px 2px 2px;
}
 .download-btn {
     display: inline-block;
     padding: 6px 14px;
     background: #00b0bc;
     color: #fff;
     border-radius: 6px;
     text-decoration: none;
     font-size: 14px;
}
 .notices-header span:last-child {
     transform: translateX(11px);
}
 .download-btn:hover {
     opacity: 0.85;
}
 #aftersale-section1{
     background-image: url('../../images/auto/aftersale.jpg');
}
 #rules-section1{
     background-image: url('../../images/auto/policy.jpg');
     background-position: center;
}
 table {
     width: 100%;
     border-collapse: collapse;
     font-family: inherit;
     direction: rtl;
     text-align: right;
     background: #fff;
}
 table th, table td {
     padding: 10px 14px;
     border: 1px solid #e5e5e5;
     font-size: 14px;
     line-height: 1.6;
}
 table th {
     background: #f5f7fa;
     font-weight: bold;
}
 table tr:nth-child(even) td {
     background: #fafafa;
}
 table tr:hover td {
     background: #f0f8fa;
}
 .blog-cards.notice:hover .blog-cards-inner {
     margin-top: 0px;
     transition: 0.3s all;
}
 .blog-cards.notice {
     overflow: visible;
     margin-bottom: 60px;
}
 .blog-cards.notice .blog-cards-inner {
     margin-top: 0px;
}
 footer .row:first-child{
     padding-top: 40px !important;
     padding-bottom: 60px !important;
}
 .blog-cards.notice .blog-cards-read {
     padding: 3px 9px;
     transition: 0.3s;
}
 .blog-cards.notice .blog-cards-cat {
     color: #33404a;
}
 .blog-cards.notice .blog-cards-read:hover {
     border-radius: 20px;
     opacity: 0.8;
}
 .blog-cards.notice {
     border: none;
}
 .blog-cards.notice {
     box-shadow: -5px 5px 30px 0px rgba(210, 210, 234, 0.52)
}
 .notice-modal-inner {
     overflow-y: scroll;
     scrollbar-width: none;
     max-height: 80vh;
}
 #specs {
     background-color: var(--secondary-c);
     margin-top: 40px;
}
 .specicon{
     width: 18px;
     margin-bottom: -3px;
     margin-left: 10px;
}
    #myCanvas{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        opacity: 1;
    }
    #hero-img{
        transition: 2s all;
    }
    #carname h1{
        font-size: 2.3rem;
        font-weight: normal;
    }
    #carname span{
        display: inline-block;
    }
    #carImage{
        transition: 1s all;
    }
    .features {
  background-color: var(--secondary-c);
  border-radius: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

    .car-colors span{
        cursor: pointer;
    }
    .img-title::after {
     height: 170px;
     width: 100%;
     content: '';
     bottom: 8px;
     right: 0;
     background: linear-gradient( to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100% );
     position: absolute;
     z-index: 0;
}
 .img-title {
     position: relative;
     z-index: 1;
}
 .img-title > div {
     position: absolute;
     bottom: 20px;
     right: 30px;
     z-index: 1;
     font-size: 30px;
}
.hero-img {
  position: absolute;
  opacity: 0.3;
}
.product-sidebar .d-flex.justify-between.align-center span:first-child {
  font-weight: bold;
  font-size: 13px;
}
    #product-section1 img{
width: 100%;
  object-fit: cover;
  height: 100%;
    }
    #product-section1 {
  position: relative;
  height: 100vh;
  background-color: #000;
}
#carname {
  position: absolute;
  color: #fff;
  bottom: 0px;
  text-align: left;
  padding: 30px 30px;
  width: 100%;
  background: linear-gradient( to top, #00000061 50%, rgba(0, 0, 0, 0) 100% )
}
#product-section1::after {
  width: 100%;
  height: 200px;
  position: absolute;
  content: '';
  background: linear-gradient( to bottom, #00000063 50%, rgba(0, 0, 0, 0) 100% );
  top: 0;
  right: 0;
}
   #performance{
        background-color: var(--secondary-c);
    }
  .swiper {
    width: 100%;
  }
  .slide1 {
  border-radius: 0px 12px 12px 0px;
      direction: ltr;
      border-radius: 12px 0px 0px 12px;
}

  .swiper-slide{
    aspect-ratio: 16 / 9; 
  }
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  .feat1inner li {
  list-style: none;
  margin-bottom: 16px;
  text-align: center;
}
 .swiper-slide p {
  position: absolute;
  bottom: -30px;
  left: 50%;
  color: white;
  background: rgba(51, 64, 74, 0.8);
  padding: 7px 15px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
}
.features {
  background-color: var(--secondary-c);
  border-radius: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
  .swiper-button-prev-custom {
  background-color: #33404a3d;
  width: 44px;
  height: 43px;
  border-radius: 100%;
  font-size: 28px;
  color: #33404a;
  cursor: pointer;
}
.swiper-button-next-custom {
  background-color: #33404a3d;
  width: 44px;
  height: 43px;
  transform: rotate(180deg);
  border-radius: 100%;
  font-size: 28px;
  color: #33404a;
  cursor: pointer;
}

.feat1inner {
  background-color: #0000006e;
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 50px 20px;
  border-radius: 20px;
}
    #myCanvas{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        opacity: 1;
    }
    #hero-img{
        transition: 2s all;
    }
    #carname h1{
        font-size: 2.3rem;
        font-weight: normal;
    }
    #carname span{
        display: inline-block;
    }
    #carImage{
        transition: 1s all;
    }
    .car-colors span{
        cursor: pointer;
    }
    .img-title::after {
     height: 170px;
     width: 100%;
     content: '';
     bottom: 8px;
     right: 0;
     background: linear-gradient( to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100% );
     position: absolute;
     z-index: 0;
}
 .img-title {
     position: relative;
     z-index: 1;
     width: 100%;
}
 .img-title > div {
     position: absolute;
     bottom: 20px;
     right: 30px;
     z-index: 1;
     font-size: 30px;
}
.hero-img {
  position: absolute;
  opacity: 0.3;
}
.product-sidebar .d-flex.justify-between.align-center span:first-child {
  font-weight: bold;
  font-size: 13px;
}
.loader2 {
    width: 28px;
    height: 28px;
    border: 2px solid #FFF;
    border-bottom-color: #00b0bc;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 0.5s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 
#loading {
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  position: fixed;
  background-color: #fff;
  z-index: 999;
  transition: 0.5s all;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
#comments #name,#comments #comment,#comments #email {
  font-family: kalameh;
  font-size: 13px;
  padding: 4px 5px;
  border: 1px solid #cacaca;
  border-radius: 5px;
}
#loading img {
  width: 210px;
}
#loading img,#loading div{
    animation: fadeIn 0.5s ease-in-out;
}
.site-loader{
    width: 80px !important;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }   
}
.site-loader,#loading p {
  animation: fadeIn 0.5s ease-in-out;
}
.closemodal img {
  width: 25px;
  height: 25px;
  background-color: #e4e4e4;
  border-radius: 50%;
  padding: 2px;
  cursor: pointer;
}


/**** CRICITAL START ****/
.test-drive{
    display: none;
}
/*** CRICITAL END ****/


#sale-section2 {
  padding-bottom: 70px;
}
#sale-section2 ul li {
  margin-bottom: 10px;
}
#sale-section2 ul {
  margin-top: 20px;
  padding-right: 30px;
}
.slide1{
    margin-right: -10px;
}
.slide2{
    margin-left: -10px;
}








































 @media (min-width: 993px) {
     .hide-on-lg{
         display: none;
    }
     .main-menu a:hover::before {
         content: '';
         position: absolute;
         bottom: -24px;
         left: 50%;
         transform: translateX(-50%);
         background-color: #00b0bc;
         width: 6px;
         height: 6px;
         border-radius: 100%;
         transition: 0.3s;
         opacity: 1;
         z-index: 99;
    }
     footer > div > div > div {
         padding-bottom: 15px !important;
         padding-top: 5px !important;
    }
     .main-menu a.active:hover::before {
         bottom: 6px;
    }
     .main-menu a::before {
         transition: 0.3s;
         content: '';
         position: absolute;
         bottom: -24px;
         left: 50%;
         transform: translateX(-50%);
         background-color: #00b0bc;
         width: 0px;
         height: 0px;
         border-radius: 100%;
         transition: 0.3s;
         opacity: 0;
    }
    .prods-inner {
  padding-top: 25px;
}
}
 @media (max-width: 992px) {
     .login a {
         font-size: 11px;
         font-weight: normal;
         padding: 2px 7px;
         line-height: 19px;
    }
     .no-md-mb{
         margin-bottom: 0;
    }
     .product-sidebar {
         position: relative;
         top: 0;
    }
     .hide-on-sm,.hide-on-md{
         display: none !important;
    }
     .main-menu {
         display: flex;
         gap: 25px;
         flex-direction: column;
         width: 100%;
         height: 100%;
         position: fixed;
         top: 0;
         right: 0;
         background-color: #0000008a;
         backdrop-filter: blur(0px);
         color: #fff;
         align-items: center;
         list-style: none;
         justify-content: center;
         font-size: 20px;
         opacity: 0;
         visibility: hidden;
         transition: all 0.4s;
    }
     #product-section3 > div > div > div:first-child{
         order:2;
    }
     #product-section3 .row.justify-between {
         justify-content: center;
    }
     .car-menu {
         top: 66px;
    }
     .main-menu > li > a {
         color: #fff !important;
    }
     .the-menu.cross *{
         background-color: #fff !important;
    }
     .sub-menu {
         background-color: #fff;
    }
     .prods-inner img {
         width: 100%;
         margin: auto;
    }
     .main-menu.opened-menu {
         top: 0;
         opacity: 1;
         visibility: visible;
         backdrop-filter: blur(10px);
         transition: 0.4s;
    }
     #products {
         z-index: 10;
         height: 100%;
    }
     .prods-head {
         position: absolute;
         width: 100%;
         top: 0;
         right: 0;
         z-index: 1;
    }
     #products > .container-fluid > div {
         height: 100vh;
         overflow-y: scroll;
         scrollbar-width: none;
    }
     .main-menu a.active::after {
         transform: translateY(-50%);
         top: 50%;
         right: -15px;
         background-color: #00b0bc !important;
    }
     .scroll-horizontally {
         white-space: nowrap !important;
         overflow-x: auto;
         overflow-y: hidden;
         -webkit-overflow-scrolling: touch;
         scroll-snap-type: block;
         padding: 10px;
         display: block;
         margin-left: 0px;
         scrollbar-width: none;
         margin-right: -20px;
         padding-right: 30px;
         margin-left: -6px;
    }
     .scroll-horizontally > div {
         display: inline-block !important;
         vertical-align: top;
         width: 65%;
         margin-inline-end: 1rem;
         scroll-snap-align: start;
    }
     .blog-cards-excerp {
         font-size: 12px;
         height: auto;
    }
     .blog-cards-title.mb-1 {
         font-size: 13px;
         height: auto;
         margin-bottom: 20px;
    }
    .blog-cards-inner h2 > span {
  display: block;
  font-weight: normal;
  font-size: 13px;
  margin-top: 2px;
}
     .copyright > div, .copyright ul {
         justify-content: center;
    }
     .copyright img{
         margin-top: 10px;
    }
     .copyright span, .copyright *{
         font-size: 10px;
    }
     .copyright > span {
         text-align: center;
         display: block;
        margin: auto;
    }
     footer .footer-widget-4{
         order: 1;
         align-items: center;
         border-bottom: 1px solid #ffffff14;
         padding-bottom: 20px;
         margin-top: -20px;
    }
     footer .footer-widget-3,footer .footer-widget-2,footer .footer-widget-1{
         order:2 
    }
     .prods-inner {
    padding-top: 55px;
  }
}
 @media (max-width: 768px) {
    .container {
  padding: 0px 6px;
}
.home-ccards-detail span {
  font-size: 11px !important;
}
    .prods-inner {
        padding-top: 90px;
        padding-bottom: 140px;
    }
     .underlay-head {
         height: 55px;
    }
     #products {
         height: 100vh;
    }
     .prods-inner > div {
         margin-bottom: 35px;
    }
     nav img.header-logo {
         width: 90px;
    }
     .hide-on-sm{
         display: none !important;
    }
     .home-ccards {
         font-size: 12px;
    }
     .home-ccards-model-desc {
         margin-bottom: 0;
    }
     footer .footer-widget-3, footer .footer-widget-2, footer .footer-widget-1 {
         text-align: center;
         justify-content: center;
    }
     .footimg{
         display: none;
    }
     .home-ccards-cta a {
         font-size: 11px;
    }
    .test-drive, .get-cataloge {
  padding: 7px 7px;
}
.car-table .col-4.col-md-6:nth-child(2) {
         margin-top: -20px;
         order:3
    }
    .car-table .col-4.col-md-6:nth-child(3) {
         margin-top: -20px;
    }
    .swiper-button-prev-custom,.swiper-button-next-custom {
 width: 24px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
#home-section4 {
  background-image: url('../static/images/auto/bg.svg');
  background-size: auto;
  background-repeat: no-repeat;
  background-position: top;
}
#about-section5 {
  background-position: 60%;
}
 header {
     padding: 3px 10px;
 }
 .breadcrumb-desc::after {
  height: 80%;
}
#rules-section2 tbody * {
    font-size: 13px; 
}
#aftersale-features > div {
  margin-bottom: 30px !important;
}
.row.prods-inner {
  justify-content: center;
}
.prods-inner a {
  margin: 5px auto 0 auto;
}
.home-ccards-detail img {
  width: 12px;
  }
   .car-menu {
         top: 55px;
    }
}
 