@font-face {
    font-family: Inter-Regular;
    src: url('../fonts/Inter-Regular.ttf');
}

@font-face {
    font-family: Inter-Medium;
    src: url('../fonts/Inter-Medium.ttf');
}

@font-face {
    font-family: Inter-SemiBold;
    src: url('../fonts/Inter-SemiBold.ttf');
}

@font-face {
    font-family: Inter-Bold;
    src: url('../fonts/Inter-Bold.ttf');
}


:root{
    --theme-color-1: #F8351E;
    --theme-color-2: #2F395F;
    --theme-color-3: #060A14;
    --theme-color-4: #F7F7F7;
    --body-bg: #ffffff;
    --font-color: #6D6D6D;
    --heading-color: #0D0D0D;
    --font-white: #ffffff;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Inter-Regular';
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Inter-Bold';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn{
    border-radius: 6px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    transition: ease-in-out 0.3s;
    font-size: 14px;
}

.btn-main{
    color: #fff;
    background-color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    border: 1px solid var(--theme-color-1);
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background-color: #7f2116;
    border: 1px solid #7f2116;
    transition: ease-in-out 0.3s;
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.btn-border{
    border: 1px solid var(--theme-color-1);
    background-color: var(--theme-color-1);
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.btn-border:hover{
    border-color: var(--theme-color-4);
    background-color: var(--theme-color-4);
    color: #fff;
    transition: ease-in-out 0.3s;
}

.btn-border-white{
    border: 1px solid var(--font-white);
    background-color: transparent;
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.btn-border-white:hover{
  border-color: var(--theme-color-3);
  background-color: transparent;
  color: var(--theme-color-3);
  transition: ease-in-out 0.3s;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--body-bg);
    transition-duration: 0.5s;
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}


.navbar-dark .navbar-nav .nav-link{
    color: var(--font-color);
    font-family: 'Inter-Regular';
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-dark .navbar-brand {
    color: #fff;
    width: 180px;
}

.navbar-brand h3{
    color: var(--theme-color-2);
    font-size: 32px;
    font-family: 'Inter-Regular';
    font-weight: normal;
}

.navbar-brand h3 span{
    color: var(--theme-color-1);
    font-size: 32px;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}


.navbar{
    background: #fff;
    box-shadow: transparent;
    transition: none !important;
    height: 85px;
}

.dropdown-menu{
    min-width: 14rem;
}


.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-color);
    font-family: 'Inter-Regular';
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
    /* position: relative; */
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu{
    transition: ease-in-out 0.3s;
}

header{
    position: relative;
    width: 100%;
    /* overflow: hidden; */
    height: 139px;
}

.topbar{
    background-color: var(--theme-color-2);
    padding: 0px 0px;
    overflow: hidden;
}

.topbar .container::after{
    content: '';
    position: absolute;
    right: 0;
    width: 40%;
    height: 100px;
    background-color: var(--theme-color-1);
    top: 0px;
    -webkit-clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0 100%);
    clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0 100%);
}

.topbar-info-wrapper p{
    color: var(--font-white);
}

.topbar-contact{
    display: flex;
    justify-content: flex-start;
    height: 100%;
    align-items: center;
    padding: 9px 0px;
}

.topbar-contact li a{
    color: var(--font-white);
}

.topbar-contact li:first-child{
    /* border-right: 1px solid var(--font-white); */
    padding-right: 15px;
    margin-left: 0;
}

.topbar-contact li{
    margin-left: 15px;
}

.topbar-contact li a i{
    margin-right: 8px;
}

.topbar-social-wrapper ul li{
    display: inline-block;
    margin-left: 5px;
}

.topbar-social-wrapper ul li a{
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
}

.topbar-social-wrapper{
    display: flex;
    justify-content: flex-end;
    padding: 9px 0px;
    position: relative;
    z-index: 10;
}

#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-1);
    color: white;
    cursor: poJost;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-1);
}

.section{
    padding: 60px 0px;
    position: relative;
}

input:hover, input:focus, input:active{
    box-shadow: none;
    outline: none;
}

/* home */

