.section-hero .hero-content {
    position: absolute;
    z-index: 2;
    bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.section-hero .section-title .title-heading,
.section-hero .button {
    color: #fff;
}

.section-hero .img-hero {
    overflow-wrap: anywhere;
    object-fit: cover;
    object-position: center;
    transform-origin: bottom;
    border-radius: inherit;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
	 min-height: 420px
}

.section-hero .hero-link,
.section-hero .hero-no-link,
.section-hero .hero-video {
    position: relative;
    overflow: hidden;
	display:table;
	margin:auto;
}

.section-hero .hero-link.has-content::before,
.section-hero .hero-no-link.has-content::before,
.section-hero .hero-video.has-content::before {
    content: '';
    background: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.6) 100%);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70%;
    z-index: 1;
}

.section-hero .section-title {
    margin-bottom: 0.5rem;
}

.section-hero .hero-desc {
    color: #fff;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

@media screen and (min-width:768px) {
    .section-hero .hero-content {
        bottom: 72px;
    }


}
 @media screen and (min-width:992px) {
    .section-hero .hero-link, 
	.section-hero .hero-no-link,
	.section-hero .hero-video {
        display:block;
    }
	.section-hero .img-hero {
        max-height: calc(100svh - 200px); 
    } 
} 