footer {
    height: 100vh;
    background-color:var(--color-secondary);
    color: var(--color-primary);
    padding: 48px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 1000;
    /* margin-top: -100%; */

    
}

.site-footer {
    position: sticky;
    width: 100vw;
    bottom: 0;
    z-index: 0;
}

.footer-placeholder {
    height: 100vh;
    width: 100vw;
}

.footer-title {
    color: var(--Black, #000);
    leading-trim: both;
    text-edge: cap;

    /* Desktop/Titling Display 1 */
    font-size: 128px;
    font-style: normal;
    font-weight: 300;
    line-height: 90%; /* 115.2px */
    letter-spacing: -2.56px;
    text-transform: uppercase;
    
}

.footer-top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

footer .cta-arrow {

    display: inline-flex;
    padding: 0;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;

    border-radius: 8px;
    
    color: var(--Black, #000);
    font-size: 160px;
    font-style: normal;
    font-weight: 300;
    line-height: 130px; /* 81.25% */
    letter-spacing: -3.2px;
    text-transform: uppercase;

    margin-bottom: 32px;
}

footer .cta-arrow img {
    height: 86px;
    width: 86px;
    margin-bottom: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pixelis-est {
    margin: 0;
}

.certifications {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-center .contact-email {
    color: #000;
    text-decoration: none;
}

.footer-right .social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: #000;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.footer-bottom-top {
    display: flex;
    padding: 32px 0px;
    justify-content: space-between;
    flex-direction: row;
    align-items: end;
    align-self: stretch;
}

.footer-bottom-bottom {
    display: flex;
    padding: 32px 0px;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    border-top: 1px solid rgba(10, 10, 10, 0.30);
}

.footer-bottom-bottom > div {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom-bottom > .footer-bottom-bottom-right {
    gap: 32px;
}

.footer-bottom-bottom > .cert-logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.certification-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    width: 56px;

    color: var(--Black, #000);
    leading-trim: both;
    text-edge: cap;

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 15.6px */
    letter-spacing: -0.24px;
}

.footer-address {
    margin-top: 12px;
}

.legal-link {
    color: #000;
    text-decoration: none;
}

.update-date {
    color: #000;
} 

@media (max-height: 800px) and (min-width: 1024px) {
    .footer-title {
        font-size: 96px;
    }
}

@media screen and (max-width: 1024px) { /* Mobile and Tablet */

    footer {
        padding: 17px 9px 0;
        /* height: 640px; */
    }

    .footer-title {
        font-size: 56px;
        font-style: normal;
        font-weight: 300;
        line-height: 90%; /* 50.4px */
        letter-spacing: -1.12px;
        margin-bottom: 8px;
    }

    footer .cta-arrow {
        margin-bottom: 0;
    }

    footer .cta-arrow img {
        width: 48px;
        height: 42px;
    }

    .footer-bottom-bottom {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom-bottom > div {
        justify-content: space-between;
        width: 100%;
    }

    .footer-right .social-links {
        gap: 16px;
    }

    .certifications {
        flex: 1;
        justify-content: space-evenly;
    }
}