/*!? ----------------------- ?!*/
/*!? CAUTION!!!              ?!*/
/*!? Avoid editing this file ?!*/
/*!? ----------------------- ?!*/

/*----- SETUP - Open -----*/
body {
	color: var(--aero-text);
	cursor: default;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
}
#page .no-display {
	display: none !important;
}

#aero-10 {
	overflow-x: hidden;
}

#page .force-full-width {
	left: 50% !important;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
	max-width: none !important;
	position: relative !important;
	right: 50% !important;
	width: 100vw !important;
}

#page .container .container {
	padding-left: 0;
	padding-right: 0;
}
/*----- SETUP - Close -----*/

/*----- COLUMNS GRID - Open -----*/
.columns-grid {
	display: grid;
	grid-gap: 2rem;
	margin: 1rem 0;
	padding: 0;
	width: 100%;
}

.columns-grid-50-50 {
	grid-template-columns: repeat(2, calc(50% - 1rem));
}
.columns-grid-25-75 {
	grid-template-columns: calc(25% - 1rem) calc(75% - 1rem);
}
.columns-grid-75-25 {
	grid-template-columns: calc(75% - 1rem) calc(25% - 1rem);
}
.columns-grid-33-67 {
	grid-template-columns: calc(33% - 1rem) calc(67% - 1rem);
}
.columns-grid-67-33 {
	grid-template-columns: calc(67% - 1rem) calc(33% - 1rem);
}
.columns-grid-25-50-25 {
	grid-template-columns: calc(25% - 1rem) calc(50% - 2rem) calc(25% - 1rem);
}
.columns-grid-33-33-33 {
	grid-template-columns: repeat(3, calc(33.333333% - 1.333333rem));
}
.columns-grid-25-25-25-25 {
	grid-template-columns: repeat(4, calc(25% - 1.5rem));
}
.columns-grid-20-20-20-20-20 {
	grid-template-columns: repeat(5, calc(20% - 1.6rem));
}
/*- RESPONSIVE -*/
@media screen and (max-width: 767px) {
	.columns-grid {
		grid-gap: 0;
		grid-template-columns: 100%;
	}
}
/*----- COLUMNS GRID - Close -----*/

/***** REFERENCIES *****/

/*----- FIXED HEADER - Open -----*
#header {
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}
#header .header-inner {
	left: 0;
	position: absolute;
	top: 0;
	transform: translateY(0);
	transition: all 350ms ease-in-out;
	width: 100%;
}
#header .header-inner.header-hidden {
	transform: translateY(-100%);
}
/*----- FIXED HEADER - Close -----*/
