@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Chivo:300,400,500,600,700,900);
@import url(https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700,900);

* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	list-style: none;
	font-size: 17px;
	font-weight: 300;
	text-decoration: none;
	font-family: 'Hind', sans-serif;
}

body {
	background-repeat: no-repeat;
	overflow-x: hidden;
	line-height: 1.5;
}

/*h1 {
	font-size: 30px;
	font-weight: 300;
	font-family: 'Fira Sans', sans-serif;
	color: #FF7207;
	margin-bottom: 30px;
	text-align: left !important;
}

h2 {
	font-size: 24px;
	font-weight: 300;
	font-family: 'Fira Sans', sans-serif;
	color: #0000FE;
	margin: 20px 0 15px;
	text-align: left !important;
}

h3 {
	font-size: 18px;
	font-weight: 300;
	font-family: 'Fira Sans', sans-serif;
	text-align: left !important;
	margin-bottom: 10px;
}*/

.wrapper {
	width: 1140px;
	height: 100%;
	margin: 0 auto;	
}

h1,
h2,
h3 {
	line-height: 1.2;
}

h1 {
	color: #252525;
	font-size: 30px;
	font-weight: 100;
	margin-bottom: 10px;
}

h2 {
	color: #1c3d8f;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 10px;
}

p,
li {
	color: #666;
}

p,
ul {
	margin-bottom: 18px;
}

strong {
	font-weight: 500;
}

img {
	max-width: 100%;
}

/*a {
	color: #FF9D53;
	font-weight: 300;
}

a:hover {
	text-decoration: underline;
}*/







/* -------------- TOP -------------- */

header {
	position: relative;
	z-index: 999 !important;
}

header .top {
	background: #7a8ea7;
	overflow: hidden;
	position: relative;
	padding: 8px 0;
	box-sizing: border-box;
	transition: .3s;
}

header .top.invisible {
	padding: 0;
	height: 0;
}

header .coordonnees {
	float: right;
}

header .top ul {
	margin-bottom: 0;
}

header .top li {
	display: inline-block;
	margin-left: 20px;
}

header .top a {
	color: white;
	font-weight: 600;
	font-size: 15px;
}

header .top span {
	font-weight: 500;
	font-size: 15px;
	color: #20344D !important;
	padding: 2px 18px;
	margin-left: 20px;
	background: #fff; /* rgb(255, 228, 178) */
}

header .top .tel a::before {
	content: "\f095";
	font-family: 'FontAwesome';
	font-size: 15px;
	margin-right: 4px;
	color: white;
}

header .top .email a::before {
	content: "\f0e0";
	font-family: 'FontAwesome';
	font-size: 15px;
	margin-right: 4px;
	color: white;
}






/* -------------- BOTTOM -------------- */

header.cookhere.stick {
	top: 0;
	z-index: 999;
}

header.stick {
	position: fixed;
	z-index: 999;
	width: 100%;
}

header .bottom {
	background: #f2f2ee !important;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.10);
	z-index: 99999;
	height: 80px;
	width: 100%;
	transition: .3s;
}

header .bottom.dark {
	box-shadow: 1px 0px 4px #666;
}

header .bottom .wrapper {
	position: relative;
}

.logo,
.mainmenu {
	display: inline-block;
	vertical-align: top
}


/* Logo */

.logo {
	position: relative;
	z-index: 99;
}

.logo a {
	position: absolute;
 	display: inline-flex;
	align-items: center;
	background: #f2f2ee;
	height: 150px;
	width: 150px;
	border-radius: 50%;
	padding: 15px;
	box-sizing: border-box;
	margin-top: -40px;
	transition: .3s;
}

.logo.mini a {
	height: 110px;
	width: 110px;
	margin-top: 0px;
	transition: .3s;
}


/* Menu */

.mainmenu {
	height: 80px;
	position: absolute;
	right: 0;
}

.menu,
.mod-languages {
	display: inline-block;
	vertical-align: top;
}

.mainmenu > ul {
	font-size: 0;
	margin-bottom: 0;
}

.mainmenu > ul > li {
	display: inline-block;
	position: relative;
	margin-bottom: 0;
}

.mainmenu a {
	color: #888;
	padding: 0 15px;
	font-weight: 600;
	transition: .3s;
}

.mainmenu > ul > .parent > a::after {
	content: "\f107";
	font-family: 'FontAwesome';
	font-size: 16px;
	line-height: 14px;
	margin-left: 10px;
	color: #888;
	transition: .3s;
}

.mainmenu > ul > li > a {
	display: block;
	line-height: 80px;
	padding: 0 15px;
	margin: 0;
}

.mainmenu .current a {
	background: #eae9df;
	color: #1c3d8f;
}

.mainmenu li:hover a {
	background: #eae9df;
	color: #1c3d8f;
}

.mainmenu > ul > .parent:hover > a::after {
	color: #1c3d8f;
}


/* Sous menu */
.mainmenu ul ul {
	display: block;
	visibility: hidden;
	position: absolute;
    background: rgba(30, 64, 141, 0.95);
    padding: 10px 0;
    opacity: 0;
    top: 90px;
	left: 0;
	width: 280px;
	margin-bottom: 0;
	transition: .3s;
}

.mainmenu ul li:hover > ul {
	visibility: visible;
	opacity: 1;
	top: 80px;
	z-index: 4;
}

