footer { 
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
    padding: 75px 40px;
    background-color: rgba(251, 253, 255, 1);
}

footer .footer-logo { 
    height: 58px;
    width: 100%;
    max-width: 300px;
    object-fit: contain;
    object-position: left;
}

footer .footer-logo img { 
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left;
}

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

footer .footer-center .footer-center-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

footer .footer-center .footer-center-top .footer-center-top-title {
    font-family: CircularXX,sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: var(--text-color);
}

footer .footer-center .footer-center-top .footer-center-top-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

footer .footer-center .footer-center-top .footer-center-top-links img {
    height: 60px;
    width: auto;
    object-fit: contain;
    object-position: left;
}

footer .footer-center .footer-center-bottom {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 196px;
    row-gap: 24px;
}

footer .footer-center .footer-center-bottom .footer-link {
    font-family: CircularXX,sans-serif;
    font-weight: 450;
    font-size: 14px;
    line-height: 100%;
    color: var(--text-color);
    text-decoration: none;
    width: fit-content;
    max-width: 185px;
}

footer .footer-social {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 24px;
    min-width: 300px;
    margin-top: auto;
    margin-bottom: 20px;
}

footer .footer-social .footer-social-title {
    width: 100%;
    font-family: CircularXX, sans-serif;
    font-weight: 550;
    font-size: 14px;
    line-height: 140%;
    color: var(--text-color);
}

footer .footer-social .footer-social-link {

width: 40px;

height: 40px;
}

footer .footer-social .footer-social-links { 
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

footer .footer-social .footer-social-link img { 

}

@media (min-width: 992px) and (max-width: 1200px) { 
    footer { 
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}

@media (max-width: 991px) { 
    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 20px;
        gap: 20px;
    }

    footer .footer-logo {
        height: 40px;
    }

    footer .footer-center {
        flex-direction: column-reverse;
    }

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

    footer .footer-center .footer-center-top .footer-center-top-links img {
        height: 30px;
    }

    footer .footer-social .footer-social-links {
        gap: 24px;
    }

    footer .footer-social .footer-social-link {
        width: 24px;
        height: 24px;
    }
    
    footer .footer-social {
        margin-bottom: 0;
    }

    footer .footer-social .footer-social-title {
        display: none;
    }
}
