.footer-inner {
    display: grid;
    grid-template-columns: repeat(5 , 1fr);
    padding: 2rem 0;
}

.footer-inner h4 {
    margin-bottom: 1rem;
}

.footer-inner .footer-group > div {
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
}

.footer-height-line {
    display: flex;
    justify-content: center;
}

.footer-height-line .height-line {
    height: 100%;
    width: 1px;
    background-color: #d8d8d8;
}

.footer-inner .footer-group > div:hover a {
    text-decoration: underline;
}

.footer-contacts > div {
    display: flex;
    gap: 0.55rem;
}

.footer-under {
    display: flex;
    gap: 4rem;
    font-size: 0.7rem;
    padding: 0 0 1rem 0;
    margin: 0 4rem;
    opacity: 0.5;
}

@media (max-width: 767.98px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        row-gap: 1.5rem;
    }

    .footer-height-line {
        display: none;
    }

    .footer-under {
        gap: 1rem;
        margin: 0 2rem;
        flex-direction: column-reverse;
    }
}