.text-block-banner {
    /*font-family: "SF Pro Display", sans-serif;*/
}

.text-block-banner .section__top {

}

.text-block-banner .section__body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.text-block-banner .image {
    display: flex;
}
.text-block-banner .image img {
    display: flex;
    max-width: 400px;
}
.text-block-banner .text {

}
.text-block-banner h2 {
    /*font-family: "SF Pro Display", sans-serif;*/
    margin-bottom: 30px;
}
.text-block-banner h3 {
    font-family: "SF Pro Display", sans-serif;
}
.text-block-banner .line {
    margin: 80px auto;
    text-align: center;
    border-top: 1px solid #e7c89a;
    max-width: 600px;
}
@media (max-width: 992px) {
    .text-block-banner .image.first {
        display: none;
    }
    .text-block-banner .section__body {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .text-block-banner .section__body.invert {
        flex-direction: column-reverse;
    }
    .text-block-banner .text {
        text-align: center;
    }
    .text-block-banner .line {
        /*margin: 30px auto;*/
        /*width: 80%;*/
        display: none;
    }
    .text-block-banner h3 {
        font-family: "SF Pro Display", sans-serif;
        font-weight: 500;
        font-size: 20px;
        margin-bottom: 10px;
    }
    .text-block-banner .image {
        margin-bottom: 20px;
    }
}