/* === SECTION: BANNER === */
.banner {
    display: flex;
    flex-flow: column;
    gap: 40px;
    padding: 84px 56px 40px;
    background: #fff;
}

    .banner h2 {
        font-size: 64px;
        font-weight: 600;
        line-height: 1.1;
        text-transform: uppercase;
        color: var(--blue-vibrant1-500);
    }

    .banner .banner__item {
        width: 100%;
    }

    .banner .content {
        position: relative;
        height: 747px;
        --clip-cut: 32px;
        clip-path: polygon(var(--clip-cut) 0, 100% 0, 100% calc(100% - var(--clip-cut)), calc(100% - var(--clip-cut)) 100%, 0 100%, 0 var(--clip-cut));
    }

        .banner .content .content__media {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .banner .content .banner-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .banner .content .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 56.375%, rgba(0, 0, 0, 0.75) 99.549%);
            pointer-events: none;
        }

        .banner .content .banner__tags {
            position: absolute;
            right: 40px;
            bottom: 40px;
            display: flex;
            gap: 4px;
            z-index: 2;
        }

        .banner .content .banner__tag {
            background: var(--white-color);
            color: var(--blue-dark);
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            height: 36px;
        }

            .banner .content .banner__tag svg {
                flex-shrink: 0;
            }

            .banner .content .banner__tag img {
                width: 18px;
                height: 18px;
                flex-shrink: 0;
                object-fit: contain;
            }

            .banner .content .banner__tag p {
                color: var(--blue-dark);
                font-size: 14px;
                font-weight: 600;
                line-height: 1.5;
                white-space: nowrap;
            }

        .banner .content .banner__info {
            position: absolute;
            left: 40px;
            bottom: 40px;
            width: 314px;
            display: flex;
            flex-direction: column;
            gap: 40px;
            color: var(--white-color);
            z-index: 2;
        }

        .banner .content .banner__info-text {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .banner .content .banner__label {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.5;
        }

        .banner .content .banner__info-text h3 {
            font-size: 32px;
            font-weight: 600;
            line-height: 1.2;
            text-transform: uppercase;
        }

        .banner .content .banner__desc {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.5;
        }

        .banner .content .banner__btn {
            background: var(--blue-vibrant1-500);
            color: var(--white-color);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 24px;
            font-family: 'Lexend Deca', sans-serif;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.5;
            text-transform: uppercase;
            text-decoration: none;
            align-self: flex-start;
            flex-shrink: 0;
            transition: background 0.2s ease;
        }

            .banner .content .banner__btn:hover {
                background: #1B3585;
                color: var(--white-color);
            }

        .banner .content .banner__btn-arrow {
            display: inline-flex;
            align-items: center;
            width: 24px;
            height: 24px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .banner .content .banner__btn-arrow-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 18px;
            height: 16px;
            transform: translate(-50%, -50%) rotate(-45deg);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .banner .content .banner__btn-arrow-icon--2 {
            transform: translate(calc(-50% - 19px), calc(-50% + 19px)) rotate(-45deg);
        }

        .banner .content .banner__btn:hover .banner__btn-arrow-icon:not(.banner__btn-arrow-icon--2) {
            transform: translate(calc(-50% + 19px), calc(-50% - 19px)) rotate(-45deg);
        }

        .banner .content .banner__btn:hover .banner__btn-arrow-icon--2 {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

@media screen and (max-width: 768px) {
    .banner {
        padding: 18px 16px 24px;
        gap: 24px;
    }

        .banner h2 {
            font-size: 48px;
        }

        .banner .content {
            height: auto;
            display: flex;
            flex-direction: column;
            clip-path: none;
        }

            .banner .content .content__media {
                position: relative;
                inset: auto;
                height: 230px;
                width: 100%;
            }

            .banner .content .banner-overlay {
                display: none;
            }

            .banner .content .banner__tags {
                right: auto;
                left: 12px;
                bottom: 12px;
                flex-wrap: wrap;
                gap: 8px;
            }

            .banner .content .banner__tag {
                background: var(--blue-dark);
                color: var(--teal-500);
                padding: 4px 8px;
                height: auto;
                gap: 8px;
            }

                .banner .content .banner__tag svg {
                    width: 12px;
                    height: 12px;
                }

                .banner .content .banner__tag img {
                    width: 12px;
                    height: 12px;
                    object-fit: contain;
                }

                .banner .content .banner__tag p {
                    color: var(--teal-500);
                }

            .banner .content .banner__info {
                position: relative;
                left: auto;
                bottom: auto;
                width: 100%;
                background: var(--blue-vibrant1-500);
                padding: 24px;
                gap: 24px;
            }

            .banner .content .banner__info-text h3 {
                font-size: 24px;
                font-weight: 700;
                line-height: 1.25;
                margin-bottom: 4px;
            }

            .banner .content .banner__btn {
                background: var(--white-color);
                color: var(--blue-vibrant1-500);
                border: 1px solid var(--gray-300);
                padding: 16px;
                gap: 6px;
                height: 48px;
                align-self: stretch;
                justify-content: center;
                width: fit-content;
            }

                .banner .content .banner__btn:hover {
                    background: var(--gray-100);
                    color: var(--blue-vibrant1-500);
                }
}


/* === SECTION: PROJECTS === */
.projects {
    display: grid;
    grid-template-columns: 314px 1fr;
    gap: 120px;
    margin: auto;
    max-width: 1440px;
    padding: 80px 56px;
    background: #fff;
}

    /* mobile/tablet filter UI is hidden on desktop */
    .projects .filter__tabs,
    .projects .filter__popup,
    .projects .filter__popup-backdrop {
        display: none;
    }

    .projects .project-item .project-item__desc {
        display: none;
    }

    /* Desktop: pin the sidebar filter while scrolling the listing */
    .projects .filter {
        position: sticky;
        top: calc(var(--mp-topbar-h, 78px) + var(--mp-nav-h, 78px) + 24px);
        align-self: start;
    }

    .projects .filter__list {
        display: flex;
        flex-flow: column;
        gap: 24px;
    }

    .projects .filter__scroll {
        display: flex;
        flex-flow: column;
        gap: 24px;
    }

    .projects .filter__list .filter__group {
        display: flex;
        flex-flow: column;
        gap: 24px;
    }

    .projects .filter__list .filter__group-items {
        display: flex;
        flex-flow: column;
        gap: 24px;
    }

    .projects .filter__list .filter__group-label {
        color: #333;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.35;
    }

    .projects .filter__list .filter__group-item {
        padding: 5.5px 0 5.5px 20px;
        color: #767676;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.4;
        cursor: pointer;
        border-left: 2px solid transparent;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .projects .filter__list .filter__group-item.active,
        .projects .filter__list .filter__group-item:hover {
            color: var(--blue-vibrant1-500);
            border-color: var(--blue-vibrant1-500);
        }

    .projects .listing {
        display: flex;
        flex-flow: row wrap;
        row-gap: 40px;
        column-gap: 20px;
        justify-content: space-between;
    }

    .projects .project-item {
        height: max-content;
        width: 427px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        text-decoration: none;
    }

        .projects .project-item .project-img__container {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 326px;
        }

        .projects .project-item .project-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .projects .project-item:hover .project-thumb {
            transform: scale(1.08);
        }

        .projects .project-item .project-img__overlay {
            position: absolute;
            inset: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .projects .project-item .project-img__overlay--default {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 61.141%, rgba(0, 0, 0, 0.8) 100%);
            opacity: 1;
        }

        .projects .project-item .project-img__overlay--hover {
            background: linear-gradient(to bottom, rgba(38, 74, 188, 0) 21.579%, rgba(38, 74, 188, 0.8) 63.944%);
            opacity: 0;
        }

        .projects .project-item:hover .project-img__overlay--default {
            opacity: 0;
        }

        .projects .project-item:hover .project-img__overlay--hover {
            opacity: 1;
        }

        .projects .project-item .project-img__content {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 24px;
            display: flex;
            flex-direction: column;
            color: var(--white-color);
            z-index: 2;
        }

        .projects .project-item .project-img__title {
            color: var(--white-color);
            font-family: 'Lexend Deca', sans-serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 1.3;
            margin: 0;
        }

        .projects .project-item .project-img__desc-wrapper {
            display: grid;
            grid-template-rows: 0fr;
            margin-top: 0;
            opacity: 0;
            transition: grid-template-rows 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
        }

            .projects .project-item .project-img__desc-wrapper > .project-img__desc {
                overflow: hidden;
                min-height: 0;
                color: var(--white-color);
                font-family: 'Lexend Deca', sans-serif;
                font-size: 16px;
                font-weight: 400;
                line-height: 1.5;
                margin: 0;
            }

        .projects .project-item:hover .project-img__desc-wrapper {
            grid-template-rows: 1fr;
            margin-top: 24px;
            opacity: 1;
        }

        .projects .project-item .project__tags {
            display: flex;
            flex-flow: row wrap;
            align-items: center;
            gap: 8px;
        }

        .projects .project-item .project__tag {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            height: 36px;
            background: var(--blue-dark);
        }

            .projects .project-item .project__tag img {
                width: 18px;
                height: 18px;
                flex-shrink: 0;
                object-fit: contain;
            }

            .projects .project-item .project__tag p {
                color: var(--teal-500);
                font-size: 14px;
                font-weight: 600;
                line-height: 1.5;
                white-space: nowrap;
                margin: 0;
            }

    .projects .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 48px;
        grid-column-start: 2;
    }

    .projects .pagination__numbers {
        display: flex;
        align-items: center;
        gap: 24px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .projects .pagination .pagination__item {
        width: 48px;
        height: 48px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        color: var(--blue-vibrant1-500);
        font-family: 'Lexend Deca', sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        .projects .pagination .pagination__item:hover {
            background: #94A0B5;
            color: var(--blue-vibrant1-500);
        }

        .projects .pagination .pagination__item.active {
            background: var(--blue-vibrant1-500);
            color: var(--white-color);
        }

    .projects .pagination .pagination__ellipsis {
        display: none;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        color: var(--blue-vibrant1-500);
        font-family: 'Lexend Deca', sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        pointer-events: none;
        user-select: none;
    }

    .projects .pagination .pagination__nav {
        width: 48px;
        height: 48px;
        padding: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--white-color);
        color: var(--blue-vibrant1-500);
        border: 1px solid var(--blue-vibrant1-500);
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

        .projects .pagination .pagination__nav:hover {
            background: var(--blue-vibrant1-500);
            color: var(--white-color);
        }

        .projects .pagination .pagination__nav:disabled,
        .projects .pagination .pagination__nav.disabled {
            opacity: 0.5;
            pointer-events: none;
        }

@media screen and (max-width: 1439px) {
    .projects {
        grid-template-columns: 300px 1fr;
    }
}

@media screen and (max-width: 768px) {
    .projects {
        grid-template-columns: 1fr;
        padding: 24px 16px 48px;
        gap: 24px;
    }

        /* tab bar shows instead of the sidebar — no pinning on mobile */
        .projects .filter {
            position: static;
        }

        /* hide desktop sidebar */
        .projects .filter__list {
            display: none;
        }

        /* tab bar */
        .projects .filter__tabs {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            border-bottom: 1px solid var(--gray-300);
        }

        .projects .filter__tab {
            position: relative;
            background: none;
            border: none;
            padding: 0 0 24px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--black-color);
            font-family: inherit;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.5;
            cursor: pointer;
        }

            .projects .filter__tab.active {
                color: var(--blue-vibrant1-500);
                font-weight: 600;
            }

                .projects .filter__tab.active::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: -1px;
                    height: 3px;
                    background: var(--blue-vibrant1-500);
                }

        .projects .filter__tab-icon {
            position: relative;
            display: inline-flex;
        }

        .projects .filter__tab-dot {
            position: absolute;
            top: -3px;
            right: -4px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--blue-vibrant1-500);
            display: none;
        }

        .projects .filter__tab--more.has-filter .filter__tab-dot {
            display: block;
        }

        /* popup bottom sheet */
        .projects .filter__popup-backdrop {
            display: block;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.2);
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.7s ease;
        }

        .projects .filter.show-filter-popup .filter__popup-backdrop {
            opacity: 1;
            pointer-events: auto;
        }

        .projects .filter__popup {
            display: flex;
            flex-direction: column;
            gap: 40px;
            position: fixed;
            left: 16px;
            right: 16px;
            bottom: 0;
            z-index: 10000;
            background: var(--white-color);
            box-shadow: 0 -4px 20px 0 rgba(0, 0, 0, 0.25);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1);
        }

        .projects .filter.show-filter-popup .filter__popup {
            transform: translateY(0);
        }

        .projects .filter__popup-header,
        .projects .filter__popup-footer {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .projects .filter__popup-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .projects .filter__popup-title {
            color: #767676;
            font-size: 16px;
            line-height: 1.5;
            text-transform: uppercase;
        }

        .projects .filter__popup-close {
            background: none;
            border: none;
            padding: 0;
            width: 16px;
            height: 16px;
            font-size: 16px;
            line-height: 1;
            color: #767676;
            cursor: pointer;
        }

        .projects .filter__popup-divider {
            height: 1px;
            background: #F7F6F5;
        }

        .projects .filter__popup-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .projects .filter__popup-group {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .projects .filter__popup-group-title {
            color: #767676;
            font-size: 16px;
            line-height: 1.5;
            margin: 0;
        }

        .projects .filter__chips {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .projects .filter__chip {
            height: 36px;
            padding: 8px 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            border: 1px solid var(--gray-300);
            color: var(--black-color);
            font-family: inherit;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.5;
            white-space: nowrap;
            cursor: pointer;
        }

            .projects .filter__chip.selected {
                background: var(--blue-vibrant1-500);
                border-color: var(--blue-vibrant1-500);
                color: var(--white-color);
            }

        .projects .filter__popup-actions {
            display: flex;
            gap: 12px;
        }

        .projects .filter__popup-btn {
            flex: 1;
            height: 49px;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: inherit;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.5;
            text-transform: uppercase;
            cursor: pointer;
        }

        .projects .filter__popup-btn--reset {
            background: var(--gray-100);
            border: 1px solid var(--gray-300);
            color: var(--blue-vibrant1-500);
        }

        .projects .filter__popup-btn--apply {
            background: var(--blue-vibrant1-500);
            border: 1px solid var(--blue-vibrant1-500);
            color: var(--white-color);
        }

        .projects .listing {
            flex-flow: column;
            row-gap: 40px;
        }

        .projects .project-item {
            width: 100%;
            gap: 12px;
        }

            .projects .project-item .project-img__container {
                height: 308px;
            }

            .projects .project-item .project-img__desc-wrapper {
                display: none;
            }

            .projects .project-item .project-item__desc {
                display: block;
                color: #333;
                font-size: 16px;
                font-weight: 400;
                line-height: 1.5;
                margin: 0;
            }

        .projects .pagination {
            grid-column-start: 1;
            gap: 0;
            justify-content: space-between;
        }

        .projects .pagination__numbers {
            flex: 1;
            justify-content: space-between;
            gap: 0;
            padding: 0 16px;
        }

        .projects .pagination .pagination__item--collapsible {
            display: none;
        }

        .projects .pagination .pagination__ellipsis {
            display: flex;
        }
}


/* === SECTION: TESTIMONIAL === */
.testimonial {
    background: #F7F6F5;
}

    .testimonial .testimonial__inner {
        display: flex;
        flex-flow: column;
        gap: 24px;
        margin: auto;
        max-width: 1440px;
        padding: 80px 40px;
    }

    .testimonial .testimonial__heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
    }

        .testimonial .testimonial__heading h3 {
            font-size: 32px;
            font-weight: 600;
            line-height: 1.2;
            text-transform: uppercase;
            color: #333;
        }

    .testimonial .testimonial__swiper-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }

        .testimonial .testimonial__swiper-button .swiper-button-prev,
        .testimonial .testimonial__swiper-button .swiper-button-next {
            position: relative;
            /* reset Swiper's default absolute offsets so the buttons sit as plain
       flex items: 24px apart and vertically centered with the title */
            top: auto;
            left: auto;
            right: auto;
            margin: 0;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white-color);
            border: 1px solid #264abc;
            padding: 10px;
            color: #1b1b1b;
            cursor: pointer;
        }

            .testimonial .testimonial__swiper-button .swiper-button-prev:hover,
            .testimonial .testimonial__swiper-button .swiper-button-next:hover {
                color: var(--blue-vibrant1-500);
            }

            .testimonial .testimonial__swiper-button .swiper-button-prev:after,
            .testimonial .testimonial__swiper-button .swiper-button-next:after {
                content: "";
                display: none;
            }

    .testimonial .testimonial__pagination {
        display: none;
    }

    .testimonial .testimonial__swiper {
        width: 100%;
    }

