*{
    margin: 0;
    padding: 0;
    font-family: 'Kalam', cursive;
}
#banner{
    background: linear-gradient(#a7daf5,rgba(0,0,0,0));
    background-size: cover;
    background-position: center; 
    height: 70vh;
}
.logo{
    width: 200px;
    position:absolute;
    top: 4%;
    left: 10;
}
.banner-text{
    text-align: center;
    color: #467c9a; 
    padding-top: 180px;
}
.banner-text h1{
    font-size: 130px; 
    color: #135c84;
    font-family: 'Handjet', cursive;
} 
.banner-text p{
    font-size: 30px;
    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: #4679ca;
    border: .5px solid #003752;
    position: relative;
    z-index:1;
    transition: color 0.5s;
}
.banner-btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    top: 0; 
    left: 0;
    background: #003752;
    z-index: -1;
    transition: 0.5s;
}
.banner-btn a:hover span{
    width: 100%;
}
.banner-btn a span{
    color: #a7daf5;
}

#sideNav{
    width: 150px; 
    height: 100vh; 
    position: fixed;
    right: 0;
    top: 0;
    background: #80b7d6;
    z-index: 2;
}
nav ul li{
    list-style: none;
    margin: 50px 20px;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
}
#menuBtn{
    width: 50px;
    height: 50px;
    text-align: center;
    position: fixed;
    right: 30px;
    top: 20px;
    border-radius: 3px; 
    z-index: 3;
    cursor: pointer;
}
#menuBtn img{
    width: 25px; 
    margin-top: 0.5; 
}
@media screen and (max-width: 770px){
    .banner-text h1{
         font-size: 130px;    
}
    .banner-btn a span{
        display: block; 
        margin: auto;
    }
}

/*--about--*/

#about{
    width: 100%; 
    padding: 70px 0;
}
.title-text{
    text-align: center;
    padding-bottom: 70px;
    color: #58c2e9;
    font-weight: bold;
}
.title-text p{
    margin: auto;
    font-size: 60px; 
    color: #298cb0;
    font-family: 'Handjet', cursive;
    font-weight: bold;
    position: relative; 
    z-index: 1; 
    display: inline-block;
}
.title-text p::after{
    content:'';
    width: 50px;
    height: 35px;
    background: linear-gradient(#)
}
.title-text h1{
    font-size: 40px;  
    font-family: 'Handjet', cursive;
}
.about-box{
    width: 100%; 
    margin:inherit;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center; 
}
.about{
    flex-basis: 50%;
}
.about-img{
    width: 50%;
    margin: auto;
}
.about-img img{
    width: 70%;
    border-radius: 10px;
}
.about h1{
    text-align: center;
    margin-bottom: 10px; 
    font-weight: 100; 
    color: #58c2e9;
}
.about-desc{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.about-icon{
    width: 50px; 
    height: 50px;
    font-size: 30px; 
    line-height: 50px; 
    border-radius: 8px; 
    color: #298cb0;
}
.about-text p{
    padding: 0 20px; 
    text-align: initial;
}



/*--workshop--*/

#workshop{
    width: 100%;
    padding: 70px 0; 
    background: #d5f4ff;
}
.title-text{
    text-align: center;
    padding-bottom: 30px;
    color: #58c2e9;
    font-weight: bold;
    font-family:serif
}
.workshop-text h1{
    text-align: center;
    margin-bottom: 10px; 
    font-weight: 100; 
    color: #58c2e9;
    font-family: 'Handjet', cursive;
    font-size: 60px;
    font-weight: bold;
}
.workshop-text p{
    padding: 0 20px; 
    text-align: initial;
    font-size: 20px; 
    
}