*{
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Slab', sans-serif;
    outline: none;
    text-decoration: none;
    transition: all .3s linear;
}
:root{
    --mainRed:#F0542D;
    --secondaryRed:#BF360C;
    --whiteColor:#fff;
    --darkGrey:#263238;
    --lightGrey:#E0E0E0;
    --boxShadow:0 6px 6px hsla(24, 71%, 73%, 0.537);
}

body{
   background-color: var(--whiteColor);
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}
section{
    padding: 3rem 9%;

}
.sub-title{
    font-size: 2rem;
    color: var(--mainRed);
    font-weight: 500;
    margin-bottom: 1rem;
}

.title-text{
    color: var(--whiteColor);
    font-size: 3.4rem;
    font-weight: normal;
}
.fig-text{
    display: inline-block;
    background: var(--darkGrey);
    padding: .6rem 3rem;
    clip-path: polygon(100% 0%, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
}
.alt-title{
    color: var(--mainRed);
    font-size: 1.7rem;
    font-weight: normal;
}
li{
    list-style: none;
}
p{
    font-size: 1.75rem;
    margin: 1.7rem 0;
    font-weight: 200;
    letter-spacing: .5px;
}
a{
    text-decoration: none;
    color: inherit;
}
.btn{
    display: inline-block;
    margin-top: 1rem;
    background-color: var(--mainRed);
    color: var(--whiteColor);
    padding: 1rem 3rem;
    border: .1rem solid var(--lightGrey);
    cursor: pointer;
    font-size: 1.7rem;
}
.section-content{
    text-align: center;
    padding-top: 3.5rem;
}

/* divider */
.custom-shape-divider-top-1636684256 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1636684256 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 41px;
}

.custom-shape-divider-top-1636684256 .shape-fill {
    fill: var(--mainRed);
   opacity: .9;

}

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-top-1636684256 svg {
        width: calc(100% + 1.3px);
        height: 24px;
    }
}

/* ends divider */


/***** Top bar content ******/
.top-content{
    padding: 1rem 10%;
    background: var(--darkGrey);
   color: var(--darkGrey);
   position: relative;
   z-index: 1;
}
.top-content{
    display: flex;
    justify-content: flex-end;
    align-items: center;    
}
.top-content ul{
    padding: 0 1.3rem;
    font-size: 1.5rem;
}
.top-content ul li{
    list-style: none;
    font-weight: lighter;
    letter-spacing: .5px;
}
.top-content ul li i{
    font-size: 1.8rem;
    padding: 0 7px ;    
}
.top-bar .top-content::before{
    position: absolute;
    content: '';
    width: 465px;
    height: 40px;
    background-color: var(--lightGrey);
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    top: 0;
    z-index: -1;
}

/***** Header navbar ******/
.header{
    position: fixed;
    background-color: var(--mainRed);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 9%;
    border-bottom: 2px solid rgba(235, 176, 137, 0.637);
    top: 40px; left: 0; right: 0;
    z-index: 1000;   
}

.header .logo{
    display: grid;
}

.header .logo img{
    padding: 5px;
    position: absolute;
    background-color: var(--lightGrey);
    border-radius: 5px;
    margin-top: -50px;
    z-index: 9;
}
.header .logo span{
    text-transform: uppercase;
    margin-left:calc(0% + 200px);
    color: var(--whiteColor);
    flex-basis: 300px;
    font-size: 2.3rem;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;

}
.header .logo span:nth-last-child(1){
    color: var(--lightGrey);
    font-size:1.8rem ;
    letter-spacing: normal;
    font-weight:lighter;
    text-transform: capitalize;
   
}
.header .logo h5{
    font-weight: 100;
    
}
.header .navbar .mobile-logo{
    display:none;
}

.header p{
    color: var(--whiteColor);
    font-size: 30px;
}

.header .navbar a{
    color: var(--whiteColor);
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 .8rem;
    letter-spacing: 1px;
}
.header .navbar a:hover{
    color: var(--darkGrey);
    border-bottom: 1px solid var(--darkGrey);
    padding-bottom: .5rem;
}

