.nuoman-foot {
    background: #000;
    padding-top: 40px;
}

.nuoman-foot .foot-list {
    display: flex;
    flex-direction: column;
}

.foot-list .foot-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px; 
}

.foot-top .top-item .title {
    color: var(--text-color-white);
    font-family: var(--desc-font-family);
    font-size: var(--desc-font-size);
    font-style: var(--font-style);
    font-weight: 500;
    line-height: 125%;
    /* 125% */
}

.foot-top .top-item ul {
    margin-top: 15px;
}

.foot-top .top-item li {
    color: var(--text-color-white);
    font-family: var(--desc-font-family);
    font-size: 12px;
    font-style: var(--font-style);
    font-weight: 300;
    line-height: 250%;
    /* 250% */
}

.foot-top .top-item li a {
    display: inline-block;
    width: fit-content;
}

.foot-list .foot-media {
    height: 41px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.foot-media .foot-logo {
    width: 42px;
    aspect-ratio: 42/25;
    object-fit: cover;
}

.foot-media .social .social-medias {
    margin: 0 !important;
}

.foot-media .social .social-medias {
    margin: 0 20px !important;
}

.foot-media .social .social-medias img {
    width: 21px !important;
    height: 21px !important;
}

.foot-list .foot-bottom p {
    color: var(--text-color-white);
    font-family: var(--desc-font-family);
    font-size: 14px;
    font-style: var(--font-style);
    font-weight: 400;
    line-height: 18px;
    /* 128.571% */
    padding: 11px 0;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .foot-list .foot-top {
        gap: 30px;
    }
}

@media screen and (max-width: 992px) {
    .foot-list .foot-top {
        display: grid;
        gap: 25px;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .foot-list .foot-top {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 480px) {
    .foot-list .foot-top {
        grid-template-columns: 1fr;
    }
}