footer {
    width: 100%;
    background: #000;
    color: white;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    max-width: 25rem;
    column-gap: 40px;
    margin: auto;
}

footer div {
    display: inline-block;
    vertical-align: top;
}

.company-links {
    margin-left: -10px;
    width: 140px;
}

.legal-links {
    width: 140px;
}

h6 {
    color: #666666;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
}

.footer-links ul {
    margin-bottom: 3rem;
    padding: 0;
    text-align: center;
}

.footer-links ul li {
    list-style-type: none;
    padding-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #CDCED1;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: 0.25s;
}

footer ul li a:hover {
    color: #9FA7E1;
    transition: 0.25s;
}

.footer-branding {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    height: 22px;
}

.statement {
    margin-top: -4px; /* Fix later */
    width: 150px;
    height: 22px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.statement p {
    margin-left: 5px;
    color: rgb(102, 102, 102);
    font-size: 14px;
}

.statement span {
    display: block;
    height: 100%;
    padding-left: 5px;
    padding-right: 10px;
    animation: spin_words 4s infinite;
}

.statement-words {
    width: 26px;
    overflow: hidden;
}

.socials {
    width: 300px;
    margin: 30px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 14px;
}

svg {
    fill: #fff;
    transition: 0.25s;
}

svg:hover {
    fill: #9FA7E1;
    transition: 0.25s;
}

@keyframes spin_words {
    10% {
        transform: translateY(-115%);
    }
    50% {
        transform: translateY(-110%);
    }
    60% {
        transform: translateY(-215%);
    }
    100% {
        transform: translateY(-210%);
    }
}