@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');

*{padding:0 ;
    margin:0;
    box-sizing:border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    padding-top: 100px;
}

/*global tags */
h1{
    font-size: 2.5rem;
    font-weight: 700;
    color:#009688;
}

span{
    font-size:0.9rem;
    color:#757373;

}
h6{
    font-size:1.1rem;
    color:#009688;
}

/*navigation*/

nav{
    top:0;
    position:fixed;
    width:100%;
   background-color: #fff;
    display:flex;
    font-display: row;
    justify-content: space-between;
    align-items: center;
    padding:0.2vw 6vw; 
    z-index:999;
    transition: top 0.3s; 
  
}

nav img{
    height: auto;
    max-height: 90px;
    width:auto;
    max-width: 100%;
    cursor: pointer;
}
nav .navigation{
    display:flex;
}
#menu-btn{
    width:30px;
    height:30px;
    display: none;

}
#menu-close{
    display:none;
}
nav .navigation ul {
    display:flex;
    justify-content: flex-end;
    align-items: center;


}

nav .navigation ul li{
    list-style:none;
    margin-left: 30px;
}

nav .navigation ul li a{
    text-decoration: none;
    color: #009688;
    font-size:16px;
    font-weight: 500;
    padding:2px;
     
    transition: 0.5s ease;
    
}

nav .navigation ul li a:hover{
    
    border-radius: 7px;
    padding: 10px;
    background-color:#009688;
    color:whitesmoke;

}
#banner{
    background: linear-gradient(rgba(0,0,0,0.5),#009688), url(Images/serve.jpg);
    background-size: cover;
    background-position: center;
    height:100vh;

}

.banner-text{
    text-align: center;
    color:#fff;
    padding-top: 180px;

}
.banner-text h1{
    font-size: 130px;
    color:#fff;
}
.banner-text p{
    font-size: 20px;
    font-style: italic;
}
.banner-btn{
    margin: 70px auto 0;

}
.banner-btn a{
    width:150px;
    text-decoration: none;
    display: inline-block;
    margin :0 10px;
    padding: 12px 0;
    color:white;
    border: 0.5px solid #fff;
    border-radius: 10px ;
    position: relative;
    z-index: 1;
    transition: color 0.5s;;
}
.banner-btn a span{
    width:0%;
    height:100%;
    position:absolute;
    top :0;
    left: 0;
    border-radius: 10px;
    background: white;
    z-index:-1;
    transition: 0.5s;
}
.banner-btn a:hover span{
    width:100%;
}
.banner-btn a:hover{
   
    color:#009688;

}

.title-text{
    text-align: center;
    padding-bottom: 70px;

}
.title-text p{
    margin:auto;
    font-size:20px;
    color:#009688;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;

}
.title-text p::after{
    content:'';
    width:50px;
    height:35px;
    background: linear-gradient(#019587,#fff);
    position: absolute;
    top: -20px;;
    left:0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
.title-text h1{
    font-size: 50px;
}

#service{
    width:100%;
    padding:70px 0;
    background: #efefef;
}
.service-box{
    width:80%;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin:auto;

}
.single-service{
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color:#fff;
    position: relative;

}

.single-service img{
    width: 100%;
    border-radius: 7px;

}
.overlay {
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgba(0,0,0,0.5),#009688);
    opacity: 0;
    transition: 1s;

}
.single-service:hover .overlay{
    opacity: 1;

}
.service-desc{
    width: 80%;
    position:absolute;
    bottom:0;
    left:50%;
    opacity:0;
    transform: translateX(-50%);
    transition:1s;

}
hr{
    background: #fff;
    height: 2px;
    border:0;
    margin:15px auto;
    width:60%;

}
.service-desc p{
    font-size:14px;
}

.single-service:hover .service-desc{
    bottom:40%;
    opacity:1;


}
@media screen and (max-width: 770px){
    .single-service{
        flex-basis: 100%;
        margin-bottom:30px;
    }
    .service-desc p{
        font-size:12px;
    }
    hr{
        margin:5px auto;
    }
    .single-service:hover .service-desc{
        bottom:25% !important;
        
    
    
    }
}
#footer{
    padding:100px 0 20px;
    background-color: aliceblue;
    
}
.footer-row{
    width:80%;
    margin:0 auto;
    display:flex;
    justify-content: space-between;
    flex-wrap:wrap;

}
.footer-left,.footer-right{
    flex-basis: 45%;
    padding:10px;
    margin-bottom:20px;

}
.footer-right{
    text-align: right;
}
.footer-row h1{
    margin:10px 0;

}
.footer-row p{
    line-height:35px ;
    
}
.footer-left .fa,.footer-right .fa{
    font-size:20px;
    color:#009688;
    margin:10px;

}
.social-links{
    text-align: center;
}
.social-links .fa-brands{
    height:40px;
    width:40px;
    font-size:20px;
    line-height:40px;
    border:1px solid #009688;
    margin: 40px 5px 0;
    color: #009688;
    cursor: pointer;
    transition: 0.5s;
    

}
.social-links .fa-brands:hover{
    background: #009688;
    color:#fff;
    transform:translateY(-7px)
}
.social-links p{
    font-size: 12px;
    margin-top: 20px;
}
@media screen and (max-width: 770px){
    .banner-text h1 {
        font-size: 70px;
        color: #fff;
    }
    #menu-btn{
        
        display:initial;
    
    }
    #menu-close{
        display:initial;
        font-size: 1.6rem;
        color:#fff;
        padding:30px 0 20px 20px;
    }
    nav .navigation ul{
        position: absolute;
        top:0;
        right:-220px;
        width:220px;
        background-color:#0096879f;
        backdrop-filter: blur(4.5px);
        border:1px solid rgba(225,225,225,0.18);
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: 0.3s ease;
    }
    nav .navigation ul.active{
        right: 0;
    }
    nav .navigation ul li{
        padding: 20px 0 20px 40px;
        margin-left: 0;
    }
    nav .navigation ul li a{
        color:#fff;

    }

    .footer-left,.footer-right{
        flex-basis:100%;
        font-size:14px;
    }
}