.image-text-block {
	display: flex;
    gap: 16px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    justify-content: center;
}

.image-text-block.image-right {
    flex-direction: row-reverse;
}

.image-text-block.image-top {
    flex-direction: column;
}

.image-text-block.image-bottom {
    flex-direction: column-reverse;
}

.image-text-block img {
	max-width: 136px;
    width: 100%;
    height: auto;
    display: block;
}

.image-text__image {
    flex: 1;
}

.image-text__content {
    flex: 1;
}

.image-text__title {
	font-family: "SF UI Display", sans-serif;
    margin-bottom: 0px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
}

@media (max-width: 992px) {
    .image-text-block {
        flex-direction: column;
    }
}