/* CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

footer {
    width: 100%;
    background: #202020;
    color: white;
}

.footer_container-footer-all {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 40px;
}

.footer_container-body {
    display: flex;
    justify-content: space-between;
}

.footer_colum1 {
    max-width: 33%;
}

.footer_colum1 h1 {
    font-size: 22px;
}

.footer_colum1 img {
    width: 80%;
    height: auto;
}


.footer_colum1 p {
    font-size: 14px;
    color: #C7C7C7;
    margin-top: 20px;
}

.footer_colum2 {
    width: 23%;
}

.footer_colum2 h1 {
    font-size: 22px;
}

.footer_row {
    margin-top: 20px;
    display: flex;
}

.footer_row img {
    width: 36px;
    height: 36px;
}

.footer_row label {
    margin-top: 10px;
    margin-left: 20px;
    color: #C7C7C7;
}

.footer_row a {
    color: #C7C7C7;
    text-decoration: none;
}

.footer_colum3 {
    width: 38%;
}

.footer_colum3 h1 {
    font-size: 22px;
}

.footer_colum3 iframe {
    border: 0;
    border-radius: 10px;
}

.footer_row2 {
    margin-top: 20px;
    display: flex;
}

.footer_row2 img {
    max-width: 100%;
    height: auto;
}

.footer_row2 label {
    margin-top: 10px;
    margin-left: 20px;
    max-width: 140px;
    text-decoration: none;
}

.footer_container-footer {
    width: 100%;
    background: #101010;
}

.footer_footer {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.footer_copyright {
    color: #C7C7C7;
}

.footer_copyright a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.footer_information a {
    text-decoration: none;
    color: #C7C7C7;
}

@media screen and (max-width: 520px) {
    .footer_container-body {
        display: flex;
        flex-wrap: wrap;
    }

    .footer_colum1 {
        max-width: 100%;
    }

    .footer_colum2,
    .footer_colum3 {
        margin-top: 40px;
    }
}

.footer_social {
    width: 36px;
    height: 36px;
}

@media screen and (max-width: 768px) {
    .footer_container-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer_colum1,
    .footer_colum2,
    .footer_colum3 {
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
    }

    .footer_row,
    .footer_row2 {
        justify-content: center;
    }

    .footer_row label,
    .footer_row2 label {
        margin-left: 10px;
    }

    .footer_footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer_copyright,
    .footer_information {
        margin-top: 10px;
    }
}
