#footer-section {
    min-height: 250px;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-around;
    background-color: var(--dark-light);
    color: var(--light);
}

#footer-section .footer-section {
    margin-left: 5rem;
}

#footer-section .image{
    min-height: 50px;
    width: 250px;
}

#footer-section .footer-logo{
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}

#footer-section .copyrights {
    margin-top: 2.5rem;
    text-align: center;
}


#footer-section .company {
    flex: 1;
    padding-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#footer-section .company-links a {
    color: var(--light);
    line-height: 30px;
    text-decoration: none; 
}

#footer-section .company-links a:hover {
    text-decoration: underline;
}

#footer-section .contact-us{
    flex: 1;
    padding-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#footer-section .svg-container {
    display: flex;
    align-items: center;
    margin :10px 0;
}

#footer-section .svg {
    margin-right :10px;
    color: var(--light);
}


@media only screen and (max-width: 900px) {
    #footer-section {
        flex-direction: column;
        align-items: center;
    }

    #footer-section .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #footer-section .copyrights {
        margin-top: 0;
    }

    #footer-section .company {
        margin: 0.5rem 0;
        text-align: center;
    }

    #footer-section .company-links {
        text-align: center;
    }

    #footer-section .contact-us{
        margin: 0.5rem 0;
        text-align: center;
    }

    #footer-section .svg-container {
       justify-content: center;
    }
}