.mainmenu ul ul li {
	margin-bottom: 0;
}

.mainmenu ul ul a {
    padding: 10px 20px !important;
    background: transparent !important;
    margin-bottom: 0;
    display: block;
    color: white !important;
    transition: .3s;
}

.mainmenu ul ul a:hover {
    background: rgba(84, 184, 224, .5) !important;
}

#togglenav,
#respnav {
	display: none;
}



/* Langues */

.mod-languages {
	padding: 0 0 0 15px;
}

.mod-languages li {
	display: inline-block;
	vertical-align: top;
}

.mod-languages li:hover a {
	background: transparent;
}

.mod-languages li:first-child {
	margin-right: 15px;
}

.mod-languages a {
	line-height: 80px;
	padding: 0;
	margin: 0;
}















/* ---------- RÉSERVATION ---------- */

#reservation {
	position: relative;
	background: url(/images/background-parking.jpg) no-repeat, center center;
	background-attachment: fixed;
	background-size: cover;
	padding: 160px 0 50px;
}

#reservation.fat {
	padding: 220px 0 50px;
}

#reservation::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(30, 64, 141, 0.2);
    position: absolute;
}

.title,
.reservation {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
	width: calc((100% - 50px) / 2);
	position: relative;
}


/* Title */
.title {
	position: relative;
	margin-right: 50px;
}

.title h1 {
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	line-height: 50px;
	text-transform: uppercase;
	padding-bottom: 30px;
}

.title hr {
	margin: 0 0 30px !important;
	border: none !important;
	position: relative;
}

.title hr::before {
	content: "";
	border-bottom: solid 1.5px #f4ba36;
	display: block;
	width: 0%;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 65%;
	animation : 8s linear 0s normal none 1 slidingborder;
	transition: .5s;
}

@keyframes slidingborder {
  0%{
       width: 0%;
    }
  100%{
       width: calc(65% + 5px);
    }
}

.title hr::after {
	content: "\f072";
	font-family: 'FontAwesome';
	transform: rotate(45deg);
	color: #f4ba36;
	font-size: 24px;
	line-height: 24px;
	position: absolute;
	bottom: -13px;
	display: table;
  	left: 70%;
  	animation : 8s linear 0s normal none 1 slidingplane;
	transition: .3s;
}

@keyframes slidingplane {
  0%{
    	left: 5px;
    }
  100%{
    	left: calc(70% + 5px);
    }
}

.title p {
	color: white;
}

/* @group Blink */
.title #blinker {
	font-weight: 500;
	font-size: 15px;
	color: #20344D !important;
	padding: 2px 18px;
	background: #fff;
	display: table;
	margin-top: 30px
	-webkit-animation: blink 2s linear infinite;
	-moz-animation: blink 2s linear infinite;
	-ms-animation: blink 2s linear infinite;
	-o-animation: blink 2s linear infinite;
	 animation: blink 2s linear infinite;
}

/*@-webkit-keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 1; }
	50.01% { opacity: 0; }
	100% { opacity: 0; }
}

@-moz-keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 1; }
	50.01% { opacity: 0; }
	100% { opacity: 0; }
}

@-ms-keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 1; }
	50.01% { opacity: 0; }
	100% { opacity: 0; }
}

@-o-keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 1; }
	50.01% { opacity: 0; }
	100% { opacity: 0; }
}

@keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 1; }
	50.01% { opacity: 0; }
	100% { opacity: 0; }
}
*/
/* @end */


/* Réservation */
.reservation p {
	margin-bottom: 0;
}

.reservation iframe {
	height: 582px !important;
}















/* ---------- PROCESSUS ---------- */

#processus {
	padding: 70px 0 30px;
}

.etapes,
#processus .options {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
}


/* Étapes */
.etapes {
	margin-right: 50px;
	width: 70%;
}

.etapes li {
	position: relative;
	margin-bottom: 0;
}

.etapes li::before {
	content: "";
	position: absolute;
	border-left: dotted 3.5px #5db9de;
	display: block;
	bottom: 0;
	left: 22px;
	height: 100%;
	width: 120%;
	z-index: -1;
}

/*.etapes li:last-child::before {
	border-bottom: dotted 3.5px #5db9de;
	border-radius: 14px;
}*/

.etapes h2 {
	color: #1c3d8f;
	font-weight: 600;
	font-size: 22Px;
	margin-bottom: 30px;
}

.etapes span {
	width: 48px;
	height: 48px;
	line-height: 48px;
	background: linear-gradient(to right top, #e11525, #edb82e);
	color: #FFFFFF;
	border-radius: 48px;
	margin-right: 15px;
	position: absolute;
	text-align: center;
	font-weight: 600;
}

.etapes h3 {
	color: #666;
	font-family: 'Arial', sans-serif;
	padding-left: 63px;
	font-size: 18px;
	font-weight: 400;
}

.etapes p {
	color: #666;
	padding-left: 63px;
	margin-bottom: 0;
}

.etapes li:not(:last-child) p {
	padding-bottom: 30px;
}


/* Options */
#processus .options {
	/*padding: 30px 40px 22px;*/
	/*background-color: #5db9de;*/
	border-radius: 10px;
	width: calc(30% - 50px);
}

#processus .options h2 {
	color: #fff;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 20px;
}

#processus .options img {
	max-width: 400px;
	width: 100%;
	height: auto;
}

