a {
  display: inline-block;
}

.butn-st2 {
  position: relative;
  border-radius: 10px;
  border-width: 2px !important;
  font-weight: 600;
  padding: 15px 30px;
}
.butn-st2:hover {
  border-width: 2px !important;
}

.navs-container {
  position: relative;
  z-index: 999;
}

.navs-container .zi-5 {
    position: relative;
    z-index: 999;
}

.navs-container .navbar .nav-link {
    font-size: 13px;
    font-weight: 500;
}

.navs-container .navbar {
  padding: 15px 0;
}
.navs-container .navbar .logo {
  height: 90px;
}
.navs-container .dropdown-menu {
  top: calc(100% + 44px);
  background-color: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0666666667);
  padding: 30px 30px 15px;
  min-width: 350px;
  max-width: 100vw;
}
.navs-container .dropdown-menu h5 {
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(33, 59, 141, 0.0666666667);
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 17px;
  font-weight: bold;
}
.navs-container .dropdown-menu .menu-list li .link-item {
  position: relative;
  width: 100%;
  padding: 15px;
  display: inline-block;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
.navs-container .dropdown-menu .menu-list li .link-item:hover {
  background-color: rgba(33, 59, 141, 0.0666666667);
}
.navs-container .sections-menu-wrapper {
  position: absolute;
  right: 0;
  top: calc(100% + 1px);
  width: 100%;
  z-index: 99;
  opacity: 0;
  /*visibility: hidden;*/
  display: none;
  transform: translateY(-50px);
  transition: all 0.2s ease;
}
.navs-container .sections-menu-wrapper.show {
  opacity: 1;
  /*visibility: visible;*/
  display: block;
  transform: translateY(0);
}
.navs-container .sections-menu-wrapper .scroll-box {
  max-height: 280px;
  overflow-x: hidden;
  overflow-y: auto;
}
.navs-container .sections-menu-wrapper .scroll-box::-webkit-scrollbar {
  width: 3px;
}
.navs-container .sections-menu-wrapper .menu-box {
  position: relative;
  z-index: 10;
}
.navs-container .sections-menu-wrapper .menu-box .row > .col-lg-4 {
  position: relative;
  z-index: 10;
}
.navs-container .sections-menu-wrapper .menu-box .row > .col-lg-8 {
  position: relative;
  z-index: 1;
}
.navs-container .sections-menu-wrapper .menu-box .sections-menu {
  background-color: #fff;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0666666667);
  padding: 30px 30px 15px;
  min-height: 100%;
}
.navs-container .sections-menu-wrapper .menu-box .sections-menu h5 {
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(33, 59, 141, 0.0666666667);
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 17px;
  font-weight: bold;
}
.navs-container .sections-menu-wrapper .menu-box .sections-menu .menu-list li .link-item {
  position: relative;
  width: 100%;
  padding: 15px;
  display: inline-block;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
.navs-container .sections-menu-wrapper .menu-box .sections-menu .menu-list li .link-item::after {
  position: absolute;
  content: "\F284";
  font-family: "Bootstrap-icons";
  
  font-weight: 300;
  font-size: 14px;
  top: 18px;
  left: 7px;
}
.navs-container .sections-menu-wrapper .menu-box .sections-menu .menu-list li .link-item:hover {
  background-color: rgba(33, 59, 141, 0.0666666667);
}
.navs-container .sections-menu-wrapper .submenu-box {
  position: relative;
  background-color: #fff;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.0666666667);
  padding: 30px;
  padding-bottom: 100px;
  z-index: 1;
  height: 100%;
  border-inline-start: 2px solid rgba(153, 153, 153, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100px);
  transition: all 0.5s ease;
}
.navs-container .sections-menu-wrapper .submenu-box.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.navs-container .sections-menu-wrapper .submenu-box .butn {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.navs-container .sections-menu-wrapper .submenu-box .cls {
  position: absolute;
  left: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 20;
  color: var(--primary);
  font-size: 17px;
}
.navs-container .sections-menu-wrapper .submenu-box .sub-sec-menu h5 {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  color: var(--primary);
  font-size: 16px;
  font-weight: bold;
}
.navs-container .sections-menu-wrapper .submenu-box .sub-sec-menu .menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.navs-container .sections-menu-wrapper .submenu-box .sub-sec-menu .menu-list li {
  position: relative;
  width: calc(33% - 15px);
}
.navs-container .sections-menu-wrapper .submenu-box .sub-sec-menu .menu-list li .sub-link {
  position: relative;
  padding: 15px 30px;
  border-radius: 8px;
  background-color: rgba(33, 59, 141, 0.0352941176);
  border: 1px solid rgba(33, 59, 141, 0.0666666667);
  font-size: 13px;
  font-weight: bold;
  display: block;
}
.navs-container .sections-menu-wrapper .submenu-box .sub-sec-menu .menu-list li .sub-link::after {
  position: absolute;
  content: "\F284";
  font-family: "Bootstrap-icons";
  font-weight: 300;
  font-size: 14px;
  top: 15px;
  left: 15px;
}
.navs-container .sections-menu-wrapper .submenu-box .sub-sec-menu .menu-list li .sub-link:hover {
  background-color: var(--primary);
  color: #fff !important;
}
.navs-container .sections-menu-wrapper .brand-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.0666666667);
  border-inline-start: 2px solid rgba(153, 153, 153, 0.2);
  padding: 30px;
  padding-bottom: 100px;
  z-index: 2;
  height: 100%;
  min-height: -moz-max-content;
  min-height: max-content;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100px);
  transition: all 0.5s ease;
  background-color: #fff;
}
.navs-container .sections-menu-wrapper .brand-box.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.navs-container .sections-menu-wrapper .brand-box .butn {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.navs-container .sections-menu-wrapper .brand-box .cls {
  position: absolute;
  left: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 20;
  color: var(--primary);
  font-size: 17px;
}
.navs-container .sections-menu-wrapper .brand-box h5 {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  color: var(--primary);
  font-size: 16px;
  font-weight: bold;
}
.navs-container .sections-menu-wrapper .brand-box .brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.navs-container .sections-menu-wrapper .brand-box .brand-list .brand {
  position: relative;
  width: 118px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 10px;
  z-index: 20;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.navs-container .sections-menu-wrapper .brand-box .brand-list .brand img {
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 70%;
}
.navs-container .sections-menu-wrapper .brand-box .brand-list .brand:hover {
  border: 1px solid var(--primary);
}
.navs-container .sections-menu-wrapper .car-type {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.0666666667);
  border-inline-start: 2px solid rgba(153, 153, 153, 0.2);
  padding: 30px;
  padding-bottom: 100px;
  z-index: 3;
  height: 100%;
  min-height: -moz-max-content;
  min-height: max-content;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100px);
  transition: all 0.5s ease;
  background-color: #fff;
}
.navs-container .sections-menu-wrapper .car-type.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.navs-container .sections-menu-wrapper .car-type .butn {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.navs-container .sections-menu-wrapper .car-type .cls {
  position: absolute;
  left: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 20;
  color: var(--primary);
  font-size: 17px;
}
.navs-container .sections-menu-wrapper .car-type .sub-sec-menu h5 {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  color: var(--primary);
  font-size: 16px;
  font-weight: bold;
}
.navs-container .sections-menu-wrapper .car-type .sub-sec-menu .menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.navs-container .sections-menu-wrapper .car-type .sub-sec-menu .menu-list li {
  position: relative;
  width: calc(33% - 15px);
}
.navs-container .sections-menu-wrapper .car-type .sub-sec-menu .menu-list li .sub-link {
  position: relative;
  padding: 15px 30px;
  border-radius: 8px;
  background-color: rgba(33, 59, 141, 0.0352941176);
  border: 1px solid rgba(33, 59, 141, 0.0666666667);
  font-size: 13px;
  font-weight: bold;
  display: block;
}
.navs-container .sections-menu-wrapper .car-type .sub-sec-menu .menu-list li .sub-link::after {
  position: absolute;
  content: "\f060";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 14px;
  top: 15px;
  left: 15px;
}
.navs-container .sections-menu-wrapper .car-type .sub-sec-menu .menu-list li .sub-link:hover {
  background-color: var(--primary);
  color: #fff !important;
}
.navs-container .sections-menu-wrapper .years-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.0666666667);
  border-inline-start: 2px solid rgba(153, 153, 153, 0.2);
  padding: 30px;
  padding-bottom: 100px;
  z-index: 4;
  height: 100%;
  min-height: -moz-max-content;
  min-height: max-content;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100px);
  transition: all 0.5s ease;
  background-color: #fff;
}
.navs-container .sections-menu-wrapper .years-box.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.navs-container .sections-menu-wrapper .years-box .butn {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.navs-container .sections-menu-wrapper .years-box .cls {
  position: absolute;
  left: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 20;
  color: var(--primary);
  font-size: 17px;
}
.navs-container .sections-menu-wrapper .years-box .sub-sec-menu h5 {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  color: var(--primary);
  font-size: 16px;
  font-weight: bold;
}
.navs-container .sections-menu-wrapper .years-box .sub-sec-menu .menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.navs-container .sections-menu-wrapper .years-box .sub-sec-menu .menu-list li {
  position: relative;
  width: calc(33% - 15px);
}
.navs-container .sections-menu-wrapper .years-box .sub-sec-menu .menu-list li .sub-link {
  position: relative;
  padding: 15px 30px;
  border-radius: 8px;
  background-color: rgba(33, 59, 141, 0.0352941176);
  border: 1px solid rgba(33, 59, 141, 0.0666666667);
  font-size: 13px;
  font-weight: bold;
  display: block;
}
.navs-container .sections-menu-wrapper .years-box .sub-sec-menu .menu-list li .sub-link::after {
  position: absolute;
  content: "\f060";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 14px;
  top: 15px;
  left: 15px;
}
.navs-container .sections-menu-wrapper .years-box .sub-sec-menu .menu-list li .sub-link:hover {
  background-color: var(--primary);
  color: #fff !important;
}
.navs-container .sections-menu-wrapper .sub-menu-layers {
  position: relative;
  min-height: 100%;
  height: 480px;
}

.header2 {
  position: relative;
  padding-bottom: 70px;
  z-index: 20;
}
.header2 .search-wrapper {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid rgba(153, 153, 153, 0.3333333333);
}
.header2 .search-wrapper .form-group {
  position: relative;
  display: flex;
}
.header2 .search-wrapper .form-group .icon {
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 20;
  font-size: 20px;
  color: var(--primary);
}
.header2 .search-wrapper .form-group .form-control {
  position: relative;
  background-color: #F2F4F8;
  border: 0;
  border-radius: 8px;
  min-height: 60px;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  box-shadow: none;
  padding-inline-start: 50px;
  color: var(--primary);
}
.header2 .search-wrapper .form-group .form-control::-moz-placeholder {
  color: var(--primary);
}
.header2 .search-wrapper .form-group .form-control::placeholder {
  color: var(--primary);
}
.header2 .search-wrapper .form-group .butn {
  position: relative;
  border-radius: 8px;
  margin-inline-start: 15px;
  flex-shrink: 0;
  padding: 15px 50px;
  font-size: 20px;
  font-weight: 500;
}
.header2 img {
  max-width: 100%;
  max-height: 100%;
  width:100%;
}
.header2 .car-img {
  position: relative;
  margin-top: -150px;
}
.header2 .car-img .float-card {
  position: absolute;
  top: 0;
  right: 0;
}
.header2 .car-img .float-card .icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
}
.header2 .car-img .float-card .icon:hover ~ .cont {
  opacity: 1;
  visibility: visible;
}
.header2 .car-img .float-card .cont {
  background-color: rgba(0, 0, 0, 0.5333333333);
  border-radius: 20px;
  padding: 20px;
  color: #fff;
  width: 300px;
  margin-inline-start: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.header2 .car-img .float-card .cont h6 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}
