footer {
    background: url("../image/bgfooter.jpg");
    background-size: cover;
    margin-top: auto;
}
.row-footer-newsletter {
    display: grid;
    grid-template-columns: auto 12fr auto;
    gap: 100px;
    align-items: center;
}
.footer-newsletter {
    padding: 60px 0;
    color: #ffffff;
    border-bottom: solid 1px #8c857d;
}
.footer-newsletter-span {
    display: flex;
}
.footer-newsletter-img {
    margin-right: 10px;
}
.footer-social {
    text-align: right;
}
.footer-social a {
    display: inline-block;
    color: #8c857d;
    font-size: 20px;
    margin-left: 15px;
}
.row-footer-main {
    display: grid;
    grid-template-columns: repeat(5, 12fr);
    gap: 50px;
    /* padding: 100px 0; */
    padding: 20px 0px 10px;
}
.footer-info i {
    color: #fff;
    min-width: 30px;
}
.footer-title {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark-black);
    text-transform: uppercase;
    margin-bottom: 40px;
    font-family: "Aboreto", system-ui;
}
.footer-menu {
    columns: 4;
}
.footer-menu a {
    font-size: 16px;
    font-weight: 200;
    font-family: "Montserrat", serif;
    color: #fff;
    display: block;
    line-height: 30px;
}
.footer-menu a:hover {
    color: var(--color-grey-dark);
}
.footer-copy {
    border-top: solid 1px #8c857d;
    /* padding: 50px 0; */
    padding: 10px 0px 15px;
    color: #bfbfbf;
}
.footer-copy a {
    color: #bfbfbf;
    text-decoration: underline;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.input-newsletter {
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 200;
    color: var(--color-dark-black);
    height: 35px;
    line-height: 35px;
    border: 1px solid var(--color-grey-dark);
    border-radius: 0;
    padding: 0 30px;
}
.input-newsletter::placeholder {
    color: #fff;
    font-size: 14px;
    font-weight: 200;
    color: var(--color-dark-black);
}
#footer-newsletter-button {
    background: #8c857d;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 35px;
    height: 35px;
    border: none;
    border-radius: 0;
    text-align: center;
    padding: 0 30px;
}
.footer-info {
    font-size: 14px;
    font-weight: 200;
    font-family: "Montserrat", serif;
    color: #fff;
    display: block;
    line-height: 30px;
}
.footer-info li {
    margin-bottom: 10px;
}
.linkfooter {
    color: #fff;
}
.linkfooter a {
    font-size: 16px;
    font-weight: 200;
    line-height: 30px;
    font-family: "Montserrat", serif;
    color: var(--color-dark-black);
}
.linkfooter a:hover {
    text-decoration: underline;
}
.informations-container {
    padding-bottom: 5px;
}
.informations-container .linkfooter {
    padding: 5px 10px;
}
.informations-container .linkfooter:first-of-type {
    padding-left: 0px;
}
.informations-container .linkfooter:last-of-type {
    padding-right: 0px;
}
.informations-container .linkfooter a {
    text-decoration: none;
}
.netopia-black-container {
    padding: 2px 10px;
    border-radius: 6px;
    background-color: #fff;
    overflow: hidden;
}
footer .footer-main {
    background-color: #fff;
    color: var(--color-dark-black);
    border-top: 2px solid var(--color-dark-black);
}
footer .row-footer-main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
footer .row-footer-main .footer-menu-container {
    width:  20%;
}
footer .row-footer-main .footer-title {
    margin-bottom: 30px;
    font-weight: 600;
}
.footer-subtitle {
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 13px;
}
footer .row-footer-main .footer-menu-container ul {
    padding-left: 0px;
}
footer .row-footer-main .footer-newsletter-container {
    width: calc(40% - 150px);
}
footer .footer-row-text-main {
    padding: 30px 0px 5px;
}
footer .footer-row-text-main .footer-text-area-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}
footer .footer-row-text-main .footer-text-area-text {
    margin-bottom: 10px;
    font-size: 16px;
}
footer .footer-row-text-main .footer-text-area-text:last-of-type {
    margin-bottom: 0px;
}
footer .footer-row-text-main .footer-text-area-text small {
    font-size: 14px;
}

@media only screen and ( max-width: 1200px ) {
    footer .row-footer-main {
        gap: 40px;
    }
    footer .row-footer-main .footer-newsletter-container {
        order: 1;
        width: 80%;
        margin: 0px auto;
        text-align: center;
    }
    footer .row-footer-main .footer-menu-container {
        order: 2;
        width: calc(33% - calc(80px / 3));
    }
}

@media only screen and ( max-width: 767px ) {
    footer .row-footer-main {
        gap: 20px;
        justify-content: center;
    }
    footer .row-footer-main .footer-newsletter-container {
        width: 90%;
    }
    footer .row-footer-main .footer-menu-container {
        width: calc(50% - calc(20px / 2));
        text-align: center;
    }
    footer .row-footer-main .footer-title {
        margin-bottom: 20px;
    }
}

@media only screen and ( max-width: 479px ) {
    footer .row-footer-main {
        gap: 16px;
    }
    footer .row-footer-main .footer-menu-container {
        width: 90%;
    }
    footer .row-footer-main .footer-title {
        margin-bottom: 15px;
    }
}