﻿footer {
    background-color: #00307C;
    color: white;
    padding: 20px 0;
}

.content-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.contact-info > p > a {
    text-decoration: none;
    margin-right: 5px;
    color: white;
}

    .contact-info > p > a > i {
        font-size: 18px;
        margin-right: 5px;
        color: #25D366;
    }

.icons-info {
    margin-right: 20px;
    text-align: center;
}

.icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
}

.bg-linkedin {
    background-color: #0077B5;
}

.bg-facebook {
    background-color: #3b5998;
}

.bg-instagram {
    background-color: #C13584;
}

@media (max-width: 430px) {
    .content-footer {
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

    .copyright {
        margin-top: 1.25rem;
    }
}

@media print{
    #footer{
        display: none;
    }
}