{# Hero home wrapper #}
.hero-home {
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 65px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 663px;
	position: relative;
}

.hero-home:before {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 42%, rgba(0, 0, 0, 0) 100%);
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	max-height: 500px;
	content: '';
}

{# Title #}
.hero-home__title {
	padding-left: 80px;
	max-width: 939px;
	z-index: 1;
}

.hero-home__title * {
	font-weight: 400;
	font-size: 60px;
	line-height: 68px;
	letter-spacing: -0.01em;
}

{# Sections #}
.hero-home__sections-wrapper {
	display: flex;
	padding-left: 69px;
	position: relative;
}

.hero-home__sections-wrapper > .hero-home__circle:not(:first-child) {
	margin-left: -15px
}

.hero-home__circle {
	position: relative;
}

.hero-home__circle:hover {
	z-index: 3;
}

.hero-home__section {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	bottom: -12px;
	z-index: 2;
	width: 250px;
}

.hero-home__section:hover {
	z-index: 1;
}
.hero-home__section:before {
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	border: 1px solid #E6E6E6;
	border-radius: 50%;
	content: "";
	width: 100%;
	pointer-events: none;
	position: absolute;
	z-index: -1;
	padding-bottom: 100%;
}

.hero-home__section:hover:before {
	background-color: #83bb26;
	border: 1px solid #fff;
}

.hero-home__section a {
	position: absolute;
	width: 100%;
	padding-bottom: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.hero-home__section p {
	margin: 0;
	font-weight: 700;
	font-size: 24px;
	line-height: 30px;
	color: #1D211F;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
	justify-content: center;
	min-height: 96px;
}

.hero-home__section:hover p {
	color: #fff;
}

.arrow-right__section__wraper {
	background: #83BB26;
	border-radius: 100px;
	padding: 4px 12px;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
}

.hero-home__section:hover .arrow-right__section__wraper {
	background: #fff;
}

.arrow-right__section {
	position: relative;
}

.hero-home__bg {
	width: 258px;
	position: absolute;
	bottom: -12px;
	left: -4px;
	height: 100%;
}

.hero-home__bg:after {
	border: 1px solid #fff;
	content: "";
	position: absolute;
	width: 100%;
	border-radius: 50%;
	pointer-events: none;
	padding-bottom: 100%;
	background: white;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}


@media (max-width: 891px) {

	.hero-home {
		align-items: center;
		align-content: center;
		padding-top: 48px;
	}

	.hero-home__title {
		padding: 0 20px;
	}

	.hero-home__title * {
		text-align: center;
		font-size: 35px;
		line-height: 43px;
	}

	.hero-home__sections-wrapper {
		padding-left: 0px;
	}

	.hero-home__section {
		width: 135px;
	}

	.hero-home__section p {
		font-size: 12px;
		line-height: 20px;
		min-height: 58px;
	}

	.hero-home__bg {
		width: 140px;
		left: -3px;
	}
}