.sections-container {
    background-color: transparent !important;
}

#cnhSliderWrapper {
    overflow: visible;
    margin-bottom: 150px;
    background-color: #F2EFEA;
    min-height: 350px;
}

/* Small (sm) */
@media (min-width: 0px) and (max-width:767px) {
    #cnhSliderWrapper {
        min-height: 100%;
    }
}

#cnhSlider {
    overflow-y: visible;
}

#cnhSlider .cnhSlide {
    display: flex;
    height: 350px;
    max-height: 350px;
    flex-wrap: wrap;
    overflow-y: visible;
}

/* Small (sm) */
@media (min-width: 0px) and (max-width:767px) {
    #cnhSlider .cnhSlide {
        height: auto;
        max-height: 100%;
        flex-wrap: wrap;
        overflow-y: visible;
    }
}

#cnhSlider .cnhSlide .cnhText {
    display: flex;
    flex-direction: column;
    /* align-content: center; */
    justify-content: flex-start;
    max-height: 350px;
    flex: 0 0 60%;
}

/* Small (sm) */
@media (min-width: 0px) and (max-width:767px) {
    #cnhSlider .cnhSlide .cnhText {
        flex: 1 1 1px;
        padding: 2em;
        max-height: 100%;
    }

    #cnhSlider .cnhSlide .cnhText p {
        margin: 1em 0 1em 0;
    }
}

#cnhSlider .cnhSlide .cnhText h2 {
    font-size: 2.5rem;
}

/* Small (sm) */
@media (min-width: 0px) and (max-width:767px) {
    #cnhSlider .cnhSlide .cnhText h2 {
        font-size: 1.9em;
    }
}

#cnhSlider .cnhSlide .cnhImage {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 0 0 40%;
}

/* Small (sm) */
@media (min-width: 0px) and (max-width:767px) {
    #cnhSlider .cnhSlide .cnhImage {
        display: none;
    }
}

#cnhSlider .cnhSlide .cnhImage img {
    display: absolute;
    top: 0;
    z-index: 88;
}

.cnhHighlight {
    background-color: #B34220;
    color: white;
}

.cnh-slide {
    outline: 1px solid purple;
}

#cnhSlider .cnhSlide .cnh-highlight {
    background-color: #B34220 !important;
    color: white !important;
}

#cnhSlider .cnhSlide .cnhText a {
    margin-left: 0;
}

/**
  * ----------------------------------------
  * animation fade-in
  * ----------------------------------------
  */
@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    -webkit-animation: fade-in 0.8s ease-in both;
    animation: fade-in 0.8s ease-in both;
}

#cnhSliderWrapper .cnhSlide {
    display: none;
}

#cnhSliderWrapper .active {
    display: flex !important;
}