.section-text-callout {

	.content {

		width: 100%;
		background: var(--tertiary);
		padding-top: 28px;
		padding-bottom: 28px;
		display: block;

		.container {

			display: flex;
			justify-content: center;
			align-items: center;
			gap: 25px;

			.block-title {
				margin: 0;
				color: var(--white);
				@media screen and (max-width: 768px) {
					font-size: 20px;
					text-align: center;
				}
				span {
					color: var(--primary);
				}
			}

			.block-image {
				@media screen and (max-width: 768px) {
					order: -1;
				}
				img {
					display: block;
					max-width: 60px;
					@media screen and (max-width: 768px) {
						max-width: 50px;
					}
				}
			}

		}

	}

}