footer {
    width: 100%;
    height: auto;
    background-color: #fc9bb3;
    padding: 50px 0 100px 0;
}

.footer_container.d_flex {
    width: var(--static-width);
    height: auto;
    margin: 0 auto;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.footer_list, .footer_logo {
    flex: 0 30%;
    text-align: center;
}

.footer_logo img {
    margin-top: 100px;
}

.footer_list h2 {
    color: #b34569;
    margin-bottom: 40px;
}

.footer_list ul {
    padding-left: 0;
    list-style-type: none;
}

.footer_list ul li {
    color: #fff;
    text-transform: uppercase;
}

.footer_list ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    letter-spacing: 1px;
}

.footer_list ul li a:hover {
    opacity: 0.5;
}

.footer_list hr {
    width: 15px;
    height: 2px;
    background-color: #fff;
    border: none;
    margin-top: 5px;
    margin-bottom: 20px;
}

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

    .footer_logo img {
        width: 80%;
    }

}

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

    .footer_container.d_flex {
        width: var(--calc-width);
        flex-wrap: wrap;
    }

    .footer_list, .footer_logo {
        flex: 0 60%;
        margin: 0 auto;
    }

    .footer_list:first-of-type {
        order: 3;
        -webkit-order: 3;
    }

    .footer_logo {
        order: 2;
        -webkit-order: 2;
    }

    .footer_list:last-of-type {
        order: 1;
        -webkit-order: 1;
    }

    .footer_logo img {
        width: auto;
        margin: 100px 0;
    }

}

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

    .footer_logo img {
        width: 300px;
    }

}

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

    .footer_logo img {
        width: 200px;
        margin: 50px 0;
    } 

}