footer {
    width: 100%;
    background-color: #101820;
    padding: 42px 60px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.join {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    /* 227.273% */
    letter-spacing: 1.32px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.links-container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.links-container {
    display: flex;
    gap: 28px;
    align-items: center;
    height: 44px;
}

.links-container.gray {
    gap: 12px;
    height: 22px;
}

.links-container .link {
    color: #FFF;
    text-decoration: none;

    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    /* 277.778% */
    letter-spacing: 1.08px;
}

.links-container .link:hover {
    text-decoration: underline;
}

.links-container.gray .link {
    opacity: 0.7;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    /* 111.111% */
    letter-spacing: 1.08px;

}

.links-container .divider {
    border: none;
    margin: 0;
    padding: 0;
    width: 2px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.17);
}

.link.facebook {
    background: transparent url('/assets/images/facebook.png') no-repeat center center;
    width: 24px;
    height: 24px;
    border-radius: 9.157px;
}

.copyright {
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
    /* 111.111% */
    letter-spacing: 1.08px;
    opacity: 0.7;
}

a.facebook {
    display: none;
}


.footer-logo{
    width: 300px;
    object-fit: contain;
    object-position: center; 
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 0;
    }

    a.facebook {
        color: #FFF;
        text-align: center;
        font-size: 13px;
        font-style: normal;
        font-weight: 600;
        line-height: 14px;
        /* 107.692% */
        padding: 8px 16px;
        text-decoration: none;
        letter-spacing: 0.78px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 14px;
        height: 38px;
        border-radius: 7px;
        background: rgba(255, 255, 255, 0.08);
    }

    a.facebook::after {
        content: '';
        width: 22px;
        height: 22px;
        background: transparent url('/assets/images/facebook.png') no-repeat center center;
        border-radius: 7px;
    }

    .footer-logo {
        max-width: 186px;
        max-height: 32px;
    }

    .content-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 19px;
    }

    .join {
        color: #FFF;
        font-size: 11px;
        padding-top: 42px;
        font-weight: 700;
        line-height: 15px;
        letter-spacing: 0.72px;
    }

    .links-container-wrapper {
        flex-direction: column-reverse;
        align-items: center;
        gap: 19px;
    }


    .links-container {
        gap: 5px;
        height: 20px;
    }

    .links-container .link {
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 14px;
        letter-spacing: 0.78px;
    }

    .link.facebook {
        display: none;
    }

    .links-container.gray .link {
        font-size: 12px;
        font-weight: 400;
        line-height: 14px;
        letter-spacing: 0.78px;

    }

    .copyright {
        font-size: 11px;
        letter-spacing: 1.08px;
        font-weight: 500;
    }
}
