.hp-text-with-image {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.hp-text-with-image--reverse {
	flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
	.hp-text-with-image--reverse {
		flex-direction: column-reverse;
	}
}

.hp-text-with-image__item {
	width: calc((100% - 32px) / 2);
}

@media screen and (max-width: 767px) {
	.hp-text-with-image__item {
		width: 100%;
	}
}

.hp-text-with-image__item:nth-of-type(2) {
	margin-left: 32px;
}

@media screen and (max-width: 767px) {
	.hp-text-with-image__item:nth-of-type(2) {
		margin-left: 0;
		margin-top: 16px;
	}
}

.hp-text-with-image--reverse .hp-text-with-image__item:nth-of-type(2) {
	margin: 0 32px 0 0;
}

@media screen and (max-width: 767px) {
	.hp-text-with-image--reverse .hp-text-with-image__item:nth-of-type(2) {
		margin: 0 0 16px;
	}
}

@media screen and (min-width: 768px) {
	.hp-text-with-image--small .hp-text-with-image__item:nth-of-type(1) {
		width: calc(100% - 262px);
	}
}

@media screen and (min-width: 768px) {
	.hp-text-with-image--small .hp-text-with-image__item:nth-of-type(2) {
		width: 230px;
	}
}

@media screen and (max-width: 767px) {
	.hp-text-with-image--small .hp-text-with-image__item:nth-of-type(2) {
		width: 210px;
		text-align: center;
	}
}

.hp-text-with-image__text {
	font-size: 16px;
	line-height: 1.75;
	margin: 0;
}

@media screen and (max-width: 767px) {
	.hp-text-with-image__text {
		padding: 0 16px;
	}
}

@media screen and (max-width: 767px) {
	.hp-text-with-image--start {
		justify-content: flex-start !important;
	}
}