#processus .options ul {
	float: left;
	width: 50%;
}

#processus .options li {
	font-size: 0;
	margin-bottom: 0;
}

#processus .options ul p {
	color: white;
	box-shadow: 0 0 0 0 #ffffff;
	margin: 0px 0px 8px 0px;
	padding: 0px 0px 8px 0px;
	border-bottom: solid 1.5px #4aa6cb;
	width: calc(100% - 63px);
	font-weight: 400;
}

#processus .options ul p,
#processus .options li::before {
	display: inline-block;
	vertical-align: top;
}

#processus .options li::before {
	content: "";
	width: 30px;
	height: 33px;
	background-size: contain !important;
	margin-right: 30px;
}

.options li:nth-child(1)::before {
	background: url(../images/car-wash.png) no-repeat, center center;
}

.options li:nth-child(2)::before {
	background: url(../images/parking.png) no-repeat, center center;
}

.options li:nth-child(3)::before {
	background: url(../images/mecanics.png) no-repeat, center center;
}

.options li:nth-child(4)::before {
	background: url(../images/pressure.png) no-repeat, center center;
}

.options li:nth-child(5)::before {
	background: url(../images/fuel.png) no-repeat, center center;
}

#processus .options a {
	float: right;
	clear: both;
	display: inline-block;
	border-radius: 4px;
	background: #f5a431;
	color: #fff;
	font-weight: 600;
	padding: 10px 20px;
	margin-top: 11px;
	transition: .3s;
	-webkit-appearance : none;
}

#processus .options a:hover {
	background-color: #e33327;
}


/*#text {
    padding: 50px 0 30px;
    margin: 0;
    position: relative;
    background-image: linear-gradient(45deg, #5D6F0F 0%, #758727 100%);
}

#text::before {
    position: absolute;
    left: 4%;
    top: 50px;
    width: 320px;
    height: 100%;
    max-height: 100%;
    opacity: .25;
    content: "";
    background: url(../images/livres.png) no-repeat, center center;
    background-size: contain;
}

#text h1 {
	font-weight: 600;
	position: relative;
	text-align: center;
	margin-bottom: 25px;
	font-size: 30px;
	color: white;
}

#text h1 span {
    font-size: 0;
    background: url(../images/tirebouchon.png) no-repeat, center center;
    vertical-align: top;
    width: 40px;
    height: 60px;
    background-size: contain;
    display: inline-block;
    margin-top: -8px;
    margin-right: -10px;
}

#text p,
#text strong{
	font-size: 18px;
	text-align: center;
	color: white;
}

#text p:last-of-type {
	margin-bottom: 0;
}*/



/* Flèche */
/*.fleche {
	padding: 30px 0 0;
	text-align: center;
	position: relative;
	height: 60px;
}

.fleche a {
	position: absolute;
	left: calc(50% - 27px);
	top: 33px;
	height: 54px;
	width: 54px;
	border-radius: 54px;
    display: table;
	margin: auto;
	transition: .3s;
}

.fleche a:hover {
	left: calc(50% - 30px);
	top: 30px;
	height: 60px;
	width: 60px;
}

.fleche a::before {
	content: "\f078";
	font-family: 'FontAwesome';
	font-size: 18px;
	line-height: 54px;
	transition: .3s;
}

.fleche a:hover:before {
	line-height: 60px;
	font-size: 22px;
}

#text .fleche a {
    color: #fff;
    background-color: #839149;
}

#text .fleche a::before {
	color: white;
}*/











/* ---------- TXT ---------- */

#pages .txt {
	padding: 60px 0 44px;
}

.txt h3 {
	font-size: 19px;
	margin-bottom: 10px;
	font-weight: 600;
	color: #444;
}

.txt a {
	color: #1c3d8f;
	font-weight: 400;
	display: inline-block;
	border-bottom: solid 1px transparent;
	line-height: 17px;
	-webkit-appearance : none;
	transition: .3s;
}

.txt a:hover {
	border-bottom: solid 1px #1c3d8f;
}


.txt li {
	position: relative;
	padding-left: 20px;
}

.txt li::before {
	content: "";
	background: #f5a431;
	height: 8px;
	width: 8px;
	border-radius: 4px;
	position: absolute;
	top: 8px;
	left: 0;
}

.txt blockquote {
	padding-left: 20px;
	position: relative;
}

.txt blockquote::before {
	content: " ";
	background: #8dcee8;
	height: 100%;
	width: 4px;
	position: absolute;
	left: 0;
	top: 0;
}

.txt blockquote p {
	color: #65bce0;
	font-style: italic;
	font-weight: 400;
}










/* ---------- PAGES ---------- */

.boutons {
	font-size: 0;
	display: table;
	margin: auto;
}

.bouton {
	display: inline-block !important;
	padding: 12px 22px;
	background: #f5a431;
	font-weight: 500 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 2px;
	-webkit-appearance: none;
	transition: .3s;
}

.bouton:nth-child(2) {
	margin-left: 20px;
}

.bouton:hover {
	background: #54b8e0;
}



/* ---------- PAGE CONTACT ---------- */

.chronoforms {
	overflow: hidden;
}

#contact-form {
    display: block;
}

#contact-form h2 {
    font-weight: 500;
}

#contact-form label {
    font-size: 16px;
    color: #222;
    font-weight: 400;
}

