*{
    margin: 0;
    padding: 0;
    font-family: 'Varela Round', sans-serif;
}
#banner{
    background: linear-gradient(rgba(0,0,0,0),#469d37),url(Images/Banner2.jpeg);
    background-size: cover; 
    background-position: center; 
    height: 100vh; 
}
.logo{
    width: 300px; 
    position: absolute 
    top: 4%; 
    left: 10%;
}
.banner-text{
    text-align: center;
    color: #246819; 
    padding-top: 140px; 
}
.banner-text h1{
    font-size: 60px;
    font-family: 'Monomaniac One', sans-serif;
}
.banner-text p{
    font-size: 20px; 
    font-style: italic;  
}
.banner-btn a{
    width: 150px;
    text-decoration: none; 
    display: inline-block;
    margin: 0 10px; 
    padding: 12px 0;
    color: #e2fedd; 
    border: .5px solid #e2fedd;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
}
.banner-btn a span{
    width: 0%;
    height: 100%; 
    position: absolute; 
    top: 0;
    left: 0;
    background: #e2fedd;
    z-index: -1;
    transition: 0.5s;
}
.banner-btn a:hover span{
    width: 100%; 
}
.banner-btn a:hover{
    color: #225f17;
}
#sideNav{
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0; 
    background: #f3f52e;
    z-index: 2;
    transition: 0.5s;
}
nav ul li{
    list-style: none; 
    margin: 50px 20px;
}
nav ul li a{
    text-decoration: none; 
    color: #225f17;
}
#menuBtn{
    width: 30px;
    height: 20px;
    background: none;
    text-align: center;
    position: fixed; 
    right: 30px; 
    top: 30px;
    border-radius: 3px; 
    z-index: 3; 
    cursor: pointer;
}
#menuBtn img{
    width: 30px;
    margin-top: 1px;
}
@media screen and (max-width: 770px){
    .banner h1{
        font-size: 44px;
    }
    .banner-btn a{
        display: block; 
        margin: 20px auto; 
    }
}

/*--about--*/

#about{
    width: 100%;
    padding: 20px 0;
}
.title-text{
    text-align: center;
    padding-bottom: 70px;
}
.title-text p{
    margin: auto; 
    font-size: 20px;
    color: #225f17;
    font-weight: bold; 
    position: relative;
    z-index: 1;
    display: inline-block;
}
.title-text p::after{
    content: '';
    width: 50px; 
    height: 35px;
    background: linear-gradient(#469d37,#fff);
    position: absolute;
    top: -10;
    left: 0; 
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px; 
    border-bottom-right-radius: 35px;
}
.title-text h1{
    font-size: 50px;
}
.feature-box{
    width: 80%;
    margin: auto;
    display:flex; 
    flex-wrap: wrap;
    align-items: center; 
    text-align: center;
}
.features{
    flex-basis: 50%;
}
.cookieConsentContainer{
    z-index: 999;
    width: 50%;
    min-height: 20px;
    box-sizing: border-box;
    padding: 30px;
    background: #232323;
    overflow: hidden;
    position: fixed;
    bottom: 25%; 
    right: 25%; 
    display:none;
}
.cookieConsentContainer .cookieTitle a{
    font-family: OpenSans,arial,"sans-serif";
    color: #fff;
    font-size: 22px;
    line-height: 20px;
    display:block;
}
.cookieConsentContainer .cookieDesc p{
    margin: 0;
    padding: 0;
    font-family: OpenSans,arial,"sans-serif";
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    display: block;
    margin-top: 10px
}
.cookieConsentContainer .cookieDesc a{
    font-family: OpenSans,arial,"sans-serif";
    color: #fff;
    text-decoration: underline;
}
.cookieConsentContainer .cookieButton a{
    display: inline-block;
    font-family: OpenSans,arial,"sans-serif";
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-top: 14px;
    background: #000;
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    transition: background .3s
}
.cookieConsentContainer .cookieButton a:hover{
    cursor: pointer;
    background: #3e9b67
}
@media(max-width:980px){
   .cookieConsentContainer{bottom:0!important;left:0!important;width:100%!important}}