/**
 * About Section
 * -------------------------------------
 * Home About component styles.
 */

.about {
	padding: 5rem 0;
}

.about .row {
	margin-right: 0;
	margin-left: 0;
}

.about__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
}

.about__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.about__actions .btn {
	min-width: 160px;
}

.about__media {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.about__media .amed-image {
	border-radius: 1rem;
	overflow: hidden;
}

.about__image {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

/* ===========================
   About Section Header
=========================== */

.about .section-header {
	margin-bottom: 2rem;
}

.about .section-header--start .section-description {
	max-width: none;
	color: #495057;
}

/* ===========================
   Tablet
=========================== */

@media (max-width: 991.98px) {

	.about {
		padding: 4rem 0;
	}

	.about__content {
		align-items: stretch;
		margin-bottom: 3rem;
	}

	.about__actions {
		justify-content: center;
	}

}

/* ===========================
   Mobile
=========================== */

@media (max-width: 575.98px) {

	.about {
		padding: 3rem 0;
	}

	.about__content {
		align-items: stretch;
	}

	.about__actions {
		flex-direction: column;
		width: 100%;
	}

	.about__actions .btn {
		width: 100%;
	}

}