@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: 'Teko', sans-serif;
    box-sizing: border-box;
}
h1{
    margin: 0;
    padding: 0;
}
h2{
    margin: 0;
    padding: 0;
}
h3{
    margin: 0;
    padding: 0;
}
h4{
    margin: 0;
    padding: 0;
}
h5{
    margin: 0;
    padding: 0;
}
h6{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: #000;
}
/* Color 
Blue- #034262
red- #ED1E24

*/

.container{
    max-width: 1140px;
    margin: 0 auto;
}
.row{
    display: flex;
}
.justify-content{
    justify-content: center;
}
.col-lg-12{
    width: 100%;
}
.col-lg-9{
    width: 75%;
}
.col-lg-8{
    width: 65%;
}
.col-lg-6{
    width: 50%;
}
.col-lg-4{
    width: 33.333%;
}
.col-lg-3{
    width: 25%;
}
.navigation{
	width: 100%;
	background: #fff;
    padding: 5px 0;
    z-index: 1;
}
.navigation .toggle-bar{
	display: none;
}
.navigation .row{
	display: flex;
}
.navigation .col-lg-6{
	width: 50%;
}
.navigation .logo{
	text-align: left;
}
.navigation .row .toggle-bar{
	text-align: right;
}
.navigation .logo img{
	width: 200px;
	padding: 0;
    margin-top: 15px;

}
.navigation .menu ul{
	list-style-type: none;
	width: 100%;
	overflow: hidden;
    margin: 0;
    padding: 0;
    text-align: right;
}
.navigation .menu ul li{
	display: inline-block;

}
.navigation .menu ul li a{
	display: inline-block;
    text-decoration: none;
    color: #034262;
    padding: 6px 20px;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 15px 0;
}
.navigation .menu ul li a:hover{
    color: #ED1E24;
}


.hero-section{
    height: 85vh;
    width: 100%;
    background: url('../images/car_clean_green_cloth-scaled.jpg');
    background-size: cover;
}
.hero-section .overlay{
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.7);
}
.hero-section .caption{
    height: 85vh;
    max-width: 700px;
    display: flex;
    align-items: center;
}
.hero-section .caption h2{
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 1.2em;
    font-weight: 600;
}
.hero-section .caption p{
    color: #ddd;
    font-size: 20px;
    line-height: 1.5em;
    margin-top: 20px;
}
.main-btn{
    display: inline-block;
    background: #ED1E24;
    padding: 15px 35px;
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
    margin-top: 25px;
    transition: .3s;
}
.main-btn:hover{
    background: #034262;

}
.heading h2{
    font-size: 50px;
    text-align: left;
    margin-top: 20px;
    position: relative;
}
.heading .divider{
    border-bottom: 4px solid #ED1E24;
    width: 150px;
    display: block;
    line-height:1em;
}

.featured-category{
    margin-top: 50px;
}
.featured-category .content{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

.featured-category .content .category-card{
    width: 100%;
}
.featured-category .content .category-card .image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    transition: .4s;
}
.featured-category .content .category-card .image img{
    width: 100%;
    height: 100%;
    transition: .4s;
}
.featured-category .content .category-card .image:hover img{
    transform: scale(1.5);   
}
.featured-category .content .category-card .caption h3{
    color: #000;
    font-size: 22px;
    text-align: center;
    margin-top: 15px;
}

