/**
 * Section Header Component
 */

/* ===========================
   Desktop
=========================== */

.section-header {
	margin-bottom: 3rem;
	text-align: center;
}

.section-header--start {
	text-align: left;
}

.section-header--end {
	text-align: right;
}

.section-subtitle {
	margin-bottom: 0.5rem;
}

.section-title {
	margin: 0 0 1.5rem;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
}

.section-description {
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.125rem;
	line-height: 1.7;
}

.section-header--start .section-description {
	margin-left: 0;
	margin-right: auto;
}

.section-header--end .section-description {
	margin-left: auto;
	margin-right: 0;
}

/* ===========================
   Tablet
=========================== */

@media (max-width: 991.98px) {

	.section-title {
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}

	.section-description {
		padding: 0 0.5rem;
	}

	.section-header--start .section-description {
		padding-left: 0;
		padding-right: 0.5rem;
	}

	.section-header--end .section-description {
		padding-left: 0.5rem;
		padding-right: 0;
	}

    .section-header--start .section-title {
        text-align: center;
    }

}

/* ===========================
   Mobile
=========================== */

@media (max-width: 575.98px) {

	.section-header {
		margin-bottom: 2rem;
	}

	.section-title {
		font-size: 2rem;
		margin-bottom: 1rem;
	}

	.section-description {
		font-size: 1rem;
		padding: 0 0.5rem;
	}

	.section-header--start .section-description {
		padding-left: 0;
		padding-right: 0.5rem;
	}

	.section-header--end .section-description {
		padding-left: 0.5rem;
		padding-right: 0;
	}

    .section-header--start .section-title {
        text-align: center;
    }

}