.header-top ul li {
    list-style: none;
    display: inline-block;
}

.header-top ul li svg {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.header-top ul {
    padding: 0;
    margin: 0;
}

.header-top .langueages {
    text-align: right;
}

.header-top .langueages li:not(:last-child) {
    margin-right: 8px;
}

.header-top .langueages li a {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.header-top .langueages li a.active {
    color: var(--primary-color);
}

.header-top .langueages li a img {
    margin-right: 5px;
}

.header-top .socials li a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-top .socials .whatapp {
    background: #25d366;
}

.header-top .socials li {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: inline-flex;
}

.header-top .socials li svg {
    width: 14px;
    height: 14px;
}

.header-top .socials li svg path {
    fill: #fff;
}

.header-top .socials .weixin {
    background: #31a918;
}

.header-top .socials .skype {
    background: #00aff0;
}

.header-top {
    background: #F0EBEB;
    padding-block: 6px;
}

.header-logo .logo {
    height: 100px;
    object-fit: cover;
}

.header-middle .form {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}

.header-middle .form button {
    border: unset;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 33px;
    background: var(--primary-color);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.header-middle .form button i {
    color: #fff;
}

.header-middle form {
    position: relative;
    width: 62%;
}

.header-middle form input {
    height: 33px;
    width: 100%;
    padding-right: 33px;
    padding-left: 5px;
    font-size: 14px;
    border-radius: 3px;
    border-width: 1px;
    outline: unset;
}

.header-middle .address {
    text-align: center;
}

.header-middle .address h3 {
    font-weight: bold;
    font-size: 20px;
}

.header-middle .address ul {
    font-weight: bold;
    font-size: 14px;
}

.header-middle .address ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #54595F;
}

.header-middle {
    padding-block: 10px;
}

.header-logo {
    display: flex;
    height: 100%;
    align-items: center;
}

@media(max-width: 991px) {
    .socials {
        display: none;
    }

    .header-logo .logo {
        height: 60px;
    }

    .header-logo {
        justify-content: space-between;
    }

    .header-middle .address,
    .header-middle .form {
        /* display: none; */
    }

    .header-middle .address {
        margin-top: 20px;
        margin-bottom: 5px;
    }

    .header-middle .address h3 {
        font-size: 18px;
    }

    .header-middle .form {
        display: none;
    }
}