.testimonial__swiper .swiper-slide {
    display: flex;
    gap: 24px;
    position: relative;
    padding: 0 40px 0 40px;
}

    .testimonial__swiper .swiper-slide .avatar-box {
        height: 427px;
        width: 427px;
        flex-shrink: 0;
        position: relative;
    }

        .testimonial__swiper .swiper-slide .avatar-box .avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 2;
            display: block;
            /* chamfered top-left & bottom-right corners (replaces the old triangle pseudo-elements) */
            clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
        }

.testimonial__swiper .content {
    background: #fcfcfc;
    height: 427px;
    padding: 56px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

    .testimonial__swiper .content > p {
        color: #767676;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        margin: 0;
    }

.testimonial__swiper .content__author {
    display: flex;
    flex-direction: column;
}

.testimonial__swiper .content .avatar-img-sm {
    display: none;
}

.testimonial__swiper .content__author-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial__swiper .content .position {
    color: #767676;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    order: 1;
    margin: 0;
}

.testimonial__swiper .content .name {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    order: 2;
    margin: 0;
}

.testimonial__swiper .rectangle {
    position: absolute;
    left: -30px;
    bottom: -30px;
}

.testimonial__swiper .rectangle-1 {
    z-index: 3;
    position: relative;
}

.testimonial__swiper .rectangle-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .testimonial .testimonial__inner {
        padding: 48px 16px;
        gap: 24px;
    }

    .testimonial .testimonial__heading {
        padding: 0;
    }

        .testimonial .testimonial__heading h3 {
            font-size: 32px;
            line-height: 1.2;
        }

    .testimonial .testimonial__swiper-button {
        display: none;
    }

    .testimonial .testimonial__pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .testimonial .testimonial__pagination-bullet {
        width: 40px;
        height: 4px;
        background: #a2a09e;
        flex-shrink: 0;
        cursor: pointer;
    }

        .testimonial .testimonial__pagination-bullet.active {
            background: #264abc;
        }

    .testimonial__swiper .swiper-slide {
        flex-direction: column;
        padding: 0;
        gap: 24px;
    }

        .testimonial__swiper .swiper-slide .avatar-box {
            display: none;
        }

    .testimonial__swiper .content {
        background: none;
        height: auto;
        padding: 0;
        gap: 24px;
        justify-content: flex-start;
        width: 100%;
        flex: none;
    }

    .testimonial__swiper .content__author {
        flex-direction: row;
        align-items: flex-start;
        gap: 24px;
        order: -1;
    }

    .testimonial__swiper .content .avatar-img-sm {
        display: block;
        width: 120px;
        height: 120px;
        object-fit: cover;
        flex-shrink: 0;
        clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    }

    .testimonial__swiper .content__author-meta {
        gap: 4px;
        align-self: center;
    }

    .testimonial__swiper .content .position {
        order: 2;
    }

    .testimonial__swiper .content .name {
        order: 1;
    }

    .testimonial__swiper .rectangle {
        display: none;
    }
}