.banner-section{
    width: 100%;
    display: inline-block;
    min-height: 800px;
    /* background-color: #060A14; */
    background-image: url('../images/banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner-section-inner{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.banner-small-heading{
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
    color: var(--font-white);
}

.banner-main-heading{
    font-size: 45px;
    line-height: 54px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.banner-description{
    font-size: 20px;
    line-height: 24px;
    color: var(--font-white);
    margin-bottom: 0px;
}

.btn-block{
    width: 100%;
    margin-top: 1rem;
}

.weoffer-content-head h4{
    margin-bottom: 5px;
    font-size: 16px;
}

.weoffer-content-head h2{
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 20px;
}

.weoffer-content{
    position: relative;
    /* margin-right: 9rem; */
    padding-top: 10rem;
}

.weoffer-content-head{   
    /* position: relative; */
    margin-right: 12rem;
}

.weoffer-funfactor{
    margin-top: 3rem;
    position: relative;
    width: 100%;
    display: inline-block;
}

.weoffer-funfactor ul li{
    display: inline-block;
    margin-right: 30px;
}

.funfactor-inner h3{
    font-size: 22px;
    line-height: 27px;
    color: var(--theme-color-1);
    margin-bottom: 10px;
}

.funfactor-inner h4{
    font-size: 16px;
    line-height: 19px;
}

.we-offer{
    padding-top: 0rem;
    padding-bottom: 5rem;
}

.weoffer-car{
    position: absolute;
    top: 0;
    right: -15rem;
    width: 65%;
}

.request-info-form{
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 2px rgb(120 120 120 / 25%);
    border-radius: 6px;
    /* height: 100%; */
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    padding: 35px;
}

.line{
    width: 80px;
    height: 2px;
    background-color: #F8351E;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.request-info-form h3{
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 3rem;
}

.request-form-group{
    width: 100%;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.request-form-label{
    width: 100%;
    display: inline-block;
    margin-bottom: 5px;
    color: #000000;
}

.request-form-label span{
    color: red;
}

.request-form-input{
    width: 100%;
    position: relative;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    height: 48px;
}

.submit-btn-block{
    margin-top: 2rem;
}

.submit-btn-block .btn-main{
    width: 100%;
    max-width: 100%;
}

.wedo{
    position: relative;
    background-color: var(--theme-color-4);
    width: 100%;
    display: inline-block;
    overflow-x: clip;
}

.wedo-heading-wrapper h4{
    margin-bottom: 5px;
    font-size: 16px;
}

.wedo-heading-wrapper h2{
    font-size: 32px;
    line-height: 39px;
}

.wedo-card{
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 2px rgba(192, 192, 192, 0.25);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    text-align: center;
}

.wedo-card img{
    width: 55px;
}

.wedo-card h3{
    font-size: 20px;
    line-height: 25px;
    margin: 20px 0px;
}

.wedo-car-overlay{
    position: absolute;
    top: -4rem;
    right: -2rem;
    z-index: 10;
}

.wedo-car-overlay img{
    width: 120%;
    max-width: 120%;
}

.wash1{
    background-color: var(--theme-color-3);
    position: relative;
    width: 100%;
    display: inline-block;
}

.carwash1-content{
    /*margin-right: 6rem;*/
    position: relative;
    display: inline-block;
}

.carwash1-content h2{
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 30px;
    color: var(--font-white);
}

.carwash1-points-item{
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 20px;
}

.carwash1-points-item:last-child{
    margin-bottom: 0px;
}

.carwash1-points-item h3{
    font-size: 20px;
    line-height: 25px;
    color: var(--font-white);
    margin-bottom: 6px;
}

.carwash1-points-item p{
    color: var(--font-white);
    margin-bottom: 0px;
}

.carwash1-img{
    height: 96%;
    width: 100%;
}

.carwash1-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 10;
}

.repair-wash{
    background-color: var(--theme-color-4);
    position: relative;
    width: 100%;
    display: inline-block;
    padding-top: 11rem;
}

.repair-wash-content{
    position: relative;
    text-align: right;
}

.btn-block-repair{
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

.repair-wash-content h2{
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 30px;
}

.repair-wash-form{
    margin-top: 30px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    padding: 30px;
    text-align: left;
}

.repair-wash-form-head{
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
}

.request-form-textarea {
    width: 100%;
    position: relative;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    /* height: 48px; */
}

.repair-wash-img{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.repair-wash-img img{
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 10px;
}

.masonary-img1 .img1-top{
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.masonary-img1 .img1-bottom{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.masonary-img2 .img2-top{
    width: 70%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.masonary-img2 .img2-bottom{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
}

.masonary-img2{
    height: 125%;
    position: relative;
    width: 100%;
}

.brands{
    background-color: var(--theme-color-4);
    width: 100%;
    display: inline-block;
    position: relative;
    padding-top: 9rem;
}

.section-heading{
    margin-bottom: 3rem;
    text-align: center;
}

.getit .section-heading{
    margin-bottom: 1rem;
}

.section-heading img{
    margin-bottom: 20px;
}

.section-heading h2{
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 18px;
    text-align: center;
}

.brands-card-wrapper{
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 2px rgba(192, 192, 192, 0.25);
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    height: 100%;
}

.section-heading p{
    text-align: center;
}

/* the slides */
.testimonial .slick-slide {
    margin: 0 3rem;
}

/* the parent */
.testimonial .slick-list {
    margin: 0 -3rem;
}

.testimonial-content-wrapper{
    background-color: var(--theme-color-4);
    box-shadow: 0px 0px 10px 2px rgba(192, 192, 192, 0.25);
    border-radius: 10px;
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 50px;
    padding-top: 25px;
    margin-top: 2.5rem;
}

.testimonial-stars{
    margin-bottom: 2rem;
    text-align: right;
    color: #F0B00C;
}

.testimonial-author-info h3{
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
}

.testimonial-author-avatar{
    width: 100px;
    height: 100px;
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 10;
}

.testimonial-author-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.carosel-nav-left-testi{
    position: absolute;
    top: 60%;
    left: 7rem;
    width: 40px;
    height: 40px;
    border-radius: 60%;
    border: none;
    background-color: var(--theme-color-2);
    color: var(--font-white);
}

.carosel-nav-right-testi{
    position: absolute;
    top: 60%;
    right: 7rem;
    width: 40px;
    height: 40px;
    border-radius: 60%;
    border: none;
    background-color: var(--theme-color-2);
    color: var(--font-white);
}

.getit{
    background-color: var(--theme-color-4);
    position: relative;
    width: 100%;
}

.getit-apps{
    display: flex;
    align-items: center;
    justify-content: center;
}

.getit-apps img{
    width: 40%;
}

.getit-apps .appstore{
    width: 47%;
}

.subscribe-form-group{
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-form-submit{
    width: 130px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-2);
    color: var(--font-white);
    border-radius: 6px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border: 1px solid var(--theme-color-2);
}

.subscribe-form-input{
    width: 100%;
    height: 48px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.getit-overlay{
    position: absolute;
    left: -3%;
    top: 15%;
    width: 20%;
}

/* footer */
.top-footer{
    background-color: var(--theme-color-3);
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 4rem 0px 3rem 0px;
}

.footer-col-heading h3{
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--font-white);
}

.footer-col-heading{
    /*margin-bottom: 10px;*/
}

.footer-body p{
    color: var(--font-white);
}

.footer-social ul{
    margin-top: 20px;
}

.footer-social ul li{
    display: inline-block;
    margin-right: 5px;
}

.footer-social ul li a{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--font-white);
}

.footer-news-content{
    display: flex;
}

.footer-news-content-image{
    min-width: 80px;
    height: 60px;
    width: 80px;
    margin-right: 15px;
}

.footer-news-content-image img{
    border-radius: 6px;
}

.footer-news-content-info{
    width: 100%;
}

.footer-news-content-info h3{
    font-size: 14px;
    line-height: 20px;
    font-family: 'Inter-Medium';
    margin-bottom: 10px;
    color: var(--font-white);
}

.footer-news-content-info h4{
    font-size: 12px;
    line-height: 20px;
    font-family: 'Inter-Medium';
    margin-bottom: 0px;
    color: var(--theme-color-1);
}

.footer-news-list ul li{
    margin-bottom: 20px;
}

.footer-news-list ul li:last-child{
    margin-bottom: 0px;
}


.footer-links-list li{
    color: var(--font-white);
    margin-bottom: 15px;
}

.footer-contact-list li{
    margin-bottom: 20px;
}

.footer-contact-list li .footer-contact-inner{
    display: flex;
    align-items: baseline;
    color: var(--font-white);
}

.footer-contact-list li .footer-contact-inner i{
    margin-right: 10px;
}

.bottom-footer{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0B1222;
}

.footer-bottom-inner{
    text-align: center;
}

/* services */
.page-banner-content{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    text-align: center;
    position: relative;
    z-index: 10;
}

.page-banner{
    width: 100%;
    height: 350px;
    /* background-color: red; */
    /*background-position: center;*/
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    background-size: cover;
    background-image: url('../images/page-banner.jpg');
    display: inline-block;
    position: relative;
}

.page-banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
}

.page-banner-content h1{
    font-size: 32px;
    color: var(--font-white);
    margin-bottom: 30px;
}

.page-banner-content p{
    color: var(--font-white);
    margin-bottom: 0px;
}

.main-services-card{
    display: flex;
}

.main-services-card{
    display: flex;
    box-shadow: 0px 0px 10px 2px rgb(120 120 120 / 25%);
    align-items: center;
    border-radius: 6px;
    transition: ease-in-out 0.3s;
}

.main-services-img{
    min-width: 100%;
    width: 100%;
    /*height: 300px;*/
    /* margin-right: 30px; */
    overflow: hidden;
    transition: ease-in-out 0.3s;
}

.main-services-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    transition: ease-in-out 0.3s;
}

.main-services-content h2{
    font-size: 28px;
    margin-bottom: 20px;
    color: #2F395F;
}

.main-services-content{
    position: relative;
    padding: 25px;
}

.main-services-card:hover{
    transition: ease-in-out 0.3s;
    background-color: var(--theme-color-1);
}

.main-services-card:hover .main-services-content a h2{
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.main-services-card:hover .main-services-content p{
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.main-services-card:hover .main-services-img img{
    transition: ease-in-out 0.3s;
    transform: scale(1.5);
}

.our-team-card{  
    position: relative;
    width: 100%;
    display: inline-block;
    height: 100%;
    box-shadow: 0px 0px 10px 2px rgb(120 120 120 / 25%);
    padding: 30px;
    border-radius: 6px;
    text-align: center;
}

.our-team-card img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.our-team-card h3{
    font-size: 16px;
    margin: 15px 0px 5px 0px;
}

.our-team-card p{
    font-size: 12px;
}

.our-team-social-item{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* background-color: red; */
    margin: 0px 2px;
    color: var(--theme-color-1);
    font-size: 12px;
}

.our-team-social{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.our-team-social-item:hover{
    color: var(--theme-color-2);
}

.our-team-social-item.facebook{
    background-color: var(--theme-color-4);
}

.our-team-social-item.twitter{
    background-color: var(--theme-color-4);
}

.our-team-social-item.instagram{
    background-color: var(--theme-color-4);
}

.our-team-social-item.linkedin{
    background-color: var(--theme-color-4);
}

.about-content-wrapper p{
    margin-bottom: 20px;
}

.about-content-wrapper p:last-child{
    margin-bottom: 0px;
}

.about-content-image{
    width: 100%;
    height: 350px;
    display: inline-block;
    position: relative;
}

.about-content-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text-left{
    text-align: left !important;
}

.whyChoose-card{
    position: relative;
    width: 100%;
    display: inline-block;
    height: 100%;
    box-shadow: 0px 0px 10px 2px rgb(120 120 120 / 25%);
    padding: 30px;
    border-radius: 6px;
}

.whyChoose-card h4{
    font-size: 12px;
    margin-bottom: 0;
}

.whyChoose-card h3{
    font-size: 20px;
    line-height: 25px;
    margin: 10px 0px;
    text-transform: uppercase;
}

.whyChoose-card p{
    margin-bottom: 0;
}

.getinTouch-card{
    position: relative;
    display: inline-block;
    width: 100%;
}

.getinTouch-card i{
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--theme-color-1);
}

.getinTouch-card h3{
    font-size: 20px;
    margin-bottom: 15px;
}

.errorPage{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-2);
}

.errorPage-wrapper{
    text-align: center;
    padding: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.errorPage-wrapper h2{
    font-size: 52px;
    margin: 30px 0px 10px 0px;
    color: var(--font-white);
}

.errorPage-wrapper p{
    font-size: 18px;
    color: var(--font-white);
    margin-bottom: 2rem;
}

.errorPage-wrapper a{
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--font-white);
    border-radius: 6px;
    color: var(--font-white);
    width: max-content;
    margin: auto;
}

.errorPage-image img{
    width: 100px;
}

.faq-wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
}

.faq-wrapper h3{
    font-size: 20px;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-content-wrapper .accordion-button:not(.collapsed){
    color: var(--theme-color-1);
    background-color: var(--theme-color-4);
    box-shadow: none;
}

.faq-content-wrapper .accordion-button:focus{
    box-shadow: none;
}

.faq-content-wrapper .accordion-item{
    margin-bottom: 15px;
    border-radius: 6px;
}

.faq-content-wrapper .accordion-item:not(:first-of-type){
    border: 1px solid rgba(0,0,0,.125);
}

.faq-content-wrapper .accordion-button{
    border-radius: 6px;
}

.faq-content-wrapper .accordion-button::after{
    background-image: none;
    background-image: none;
    font-family: 'FONTAWESOME';
    content: '\f107';
    transform: none;
    text-decoration: none;
    font-size: 20px;
    line-height: 20px;
}

.faq-content-wrapper .accordion-button:not(.collapsed)::after{
    background-image: none;
    font-family: 'FONTAWESOME';
    content: '\f106';
    transform: none;
    text-decoration: none;
    font-size: 20px;
    line-height: 20px;
}

.page-full-coming{
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    /* background-image: url(../images/coming-soon-bg.jpg); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/carwash1-imag.jpg');
    padding: 3rem 0rem;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  
  .page-coming-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
  }
  
  .page-coming-inner h2{
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
  }
  
  .page-coming-inner p{
    margin-bottom: 20px;
    color: var(--font-white);
  }
  
  .soon-subscribe{
    width: 100%;
  }
  
  .soon-form-wrapper{
    position: relative;
    width: 100%;
  }
  
  .soon-input{
    width: 100%;
    height: 55px;
    border-radius: 6px;
    padding: 10px 15px;
    display: inline-block;
    border: none;
  }
  
  .soon-submit{
    background-color: var(--theme-color-2);
    border-radius: 6px;
    text-align: center;
    color: #fff;
    padding: 10px 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    width: 135px;
  }
  
  .soon-counter-list{
    display: flex;
  }
  
  .soon-counter-list > div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--theme-color-1);
    font-family: 'Inter-Bold';
    font-weight: normal;
    font-size: 32px;
  }
  
  .soon-counter-list > div span{
    font-family: 'Inter-Medium';
    font-weight: normal;
    /* margin: 10px 0px; */
    color: var(--font-white);
    font-size: 14px;
  }
  
  .coming-soon .footer-heading {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
  }
  
  .coming-soon .footer-social-list {
    margin-top: 20px;
  }
  
.coming-soon .footer-social-list li {
    display: inline-block;
    margin-right: 20px;
}
  
.coming-soon .footer-social-list li a {
    display: inline-block;
    color: #fff;
}

.coming-soon .footer-social-list li:last-child{
    margin-right: 0;
}

.policy-main-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description{
    margin-bottom: 20px;
}

.blog-card{
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 2px rgb(192 192 192 / 25%);
    height: 100%;
    border-radius: 10px;
    text-align: center;
}

.blog-image{
    width: 100%;
    height: 200px;
    position: relative;
    display: inline-block;
}

.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-body{
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 20px;
    text-align: left;
    height: 100%;
}

.blog-posted-info{
    margin-bottom: 15px;
    font-size: 12px;
}

.blog-post-date{
    color: var(--theme-color-1);
    margin-right: 10px;
    padding-right: 15px;
    border-right: 1px solid #DDDDDD;
}

.blog-body h3{
    font-size: 16px;
    margin-bottom: 15px;
}

.blog-body p{
    font-size: 14px;
}

.blog-body a{
    margin-top: 15px;
    font-size: 14px;
    font-family: 'Inter-SemiBold';
    color: var(--theme-color-2);
    display: inline-block;
    width: 100%;
}

.blog-post-date i{
    margin-right: 10px;
}

.blog-siebar{
    width: 100%;
    display: inline-block;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--theme-color-2);
}

.blog-siebar h3{
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--font-white);
}

.blog-siebar ul li a{
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.blog-siebar ul li{
    margin-bottom: 15px;
    display: flex;
}

.blog-siebar ul li a{
    display: flex;
}

.blog-siebar ul li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.blog-siebar ul li a::before{
    content: '\f00c';
    position: relative;
    font-family: 'Fontawesome';
    display: inline-block;
    margin-right: 10px;
    font-size: 10px;
}

.blog-detail-main-image{
    width: 100%;
    height: 350px;
    position: relative;
    display: inline-block;
}

.blog-detail-main-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-wrapper p{
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: justify;
}

.blog-detail-wrapper h3{
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-detail-wrapper a{
    color: var(--theme-color-2);
}

.blogImages{
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: inline-block;
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
  }
  .error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
  }
  .success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
  }
  .success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: #001941;
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: -150px;
    left: 0;
    padding-left: 3px;
  color: #fff;
  width: 265px;
  }
  
  .check-success-icon{
    padding: 10px;
    margin-right: 10px;
  color: #fff;
  }
  .success-msg p, .success-msg-display p{
    margin-bottom: 0;
  }
  .error-msg p, .error-msg-display p{
    margin-bottom: 0;
  }

.service-banner{
    width: 100%;
    position: relative;
    display: inline-block;
}

.service-banner-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 450px;
    /*background-image: url('../images/carwash1-imag.jpg');*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-banner-inner{
    background-color: var(--font-white);
    padding: 30px;
    display: inline-block;
    width: fit-content;
    position: absolute;
    bottom: -55px;
    box-shadow: 0px 0px 15px 5px rgb(0 0 0 / 10%);
    left: 20px;
    border-radius: 12px;
}

.service-banner-inner h3{
    font-size: 24px;
    margin-bottom: 5px;
}

.repair-details-wrapper{
    padding: 20px 0px;
}

.repair-details-wrapper h3{
    font-size: 18px;
    margin-bottom: 10px;
}

.carservice-image{
    width: 100%;
    height: 500px;
    position: relative;
    display: inline-block;
}

.carservice-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mechanic-info{
    width: 100%;
    position: relative;
    display: inline-block;
}

.mechanic-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 350px;
    padding-right: 30px;
}

.mechanic-info-text{
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--theme-color-2);
    padding: 15px 15px;
    border-radius: 12px;
}

.mechanic-info-text h3{
    font-size: 20px;
    color: var(--font-white);
}

.mechanic-info-text p{
    color: var(--font-white);
}

.gallery_product_image{
    width: 100%;
    height: 250px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: ease-in 0.3s;
}

.gallery_product_image:hover img{
    transform: scale(1.5);
    transition: ease-in 0.3s;
}

.gallery_product_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease-in 0.3s;
}

.gallery_product_image a{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-1);
    border-radius: 15px;
    color: var(--font-white);
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
}

.gallery_product_image:hover a{
    visibility: visible;
    opacity: 1;
}

.portfolio-overlay{
    width: 100%;
    height: 100%;
    padding: 20px 0px;
    display: inline-block;
}

.po-inner h3{
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--theme-color-2);
}

.po-inner a{
    display: none;
}

.filter-button.active{
    background-color: var(--theme-color-2);
    color: var(--font-white);
    box-shadow: none;
    outline: none;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	/* opacity: 0.7; */
	background-color: #fff;
	z-index: 9999;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}

.gallery_product_image::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgb(0 0 0 / 30%);
}