/* Footer */
.site-footer {
    background-color: #121212;
    color: #FFFFFF;
    text-align: center;
    padding: var(--event-footer-menu-top-padding) 48px var(--event-footer-menu-bottom-padding);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content-wrapper {
    max-width: 1344px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    box-sizing: border-box;
    gap: 34px;
}

.site-footer .footer-content-wrapper .top-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.site-footer .footer-content-wrapper .top-container .footer-logo-wrapper {

}

.site-footer .footer-content-wrapper .top-container .footer-social-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
}

.site-footer .footer-content-wrapper .top-container .footer-social-wrapper .footer-social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.site-footer .footer-content-wrapper .top-container .footer-social-wrapper .footer-social-icon-wrapper a {
    display: inline-block;
    text-decoration: none;
}

.site-footer .footer-content-wrapper .top-container .footer-social-wrapper .footer-social-hash p {
    color: rgba(255, 255, 255, 0.70);
    margin: 0;
}

.site-footer .footer-content-wrapper .middle-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.site-footer .footer-content-wrapper .middle-container .footer-description-wrapper {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.site-footer .footer-content-wrapper .middle-container .footer-description-wrapper p {
    color: rgba(255, 255, 255, 0.70);
    text-align: left;
}

.site-footer .footer-content-wrapper .middle-container .footer-navigation-wrapper {
    flex: 2;
}

.site-footer .footer-content-wrapper .middle-container .footer-navigation-wrapper .footer-nav .footer-menu-container .footer-menu {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
    row-gap: 16px;
}

ul#menu-footer-menu li a {
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 18px;
    line-height: 26px;
}

ul#menu-footer-menu li a:hover {
    border-bottom: 1px solid;
}

.site-footer .footer-content-wrapper .footer-copyrights-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 12px;
    line-height: 18px;
}

@media only screen and (max-width: 1020px) {
    .site-footer .footer-content-wrapper .middle-container {
        flex-direction: column-reverse;
        gap: 18px;
    }

    .footer-navigation-wrapper {
        width: 100%;
    }

    .site-footer .footer-content-wrapper .middle-container .footer-navigation-wrapper .footer-nav .footer-menu-container .footer-menu {
        padding-inline-start: 0px;
    }
}

@media only screen and (max-width: 768px) {
    .site-footer {
        padding: 42px 20px;
    }

    .footer-content-wrapper {
        gap: 24px;
    }

    .site-footer .footer-content-wrapper .middle-container .footer-navigation-wrapper .footer-nav .footer-menu-container .footer-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 568px) {
    .site-footer .footer-content-wrapper .top-container {
        flex-direction: column;
        gap: 24px;
    }
}