/* Mobile view */
@media screen and (min-width:320px) {

    .footer-section{
        background-color: #2c2c2b;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .footer-info{
        display: flex;
        flex-direction: column;
    }

    .footer-info div{
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }

    .footer-links li{
        padding: .5rem 0rem;
    }

    .footer-links li a{
        color: #dda823;
    }

    .footer-contact p{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: .5rem;
    }

    .footer-copyright{
        margin: auto;
    }

    .footer-copyright a{
        color: #dda823;
    }

    
}


/* Tablet view */

@media screen and (min-width:768px) {

    .footer-content{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

}


/* Desktop view */

@media  screen and (min-width: 980px) {

    .footer-info{
        display: flex;
        flex-direction: column;
        width: 40%;
    }

    .footer-info div{
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }

    .footer-info-container{
        display: flex;
        flex-direction: row;
        gap: 5rem;
    }

    .footer-content{
        justify-content: space-around;
        gap: 5rem;
    }

}