/* === SECTION: CLIENT === */
.client {
    display: flex;
    flex-flow: column;
    gap: 40px;
    margin: auto;
    max-width: 1440px;
    padding: 80px 0 0;
    background: #fff;
}

    .client h4 {
        color: #333;
        text-align: center;
        font-family: "Lexend Deca", sans-serif;
        font-size: 24px;
        font-weight: 500;
        line-height: 1.25;
    }

    .client .client__swiper {
        width: 100%;
        position: relative;
    }

        .client .client__swiper:before {
            content: "";
            background: linear-gradient(-90deg, rgba(255, 255, 255, 0.00) 37.685%, var(--white-color) 100%);
            z-index: 2;
            width: 203px;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
        }

        .client .client__swiper:after {
            content: "";
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 37.685%, var(--white-color) 100%);
            z-index: 2;
            width: 203px;
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
        }

        .client .client__swiper .swiper-slide {
            display: flex;
            justify-content: center;
            width: auto;
        }

        /* linear timing turns the autoplay into a continuous, non-jerky scroll */
        .client .client__swiper .swiper-wrapper {
            transition-timing-function: linear;
        }

        .client .client__swiper .swiper-slide img {
            height: 64px;
            width: 100px;
            object-fit: contain;
        }

@media screen and (max-width: 768px) {
    .client {
        padding-top: 48px;
    }

        .client h4 {
            font-size: 20px;
            line-height: 1.3;
        }

        .client .client__swiper .swiper-slide img {
            height: 46px;
            width: 72px;
        }

        .client .client__swiper:before,
        .client .client__swiper:after {
            display: none;
        }
}


