.hh {
	overflow: hidden;
}

.hh__title {
	font-weight: 700;
	font-size: 48px;
	line-height: 54px;
	letter-spacing: -0.5px;
	text-align: center;
	max-width: 75rem;
	margin: 0 auto;
	padding-bottom: 3rem;
}

.hh__subtitle {
	text-align: center;
	max-width: 1131px;
	margin: 0 auto;
	padding-bottom: 30px;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.2px;
}

.hh__content-container {
	padding-top: 3rem;
}

.hh__first-row {
	border-radius: 8px;
	width: 100%;
	height: 52.1rem;
	margin-bottom; 1rem;
	position: relative;
  transition: transform var(--slow_transition), opacity var(--slow_transition);
  opacity: 0;
  transform: translateX(100px);
}

.show .hh__first-row {
	opacity: 1;
	transform: translateX(0);
}

.hh__first-row:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	background-color: #89612F33;
	top: 0;
	left: 0;
}

.hh__first-row-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.hh__second-row {
	position: relative;
	gap: 10px;
	display: flex;
	overflow: hidden;
	margin-top: 10px;
	border-radius: 8px;
	opacity: 0;
	transform: translateY(100px);
	transition: opacity var(--slow_transition), transform var(--slow_transition);
}
.show .hh__second-row {
	opacity: 1;
	transform: translateY(0);
}

.hh__second-row-svg-container {
	position: absolute;
	z-index: -1;
	background-color: #15292F;
	border-radius: 8px;
}

.hh__second-row-first-card {
	padding: 60px 30px;
	border-radius: 8px;
	width: 432px;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hh__second-row-first-card-svg-container {
  left: -600px;
  top: -84%;
}

.hh__second-row-first-card-text {
	font-size: 48px;
	line-height: 54px;
	letter-spacing: -0.5px;
	text-align: center;
	vertical-align: middle;
	color: #DBFC87;
}

.hh__second-row-second-card {
	padding: 60px 30px;
  width: 100%;
	overflow: hidden;
	position: relative;
	border-radius: 8px;
	min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hh__second-row-second-card-svg-container {
  left: calc(-600px - 432px - 10px);
  top: -84%;
}

.hh__second-row-second-card-text {
	font-size: 20px;
	line-height: 24px;
	letter-spacing: -0.2px;
	color: #FFF8F0;
}

.hh__second-row-second-card-link {
	margin-top: 30px;
	width: fit-content;
}

@media (max-width: 900px) {
	.hh__second-row {
		flex-direction: column;
	}
	.hh__second-row-first-card {
		width: 100%;
	}
	.hh__second-row-first-card-svg-container {
		left: -600px;
		top: 0%;
	}
	.hh__second-row-second-card-svg-container {
		left: -600px;
		top: calc(-410px - 10px);
	}
}

@media (max-width: 600px) {
	.hh__second-row-first-card {
		min-height: 30rem;
	}
	.hh__second-row-first-card-svg-container {
		left: -800px;
		top: -10rem;
	}
	.hh__second-row-second-card-svg-container {
		left: -800px;
		top: calc(-40rem - 10px)
	}
}