footer{
    background: linear-gradient(45deg, #001e39, #00294f, #001e39 );
    color: #fff;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-item {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
}

.footer-item h3 {
    font-size: 18px;
}

.footer-item p {
    font-size: 14px;
    margin-top: 5px;
}

.footer-icons {
    font-size: 24px;
    margin-right: 10px;
}

p.copyright {
    text-align: center;
    font-size: 14px;

}
.footer-item.social-icons-footer a {
    color: white;
    transition: background-color 0.3s, color 0.3s;

}

.social-icons-footer i{
    transition: 0.5s;
}

.social-icons-footer .fa-instagram:hover {
    padding: 5px;
    background: linear-gradient(45deg, #FFDC80, #F56040, #FD1D1D, #E1306C, #C13584, #833AB4, #5851DB, #405DE6); 
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
    transition: 0.5s;
}

.social-icons-footer .fa-pinterest:hover {
    padding: 5px;
    background: linear-gradient(45deg, #ca2026, #ff8c73, #d90404, #E60023, #BD081C);
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
    transition: 0.5s;
}

.social-icons-footer .fa-twitter:hover {
    padding: 5px;
    background: linear-gradient(45deg, #0D47A1, #1565C0, #1976D2, #1A91DA, #1DA1F2);
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
    transition: 0.5s;
}

.social-icons-footer .fa-youtube:hover{
    padding: 5px;
    background: linear-gradient(45deg, #e02b07, #c10e02, #d40015, #c70808, #ff0000, #ff3333, #FF0000);
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
    transition: 0.5s;
}

.footer-item .fa-envelope{
    padding: 5px;
    transition: 0.5s;
}

.footer-item .fa-envelope:hover{
    padding: 5px;
    background: linear-gradient(45deg, #0561f4, #05da37 ,#F4B400, #c90000 );
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
    transition: 0.5s;
}

.footer-item .fa-whatsapp:hover{
    padding: 5px;
    background: linear-gradient(45deg, #25D366, #4AC959);
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
    transition: 0.5s;
}

@media (max-width: 640px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-item {
        width: auto;
        margin-top: 20px;
    }
}

