/*----- VARIABLES - Open -----*/
:root {
	--color-primary: #2192e8;
	--color-secondary: #f15a24;

	--color-dark: #0d3354;
	--color-darker: #09233a;
	--color-light: #edf5fb;

	--color-black: #000000;
	--color-white: #ffffff;

	--color-text: #333333;
	--color-heading: #121f28;

	--primary-font-family: 'Poppins', sans-serif;
	--secondary-font-family: 'darkmode-off', sans-serif;
}
/*----- VARIABLES - Close -----*/

/*----- SETUP - Open -----*/
body {
	color: var(--color-text);
	cursor: default;
	font-family: var(--primary-font-family);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--aero-heading);
	font-family: var(--primary-font-family);
	font-weight: 700;
	font-style: normal;
	line-height: 1.3;
	margin-bottom: 1rem;
}

/*----- SETUP - Close -----*/

/*----- PAGE HEADER - Open -----*/
#aero-10 .page-header {
	background-color: var(--color-dark);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 300px;
}
#aero-10 .page-header-container {
	position: relative;
	z-index: 2;
}
#aero-10 .page-header__cover-image--img,
#aero-10 .page-header__cover-image {
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	max-width: none !important;
	top: 0;
	width: 100%;
}
#aero-10 .page-header__cover-image--img {
	object-fit: cover;
	object-position: 50% 50%;
}

/* TITLE */
#aero-10 .page-title-container {
	padding: 1rem 0;
	position: relative;
}
#aero-10 .page-title-container .container {
	z-index: 2;
	position: relative;
}
#aero-10 .page-header h1.page-title {
	color: var(--color-white);
	margin-bottom: 0 !important;
}
#aero-10 .page-title-container::before {
	background: var(--color-dark);
	content: '';
	display: block;
	height: 100%;
	left: 0;
	opacity: 0.4;
	position: absolute;
	top: 0;
	width: 100%;
}

/* BREADCRUMBS */
#aero-10 .breadcrumb-container {
	margin-bottom: 0;
	padding: 0.5rem 0;
	position: relative;
}
#aero-10 .breadcrumb-container .container {
	z-index: 2;
	position: relative;
}
#aero-10 .breadcrumb-container .breadcrumb {
	background: none;
	border-radius: 0;
	color: var(--color-white);
	list-style: none;
	margin-bottom: 0;
	padding: 0;
}
#aero-10 .breadcrumb-container::before {
	background: var(--color-dark);
	content: '';
	display: block;
	height: 100%;
	opacity: 0.9;
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
}
/*----- PAGE HEADER - Close -----*/

/*----- CONTENT - Open -----*/
#presentation-region {
	background-color: var(--color-light);
}
.homepage #presentation-region {
	background-color: var(--color-dark);
	min-height: 80vh;
}
/*----- CONTENT - Close -----*/

/*----- FOOTER - Open -----*/
.footer {
	background-color: var(--color-light);
}
/*----- FOOTER - Close -----*/

/*----- TRANSITION - Open -----*/
#edit-cancel,
input[type='submit'],
a {
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}
/*----- TRANSITION - Close -----*/
