.footer-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

footer.main-footer {
    padding: 150px 0;
    position: relative;
}

footer.main-footer:after {
    content: '';
    width: 90%;
    height: 1px;
    opacity: 0.6;
    background: rgba(250, 249, 246, 0.36);
    left: 5%;
    top: 100px;
    right: 0;
    position: absolute;
}

footer.main-footer:before {
    content: '';
    width: 90%;
    height: 1px;
    opacity: 0.6;
    background: rgba(250, 249, 246, 0.36);
    left: 5%;
    bottom: 100px;
    right: 0;
    position: absolute;
}

.footer-wrapper h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    overflow: hidden;
    color: var(--white);
    text-overflow: ellipsis;
    margin-bottom: 20px;
}

.footer-wrapper a {
    color: var(--white);
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.footer-grid-1, .footer-grid-2, .footer-grid-3, .footer-grid-4 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid-4 p {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.footer-grid-4 p:nth-of-type(1) {
    border-bottom: solid 1px rgba(250, 249, 246, 0.60);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.footer-1-socials {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.footer-grid-1 img {
    margin-bottom: 20px;
}

.footer-grid-1 img {
    margin: 10px auto;
}

.footer-wrapper .footer-grid-1 h3 {
    text-align: center;
}

@media (max-width: 980px) {
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 750px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
    }
}