:root {
  --color-bg-grey: #e8e8e8;
  --color-bg-dark-grey: #c7c5c5;
  --color-blue: #0194de;
}

@media(min-width: 767px) {
	.ast-separate-container {
		background-color: white;
	}
	/**
	* Header should cover the whole width, so we override the default margins & paddings
	***/
	.ast-container, #primary {
		max-width: 100% !important;
		width: 100% !important;
		margin: 0px !important;
		padding: 0px !important;
	}
	
	/**
	* Some sections should be contained so we apply the css of the default container!
	**/
	.contained {
		max-width: 1240px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 20px;
		padding-right: 20px;
	}
	
	section {
		margin-bottom: 80px;
	}
	
	/**
	* Header
	***/
	section.header img {
		width: 66vw;
	}
	
	section.header span {
		display: inline-block;
		position: absolute;
		top: 10vw;
		left: calc(66vw + 20px);
		z-index: 1;
		font-size: large;
		font-weight: bold;
		line-height: 1.5;
	}

	section.header span h1 {
		font-size: medium;
	}
	section.header span h2 {
		font-size: xx-large;
	}
	
	section.header span p {
		margin-bottom: 0px;
	}
	
	/**
	* Under Header
	**/
	section.under_header {
		display: flex;
    	flex-direction: row-reverse;
	}
	section.under_header img {
		width: 40%;
		height: auto;
		object-fit: cover;
		display: inline-block;
		max-height:500px;
	}
	section.under_header span {
		width: 60%;
		background-color: var(--color-bg-grey);
		display: inline-block;
		padding: 80px;
		margin-top: 40px;
		margin-bottom: 40px;
		line-height: 1.3;
	}
	
	/**
	* Main Text
	**/
	section.main_text {
		line-height: 1.3;
	}
	
	/**
	* Presentation
	**/
	section.presentation .presentation_text {
		display: block;
	}
	section.presentation a {
		margin-top: 20px;
		display: inline-block;
		position: relative;
		width: 25%;
		background-color: var(--color-blue);
		color: white;
		min-width: 350px;
		padding: 20px 80px;
		font-weight: bolder;
		text-align:center;
	}
	section.presentation a:hover {
		background-color: var(--color-bg-dark-grey);
	}
	section.presentation ul {
		list-style: none;
		display: contents;
		justify-content: space-between;
    	flex-wrap: wrap;
	}
	section.presentation ul li {
		flex: 1;
	}
}