*{ margin: 0;
    padding: 0;
    font-family: 'Lora', serif;
 }
 #banner{
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.5),#779988), url(images/banner.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    height: 100vh;
 }
 .logo{
    width: 140px;
    position: absolute;
    top: 4%;
    left: 10%;
 }
 .banner-text{
    text-align: center;
    color: #ffff;
    padding-top: 180px
 }
 .banner-text h1{
    font-size: 120px;
 }
 .banner-text p{
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
 }
 .banner-btn{
    margin: 70px auto 0;
 }
 .banner-btn a{
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 0;
    color: #ffff;
    border: .5px solid #ffff;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
 }
 .banner-btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ffff;
    z-index: -1;
    transition: 0.5s;
 }
 .banner-btn a:hover span{
    width: 100%;
    color: #ffff;
 }

 .banner-btn a:hover{
    color: black;
 }
 #sideNav{
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    background: #779988;
    z-index: 2;
    transition: 0.5s;
 }
 nav ul li{
    list-style: none;
    margin: 50px 20px;
 }
 nav ul li a{
    text-decoration: none;
    color: #ffff;
 }
 #menuBtn{
    width: 50px;
    height: 50px;
    background: #779988;
    text-align: center;
    position: fixed;
    right: 30px;
    top: 20px;
    border-radius: 3px;
    z-index: 3;
    cursor: pointer;
 }
 #menuBtn img{
    width: 20px;
    height: 20px;
    margin-top: 15px;
 }
 @media screen and (max-width: 770px){

 .banner-text h1{
    font-size: 44px;
 }
 .banner-btn a{
    display: block;
    margin: 20px auto;
 }
 }
 /*feature*/
 #event{
    width: 100%;
    padding: 70px 0;
 }
 .title-text{
    text-align: center;
    padding-bottom: 70px;
 }
 .title-text h1{
    margin: auto;
    font-size: 20px;
    color: #779988;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
 }
 .title-text h1::before{
    content: '';
    position: absolute;
    width: 100px;
    height: 3px ;
    background-color: #007788 ;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: animate 4s linear infinite;
 }
 @keyframes animate{
    0%{
        width: 50px;
    }
    50%{
        width: 100px;
    }
    100%{
        width: 50px;
    }
 }
 /*.title-text p::after{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#019587,#fff);
    position: absolute;
    top: -20;
    left: 0;
    z-index: -1;
    transition: rotate(10deg);
    border-top-left-radius:35px ;
    border-bottom-right-radius:35px ;
 }*/
 .title-text h1{
    font-size: 50px;
 }
.events-box{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    align-items: center;
    text-align: center;
}
.events{
    flex-basis: 10%;

}
.events-img{
    position: relative;
    margin: auto;
    box-shadow: 1px 1px 1px lightgray;
    border-radius: 10px;
}
.events-img img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.3s;
}
.events-img::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%x);
    color: white;
    margin-top: -100px;
    opacity: 0;
    transition: 0.3s;
    transition-delay: .2s;
    z-index: 1;
}
.events-img::after{
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    height: 0;
    background-color: rgba(0, 0, 0, .4);
    transition: 0.3s

}
.events-img:hover::after{
    height: 100%;
}
.events-img:hover::before{
    margin-top: 0;
    opacity: 1;
}
.contact{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(rgba(0,0,0,0.5),#779988), url(images/banner.jpg);
    background-position: center;
    background-size: cover;
}
.contact .content{
    /*width: 80%;*/
    max-width: 800px;
    text-align: center;

}
.contact .content h2{
    font-size: 36px;
    font-weight: 500;
    color: #fff;

}
.contact .content p{
    font-weight: 500;
    color: #fff;


}
.contact-container{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: left;
    margin-top: 30px;
}
.contact-container .contactInfo{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: left;
}.contact-container .contactInfo .box{
    position: relative;
    padding: 20px 0;
    display: flex;
    justify-content: left;
}
.contact-container .contactInfo .box .icon{
    min-width: 60px;
    height: 60px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
}
.contact-container .contactInfo .box .text{
display: flex;
margin-left:20px ;
font-size: 16px;
color: #fff;
flex-direction: column;
font-weight:300;
}
.contact-container .contactInfo .box .text h3{
font-weight: 500;
color: #007788;
}
.contactForm{
    width: 50%;
    padding: 50px;
    background: #fff;
    opacity: 80%;
}
.contactForm h2{
    font-size: 30px;
    color: #333;
    font-weight: 10;

}
.contactForm .inputbox{
    position: relative;
    width: 100%;
    margin-top: 20px;
}
.contactForm .inputbox input,
.contactForm .inputbox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}
.contactForm .inputbox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}
.contactForm .inputbox input:focus ~ span,
.contactForm .inputbox input:valid ~ span,
.contactForm .inputbox textarea:focus ~ span,
.contactForm .inputbox textarea:valid ~ span
{
    color: #007788;
    font-size: 12px;
    transform: translateY(-20px);
}
.contactForm .inputbox input[type="submit"]{
    width: 100px;
    background: #007788;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    transition: 0.3s ease background-color;
}
.contactForm .inputbox input[type="submit"]:hover{
    background-color: #009688;
}
@media (max-width:  770px)
{
    .contact{
        padding: 50px;
    }
    .contact-container{
    flex-direction: column;
    }
    .contact-container .contactInfo,
    .contactForm{
        margin-bottom: 40px;
    }

}

.decrypt-btn{
    padding: 0;
    border: none;
    background: none;
    color: #fff;
    cursor: pointer;
}
.btnmypage{
    padding: 0;
    border: none;
    justify-content: center;
    align-items: center;
    background: none;
    color: black;
    cursor: pointer;


}
.btnWhite{

    padding: 0;
    border: none;
    background: none;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}
}
#footnote{
   width: 50%;
    margin: auto;
    text-align: justify;
}
p{
    /*justify-content: center;*/
    text-align: center;
}