footer {
    width: 100%;
    background: #002D72;
    color: white;
}

.container-footer-all {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 40px;
}

.container-body {
    display: flex;
    justify-content: space-between;
}

.colum1 {
    max-width: 500px;
}

    .colum1 h1 {
        font-size: 22px;
    }

    .colum1 p {
        font-size: 14px;
        color: #C7C7C7;
        margin-top: 20px;
    }

.colum2 {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .colum2 h1 {
        font-size: 22px;
        color: white;
    }

.row {
    margin-top: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .row i {
        font-size: 36px;
        margin-right: 10px;
        color: #C7C7C7;
    }

    .row label {
        margin-top: 0;
        color: #C7C7C7;
    }

.colum3 {
    max-width: 400px;
}

    .colum3 h1 {
        font-size: 22px;
    }

.row, .row2 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .row i, .row2 i {
        font-size: 20px;
        margin-right: 10px;
    }

.container-footer {
    width: 100%;
    background: #EF3340;
}

.footer {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    
}

.copyright {
    color: #fff;
    text-align: center;
}

    .copyright a {
        text-decoration: none;
        color: white;
        font-weight: bold;
    }

.information a {
    text-decoration: none;
    color: #fff;

}

.social-btn {
    display: flex;
    align-items: center;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease;
    margin-bottom: 15px;
}

    .social-btn i {
        font-size: 24px;
        margin-right: 10px;
    }

    .social-btn span {
        font-size: 16px;
    }

    .social-btn:hover {
        transform: translateY(-3px);
    }

        .social-btn:hover .fab.fa-facebook {
            color: #3b5998;
        }

        .social-btn:hover .fab.fa-instagram {
            color: #e4405f;
        }
        .social-btn:hover .fab.fa-youtube {
            color: #c4302b;
        }

@media screen and (max-width: 1100px) {
    .container-body {
        flex-wrap: wrap;
    }

    .colum1 {
        max-width: 100%;
    }

    .colum2, .colum3 {
        margin-top: 40px;
    }

    .row {
        margin-top: 20px;
    }
}