.cs-scroll-section,
.cs-scroll-wrapper {
    position: relative;
}

.cs-scroll-section {
    --cs-site-header-height: 69px;
    --cs-section-padding-y: 88px;
    --cs-section-title-gap: 32px;
    --cs-pin-height: calc(100vh - var(--cs-site-header-height));
    opacity: 1 !important;
    visibility: visible !important;
}

.cs-sticky {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: var(--cs-pin-height);
    min-height: var(--cs-pin-height);
    overflow: hidden;
    padding-top: var(--cs-section-padding-y);
    padding-bottom: var(--cs-section-padding-y);
    gap: var(--cs-section-title-gap);
    box-sizing: border-box;
}

.cs-sticky.is-pinned {
    height: var(--cs-pin-height) !important;
    min-height: var(--cs-pin-height) !important;
}

.cs-section-title {
    flex-shrink: 0;
    width: 100%;
    max-width: 1440px;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 32px;
    font-weight: 500;
    line-height: 125%;
    color: #00647F;
    text-align: center;
}

.cs-section-title--mobile {
    display: none !important;
}

.cs-cards-stage {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.cs-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1440px;
    height: 100%;
    max-height: 100%;
    display: flex;
    gap: 150px;
    border: 1px solid #00647F;
    border-radius: 36px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    background-color: #ffffff;
}

.cs-card__left {
    flex: 1;
    max-width: 655px;
    padding: 70px 0 70px 140px;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
}

.cs-card__logo {
    height: 42px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.cs-card__logo img {
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cs-card__quote,
.cs-card__author-name,
.cs-card__author-position {
    color: #00647F;
}

.cs-card__quote {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    flex: 1;
}

.cs-card__author-name,
.cs-card__author-position {
    font-size: 20px;
    margin: 0;
}

.cs-card__author-name {
    font-weight: 500;
    margin-top: 72px;
}

.cs-card__author-position {
    font-weight: 300;
}

.cs-card__btn {
    font-size: 16px;
    display: inline-flex;
    align-self: flex-start;
    padding: 16px 30px;
    background: #00647F;
    color: #fff;
    border-radius: 32px;
    text-decoration: none;
    margin-top: 26px;
    position: relative;
    overflow: hidden;
}

.cs-card__btn:hover {
    color: #fff;
}

.cs-card__btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.6) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
}

.cs-card__btn:hover::after {
    animation: shine 0.8s ease forwards;
}

@keyframes shine {
    0%   { left: -150%; }
    100% { left: 150%; }
}

.cs-card__right {
    flex: 1;
    align-self: stretch;
    min-width: 0;
    min-height: 0;
    position: relative;
    overflow: hidden;
}

.cs-card__right picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.cs-card__right .cs-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 36px 36px 0;
    transform-origin: center;
    will-change: transform, opacity;
}

.cs-card p {
    margin: 0;
}

.cs-swiper-mobile {
    display: none !important;
}

@media (max-width: 1200px) {
	.cs-card__left {
		padding: 24px 0 24px 24px  
	}
	
	.cs-card {
		gap: 40px;
	}
}

@media (max-width: 768px) {

    .cs-card__btn {
        padding: 10px 24px;
        margin-top: 0;
    }

    .cs-scroll-section {
        display: none;
    }

    .cs-section-title--mobile {
        display: block !important;
        font-size: 24px;
        line-height: 133.333%;
        color: #005269;
        text-transform: capitalize;
        padding: 44px 12px 20px;
        text-align: center;
    }

    .cs-swiper-mobile {
        display: block !important;
        overflow: hidden;
        padding-bottom: 40px;
        width: 100%;
    }

    .cs-swiper-mobile .swiper-wrapper {
        align-items: stretch;
    }

    .cs-swiper-mobile__slide {
        width: 100%;
        box-sizing: border-box;
        border: 1px solid #00647F;
        border-radius: 36px;
        overflow: hidden;
        background: #fff;
        display: flex !important;
        flex-direction: column !important;
    }

    .cs-swiper-mobile__image-wrap {
        width: 100%;
        height: 24vh;
        overflow: hidden;
        flex-shrink: 0;
    }

    .cs-swiper-mobile__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 36px 36px 0 0;
        display: block;
    }

    .cs-swiper-mobile__content {
        padding: 20px 40px;
        display: flex !important;
        flex-direction: column !important;
		flex: 1 !important;
        align-items: center;
        text-align: center;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .cs-swiper-mobile__logo {
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        flex-shrink: 0;
    }

    .cs-swiper-mobile__logo img {
        max-height: 24px;
        width: auto;
        object-fit: contain;
    }

    .cs-swiper-mobile__quote {
        font-size: 14px;
        line-height: 120%;
        color: #00647F;
        margin: 0;
		flex: 1 !important;
    }

    .cs-swiper-mobile__bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cs-swiper-mobile__author-name {
        font-size: 16px;
        font-weight: 500;
        color: #00647F;
        margin: 0;
        padding-top: 16px;
    }

    .cs-swiper-mobile__author-position {
        font-size: 14px;
        font-weight: 300;
        line-height: 120%;
        color: #00647F;
        margin: 0 0 16px;
    }

    .cs-swiper-mobile__btn {
        align-self: center;
        flex-shrink: 0;
    }

    .cs-swiper-mobile__prev,
    .cs-swiper-mobile__next {
        width: 26px;
        height: 26px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        top: 12vh;
    }

    .cs-swiper-mobile__prev::after,
    .cs-swiper-mobile__next::after {
        display: none;
    }

    .cs-swiper-mobile__prev {
        background-image: url('https://sevensenders3377.live-website.com/wp-content/uploads/2026/06/icon-arrow_left.svg');
    }

    .cs-swiper-mobile__next {
        background-image: url('https://sevensenders3377.live-website.com/wp-content/uploads/2026/06/icon-arrow_right.svg');
    }

    .cs-swiper-mobile__prev.swiper-button-disabled,
    .cs-swiper-mobile__next.swiper-button-disabled {
        opacity: 0.3;
        pointer-events: none;
    }

    .cs-swiper-mobile__pagination {
        bottom: -20px !important;
/*         display: none; */
    }

    .cs-swiper-mobile__pagination .swiper-pagination-bullet {
        background: #D9F3FB;
        opacity: 1;
    }

    .cs-swiper-mobile__pagination .swiper-pagination-bullet-active {
        background: #005269;
    }
}