footer {
    width: var(--full-width);
    height: auto;
    background-color: #2da749;
    letter-spacing: 1px;
}

footer .cls-3 {
    stroke: unset;
}

.footer_container {
    width: var(--main-width);
    margin: 0 auto;
}

.footer_social_container.d_flex {
    width: var(--full-width);
    height: 100px;
    border-bottom: 1px solid #fff;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.footer_social_container.d_flex a {
    height: auto;
    margin: 0 15px;
}

.footer_social_container.d_flex a svg {
    height: 30px;
}

.footer_social_container.d_flex a svg .cls-3 {
    opacity: 0.7;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    cursor: pointer;
}

.footer_social_container.d_flex a svg:hover .cls-3 {
    opacity: 1;
}

.footer_logo {
    text-align: center;
    padding-top: 40px;
}

.footer_logo svg {
    height: 120px;
}

.footer_info_container {
    width: var(--full-width);
    height: auto;
    text-align: center;
    padding: 15px 0;
}

.footer_info_container a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer_info_list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer_info_list a {
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.footer_info_voice a:hover {
    opacity: 0.7;
}

.footer_info_list.d_flex .footer_info_voice:first-of-type {
    padding: 10px 0;
    flex: 1 100%;
}

.footer_info_list.d_flex .footer_info_voice:nth-of-type(2) {
    padding-right: 15px;
}

.footer_info_container hr.vertical {
    width: 2px;
    height: 35px;
    margin: 20px auto;
    border: none;
    background-color: #fff;
}

.footer_voice_content.d_flex {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 30px 0 70px 0;
}

.footer_voice {
    margin-right: 60px;
}

.footer_voice:last-of-type {
    margin-right: 0;
}

.footer_voice a {
    font-size: 0.7rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.footer_voice a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {

    .footer_container {
        width: var(--main-width);
    } 

    .footer_logo svg {
        height: 100px;
    }

    .footer_info_list.d_flex {
        flex-direction: column;
    }

    .footer_info_list.d_flex .footer_info_voice:first-of-type {
        padding: 0 0 20px 0;
    }

    .footer_info_list.d_flex .footer_info_voice:nth-of-type(2) {
        border-right: 0;
        padding: 0 0 20px 0;
    }

    .footer_info_list.d_flex .footer_info_voice:nth-of-type(3) {
        padding: 0 0 20px 0;
    }

    .footer_voice_content.d_flex {
        flex-direction: column;
        padding: 10px 0 50px 0;
    }

    .footer_voice {
        margin-right: 0;
        margin-bottom: 20px;
    }

}

@media screen and (max-width: 320px) {

    .footer_logo svg {
        height: 80px;
    }

}