.about-us{
    width: 100%;
    background: #ddd;
    margin-top: 70px;
    padding-bottom: 50px;
}
.about-us .heading h2{
    text-align: center;
    padding-top: 50px;
}
.about-us .content {
    margin-top: 50px;
}
.about-us .content .item{
    padding: 25px;
    background: #fff;
    margin: 10px;
    text-align: center;
}
.about-us .content .item i{
    font-size: 50px;
    color: #ED1E24;
}
.about-us .content .item h2{
    font-size: 20px;
    margin-top: 20px;
}
.product-section{
    width: 100%;
    margin-top: 50px;
}
.product-section .content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-top: 30px;
}
.product-section .content .product-card{
    border: 1px solid #ddd;
}
.product-section .content .product-card img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.product-section .content .product-card .details{
    padding: 15px;
}
.product-section .content .product-card .details h2{
    font-size: 20px;
}
.product-section .content .product-card:hover .details h2{
    color: #ED1E24;
}
.product-section .content .product-card .details p{
    color: #ED1E24;
    font-size: 18px;
    margin-top: 10px;
}
.product-section .more-btn{
    text-align: center;
    margin-top: 30px;
}
.product-section .more-btn a{
    display: inline-block;
    background: #ED1E24;
    padding: 15px 35px;
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
    margin-top: 25px;
    transition: .3s;
}
.product-section .more-btn a:hover{
    background: #034262;
}
.featured{
    height: 500px;
    width: 100%;
    background: url('../images/automotive-lighting-headlights-installation-2.jpg');
    background-size: cover;
    background-attachment: fixed ;

    margin-top: 70px;
}
.featured .overlay{
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.5);
}
.featured .caption{
    height: 500px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.featured .caption h2{
    color: #fff;
    font-size: 80px;
    font-weight: 700;
}
.featured .caption h3{
    font-size: 30px;
    color: #fff;
}

.contact-section{
    margin-top: 100px;
    background: #034262;
    padding: 70px 0;
}
.contact-section .row  {
    display: flex;
    flwx-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.contact-info {
    width: 50%;
}
.contact-section .contact-info-item {
    display: flex;
    margin-bottom: 30px;
} 
.contact-section .contact-info-icon {
    height: 70px;
    width: 70px;
    background-color: #fff;
    text-align: center;
    border-radius: 50%;
}
.contact-section .contact-info-icon i {
    color: #034262;
    font-size: 30px;
    line-height: 70px;
}
.contact-section .contact-info-content {
    margin-left: 20px;
}
.contact-section .contact-info-content h4 {
    color: #ED1E24;
    font-size: 25px;
    margin-bottom: 5px;
}
.contact-section .contact-info-content p {
    color: #FFF;
    font-size: 18px;
}
.contact-section .contact-form {
    background-color: #fff;
    padding: 40px;
    width: 45%;
    padding-bottom: 20px;
    padding-top: 20px;
}
.contact-section .contact-form h2 {
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}
.contact-section .contact-form .input-box {
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.contact-section .contact-form .input-box input,
.contact-form .input-box textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}
.contact-section .contact-form .input-box span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}
.contact-section .contact-form .input-box input:focus ~ span,
  .contact-form .input-box textarea:focus ~ span{
    color: #ED1E24;
    font-size: 12px;
    transform: translateY(-20px);
}
.contact-section .contact-form .input-box input[type="submit"]{
    width: 100%;
    background: #034262;
    color: #FFF;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #034262;
    transition: 0.5s;
}
.contact-section .contact-form .input-box input[type="submit"]:hover{
    background: #FFF;
    color: #000;
}


/* Footer css...................*/
.footer{
	background-color: #000;
    padding: 50px 0;
    padding-bottom: 0;
}
.footer ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer .footer-col p{
    color: #bbbbbb;
    font-weight: 400;
    text-align: justify;
}
.footer-col h4{
	font-size: 20px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #ED1E24;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 18px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer .newsletter input{
    width: 100%;
    padding: 10px;
    background: #fff;
    font-size: 18px;
    border: 1px solid #707070;
    outline: none;
    border-radius: 5px;
    box-sizing: border-box;
}
.footer .newsletter button{
    background: #034262;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    margin-top: 10px;
}
.footer .newsletter button:hover{
    background: #01324b;
}
.footer .copyright{
    text-align: center;
    border-top: 1px solid #1a1a1a;
    margin-top: 40px;
}
.footer .copyright p{
    color: #fff;
    padding: 30px 0;

}

/* Products Page css */
.single-page-hero {
    height: 300px;
    width: 100%;
    background: url('../images/car_clean_green_cloth-scaled.jpg');
    background-size: cover;
}
.single-page-hero .overlay{
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.7);
}
.single-page-hero .caption{
    height: 300px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-page-hero .caption h2{
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 1.2em;
    font-weight: 600;
    text-align: center;
}

.product-page .product-section{
    margin-top: 80px;
    margin-bottom: 80px;
    
}
.product-page .product-section .heading{
    margin-top: 60px;
}













/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}

  
@media (max-width: 991px) {
    .contact-section {
      padding-top: 50px;
      padding-bottom: 50px;
    }
    
    .contact-section .row {
      flex-direction: column;
    }
    
    .contact-section .contact-info {
      margin-bottom: 40px;
      width: 100%;
    }
    
    .contact-section .contact-form {
      width: 100%;
    }
}



@media only screen and (max-width: 768px){
    .col-lg-4{
        width: 100%;
    }
    .col-lg-6{
        width: 100%;
    }
    .col-lg-3{
        width: 100%;
    }
    .navigation{
        width: 100%;
    }
    
    .navigation .row{
        display: flex;
    }
    .navigation .col-lg-6{
        width: 50%;
    }
    .navigation .col-lg-9{
        width: 100%;
    }
    .navigation img{
        width: 25%;
        padding-top: 0px;
        padding: 17px;
    }
    .navigation .nav-order-btn{
        display: inline-block;
        vertical-align: sub;
    }

    .navigation .toggle-bar{
        display: block;
        text-align: right;
    }
    .navigation-bar{
        display: none;
    }
    .navigation .fa{
        font-size: 27px;
        color: #000;
        padding: 18px 20px;
    }
    .navigation .menu ul{
        list-style-type: none;
        width: 100%;
        overflow: hidden;
        background: #c9c9c9;
        position: absolute;
        margin-left: 0;
        left: 0;
        text-align: left;
        display: none;
        margin: 0;
        padding: 0;
        z-index: 1;
        margin-top: 20px;
    }
    
    .navigation-bar-show{
        display: block;
    }
    .navigation .menu ul li{
        display: block;
        border-bottom: 1px solid #828282;
    }
    .navigation .menu ul li a{
        display: inline-block;
        text-decoration: none;
        padding: 20px 16px;
        font-size: 18px;
        font-weight: 600;
        width: 100%;
        margin: 0;
    }
    .navigation .logo img{
        width: 100px;
        padding: 0 10px;
    }
}