/**
 * Hero Section
 */

.hero {
	padding: 5rem 0;
}

.hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero__actions .btn {
	min-width: 160px;
}

.hero__media {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.hero__media .amed-image {
	border-radius: 0.75rem;
	overflow: hidden;
}

.hero__image {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

/* ===========================
   Hero Section Header
=========================== */

.hero .section-header {
	margin-bottom: 2rem;
}

.hero .section-header--start .section-description {
	max-width: none;
}

/* ===========================
   Tablet
=========================== */

@media (max-width: 991.98px) {

	.hero {
		padding: 4rem 0;
	}

	.hero__content {
		align-items: stretch;
		margin-bottom: 3rem;
	}

	.hero__actions {
		justify-content: center;
	}

}

/* ===========================
   Mobile
=========================== */

@media (max-width: 575.98px) {

	.hero {
		padding: 3rem 0;
	}

	.hero__content {
		align-items: stretch;
	}

	.hero__actions {
		flex-direction: column;
		width: 100%;
	}

	.hero__actions .btn {
		width: 100%;
	}

}