*{
    margin: 0;
}
li{
    list-style-type: none;
}
a{
    text-decoration: none;
    color:white;
    font-size: 3vh;
}
.nav-container{
    background-color:#1C4D8D;
    height: 12vh;
    position: sticky;
    top: 0;
}
nav{
    width: 95%;
    margin: auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.logo{
    height: 12vh;
}
.logo img{
    height: 100%;
    border-radius: 50%;
    align-items: center;
}
.nav-links{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 50%;
}
.arrow{
    height: 6vh;
    width: 30px;
    transform: translatey(60%);
    display: none;
}
.line1,.line2,.line3 {
height: 20%;
width: 30px;
background-color: white;
margin-top: 2px;
border-radius: 2px;
}


@media screen and (max-width:900px){
    .nav-links{
        width: 60%;
    }
}
@media screen and (max-width:800px) {
    .nav-links{
        position: fixed;
        top:12.1vh;
        right: 0;
        background-color:#1C4D8D;
        flex-direction: column;
        height: 90vh;
        width: 80%;
        transform: translatex(100%);
    }
    .arrow{
        display: block;
    }

}
.display{
    transform: translatex(0%);
}
.footer{
    background-color:#1C4D8D;
    padding: 40px 0;
}
.footer .social{
    text-align: center;
    padding-bottom: 25px;
    
}
.footer .social a{
    font-size: 30px;
    display: inline-block;
    text-align: center;
    margin: 0 20px;
}
.footer ul{
    margin-top: 0;
    padding: 0;
    list-style: none;
    font-size: 30px;
    margin-bottom: 0;
    text-align: center;
}
.footer ul li{
    display: inline-block;
    padding: 0 15px;

}
.footer ul li a{
    font-size: 20px;
}
.footer .copyright{
    text-align: center;
    margin-top: 15px;
    font-size: 20px;
    color: white;
}

.contact{
    width: 100%;
    height: 100vh;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

form{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    background-color: #4988C4;
}
form h3{
    font-weight: 800;
    margin-bottom: 20px;
}
form input, form textarea{
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    font-size: 18px;
}
form button{
    padding: 15px;
    background-color: #0F2854;
    color: #fff;
    font-size: 20px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 30px;
}