.brands-section {
    width: 100%;
    height: fit-content;
    background-color: #000;
    padding: 12px 20px;
    box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.2509803922);
    margin-top:auto; 
    z-index: 2;

    @media (max-width: 768px) {
        padding: 5px 0px;
    }
}

.brands-section .brands-film-strip {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    overflow: hidden;
}
.brands-section .brands-film-strip img {
    width: 100%;
    display: block;

    @media (max-width: 768px) {
        width: 1109px;
    }
}
.brands-section .container {
    max-width: 1675px;
    margin: 0 auto;
    padding: 0 15px;
}
.brands-section .brands-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
    gap: 20px;
}
@media (max-width: 992px) {
    .brands-section .brands-container {
        justify-content: center;
        gap: 30px;
    }
}
.brands-section .brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.brands-section .brand-item:hover {
    transform: translateY(-5px);
}
.brands-section .brand-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}
.brands-section .brand-item img {
    width: clamp(112px, 10vw, 162px);
    opacity: 0.8;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .brands-section .brand-item {
        width: calc(33.33% - 20px);
    }
    .brands-section .brand-item img {
        max-height: 50px;
    }
}
@media (max-width: 576px) {
    .brands-section .brand-item {
        width: calc(50% - 20px);
    }
    .brands-section .brand-item img {
        max-height: 50px;
    }
}

/*# sourceMappingURL=brands.css.map */
