:root {
  	--color-bg-grey: #e8e8e8;
  	--color-bg-dark-grey: #c7c5c5;
	--color-blue: #0194de;
	--color-blue-light: #57b8e9;
}
@media(max-width: 766px) {
	section.breadcrumb h1{
		font-size:medium!important;
		text-transform:uppercase;
	}
	section.breadcrumb h2{
		font-size:xx-large!important;
		text-transform:uppercase;
	}
	.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: 100%;
		margin-left: auto;
		margin-right: auto;
		padding-left: 20px;
		padding-right: 20px;
	}
	section {
		margin-bottom: 10px;
	}
	
	/**
	 * 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;
	}
	
	section.content {
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 40px;
		padding-bottom: 20px;
		background-color: var(--color-bg-grey);
	}
	
	/**
	* Video
	**/
	section.video {
		text-align: center;
	}
	
	/**
	 * External Link
	 **/ 
	section.external_link 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.external_link a:hover {
		background-color: var(--color-bg-dark-grey);
	}
}