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

@media(max-width: 767px) {
	span.header_title h1{
		font-size:medium!important;
		text-transform:uppercase;
	}
	span.header_title h2{
		font-size:xx-large!important;
		text-transform:uppercase;
	}
	section.header span {
		display: inline-block;
		position: relative;
		margin-top: 20px;
		margin-left: 5%;
		margin-right: 5%;
		margin-bottom: 20px;
		width: 80%;
		z-index: 1;
		font-size: large;
		font-weight: bold;
		line-height: 1;
	}
	.ast-separate-container #content .ast-container{
		padding:0px!important;
	}
	.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;
	}
	/**
	* Under Header
	**/
	section.under_header {
		display: flex;
		flex-direction: column-reverse;
		width: 100%;
		margin: 0 !important;
		background-color: var(--color-bg-grey);
		padding: 0;
	}
	section.under_header img {
		width: 100%;
		height: auto;
		object-fit: cover;
		display: inline-block;
	}
	section.under_header span {
		width: 90%;
		background-color: var(--color-bg-grey);
		display: inline-block;
		padding: 20px 5%;
		line-height: 1.3;
	}
	section.under_under_header .text_under_section_under_header{
		line-height:1.3;
		margin-top: 40px;
		position: relative;
		display: inline-block;
	}
	
	section {
		margin-bottom: 40px;
	}
	
	span.text_under_header p,
	section.main_text p,
	span.presentation_text{
		line-height:1.3;
	}
	section.main_text{
		margin-top:20px;
	}
	
	/**
	* Presentation
	**/
	section.presentation .presentation_text {
		display: block;
	}
	section.presentation a {
		margin-top: 20px;
		display: inline-block;
		position: relative;
		background-color: var(--color-blue);
		color: white;
		padding: 20px 80px;
		font-weight: bolder;
		text-align:center;
		line-height:1;
	}
	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;
	}
}