/* =========================================================
   CERFBOX - FOOTER
   ========================================================= */

footer p {
    font-size: 16px;
}


.site-footer {
    width: 100%;

    background: #000;
    color: var(--color-white);
}

.footer-inner {
    width: 100%;

    padding:
            3.1vw
            6.4vw
            3.3vw;

    display: grid;

    grid-template-columns:
        45% 23% 32%;

    align-items: start;
}

.footer-brand {
    max-width: 36vw;
}

.footer-logo {
    width: 6.3vw;
    height: auto;
}

.footer-brand p {
    margin:
            2vw
            0
            0;

    color: var(--color-white);

    font-family: var(--font-text);

    font-weight: var(--weight-regular);

    line-height: 1.28;
}

.footer-brand p strong {
    font-weight: var(--weight-bold);
}

.footer-linkedin {
    width: 1.8vw;
    height: 1.8vw;

    margin-top: 2.5vw;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--color-white);
    color: var(--color-footer);

    font-family: Arial, sans-serif;

    font-size: 1.1vw;
    font-weight: var(--weight-bold);

    line-height: 1;

    transition:
            opacity 0.2s ease,
            transform 0.2s ease;
}

.footer-linkedin:hover {
    opacity: 0.85;

    transform: translateY(-1px);
}

.footer-nav {
    padding-top: 1.5vw;

    display: flex;
    flex-direction: column;

    gap: 1.35vw;
}

.footer-nav a {
    display: flex;
    align-items: center;

    gap: 0.75vw;

    color: var(--color-white);

    font-family: var(--font-text);

    font-size: 0.9vw;
    font-weight: var(--weight-medium);

    line-height: 1.1;

    transition: opacity 0.2s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-nav a span {
    width: 0.55vw;
    height: 0.55vw;

    background: var(--color-yellow);

    flex-shrink: 0;
}

.footer-contact {
    padding-top: 0.2vw;
}

.footer-address {
    display: flex;
    align-items: flex-start;

    gap: 1.4vw;

    color: var(--color-white);

    font-family: var(--font-text);

    font-size: 1.05vw;

    line-height: 1.15;
}

.footer-address-icon {
    width: 2.4vw;
    height: 2.8vw;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-white);

    flex-shrink: 0;
}

.footer-address-icon svg {
    width: 100%;
    height: auto;
}

.footer-contact-block {
    margin-top: 2vw;

    padding-left: 3.8vw;
}

.footer-contact-block p {
    margin:
            0
            0
            1.5vw;

    color: var(--color-white);

    font-family: var(--font-text);

    font-weight: var(--weight-regular);

    line-height: 1.2;
}

.footer-contact-block p:last-child {
    margin-bottom: 0;
}

.footer-contact-block strong {
    font-weight: var(--weight-bold);
}

.mt-5{
    margin-top: 15px
}

.ml-10{
    margin-left: 10px;
}

/*
 * ============================================================
 * COPYRIGHT
 * ============================================================
 */

.footer-copyright {
    width: 100%;
    min-height: 4.2vw;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 1vw 20px;

    background: #f5f5f5;

    text-align: center;
}

.footer-copyright p {
    margin: 0;

    color: #000;

    font-family: var(--font-text);
    font-size: 0.9vw;
    font-weight: var(--weight-regular);
    line-height: 1.2;
}


/*
 * ============================================================
 * RESPONSIVE
 * ============================================================
 */

@media (max-width: 1100px) {

    .footer-copyright {
        min-height: 65px;
        padding: 15px 20px;
    }

    .footer-copyright p {
        font-size: 14px;
    }

}


@media (max-width: 600px) {

    .footer-copyright {
        min-height: 58px;
        padding: 14px 20px;
    }

    .footer-copyright p {
        font-size: 13px;
    }

}