.qiongpai-foot{
    background: #001421;
}
.foot-top{
    padding: 110px 0;
    display: flex;
    justify-content: space-between;
}

.foot-col:first-child{
    max-width: 390px;
}
.foot-col .logo{
    width: 205px;
    height: 60px;
}
.foot-col .desc{
    color: var(--text-color-white);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: var(--font-style);
    font-weight: 600;
    line-height: var(--line-height); /* 150% */
    text-transform: capitalize;
    margin-top: 20px;
}
.foot-col .social{
    margin-top: 30px;
}
.foot-col .social ul{
    gap: 12px;
}
.foot-col .social ul li{
    margin: 0 !important;
}
.foot-col .social ul li img{
    width: 25px !important;
    height: 25px;
}

.foot-col.quickLink{
    max-width: 140px;
}
.foot-col h4{
    color: var(--text-color-white);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: var(--font-style);
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.foot-col ul li{
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.80);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: var(--font-style);
    font-weight: 500;
    line-height: var(--line-height);
    text-transform: capitalize;
}

.foot-col.products{
    max-width: 289px;
}
.contact li{
    display: flex;
    gap: 12px;
}
.contact li span{
    display: block;
}
.contact li .ico{
    width: 18px;
    height: 18px;
}
.contact li .con{
    max-width: 276px;
}
.foot-line{
    height: 1px;
    background: rgba(255, 255, 255, 0.20);
}

.foot-bottom{
    padding: 30px 0;
}
.foot-bottom p{
    color: var(--text-color-white);
    text-align: center;
    font-family: var(--font-family);
    font-size: 14px;
    font-style: var(--font-style);
    font-weight: 500;
    line-height: var(--line-height); /* 150% */
    text-transform: capitalize;
}


@media screen and (max-width: 992px) {
    .foot-top{
        flex-wrap: wrap;
    }
    .contact li .con{
        max-width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .foot-col.quickLink,
    .foot-col.products{
        display: none;
    }
    .foot-top{
        padding: 50px 15px;
    }
    .foot-col.contact{
        margin-top: 30px;
    }
}