
.vj-exact-footer {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            #003d31 0%,
            #004c3d 48%,
            #003e32 100%
        );
}

.vj-footer-inner {
    position: relative;
    z-index: 3;
    width: min(1520px, calc(100% - 80px));
    margin: 0 auto;
    padding: 42px 30px 0;
    text-align: center;
}

.vj-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vj-footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vj-footer-logo {
    display: block;
    width: 205px;
    max-width: 100%;
    height: auto;
}

.vj-footer-description {
    max-width: 440px;
    margin: 17px auto 0;
    color: rgba(255,255,255,.88);
    font-size: 16px;
    line-height: 1.55;
}

.vj-footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 23px;
}

.vj-footer-social {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.08);
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.vj-footer-social:hover {
    color: #fff;
    background: rgba(255,255,255,.23);
    transform: translateY(-2px);
}

.vj-footer-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.vj-footer-social:nth-child(2) svg,
.vj-footer-social:nth-child(3) svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linejoin: round;
}

.vj-footer-divider {
    width: 100%;
    height: 1px;
    margin-top: 38px;
    background: rgba(255,255,255,.22);
}

.vj-footer-copyright {
    padding: 19px 0 23px;
    color: rgba(255,255,255,.84);
    font-size: 14px;
}

.vj-footer-pattern {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    width: 82px;
    opacity: .28;
    pointer-events: none;
}

.vj-footer-pattern-left {
    left: 0;
    background:
        linear-gradient(
            45deg,
            transparent 38%,
            rgba(55,222,157,.45) 39% 48%,
            transparent 49% 64%,
            rgba(55,222,157,.35) 65% 74%,
            transparent 75%
        );
    background-size: 34px 34px;
}

.vj-footer-pattern-right {
    right: 0;
    transform: scaleX(-1);
    background:
        linear-gradient(
            45deg,
            transparent 38%,
            rgba(55,222,157,.45) 39% 48%,
            transparent 49% 64%,
            rgba(55,222,157,.35) 65% 74%,
            transparent 75%
        );
    background-size: 34px 34px;
}

@media (max-width: 700px) {

    .vj-footer-inner {
        width: calc(100% - 30px);
        padding: 35px 12px 0;
    }

    .vj-footer-logo {
        width: 175px;
    }

    .vj-footer-description {
        max-width: 330px;
        font-size: 14px;
    }

    .vj-footer-social {
        width: 42px;
        height: 42px;
    }

    .vj-footer-divider {
        margin-top: 30px;
    }

    .vj-footer-copyright {
        font-size: 12px;
    }

    .vj-footer-pattern {
        width: 45px;
        opacity: .18;
    }
}

