*{
    margin: 0;
    padding: 0;
    .roboto-black {
        font-family: "Roboto", sans-serif;
        font-weight: 900;
        font-style: normal;
}
}
#banner{
    background: url(surf_aerial.jpg);
    background-size: cover;
    background-position: center;
    height: 150vh;

}
#banner2{
    background: url(kingpfisher_hover.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.logo{ 
    width: 70px;
    position: fixed;
    top: 4%;
    left: 5%;

}

.banner-text{
    text-align: center;
    color: #fff;
    padding-top: 350px;

}
.banner-text h1{
    font-family: "Roboto", sans-serif;
    font-size: 50px;
    padding: 10px;
    font-weight: 1000;
}
.banner-text p{
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    }
.banner_btn{
    margin: 70px auto 0;
}
.banner_btn a{
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 0;
    color: #fff;
    border: 0.5px solid #fff;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
}
.banner_btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: -1;
    transition: 0.5s;
}

.banner_btn a:hover span{
    width: 100%;

}
.banner_btn a:hover{
    color: black;
}



#sideNav{
    width: 300px;
    height: 100vh;
    position: fixed;
    right: -300px;
    top: 0;
    background-color: #ffffffcc;
    z-index: 2;
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.5s;
}
nav ul li{
    list-style: none;
    margin: 50px 20px;
    
    

}
nav ul li a{
    text-decoration: none;
    color: rgb(170, 170, 170);
    font-size: 25px;
    font-weight: bold;
    
}
#menuBtn img{
    width: 50px;
    margin-top: 15px;
    position: fixed;
    top: 10px;
    right: 30px;
    z-index: 3;
}
@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: 100px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-style: none;
}
.title-text{
    text-align: center;
    padding-bottom: 70px;
}

.title-text p{
    margin: auto;
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.title-text h1{
    font-size: 50px;
    
}
.feature-box{
    width: 70%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    padding: 0;
}
.features{
    flex-basis: 50%;
}
.features-img{
    flex-basis: 50%;
    margin: auto;
}
.features-img img{
    width: 70%;
    border-radius: 10px;
}