.footer {
    position: relative;
    border-top-width: 1px;
    border-top-style: solid;
    padding-bottom: 70px;
}

.footer__menu {
    padding: 24px 0 0;
}

.footer__menu-ul {
    list-style: none;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 600;
}

.footer__menu-ul .sub-menu {
    display: none;
}

.footer__images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px 0 0;
}

.footer__image-link {
    display: block;
    max-width: 120px;
    max-height: 60px;
}

.footer__image-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__copyright {
    padding: 24px 0;
    text-align: center;
}

.catfish {
    position: fixed;
    bottom: -500px;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .5));
    padding: 24px;
    transition: .5s;
}

.catfish.is_show {
    bottom: 0;
}

.catfish__wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 1;
}

.bottom-bar__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.bottom-bar__wrapper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    border: none;
    background: transparent;
}

.bottom-bar__wrapper-item svg {
    width: 24px;
    height: 24px;
}

.bottom-bar__wrapper-item span {
    font-size: 10px;
}

@media screen and (max-width: 768px) {
    .catfish {
        display: none;
    }

    .bottom-bar {
        display: block;
    }
}
