/* #region SHOWCASE US */
.showcase {
	position: relative;
	overflow: hidden;

	padding-top: 120px;
	background-color: var(--gray);
	color: var(--black);
	border-bottom-left-radius: 150px;
	border-bottom-right-radius: 150px;
	transition: filter 0.5s ease;

	.container {
		position: relative;
	}

	&::after,
	&::before {
		content: "";
		position: absolute;
		top: 32px;
		width: 100dvw;
		height: 2px;
		background-color: var(--gray-100);
		z-index: -1;
	}

	&::after {
		top: 0;
		left: 38px;
		width: 2px;
		height: 100%;
	}

	.showcase__line {
		position: absolute;
		top: 0;
		right: 38px;
		width: 2px;
		height: 100%;
		background-color: var(--gray-100);
		z-index: -1;
	}
}

.showcase__top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 102px;
	height: 173px;
}

.showcase__content {
	position: relative;
	display: flex;
	align-items: center;

	.showcase__title {
		text-transform: uppercase;
	}
}

.showcase__inner {
	max-width: 410px;
}

.hero__aside-title {
	font-size: var(--text-72);
	text-transform: uppercase;
}

.showcase__subtitle {
	overflow: hidden;
	margin-bottom: 8px;
}

.showcase__text {
	text-transform: capitalize;
	margin-bottom: 32px;
}

.showcase__btn {
	display: inline-block;
	max-width: 182px;
	width: 100%;
	padding: 5px;
	text-align: center;

	&:first-of-type {
		margin-right: 20px;
	}

	.button {
		padding: 8px 10px;
	}
}

.showcase__cards {
	position: absolute;
	left: 40dvw;
	display: flex;
	align-items: center;
	gap: 32px;
	z-index: 2;
}

.showcase__card {
	width: 310px;
	height: 360px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px;
	border-radius: 25px;
	border: var(--border-white);
	background: var(--bg-dark-blue);
	backdrop-filter: blur(4px);
	flex-shrink: 0;
}

.showcase__icon {
	width: 90px;
	aspect-ratio: 1;
}

.showcase__card-title {
	font-size: var(--text-16);
	font-weight: var(--fw-700);
	text-align: center;
	color: var(--white);
	text-transform: uppercase;
}

.showcase__card-text {
	padding: 16px;
	background-color: var(--white);
	border-radius: 12px;
	color: var(--black);
	text-align: center;
	text-transform: capitalize;
}

.showcase__circle-mob {
	display: none;
}

.showcase__stats {
	margin-top: 112px;
}

.showcase__about {
	position: relative;
	bottom: 5%;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 170px;
	font-weight: var(--fw-600);
	text-transform: uppercase;
	color: rgba(19, 201, 128, 0.5);
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	opacity: 0;
}

.stats__item {
	color: var(--white);
}

@media (max-width: 1200px) {
	.showcase {
		border-bottom-left-radius: 100px;
		border-bottom-right-radius: 100px;

		&::after {
			left: 24px;
		}
		.showcase__line {
			right: 24px;
		}
	}

	.hero__aside-title {
		font-size: var(--text-64);
	}

	.showcase__about {
		font-size: 134px;
		bottom: 7%;
	}

	.showcase__cards {
		left: 55dvw;
	}
	.showcase__subtitle,
	.showcase__text {
		text-align: center;
	}

	.showcase__wrapper {
		img {
			width: 100px;
		}
	}
}

@media (max-width: 834px) {
	.showcase {
		padding-top: 80px;
		border-bottom-left-radius: 80px;
		border-bottom-right-radius: 80px;

		.container {
			z-index: 1;
		}

		&::after {
			z-index: 0;
			left: 16px;
		}
		.showcase__line {
			z-index: 0;
			right: 16px;
		}
	}

	.showcase__content {
		position: static;
		flex-direction: column;
		gap: 32px;
	}
	.showcase__inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 100%;
	}

	.showcase__top {
		height: 263px;
		margin-bottom: 64px;
		flex-direction: column;
		gap: 32px;
	}

	.hero__aside-title {
		font-size: var(--text-48);
		text-align: end;
	}

	.showcase__btn {
		max-width: 335px;

		&:first-of-type {
			margin-right: 0;
			margin-bottom: 20px;
		}
	}
	.showcase__cards {
		position: static;
		flex-direction: column;
		gap: 16px;
	}
	.showcase__card {
		justify-content: center;
		max-width: 335px;
		width: 100%;
		height: 290px;
		gap: 12px;
		padding: 16px;
	}
	.showcase__card-text {
		padding: 8px;
	}
	.showcase__icon {
		width: 70px;
	}
	.showcase__wrapper {
		position: relative;
		flex-direction: column;
		padding-top: 64px;
		gap: 32px;

		img {
			margin-right: 0;
		}

		.showcase__inner {
			align-items: center;
			text-align: center;
			max-width: 100%;
		}
		.showcase__circle-mob {
			display: block;
			width: 175px;
			height: 175px;
			top: 25px;
			filter: blur(90px);
			z-index: -1;
		}
	}
	.showcase__stats {
		margin-top: 64px;
	}
	.showcase__about {
		font-size: 48px;
		margin-top: 14px;
	}
}

@media (max-width: 756px) {
	.showcase__text {
		font-size: var(--text-14);
	}
}

/* #endregion CHOOSE US */
