*{
    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;
}
.about{
    padding: 15px 0;
}

.profile img{
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    vertical-align: middle;
}
.wrapper{
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 5rem;
}
.brief{
    flex: 1;
}
p{
    font-size: large;
}