

.tc-hero__single-slide-content h1,
.tc-hero__single-slide-content h2 {
    color: var(--color-bronze);
    margin-bottom: 12px;
}

.tc-hero__single-slide-content {
    color: var(--color-white);
}

.tc-hero__single-slide-inner {
    height: 100vh;
    position: relative;
    z-index: 1;
}

.tc-hero__single-slide-inner::after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    background: #000000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    position: absolute;
}

.tc-hero__single-slide-inner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
    position: relative;
}

.tc-hero__single-slide-inner > .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
}

@media only screen and (min-width: 991px) {
    .tc-hero__single-slide-content {
        max-width: 50%;
    }

    .tc-hero__single-slide-inner::after {
        background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    }
}