footer {
    padding-block: 60px;
    background-color: #365140;
    color: var(--white-color);
}

.footer-top {
    display: flex;
    /* justify-content: space-between; */
    align-items: start;
    gap: 48px;
}

.footer-top .group-menu {
    display: flex;
    gap: 36px;
}

.footer-top .menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-top .menu a {
    color: var(--white-color);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.5px;
    transition: all 0.3s linear;
}

.footer-top .menu a:hover {
    transform: translateX(6px);
}

.footer-bottom {
    border-top: 1px solid var(--white-color);
    margin-top: 30px;
    padding-top: 30px;
}

.footer-bottom .code-by {
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: end;
}

.footer-bottom .code-by img {
    width: 14px;
    height: auto;
}

.footer-top .title {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.footer-top .head {
    margin-bottom: 12px;
}

.footer-top .head .name {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.footer-top .head .list .item {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 2px;
    display: flex;
    align-items: baseline;
}

.footer-top .head .list .item::before {
    display: block;
    content: "";
    width: 1px;
    height: 1px;
    background: var(--white-color);
    margin-right: 4px;
}

/**
* 991px
**/

@media screen and (max-width: 991px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-bottom .code-by {
        justify-content: center;
    }

    .footer-top .head .name {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .footer-top .head .list .item {
        line-height: 18px;
        margin-bottom: 4px;
        justify-content: center;
    }
}

/**
* 576px
**/

@media screen and (max-width: 576px) {
    .footer-top .title {
        margin-bottom: 24px;
    }

    .footer-top .head {
        margin-bottom: 24px;
        width: 80%;
        margin-inline: auto;
    }

    .footer-top .menu {
        align-items: start;
    }
}