
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  background-color: #000;
}

:root {
  --primary-color: #1D6FB7;
  --secondary-color: #E9021E;
  --black-color: #000000;
  --color-grey: #444;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--color-grey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

hr {
  margin: 0;
  opacity: 1;
  background-color: #ddd;
}

a,
a:hover {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0;
  padding: 0;
  letter-spacing: 0px;
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  font-weight: 400;
  margin-bottom: 10px
}
.owl-theme .owl-dots{
  margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot span{
  width: 25px;
    height: 5px;
    background-color:rgba(255, 255, 255, 0.632);
}
.owl-theme .owl-dots .owl-dot.active span{
  background-color: var(--primary-color);
}
.owl-carousel.owl-theme .owl-nav{
    position: absolute;
    top: 40%;
    margin: 0;
    left: -3%;
    right: 0;
    width: 106%;
    display: flex;
    justify-content: space-between;
}
.owl-carousel.owl-theme .owl-nav.disabled{
display:none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
width: 40px;
    height: 40px;
    background: var(--secondary-color);
   font-size: 40px;
    line-height: 0;
    font-weight:300;
    color:#fff;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section{
  padding: 80px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.section-heading{
  text-align: center;
  margin-bottom: 40px;
}
.section-heading .title{
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 10px;
}
.section-heading .heading{
  font-size: 34px;
  font-weight: 600;
  line-height: 1.7;
  color: #fff;
  margin-bottom:5px;
}
.btn-theme{
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 10px;
  padding: 15px 30px;
  display: inline-block;
}
.btn-theme:hover{
  background-color: transparent;
  color:#fff;
}
/* Header */
.header-main{
  position: relative;
   background-color:var(--black-color);
  background-size:cover;
  background-position:center;
  padding:0;
  box-shadow: 0px 0px 16px 7px #00000024;
}
.header-main .mobile-header{
  display: none;
}
.fixed-header{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.header-main .logo-box img{
  width: 100%;
  max-width: 400px;
  min-height: 92px;
}
.header-main .nav-outer{
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
}
.header-main .nav-outer .nav{
  margin-right: 40px;
}
.header-main .nav-outer nav>ul{
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
  gap: 15px;
}
.header-main .nav-outer ul li a{
  color: #fff;
  padding: 20px 10px;
  font-weight: 500;
  line-height: 1.5;
  font-size: 16px;
  display: block;
  text-transform: capitalize;
}
.header-main .nav-outer ul li.menu-item-has-children{
  position: relative;
}
.header-main .nav-outer ul li.menu-item-has-children>a{
  padding-right: 30px;
  position: relative;
}
.header-main .nav-outer ul li.menu-item-has-children>a::after{
    content: "\ea4a";
    font-family: "boxicons";
    color: #fff;
    position: absolute;
    right: 0;
    font-size: 26px;
    line-height: 1;
    font-weight: 400;
}
.header-main .nav-outer ul li.menu-item-has-children .sub-menu{
      position: absolute;
    background-color: #fff;
    border: 5px;
    z-index: 999;
    width: 100%;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
}
.header-main .nav-outer ul li.menu-item-has-children:hover .sub-menu{
  opacity: 1;
  visibility: visible;
}
.header-main .nav-outer ul li.menu-item-has-children .sub-menu li a{
    padding: 10px;
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    border-bottom: 1px solid #ddd;
}
.header-main .nav-outer ul li.menu-item-has-children .sub-menu li a:hover{
  background-color: var(--primary-color);
  color: #fff;
}
/* Footer */
.footer-section{
  background-color: #000000;
}
.footer-section .footer-middle{
  padding: 60px 0;
}
.footer-section .footer-about{
  padding-right: 30px;
}
.footer-section .footer-about a{
    width: 100%;
    max-width: 250px;
    display: inline-block;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 10px;
}
.footer-section .footer-about a img{
  width: 100%;
}
.footer-section .footer-about p{
  color: #fff;
  font-size: 14px;
  margin: 0;
}
.footer-section .footer-title{
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer-section ul.menu li{
  margin-bottom: 15px;
  padding-left: 45px;
  position: relative;
}
.footer-section ul.menu li::before{
      content: "";
    width: 25px;
    height: 2px;
    position: absolute;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    top: 0;
    margin: auto;
    left: 0;
}
.footer-section ul.menu li::after{
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    rotate: 130deg;
}
.footer-section ul.menu li a{
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 10px;
}
.footer-section .contact-info li{
  padding-left: 30px;
  position: relative;
  color: #fff;
  margin-bottom: 15px;
}
.footer-section .contact-info li i{
  position: absolute;
  left: 0;
  color: var(--primary-color);
  top: 2px;
  font-size: 20px;
}
.footer-section .contact-info li a{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.footer-section .social-links{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.footer-section .social-links li a{
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background-color:#303032;
  display: flex;
  justify-content: center;
  align-items: center;
  color:#fff;
  margin: 0;
}
.footer-section .footer-copyright{
  border-top: 1px solid #FFFFFF1A;
}
.footer-section .footer-copyright p{
  margin: 0;
  color: #fff;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 400;
}
.footer-section .footer-copyright p strong{
  color: var(--primary-color);
  font-weight: 600;
}
.home-banner{
  background-position: right;
}
.home-banner video{
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
}
.home-banner .section-heading .heading span{
  color: #E9021E;
}
.home-banner .btn-group{
  gap: 15px;
  margin-top: 20px;
}
.home-banner .btn-group .btn-theme:last-child{
  background-color: transparent;
}
.service-section{
  background-attachment: fixed;
}
.service-section .card-service{
  width: 100%;
  height: 100%;
  background-color:#000000;
  border-width: 0px 2px 4px 0px;
  border-style: solid;
  border-color: #1976D2;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.service-section .card-service::after{
  content: "";
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 100px;
  width: 100px;
  height: 100px;
  margin: auto;
  opacity: 0.5;
  visibility: hidden;
  display: block;
  z-index: -1;
  transition: all 0.3s linear;
}
.service-section .card-service .icon img{
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.service-section .card-service .content{
  margin-top: 15px;
}
.service-section .card-service .content h4{
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-section .card-service .content p{
  color:#fff;
}
.service-section .card-service .content .btn-theme{
	    border-radius: 5px;
    padding: 6px 15px;

}
.service-section .card-service:hover::after{
  visibility: visible;
  opacity: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.why-choose .whychoose-card{
  background-color:#222222;
  border-radius: 10px;
  height: 100%;
  padding:25px 15px;
}
.why-choose .whychoose-card h4{
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 18px;
}
.why-choose .whychoose-card p{
  margin: 0;
}
.our-award .certificate-slider .item a{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.our-award .certificate-slider .item a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial{
  background-attachment: fixed;
}
.testimonial .testimonial-carousel .owl-stage{
      display: flex;
    justify-content: start;
    align-items: stretch;
}
.testimonial .items{
  height: 100%;
  padding: 0 10px;
}
.testimonial .card-testimonial{
  background-color: #000;
  border-radius: 30px;
  border: 1px solid #ECECEC;
  padding: 20px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: start;
  flex-direction:column;
}
.testimonial .card-testimonial .more{
  margin-bottom:15px;
}
.testimonial .items .morecontent span{
  display: none;
}
.testimonial .items .morelink-2{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
}
.testimonial .card-testimonial .name-customer{
  border-top: 1px solid #ECECEC;
  padding-top: 15px;
  width: 100%;
  margin-top: auto;
}
.testimonial .card-testimonial .name-customer h4{
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.testimonial .card-testimonial .name-customer p{
  margin: 0;
  color:#CCCCCC;
  font-size: 14px;
}
.testimonial .card-testimonial ul{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.testimonial .card-testimonial ul li i{
  color:#FF3600;
  font-size: 16px;
}
.testimonial .google-rating a {
  background-color: #fff;
  border-radius: 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  gap: 12px;
}

.testimonial .google-rating img {
  max-width: 50px;
}

.testimonial .google-rating span {
  color: var(--color-grey);
  font-weight: 600;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}
.car-gallery .image-box{
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.car-gallery .image-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease;
}
.car-gallery .image-box:hover img{
  transform: scale(1.1);
}
.car-gallery .image-box a{
  position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 90%;
    height: 90%;
    margin: auto;
    display: flex;
    background: rgb(0 0 0 / 34%);
    justify-content: center;
    align-items: center;    
    opacity: 0;
    transition: all 0.2s ease;
}
.car-gallery .image-box a i{
    font-size: 46px;
    color: #fff;

}
.car-gallery .image-box:hover a{
  opacity: 1;
}
.stats-section{
  padding-top: 100px;
  background-attachment: fixed;
}
.stats-section .btn-group{
  margin-top: 20px;
  gap: 15px;
}
.stats-section .btn-group .btn-theme:last-child{
  background-color: transparent;
}
.stats-section .btn-group .btn-theme:last-child:hover{
  background-color: var(--primary-color);
}
.stats-section img{
  width: 100%;
}
.stats-section .outer-statsbox{
  background-color:#E9021E;
  padding: 25px;
   margin-top: 50px;
}
.stats-section .stats-box{
  text-align: center;
}
.stats-section .stats-box h4{
  color: #fff;
  font-size: 34px;
  line-height: 1.4;
  margin-bottom: 0;
  font-weight: 600;
}
.stats-section .stats-box p{
  margin: 0;
}
.home-faq .faq-outerbox{
  background-color:#121212;
  border-radius: 45px;
  overflow: hidden;
}
.home-faq .faq-outerbox .section-heading{
  padding: 40px 40px 40px 20px;
  margin: 0;
}
.home-faq .faq-outerbox .accordion{
  background-color: transparent;
  margin-top: 0;
  border-radius: 0;
}
.home-faq .faq-outerbox .accordion .accordion-item,
.home-faq .faq-outerbox .accordion .accordion-button {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  outline: 0;
  color: #fff;
  font-weight: 600;
  border-radius: 0;
}
.home-faq .faq-outerbox .accordion .accordion-button{
  padding: 25px 15px 25px 0;
}
.home-faq .faq-outerbox .accordion .accordion-button::after{
      filter: contrast(0) brightness(10);
}
.home-faq .faq-outerbox .accordion .accordion-button:not(.collapsed){
  color: var(--primary-color);
  padding-bottom: 15px;
}
.home-faq .faq-outerbox .accordion .accordion-item:not(:last-child){
  border-bottom: 1px solid #fff;
}
.home-faq .faq-outerbox .accordion .accordion-body{
  padding: 0 0 20px 0;
}
.home-faq .faq-outerbox .accordion p{
  margin: 0;
}
.home-faq .faq-outerbox .accordion .accordion-body ul li{
   position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    color: #fff;
}
.home-faq .faq-outerbox .accordion .accordion-body ul li::before{
  content: "\ea41";
    position: absolute;
    left: 0;
    font-family: 'boxicons' !important;
    color: var(--primary-color);
    font-size: 26px;
    line-height: 1;
}
.home-faq .faq-outerbox video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-area .image-box{
	 width: 100%;
  height: 100%;
    }
.contact-area .image-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:10px;
}
.contact-area .section-heading{
      background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin: 0;
    text-align: start;
}
.contact-area .section-heading .heading,
.contact-area .section-heading p{
  color: var(--black-color);
} 
.contact-area .section-heading .heading{
  font-size: 22px;
}
.contact-area p{
  margin-bottom: 0;
}
.contact-area .form-label{
  font-weight: 500;
  font-size: 14px;
  color: var(--color-grey);
}
.contact-area .form-control{
  height: 40px;
  border: 1px solid #E5E7EB;
  background-color:#EFEFEF;
  color:#45474C;
}
.contact-area .form-control::placeholder{
  color: #454545;
  font-size: 14px;
}
.contact-area textarea.form-control{
  height: 80px;
}
.contact-area .btn-theme:hover{
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.color-wrapping .video-wrapper{
  border-radius: 50px;
  height: 600px;
  position: relative;
  overflow: hidden;
}
.color-wrapping .video-wrapper .playbutton{
 position: absolute;
    top: 0;
    bottom: 20%;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #E9021E;
    border-radius: 100px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
}
.color-wrapping .video-wrapper .playbutton i{
      color: #fff;
    font-size: 50px;
    line-height: 1;
    padding-left: 6px;
}
.color-wrapping .video-wrapper video{
      object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.color-wrapping .video-wrapper .content{
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  width: 80%;
  margin: auto;
  padding: 20px 50px;
  border: 1px solid var(--primary-color);
  background-color:rgba(0, 0, 0, 0.9);
  border-radius: 10px;
  text-align: center;
}
.color-wrapping .video-wrapper .content h3{
  color: #fff;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 10px;
}
.color-wrapping .video-wrapper .content p{
  color: #fff;
  margin: 0;
}
.section-coating .image-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-coating .section-heading p{
  display: inline-block;
}
.section-coating .section-heading h4{
  color: #fff;
  margin: 10px 0 20px;
  font-size: 18px;
  display: inline-block;
}
.section-coating .section-heading ul li{
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    color: #fff;
}
.section-coating .section-heading ul li::before{
  content: "\ea41";
    position: absolute;
    left: 0;
    font-family: 'boxicons' !important;
    color: var(--primary-color);
    font-size: 26px;
    line-height: 1;
}
.section-ppf{
  padding-bottom: 20px;
}
.section-ppf .items{
  padding: 0 10px;
}
.section-ppf .card-ppf{
  height: 100%;
  width: 100%;
  text-align: center;
}
.section-ppf .card-ppf .image{
  width: 100%;
  height: 100%;
  border: 1px solid #ECECEC;
  border-radius: 10px;
  overflow: hidden;
}
.section-ppf .card-ppf .image img{
  width: 100%;
  height: 100%;
}
.section-ppf .card-ppf .heading{
  padding: 15px;
}
.section-ppf .card-ppf .heading h4{
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
.tint-section{
  background-color:#171717;
}
.tint-section .owl-stage{
  display: flex;
  align-items: stretch;
}
.tint-section .item{
  padding: 0 20px;
  height: 100%;
}
.tint-section .card-tint{
  background-color: var(--black-color);
  border: 1px solid #ECECEC;
  padding: 30px 20px 80px;
  border-radius: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.tint-section .card-tint .batch{
background-color: var(--secondary-color);
    padding: 5px 20px;
    color: #fff;
    position: absolute;
    right: -45px;
    rotate: 45deg;
    width: 170px;
    height: auto;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}
.tint-section .card-tint .heading{
  text-align: center;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 25px;
}
.tint-section .card-tint .heading h4{
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 10px;
}
.tint-section .card-tint .heading span{
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}
.tint-section .card-tint .content-list{
  padding-top: 25px;
}
.tint-section .card-tint .content-list ul li{
    padding-left: 30px;
    position: relative;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 500;
}
.tint-section .card-tint .content-list ul li strong{
  color: var(--secondary-color);
}
.tint-section .card-tint .content-list ul li::before{
content: "\ea41";
    font-family: "boxicons";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    line-height: 1;
    color: var(--primary-color);
}
.tint-section .card-tint .btn-group{
      gap: 15px;
    justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 30px;
    left: 0;
}
.tint-section .card-tint .btn-group .btn-theme{
  padding: 10px 30px;
}
.tint-section .card-tint .btn-group .btn-theme:last-child{
  background-color: transparent;

}
.tint-section .modal .modal-dialog{
  max-width: 500px;
  height: auto;
}
.tint-section .modal .modal-dialog img{
  width: 100%;
  object-fit: cover;
}
.tint-section .modal .modal-header{
    position: absolute;
    top: 0;
    right: -45px;
    border: 0;
    background: #fff;
    border-radius: 5px;

}
.our-mission{
  background-attachment: fixed;
}
.our-mission .section-heading{
  text-align: start;
    background-color: rgb(0 0 0 / 52%);
    border-left: 4px solid var(--secondary-color);
    padding: 30px;
    border-radius: 20px 0 0 20px;
    margin-bottom: 0;
}
.our-mission .section-heading h4{
     color: #fff;
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 15px;
    border-bottom: 2px solid #fff;
    padding-bottom: 15px;
    display: inline-block;
}
.about-overview .section-heading{
  text-align: start;
}
.about-overview iframe{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.section-page .section-heading{
  margin: 0;
}
.section-page .section-heading .heading{
  font-size: 40px;
  text-transform: uppercase;
}
.contact-form .section-heading{
      background-color: #101010;
    border-radius: 10px;
    padding: 30px;
    text-align: start;
    border: 1px solid #565656;
    margin: 0;
}
.contact-form .form-label{
  color: #fff;
}
.contact-form .form-control{
  height: 45px;
}
.contact-form textarea.form-control{
  height: 80px;
}
.contact-form .contact-details{
  padding: 30px;
}
.contact-form .contact-details h4{
  color: #fff;
  line-height: 1.5;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-form .contact-details ul.contact-info li{
  margin-bottom: 15px;
  position: relative;
  padding-left: 50px;
}
.contact-form .contact-details ul.contact-info li i{
  color:var(--black-color);
  background-color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 5px;
}
.contact-form .contact-details ul.contact-info li span{
  color:#E9021E;
  margin-bottom: 0;
  display: block;
  font-size: 18px;
  font-weight: 600;
}
.contact-form .contact-details ul.contact-info li a{
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
.contact-form .contact-details p{
  font-size: 24px;
  font-weight: 600;
}
.contact-form .contact-details .social-links{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.contact-form .contact-details .social-links li a{
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background-color:#303032;
  display: flex;
  justify-content: center;
  align-items: center;
  color:#fff;
  margin: 0;
  font-size: 24px;
}
.blogs .blog-card{
  border-radius: 10px;
  position: relative;
  padding: 10px 10px 50px;
  background-color: #101010;
    text-align: start;
    border: 1px solid #565656;
}
.blogs .blog-card .image{
  width: 100%;
  height:180px;
  border-radius: 10px;
  overflow: hidden;
}
.blogs .blog-card .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogs .blog-card .conent-blog{
  padding: 15px 0 0;
}
.blogs .blog-card .conent-blog h4{
  color:#fff;
  font-weight: 600;
  line-height: 1.5;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}
.blogs .blog-card .conent-blog h4 a{
  color:#fff;
}
.blogs .blog-card .btn-theme{
    position: absolute;
    bottom: 0;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    padding: 15px 0;
    border-bottom: 0;
    color: var(--secondary-color);
}
/* blogs details */
.blog-details {
  padding: 60px 0
}

.blog-single-post {
  position: relative;
  margin-bottom: 40px
}

.blog-single-post.blog-salah .image img {
  width: auto;
  height: 500px
}

.blog-single-post .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px
}

.blog-single-post .image img {
  width: 100%;
}

.blog-single-post .lower-content {
  position: relative;
  padding: 30px;
  border: 1px solid #ebf2f3;
  border-top: 0;
  border-radius: 5px
}

.blog-single-post ul.post-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-bottom: 13px
}

.blog-single-post .post-meta li {
  margin-right: 15px;
  padding-right: 15px;
  font-weight: 600;
  border-right: 1px solid #ddd;
  color: #fff;
}

.blog-single-post .post-meta li i {
  margin-right: 8px;
  color: var(--primary-color)
}

.blog-single-post .post-meta li:last-child {
  border-right: 0
}


.blog-single-post h1 {
  font-size: 30px;
  line-height: 44px;
  color: #fff;
  font-weight: 600;
}
.blog-single-post h2,
.blog-single-post h3 {
  font-size: 28px;
  line-height: 42px;
  color: #fff;
}

.blog-single-post .text {
  margin-bottom: 40px
}

.blog-single-post .text ul {
  padding-left: 0
}

.blog-single-post .text ul li {
  list-style: none;
  margin-bottom: 10px;
  color: #3f3f3f;
  position: relative;
  padding-left: 30px
}

.blog-single-post .text ul li:before {
  color: var(--primary-color);
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0
}

.blog-single-post .text ol {
  list-style: auto
}

.blog-single-post .text ol li {
  list-style: inherit;
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px
}

.blog-single-post .text b,
.blog-single-post .text strong {
  font-weight: 600;
  color: var(--color-black)
}

.blog-single-post .text h2 {
  position: relative;
  font-size: 28px;
  line-height: 44px;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text h3,
.blog-single-post .text h4,
.blog-single-post .text h5 {
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  font-family: inherit
}

.blog-single-post .text h3 {
  font-size: 24px
}

.blog-single-post .text h4 {
  font-size: 22px
}

.blog-single-post .text h5 {
  font-size: 20px
}

.blog-single-post .text h6 {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text table tr td,
.blog-single-post .text table tr th {
  border: 2px solid #ddd;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.blog-single-post blockquote {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px
}

.blog-single-post blockquote:before {
  position: absolute;
  content: '';
  top: 0;
  width: 8px;
  bottom: 0;
  background:var(--primary-color);
  left: 0;
  border-radius: 5px
}

.widget {
  position: relative;
  margin-bottom: 50px
}

.widget_popular_post {
  position: relative;
  max-width: 350px;
  margin-left: auto
}

.widget .widget-title {
  position: relative;
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600
}

.widget_popular_post .post-thumb {
  position: relative;
  margin-right: 15px;
  margin-bottom: 0;
  overflow: hidden
}

.widget_popular_post .post-thumb:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgb(16 34 53/59%);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: .3s ease-in
}

.widget_popular_post .post-thumb:hover:before {
  opacity: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-animation: .75s circle;
  animation: .75s circle
}

.widget_popular_post .post-thumb img {
  border-radius: 5px;
  float: left;
  height: 60px;
  width: 60px;
  object-fit: cover
}

.widget_popular_post .post {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border: 1px solid #fff;
  padding: 14px;
  border-radius: 5px
}

.widget_popular_post .content {
  position: relative;
  width: calc(100% - 75px)
}

.widget_popular_post .content h5 {
  position: relative;
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 600;
  font-family: inherit
}

.widget_popular_post .content h5 a {
  color:#fff;
  transition: .5s
}

.widget_popular_post .content .post-info {
  font-size: 14px;
  color:var(--primary-color);
}

.widget_popular_post .content .post-info i {
  margin-right: 4px;
  color: var(--primary-color)
}
.home-faq.service-faq .faq-outerbox{
  border-radius: 10px;
  max-width: 1000px;
  margin: auto;
}
.home-faq.service-faq .faq-outerbox .accordion{
  text-align: start;
}
.Comparison .table{
      border-radius: 10px;
    overflow: hidden;
}
.Comparison .table th,
.Comparison .table td{
      font-size: 14px;
      text-align: center;
      padding: 10px 20px;

}
.Comparison .table th:first-child,
.Comparison .table td:first-child{
      color: #c59d00;
    font-weight: 700;
    text-align: start;
}
.service-overview .section-heading h4{
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}
.service-overview .section-heading ul li{
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.8;
}
.service-overview .section-heading ul li::before{
  content: "\ea41";
    position: absolute;
    left: 0;
    font-family: 'boxicons' !important;
    color: var(--primary-color);
    font-size: 26px;
    line-height: 1;
}
.service-overview .image-box img{
  width: 100%;
}
.tinting-banner{
      background:var(--black-color);
      background-attachment: fixed;
}
.tinting-banner .section-heading{
  text-align: start;
    margin: 0;
}
.tinting-banner .section-heading .heading{
  color: var(--primary-color);
}
.tinting-banner .section-heading p strong{
  color: var(--secondary-color);
  font-weight:600;
}
.tinting-banner .section-heading .btn-group{
  gap: 15px;
}
.tinting-banner video{
  width: 100%;
  border-radius: 10px;
}
.how-it-work{
  background-color:#171717;
}
.how-it-work .card-work{
      text-align: center;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}
.how-it-work .card-work .icon{
  margin-bottom: 15px;
}
.how-it-work .card-work .content h6{
  color: var(--secondary-color);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 600;
}
.how-it-work .card-work .content p{
  margin: 0;
  color: #fff;
}
.ppf-key-features{
  padding: 50px 0;
}
.ppf-key-features .section-heading{
      text-align: start;
    background: #000000b8;
    backdrop-filter: brightness(0.5);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #ddd;
    margin: 0;
}
.ppf-key-features .section-heading ul li{
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.5;
}
.ppf-key-features .section-heading ul li::before{
  content: "\ea41";
    position: absolute;
    left: 0;
    font-family: 'boxicons' !important;
    color: var(--primary-color);
    font-size: 26px;
    line-height: 1;
}
.banner-ppf video{
  position: absolute;
  top: 0;
  left:0;
  width: 100%;  
  right: 0;
}
.banner-ppf .container{
  position: relative;
}
.banner-ppf .section-heading{
      margin: 0;
    background-color: #000000b5;
    border-radius: 10px;
    padding: 40px;
}
.service-overview.ppf-overview{
  background-color: #171717;
}
.ppf-package{
  background-attachment: fixed;
}
.ppf-package .ppf-box{
 max-width: 1200px;
    background:#00000069;
    border-radius: 10px;
    padding: 50px;
    margin: auto;
    border: 1px solid #ddd;
    backdrop-filter: blur(5px);
}
.ppf-package  .ppf-box .section-heading{
  margin: 0;
  text-align: start;
}
.ppf-package  .ppf-box .section-heading .heading{
  margin-bottom: 20px;
}
.ppf-package .section-heading strong{
  color: var(--secondary-color);
}
.ppf-package .section-heading ul li{
 position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    color: #fff;
}
.ppf-package .section-heading ul li::before{
    content: "\ea41";
    position: absolute;
    left: 0;
    font-family: 'boxicons' !important;
    color: var(--primary-color);
    font-size: 26px;
    line-height: 1;
}
.ppf-package .image img{
  height: 500px;
  object-fit: contain;
}
.service-overview.wrapping-overview .image-box{
  height: 100%;
}
.service-overview.wrapping-overview .image-box img{
  height: 100%;
  object-fit: cover;
}
.wrapping-content{
  background-color: #171717;
}
.wrapping-content h4{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--secondary-color);
}
.wrapping-content ul li{
  position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    color: #fff;
}
.wrapping-content ul li::before{
  content: "\ea41";
    position: absolute;
    left: 0;
    font-family: 'boxicons' !important;
    color: var(--primary-color);
    font-size: 26px;
    line-height: 1;
}
.wrapping-content  .video-wrapping{
    width: 100%;
    max-width: 450px;
    height: 600px;
    margin-left: auto;
    position: sticky;
    top: 15%;
}
.wrapping-content  .video-wrapping video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-gallery.coating-gallery .image-box{
  height: 350px;
}
.how-it-work.coating .card-work{
  background-color: #000;
}