*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
html,body{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(images/Bkg.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content:'';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}
nav .fa{
    display: none
}

.nav-links li:hover ul.dropdown {display: block;}
.nav-links li ul.dropdown{
    position: absolute;
    display: none;
    width: 100px;
    padding-top: 0;
}
.nav-links li ul.dropdown li{
    display: block;
    list-style-type: none;
}
.nav-links li ul.dropdown li a{
    
    font-size: 15px;
    display: block;
    font-weight: 400;
}
.arrow-down{
    width: 0;
    height: 0;
    position: relative;
    top: 15px;
    right:-5px;
    content: '';
}
@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        float: none;
        margin-top: 0;
        text-align: center;
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
        
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    nav-links ul{
        padding: 30px;
    }
    .hero-btn:hover{
        background: #777;
    }
    
    .gallery-col img{
    width: 10%;
   
    }    
}
.services{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.service-col{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 3px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.service-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}
.gallery{
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 50px;
}
.gallery-col{
    flex-basis: 22%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.gallery-col img{
    width: 100%;
    display: block;
   
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    background: rgba(226,0,0,0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    position: absolute;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}


.about-col{
   flex-basis: 44%;
    
}
.sub-header{
    height: 75vh;
    width: 100%;
    background-image:linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/Bkg.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;

}
.sub-header h1{
    margin-top: 100px;
}

.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col img{
    width: 100%;
}
.about-col h1{
    padding-top: 0;
}
.about-col p{
    padding: 15px 0 25px;
}

.about-us-home{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
/*gallery*/
.gallery-page{
    padding: 20px;
    width: 100%;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}
.gallery-page ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.gallery-page ul li{
    list-style: none;
    background: #eee;
    padding: 8px 20px;
    margin: 5px;
    
    cursor: pointer;
    letter-spacing: 1px;
    
}
.gallery-page ul li.active{
    background: #03a9f4;
    color: #fff;
}
.product{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
/*.row .gallery-col{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}*/
.product .itembox{
    position: relative;
    width: 350px;
    height: 350px;
    
    margin: 5px;
    display: block;
}
.product .itembox.hide{
    display: none;
}
.product .itembox img{
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
   
}


.footer{
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
}

.footer .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer .container .sec{
    margin-right: 30px;
}

.footer .container .sec.aboutus
{
    width: 40%
}

.footer .container  h2{
    position: relative;
    
    font-weight: 600;
    margin-bottom: 15px;
}

.footer .container  h2:before{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #f00;
}
.footer .container p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    
}

.socials{
    margin-top: 20px;
    display: flex;
}

.socials li{
    list-style: none;
}

.socials li a{
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
    
}

.socials li a:hover{
    background: #f00;
}

.socials li a .fa{
    color: #fff;
    font-size: 20px;
}

.quicklinks{
    position: relative;
    width: 25%;
    
}

.quicklinks ul li{
    list-style: none;
}

.quicklinks ul li a{
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}
.quicklinks ul li a:hover{
    color: #f00;
}

.contact{
    width: calc(35% - 60px);
    margin-right: 0 !important;
}
.contact .info{
    position: relative;
    
}
.contact .info li{
    display: flex;
    margin-bottom: 16px;
}
.contact .info li span:nth-child(1){
    color: #222;
    font-size: 20px;
    margin-right: 5px;
}
.contact .info li span{
    color: #999;
}
.contact .info li a{
    color: #999;
    text-decoration: none;
}
.contact .info li a:hover{
    color: #f00;
}

.copyright
{
    width: 100%;
    background: #fff;
    padding: 8px 10px;
    text-align: center;
    color: #999;
}
@media(max-width: 991px)
{
    .footer{
        padding: 40px;
    }
    .footer .container{
        flex-direction: column;
    }
    .footer .container .sec{
        margin-right: 0;
        margin-bottom: 40px;
    }
    .footer .container .sec.aboutus,
    .quicklinks,
    .contact
    
    {
        width: 90%;
    }
    .copyright
    {
       padding: 8px 30px; 
    }
}

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
    
}
.location iframe{
    width: 100%;
}

.contact-us
{
    width: 80%;
    margin: auto;
}

.contact-col
{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div
{
    display: flex;
    align-items:center;
    margin-bottom: 40px;
}

.contact-col div .fa
{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    padding: 0;
}
  
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.contact-col .hero-btn{
    color: #fff;
    border: 1px solid #fff;
background: #999;
}
.contact-col .hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}

/*video gallery*/
.video-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.video-container .video{
    height: 15rem;
    width: 25rem;
    margin: 2rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.5);
    overflow: hidden;
    border-radius: 1rem;
}

.video-container .video video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    outline: none;
    border: none;
    cursor: pointer;
}
.video-container .video video:hover{
    transition: .2s linear;
    transform: scale(1.3);
    
}

.video-container .video .active{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: 80%;
    box-shadow: 0 0 0 100vh rgba(0,0,0,.7);
    z-index:1; 
}

.video-container .video .active:hover{
    transition: none;
    transform: translate(-50%, -50%) scale(1);
}


.whatsapp{
position: fixed;
right: 0px;
top: 52%;
}
.whatsapp h5{
color: white;
background: #20b20f;
padding: 12px;
border-radius: 10px;
}