#footer {
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
    border-top: var(--gullys-main-orange) 2px solid;
    margin-top: 32px;
}

#footer .footer-content {
    margin-top: 32px;
    margin-bottom: 32px;
}

#footer .footer-content .footer-content-link-collection {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    margin-bottom: 16px;
    padding: 32px;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 32px;
}

#footer .footer-content .footer-content-head {
    display: flex;
    align-items: start;
    gap: 32px;
}

#footer .footer-content .footer-content-head .footer-content-logo {
    width: 100px;
}

#footer .footer-content .footer-content-head .footer-content-title {
    color: var(--gullys-main-orange);
    font-size: 32px;
}

#footer .footer-content .footer-content-links {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-left: var(--gullys-main-orange) 1px solid;
    padding-left: 16px;
}

#footer .footer-content .footer-content-links .footer-content-link-head {
    color: var(--gullys-main-orange);
    font-size: 24px;
}

#footer .footer-sponsor-head {
    width: 100%;
    text-align: center;
    font-size: 32px;
    color: var(--gullys-main-orange);
    padding: 8px;
    box-sizing: border-box;
    margin-top: 32px;
}

#footer .footer-sponsor {
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 48px;
    margin-top: 32px;
    margin-bottom: 32px;
}

#footer .footer-sponsor .footer-sponsor-horizontal {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

#footer .footer-gullys-logo {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 64px;
    margin-bottom: 32px;
    padding: 16px;
    background-color: var(--gullys-main-orange);
}

#footer .footer-gullys-logo img {
    width: 128px;
}

#footer .footer-bottom {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.gullys-social-media {
    display: flex;
    gap: 16px;
}

@media (max-width: 900px) {
    #footer .footer-bottom {
        flex-direction: column;
        gap: 32px;
    }

    #footer .footer-bottom > div {
        justify-content: center !important;
        gap: 16px !important;
    }

    #footer .footer-content .footer-content-head .footer-content-title {
        font-size: 24px;
    }

    #footer .footer-sponsor-head {
        font-size: 24px;
    }

    #footer .footer-content .footer-content-links {
        width: 35%;
    } 
}