#contact-form  .field.required {
    margin-bottom: 4px;
}

#contact-form .field input:focus,
#contact-form .field textarea:focus {
    border-color: #1c3d8f;
}

#contact-form .multifield.inline.fields {
	padding-left: .5em;
	padding-right: .5em;
	margin-top: 20px;
}

.chronoforms #envoyer {
    background: #1c3d8f !important;
    float: right;
    margin-top: 20px;
}

.chronoforms #envoyer:hover {
    background: #e33327 !important;
}

.chronoforms6_credits {
    display: none !important;
}


/* Message d'erreur */
.ui.message.error li::before {
	display: none;
}


.chronoforms .ui.green.header {
	color: #1c3d8f !important;
}



/* ---------- PAGE Pourquoi nous choisir ---------- */

.inconvenients {
	font-size: 0;
	display: flex;
	margin-top: 40px;
	/*margin-bottom: 80px;*/
	position: relative;
}

.inconvenients h3 {
	text-align: center !important;
	margin-bottom: 30px;
}

.inconvenient1,
.inconvenient2 {
	display: inline-block;
	vertical-align: top;
	width: calc((100% - 30px) / 2);
	background: #f8f8f8; /* #f8f5ea */
	padding: 50px 40px 50px;
	box-sizing: border-box;
	border-radius: 20px 20px 0 0;
}

.inconvenient1 {
	margin-right: 30px;
}

.inconvenients::before {
	content: "";
	height: calc(100% - 60px);
	width: 2px;
	background: #ffe05c;
	position: absolute;
	right: calc(50% - 1px);
	top: 20px;
	z-index: 9;
	border-radius: 2px;
}


