*{
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
}
#banner{
    background: linear-gradient(rgba(151, 151, 118, 0.7),#1c5eb4ec), url(img/Unsplash_images_compressed_jpg/uncompressed/pexels-mo-liban-5648177.jpg);
    background-size: cover;background-position: center;
    height:100vh;
}
.logo{
    width: 100px;
    position: absolute;
    top: 3%;
    left:5%
}
.banner-text{
    text-align: center;
    color: #fff;
    padding-top: 280px;
}
.banner-text h1{
    font-size: 95px;
    font-family: 'Kaushan Script', cursiv;
}
.banner-text p{
    font-size: 24px;
    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;
    color: #fff;
    border: .5px solid #fff;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
}
.banner-btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ff7e5f; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ff7e5f, #feb47b); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ff7e5f, #feb47b); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    z-index: -1;
    transition: 0.5s;
}
.banner-btn a:hover span{
    width: 100%;
}
.banner-btn a:hover{
    color:rgb(53, 52, 54);
}

#sideNav{
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250;
    top: 0;
    background-color: #1c5eb4cb;
    z-index: 2;
    transition: 0.5s;
}
nav ul li{
    list-style: none;
    margin: 50px 20px;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
}
a:hover {
    color: #ff7e5f;
  }
#menuBtn{
    width: 50px;
    height: 50px;
    background: #1c5eb475;
    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: 770px){
    .banner-text h1{
        font-size: 40px;
    }
    .banner-btn a{
        display: block;
        margin: 20px auto;
    }
}

/*--- Our Story --*/

#story{
    width: 100%;
    padding: 70px 0;
}
.title-text{
    text-align: center;
    padding-bottom: 70px;
}
.title-text p{
    margin: auto;
    font-size: 40px;
    color: #1c5eb4;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.title-text p::after{
    content: '';
    width: 50px;
    height: 60px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    position: absolute;
    top: -20;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
.title-text h1{
    font-size: 25px;
    color:rgb(53, 52, 54);
    font-style: italic;
}
.story-box{
    width: 80%;
    margin:auto;
    display:flex;
    flex-wrap: wrap;
    align-items: center;
}
.ourstory{
    flex-basis: 45%;
}
.ourstory-img{
    flex-basis: 50%;
    margin: auto;
}
.ourstory-img img{
    width: 80%;
    border-radius: 10px;
}
.ourstory h1{
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100;
    color: #1c5eb4
}
.story-desc{
    display:flex;
    align-items: center;
    margin-bottom: 40px;
}
.story-icon .fa{
    width: 35px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    padding-left: 10px;
    border-radius: 8px;color: #1c5eb4;
    border: 1px solid #1c5eb4;
}
.story-text p{
    padding: 5 20px;
    text-align: initial;
    line-height: 1.5;
    margin-top: 1;
    margin-bottom: 1;
}
@media screen and (max-width: 770px){
    .title-text h1{
        font-size: 18px;
    }  
    .ourstory{
        flex-basis: 100%;
    } 
    .story-icon .fa{
     display: none;
     visibility: hidden; 
    } 
    .story-text p{
        font-size: 11px;
    }
    .ourstory-img{
        flex-basis: 100%;
    } 
    .ourstory-img img{
        width: 100%;
    }
}

/*---Projects---*/

#projects{
    width: 100%;
    padding: 70px 0;
    background: #efefef;
}
.projects-box{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-around;
    margin: auto;
}
.projects{
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}
.projects img{
    width: 95%;
    border-radius: 7px;
}
.overlay{
    width: 96%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 10.7;
    border-radius: 7px;
    background: linear-gradient(rgba(0,0,0,0.5), #feb47b);
    opacity: 0;
    transition: 1s;
}
.projects:hover .overlay{
    opacity: 1;
}
.project-desc{
    width: 80%;
    position: absolute;
    bottom: 0;
    left:50%;
    opacity: 0;
    transform: translateX(-50%);
    transition: 1s;
}
hr{
    background: #fff;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}
.project-desc p{
    font-size: 14px;
}
.projects:hover .project-desc{
    bottom: 40%;
    opacity: 1;
}
@media screen and (max-width: 770px){
    .projects{
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    .project-desc p{
        font-size: 10px;
    }
    hr{
        margin: 5px auto;
    }
    .projects:hover .project-desc{
        bottom: 25% !important;
    }
}

/*--- Footer ----*/

#footer{
    padding: 100px 0 20px;
    background: #fff;
}
.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{
    line-height: 35px;
}
.footer-left .fa,.footer-right .fa{
    font-size: 20px;
    color: #1c5eb4;
    margin: 10px;
}
.social-links{
    text-align: center;
}
.social-links .fa{
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
    border: 1px solid #6da1f0;
    border-radius: 3px;
    margin: 40px 5px 0;
    color: #1c5eb4;
    text-decoration: none;
    cursor: pointer;
    transition: .5s;
}
.social-links .fa:hover{
    background: #ff7e5f;
    color: #fff;
    transform: translateY(-7px);
}
.social-links p{
    font-size: 12px;
    margin-top: 20px;
}

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

/*----- Get Involved ------- */
#ginvolved{
    margin-top: 40px;
    width: 100%;
    padding: 70px 0;
}
#banner2{
    background: linear-gradient(rgba(151, 151, 118, 0.7),#1c5eb4ec), url(img/Unsplash_images_compressed_jpg/uncompressed/pexels-mo-liban-5648177.jpg);
    background-size: 30%;
    background-position: center;
    height:20vh;
}
.ginvolved-box{
    width: 80%;
    margin: 20px;
    margin-left: 190px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.getinvolved{
    flex-basis: 45%;
}
.ginvolved-img{
    background: #1c5eb473;
    width: 220px;
    padding: 1.25rem;
    border-radius: 5px;
}
.ginvolved-img img{
    width: 127%;
    border-radius: 5px;

}
.ginvolved h1{
    text-align: left;
    font-weight: 100;
    color: #1c5eb4
}
.ginvolved-text p{
    padding: 5 20px;
    text-align: initial;
    line-height: 1.5;
    margin-top: 1;
    margin-bottom: 1;
}

.involved-btn{
    position: relative;
    bottom: 60px;
    margin: 0 auto;
    text-align: center;
    padding-right: 800px;;
}
.involved-btn a{
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 0;
    color: rgb(37, 37, 37);
    border: .5px solid rgb(136, 126, 126);
    position: relative;
    z-index: 1;
    transition: color 0.5s;
}

.involved-btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ff7e5f; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ff7e5f, #feb47b); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ff7e5f, #feb47b); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    z-index: -1;
    transition: 0.5s;
}

.involved-btn a:hover span{
    width: 100%;
}

.involved-btn a:hover{
    color:rgb(53, 52, 54);
}


@media screen and (max-width: 770px){
    .title-text h1{
        font-size: 18px;
    }  
    .ginvolved{
        flex-basis: 100%;
    } 
    .ginvolved-text p{
        font-size: 11px;
    }
    .ginvolved-img{
        flex-basis: 100%;
    } 
    .ginvolved-img img{
        width: 100%;
    }
}