.footer {
    background: #0C1713;
    padding: 100px 0 90px 0;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    max-width: 1660px;
    position: relative;
}

.newsletter {
    width: 48%;
}

.quick-links h4,
.newsletter h4,
.get-in-touch h4,
.solutions_menu h4 {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 25px;
}

.newsletter_form {
    display: flex;
    flex-wrap: wrap;
    max-width: 410px;
}

.newsletter_field {
    height: 42px;
    width: calc(100% - 42px);
    padding-right: 15px;
    background: transparent;
    border: none;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 0;
}

.newsletter_field::placeholder {
    color: #ffffff;
    opacity: .8;
}

.newsletter_field::-ms-input-placeholder {
    color: #ffffff;
}

.newsletter_submit {
    width: 42px;
    height: 42px;
    font-size: 0;
    background: transparent url(../images/newsletter-arrow.svg) no-repeat;
    background-position: center center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: background .4s ease-in-out, border-color .4s ease-in-out;
    border-radius: 0;
    font-size: 0 !important;
    user-select: none;
}

.newsletter_submit:hover {
    background-color: #242e2a;
    border-color: #242e2a;
}

.quick-links-inside ul {
    position: relative;
}

/* --------------------------------------------------------- */

.quick-links {
    width: 21%;
}

.quick-links-inside {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}

.quick-links-inside ul:first-child {
    width: 40%;
}

.footer_links {
    display: flex;
    flex-flow: column wrap;
    row-gap: 25px;
}

.footer_links a {
    color: #ffffff;
    position: relative;
}

.footer_links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transition: width .35s ease-in-out;
}

.footer_links a:hover::after {
    width: 33px;
}

/* .footer_links a:hover {
    color: var(--color-primary);
} */

.get-in-touch p {
    color: #ffffff;
    font-size: 14px;
    opacity: .8;
}

.get-in-touch p a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.get-in-touch p+p {
    margin-top: 4px;
}

.solutions_menu {
    width: 14%;
}

/* ------------------------------------------- */

.social_icons {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    margin-top: 12px;
}

.social_icons img:hover {
    opacity: .7;
}

.copy_rights {
    position: absolute;
    left: 0;
    bottom: -35px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy_rights p {
    font-size: 14px;
    color: #ffffff;
}

.newsletter-success {
    color: #5dc55d;
    font-size: 11px;
}