.hero {
    border-bottom: 1px solid #d7d7d7;
}

.brands {
    padding: 0;
}

@media screen and (min-width: 801px) {
    .brands {
        padding: 0 8.333vw;
    }
}
@media screen and (min-width: 1440px) {
    .brands {
        padding: 0 120px;
    }
}

.brands__container {
    padding: 0 0 128px;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 801px) {
    .brands__container {
        padding: 11.111vw 0 12.778vw;
        flex-direction: row;
        justify-content: space-between;
    }
}
@media screen and (min-width: 1440px) {
    .brands__container {
        padding: 160px 0 184px;
    }
}

.brands-menu {
    width: 100%;
    border-bottom: 1px solid #d7d7d7;
    padding: 0 24px;
    position: relative;
}

@media screen and (min-width: 801px) {
    .brands-menu {
        width: 13.526vw;
        padding: 0;
        border-bottom: none;
    }
}
@media screen and (min-width: 1440px) {
    .brands-menu {
        width: 257px;
        padding: 0;
    }
}

.brands-menu__container {
    width: 100%;
    padding: 40px 0;
}

@media screen and (min-width: 801px) {
    .brands-menu__container {
        width: 13.526vw;
        padding: 0;
    }
}

@media screen and (min-width: 1440px) {
    .brands-menu__container {
        width: 257px;
        padding: 0;
    }
}

.brands-menu__row {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 16px;
}

@media screen and (min-width: 801px) {
    .brands-menu__row {
        width: 100%;
        justify-content: unset;
        flex-direction: column;
        gap: 1.111vw;
    }
}

@media screen and (min-width: 1440px) {
    .brands-menu__row {
        gap: 16px;
    }
}

.brands-menu__link {
    color: #251e1c;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media screen and (min-width: 801px) {
    .brands-menu__link {
        font-size: 1.111vw;
        gap: 0.556vw;
        opacity: 0.5;
        transition: opacity 0.3s ease, padding-left 0.3s ease;
    }

    .brands-menu__link:hover {
        opacity: 1;
    }
}

@media screen and (min-width: 1440px) {
    .brands-menu__link {
        font-size: 16px;
        gap: 8px;
    }
}

.brands-menu__link span {
    display: inline-block;
    width: 28.267vw;
}

@media screen and (min-width: 801px) {
    .brands-menu__link span {
        width: fit-content;
    }
}

@media screen and (min-width: 801px) {
    .brands-menu__link.current {
        padding-left: 0.833vw;
        opacity: 1;
    }
}

@media screen and (min-width: 1440px) {
    .brands-menu__link.current {
        padding-left: 12px;
    }
}

.brands-menu__link.current::before {
    position: absolute;
    left: 0;
    content: '';
    width: 4px;
    height: 4px;
    background-color: black;
}

.brands-menu__link-btn {
    width: 29px;
    height: 29px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 801px) {
    .brands-menu__link-btn {
        display: none;
    }
}

.brands-menu__link-btn-icon {
    width: 4px;
    height: 4px;
    background-color: black;
}

.brands-main {
    width: calc(100% - 32px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 80px 0 0;
}

@media screen and (min-width: 801px) {
    .brands-main {
        width: 63.68vw;
        gap: 4.44vw;
        padding: 0;
    }
}
@media screen and (min-width: 1440px) {
    .brands-main {
        width: 63.68vw;
        gap: 64px;
    }
}

.brands-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-decoration: none;
    color: unset;
}

@media screen and (min-width: 801px) {
    .brands-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: unset;
    }
}

.brands-item__image {
    width: calc(100vw - 32px);
    height: calc(100vw - 32px);
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

@media screen and (min-width: 801px) {
    .brands-item__image {
        width: 24.79vw;
        height: 24.79vw;
        border-radius: 10px;
    }
}

.brands-item__image-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.brands-item:hover .brands-item__image-mask {
    background-color: rgba(0, 0, 0, .2);
}

.brands-item__image img {
    /* border-radius: 5px; */
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.brands-item:hover .brands-item__image img {
    transform: scale(1);
}

.brands-item__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    padding-left: 18.66px;
}

@media screen and (min-width: 801px) {
    .brands-item__tag {
        top: 1.111vw;
        left: 1.111vw;
        font-size: 0.833vw;
        padding-left: 1.296vw;
    }
}
@media screen and (min-width: 1440px) {
    .brands-item__tag {
        top: 16px;
        left: 16px;
        font-size: 12px;
        padding-left: 18.66px;
    }
}

.brands-item__tag span {
    color: white;
    mix-blend-mode: difference;
    
}

.brands-item__tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10.66px;
    height: 10.66px;
    background-color: #FBFE40;
}

@media screen and (min-width: 801px) {
    .brands-item__tag::before {
        width: 0.741vw;
        height: 0.741vw;
    }
}
@media screen and (min-width: 1440px) {
    .brands-item__tag::before {
        width: 10.66px;
        height: 10.66px;
    }
}

.brands-item__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 801px) {
    .brands-item__content {
        width: 54.09%;
        gap: 2.778vw;
    }
}

@media screen and (min-width: 1440px) {
    .brands-item__content {
        gap: 40px;
    }
}

#and-meu .brands-logo {
    width: 130px;
    height: 34px;
}

#lebena-organic .brands-logo {
    width: 330px;
    height: 40px;
}

#enavis .brands-logo {
    width: 246px;
    height: 34px;
}

#lantelno .brands-logo {
    width: 136px;
    height: 126px;
}

#lulu-kushel .brands-logo {
    width: 168px;
    height: 91px;
}

.brands-item__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.88;
    letter-spacing: 0.08em;
}

@media screen and (min-width: 801px) {
    .brands-item__text {
        font-size: 1.111vw;
    }
}

@media screen and (min-width: 1440px) {
    .brands-item__text {
        font-size: 16px;
    }
}

.brands-item__row {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media screen and (min-width: 801px) {
    .brands-item__row {
        gap: 0.694vw;
    }
}

@media screen and (min-width: 1440px) {
    .brands-item__row {
        gap: 10px;
    }
}

.brands-item__link-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

@media screen and (min-width: 801px) {
    .brands-item__link-text {
        font-size: 1.111vw;
    }
}

@media screen and (min-width: 1440px) {
    .brands-item__link-text {
        font-size: 16px;
    }
}