.dnd-section:has(.features-slider) {
    padding-right: 0px;
    overflow: clip;
}

.features-slider {
    isolation: isolate;
}

.features-slider .swiper {
    clip-path: inset(0 -100vw 0 0);
    overflow: visible;
}

.features-slider .swiper-slide{
    height: auto;
}


.features-slider .inner-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.features-slider__content {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #F4EFE8;
}

.features-slider__swiper-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.features-slider .inner-wrapper h2 {
    margin-bottom: 30px;
}


.features-slider__scroll-bar {
    position: relative;

    height: 1px;
    margin: 64px 0 4px 0px;
    width: calc(100% - 24px);
    background-color: #3D5057;
    border-radius: 0;
}

.features-slider__scroll-bar .swiper-scrollbar-drag {
    position: relative;
    top: -3px;

    height: 7px;

    background-color: #3D5057;
}

.features-slider__scroll-bar::after {
    content: "";

    position: absolute;
    top: -5px;

    display: block;
    height: 11px;

    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='114' height='132' fill='none' viewBox='0 0 114 132'%3E%3Cpath fill='%233d5057' d='M114 65.818 0 131.636V0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;

    right: -2px;
    top: -5px;
    width: 12px;

}


/* ==========================================================================
   Icon Card
   ========================================================================== */

.icon-card {
    height: 100%;
    display: flex;
    flex-direction: column;

    padding: 50px 30px 30px;
    border: 1px solid rgba(68, 204, 0, 0);
    border-radius: 10px;

    background-color: var(--white);
    box-shadow: 0 4px 50px 0 rgba(190, 161, 121, 0);
    position: relative;
    transition:
        box-shadow 0.3s ease-in-out,
        border-color 0.3s ease-in-out;
}
.icon-card__cover-link{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}
.icon-card:hover {
    border-color: rgba(68, 204, 0, 1);
    box-shadow: 0 4px 50px 0 rgba(190, 161, 121, 0.30);
}

.icon-card__icon img {
    max-height: 42px;
    margin-bottom: 30px;
}

.icon-card__description {
    margin-bottom: 74px;
    flex: 1;
}

.icon-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;

    width: 50px;
    height: 50px;

    background-color: var(--black);
    border-radius: 50%;

    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.icon-card__cta:hover {
    background-color: var(--green);
}

@media screen and (min-width: 768px) {
    .features-slider__content {
        width: 25%;
        padding-right: 40px;
    }

    .features-slider__swiper-wrapper {
        width: 75%;
    }
    .features-slider .inner-wrapper{
        flex-direction: row;
    }}
}