
/* footer */
.footer {
    color: #fff;
}

.footer p {
    color: #fff;
    margin-bottom: 0;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 40px;
    margin-bottom: 40px;
}

.footer-menu-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 18px 0;
    margin: 0;
    list-style-type: none;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-menu-items li {
    margin-bottom: 0;
}

.footer-menu-item {
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-family: "Inter", Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    transition: 0.5s ease-in-out;
    transition-property: background, background-image, background-color, opacity,
        transform, margin, height, border-color, outline-color, box-shadow,
        color;
}

.footer-menu-item:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    transition: right 0.3s ease-out;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}

.footer-menu-item:hover {
    color: #fff;
}

.footer-menu-item:hover:before {
    right: 0;
}

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

.footer-logo a {
    display: block;
    text-align: center;
    transition: fill 0.4s ease;
    font-family: inherit !important;
}

.footer-logo a:hover {
    color: var(--accent-color) !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin-top: 80px;
    gap: 40px;
}

.footer .wp-block-social-links {
    column-gap: 22px;
}

.footer .wp-block-social-links a {
    font-size: 40px;
}

.footer .wp-block-social-links li:hover {
    transform: unset;
}

.footer .wp-block-social-links a:hover {
    color: var(--accent-color) !important;
}

@media only screen and (min-width: 960px) {
    .footer-top {
        flex-direction: row;
        margin-bottom: 0;
    }

    .footer-logo {
        margin-bottom: 0;
    }

    .footer-menu-items {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .footer-menu-item.mobile {
        display: none;
    }
}

@media only screen and (min-width: 1200px) {
    .footer-logo svg {
        margin: 70px 0;
    }
}