/* Alternative */
.alternative {
	padding: 70px 80px 80px;
	background: linear-gradient(#dbeef6, #dbeef6 10%, #fff);
	border-radius: 20px 20px 0 0;
	margin-top: -20px;
	position: relative;
}

.alternative strong {
	font-weight: 600;
	color: #f5a431;
}

.alternative::before {
	content: "\f0e7";
	font-family: 'FontAwesome';
	font-size: 34px;
	line-height: 50px;
	padding: 20px 20px 20px;
	height: 100px;
	width: 100px;
	position: absolute;
	left: calc(50% - 50px);
	box-sizing: border-box;
	top: -50px;
	color: #ffe05c;
	background: #fff;
	border-radius: 50px 50px 50px 50px;
	z-index: 9;
	text-align: center;
	opacity: 1;
	border: solid 10px #dbeef6; /*#e5eae9; */
	transition: .3s;
}

.alternative:hover::before {
	animation : .3s linear 0s normal none 1 lightning;
}

@keyframes lightning {
  0%{	
  		line-height: 0px;
       font-size: 34px;
       opacity: 0;
    }
  20% {
  		opacity: 1;
  }
  50%{
       font-size: 44px;
    }
80%{
	   font-size: 44px;
	   line-height: 50px;
}
 100%{
	   font-size: 34px;
	}
}

.alternative h2 {
	margin-bottom: 20px;
}

.alternative h3 {
	text-align: center;
}

.alternative h2,
.alternative p {
	text-align: center !important;
}


/* Points forts */
.pointsforts {
	font-size: 0;
	display: flex;
	margin-bottom: 60px;
}

.pointfort1,
.pointfort2 {
	display: inline-block;
	vertical-align: top;
	width: calc((100% - 15px) / 2);
	background: #304f82;
	padding: 0 0 30px 0;
	box-sizing: border-box;
	box-shadow: 0 20px 50px -25px rgba(0,0,0,0.75);
	border-radius: 10px;
	position: relative;
}

.pointfort1 {
	margin-right: 15px;
}

.pointsforts h3 {
	text-align: center;
	color: #fff;
	background: #304f82;
	/*background: linear-gradient(#54b8e0, #54b8e0 20%, #304f82);*/
	display: block;
	margin: 0 auto;
	padding: 50px 30px 30px;
	border-radius: 10px 10px 0 0;
	text-transform: uppercase;

}

.pointsforts h3::before {
	content: "\f13a";
	font-family: 'FontAwesome';
	font-size: 40px;
	line-height: 50px;
	padding: 20px 20px 0;
	height: 50px;
	width: 100px;
	transition: .3s;
	position: absolute;
	left: calc(50% - 50px);
	box-sizing: border-box;
	top: -50px;
	/*background: #54b8e0;*/
	background: #304f82;
	border-radius: 50px 50px 0 0;
	z-index: 9;
	transition: .3s;
}

.pointsforts > div:hover h3::before {
	font-size: 50px;
	line-height: 50px;
	/*color: #f4ba36;*/
}

.pointsforts p {
	color: white;
	padding: 0 30px;
	text-align: center !important;
}

.pointsforts strong  {
	font-weight: 600;
	color: #f4ba36;
}


/* ticketaeroport */

.ticketaeroport p {
	color: #304f82;
	font-weight: 400;
	display: table;
	margin: 0 auto 18px;
}

.ticketaeroport img {
	/*border: solid 5px rgba(227, 51, 39, .5);*/
	display: table;
	margin: 0 auto 28px;
}



/* ---------- PAGE Mais qui est Parking Futé ---------- */

.entree-parking {
	float: right;
	margin-left: 30px;
	width: calc(50% - 15px);
}


/* Organisation */
.organisation {
	font-size: 0;
	display: flex;
	margin-top: 40px;
	margin-bottom: 20px;
	position: relative;
}

.organisation h3 {
	text-align: center !important;
	margin-bottom: 30px;
}

.credo,
.perspectives {
	display: inline-block;
	vertical-align: top;
	width: calc((100% - 15px) / 2);
	/*background: #dbeef6;*/
	padding: 50px 40px 20px;
	box-sizing: border-box;
	border-radius: 20px;
	border: dotted 3.5px #54b8e0;
	position: relative;
}

.credo {
	margin-right: 30px;
}

.credo h3::before,
.perspectives h3::before {
    font-family: 'FontAwesome';
    width: 60px;
	height: 60px;
	line-height: 60px;
	background: linear-gradient(to right top, #e11525, #edb82e);
	color: #FFFFFF;
	border-radius: 60px;
	position: absolute;
	text-align: center;
	top: -30px;
	left: calc(50% - 30px);
	font-size: 22px;
}

.credo h3::before {
	content: "\f1b9";
}

.perspectives h3::before {
	content: "\f201";
}



/* Les plus */
.lesplus {
	font-size: 0;
	display: flex;
	margin-bottom: 30px;
}

.humain,
.voyage {
	display: inline-block;
	vertical-align: top;
	width: calc((100% - 30px) / 2);
	background: #304f82;
	padding: 0 0 30px 0;
	box-sizing: border-box;
	box-shadow: 0 20px 50px -25px rgba(0,0,0,0.75);
	border-radius: 10px;
	position: relative;
}

.humain {
	margin-right: 30px;
}

.lesplus h3 {
	text-align: center;
	color: #fff;
	background: #304f82;
	/*background: linear-gradient(#54b8e0, #54b8e0 20%, #304f82);*/
	display: block;
	margin: 0 auto;
	padding: 50px 30px 30px;
	border-radius: 10px 10px 0 0;
	text-transform: uppercase;

}

.lesplus h3::before {
	content: "\f067";
    font-family: 'FontAwesome';
    font-size: 32px;
    line-height: 74px;
    padding: 0;
    height: 70px;
    width: 70px;
    transition: .3s;
    position: absolute;
    left: calc(50% - 35px);
    box-sizing: border-box;
    top: -40px;
    background: #54b8e0;
    border-radius: 35px;
    z-index: 9;
	transition: .3s;
}

.lesplus > div:hover h3::before {
	line-height: 70px;
	transform: rotate(180deg);
	/*color: #f4ba36;*/
}

.lesplus p {
	color: white;
	padding: 0 30px;
	text-align: center !important;
}

.lesplus strong  {
	font-weight: 600;
	color: #f4ba36;
}






















/* ---------- ATOUTS ---------- */

#atouts {
    background: linear-gradient(to left bottom, #fff7e2, #e3f6ff);
    padding: 70px 0 50px;
    margin-top: 40px;
}

.avantages {
	display: flex;
}

.avantage {
	perspective: 1000px;
	display: inline-block;
	vertical-align: top;
	position: relative;
	height: 300px;
	width: calc((100% - 60px) / 3);
	transform-style: preserve-3d;
}

.navette,
.securite {
	margin-right: 30px;
}

/* Flipboxes */
.flipbox-front {
	background: #304f82;
	-webkit-transform: rotateX(0) rotateY(0);
	-moz-transform: rotateX(0) rotateY(0);
	transform: rotateX(0) rotateY(0);
	transform-style: preserve-3d;
	height: 100%;
	width: 100%;
	padding: 20px;
	display: table;
	position: absolute;
	box-sizing: border-box;
	backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-ms-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.flipbox-back {
	background: linear-gradient(to right top, #e11525, #edb82e); /* linear-gradient(to left bottom, #5db9de, #304f82); */
	-webkit-transform: rotateX(0) rotateY(-178deg);
	-moz-transform: rotateX(0) rotateY(-178deg);
	transform: rotateX(0) rotateY(-178deg);
	transform-style: preserve-3d;
	height: 100%;
	width: 100%;
	padding: 20px;
	display: table;
	position: absolute;
	box-sizing: border-box;
	backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-ms-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.avantage:hover .flipbox-front,
.avantage.touch .flipbox-front {
	transform: rotateX(0) rotateY(178deg);
}

.avantage:hover .flipbox-back,
.avantage.touch .flipbox-back {
	transform: rotateX(0) rotateY(0);
}

/* Flipboxes inner */
.flipbox-inner {
	display: table-cell;
	vertical-align: middle;
}

.flipbox-front h2 {
	color: #fff;
	font-size: 22px;
	font-weight: 500;
	text-align: center;
}

.flipbox-back h3 {
	color: #fff;
	font-size: 19px;
	font-weight: 400;
	text-align: center;
	margin-bottom: 12px;
}

.flipbox-back p {
	color: #fff;
	text-align: center;
}

/* Pictos */

.avantages .picto {
	display: table;
	border-radius: 50%;
	text-align: center;
}

.flipbox-front .picto {
	width: 80px;
	height: 80px;
	line-height: 80px;
	margin: 0 auto 20px;
	font-size: 36px;
	color: #f5a431;
	background-color: #fff;
}

.flipbox-back .picto {
	width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 10px;
	font-size: 25px;
	color: white;
    background-color: #304f82 /* Avant : #5db9de; */
}

.navette .flipbox-front .picto::before,
.navette .flipbox-back .picto::before {
	content: "\f207";
	font-family: 'FontAwesome';
}

.securite .flipbox-front .picto::before,
.securite .flipbox-back .picto::before {
	content: "\f132";
	font-family: 'FontAwesome';
}

.economies .flipbox-front .picto::before,
.economies .flipbox-back .picto::before {
	content: "\f153";
	font-family: 'FontAwesome';
}





















/* ---------- BOTTOM ---------- */

#prefooter {
	position: relative;
	background-color: rgba(93, 185, 222, 0.7);
}

.map,
.contact {
	display: inline-block;
	vertical-align: top;
}

/* Map */
.map {
	width: 58%;
}

.map iframe {
	position: absolute;
	height: 100%;
	width: calc(((100% - 1140px) / 2) + (1140px * 0.58));
	left: 0;
	top: 0;
}


/* Contact */
.contact {
	width: 42%;
	padding: 40px;
	box-sizing: border-box;
	/*background: url(/images/kangourou.png) no-repeat, scroll;
	background-size: 200px !important;
	background-position: center right 0 !important;*/
}

.contact div {
	position: relative;
}

.contact img {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: auto;
	max-width: 220px;
}

.contact h3 {
	font-size: 19px;
	margin-bottom: 20px;
	font-weight: 700;
	color: white;
}

.contact p {
	font-weight: 400;
	font-size: 17px;
	color: white;
}

.contact a {
	display: table;
	background: #f5a431; /* Avant : #fec440; */
    color: #FFFFFF;
    padding: 10px 20px 10px 20px;
    font-size: 17px;
	font-weight: 700;
	border-radius: 4px;
	-webkit-appearance : none;
	line-height: 17px !important;
	transition: .3;
}

.contact a:hover {
	/* background-color: #78b22b; Avant : #f4ba36; */
	background: #e33327;
	color: #fff;
}














/* ---------- FOOTER ---------- */

footer {
	overflow: hidden;
	background: #fff;
	padding: 20px 0;
}

footer .mentions,
footer .realisation {
	display: table;
}

footer .mentions {
	float: left;
}

footer .realisation {
	float: right;
}

footer p {
	font-weight: 400;
	color: #1c3d8f;
	margin-bottom: 0;
}

footer a {
	font-weight: 400;
	color: #a2a2a2;
	transition: .3s;
}

footer a:hover {
	color: #444;
}


/* Arrow */
#arrow {
    display: none;
    position: fixed;
    bottom: 100px;
    z-index: 1000;
    right: calc((100% - 1260px)/ 4);
}

#arrow.visible {
    display: block;
}

#arrow a {
    display: block;
    background: rgba(30, 64, 141, 0.6);
    border-radius: 50%;
    -webkit-appearance : none;
    transition: .3s;
}

#arrow a:hover {
    background: rgba(30, 64, 141, 1);
}

