/* #region Clients section*/
.mt-25 {
  margin-top: 2.5rem;
}

.clients {
    padding: 2.5rem 0 1.5rem;
}

.clients .section-title {
    margin-bottom: 2rem;
}

.clients .clients__main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.clients .clients__main+.clients__main-loadmore {
    margin: 0 auto;
}

/* #endregion */

.testimonial__item .testimonial__item-bg img {
    width: 100%;
    height: 100%;
}
/* #region CLients section - Testimonial override */
.clients__main .testimonial__item {
    width: 100%;
    height: var(--card-height-md);
    padding: 2rem;
}

.clients__main .testimonial__item .testimonial__item-bg::after {
    background: none;
    background-color: transparent;
    width: 100%;
    height: 100%;
    transition: background-color 0.3s ease-in-out;
}

.clients__main .testimonial__item .testimonial__item-bg:empty::after {
    background-color: #1F2121;
}

.clients__main .testimonial__item:hover .testimonial__item-bg::after {
    background: none;
    background-color: var(--color-text-neutral);
}

.clients__main .testimonial__item:hover .testimonial__item-bg:empty:after {
    background-color: #1F2121;
}

.clients__main .testimonial__item .testimonial__item-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.clients__main .testimonial__item .testimonial__item-cate {
    background-color: var(--color-white);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.clients__main .testimonial__item .testimonial__item-vehicle {
    background-color: var(--color-text-neutral);
    color: var(--color-white);
    padding: 0.969rem 1.5rem;
    cursor: auto;
}

.clients__main .testimonial__item .testimonial__item-details {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.clients__main .testimonial__item:has(.testimonial__item-bg:empty) .testimonial__item-details {
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.4;
    letter-spacing: -1%;
    opacity: 1;
}

.clients__main .testimonial__item:hover .testimonial__item-details {
    opacity: 1;
}

/* #endregion */

/* #region Experts section*/
.experts {
    padding: 2.5rem 0 1.5rem;
}

.experts .section-title {
    margin-bottom: 2rem;
}

.experts .experts__main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.experts .experts__main+.experts__main-loadmore {
    margin: 0 auto;
}

/* #endregion */

@media only screen and (min-width: 1280px) {

    .header {
        margin-top: 1rem;
    }

    /* #region Clients section*/
    .clients {
        padding: 4rem 0 5rem;
    }

    .clients .clients__main {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* #endregion */

    /* #region CLients section - Testimonial override */

    .clients__main .testimonial__item .testimonial__item-type {
        display: flex;
        justify-content: space-between;
        align-items: start;
    }

    /* #endregion */


    /* #region Experts section*/
    .experts {
        padding: 4rem 0 5rem;
    }

    .experts .experts__main {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* #endregion */
}