/* #region HERO */
.hero__left--about {
	max-width: 550px;
	flex-direction: column;
	justify-content: flex-end;
	height: stretch;
}

.hero__stats--about {
	margin-top: 163px;
}

.hero__right--about {
	max-width: 550px;
}

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

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

		&:nth-child(3) {
			width: 100%;
			max-height: 286px;
			border-radius: 30px;
			border: 10px solid var(--white);
			grid-column: span 2;
		}
	}
}
.hero__social {
	margin-top: 64px;
}

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

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

			&:nth-child(3) {
				border-width: 5px;
			}
		}
	}
}

/* #endregion HERO */

/* #region ABOUT */
.about--section {
	padding-bottom: 100px;
}
.about__title {
	font-size: 54px;
	line-height: 1.3;
}

@media (max-width: 768px) {
	.about--section {
		padding-bottom: 64px;
	}
	.about__title {
		font-size: 38px;
	}
}
/* #endregion ABOUT */

/* #region future */
.future--about {
	margin-bottom: 100px;
}
@media (max-width: 768px) {
	.future--about {
		margin-bottom: 64px;
	}
}
/* #endregion future */