/* === SECTION: PARTNER === */
.partner {
    display: flex;
    flex-flow: column;
    gap: 40px;
    margin: auto;
    max-width: 1440px;
    padding: 120px 0 80px 0;
    background: #fff;
}

    .partner h4 {
        color: #333;
        text-align: center;
        font-family: "Lexend Deca", sans-serif;
        font-size: 24px;
        font-weight: 500;
        line-height: 1.25;
    }

    .partner .partner__swiper {
        width: 100%;
        position: relative;
    }

        .partner .partner__swiper:before {
            content: "";
            background: linear-gradient(-90deg, rgba(255, 255, 255, 0.00) 37.685%, var(--white-color) 100%);
            z-index: 2;
            width: 203px;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
        }

        .partner .partner__swiper:after {
            content: "";
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 37.685%, var(--white-color) 100%);
            z-index: 2;
            width: 203px;
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
        }

        .partner .partner__swiper .swiper-slide {
            display: flex;
            justify-content: center;
            width: auto;
        }

        /* linear timing turns the autoplay into a continuous, non-jerky scroll */
        .partner .partner__swiper .swiper-wrapper {
            transition-timing-function: linear;
        }

        .partner .partner__swiper .swiper-slide img {
            height: 49px;
            width: 77px;
            object-fit: contain;
        }

@media screen and (max-width: 768px) {
    .partner {
        padding-bottom: 48px;
    }

        .partner h4 {
            font-size: 20px;
            line-height: 1.3;
        }

        .partner .partner__swiper:before,
        .partner .partner__swiper:after {
            display: none;
        }
}