#arrow a::before {
	display: block;
    font-family: 'FontAwesome';
    content: "\f077";
    font-size: 18px;
    color: #fff;
    width: 44px;
	height: 44px;
	line-height: 40px;
	text-align: center;
}


/* Bandeau Cookies */
#cadre_alert_cookies {
	z-index: 999999;
}

#cadre_alert_cookies .btn {
	margin: 2px 15px !important;
	transition: .3s;
}

#cadre_alert_cookies .btn:hover {
	background: #e33327 !important
}


















/* --------------------------------------------------------
-----------------------------------------------------------
-----------------------------------------------------------
----------------------              -----------------------
----------------------  RESPONSIVE  -----------------------
----------------------              -----------------------
-----------------------------------------------------------
-----------------------------------------------------------
-------------------------------------------------------- */



@media screen and (max-width: 1200px) {
	
	.wrapper {
		width: 90%;
	}


	/* Menu */
	#togglenav {
		display: inline-block;
		vertical-align: top;
		padding-left: 20px;
		line-height: 80px;
		cursor: pointer;
		height: 80px;
    	z-index: 5;
    	top: 0;
	}

	#togglenav::before {
	    content: "\f0c9";
	    color: #54b8e0;
	    font-family: "FontAwesome";
	    font-size: 24px;
	    transition: .3s;
	}

	#togglenav:hover::before {
		color: #1c3d8f;
	}

	.mainmenu .menu {
		display: none;
	}


	/* Respnav */
	#respnav {
		position: fixed;
		display: block;
		top: 120px;
		left: 100%;
		width: 260px;
		bottom: 0;
		padding-top: 10px;
		background: rgba(242, 242, 238, 0.95);
		box-sizing: border-box;
		z-index: 99;
		overflow: hidden;
		transition: all ease 0.5s;
	}

	#respnav .content {
		height: 100%;
		overflow-x: hidden;
		overflow-y: scroll;
	}

	#respnav.cookhere {
		top: 249px;
	}

	#respnav.cookhere.up {
		top: 122px;
	}

	#respnav.visible,
	#respnav .respmenu.slide {
		transform: translate3d(-100%,0,0);
	}

	#respnav .respmenu {
		padding: 0;
		box-sizing: border-box;
		transition: all ease 0.5s;
	}

	#respnav .respmenu .menu {
		display: block;
	}

	#respnav .menu ul {
		position: absolute;
		top: 0;
		left: 100%;
		box-sizing: border-box;
		width: 100%;
		padding: 0;
		transition: all ease 0.5s;
		display: none;
	}

	#respnav .menu li {
		margin-bottom: 0;
	}

	#respnav a {
		position: relative;
		display: block;
		padding: 15px 30px;
		margin: 0;
		font-weight: 600;
		font-size: 16px;
		color: #888;
		border-bottom: 1px solid #e4e4e4;
		transition: .3s;
	}

	#respnav a:hover {
		color: #1c3d8f;
		background: #eae9df;
	}

	#respnav .parent > a::before {
		content: '';
	    position: absolute;
	    top: 50%;
	    margin-top: -5px;
	    right: 30px;
	    width: 0;
	    height: 0;
	    border-style: solid;
	    border-width: 5px 0 5px 5px;
	    border-color: transparent transparent transparent #888;
	}

	#respnav .parent:hover > a::before {
	    border-color: transparent transparent transparent #1c3d8f;
	}

	#respnav .back > a::before {
	    content: '';
	    position: absolute;
	    top: 50%;
	    margin-top: -5px;
	    right: 30px;
	    width: 0;
	    height: 0;
	    border-style: solid;
	    border-width: 5px 5px 5px 0;
	    border-color: transparent #888 transparent transparent;
	}

	#respnav .back:hover > a::before {
	    border-color: transparent #1c3d8f transparent transparent;
	}


	/* Réservation */
	.reservation iframe {
	    height: 642px !important;
	}


	/* Options */
	/*#processus .options img {
		float: none;
		margin-top: 15px;
	}

	#processus .options ul {
		float: none;
		width: 100%
	}*/



	/* BOTTOM */
	/*.contact {
		background-size: 180px !important;
	}*/

	.contact img {
		width: 40%;
		max-width: 150px;
	}


	/* Processus */
	#processus {
		padding: 70px 0 50px;
	}

	#processus .options p {
		margin-bottom: 0;
	}



	/* FOOTER */

	footer {
		padding: 30px 0 15px;
	}

	footer p {
		text-align: center;
		margin-bottom: 10px;
	}

	.mentions,
	.realisation {
		display: block;
		float: none;
		margin: 0 auto;
		width: 100%;
	}

}


