*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
#banner{
    background: linear-gradient(rgba(0,0,0,0.3), transparent),url(images/home-3.JPG);
    background-size: cover;
    padding: 0 8%;
    background-position: center;
    height: 100vh;
}

.banner-text{
    text-align: center;
    color: #fff;
    padding-top: 180px;
}
.banner-text h1{
    font-size: 95px;
    line-height: 160px;
    margin-left: -10px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    /*background: url(images/home-2.png);
    -webkit-background-clip: text;*/
}
.banner-text h3{
    font-size: 30px;
    font-style: italic;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}
.banner-text h4{
    font-size: 25px;
    font-style: arial;
    margin-top: 20px;
    word-spacing: 10px;
}
.banner-text h4 .img{
    word-spacing: 10px;
}
.banner-btn{
    margin: 50px auto 10px;
}
.banner-btn a{
    width: 160px;
    text-decoration: overline;
    font-weight: 200;
    display: inline-block;
    margin: 0 10px;
    padding: 10px 0;
    color: #fff;
    border: 3px solid #fff;
    background-color: #e95950;
    position: relative;
    z-index: 1;
    transform: color 0.5s;
}
.banner-btn a span{
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #e84cb1;
    z-index: -1;
    transition: 0.5s;
}
.banner-btn a:hover span{
    width: 100%;
}
.banner-btn a:hover{
    color: #000;
}

nav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .logo{
    width: 120px;
    top: 4%;
    left: 4%;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}
.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%;
}
/*----
#menuBtn{
    width: 50px;
    height: 50px;
    background: #009688;
    text-align: center;
    position: fixed;
    right: 30px;
    top: 20px;
    border-radius: 3px;
    z-index: 3;
    cursor: pointer;
}
#menuBtn img{
    width: 20px;
    margin-top: 15px;
}
------*/

@media screen and (max-width: 500px){
nav .logo{
    width: 90px;
}
.banner-text h1{
    font-size: 35px;
}
.banner-text h3{
    font-size: 22px;
}
.banner-btn a{
    display: inline-grid;
    margin: 2px 5px 10px;
    height: 58px;
    width: 103px;
    padding: initial;
}
.nav-links ul li{
    display: block;
    margin-right: 20px;
}
}



/*------
@media(max-width: 500px){
    .banner-text h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        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;
    }
    ----*/

/*----------Features----------*/

#feature{
    width: 100%;
    padding: 40px 20px;
}
.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: -20;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
.title-text h3{
    font-size: 50px;
    
}
.feature-box{
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}
.features{
    flex-basis: 50%;
}
.features-img{
    flex-basis: 50%;
    margin:auto;
    filter: drop-shadow(8px 8px 4px #e84cb1);
}
.features-img img{
    width:75%;
    border-radius: 10px;
}
.features h3{
    text-align: center;
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #009688;
}
.features-desc{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.feature-icon .fa{
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 8px;
    color: #e84cb1;
    border: 2px solid #e84cb1;
}
.feature-text p{
    padding: 0 20px;
    text-align: initial;
}
@media screen and (max-width: 770px){
    .title-text h3{
        font-size: 35px;
    }
    .features{
        flex-basis: 100%;
    }
    .features-img img{
        width:120%;
    }
}

/*----------blog----------*/

#blog{
    width: 100%;
    padding: 40px 20px;
    background: #efefef;
}
.blog-row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px; 
}
.blog img{
    width: 100%;
    max-height: 60vh;
    height: auto;
}
.blog-meta{
    font-size: 16px;
    margin-bottom: 2px;
}
.blog h2{
    margin-top: 10px;
    font-size: 20px;
}
.blog-text{
    font-size: 15px;
    text-align: left;
}

.btn{
    margin-top: 50px;
    background-image: linear-gradient(to right, #1c03b5, #5c8bef);
    padding: 5px 12px 8px;
    border-radius: 20px;
    font-size: 18px;
    color: #fff;
    border: none !important;
}
.btn:hover{
    background-image: linear-gradient(to right, #009688, #00b128);
    text-decoration: none;
    color: #fff;
}

@media screen and (max-width: 770px){
.blog-meta{
    font-size: 15px;
}
.blog img {
    width: 230px;
}
.blog h2{
    font-size: 20px;
}
.blog-text{
    font-size: 15px;
    margin: 20px 0px 10px;

}
.btn{
    font-size: 12px;
}
}


/*----------portfolio----------*/

#portfolio{
    width: 100%;
    padding: 40px 20px;
    background: #fff;
   
}
.gallery{
    margin: 10px 50px;
}
.gallery img{
    width: 230px;
    height: 50vh;
    padding: 5px;
    filter: brightness(100%);
    transition: 1s;
}
.gallery img:hover{
    filter:brightness(100%);
    transform: scale(1.1);
}

@media screen and (max-width: 770px){
.gallery{
    margin: 10px 20px;
}
.gallery img{
    width: 80px;
    height: 20vh;
    padding: 3px;
}
}

/*----testimonial----*/

#testimonial{
    width: 100%;
    padding: 40px 20px;
    background: #efefef;
}
#google-rating{
    text-align: center;
    margin-top: 20px;
    
}
#google-rating a{
    width: 200px;
    text-decoration: none;
    font-weight: 200;
    display: inline-block;
    margin: 0 10px;
    padding: 10px 0;
    color: #fff;
    border: 3px solid #fff;
    background-color: #e95950;
    position: relative;
    z-index: 1;
}


/*----footer----*/

#footer{
    padding: 40px 0px;
    background: #fff;
    position: relative;   
}
.location{
    width: 80%;
    margin: auto;
    padding: 40px 0;
}
.location iframe{
    width: 100%;
}
.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 0;
    margin-bottom: 20px;
}
.footer-right{
    text-align: right;
}
.footer-row h3{
    margin: 10px 0;
}
.footer-row p{
    line-height: 45px;
}
.footer-left .fa,.footer-right .fa{
    font-size: 20px;
    color: #009688;
    margin: 10px;
}
.footer-img{
    max-width: 115px;
    position: absolute;
    opacity: 0.5;
    left: 50%;
    top: 15%;
    transform: translate(-50%,-50%);
}
.social-links{
    text-align: center;
}
.social-links .fa{
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
    border: 1px solid #009688;
    margin: 40px 5px 0;
    color: #009688;
    cursor: pointer;
    transition: .5s;
}
.social-links .fa:hover{
    background: #e84cb1;
    color: #fff;
    transform: translateY(-7px);
}
.social-links p{
    font-size: 14px;
    margin-top: 20px;
}
@media screen and (max-width: 770px){
    .footer-left,.footer-right{
        flex-basis: 100%;
        font-size: 12px;
    }
    .footer-img{
        top: 12%;
    }
    .footer-row{
        margin: 15px 15px;
    }
    .footer-row p{
        line-height: 20px;
    }
}

    