:root {
	--primary-color: #000;
	--secondary-color: #232323;
	--accent-color: #5b5b5b;
	--sub-heading: #6f6f6f;
}

body {
	font-family: "Open Sans", sans-serif;
	font-size: 20px;
	background: url(../images/bg-spiral.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position-y: 250px;
	margin: 0;
	padding: 0;
	color: var(--primary-color);
}

p {
	color: var(--secondary-color);
	line-height: 2.2em;
}

h1 {
	font-size: 46px;
	line-height: 1em;
}

h1,
h2,
h3,
h4,
h6 {
	color: var(--primary-color);
}

.center-text {
	text-align: center;
}

.flex {
	display: flex;
	gap: 20px;
}

.no-gap {
	gap: 0;
}

.flex-row {
	flex-direction: row;
}

.flex-col {
	flex-direction: column;
}

.flex-col-center {
	justify-content: center;
}

.content-header {
	min-height: 75px;
}

.content-cover {
	min-height: 535px;
}

.content {
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
}

.section-cover {
	background: linear-gradient(to bottom, #f0f0f091, #ffffff00 75px);
}

.section-cover h2 {
	font-size: 22px;
	font-weight: normal;
}

.features-box {
	background: #fff;
	box-shadow: 0px 0px 40px 40px rgb(0 0 0 / 5%);
	padding: 20px;
	max-width: 1110px;
}

.features-box h3 {
	text-align: center;
	color: var(--sub-heading);
}

ol.features {
	display: block;
	list-style: none;
	overflow: hidden;
	counter-reset: numList;
	padding-left: 90px;
}

.features li {
	position: relative;
	margin-bottom: 40px;
	font-size: 22px;
}


.features li::before {
	counter-increment: numList;
	content: counter(numList);
	position: absolute;
	top: 2px;
	left: -85px;
	font-size: 25px;
	font-weight: 600;
	text-align: center;
	color: #fff;
	line-height: 60px;
	width: 60px;
	height: 60px;
	background: var(--secondary-color);
	-moz-border-radius: 999px;
	border-radius: 50%;
}

.features li::after {
	content: "";
	position: absolute;
	background-color: var(--accent-color);
	width: 2px;
	height: 100%;
	top: 55px;
	left: -55px;
}

.section-features {
	margin-bottom: 150px;
}


@media screen and (max-width: 767px) {
	body {
		background-size: 220%;
	}

	.content-cover {
		min-height: 370px;
	}

	.section {
		padding: 0 20px;
	}

	.content-header {
		justify-content: center;
	}

	.flex-col-mobile {
		flex-direction: column;
	}

	.features-box {
		margin: 50px 0;
	}
}