
/*#region Footer Section */
.footer {
    display: flex;
    justify-content: space-between;
    background-color: #042038;
    color: white;
    padding: 20px;
    text-align: center;
    height: 20vh;
    overflow: hidden;
}
.footer-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.footer-logo img {
    margin-right: 5px;
    margin-top: 5px;
    height: 5%;
    width: 40%;
}
.footer-nav {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}
.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
.footer-nav a:hover {
    text-decoration: underline;
}
.footer-column:nth-child(2) {
    flex-direction: column;
}

.footer-column-mobile, .social-mobile {
    display: none;
}


/*#endregion Footer Section*/

@media screen and (max-width: 800px) {
    .footer {
        display: block;
        justify-content: space-between;
        background-color: #042038;
        color: white;
        padding: 40px;
        text-align: center;
        height: 65vh;
    }
    .footer-nav {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .footer-column, .footer-nav{
        flex-direction: column;
    }
    .footer-column, .footer-nav a {
        margin-bottom: 30px;
    }
    .footer-logo img {
        margin-top: 0px;
        height: 5%;
        width: 40%;
        margin-right: 0;
    }
    .footer, .footer-column, .social a {
        flex-direction: row;
    }
    .footer-column-mobile, .social-mobile {
        display: block;
        margin-bottom: 25px;
    }
    #social {
        display: none;
    }


}