.header #menu-button{
    color: var(--whiteColor) ;
    cursor: pointer;
    font-size: 35px;  
    z-index: 1000;
    padding: 5px 12px;
    border:  .1rem solid var(--mainRed);
    border-radius: 5px;
}

#menu-button{
    display: none;
    color: var(--whiteColor);
}

/* header styles after scroll */

.header-scrolled-active{
    box-shadow: 3px 3px 5px var(--mainRed);
    background: rgba(0,0,0,.8);
    top: 0;
    height: 60px;
    border-bottom: none;
    transition: all  .4s ease;
}
 .header-scrolled-active .navbar a:hover{
    color: var(--mainRed) ;
    border-bottom: 1px solid var(--mainRed);
    padding-bottom: .5rem;
}
.header-scrolled-active .logo img {
    margin-top: -5px;
    width: 150px;
    height: 125px;
    border-bottom: 1px solid var(--secondaryRed);
    box-shadow: 0 6px 6px rgba(0,0,0,.7);
}
/* ends scroll */


/***** Home section ******/
.home{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    position: relative;
    z-index: 0 ;
}
 .overlay{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
}
.home .content{
    text-align: center;
    position: absolute;
     color: var(--whiteColor);
}
.home .content h3{
    font-family: 'Roboto Slab', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    text-shadow: 0 .3rem .5rem rgba(207, 65, 9, 0.424);   
}
.home .content p{
    padding: .5rem 0;
    font-size: 2rem;
}

.home .video-container video{
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home .controls{
    padding: 1rem;
    border-radius: 5rem;
    background: rgba(0,0,0,.7);
    position: relative;
    top: 15rem;
}
.home .controls .vid-btn{
    height: 1.2rem;
    width: 1.2rem;
    display: inline-block;
    border-radius: 50%;
    background: var(--lightGrey);
    cursor: pointer;
    margin: 0 .5rem;
}
.home .controls .vid-btn.active{
    background: var(--mainRed);
}

/***** Mid-request  section ******/
 .mid-request{
    margin-top: 0;
    padding: 0;
}
.mid-request .content{
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    background-color: var(--mainRed);
    padding: .3rem 0 1rem .5rem;
}
.mid-request .content .title-text{
    padding-left: 1rem;
}

.mid-request .content .btn{
    background-color: var(--darkGrey); 
}

/***** About section ******/
.about{
    background: var(--lightGrey);
    position: relative;
}
.about .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
}
.about .row .about-content{
    flex:  1 1 40rem;
    padding: 2rem;
}
.about-content .sub-title{
    display: inline-block;
    background: var(--darkGrey);
    padding: .5rem 2rem;
    clip-path: polygon(100% 0%, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
}
.about-content .title-text{
    color: var(--darkGrey);
    margin-bottom: 3rem;
}
.about-content .permit-text{
    color: var(--mainRed);
    text-transform: uppercase;
    font-weight: 400;
}
.about .row .image{
    flex: 1 1 40rem;
}
.about .row .image img{   
    width: 100%;
}

/* ***** Services section ***** */
.services{
    position: relative;
    background-color: #EDEEF0;
}
.services .title-text{
    color: var(--darkGrey);
}

.services .services-content p{
   padding: 2rem 4rem 0 ;
    width: 80%;
    margin: 0 auto;
}

.services .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 4rem;
    
}
.services .box-container .box{
    flex: 1 1 40rem;
    border-radius: .5rem;
    padding: 2rem 1rem 1rem ;
    text-align: center;
    border: 2px solid rgba(235, 176, 137, 0.337);
    background: var(--lightGrey);
    
}
.services .box-container .box p{
    padding: 1.3rem;
    font-size: 1.6rem;
    line-height: 1.5;
}
.services .box-container .box i{
    padding: 2rem 0 2rem 0 ;
    font-size: 4rem;
    color: var(--mainRed);
    border: .2rem solid var(--mainRed);
    height: 8rem;
    width: 8rem;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 6px 6px hsla(24, 71%, 73%, 0.537);
}
.services .box-container .box .alt-title{
    margin: 1.7rem 0
}
.services .box-container .box ul li{
    font-size: 1.3rem;
    color: var(--darkGrey);
    opacity: .8;
}

