.dfg-content-box-slider__wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-right: 0;
}

.dfg-content-box-slider {
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
}

.dfg-content-box-slider .swiper-wrapper {
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
}

.dfg-content-box-slider__item {
    height: auto;
    width: auto;
    max-width: 400px;
    display: flex;
    flex-shrink: 0;
}

.dfg-content-box-slider__item-inner {
    padding: 25px;
    border-radius: 0;
    background: #E3EDEB;
    height: 100%;
}

.dfg-content-box-slider__image {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background-color: #456D6A;
}

.dfg-content-box-slider__image img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.dfg-content-box-slider__title {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.2em;
    font-weight: 500;
    color: #000000;
}

.dfg-content-box-slider__content {
    font-size: 18px;
    line-height: 1.33;
    color: #000000;
}

/* First and last slides can extend to edges */
.dfg-content-box-slider__item--first .dfg-content-box-slider__item-inner {
    margin-left: 0;
}

.dfg-content-box-slider__item--last .dfg-content-box-slider__item-inner {
    margin-right: 0;
}

@media screen and (max-width: 767px) {

    /* Max-width will be set by JS based on VC Map settings */
    .dfg-content-box-slider__item-inner {
        padding: 17px 14px;
    }

    .dfg-content-box-slider__title {
        margin-bottom: 10px;
    }
}

/* Tablet breakpoint: 768px - 1199px */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    /* Max-width will be set by JS based on VC Map settings */
}

/* Desktop breakpoint: 1200px and above */
@media screen and (min-width: 1200px) {
    /* Max-width will be set by JS based on VC Map settings */
}

/* Navigation Arrows */
.dfg-content-box-slider__navigation {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 45px;
    width: 100%;
}

.dfg-content-box-slider__navigation .swiper-button-prev,
.dfg-content-box-slider__navigation .swiper-button-next {
    position: relative;
    width: 35px;
    height: 35px;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dfg-content-box-slider__navigation .swiper-button-prev {
    transform: rotate(180deg);
}

.dfg-content-box-slider__navigation .swiper-button-prev:after,
.dfg-content-box-slider__navigation .swiper-button-next:after {
    display: none;
}

.dfg-content-box-slider__navigation .swiper-button-disabled {
    cursor: not-allowed;
}

.dfg-content-box-slider__navigation svg path {
    fill: #456D6A;
    transition: all 0.3s ease;
}

.dfg-content-box-slider__navigation .swiper-button-disabled svg path {
    fill: #858585;
}

@media screen and (max-width: 767px) {
    .dfg-content-box-slider__navigation{
        margin-top: 35px;
        justify-content: flex-end;
    }
}