.hero {
	background: #fff;
	position: relative;
}

.hero__item {
	padding-top:4rem;
	padding-bottom:2rem;
}

.hero__title {
	font-size: 46px;
	line-height: 1.22;
	font-weight: 700;
	background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__text {
	margin: 0 0 22px;
	font-size: 20px;
	line-height: 1.55;
	color: var(--fresh-muted);
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	justify-content:left;
}



.hero__btn--primary {
	background: linear-gradient(90deg, var(--fresh-pink) 0%, var(--fresh-blue) 100%);
	color: #fff;
	border: none;
}

.hero__more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: rgba(11, 22, 48, .85);
	font-weight: 600;
}

.hero__more:hover {
	color: rgba(11, 22, 48, 1);
}

.hero__more-icon {
	width: 22px;
	height: auto;
}

.hero__visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero__visual-img {
	max-width: 100%;
	height: auto;
	/*filter: drop-shadow(0 10px 24px rgba(15, 23, 42, .18));*/
}

.hero .carousel-indicators button{
	width: 17px;
	height: 17px;
	border-radius: 50%;
	margin-left: 1rem;
	margin-right: 1rem;
	border:1px solid #fff;
	background-color: unset;
}

.hero .carousel-indicators button.active{
	background-color: #fff;
}

.hero__content{
	display: flex;
	text-align:left;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 1rem;
	padding-bottom: 1rem;
}
@media (max-width: 767.98px) {
	.hero__content{
		text-align:center;
		margin-bottom:3rem;
	}
	.hero__actions{
		justify-content: center;
		flex-direction: column;
	}
	.hero__actions>a{
		width:100%;
	}
}