.services .box-container .box:hover{
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    border: none;
}

/****** gallery *******/

.gallery{
    background: var(--darkGrey);
    padding-bottom: 5rem;
    position: relative;
}
.gallery .section-content{
    margin-bottom: 3rem;
}
.gallery .lightbox{
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap:2rem;
}
.gallery .lightbox a{
    height: 30rem;
    overflow: hidden;    
    box-shadow: 0px 12px 12px -11px rgba(240,84,45,0.94);
    -webkit-box-shadow: 0px 12px 12px -11px rgba(240,84,45,0.94);
    -moz-box-shadow: 0px 12px 12px -11px rgba(240,84,45,0.94);

}
.gallery .lightbox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery .lightbox a:hover img{
    transform: scale(1.1);
}



/****** reviews ********/
.review{
    background-image: url('/assets/images/review-photos/review-2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;    
}
.review::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}
.review .section-content{
    text-align: center;
    z-index: 99;
    position: relative;
    margin-bottom: 2rem;
}
.review .review-slider{
    padding-bottom: 2rem;
}
.review .box{
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    border-radius: .5rem;
    background: var(--secondaryRed);
    height: 447px;
}
.review .box img{
    height: 13rem;
    width: 13rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
.review .box .sub-title{
    color: var(--lightGrey);
}
.review .box small{
    color: var(--whiteColor);
    font-size: 1.3rem;
    font-weight: 100;
}
.review .box small span{
    padding-left: 4rem;
}
.review .box p{
    padding: 1rem 0;
    color: var(--lightGrey);
}

.review .swiper-slide:nth-of-type(2){
    font-size: 8px;
    color:blue;
    background: red;
}
.review .box .stars i{
    color: yellow;
    font-size: 1.7rem;
}

/* contact */
.contact{
    position: relative;
}
.contact .section-content{
    margin-bottom: 3rem;
}
.contact .title-text{
    color: var(--darkGrey);
   
}
.contact .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    background: var(--whiteColor);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.2)
}
.contact-box{
    background: var(--darkGrey);
    padding: 5.55rem  ;
    color: var(--lightGrey);
    flex: 1 1 50rem;
}
.contact-box h2{
    text-align: center;
    margin-top: -3rem;
    padding-bottom: 3rem;
}
.contact .contact-details{
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.contact .contact-details i{
    border: 1px solid var(--mainRed);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    padding: 1.4rem;
    color: var(--mainRed);
}
.contact-details .details-text{
    display: flex;
    align-items: center;
    margin-left: 2rem;
}
.contact-details .details-text h6{
    font-size: 14px;
    font-weight: 600;
    /* text-transform: uppercase; */
    font-family: 'Raleway' sans-serif;
}

.contact-details .details-text span p{
    line-height: .5;
    margin-left: 1rem;
    font-size: 17px;
}

.contact .row form{
    flex: 1 1 50rem;
    padding: 2rem;
    border-radius: .5rem;
}
.contact .row form .inputBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact .row form .inputBox input,
.contact .row form textarea{
    width: 49%;
    padding: 1rem ;
    margin: 1rem 0;
    font-size: 1.5rem;
    color: var(--darkGrey);
    text-transform: none;
}
.contact .row form textarea{
    height: 15rem;
    resize: none;
    width: 100%;
}

/* brands */
.brand-container{
    background: var(--lightGrey);
    text-align: center;
    position: relative;
}
.brand-container .brand-slider{
    padding: 2rem 0;
}

/* ---footer --- */
.footer{
    background: var(--darkGrey);
    color: var(--lightGrey);
    padding-top: 3rem;
}
.footer .box-container{
    display: flex;
    flex-wrap: wrap;
}
.footer .box-container .box{
    padding: 1rem .05rem;
    flex: 1 1 25rem;
}
.footer .box-container .box h4{
    opacity: .9;
    padding: .7rem 0;
    text-transform: capitalize;
}
.footer .box-container .box p{
    font-size: 1.3rem;
    padding: .5rem 2rem .5rem 0;    
}

.footer .box-container .address p{
    padding-left: .3rem;
    margin: 0;
}
.footer .box-container .address p span{
    color: var(--whiteColor);
    font-weight: bold;
}

.footer .box-container .box a{
    display: block;
    font-size: 1.5rem;
    padding: .5rem 0;   
    color: var(--lightGrey);
}
.footer .box-container .box a:hover{
    color: var(--mainRed);
    text-decoration: underline;
}
.footer .credit{
    text-align: center;
    padding: 2rem 1rem .5rem;
    border-top: 1px solid var(--lightGrey);
    opacity: .6;
    font-size: 1.3rem;
    font-weight: 100;
}

/* to top button */
#toTop{
    position: fixed;
    right: 3rem;
    bottom: 2rem;
    z-index: 99;
    background: var(--mainRed);
    font-size: 2rem;
    width: 4.7rem;
    height: 4.7rem;
    text-align: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 1rem 1.5rem;
    outline: 0;
    color: var(--whiteColor);
    opacity: 0;
    transition: all .4s ease;
}
#toTop.active{
    bottom: 2rem;
    opacity: 1;
}
/* ends to top button */