.header2 .car-img .float-card .cont .text {
  font-size: 12px;
}
.header2 .head-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  bottom: -180px;
  pointer-events: none;
}
.header2.header-st3 {
  padding-bottom: 0;
}
.header2.header-st3 .info {
  text-align: center;
}
.header2.header-st3 .car-img {
    position: relative;
  margin-top: 70px;
  margin-bottom: -80px;
  filter: drop-shadow(-10px 20px 20px rgba(0, 0, 0, 0.6));
  direction: rtl;
}

.brand-st2 {
  position: relative;
  background-color: #E9ECF4;
}
.brand-st2 .brand {
  position: relative;
width: 200px;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
/*background-color: #fff;*/
border-radius: 50%;
margin: 10px auto;
background-image: url(../images/new_imgs/brand-bg7.png);
background-size: 100%;
background-position: center;
background-repeat: no-repeat;
z-index: 20;
}
.brand-st2 .brand::after {
    position: absolute;
    content: "";
    left: 20px;
    top: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 50%;
    background-color: #fff;
    z-index: -1;
}
.brand-st2 .brand img {
  height: 70px;
  max-width: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.brand-st2 .brands-slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 70px;
  z-index: 99;
}

.swiper-pagination-st2 {
  bottom: 0;
}
.swiper-pagination-st2 .swiper-pagination-bullet {
  background-color: #213B8D;
}

