.section--capacity .capacity__cards {
    display: flex;
    gap: 12px;
    height: 390px;
}
.section--capacity .capacity__card {
    position: relative;
    flex: 1;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s ease;
}
.section--capacity .capacity__card img {
    width: 140%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
}
.section--capacity .capacity__card .capacity__content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 30px;
    text-align: center;
    color: #fff;
    z-index: 2;
    transition: all 0.8s ease;
}
.section--capacity .capacity__card .capacity__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    width: 95%;
    margin: 10px auto 0 auto;
}
.section--capacity .capacity__card .capacity__content p {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.1s ease;
    color: #FFF;
    text-align: center;
    width: 80%;
    margin: 10px auto 0 auto;
}
/* INACTIVE CARD → SHOW 60% IMAGE */
.section--capacity .capacity__card:not(.active) {
    flex: 1.8;
}
.section--capacity .capacity__card:not(.active) img {
    transform: translateX(0);
}
/*
.section--capacity .capacity__card:not(.active)::after {
  background: rgba(0,0,0,0.5);
}
*/
/* HOVER INACTIVE → REVEAL FULL IMAGE */
.section--capacity .capacity__card:hover:not(.active) {
    flex: 2.5;
}
.section--capacity .capacity__card:hover:not(.active) img {
    transform: translateX(-28%);
}
.section--capacity .capacity__card:hover:not(.active)::after {
    background: transparent;
}
.section--capacity .capacity__card:hover:not(.active) .capacity__content p {
    opacity: 1;
    max-height: 200px;
    text-align: center;
}
/* ACTIVE CARD */
.section--capacity .capacity__card.active {
    flex: 3;
}
.section--capacity .capacity__card.active img {
    width: 100%;
    transform: none;
}
.section--capacity .capacity__card.active p {
    opacity: 1;
    max-height: 200px;
}
@media (max-width: 600px) {
    .section--capacity .capacity__title {
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 25px !important;
    }
    .section--capacity .capacity__cards {
        flex-direction: column;
        height: auto;
        gap: 10px;
        max-width: 100% !important;
    }
    .section--capacity .capacity__card {
        flex: unset !important;
        height: 90px;
        border-radius: 4px;
    }
    .section--capacity .capacity__card img {
        width: 100%;
        transform: none !important;
        object-position: center;
    }
    .section--capacity .capacity__card::after {
        background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.2));
    }
    .section--capacity .capacity__card .capacity__content {
        left: 15px;
        right: 15px;
        bottom: 15px;
        text-align: left;
    }
    .section--capacity .capacity__card .capacity__content h3 {
        font-size: 18px;
        text-align: left;
        width: 100%;
        margin: unset;
    }
    .section--capacity .capacity__card .capacity__content p {
        font-size: 15px;
        line-height: 1.5;
        text-align: left;
        width: 100%;
    }
    /* ACTIVE CARD */
    .section--capacity .capacity__card.active {
        height: 320px;
    }
    .section--capacity .capacity__card.active .capacity__content p {
        opacity: 1;
        max-height: 200px;
    }
    /* COLLAPSED CARDS */
    .section--capacity .capacity__card:not(.active) .capacity__content p {
        opacity: 0;
        max-height: 0;
    }
}
.section--benefits-slider .benefits-slider__slide {
    position: relative;
}
.section--benefits-slider .benefits-slider__content h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}
.section--benefits-slider .benefits-slider__content p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 22px;
    color: #fff;
}
.section--benefits-slider .benefits-slider__line {
    display: block;
    width: 10rem;
    height: 0.2rem;
    background: linear-gradient(90deg,#b1ca35 33.32%,#3077c7);
    margin: 1rem auto 0;
}
.section--benefits-slider .benefits-slider__content {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 50%;
    z-index: 2;
}
.section--benefits-slider .benefits-slider__badge {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 127px!important;
    height: 127px!important;
    z-index: 3;
	display: block;
}
.product-section__tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.75rem;
    padding-top: 0.6rem;
    border-radius: 0.3rem;
}
.product-section__tab {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem 1.4rem;
    background: rgba(0,0,0,.6);
    border: 0.05rem solid #fff;
    transition: all .3s ease;
}
.product-section__tab.is-active {
    background: #1e63b6;
    border-color: #1e63b6;
    box-shadow: 0 0.2rem 0.6rem rgb(0 0 0 / 25%);
    border: 0.056rem solid #1e63b6;
}
article.product-card {
    position: relative;
    background: hsla(0,0%,100%,.6);
    transition: all .35s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    border-radius: 0.25rem;
    display: flex!important;
    margin: 0 0.35rem;
    height: auto!important;
}
.product-card__media {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem;
    background: hsla(0,0%,95%,.3);
    height: 17.35rem;
    border-radius: 0.25rem 0.25rem 0 0;
}
.product-card__img {
    max-width: 100%;
    height: auto;
}
.product-card__content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}
h3.product-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}
.product-section__panels .slick-slide {
    padding: 0 5px;
}
.product-grid {
    position: relative;
}
img.pro-arw {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    width: 30px;
}
img.pro-rght.pro-arw {
    left: unset;
    right: -15px;
}
.product-card__subtitle h3.quick-head {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
	display: none;
}
article.product-card>a {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    padding: 0 1rem;
}
.product-card__subtitle span.coolng-side br {
    display: none;
}
.product-card__subtitle span.coolng-side {
    background-color: #b1ca35;
    padding: 0.3rem 0.5rem;
    width: fit-content;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    margin: 10px 0px;
    display: block;
}
.video-wrp .elementor-custom-embed-image-overlay::before {
    content: "▶";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    color: #b1ca35;
    font-size: x-large;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.3rem 0.8rem rgb(0 0 0 / 25%);
}
.clients-row-2 {
    direction: rtl;
	margin-top: 15px;
}
.banner-btns {
    position: absolute;
    bottom: 70px;
    left: 0;
    z-index: 99;
}
.case-study-noslider {
    display: flex;
	justify-content: center;
    flex-wrap: wrap;
}
.case-study-noslider .case-study-box-wrap {
    flex: 0 0 33.33%;
}
.testi-video iframe {
    display: none;
}
.testi-video img, .testi-video iframe {
    position: absolute;
    top: 0;
	border-radius: 10px;
    left: 0;
    width: 100%;
    height: 100%;
	object-fit: cover;
}
.testi-video {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}
.testi-video-wrap iframe {
    display: none;
}
.testi-video-wrap img {
    height: 230px;
    width: 100%;
    object-fit: cover;
	cursor: pointer;
}
.testi-video-wrap {
	position: relative;
    border: 1px solid #DBE9FF;
    overflow: hidden;
    padding: 10px;
    margin: 0px 7px;
    border-radius: 10px;
}
p.review-card__company {
    color: #3174B7;
    font-size: 12px;
}
.review-card__name {
    font-weight: 600;
}
.review-card__content {
    font-size: 1rem;
}
.testimonial-video {
    position: relative;
}
.cntr-arrw {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -8px;
    width: 32px;
	cursor: pointer;
}
.cntr-arrw.cntr-r {
    right: -8px;
    left: unset;
}
a.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    color: #b1ca35;
    font-size: x-large;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.3rem 0.8rem rgb(0 0 0 / 25%);
    top: -50px;
}