footer {
    height: 455px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 80px 32px;
    background-color: rgba(12, 25, 55, 1);
    /* background-image: url("../../assets/images/footer-background/footer-desktop.jpg"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

footer .footer-logo { 
    width: 243px;
    height: 64px;
    margin-bottom: 24px;
    object-fit: contain;
}

footer .footer-text {
    font-family: CircularXX TT, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 57.6px;
    text-align: center;
    color: white;
    margin-bottom: 32px;
}

footer .footer-text span { 
    color: rgba(50, 186, 246, 1)
}

footer .footer-social-links { 
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 32px;
}

footer .footer-social-links a { 
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-family: CircularXX TT, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: white;
    text-decoration: none;
}

footer .footer-social-links a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
}

footer .copyright { 
    font-family: CircularXX TT, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: white;
}

@media (max-width: 1024px) {
    footer {
        padding: 80px 40px 32px;
        height: fit-content;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px;
        /* background-image: url("../../assets/images/footer-background/footer-tablet.jpg"); */
    }

    footer .footer-logo {
        margin-bottom: 56px;
    }

    footer .footer-text {
        font-size: 32px;
        line-height: 41px;
        width: 100%;
        max-width: 223px;
    }
    footer .footer-social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

}


@media (max-width: 480px) {
    footer {
        /* background-image: url("../../assets/images/footer-background/footer-mobile-1.jpg"); */
    }
}

@media (max-width: 380px) {
    footer {
        /* background-image: url("../../assets/images/footer-background/footer-mobile-2.jpg"); */
    }
}

footer .footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: space-between;
    width: 100%;
    margin-top: auto;
}

footer .footer-bottom-links {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

footer .footer-bottom-links a {
    font-family: CircularXX TT, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: white;
    text-decoration: none;
}


@media (max-width: 768px) {
    footer .footer-bottom {
        flex-direction: column-reverse;
        align-items: center;
        gap: 56px;
    }

    footer .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        width: 100%;
        max-width: 220px;
        padding-top: 32px;
        border-top: 1px solid rgba(231, 232, 235, 1);
    }


    
}