.swiper-button-prev.st2,
.swiper-button-next.st2 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.0666666667);
  background-color: #fff;
  background-size: 10px !important;
  /*background-image: none;*/
  transition: all 0.3s ease;
  top: calc(50% - 30px);
  border: 1px solid transparent;
  background-blend-mode: luminosity;
}
/*.swiper-button-prev.st2::after,*/
/*.swiper-button-next.st2::after {*/
/*  position: absolute;*/
/*  content: "\f053";*/
/*  font-family: "Font Awesome 6 Pro";*/
/*  left: 50%;*/
/*  top: 50%;*/
/*  transform: translate(-50%, -50%);*/
/*}*/

.swiper-button-prev.st2:hover,
.swiper-button-next.st2:hover {
  background-color: #f0f0f0;
  border-color: var(--primary);
  /*background-blend-mode: lighten;*/
}

/*.swiper-button-prev.st2:hover::after,*/
/*.swiper-button-next.st2:hover::after {*/
/*  color: #fff;*/
/*}*/

/*.swiper-button-next.st2::after {*/
/*  content: "\f054";*/
/*}*/

.swiper-button-prev.st2 {
  left: 3vw;
}

.swiper-button-next.st2 {
  right: 3vw;
}

.search-filter-st2 {
  position: relative;
  background-color: #E9ECF4;
}
.search-filter-st2 .form-filter {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.search-filter-st2 .form-filter .form-group {
  position: relative;
  flex-grow: 1;
  margin-top: 20px;
}
.search-filter-st2 .form-filter .form-group h6 {
  font-weight: bold;
  margin-bottom: 15px;
}
.search-filter-st2 .form-filter .form-group .form-control {
  position: relative;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  min-height: 50px;
  box-shadow: none;
}
.search-filter-st2 .form-filter .butn {
  padding: 13px 50px;
}

.products-st2 .products-slider {
  position: relative;
  padding-bottom: 60px;
  overflow: hidden;
}

.products-st2.bg-light1 .br-left-top path,
.products-st2.bg-light1 .br-right-btm path{
    fill: #edf0f6;
}

.products-slider .swiper-slide {
    height: auto;
}

.product-card-st2 {
  position: relative;
  margin: 10px;
  margin-top: 30px;
  box-shadow: 0px 7.66316px 22.9895px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.product-card-st2 .img {
  position: relative;
  height: 330px;
  display: block;
}
.product-card-st2 .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card-st2 .info {
  position: relative;
  padding-top: 10px;
}
.product-card-st2 .info .title {
  font-size: 25px;
  min-height: 70px;
  line-height: 1.4;
}
.product-card-st2 .info .price-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.product-card-st2 .info .price-wrapper .price {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
}
.product-card-st2 .info .price-wrapper .icon-btn {
  position: relative;
  padding: 8px 20px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
}
.product-card-st2 .info .price-wrapper .icon-btn .icon {
  width: 25px;
  height: 25px;
  margin-inline-end: 6px;
  flex-shrink: 0;
  display: inline-block;
}
.product-card-st2 .info .price-wrapper .icon-btn:hover {
  background-color: #000;
  color: #fff !important;
}
.product-card-st2 .float-icons {
  position: absolute;
  right: 10px;
  top: 10px;
}
.product-card-st2 .float-icons a {
  font-size: 16px;
  color: var(--primary);
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.0274509804);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-st2 .float-icons a:hover {
  background-color: var(--primary);
  color: #fff !important;
}

.bg-light1 {
  background-color: #edf0f6;
}

.product-card-st3 {
  position: relative;
  background-color: #edf0f6;
  padding: 10px;
  border-radius: 15px;
  margin: 10px;
  margin-top: 30px;
  height: calc(100% - 30px);
}
.product-card-st3 .img {
  display: flex;
  height: 230px;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  align-items: center;
  justify-content: center;
}
.product-card-st3 .img img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card-st3 .info {
  position: relative;
  padding: 30px 10px;
}
.product-card-st3 .title {
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 20px;

}
.product-card-st3 .title a {
    display: block;
    /*white-space: nowrap;*/
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-st3 .price-wrapper small {
  position: relative;
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 10px;
  display: inline-block;
}
.product-card-st3 .price {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
}
.product-card-st3 .float-icons {
  position: absolute;
  right: 20px;
  top: 20px;
}
.product-card-st3 .float-icons a {
  font-size: 16px;
  color: var(--primary);
  background-color: #f1f4fa;
  border-radius: 6px;
  margin: 3px;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-st3 .float-icons a:hover,
.product-card-st3 .float-icons a.active{
  background-color: var(--primary) !important;
  color: #fff !important;
}
.product-card-st3 .cart-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-top-right-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-st3 .cart-box .br-left-top {
  position: absolute;
  top: -24px;
  left: -1px;
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
}
.product-card-st3 .cart-box .br-right-btm {
  position: absolute;
  bottom: 0px;
  right: -23px;
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
}
.product-card-st3 .cart-box .cart-link {
  position: relative;
  width: 65px;
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff !important;
  font-size: 20px;
  box-shadow: -10px 10px 30px rgba(33, 59, 141, 0.2666666667);
}
.product-card-st3 .cart-box .cart-link:hover {
  background-color: #000;
  box-shadow: -10px 10px 30px rgba(33, 59, 141, 0.6);
}
.product-card-st3.light-card {
  background-color: #fff;
}
.product-card-st3.light-card .img {
  background-color: #edf0f6;
}
.product-card-st3.light-card .cart-box {
  background-color: #edf0f6;
}
.product-card-st3.light-card .float-icons a {
  background-color: #fff;
}

.rt-90 {
  transform: rotate(90deg);
}

.slider-content {
  position: relative;
}

.banner-st2 .banner {
  position: relative;
  /*min-height: 450px;*/ /*COMMENTED*/
  background-color: #26323E;
}
.banner-st2 .banner .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
.banner-st2 .banner .info {
  position: relative;
  z-index: 20;
  padding: 100px 40px;
  color: #fff;
}

.banner-st2.banner-st3 .banner {
    border-radius: 30px;
    overflow: hidden;
}

.banner-st2 .banner .info .title {
  position: relative;
  font-size: 40px;
  font-weight: bold;
}
.banner-st2 .banner .info .text {
  font-size: 20px;
  margin-top: 15px;
}
.banner-st2.banner-st3 .banner {
  border-radius: 30px;
  overflow: hidden;
}

.clients-st2 {
  position: relative;
}
.clients-st2 .clients-slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
  text-align: center;
}
.clients-st2 .client {
  position: relative;
  display: block;
}
.clients-st2 img {
  height: 70px;
  max-width: 150px;
  object-fit: contain;
}
/*# sourceMappingURL=new_style.css.map */

/*--------28/10-------*/
.modal-car-type .modal-content .btn-close,
.modal-car-year .modal-content .btn-close {
    position: absolute;
    right: auto;
    left: 20px;
    top: 40px;
}
.car-type-checks,
.car-year-checks {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.car-type-checks .form-check-label {
    width: 150px;
    height: 120px;
    border-radius: 10px;
    background-color: #f5f5f5;
    padding: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid transparent;
    text-align: center;
    margin-bottom: 24px;
}

.car-type-checks .form-check-label img {
    height: 45px;
}

.car-type-checks .form-check-label:hover,
.car-year-checks .form-check-label:hover {
    border-color: var(--primary);
}
.car-type-checks .form-check-input:checked ~ .form-check-label,
.car-year-checks .form-check-input:checked ~ .form-check-label {
    border-color: var(--primary);
}
.car-type-checks .form-check-input,
.car-year-checks .form-check-input {
    display: none;
}
.car-year-checks .form-check-label {
    width: 150px;
    height: 50px;
    white-space: nowrap;
    min-width: max-content;
    border-radius: 10px;
    background-color: #f5f5f5;
    padding: 15px 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid transparent;
    text-align: center;
    font-weight: bold;
    margin: 5px 0;
}
img {
    max-width: 100%;
    max-height: 100%;
}


/*14/11 */

.navs-container .navbar .nav-link {
    font-size: 11px;
    margin: 0;
}


@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1200px;
    }
}


@media (min-width: 1400px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1420px;
    }
    .navs-container .navbar .nav-link {
        font-size: 11px;
        margin: 0;
        padding: 10px 5px;
    }
}


.pagination-wrapper .pagination .page-numbers {
    margin: 0 0 50px !important;
}



.whyUs_sec .choice_card {
  border: 5px solid #EDF0F6;
  padding: 10px;
  background-color: #EDF0F6;
  border-radius: 25px;
  height: calc(100% - 25px);
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
  display: block;
}
.whyUs_sec .choice_card::before {
  width: 100%;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 0;
  transition: all 0.3s linear;
  background-color: #95a6dd;
  border-radius: 25px;
}
.whyUs_sec .choice_card:hover::before {
  height: 100%;
}
.whyUs_sec .choice_card:hover .title {
  color: var(--primary);
}
.whyUs_sec .choice_card .img_box {
  border-radius: 25px;
  background-color: #fff;
  height: 200px;
  position: relative;
  z-index: 5;
}
.whyUs_sec .choice_card .img_box .sec-img {
  -o-object-fit: contain;
     object-fit: contain;
}
.whyUs_sec .choice_card .title {
  font-size: 14px;
  color: #555;
  font-weight: bold;
  padding-inline: 25px;
  text-align: center;
  padding-top: 20px;
  position: relative;
  z-index: 5;
  transition: all 0.3s linear;
}
.whyUs_sec .item {
  border-radius: 45px 0;
  padding: 20px 15px;
  padding-top: 0;
  position: relative;
  border: 5px solid #EDF0F6;
  margin-bottom: 35px;
  height: calc(100% - 35px);
  transition: all 0.3s linear;
  border-radius: 10px;
}
.whyUs_sec .item .icon_box {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px 0;
  background-color: #EDF0F6;
  margin-inline-end: 15px;
  color: var(--primary);
  font-size: 20px;
  margin: -27px auto 10px auto;
  transition: all 0.3s linear;
}
.whyUs_sec .item .title {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 0;
}
.whyUs_sec .item:hover {
  border-color: #95a6dd;
  color: var(--primary);
}
.whyUs_sec .item:hover .icon_box {
  background-color: #95a6dd;
  color: #fff;
}


.main-sections-page .step-pages ,
.main-sections-page .step-pages .card ,
.sub-sections-page .step-pages ,
.sub-sections-page .step-pages .card {
    height: 100%;
    display: block;
}

.main-sections-page .step-pages .card  .card-body ,
.sub-sections-page .step-pages .card  .card-body {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media(max-width:992px)
{
    
    .navs-container .sections-menu-wrapper {
        position: absolute;
        right: 0;
        top: 225px;
        background-color: #fff;
        width: 100%;
        z-index: 99999;
    }
    
    .navs-container .sections-menu-wrapper .menu-box .sections-menu {
        padding: 20px 15px;
    }
    
    /*.navs-container .sections-menu-wrapper .menu-box .col-lg-8 {*/
    /*    position: absolute !important;*/
    /*    top: 0;*/
    /*    width: 100%;*/
    /*    z-index: 9999 !important;*/
    /*}*/
    
    .navs-container .sections-menu-wrapper .submenu-box .sub-sec-menu .menu-list li {
        width: calc(100% - 15px);
    }
    
    .navs-container .sections-menu-wrapper .brand-box .brand-list .brand {
        width: calc(50% - 15px);
    }
    
    .navs-container .sections-menu-wrapper .car-type .sub-sec-menu .menu-list li {
        width: calc(100% - 15px);
    }
    
    .navs-container .sections-menu-wrapper .years-box .sub-sec-menu .menu-list li {
        width: calc(50% - 15px);
    }
    
    .product-card-st3 {
        margin: 10px 30px;
    }
    
    .navs-container .navbar {
        /*padding: 0;*/
    }
    
    .navs-container .navbar .container {
        flex-direction: row-reverse;
    }
    
    .footer .foot_links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer .copyright_p {
        text-align: center;
    }
    
    .header2 .head-line {
        bottom: -80px;
    }
    
    .brand-st2 .brand {
        width: 160px;
        height: 160px;
    }
    
    .header2 .search-wrapper .form-group .butn {
        padding: 15px 30px;
        font-size: 15px;
    }
    
    .header2 .search-wrapper .form-group .form-control {
        font-size: 15px;
    }
    
    
    .main-sections-page .step-pages .card  .card-title ,
    .sub-sections-page .step-pages .card  .card-title  {
        font-size: 12px;
        margin-bottom: 0;
    }

}

@media screen and (max-width: 991px) {
  .header-st3 .header_swiper .img {
    height: 165px;
  }
  .brand-st3 .brand {
    height: 85px;
    width: 85px;
  }
  .brand-st3 .brand img {
    height: 35px;
  }
  .product-card-st3 {
    margin: 0;
    margin-bottom: 25px;
  }
  .product-card-st3 .img {
    height: 130px;
  }
  .product-card-st3 .float-icons a {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }
  .product-card-st3 .title {
    font-size: 13px;
    min-height: 55px;
    overflow: hidden;
  }
  .product-card-st3 .title a {
        white-space: unset;
        overflow: unset;
        text-overflow: unset;
    }
    .product-card-st3 .price {
        font-size: 17px;
    }
  .product-card-st3 .cart-box {
    width: 50px;
    height: 50px;
  }
  .product-card-st3 .cart-box .cart-link {
    width: 30px;
    height: 30px;
  }
  .product-card-st3 .cart-box .cart-link img {
    width: 18px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .products-st2 .swiper-button-prev.st2, .products-st2 .swiper-button-next.st2 {
    display: none;
  }
  .header2 .search-wrapper .form-group .form-control {
    font-size: 15px;
  }
  .header2 .search-wrapper .form-group .butn {
    padding: 15px 30px;
    font-size: 15px;
  }
  .search-filter-st2 .form-filter {
    flex-wrap: wrap;
  }
  .search-filter-st2 .form-filter .butn {
    padding: 15px 50px;
    width: 100%;
  }
  .product-card-st3 .cart-box {
    border-top-right-radius: 20px;
  }
  .clients-st2 img {
    width: 75%;
  }
  .whyUs_sec .choice_card .img_box {
    height: 100px;
  }
  .whyUs_sec .choice_card .title {
    font-size: 13px;
    padding-inline: 0;
  }
  .banner-st2 .banner {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .banner-st2 .banner .bg {
    -o-object-position: right;
       object-position: right;
  }
  .banner-st2 .banner .info {
    padding: 50px 20px;
  }
  .whyUs_sec .item .title {
    font-size: 12px;
  }
  .search-filter-st2 .form-filter .form-group {
    width: 47%;
  }
  .swiper-button-prev.st2,
  .swiper-button-next.st2 {
    transform: scale(0.6);
  }
  .swiper-button-next.st2 {
    right: 0;
  }
  .swiper-button-prev.st2 {
    left: 0;
  }
  .banner-st2.banner-st3 .banner .price_butn {
    font-size: 10px !important;
    padding: 7px !important;
    bottom: 5px !important;
    inset-inline-start: 20px !important;
  }
  
  .footer .content .desc {
        height: max-content;
        overflow: hidden;
        line-height: 1.4;
    }
    
    .footer .mb-5 {
        margin-bottom: 1rem !important;
    }
    
    .footer .content .links a, .footer .content .links .item {
        display: inline-block;
        margin: 5px 0px;
        width: 45%;
    }
    
    .footer .content .logo {
        width: 50px;
    }
    
    .navs-container .navbar .logo {
        height: 100%;
    }
    
    .navbar .container-fluid {
        flex-direction: row-reverse;
    }
  
}

.theme-dark .whyUs_sec .choice_card .img_box,
.theme-dark .product-card-st3 .cart-box,
.theme-dark .product-card-st3 .float-icons a,
.theme-dark .product-card-st3.light-card .float-icons a,
.theme-dark .product-card-st3.light-card {
    background-color: #12182a !important; /* darked color */
}

.theme-dark .product-card-st3 .cart-box .br-left-top path,
.theme-dark .product-card-st3 .cart-box .br-right-btm path {
    fill: #12182a !important;
}

.theme-dark .product-card-st3.light-card .cart-box .br-left-top path,
.theme-dark .product-card-st3.light-card .cart-box .br-right-btm path {
    fill: #161f3c !important;
}


.theme-dark .header2 .search-wrapper .form-group .form-control,
.theme-dark .search-filter-st2 .form-filter .form-group .form-control,
.theme-dark .product-card-st3,
.theme-dark .bg-light1,
.theme-dark .product-card-st3.light-card .cart-box,
.theme-dark .navs-container .sections-menu-wrapper .menu-box .sections-menu,
.theme-dark .navs-container .sections-menu-wrapper .submenu-box,
.theme-dark .navs-container .sections-menu-wrapper .brand-box,
.theme-dark .navs-container .sections-menu-wrapper .car-type,
.theme-dark .navs-container .sections-menu-wrapper .years-box{
    background-color: #161f3c !important; /* dark color */
    color: #fff !important;
}

.theme-dark .whyUs_sec .item,
.theme-dark .whyUs_sec .item .icon_box,
.theme-dark .whyUs_sec .choice_card{
    background-color: #161f3c !important;
    border-color: #161f3c !important;
}

.theme-dark .whyUs_sec .choice_card .title {
    color: #fff !important;
}

.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark h5,
.theme-dark h6,
.theme-dark a{
    color: #fff !important;
}

.theme-dark .brand-st2 .brand::after,
.navs-container .sections-menu-wrapper .brand-box .brand-list .brand {
    background-color: #fff1 !important;
}

.theme-dark .search-filter-st2 {
    background-color: #181E30 !important;
}

.theme-dark .color-primary {
    color: #fff;
}

.theme-dark .butn.white_butn {
    background-color: #fff1;
}





