.sticky-feat-services {
    position: relative;
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 90%,var( --black ) 90%,var( --black ) 100%);
}

.stickyWrap {
    position: sticky;
    top: min( 3.75vw, 72px ); /* Header height */
    padding: 0;
    margin: 0;
    display: grid;
    width: 100%;
    height: clamp( 800px, 44.792vw, 860px );
    padding-top: clamp( 60px, 4.17vw, 80px );
    contain-intrinsic-height: clamp( 800px, 44.792vw, 860px );
    scrollbar-width: none;
    justify-items: center;
}

.featBox.stickyCard {
    position: relative;
    display: flex;
    grid-area: 1 / 1 / 2 / 2;
    width: min( 85.417vw, 1640px );
    height: clamp( 800px, 44.792vw, 860px );
    padding: 0;
    border-radius: var( --roundedTop );
    overflow: hidden;
    color: var( --white );
    font-size: 16px;
    flex-direction: column;
    justify-content: flex-start;
    will-change: transform;
    align-items: flex-start;
}

.featBox.stickyCard:hover .featContent h4 {
    text-decoration: underline;
}

.featBox.stickyCard:nth-of-type(2) {
    color: var( --black );
}

/* ... rest of existing CSS ... */

.featBgImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.featBgImg img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.sticky-feat-services .featContent {
    position: relative;
    color: inherit;
    /* width: 85%; */
    margin: 0;
    padding: clamp( 40px, 4.167vw, 80px ) clamp( 20px, 4.167vw, 80px );
}

.sticky-feat-services .featContent h4 {
    font-family: var( --heading-font );
    font-size: var( --h4-font-size );
    letter-spacing: var( --h4-letter-spc );
    line-height: var( --h4-line-height );
    margin-bottom: 24px;
    text-transform: uppercase;
    color: inherit;
}

.sticky-feat-services .featLink {
    position: absolute;
    display: flex;
    right: 40px;
    top: 40px;
    padding: 27px 24px;
    background-color: var( --pink );
    border-radius: 50%;
    transition: all .1s linear;
    overflow: hidden;
}

.sticky-feat-services .featLink img {
    transform: rotate( -45deg );
    transition: all .1s linear
}

.sticky-feat-services .featLink:hover img {
    transform: rotate(0);
    transition: all .1s linear;
}

.sticky-feat-services .featLink::before {
    content: '';
    position: absolute;
    width: 100%;
    /* background-color: var(--primary-color); */
    height: 0;
    bottom: 0;
    left: 0;
    transition: all .1s linear;
    z-index: 0;
}

.sticky-feat-services .featLink:hover::before {
    height: 100%;
    transition: all .1s linear;
}

@media (max-width: 1024px) {
    .stickyWrap {
        position: relative;
        display: block;
        overflow: hidden;
        height: fit-content;
    }
    
    .featBox.stickyCard {
        position: relative;
        height: clamp( 686px, 66.992vw, 800px );
    }

    .featBox.stickyCard:not(:first-of-type) {
        margin-top: -30px;
    }

    .featBox.stickyCard:nth-of-type(2) {
        color: var(--white);
    }

    .sticky-feat-services a.featBox.stickyCard:hover {
        text-decoration: none;
    }

    .sticky-feat-services a.featBox.stickyCard:hover,
    .sticky-feat-services a.featBox.stickyCard:active,
    .sticky-feat-services a.featBox.stickyCard:focus {
        text-decoration: none;
    }
}

@media (max-width: 768px) {
    .stickyWrap {
        top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .sticky-feat-services .featContent {
        margin: 0;
        text-align: center;
    }

    
.sticky-feat-services .featLink {
        padding: 32px;
    }
}