

/*footer*/

footer {
    background-color: rgb(48, 48, 48);
    padding: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
}

.footer-amaga-logo {
    color: white;
}


.footer-column {
    
    padding: .5rem 2rem;
}

.footer-column h4 {
    color: var(--red-color);
    font-size: 1.2rem;
    margin-bottom: .25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li a {
    text-decoration: none;
    color: rgb(165, 165, 165);
    display: block;
    transition: all .25s;
    padding-bottom: .15rem;
    white-space: nowrap;
}

.footer-links li a:hover {
   transform: translateX(1rem);
   color: white;
}





@media (max-width: 1220px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-product-column {
        display: flex;
        
    }

    .first-product-list {
        margin-right: 2rem;
    }

    .second-product-list {
        padding-top: 2rem;
    }

   
    
}



@media (max-width: 800px) {

    .footer-content {
        grid-template-columns: 1fr 1fr;
        
    }


}



@media (max-width: 600px) {

    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-product-column {
        
        flex-direction: column;
    }
    
    .second-product-list {
        padding-top: 0;
    }
    
}