@media (min-width: 1281px){
    footer{
        width: 100%;
        height: 156px;
        background-color: #2C2C2C;
        color: #FFFFFF;
        display: flex;
        align-items: center;
    }
    
    .footer-container{
        margin: auto;
        width: 87%;
        height: 60px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-navbar{
        width: 75%;
        height: 100%;
        display: flex;   
        flex-direction: row; 
        justify-content: center;
        align-items: center;
        gap: 60px
    }
    
    .footer-navbar>a{
        font-family: Nunito;
        font-size: 20px;
        color: white;
        text-decoration: none;
        transition: none;
    }

    .footer-icons-container{
        width: 120px;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 600px) and (max-width: 1280px){
    footer{
        width: 100%;
        height: 156px;
        background-color: #2C2C2C;
        color: #FFFFFF;
        display: flex;
        align-items: center;
    }
    
    .footer-container{
        margin: auto;
        width: 90%;
        height: 60px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-container img{
        width: 14%;
    }
    
    .footer-navbar{
        width: 60%;
        height: 100%;
        display: flex;   
        flex-direction: row; 
        justify-content: space-evenly;
        align-items: center;
    }
    
    .footer-navbar>a{
        font-family: Nunito;
        font-size: clamp(11px, 1.5vw, 24px);
        color: white;
        text-decoration: none;
        transition: none;
    }
    
    .footer-icons-container{
        width: 120px;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-icons-container img{
        width: 80%;
        height: 80%;
    }
}

@media (max-width: 600px){
    footer{
        width: 100%;
        height: 84px;
        background-color: #2C2C2C;
        color: #FFFFFF;
        display: flex;
        align-items: center;
    }
    
    .footer-container{
        margin: auto;
        width: 90%;
        height: 60px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-container img{
        width: 18%;
    }
    
    .footer-navbar{
        width: 60%;
        height: 100%;
        display: flex;   
        flex-direction: row; 
        justify-content: space-evenly;
        align-items: center;
    }
    
    .footer-navbar>a{
        display: none;
        font-family: Nunito;
        font-size: clamp(10px, 1.5vw, 24px);
        color: white;
        text-decoration: none;
        transition: none;
    }
    
    .footer-icons-container{
        width: 120px;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-icons-container img{
        width: 60%;
        height: 60%;
    }
}