.footer-info{
    background-color:#03143E;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid white;
}
.footer-main-container{
    padding: 100px 5px 50px 5px;
    width: 100%;
    max-width: 1124px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.footer-logo{
    width: 20%;
}
.footer-social-media{
    width: 28%;
} 
.footer-logo-image{
    width: 100%;
}
.footer-services,
.footer-navigation p > a,
.footer-social-media p{
    color: white;
    font-size: 15px;
    line-height: 1.8rem;
}
.footer-nav a{
    text-decoration: none;
}
.footer-navigation-title,
.footer-services-title{
    color: #FED426;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 500;
}
.footer-social{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}
.footer-social-logo{
    height: 56px;
}
.social-text{
    padding-top: 18px;
}
@media screen and (max-width: 800px) {
    .footer-main-container{
        padding: 30px 10px 50px 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .footer-logo{
        display: none;
    }
    .footer-logo, .footer-info-services, 
    .footer-navigation, .footer-social-media{
        width: 90vw;
    }
}