/*# brand banner section */

.product-container:hover {
    transform: scale(1.04);
    transition: transform 0.6s ease-in-out;
}
.banner {
    position: relative;
    /* background-color: #ED3237 !important; */
    z-index: -1;
    height: 160px;
    overflow: hidden;
    box-shadow: inset 0px -8px 14px 0px rgba(0, 0, 0, 0.2);
}
.banner-content {
    z-index: 1;
    justify-content: center;
    height: 160px;
}
.bn-text {
    z-index: 100;
    text-align: right;
    padding: 20px;
    font-size: 24px;
}
@media only screen and (max-width: 768px) {
    .bn-text {
        font-size: 18px;
    }
}
@media only screen and (min-width: 769px) {
    .banner-content {
        justify-content: space-evenly;
    }
}
.content-left {
    max-width: 50%;
}
/*# brand banner section */

/*# brand carosal */

.swiper .btn {
    z-index: 10;
    opacity: 0.5;
    padding: 10px 15px;
    font-size: 18px;
}

.swiper .btn:hover {
    opacity: 1;
}
/*# brand carosal */

/*# readmore button in brand paget */

@media (max-width: 576px) {
    .mobile-text {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* show only 2 lines */
        -webkit-box-orient: vertical;
    }
    .mobile-text.expanded {
        -webkit-line-clamp: unset;
        overflow: visible;
    }
}
