/* #region HERO */
.hero__title--what-is {
	text-align: center;

	.hero__accent {
		font-size: 64px;
	}

	span:last-child {
		text-align: center;
	}
}

.hero__left--what-is {
	max-width: 550px;
	flex-direction: column;
	justify-content: flex-end;
	height: stretch;
}

.hero__stats--what-is {
	margin-top: 163px;
}

.hero__right--what-is {
	max-width: 550px;
}

.hero__wrapper-images {
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas:
		"item1 item2"
		"item3 item2";
	width: 100%;
	gap: 20px;
	border-radius: 40px;
	padding: 40px;

	img {
		&:nth-child(1) {
			grid-area: item1;
			max-width: 221px;
			width: 100%;
			max-height: 224px;
			border-radius: 25px;
			border: 10px solid var(--primary);
			object-position: center top;
		}

		&:nth-child(2) {
			grid-area: item2;
			max-width: 221px;
			width: 100%;
			height: 100%;
			border-radius: 25px;
			border: 10px solid var(--primary);
			object-position: center top;
		}

		&:nth-child(3) {
			grid-area: item3;
			max-width: 226px;
			width: 100%;
			height: 286px;
			border-radius: 30px;
			border: 10px solid var(--white);
			object-position: left top;
		}
	}
}
.hero__social {
	margin-top: 64px;
}

@media (max-width: 768px) {
	.hero__wrapper-images {
		padding: 20px;
		gap: 8px;

		img {
			&:nth-child(1) {
				height: 154px;
			}

			&:nth-child(1),
			&:nth-child(2) {
				border-width: 5px;
			}

			&:nth-child(3) {
				border-width: 5px;
				height: 154px;
				object-position: center top;
			}
		}
	}
}

/* #endregion HERO */
