*{
    margin: 0;
    padding: 0;
}

body{
    box-sizing: border-box;
}

#banner{
    background:
    linear-gradient(rgba(0,0,0,0.3), #0faf94),
    url(media/banner.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

#banner-logo{
    top: 30px;
    left: 120px;
    position: absolute;
}

#banner-text{
    padding-top: 280px;
    text-align: center;
    
}

#banner-title h1{
    font-size: 100px;
    font-family: 'Kaushan Script', cursive;
    color: #ffff;
}
#banner-title p{
    font-size: 30px;
    font-style: italic;
    color: #ffff;
}


#banner-button{
      margin: 50px;
      
}

#banner-button a{
    margin: 0px 10px;
    text-decoration: none;
    font-size: 25px;
    padding: 10px;
    position: relative;
    border: .5px solid white;
    z-index: 1;
    color: white;
}

#banner-button a span{
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: white;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: 0.5s;
}

#banner-button a:hover span{
    width: 100%;
}
#banner-button a:hover{
    color: black;
}

#navbar{
    top: 0;
    right: 0;
    position: absolute;
    margin-top: 20px;
}

#navbar nav ul li{
    list-style: none;
    display: inline-block;
    margin: 20px;
    position: relative;
    
    
}

#navbar nav ul li a{
    text-decoration: none;
    font-size: 20px;
    color: rgb(159, 219, 219);
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

#navbar nav ul li:after{
    content: "";
    
    height: 4px;
    position: absolute;
    left: 0px;
    width: 0%;
    bottom: -10px;
    transition: 0.3s;
    
}

#navbar nav ul li:hover:after{
    width: 100%;
    background-color: rgb(197, 219, 238)
}

#navbar nav{
    display: flex;
}

 #menu-btn{
    width: 40px;
    height: 30px;
    font-weight: bold;
    margin-top: 25px;
    display: none;
    
}


#sideNav{
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    right:-250px;
    background-color: #45ac9b;
    z-index: 2;
    transition: 0.5s;
    
   

}
#sideNav ul{
    position: absolute;
}

#sideNav ul li{
    list-style: none;
    margin: 50px 20px;
    
    
}

#sideNav ul li a{
    text-decoration: none;
    color: aliceblue;
    font-size: 20px;
    font-weight: bold;
    

}

#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: 30px;
    margin-top: 10px;
}

@media screen and (max-width: 900px) {
    #banner-logo{
        left: 50px;
        top: 20px;
        position: absolute;
    }
    #banner-title h1{
        font-size: 50px;
    }

    #banner-button a{
        font-size: 15px;
        margin: 10px 0px;
    }


    #banner-button{
        display: flex;
        flex-direction: column;
        width: 150px;
        margin: 40px auto;
        
        
    }


  }


  /*feature------------*/

  #feature{
      width: 100%;
      padding: 70px 0px;
  }

  .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 h1{
      font-size: 50px;
  }

  .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;
  }

  .feature-box{
      width: 80%;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      text-align: center;
      
      
  }

  .features{
      flex-basis: 50%;
      
  }

  .features-img{
      flex-basis: 50%;
      
  }

  .features-img img{
      width: 70%;
      border-radius: 20px;
  }

  .features h1{
      text-align: left;
      margin-bottom: 10px;
      font-weight: 100;
      color: #009688;
  }
  .features-desc{
      display: flex;
      align-items: center;
      margin-bottom: 40px;
  }

  .features-icon .fa{
      width: 50px;
      height: 50px;
      font-size: 30px;
      line-height: 50px;
      border-radius: 8px;
      color: #009688;
      border: 1px solid #009688;

  }

  .features-text p{
      font-size: 20px;
      text-align: initial;
      padding: 0 20px;
  }

  @media screen and (max-width: 900px){
    .title-text h1{
        font-size: 35px;
    }

    .features{
        flex-basis: 100%;
    }

    .features-img{
        flex-basis: 100%;
    }

    .features-img img{
        width: 100%;
    }
  }

  /** Services---------*/
  
  #service{
      width: 100%;
      padding: 70px 0px;
      background: #e0dcdc;
     
  }

  .service-box{
      width: 80%;
      
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
     
  }

  .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: 10px;
  }

  .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: 0px;
      margin: 15px auto;
      width: 60%;
  }

  .single-service:hover .service-desc{
      opacity: 1;
      bottom: 40%;
  }

  @media screen and (max-width: 900px){
      .single-service{
          flex-basis: 100%;
      }
  }

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

  #testimonial{
      width: 100%;
      padding: 70px 0px;
  }

  .testimonial-row{
      width: 80%;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;

  }

  .testimonial-col{
      flex-basis: 30%;
      padding: 10px;
      margin-bottom: 30px;
      border-radius: 5px;
      box-shadow: 20px 10px 20px 20px #00968814;
      cursor: pointer;
      transition: transform .5s;
  }

  .user{
      display: flex;
      align-items: center;
      margin: 20px 0px;
      margin-left: 100px;

  }

  .user img{
      width: 40px;
      margin-right: 20px;
      border-radius: 10px;
  }

  .user-info .fa{
      margin-left: 10px;
      color: #1bb992;
      font-size: 20px;
  }
  .user-info small{
      color: #009688;
  }

  .testimonial-col:hover{
      transform: translateY(10px);
      
  }

  @media screen and (max-width: 900px){
      .testimonial-col{
          flex-basis: 100%;
      }
  }


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

  #footer{
      width: 100%;
      padding: 100px 0 20px;
      background: #efefef;
  }

  .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 0px;
  }
  .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{
      height: 40px;
      width: 40px;
      font-size: 20px;
      line-height: 40px;
      border: 1px solid #009688;
      margin: 40px 5px 0;
      color: #009688;
      cursor: pointer;
      border-radius: 5px;
      transition: .5s;
  }

  .social-links .fa:hover{
      background: #009688;
      color: brown;
      transform: translateY(-5px);
  }

  .social-links p{
      font-size: 12px;
      margin-top: 20px;
  }

  @media screen and (max-width: 900px){
      .footer-left, .footer-right{
          flex-basis: 100%;
      }
  }