.custom_html_1_about {
	display: flex;
	gap: 2rem;
	max-width: 768px;
	margin: auto;
	margin-bottom: 3rem;
}

.custom_html_1_about .iva {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 26rem;
	background-image: url('iva_min.jpg');
	border-radius: .3rem;
	min-width: 20rem;
}

.custom_html_1_about > div {
	display: flex;
	align-items: center;
}

.custom_html_1_blocks {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2rem;
}

.custom_html_1_blocks > div {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 26rem;
	display: flex;
	border-radius: 4px;
	overflow: hidden;
}

.custom_html_1_blocks > div.custom_html_1_1 {
	background-image: url('1.jpg');
}

.custom_html_1_blocks > div.custom_html_1_2 {
	background-image: url('2.jpg');
}

.custom_html_1_blocks > div.custom_html_1_3 {
	background-image: url('3.jpg');
}

.custom_html_1_filter {
	background: rgb(250 246 242 / 60%);
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	text-align: center;
}

.custom_html_1_filter p {
	color: #b4ac82;
	font-weight: bold;
	margin-bottom: .2rem;
}

.custom_html_1_filter h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #FFF;
}

@media (max-width: 992px) {
	.custom_html_1_blocks {
		gap: 1rem;
	}
}

@media (max-width: 768px) {
	.custom_html_1_blocks {
		grid-template-columns: initial;
	}
	
	.custom_html_1_blocks > div {
		height: 20rem;
	}
}

@media (max-width: 576px) {
	.custom_html_1_filter h3 {
		font-size: 1.5rem;
	}
}