/* ======= Media Queries ========= */

@media (max-width: 1200px){
    html{
        font-size: 55%;
    }
}
@media (max-width: 991px){    
    section{
        padding: 2rem;
    }
    .top-bar .top-content{
        padding-right: 0;
        height: 40px;
    }

    .header{
        padding: 1.5rem 2rem;        
    }
    
    .header .logo{
        margin-top: 0px;
       
    }
    .header .logo img{
        width: 100px;
        height: 60px;
    }
    .header .logo span{
        margin-left: calc(0% + 120px);
        font-size: 1.5rem;
    }
    #toTop.active{
        right: 1rem;
        
    }
}    

@media (max-width: 768px){

    #menu-button{
        display: inline-block;
        
    }
    .header .logo img{
        margin-top: -15px;
    }
    .header .navbar{
        position: absolute;
        top: 100%; right: -100%;
        background: var(--darkGrey);
        width: 30rem;
        height: calc(100vh - 9rem);
      
    }
    .header .navbar a{
        color: var(--mainRed);
        display: block;
        margin: 2.5rem 0;
        padding: .5rem;
        font-size: 1.8rem;
        text-align: center;   
        text-decoration: none;    
    }
    .header .navbar a:hover{
        border-bottom: none;
        transform: scale(1.2);
        color: var(--whiteColor)
    }
    .header .navbar .mobile-logo{
        display: block;
        margin-top: 150px;      
        position: relative;
        padding: 0 2rem;
    }
    .header .navbar .mobile-logo .logo-img{
        background-color: var(--lightGrey);
        border-radius: 5px;
        
    }
    .header .navbar.active{
        right: 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .home .content p{
        padding: .5rem 2rem;
    }
    .home .controls{
        top: 18rem
    }
    
    .mid-request .content .title-text{
        font-size: 2.5rem;
    }
    .mid-request .content .btn{
        font-size: 1.5rem;
        padding: .7rem 2rem;
        margin-right: 1rem ;
        text-align: center;
    }       
    .review .box{
        height: auto;
    } 
    .gallery .lightbox{
        grid-template-columns: 1fr;
    }
    .contact .contact-box{
       padding:5rem 0;
    }
    .contact .contact-box .contact-content .contact-details{
        padding-left: 1rem;
    }
    .contact-details .details-text span p{
        font-size: 14px;
    }
}

@media (max-width: 450px){
    html{
        font-size: 50%;
    }
    .top-bar .top-content{
        padding-left: 0;
    
    }
    .top-bar .top-content ul:nth-child(1){
        padding: 0 ;
    }
   
    .contact .row form .inputBox input{
        width: 100%;
    }
}