@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root{
--primary:#0d6efd;
--dark: #21252f;
--body:#888;
--box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    line-height: 1.7;
}

h1,h2,h3,h4,h5,h6,
.display-4{
color:var(--dark);
font-weight: 500 !important;
}

a{
    color: var(--dark);
    text-decoration: none;
    transition: all 0.4s ease;
}

/*Nav bar*/

.top-nav{
background-color: #0d6efd;
padding-top: 5px;
padding-bottom: 5px;
}

.top-nav p{
    margin-bottom: 0;
    display: inline-block;
    margin-right: 16px;
    color:#fff;
}

.top-nav i,
.top-nav span{
    vertical-align: middle;
}

.social-links a{
    width: 32px;
    height: 32px;
    background-color:rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    font-size: 18px;
    border-radius: 100%;

}

.social-links a:hover{
    background-color: #fff;
    color:#0d6efd;
}
section{
    padding-top: 80px;
    padding-bottom: 80px;
}

.intro{
    margin-bottom: 40px;
}

.intro h6{
    font-weight: 600;
    color: #0d6efd;
    text-transform: uppercase;
}


.intro p{
    max-width: 500px;
    margin: auto;
}
.navbar {
    box-shadow:0 1px 4px rgba(0,0, 0, 0.3);
    
    }
.navbar .logo{
    width:160px;
}

.navbar .nav-link{
    font-size: 14px;
    font-weight: 600;

}





.hero{
    background-image: url(../img/hero/sliding-gate-swing-gate-automation.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
}

.hero::after{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    background-color:rgba(21,20, 51, 0.8);
    z-index:-1;
}
.info-box{
    display:flex;
   
}

.info-box h5{
    margin-top:40px;
    margin-left: 30px;
}
.info-box img{
     width:620px;
     margin-right: 26px;
}
.feature{
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    margin-left: 45px;
}
.feature img{
    width:100%;
}




#milestone{
    background: #0d6efd;
}

#milestone .display-4,
#milestone p{
    color: #fff;
}

#milestone .display-4{
    font-weight: 700;
}


.service-box{
    padding: 32px;
    box-shadow: 0px 6px 30px rgba(0,0,0,0.08);
    text-align: left;
}

.service-box img{
    width:60px;
    border-radius: 10px;
}

.service-box h5{
    margin-top: 24px;
    margin-bottom: 12px;
}


/* Team */
.team-member{
    text-align: center;
}
.team-member .img-wrapper{
    position: relative;
    overflow: hidden;
   
    justify-content: center;
}

.team-member .overlay{
    position: absolute;
    top:-10%;
    left:0;
    width:100%;
    height: 100%;
    background-color:rgba(0, 0, 255, 0.393);
    transition: all 0.4s ease;
    opacity: 0;
}

.team-member .social-links{
    position: adsolute;
    top:60%;
    left:50%;
    transform: translate(-50%,-50%);
    transition: all 0.4s ease;
}

.team-member:hover .overlay{
    opacity: 1;
    top:0;
}

.team-member:hover .social-links{
    opacity: 1;
    top:50%;
}

.team-member h5{
    margin-top: 24px;
}

footer{
    padding-top: 60px;
    padding-bottom: 20px;
   
    color:#fff;
    text-align: center;
    background:#0d6efd;
}

footer .navbar-brand{
    color:#fff;
}

.footer-top{
    margin-bottom: 40px;
}

.footer-bottom{
    border-top: 1px solid rgba(0, 0, 255, 0.393);
    padding-top:20px;
}

