.why__section {
	padding: 25px 0;
	margin: 25px 0;
}

.why__titles {
	margin: 0 0 30px 0;
}

.why__title {
	display: block;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	color: #000;
}

.why__description {
	display: block;
	font-family: Murecho, sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: rgb(117, 119, 119);
	text-transform: lowercase;
}

.why__items {
	display: grid;
	gap: 30px;
}

.why__item {
	display: flex;
	gap: 20px;
	border: 1px solid;
	border-color: #f3f4f680;
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -1px rgb(0 0 0 / .06), 0 20px 30px -10px rgb(119 209 77 / 30%);
	transition: all 0.3s ease;
}

.why__item:hover {
	animation: shake 0.5s ease;
}

@keyframes shake {

	0%,
	100% {
		transform: rotate(0deg);
	}

	25% {
		transform: rotate(-2deg);
	}

	75% {
		transform: rotate(2deg);
	}
}

.why__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.why__sub-title {
	font-family: 'Murecho', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.why__text {
	font-family: 'Murecho', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	color: #757777;
}

@media (min-width: 992px) {
	.why__section {
		padding: 50px 0;
		margin: 50px 0;
	}

	.why__titles {
		margin: 0 0 50px 0;
	}

	.why__title {
		font-size: 42px;
	}

	.why__description {
		font-size: 18px;
	}

	.why__items {
		grid-template-columns: 1fr 1fr;
	}

	.why__item {
		gap: 30px;
	}

	.why__sub-title {
		font-size: 24px;
		font-weight: 700;
	}

	.why__text {
		font-size: 14px;
	}
}