.slider-heading {
    position: relative;
    z-index: 0;
	width: 100%;
    margin-bottom: 3rem;
}
.slider-heading .swiper-wrapper { 
    height: 100%;
    z-index: 1;
}
.slider-heading .swiper-slide {
	position: relative;
	z-index: 0;
    height: auto;
    display: flex;
    align-items: center;
    /*min-height: 33vw;*/
    max-height: calc(100vh - 150px);
    padding: 8% 0;
}
.slide-item-img {
    display: block;
    position: absolute;
    top: 0; left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-item-wrapper,
.slide-item-wrapper .row {
    height: 100%;
}
.slider-heading .container {
    position: relative;
    height: 100%;
    z-index: 1;
}
.slide-item-content {
    position: relative;
    z-index: 1;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}
.slide-item-navigation {
    display: flex;
    justify-content: space-between;
    flex: 0 0 auto;
    width: 100%;
    display: flex;
} 
.slide-item-text {
    flex: 1 1 auto;
}
@media (max-width: 767px) {
    .slide-item-content {
        width: 75%;
    }
}
@media (max-width: 575px) {
    .slider-heading .swiper-slide {
        padding: 0;
        max-height: inherit;
        flex-direction: column;
    }
    .slide-item-img {
        position: relative;
        min-height: 260px;
        height: auto;
        flex: 0 0 auto;
    }
    .slide-item-content {
        width: 100%;
    }    
}