@media screen and (max-width: 1124px) {

	.logo a {
		height: 110px;
		width: 110px;
		margin-top: 0px;
		transition: .3s;
	}

	/* Réservation */
	.reservation iframe {
	    height: 802px !important;
	}


}



@media screen and (max-width: 1089px) {

	#respnav {
		top: 146px;
	}

	#respnav.cookhere {
		top: 274px;
	}

	#respnav.cookhere.up {
		top: 146px;
	}

}



@media screen and (max-width: 1055px) {

	#respnav.cookhere {
		top: 297px;
	}

}


@media screen and (max-width: 992px) {


	/* Reservation */

	.title,
	.reservation {
		width: 100%;
	}

	.title {
		margin-right: 0;
		margin-bottom: 40px;
	}

	.reservation iframe {
	    height: 500px !important;
	}


	/* PROCESSUS */
	.etapes {
		width: 60%;
	}

	#processus .options {
		width: calc(40% - 50px);
	}


	/* ATOUTS */
	.avantage {
		height: 350px;
	}


	/* BOTTOM */

	/* Map */
	.map {
		width: 50%;
	}

	.map iframe {
		width: calc(((100% - 1140px) / 2) + (1140px * 0.5));
	}


	/* Contact */
	.contact {
		width: 50%;
		background-size: 150px !important;
	}


}




@media screen and (max-width: 892px) {

	#respnav.cookhere {
		top: 296px;
	}

}


@media screen and (max-width: 842px) {

	/* Top */

	header .top li {
		display: inline;
		margin-left: 0;
	}

}


@media screen and (max-width: 768px) {

	.reservation iframe {
	    height: 580px !important;
	}

	/* Processus */

	.etapes,
	#processus .options {
		width: 100%;
	}

	.etapes {
		margin-right: 0;
		margin-bottom: 40px;
	}

	/* options */
	/*#processus .options img {
		float: right;
		margin-top: 0;
	}

	#processus .options ul {
		float: left;
		width: 50%
	}*/


	/* Atouts */

	.avantages {
		display: block;
	}

	.avantage {
		width: 100% !important;
		display: block;
		height: 280px;
	}

	.navette,
	.securite {
		margin-bottom: 20px;
	}


	/* BOTTOM */
	/*.contact {
		background: none;
		background-size: 0px !important;
	}*/

	.contact img {
		display: none;
	}



	/* Page Pourquoi nous choisir */

	.inconvenients {
	    display: block;
	}

	.inconvenients::before {
	    right: 100%;
	    height: calc(100% - 50px)
	}

	.inconvenient1,
	.inconvenient2 {
	    margin-right: 0;
	    margin-left: 15px;
	}

	.inconvenient1 {
	    margin-bottom: 15px;
	    padding-bottom: 20px;
	}

	.inconvenient2 {
	    padding-bottom: 70px;
	}

	.inconvenient1, .inconvenient2 {
	    display: block;	
	    width: calc(100% - 15px);
	    border-radius: 20px;
	}

	.alternative {
		padding: 70px 40px 60px;
	}

	.txt .inconvenients p,
	.txt .alternative p,
	.txt .pointsforts p,
	.txt .ticketaeroport p {
		text-align: center !important;
	}


	.pointsforts {
		display: block;
	}

	.pointfort1,
	.pointfort2 {
		width: 100%;
	}

	.pointfort1 {
		margin-right: 0;
		margin-bottom: 65px;
	}



	/* Page Mais qui est Parking Futé */

	.organisation {
	    display: block;
	}

	.inconvenient1,
	.inconvenient2 {
	    margin-right: 0;
	    margin-left: 15px;
	}

	.credo {
	    margin-bottom: 45px;
	    padding-bottom: 20px;
	}

	.credo, .perspectives {
	    display: block;	
	    width: calc(100% - 15px);
	}

	.txt .organisation p,
	.txt .lesplus p {
		text-align: center !important;
	}


	.lesplus {
		display: block;
	}

	.humain,
	.voyage {
		width: 100%;
	}

	.humain {
		margin-right: 0;
		margin-bottom: 65px;
	}


	/* Cookies */
	#cadre_alert_cookies .col-sm-6 {
		display: inline-block !important;
	}



}


