.bg-white { background-color: #FFF; }
.bg-gray { background-color: #b0aaa4; }
.bg-lightgray { background-color: #EEEEEE; }
.bg-blue { background-color: #005587; }
.bg-red { background-color: #ff4238; }
.bg-dark { background-color: #1E2336; }

/* #00497b */



.fg-white { color: #FFF; }
.fg-gray { color: #b0aaa4; }
.fg-lightgray { color: #EEEEEE; }
.fg-blue { color: #005587; }
.fg-red { color: #ff4238; }
.fg-dark { color: #1E2336; }
/**********
 *FOOTER *
 *********/
.footer {
	position: relative;
	display: block;
	
	margin: 80px 0 0 0;
	padding: 20px 0;
	
	font-size: 14px;
	text-align: center;
}

.footer p { margin: 0 0 5px 0; }
.footer p:last-child { margin: 0; }

.footer a {
	text-decoration: none;
	color: inherit;
}
/********
 * FONT *
 ********/
@font-face {
	font-family: 'Angelina';
	src: url('/resources/font/angelina.ttf');
}

@font-face {
   font-family: 'Brandon';
   src: url('/resources/font/BrandonGrotesque-Bold.otf');
   font-weight: bold;
}

@font-face {
   font-family: 'Brandon';
   src: url('/resources/font/BrandonGrotesque-Light.otf');
   font-weight: 500;
}






/***********
 * GENERAL *
 ***********/
html, body {
	margin: 0;
	padding: 0;
}

html, body, input, select, textarea { font-family: 'Brandon'; }
.angelina { font-family: 'Angelina' }


.container {
	position: relative;
	display: block;
	width: 1200px;
	max-width: 100%;

	margin: 0 auto;
	padding: 0 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
















/**********
 * HEADER *
 **********/
.header {
	position: relative;
	height: 300px;
	
	background-image: url('/resources/img/pages/header/header-bandeau.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.header.sav { background-image: url('/resources/img/pages/header/header-apres-vente.jpg'); }
.header.occasion { background-image: url('/resources/img/pages/header/header-occasion.jpg'); }

.header .overlay {
	position: absolute;
	top: 0;
	left: 0;
	
	display: block;
	width: 100%;
	height: 100%;
	
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 10;
}

.header .container {
	position: relative;
	top: 50%;
	
	text-align: right;
	
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 40;
}

.header h1 {
	display: block;
	margin: 0;
	font-size: 60px;
	font-weight: 700;
}

.header h2 {
	display: block;
	margin: -15px 0 40px 0;
	font-size: 40px;
	font-weight: 500;
}















/***********
 * BANDEAU *
 ***********/
.bandeau {
	position: relative;
	padding: 20px 0;
	
	text-align: center;
	
	font-size: 42px;
	font-weight: 700;
	text-align: center;
}

.bandeau .container { width: 800px; }


























/*********************************
 * POPUP CONFIRMATION FORMULAIRE *
 * *******************************/
.overlay-popup {
	position: fixed;
	top: 0;
	left: 0;
	
	display: block;
	width: 100%;
	height: 100%;
	
	background-color: rgba(51, 51, 51, 0.9);
	z-index: 650;
}

.popup-confirmation {
	position: fixed;
	top: 50%;
	left: 50%;
	
	display: block;
	
	text-align: center;
	font-size: 24px;
	
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	
	z-index: 650;
}

.popup-confirmation p {
	margin: 20px 0 0 0;
	text-decoration: underline;
	cursor: pointer;
}



























/* Responsive
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width: 710px) {
	.bandeau { font-size: 24px; }
}

@media (max-width: 650px) {
	.header {
		height: auto;
		padding: 60px 0;
	}
	
	.header .container {
		position: relative;
		top: 0;
		-webkit-transform: none;
		transform: none;
	}
	
	.header h1 { font-size: 36px; }
	.header h2 { font-size: 28px; }
}

@media (max-width: 310px) {
	.header h1 { font-size: 30px; }
}
.menu {
	position: fixed;
	top: 0;
	left: 0;

	display: block;
	width: 100%;
	height: 62px;

	line-height: 50px;
	z-index: 99;
	
	border-top: 12px solid #1E2336;
	box-sizing: border-box;
	
	box-shadow: inset 0 5px 8px -3px rgba(0, 0, 0, 0.2);
}

.site { padding-top: 62px; }

.menu .navbar {
	position: relative;
	text-align: center;
}

.menu .navbar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
}

.menu .navbar ul li {
	display: inline-block;
	vertical-align: top;

	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	
	-webkit-transition: background-color ease 0.2s;
	transition: background-color ease 0.2s;
}

.menu .navbar ul li:last-child { margin: 0; }

.menu .navbar ul li a {
	display: block;
	padding: 0 20px;
	
	text-decoration: none;
	font-size: 20px;
	color: inherit;
	
	-webkit-transition: color ease 0.2s;
	transition: color ease 0.2s;
}

.menu .navbar ul li:hover,
.menu .navbar ul li.active {
	background-color: #b0aaa4;
	color: #FFF;
}

.logo-menu {
	max-height: 50px;
}










/* Responsive
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width: 790px) {
	.menu .navbar {
		position: absolute;
		width: 100%;
		height: 0;
		top: 50px;
		right: 0;
		z-index: 99;
	}

	.menu .navbar.open { height: calc(100vh - 62px); }

	.menu .navbar:before {
		content: '\2261';
		position: absolute;
		display: block;
		top: -45px;
		right: 20px;
		font-size: 50px;
		line-height: 40px;
		cursor: pointer;
		color: #1E2336;
	}

	.menu .navbar ul {
		background: #FFF;
		width: 100%;
	}

	.menu .navbar ul li {
		display: block;

		height: calc((100vh - 62px) / 5);
		line-height: calc((100vh - 62px) / 5);

		margin: 0;
		padding: 0;
	}

	.menu .navbar ul li a {
		line-height: calc((100vh - 62px) / 5);

		width: 100%;
		height: auto;

		padding: 0 0 0 20px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;

		border-top: 1px solid #333;
	}

	.menu .navbar ul li.tel a {
		width: 100%;
		height: 100%;
		padding: 0 0 0 20px;
		font-size: 16px;
		border-radius: 0;
		line-height: calc((100vh - 100px) / 5);
	}

	.menu .navbar ul {
		transition: 350ms;
		-moz-transition: 350ms;
		-webkit-transition: 350ms;
		transform:  translateY(-100vh);
		-moz-transform:  translateY(-100vh);
		-webkit-transform: perspective(600) rotate3d(1, 0, 0, -90deg);
		transform-origin: 50% 0;
		-moz-transform-origin: 50% 0;
		-webkit-transform-origin: 50% 0;
	}

	.menu .navbar.open ul {
		transform: translateY(0px);
		-moz-transform: translateY(0px);
		-webkit-transform: perspective(600) rotate3d(0, 0, 0, 0);
	}
	.logo-menu {
		display: none;
	}
}
.slider {
	position: relative;
	width: 100%;
	height: 400px;
}

.slider .slide {
	position: absolute;
	display: none;
	width: 100%;
	height: 100%;
	
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 100% auto;
}

.slider > .arrow-left,
.slider > .arrow-right {
	position: absolute;
	top: calc(50% - 20px);
	
	width: 22px;
	height: 40px;
	
	background-repeat: no-repeat;
	background-size: 100% auto;
	
	cursor: pointer;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
	z-index: 20;
}

.slider > .arrow-left {
	left: 20px;
	background-image: url('/resources/img/pages/home/slider/arrow-left.png');
}

.slider > .arrow-right {
	right: 20px;
	background-image: url('/resources/img/pages/home/slider/arrow-right.png');
}

.slider > .indicateurs {
	display: none;
}

.overlay-popup-slide .slider > .arrow-left,
.overlay-popup-slide .slider > .arrow-right {
	top: 110%;
	z-index: 621;
} 
