footer {
    background: var(--Primary-BG);
}

footer .footer-wrapper {
    padding: 8rem 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

footer .footer-wrapper .footer-main {
    display: flex;
    gap: 1.5rem;
}

footer .footer-wrapper .footer-main .footer-logo {}

footer .footer-wrapper .footer-main .footer-logo a {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-radius: 16px;
    background: var(--White);
    box-shadow: 0px 0px 0px 0.5px rgba(0, 0, 0, 0.16) inset;
    height: 100%;
}

footer .footer-wrapper .footer-main .footer-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 278px;
}

footer .footer-wrapper .footer-main .footer-nav-wrapper {
    flex: 1 0 0;
}

footer .footer-wrapper .footer-main .footer-nav-wrapper .footer-nav {
    display: flex;
    padding: 24px;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 16px;
    background: var(--White);
    box-shadow: 0px 0px 0px 0.5px rgba(0, 0, 0, 0.16) inset;
    height: 100%;
    width: 100%;
}

footer .footer-wrapper .footer-main .footer-nav-wrapper .footer-nav .nav-item {
    display: flex;
    padding: 24px 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
}

footer .footer-wrapper .footer-main .footer-nav-wrapper .footer-nav .nav-item .nav-title {
    color: var(--Secondary);
    font-size: clamp(16px, 1.2vw, 21px);
    font-weight: 600;
    line-height: 26px;
    /* 123.81% */
}

footer .footer-wrapper .footer-main .footer-nav-wrapper .footer-nav .nav-item .nav-link {
    padding: 0;
    display: grid;
    gap: 24px;
}

footer .footer-wrapper .footer-main .footer-nav-wrapper .footer-nav .nav-item .nav-link a {
    color: var(--soluk-text);
    font-size: clamp(14px, 0.9vw, 16px);
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
    white-space: nowrap;
}

footer .footer-wrapper .footer-main .footer-contact {
    display: flex;
    padding: 48px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--Primary-Lighter);
    box-shadow: 0px 0px 0px 0.5px rgba(0, 0, 0, 0.16) inset;
    width: 276px;
}

footer .footer-wrapper .footer-main .footer-contact .footer-contact-title {
    color: var(--Secondary);
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 600;
    line-height: 26px;
    /* 123.81% */
}

footer .footer-wrapper .footer-main .footer-contact .footer-contact-link {
    display: grid;
    gap: 24px;
}

footer .footer-wrapper .footer-main .footer-contact .footer-contact-link a {
    color: #1D3E52;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
    text-align: center;
    word-break: break-word;
}

footer .footer-wrapper .footer-main .footer-contact .footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer .footer-wrapper .footer-main .footer-contact .footer-social .social-item {}

footer .footer-wrapper .footer-main .footer-contact .footer-social .social-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: .4s;
}

footer .footer-wrapper .footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .footer-wrapper .footer-copyright .copright-text-wrapper {
    color: var(--Paragraph);
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer .footer-wrapper .footer-copyright .copright-text-wrapper .copyright-text {
    opacity: 0.8;
}

footer .footer-wrapper .footer-copyright .copright-text-wrapper .seperator {
    display: inline-block;
    width: 1px;
    height: 20px;
    background: #7A7A7A;
}

footer .footer-wrapper .footer-copyright .footer-signature {
    filter: contrast(0.1);
    transition: .4s;
}

@media screen and (max-width: 1199px) {
    footer .footer-wrapper .footer-main .footer-nav-wrapper .footer-nav .nav-item {
        padding: 16px 24px;
        gap: 16px;
    }

    footer .footer-wrapper .footer-main .footer-nav-wrapper .footer-nav .nav-item .nav-link {
        gap: 0.5rem;
    }

    footer .footer-wrapper .footer-main .footer-contact {
        padding: 24px 48px;
        width: auto;
    }

    footer .footer-wrapper {
        padding-bottom: 1rem;
        padding-top: 3rem;
    }
}

@media screen and (max-width: 991px) {
    footer .footer-wrapper .footer-main {
        flex-wrap: wrap;
    }

    footer .footer-wrapper .footer-main .footer-contact {
        order: -1;
        width: 50%;
    }

    footer .footer-wrapper .footer-main .footer-logo {
        order: -1;
        flex: 1;
    }

    footer .footer-wrapper {
        gap: 1.5rem;
        padding-top: 3rem;
    }

    footer .footer-wrapper .footer-main .footer-logo a img {
        max-height: 200px;
    }

}

@media screen and (max-width: 767px) {
    footer .footer-wrapper .footer-main .footer-nav-wrapper {
        width: 100%;
        flex: 1;
    }

    footer .footer-wrapper .footer-main .footer-nav-wrapper .footer-nav {
        padding: 1rem;
        overflow-x: auto;
    }

    footer .footer-wrapper .footer-main .footer-nav-wrapper .footer-nav .nav-item {
        padding: 8px 1rem;
    }

    footer .footer-wrapper .footer-main .footer-logo a {
        padding: 4px;
    }

    footer .footer-wrapper .footer-main {
        gap: 1rem;
    }

    footer .footer-wrapper .footer-main .footer-contact {
        padding: 1rem;
        gap: 1rem;
    }

    footer .footer-wrapper .footer-main .footer-contact .footer-contact-link {
        gap: 12px;
    }

    footer .footer-wrapper .footer-main .footer-contact .footer-social .social-item img {
        width: 20px;
        height: 20px;
    }

    footer .footer-wrapper .footer-copyright .copright-text-wrapper {
        font-size: 13px;
        gap: 0.5rem;
    }

    footer .footer-wrapper .footer-copyright {
        align-items: end;
    }
}


@media (hover: hover) {
    footer .footer-wrapper .footer-copyright .footer-signature:hover {
        filter: unset;
    }

    footer .footer-wrapper .footer-main .footer-contact .footer-social .social-item img:hover {
        opacity: 0.7;
    }

    footer .footer-wrapper .footer-main .footer-nav-wrapper .footer-nav .nav-item .nav-link a:hover {
        color: var(--Primary);
    }

    footer .footer-wrapper .footer-main .footer-contact .footer-contact-link a:hover {
        color: var(--Primary);
    }
}