/* HOMEPAGE - Image text */
/* .home-image-text {
    background: var(--block_sand);
} */

.home-image-text .inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);    
}

.home-image-text .image-wrap {
    max-height: 750px;
    /* margin-left: -100%; */
    overflow: clip;
}

.home-image-text .image-wrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.home-image-text .content {
    position: relative;

    padding: var(--block_spacing);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;

    height: 100%;
}

.home-image-text .content .title-font {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-image-text .content .title-font span {
  	position: relative;
    transform-origin: center;
    display: block;
    margin-left: calc((var(--block_spacing)* -1) - 40px);
}
.home-image-text.sm-test .content .title-font span {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 2px 8px;
}
.home-image-text.sm-test2 .image-wrap {
  position: relative;
}
.home-image-text.sm-test2 .image-wrap::before {
    content: '';
    background: rgba(255, 255, 255, 0.16);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media(max-width:992px) {
    .home-image-text .content .title-font {
        font-size:32px;
    }
}

.home-image-text .content .text-content {
    font-size: 18px;
    font-family: 'Helvetica', 'sans-serif';
    font-weight: 200;
    line-height: 170%;
}

.home-image-text .content .btn {
    width: fit-content;
}

@media screen and (width < 992px) {
    .home-image-text .inner {
        grid-template-columns: 1fr;
    }

    .home-image-text .image-wrap {
        margin: unset;
        width: 100%;
    }
    .home-image-text .content{
        padding: var(--block_spacing) 0;
    }

    .home-image-text .content .title-font span {
        position: initial;
        transform: unset;
        margin-left: 0;
    }
}