/*header6*/
.header6-bg {
    background-color: #fff;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
}

@media(min-width:992px) {
    .header6-bg {
        padding: 20px 0;
    }
    header.sticky .header6-bg {
        padding: 5px 0;
    }
}

.header6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.header6__logo {
    display: none;
}

.header6__mobile-phone {
    transform: translateY(1px);
}

a.header6-catalog {
    display: none;
}

.header6__icons {
    cursor: pointer;
}

.header6__icons img {
    width: 40px;
    height: 40px;
}

.header6__icons:nth-child(1) img {
    padding: 0;
}

.header6__icons:nth-child(2) img {
    padding: 2px;
}

.header6__icons:nth-child(3) img {
    padding: 2px;
}

@media(min-width:992px) {
    .header6__logo {
        display: block;
    }

    .header6 {
        display: grid;
        gap: 20px;
        grid-template-columns: 70px 130px 1fr 40px 40px 40px;
    }
    a.header6-catalog {
        border-radius: 10px;
        background-color: var(--color1);
        padding: 0 10px;
        color: #fff;
        font-weight: var(--font-weight-medium);
        text-align: center;
        height: 46px;
        line-height: 46px;
        display: flex;
        gap: 10px;
        justify-content: center;
        transition: .3s;
    }

    a.header6-catalog:hover {
        opacity: .8;
    }

    a.header6-catalog img {
        max-width: 26px;
    }

    a.header6-catalog:hover {
        color: #fff;
    }
    .header6__icons {
        transition: .3s;
    }
    .header6__icons:hover {
        transform: translateY(-2px);
    }
}