.info_blocks {
	margin: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	padding: 76px 0;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}

.info_block_div {
	gap: 64px;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	transition: all 0.2s ease;
	justify-content: flex-start;
}

.info_block {
	gap: 10px;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
	width: calc(50% - 32px);
	transition: all 0.2s ease;
	justify-content: flex-start;
}

.info_block_img {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 22vw;
	border: none;
	outline: none;
	display: flex;
	overflow: hidden;
	min-height: 200px;
	max-height: 300px;
	position: relative;
	align-items: center;
	border-radius: 32px;
	flex-direction: column;
	justify-content: center;
	transition: all 0.2s ease;
}

.info_block_img img {
	top: 50%;
	left: 50%;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	transform: translate(-50%, -50%);
}

.info_block_title {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor1);
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: normal 32px/40px Calistoga-Regular;
}

.info_block_subtitle {
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor17);
	margin: -11px 0 0 0;
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: normal 18px/22px Figtree-Regular;
}

.info_block button svg {
	height: 13px;
}

@media screen and (max-width: 960px) {
	.info_block_div {
		gap: 32px;
	}
	.info_block {
		width: calc(50% - 16px);
	}
}

@media screen and (max-width: 700px) {
	.info_block {
		width: 100%;
	}
	.info_block_img {
		height: 43vw;
	}
	.info_block_title {
		font: normal 26px/32px Calistoga-Regular;
	}
	.info_block_subtitle {
		font: normal 16px/20px Figtree-Regular;
	}
}