: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;
		top: 120px;
	}
	
	/**
	* 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;
	}
	
	/**
	 * Breadcrumb
	 **/
	section.breadcrumb h1 {
		text-transform: uppercase;
		font-size: medium;
	}
	
	section.breadcrumb h2 {
		text-transform: uppercase;
		font-size: xx-large;
	}

	section.breadcrumb p {
		margin-bottom: 0px;
	}
	
	/**
	* Content
	***/
	section.content {
		position: relative;
		background-color: var(--color-bg-grey);
    	padding-top: 40px;
	    padding-bottom: 40px;
	}
	section.content img {
		width: calc(100% - 150px);
		margin: auto;
		display: block;
	}
	section.content .background_placeholder {
		width: 100%;
		height: 30vw;
		max-height: 600px;
		background: var(--color-bg-grey);
		display: inline-block;
		position: absolute;
		top: -40px;
		z-index: -1;
	}

	section.content span p {
		margin-bottom: 0px;
	}
	
	section.content p {
		font-weight:normal;
		font-size: large;
		line-height: 1.3;
	}
}