.reasons_new h2 {
	max-width: 740px;
	margin-bottom: 32px;
}

.reasons_new .grid_wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 16px;
}

@media (max-width: 767px) {
	.reasons_new .grid_wrapper {
		display: flex;
	}
}

.reasons_new .reason_box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 16px;
	background-color: var(--primary-color);
	padding: 40px;
	border-radius: 8px;
	min-height: 230px;
}

@media (min-width: 1200px) {
	.reasons_new .reason_box:nth-child(6n + 3),
	.reasons_new .reason_box:nth-child(6n + 4) {
		background-color: #fff;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.reasons_new .reason_box:nth-child(4n + 2),
	.reasons_new .reason_box:nth-child(4n + 3) {
		background-color: #fff;
	}
}

@media (max-width: 767px) {
	.reasons_new .reason_box {
		padding: 24px;
		min-height: 200px;
		width: 300px;
		flex-shrink: 0;
	}
	.reasons_new .reason_box:nth-child(even) {
		background-color: #fff;
	}
}

.reasons_new .reason_box .head {
	display: flex;
	justify-content: space-between;
	gap: 18px;
}

.reasons_new .reason_box h3 {
	font-size: 22px;
}

@media (max-width: 1199px) {
	.reasons_new .reason_box h3 {
		font-size: 18px;
	}
}

.reasons_new .reason_box svg {
	flex-shrink: 0;
	display: block;
	width: 40px;
	height: 40px;
}

@media (max-width: 1199px) {
	.reasons_new .reason_box svg {
		width: 24px;
		height: 24px;
	}
}

@media (max-width: 767px) {
	.reasons_new .content_wrapper {
		width: 100%;
		overflow: auto;
		padding-bottom: 8px;
	}
}
