.content-image-slider {
    background-color: var(--wp--preset--color--dark-blue);
    margin: 0 calc(50% - 50vw) 0 calc(50% - 50vw);
    color: white;
    padding: 0;
}
.content-image-slider .subheading strong {
    color: #418628;
}
.content-image-slider .text {
    width: 60%;
    padding-left: 40px;
    margin-bottom: 40px;
}
.content-image-slider .text h3  {
    margin-bottom: 20px;
}
.content-image-slider .text h3 a {
    text-decoration: none;
}
.content-image-slider .text h3 a:hover {
    text-decoration: underline;
    color: white;
}
.content-image-slider .image {
    width: 40%;
    /* aspect-ratio: 99/79; */
    align-self: stretch;
    position: relative;
}
.content-image-slider .image:after {
    content: '';
    display: block;
    height: 100%;
    top: 0;
    right: -3px;
    width: 100%;
    background: linear-gradient(-90deg, rgba(0,60,113,1) 0%, rgba(0,0,0,0) 30%);
    position: absolute;
}
.content-image-slider .image img {
    height: 100%;
    object-fit: cover;
}
.content-image-slider h2 {
    font-size: 60px;
    font-weight: bold;
    color: #5CBC38;
}
.content-image-slider .slick-track {
    display: flex !important;
}

.content-image-slider .slick-slide {
    height: inherit !important;
    gap: 0;
}
.content-image-slider .slick-next {
    right: 25px !important;
    width: 28px;
    height: 28px;
}
.content-image-slider .slick-prev {
    left: 25px !important;
    width: 28px;
    height: 28px;
    z-index: 100;
}
@media screen and (max-width: 1250px) {
    .slide .right-content {
        padding-left: 55px!important;
        padding-right: 55px!important;
    }
}

@media screen and (max-width: 767px) {
    .slide {
        flex-direction: column;
    }
    .slide .image {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 16/10;
    }
    .slide .image:after {
        content: '';
        display: block;
        height: 100%;
        left: -1px;
        right: 0;
        width: 100%;
        background: linear-gradient(0deg, rgba(0,60,113,1) 0%, rgba(0,0,0,0) 50%);
        position: absolute;
    }
    .slide .right-content {
        width: 100%;
        max-width: 100%;
        padding-left: 55px;
        padding-right: 55px;
    }
}