/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@100;300;500&display=swap');

:root {
	--primary-color: #3a4052;
	--bgcolor1-dark: #FCE847;
	--bgcolor1-light: #FFEF74;
	--primary-bgcolor-s: #2660A4;
	--primary-bgcolor-s: #3e6fa7;
	--primary-bgcolor-t: #F25F5C;
	--primary-bgcolor-t: #ec817f;
	--primary-color-douched: #EFEFEF;
	--primary-padding: 50px;
	--small-padding: 1rem;
	--box-padding: 1.5rem 1rem;
	--border-radius: 12px;
	--grid-gap: 1rem;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size:16px;
	line-height:20px;
}
body {
	font-family: 'Exo 2', sans-serif;
	font-weight: 300;
	font-size:1rem;
	overflow-x:hidden;
	padding-top:96px;
}

a {
	text-decoration: none;
	color: var(--primary-color);
}

h1 {
	font-weight: 300;
	font-size: 2.5rem;
	line-height: 4rem;
	margin-bottom: 15px;
}

h2 {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.2;
	margin-bottom: 15px;
	text-transform: uppercase;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul li {
	padding: 1rem 0rem;
	border-top: 1px solid var(--primary-color-douched)
}

.mainPadding {
	padding: 0rem 50px;
	margin-left: auto;
	margin-right: auto;
}

section {
	padding: 5rem 0rem;
}

.flexColoumn {
	display:flex;
	align-items: center;
	justify-content: space-between;
}

.gridColoumn {
	display: grid;
	grid-template-columns: repeat(12,minmax(0,1fr));
	gap:var(--grid-gap);
}

.grid3 {
	grid-column: span 3 / span 3;
}

.grid4 {
	grid-column: span 4 / span 4;
}

.grid6 {
	grid-column: span 6 / span 6;
}

.grid8 {
	grid-column: span 8 / span 8;
}

header {
	width:100%;
	position:fixed;
	top: 0;
	left: 0;
	z-index:30;
}

footer {
	padding: 5rem 0rem;
}

.navigationPadding {
	padding: 1rem 75px;
}

.navigation {
	background:#FFF;
	border-radius: var(--border-radius);
	padding: 0.5rem 1rem;
}

main {
	width:100%;
}

.infoBoxFixedRight {
	position:absolute;
	right:25px;
	bottom:25px;
	background:rgba(0,0,0,0.2);
	color:#FFF;
	padding: var(--box-padding);
	border-radius:var(--border-radius);
	backdrop-filter:blur(16px);
	width:450px;
}

.infoBoxFixedLeft {
	position:absolute;
	left:1.5rem;
	top:160px;
	background:rgba(0,0,0,0.2);
	color:#FFF;
	padding: var(--box-padding);
	border-radius:var(--border-radius);
	backdrop-filter:blur(16px);
	width:450px;
}




/* #Media Queries
================================================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {
		
	}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {
		.imageSliderFront, #imageSliderFront { height: 432px;}
	}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {
		.gridColoumn {
			display: flex;
			flex-direction: column;
			gap:var(--grid-gap);
		}
		
	}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		.imageSliderFront, #imageSliderFront { height: 237px;}
	}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {}