*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
#banner{
    background: linear-gradient(rgba(0, 0, 0, 0.7),#4ea0e4),url(images/award.jpg);
    background-size: cover;
    background-position: center;
    height: 90vh;
}
.logo{
    background-color:#4ea0e493;
    width: 70px;
    position: absolute;
    top:2%;
    left: 3%;
    border-radius: 10px;
}
.banner-text{
    text-align: center;
    color: #fff;
    padding-top: 180px;
}
.banner-text h1{
 font-size: 130px;
 font-weight: bolder;
 /***
 font-family: 'Kaushan Script', cursive;
 **/
}
.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;
    background-color: #4ea0e43d;
    color: #fff;
    border: .5px solid #fff;
    position: relative;
    z-index: 1;
    transition: color o.5s;
    border-radius: 5px;
}
.banner-btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
}
.banner-btn a:hover span{
    width: 100%;
}
.banner-btn a:hover{
    color:black;
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .gallery-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .gallery-content img,
  .gallery-content video {
    margin: 10px;
    max-width: 300px;
  }
  
  .close {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover {
    color: #ccc;
  }
#menubtn{
    width: 70px;
    height: 70px;
    background: #4ea0e47e;
    text-align: center;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 8;
    cursor: pointer;
    border-radius: 10px;
}
#menubtn img{
    width: 40px;
    margin-top: 20px;
}
#SideNav{
    width: 150px;
    height: 100vh;
    position: fixed;
    right: -450px;
    top: 0;
    background: #357acee7;
    z-index: 7;
    transition: 0.5s;
    text-align: left;
    border-radius: 10px;
    font-size: 24px;
    font-weight:bolder;
    
}
#SideNav nav ul{
    padding-top: 70px;
    font-weight: bolder;
}

#SideNav nav ul li{
    
    list-style: none;
    margin: 60px 30px;
    font-weight: bolder;
}
#SideNav nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 70%;
    font-weight: bolder;
    
}
@media screen and  (max-width: 770px){
     .banner-text h1{
        font-size: 44px;
       }
     .banner-btn a{
        display: block;
        margin: 20px auto;
    }
}
/*--feature--*/
#feature{
    width:100%;
    padding: 70px 0;
}
.title-text{
    text-align: center;
    padding-bottom: 70px;
}
.title-text p{
        margin: auto;
        font-size: 25px;
        color: #4ea0e4e2;
        font-weight: bold;
        position:relative;
        z-index: 1;
        display: inline-block;
        padding-top: 10px;
}
.title-text p::after{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#4ea0e4e2,#fff);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
    display: none;
}

.title-text h1{
    margin-top: 10px;
    font-size: 40px;
}
.feature-box{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}
.features{
    flex-basis: 100%;
}
.features-img{
    flex-basis: 50%;
    margin: auto;
    margin-top: 10px;
}
.features-img img{
    width: 90%;
    border-radius: 10px;
}
.features h1{
    text-align: center;
    margin-bottom: 10px;
    font-weight: 100;
    color:#4ea0e4;
}
.features-desc{
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 40px;
}
#buttons{
    position: absolute;
    margin-top: 0vh;
    width: 100%;
    text-align: center;
    font-size: 200%;
    height: 100px;
}

  .socials{
    width: 100%;
    height: 200px;
    margin-top: 0vh;
    position: absolute;
    border-radius: 20px;
}
.socials img{
    float: center;
    margin: 1px;
    margin-right: 25px;
    margin-top: 10px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    
}
.socials button{
    background-color: #00000000;
    border: 1px solid black;
    border-color: #fff;
}
.socials a{
   background-color: #3591ce00;
}
#backtotop{
    font-size: 70%;
}
