.haiwode-foot{
    position: relative;
}
.haiwode-foot .foot-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}
.haiwode-foot .foot-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 32px 0;
}
.foot-top .logo-pic{
    width: 212px;
    aspect-ratio: 53/15;
    object-fit: cover;
}
.haiwode-foot .foot-line{
    width: 100%;
    height: 1px;
    opacity: 0.35;
    background: #FFF;
}

.foot-media{
    display: flex;
    gap: 10px;
}
.foot-media li{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--second-color);
    color: #fff;
    border-radius: 3px;
    transition: all 0.5s;
}
.foot-media li:hover{
    background: var(--primary-color);
}
.foot-media li a:hover{
    color: #fff;
}
.foot-medial li i{
    font-size: 20px;
}

.foot-contact{
    padding: 50px 0 26px 0;
}
.foot-contact .foot-title{
    color: #FFF;
    font-family: var(--font-medium-family);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.foot-contact .foot-contact-line{
    width: 50px;
    height: 5px;
    border-bottom: 1px solid #fff;
    position: relative;
    margin-top: 15px;
}
.foot-contact .foot-contact-line::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 1px;
    background: #fff;
}
.foot-contact .foot-contact-wrap{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 17px;
}
.foot-contact .foot-contact-item{
    color: #fff;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 10px;
}
.foot-contact .foot-contact-item .foot-icon{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.foot-contact .foot-copyright{
    color: #FFF;
    font-family: var(--font-text-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    opacity: 0.7;
    margin-top: 150px;
}
.foot-contact .foot-copyright a{
    margin-left: 40px;
}


@media screen and (max-width: 1200px) {
    .foot-contact{
        padding: 30px 0;
    }
    .foot-contact .foot-copyright{
        margin-top: 50px;
    }
}
@media screen and (max-width: 768px) {
    .foot-top .logo-pic{
        width: 150px;
    }
}