.footer-grid-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(50px, 10vw, 100px);
}

div#footer-4 img {
    max-width: 100%;
    height: auto;
    width: 205px;
    display: flex;
}

footer {
    padding: 100px 0 150px;
}

.footer-1-logos {
    display: flex;
    gap: 10px;
    align-items: center;
}

div#footer-1 {
    gap: 36px;
    display: flex;
    flex-direction: column;
}

.footer-2-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

div#footer-2 {
    display: flex;
    flex-direction: column;
    gap: 54px;
}

footer h3 {
    color: var(--orange);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; 
    letter-spacing: 5.12px;
    text-transform: uppercase;
}

footer a {
    color: var(--navy);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
    transition: ease 0.4s;
}

footer a:hover {
    opacity: 0.4;
}

div#footer-3 {
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.footer-3-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-1-about p {
    color: rgba(7, 47, 65, 0.72);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.footer-1-logos img {
    max-width: 75%;
    height: auto;
}

@media (max-width: 980px) {
    .footer-grid-wrapper {
        grid-template-columns: 1fr;
    }
}