.hero-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    background-color: var(--c-f1f1f1);
}
.pioneer-left-txt {
    padding: 0 20% 0 7%;
}
.page-template-brands .hero-banner .pioneer-left-txt h1 {
    font-size: var(--fs-47);
    color: #293671 !important;
    font-weight: 700 !important;
    margin-bottom: 15px;
}
.pioneer-left-txt p {
    font-size: var(--fs-16);
    line-height: var(--lh-24);
    color: var(--c-666666);
    font-weight: 400;
    font-family: var(--fm-Roboto);
    margin-bottom: 30px;
}
.pioneer-left-txt p:last-child {
    margin-bottom: 0;
}
.celebrating-right-pic {
    overflow: hidden;
}

/* second section css */

section:not(.hero-section-main) {
    padding: 60px 0;
}
.brands-section {
    background: #ffffff;
}
.brands-section .brand-heading, .our-flagship-section .brand-heading, .testimonial-main .brand-heading {
    display: grid;
    grid-template-columns: 33.3% 33.3%;
    justify-content: end;
    align-items: end;
    margin-bottom: 40px;
}
.brand-heading h2 {
    font-size: var(--fs-24);
    text-transform: uppercase;
    color: var(--c-293571);
    font-weight: 500;
    font-family: var(--fm-Roboto);
    text-align: center;
    margin-bottom: 0;
}
.slider-containers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.slider-container{
        margin-bottom: 0;
    }
.card-wrapper:not(.slick-slide) {
    min-width: calc(100% / 4 - 28px);
}
.card-wrapper {
    margin-right: 0;
    padding: 0;
}
.card-brand {
    min-height: 300px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: var(--c-ffffff);
    color: #000;
    border-radius: 6px;
    padding: 20px;
    position: relative;
    height: 100%;
    overflow: hidden;
}
.card-brand p {
    font-size: var(--fs-17);
    line-height: 25px;
    color: #666666;
    font-weight: 400;
    font-family: var(--fm-Roboto);
    padding-top: 25px;
    margin-bottom: 10px;
}
.card-content-dss p:not(:first-child) {
    display: none;
}
.card-content-dss.is-open p{
        display: block !important;
        display: -webkit-box;
        -webkit-line-clamp: unset;
        -webkit-box-orient: unset;
    }
    .card-content-dss:not(.card-content-dss:has(p)) .read_more_btn{
        display: none;
    }
.card-brand img:not(.arrow-brand img, .dss-image img) {
    max-width: 100px;
    height: 100%;
    /* max-height: 45px; */
    aspect-ratio: 4 / 3;
    object-fit: contain;
    margin-bottom: 20px;
}
.card-brand p {
    &:first-child {
        padding-top: 0;
    }
}
.card-content-dss p {
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;

}
button.read_more_btn {
    background: none;
    display: inline-block;
    width: auto;
    padding: 0;
    cursor: pointer;
    color: #666666;
    text-decoration: underline;
    font-size: 13px;
}
.arrow-brand a {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 75px;
    height: 75px;
    z-index: 2;
}

/* responsive css start */

@media screen and (max-width: 767px) {
    .hero-banner {
        grid-template-columns: auto;
    }
    .pioneer-left-txt {
        padding: 20px;
        order: 2;
        text-align: center;
        padding-block: 40px;
    }
    .page-template-brands .hero-banner .pioneer-left-txt h1 {
        font-size: var(--fs-26);
        line-height: var(--lh-36);
        margin-bottom: 20px;
    }
    .pioneer-left-txt p {
        margin-bottom: 20px;
    }
    section:not(.hero-section-main) {
        padding: 30px 0;
    }
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    .brands-section .brand-heading, .our-flagship-section .brand-heading, .testimonial-main .brand-heading {
        grid-template-columns: 1fr;
        align-items: center;
        column-gap: 20px;
    }
    .brand-heading h2 {
        font-size: var(--fs-20);
    }
    .slider-containers {
        grid-template-columns: auto;
    }
    .card-brand {
        padding: 20px 20px 20px 20px;
        min-height: 280px;
    }
    .card-brand img:not(.arrow-brand img, .dss-image img) {
        margin-bottom: 15px;
        max-width: 80px;
    }
    .card-brand p {
        font-size: var(--fs-14);
        padding-top: 15px;
    }
}