.hero {
	min-height: 65dvh;
	height: 100%;

	display: flex;
	flex-direction: row;

	margin-top: 6dvh;
	margin-bottom: 16dvh;

	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;

	align-items: center;
}

.hero-div .hero-div-img-container {
	width: 50%;
}

.hero-div-title {
	font-size: 2.5rem;
	color: #00cc00;
}

.hero-div-subtitle {
	font-size: 1.5rem;
	color: #00cc00;
}

.hero-div-text {
	max-width: 60ch;

	margin-top: 5dvh;
	color: black;
}

.hero-div-text strong {
	color: black;
}

.hero-div-img {
	width: 100%;
}

.content-div-title {
	font-size: 2rem;
	color: #00cc00;
	margin-bottom: 5dvh;
}

.content-div-text {
	color: black;
	line-height: 2;
}

.content-div {
	width: 50%;
}

.content-custom-list {
	counter-reset: custom-counter;
	list-style-type: none;
	padding-left: 0;

	color: black;
}

.custom-list-item {
	counter-increment: custom-counter;
	display: block;
	margin-left: 4.2rem;
	text-indent: -4.2rem;
	padding-left: 0;

	max-width: 60ch;
	line-height: 2;

	color: black;
}

.custom-list-item::before {
	content: 'Step ' counter(custom-counter) ': ';
	font-weight: bold;
	margin-right: 10px;

	color: black;
}

.custom-ul {
	list-style-type: none;
	padding-left: 0;
	margin-left: 0;

	color: black;
}

.custom-ul li {
	position: relative;
	padding-left: 25px;

	color: black;
}

.custom-ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;

	color: black;
}

.custom-ul-item {
	display: block;
	margin-left: 0;
	text-indent: 0;
	max-width: 60ch;
	line-height: 2;

	color: black;
}

/* 2xl */
@media (max-width: 1536px) {
}

/* xl */
@media (max-width: 1280px) {
}

/* lg */
@media (max-width: 1024px) {
	.hero-div-img {
		display: none;
	}
	.hero-div-img-container {
		width: 0%;
	}
}

/* md */
@media (max-width: 768px) {
	.hero-div-title {
		font-size: 1.5rem;
	}

	.hero-div-subtitle {
		font-size: 1rem;
	}

	.hero-div-text {
		font-size: 0.7rem;
	}

	.content-div-title {
		font-size: 1.5rem;
	}

	.custom-list-item {
		font-size: 0.7rem;
	}

	.content-custom-list {
		font-size: 0.7rem;
	}
}

/* sm */
@media (max-width: 640px) {
}

/* xs */
@media (max-width: 475px) {
}