@media screen and (max-width: 640px) {

	/* BOTTOM */

	#prefooter .wrapper {
		width: 100%;
	}

	/* Map */
	.map {
		width: 100%;
		height: 250px;
		position: absolute;
	}

	.map iframe {
		width: 100%;
		position: static;
	}


	/* Contact */
	.contact {
		width: 100%;
		margin-top: 250px;
		text-align: center;
	}

	.contact a {
		margin: auto;
	}


	.entree-parking {
		float: none;
		width: 100%;
		margin: 0 auto;
	}


	/* BOTTOM */

	.contact img {
		display: block;
		position: static;
		max-width: 400px;
		width: 100%;
		margin: auto;
	}

}


@media screen and (max-width: 615px) {

	.reservation iframe {
	    height: 584px !important;
	}

}


@media screen and (max-width: 591px) {

	.reservation iframe {
	    height: 644px !important;
	}

}


@media screen and (max-width: 567px) {
	
	#respnav.cookhere {
		top: 325px;
	}

}

@media screen and (max-width: 568px) {


	#respnav.cookhere {
		top: 322px;
	}

	#respnav.cookhere.up {
		top: 146px;
	}
}


@media screen and (max-width: 546px) {

	#respnav {
		top: 171px;
	}	

	#respnav.cookhere {
		top: 347px;
	}

	#respnav.cookhere.up {
	    top: 171px;
	}

}


@media screen and (max-width: 534px) {

	.reservation iframe {
	    height: 802px !important;
	}

}


@media screen and (max-width: 480px) {


	/* Top */
	header .top span {
		display: block;
		margin-left: 0;
		padding: 2px 8px;
	}

	#respnav.cookhere.up {
		top: 194px;
	}

	#respnav.cookhere {
		top: 370px;
	}



	/* Reservation */

	#reservation {
    	background-attachment: scroll;
   	}

	#reservation h1 {
		font-size: 32px;
		line-height: 40px;
	}

	/* Content : Txt */

	.txt p {
		text-align: left !important;
	}

	/* Étapes */

	.etapes {
		overflow: hidden;
	}

	/* Options */

	/*#processus .options img {
		float: none;
		margin-top: 15px;
	}*/

	#processus .options ul {
		margin-bottom: 0;
		/*float: none;
		width: 100%*/
	}

}


@media screen and (max-width: 454px) {

	#respnav.cookhere {
		top: 395px;
	}

}


@media screen and (max-width: 432px) {

	.reservation iframe {
	    height: 842px !important;
	}

}

@media screen and (max-width: 424px) {

	.reservation iframe {
	    height: 862px !important;
	}

}


@media screen and (max-width: 408px) {

	.reservation iframe {
	    height: 882px !important;
	}

}

@media screen and (max-width: 393px) {

	.reservation iframe {
	    height: 902px !important;
	}

}


@media screen and (max-width: 376px) {

	#respnav {
		top: 194px;
	}

	#respnav.cookhere {
		top: 395px;
	}

}



@media screen and (max-width: 370px) {

	#respnav.cookhere {
		top: 420px;
	}

}



@media screen and (max-width: 360px) {

	.reservation iframe {
	    height: 1042px !important;
	}

	.avantage {
		height: 400px;
	}
	
}


@media screen and (max-width: 353px) {

	#respnav.cookhere {
		top: 465px;
	}

}



@media screen and (max-width: 351px) {

	/* Menu */
	#respnav {
		padding-top: 40px;
	}

}


@media screen and (max-width: 323px) {

	.reservation iframe {
	    height: 1082px !important;
	}

}


@media screen and (max-width: 312px) {

	.reservation iframe {
	    height: 1092px !important;
	}

}


@media screen and (max-width: 311px) {

	#respnav.cookhere {
	    top: 491px;
	}
}


@media screen and (max-width: 305px) {

	/* Menu */
	#respnav {
		top: 224px;
	}

	#respnav.cookhere.up {
	    top: 216px;
	}

}

@media screen and (max-width: 304px) {

	.reservation iframe {
	    height: 1102px !important;
	}

}


@media screen and (max-width: 284px) {

	.reservation iframe {
	    height: 1182px !important;
	}

}


@media screen and (max-width: 264px) {

    .reservation iframe {
        height: 1222px !important;
    }

}







