footer {
    margin-top: 32px;
    background: var(--module-background);
    overflow-x: hidden;
}
.row-footer-newsletter {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.footer-newsletter {
    padding: 30px 0;
    background: var(--color-primary);
    color: #ffffff;
}
.footer-newsletter-span {
    display: flex;
    min-width: 360px;
}
.footer-newsletter-img {
    margin-right: 20px;
}
.newsletter-input-container {
    width: 100%;
    display: flex;
}
#footer-newsletter-input {
    border-top-left-radius: var(--input-radius);
    border-bottom-left-radius: var(--input-radius);
    padding: 4px 20px;
}
#footer-newsletter-button {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.footer-social {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.footer-social a {
    display: inline-block;
    color: var(--color-white);
    fill: var(--color-white);
    stroke: var(--color-white);
    font-size: 28px;
    margin-left: 15px;
}
.footer-social a svg {
    width: 22px;
    margin-top: -7px;
}
.footer-main {
    padding: 40px 0px;
}
.row-footer-main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
.footer-logo-container {
    width: 26%;
    padding-right: 30px;
}
.footer-logo-container .footer-logo {
    display: inline-block !important;
}
.footer-logo-container + .footer-menu-container {
    width: 48%;
    padding: 30px;
    position: relative;
    text-align: center;
}
.footer-logo-container + .footer-menu-container:before, 
.footer-logo-container + .footer-menu-container:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 60%;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    width: 2px;
    height: 50%;
    background-color: var(--color-general-border);
}
.footer-logo-container + .footer-menu-container:before {
    left: 0px;
}
.footer-logo-container + .footer-menu-container:after {
    right: 0px;
}
.footer-menu-container + .footer-menu-container {
    width: 26%;
    text-align: center;
    padding: 30px 0px 0px 30px;
    min-width: 260px;
}
.footer-logo-container + .footer-menu-container .footer-menu {
    columns: 2;
}
.footer-menu-container + .footer-menu-container .footer-menu {
    columns: 1;
}
.footer-info i {
    color: var(--color-primary);
    min-width: 20px;
}
.footer-title {
    font-size: 18px;
    font-family: 'Open Sans', 'Arial', 'Tahoma', sans-serif;
    font-weight: bold;
    font-style: normal;
    font-display: swap;
    text-transform: uppercase;
    margin-bottom: 80px;
    color: var(--color-primary);
    text-align: center;
}
.footer-menu {
    columns: 4;
}
.footer-menu-item {
    text-align: center;
}
.footer-menu a {
    font-size: 15px;
    display: inline-block;
    font-family: 'Jost', 'Arial', 'Tahoma', sans-serif;
    font-display: swap;
    font-weight: normal;
    font-style: normal;
    color: var(--color-href);
}
.footer-menu a:hover {
    color: var(--color-primary);
}
.footer-copy {
    border-top: 2px solid var(--color-general-border);
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media ( max-width: 1023px ) {
    .footer-logo-container {
        width: 50%;
    }
    .footer-logo-container + .footer-menu-container {
        width: 50%;
    }
    .footer-logo-container + .footer-menu-container:after {
        display: none;
    }
    .footer-menu-container + .footer-menu-container {
        width: 100%;
    }
    .footer-anpc.d-flex {
        justify-content: center !important;
    }
}
@media ( max-width: 899px ) {
    .row-footer-newsletter {
        flex-direction: column;
    }
    .footer-newsletter-span {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-logo-container {
        width: 100%;
        padding-right: 0px;
        text-align: center;
    }
    .footer-logo-container .footer-logo img {
        max-width: 130px;
    }
    .footer-logo-container + .footer-menu-container:before {
        display: none;
    }
    .footer-logo-container + .footer-menu-container:after {
        display: block;
    }
    .footer-menu-container + .footer-menu-container {
        width: 50%;
    }
    .footer-title {
        margin-bottom: 30px;
    }
}
@media ( max-width: 639px ) {
    .footer-logo-container + .footer-menu-container {
        width: 100%;
        padding: 20px 0px 0px;
    }
    .footer-logo-container + .footer-menu-container:after {
        display: none;
    }
    .footer-menu-container + .footer-menu-container {
        width: 100%;
        padding: 20px 0px 0px;
    }
}
@media ( max-width: 479px ) {
    .footer-logo-container + .footer-menu-container .footer-menu {
        columns: 1;
    }
}