/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

* { -webkit-font-smoothing: antialiased; }

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}


/* ==========================================================================
Font
========================================================================== */
@font-face {
  font-family: 'futura_light';
  src: url('fonts/2D204B_0_0.eot');
  src: url('fonts/2D204B_0_0.eot?#iefix') format('embedded-opentype'),
  url('fonts/2D204B_0_0.woff2') format('woff2'),
  url('fonts/2D204B_0_0.woff') format('woff'),
  url('fonts/2D204B_0_0.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'futura_book';
  src: url('fonts/2D204B_1_0.eot');
  src: url('fonts/2D204B_1_0.eot?#iefix') format('embedded-opentype'),
  url('fonts/2D204B_1_0.woff2') format('woff2'),
  url('fonts/2D204B_1_0.woff') format('woff'),
  url('fonts/2D204B_1_0.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'futura_medium';
  src: url('fonts/2D204B_2_0.eot');
  src: url('fonts/2D204B_2_0.eot?#iefix') format('embedded-opentype'),
  url('fonts/2D204B_2_0.woff2') format('woff2'),
  url('fonts/2D204B_2_0.woff') format('woff'),
  url('fonts/2D204B_2_0.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'futura_bold';
  src: url('fonts/2D204B_3_0.eot');
  src: url('fonts/2D204B_3_0.eot?#iefix') format('embedded-opentype'),
  url('fonts/2D204B_3_0.woff2') format('woff2'),
  url('fonts/2D204B_3_0.woff') format('woff'),
  url('fonts/2D204B_3_0.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'gustan_lightregular';
  src: url('fonts/gustan_-_light-webfont.eot');
  src: url('fonts/gustan_-_light-webfont.eot?#iefix') format('embedded-opentype'),
  url('fonts/gustan_-_light-webfont.woff2') format('woff2'),
  url('fonts/gustan_-_light-webfont.woff') format('woff'),
  url('fonts/gustan_-_light-webfont.ttf') format('truetype'),
  url('fonts/gustan_-_light-webfont.svg#gustan_lightregular') format('svg');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'gustan_blackregular';
  src: url('fonts/gustan_-_black-webfont.eot');
  src: url('fonts/gustan_-_black-webfont.eot?#iefix') format('embedded-opentype'),
  url('fonts/gustan_-_black-webfont.woff2') format('woff2'),
  url('fonts/gustan_-_black-webfont.woff') format('woff'),
  url('fonts/gustan_-_black-webfont.ttf') format('truetype'),
  url('fonts/gustan_-_black-webfont.svg#gustan_blackregular') format('svg');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'gustan_mediumregular';
  src: url('fonts/gustan_-_medium-webfont.eot');
  src: url('fonts/gustan_-_medium-webfont.eot?#iefix') format('embedded-opentype'),
  url('fonts/gustan_-_medium-webfont.woff2') format('woff2'),
  url('fonts/gustan_-_medium-webfont.woff') format('woff'),
  url('fonts/gustan_-_medium-webfont.ttf') format('truetype'),
  url('fonts/gustan_-_medium-webfont.svg#gustan_mediumregular') format('svg');
  font-weight: normal;
  font-style: normal;

}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
html, body {
  margin: 0;
  height: 100%;
  font-size: 10px;
}

/*  ##########################################################################
    HEADER
*/
.Header {
  z-index: 9999;
  position: fixed;
  top: 0; left: 0;
  height: 120px; width: 100%;
  background: transparent;
  text-align: center;
  transition: background 300ms ease-out;
}
.Header.bgWhite {
  background: #fff;
  border-bottom: #DDD 1px solid;
  box-shadow: 4px 0 8px rgba(0,0,0,.25);
}
.Page-product .Header, .Page-contact .Header,
.Page-legal .Header, .Page-reservation .Header {
  background: #fff;
  border-bottom: #DDD 1px solid;
  box-shadow: 4px 0 8px rgba(0,0,0,.25);
}
.Header-menu {
  z-index: 100;
  position: fixed;
  top: -100%; left: 0;
  height: 100%; width: 100%;
  background: #000;
  opacity: 0;
}
.Header-menu .close {
  position: absolute;
  top: .6em; right: 1em;
  font-family: futura_light;
  font-size: 3.4em;
  color: #676767;
  text-decoration: none;
}
.Header-menu h2 {
  margin: 2em 0;
  font-family: futura_bold;
  font-size: 1.2em;
  color: #959597;
  text-transform: uppercase;
}
.HeaderMenu-list {
  position: absolute;
  top: 26%;
  display: block;
  box-sizing: border-box;
  height: 60%; width: 100%;
  margin: 0; padding: 0 5em 0 5em;
}
.HeaderMenuList {
  display: table;
  width: 100%;
  margin: 0; padding: 0;
  list-style: none;
}
.Header-menu li {
  display: table-row;
  line-height: 4em;
  background: url(../img/dash.jpg) 0 2em repeat-x;
}
.Header-menu li:first-child {
  background: none;
}
.Header-menu ul a {
  padding: 0 4em;
  font-family: futura_bold;
  font-size: 1.5em;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  background: #000;
}
.Header-left {
  z-index: 150;
  position: absolute;
  top: 20px; left: 15px;
}
.MenuButton {
  display: block;
  margin: 0; padding: 0 0 0 10px;
  text-align: left;
  text-decoration: none;
}
.MenuButton-picto {
  display: block;
}
.MenuButton-text {
  display: block;
  margin: 3px 0 0 -.25em;
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 1.1em;
  color: #8b8b8b;
}
.HeaderLeft-lang {
  list-style: none;
  margin: 1.6em 0 0; padding: 0 0 0 3px;
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 1em;
  color: #8b8b8b;
}
.HeaderLeft-lang li {
  display: inline-block;
  padding: 0 .1em;
  text-transform: uppercase;
}
.HeaderLeft-lang li:first-child:after {
  content: " - ";
}
.HeaderLeft-lang a {
  font-size: 1.2em;
  font-style: italic;
  text-decoration: none;
  color: inherit;
}
.Header-center {
  z-index: 200;
  position: fixed;
  top: 33px; left: 50%;
  margin-left: -76px; padding: 0;
}
.HeaderCenter-logo {
  display: block;
  width: 151px; height: 36px;
  padding: 0 0 10px;
}
.HeaderCenter-subtitle {
  margin: 0 auto; padding: 0 .1em;
  font-family: gustan_mediumregular;
  font-style: italic;
  font-weight: normal;
  font-size: 1.1em;
  color: #8b8b8b;
}

.Header-right {
  position: absolute;
  top: 30px; right: 30px;
  text-align: right;
}
.HeaderRight-callus {
  margin: 0; padding: 0;
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 1.2em;
  color: #8b8b8b;
}
.HeaderRight-phone {
  display: block;
  margin: 0; padding: 0;
  font-family: gustan_blackregular;
  font-style: italic;
  font-size: 1.5em;
  color: #ff5000;
  text-decoration: none;
}
.HeaderRight-links {
  list-style: none;
  padding: 0; margin: .5em 0 0;
}
.HeaderRight-links li {
  display: inline-block;
}
.HeaderRight-links img {
  vertical-align: top;
}
.HeaderRight-links a {
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 1.2em;
  color: #8b8b8b;
  text-decoration: none;
}


/*  ##########################################################################
    CONTENT
*/
.Content {
  z-index: 100;
  height: 100%;
}

/*  ##########################################################################
    Intro
*/
.Intro {
  position: relative;
  width: 100%; height: 772px;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  z-index: 100;
}
.Page-contact .Intro {
  height: 542px;
}
.Intro-shadow {
  position: fixed;
  top: 0; left: 0;
  height: 300px; width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,.9) 0%, rgba(0,0,0,.7) 40%, rgba(0,0,0,0) 100%);
}
.Intro-slider, .Intro-slider li {
  display: block;
  width: 100%; height: 100%;
  margin: 0; padding: 0;
}
.Intro-bg {
  opacity: 0;
  z-index: -100;
  position: fixed;
  top: 0; left: 50%;
  margin: 0 0 0 -50%;
}
.Intro-slider li:first-child .Intro-bg {
  opacity: 1;
}
.Intro-encart {
  position: fixed;
  top: 238px; left: 50%;
  margin-left: -218px;
}
.Page-contact .Intro-encart {
  top: 200px;
  margin-left: -268px;
}
.IntroEncart {
  width: 436px; height: 169px;
  padding: 0;
  text-align: center;
  background: rgba(0,0,0,.8);
}
.Page-contact .IntroEncart {
  height: auto; width: 536px;
  padding: 3em 0 4em 0;
}
.IntroEncart-welcome {
  margin: 0; padding: 50px 0 12px;
  font-family: futura_bold;
  font-size: 1.8em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
}
.IntroEncart-startedNow {
  margin: 0 0 18px; padding: 0;
  font-family: futura_medium;
  font-size: 1.4em;
  text-transform: uppercase;
  line-height: 1;
  color: #ff5000;
  letter-spacing: .1em;
}
.IntroEncart-down {
  transition: background .5s;
  position: absolute;
  left: 50%;
  display: block;
  margin-left: -18px;
  height: 36px; width: 36px;
  background: url(../img/intro-down.svg) no-repeat;
}
.IntroEncart-down:hover {
  background: url(../img/intro-down-white.svg) no-repeat;
}
.IntroEncart-myCar {
  margin: 0 0 10px 0;
  font-family: gustan_blackregular;
  font-style: italic;
  font-size: 3em;
  line-height: 1;
  color: #fff;
}
.IntroEncart-myCar .car {
  color: #FF5000;
}
.IntroEncart-subtitle {
  margin: 0 0 10px 0;
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 1.2em;
  line-height: 1;
  color: #fff;
}
.IntroEncart-phone {
  font-family: gustan_blackregular;
  font-style: italic;
  font-size: 1.8em;
  color: #ff5000;
  text-decoration: none;
}
.IntroEncart-address {
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.4;
  color: #acacac;
}
.IntroEncart-contact {
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 1.3em;
  line-height: 1;
  color: #ff5000;
  text-decoration: none;
}
#slider {
  height: 100%; width: 100%;
}
/*  ##########################################################################
    BOOK NOW!
*/
.BookNow {
  box-sizing: border-box;
  height: 101px; width: 100%;
  margin: 0; padding: 17px 0;
  background: #ff5000;
}
.BookNow-content {
  position: relative;
  width: 602px;
  margin: 0 auto;
}
.BookNow-title {
  display: block;
  float: left;
  margin: 27px 65px 0 0; padding: 0;
  font-family: futura_bold;
  font-size: 1.7em;
  color: #fff;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}
.BookNow-ul {
  width: 275px;
  margin: 0 60px 0 0; padding: 0;
  float: left;
  list-style: none;
  text-align: right;
  overflow: auto;
}
.BookNow-li {
  float: none;
  margin: 0; padding: 0;
}
.BookNow-li:last-child {
  margin: 1.2em 0 0 0;
}
.BookNow-legend {
  margin: 0 2em 0 0; padding: 0;
  font-family: futura_bold;
  font-size: .9em;
  color: #fff;
  text-transform: uppercase;
}
.BookNow-datepicker {
  width: 172px;
  box-sizing: border-box;
  margin: 0; padding: 0 1em;
  font-family: futura_bold;
  font-size: 1.2em;
  color: #fff;
  line-height: 27px;
  border: none;
  background: #ff651f;
}
#ui-datepicker-div, #ui-datepicker-div a {
  font-size: 1em;
  color: #fff;
  background: #ff651f;
}
#ui-datepicker-div a {
  cursor: pointer;
}
.BookNow-datepicker:focus {
  outline-style: none;
}
.ui-icon {
  text-indent: 0;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  top: -3px;
  font-family: gustan_mediumregular;
}
.BookNow-send {
  float: left;
  margin: 20px 0; padding: 0 3em;
  line-height: 27px;
  font-family: futura_bold;
  font-size: .9em;
  color: #fff;
  text-transform: uppercase;
  border: none;
  background: #d74502;
}
.BookNowInverse-send {
  float: left;
  margin: 20px 0; padding: 0 3em;
  line-height: 27px;
  font-family: futura_bold;
  font-size: .9em;
  color: #d74502;
  text-transform: uppercase;
  border: none;
  background: #fff;
}
/* .BookNow-send.arrow {
  background: #d74502 url(../img/product-ok-arrow.png)  50px -10px no-repeat;
} */

.ScrollOver{
  position: absolute;
  width: 100%;
  z-index: 200;
  background-color: #ffffff;
}
/*  ##########################################################################
    CARS
*/
.Cars-container {
  width: 100%;
  background: #fff;
}
.Cars {
  max-width: 1100px;
  margin: 0 auto; padding: 0;
  z-index:11;
  overflow: auto;
  background: #fff;
  font-size: 0;
}
.Cars-car {
  display: inline-block;
  font-size: 10px;
}
.Car {
  height: auto; width: 33.333333%;
  vertical-align: bottom;
  overflow: hidden;
  text-align: center;
}
.Car:nth-of-type(0n+1).black {
  background: #000;
  text-align: center;
}
.Car.black p {
  margin: 0; padding: 15px 0 0 0;
  font-family: futura_bold;
  font-size: 1.9em;
  color: #fff;
  text-transform: uppercase;
}
.Car.black img {
  height: 19px; width: 54px;
}
.Car:nth-of-type(2n+1) {
  background: #f2f2f2;
}
.Car:nth-of-type(2n) {
  background: #fff;
}
.Car a {
  position: relative;
  display: block;
  height: 100%; width: 100%;
  text-decoration: none;
}
.Car a:hover .overlay {
  top: 0;
}
.Car .bg {
  display: inline-block;
  vertical-align:middle;
  width: 70%;
  margin: 0 15%;
}
.Car .bg img {
  width: 100%;
}
.Car .subtitle {
  display: none;
  width: 100%;
  margin: 0;
  text-align: center;
  font-family: futura_bold;
  font-size: 1.5em;
  color: #919191;
  line-height: 1;
  text-transform: uppercase;
}
.Car .overlay {
  transition: top .4s;
  position: absolute;
  top: 100%; left: 0;
  height: 100%; width: 100%;
  background: rgba(0,0,0,.8);
}
.Car .model {
  position: absolute;
  top: 45%;
  width: 100%;
  margin: 0; padding: 0;
  font-family: futura_bold;
  font-size: 1.2em;
  color: #fff;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.Car .starts {
  display: block;
  padding: 12px 0 0 0;
  font-family: futura_light;
  font-size: 1em;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
}
.Car .price {
  display: inline-block;
  margin-top: 1.4em;
  height: 28px; width: 62px;
  padding: .2em 0 0 1em;
  font-family: futura_bold;
  font-size: 1em;
  color: #fff;
  line-height: 2;
  text-transform: uppercase;
  background: url(../img/price-bg.png) no-repeat;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}


/*  ##########################################################################
    PAGE PRODUCT
*/
.Product {
  margin-top: 120px;
  font-size: 10px;
}
.Product-selectYourCar {
  background: #000;
}
.SelectYourCar {
  position: relative;
  height: 50px;
  max-width: 1100px;
  box-sizing: border-box;
  margin: 0 auto; padding: 16px 0 0 100px;
  font-family: futura_bold;
  font-size: 1em;
}
.SelectYourCar-text {
  font-size: 1.7em;
  color: #fff;
  text-transform: uppercase;
}
.SelectYourCar-text:before {
  content: " ";
  position: absolute;
  top: 16px; left: 22px;
  width: 57px; height: 20px;
  background: url(../img/car-picto-orange.svg) no-repeat;
}
.CarSlider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slides {
  margin: 0; padding: 0;
  list-style: none;
  overflow: hidden;
}
.CarSlider-previous, .CarSlider-next {
  transition: all .2s;
  z-index: 99;
  position: absolute;
  top: 33%; left: 30px;
  display: none;
  height: 36px; width: 36px;
  margin-top: -18px;
  background: url(../img/arrow.svg) no-repeat;
  cursor: pointer;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.CarSlider-next {
  left: auto; right: 30px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.CarSlider-previous:hover {
  left: 20px;
}
.CarSlider-next:hover {
  right: 20px;
}
.CarSlide {
  float: left;
  width: 33.333333%;
  /*width: 12.5%;*/
  padding: 30px 0 0 0;
  overflow: auto;
}
.CarSlide-figure {
  float: none;
  width: 60%;
  margin: 5% 20% 7% 20%;
}
.CarSlide-img {
  width: 100%;
  vertical-align: middle;
}
.CarSlide-content {
  text-align: center;
}
.CarSlide-title {
  margin: 0 0 30px -40px;
  position: relative;
  font-family: futura_bold;
  font-size: 2.8em;
  color: #565656;
  line-height: 1;
  text-transform: uppercase;
}
.CarSlide-title img {
  width: 60px; height: 20px;
  margin-right: 20px;
}
.CarSlideDescription {
  list-style: none;
  margin: 0 0 10px 0; padding: 0;
  font-family: futura_medium;
  font-size: 1.2em;
  color: #9a9a9a;
  text-transform: uppercase;
}
.CarSlideDescription-li {
  display: inline-block;
}
.CarSlideDescription-li:after {
  content: " / ";
}
.CarSlideDescription-li:last-child:after {
  content: "";
}
.CarSlideEquipments {
  list-style: none;
  margin: 0; padding: 0;
  font-family: futura_medium;
  font-size: 1.2em;
  color: #9a9a9a;
  text-transform: uppercase;
}
.CarSlideEquipments-li {
  display: inline-block;
}
.CarSlideEquipments-li:after {
  content: " / ";
}
.CarSlideEquipments-li:last-child:after {
  content: "";
}
.CarSlide-priceCalendarContainer {
  margin: 0 3em;
}
.CarSlide-priceCalendar {
  box-sizing: border-box;
  margin: 4em 0 3em 0;
  width: 100%;
}
.CarSlide-priceCalendar td {
  font-family: futura_bold;
  font-size: 1.2em;
  color: #000;
  line-height: 3em;
  padding: 0 2em;
  text-align: center;
}
.CarSlide-priceCalendar .annualPeriod {
  line-height: 3em;
  font-family: futura_medium;
  font-size: .9em;
  color: #ff5000;
  padding: 0 1em;
  text-transform: uppercase;
}
.CarSlide-priceCalendar thead th:nth-of-type(0n+1) {
  width: 10%;
  min-width: 60px;
}
.CarSlide-priceCalendar tbody tr:nth-of-type(2n+1) td:nth-of-type(1n+2) {
  background: #f2f2f2;
}
.CarSlide-priceCalendar .weekPeriod {
  font-family: futura_bold;
  font-size: 1.1em;
  color: #ff5000;
  text-transform: uppercase;
}

.CarSlide-equipmentsBottom {
  display: none;
  clear: both;
}
.CarSlide-equipmentsBottom h3 {
  margin: 0 0 .5em; padding: 0;
  font-family: futura_bold;
  font-size: 1.2em;
  color: #7d7d7d;
  text-transform: uppercase;
}
.CarSlideEquipmentsBottom-ul {
  list-style: none;
  margin: 0; padding: 0;
}
.CarSlideEquipmentsBottom-li {
  line-height: 2em;
  font-family: futura_medium;
  font-size: .9em;
  color: #9a9a9a;
  text-transform: uppercase;
}

/*  ##########################################################################
    RESERVATION
*/
.Reservation {
  margin-top: 120px;
  display: table;
  background: url(../img/reservation-bg.jpg) no-repeat;
  background-size: cover;
  height: 215px; width: 100%;
}
.Reservation-p {
  display: table-cell;
  margin: 0; padding: 0 4em;
  font-family: futura_bold;
  font-size: 2.2em;
  line-height: 36px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}

/*  ##########################################################################
    LEGAL
*/
.Legal {
  margin-top: 120px;
  padding: 3em 15%;
  text-align: center;
}
.Legal-title {
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 2.5em;
  color: #ff5000;
  text-transform: capitalize;
}
.Legal-p {
  font-family: futura_book;
  font-size: 1.6em;
  color: #888;
  line-height: 1.8;
}


/*  ##########################################################################
    FORM
*/
.Form {
  overflow: auto;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.7em 4em;
  background-color: #ffffff;
}
.Form-title {
  margin: 1em 0;
  font-family: futura_bold;
  font-size: 1.4em;
  color: #ff5000;
}
.Form-ul {
  overflow: auto;
  list-style: none;
  margin: 0; padding: 0;
}
.Form-li {
  overflow: auto;
  margin: 1.5em 0 0 0; padding: 0;
}
.Form-legend {
  float: left;
  width: 25%;
  font-family: futura_bold;
  font-size: 1em;
  color: #a8a8a8;
  line-height: 2.3em;
  text-transform: uppercase;
}
.Form-input {
  float: left;
  box-sizing: border-box;
  padding: 0 1em;
  font-size: 1em;
  color: #444;
  line-height: 2.3em;
  border: none;
  background: #e6e6e6;
  width: 75%;
}
.Form-textarea {
  float: left;
  box-sizing: border-box;
  padding: 0 1em;
  height: 100px;
  font-size: 1em;
  color: #444;
  line-height: 2.3em;
  border: none;
  background: #e6e6e6;
  width: 75%;
}
.Form-input:focus,
.Form-textarea:focus {
  outline: 0;
}
.Form-send {
  float: right;
  margin: 25px 0 0 0;
}
.FormSend {
  padding: 10px 40px;
  font-family: futura_bold;
  font-size: 1em;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  background: #ff5000;
}
.Form-validate {
    clear: both;
    line-height: 3em;
  text-align: center;
  font-family: futura_bold;
  font-size: 1.4em;
  color: #ff5000;
}

/*  ##########################################################################
    CONFIRMATION
*/
.Confirmation {
  text-align: center;
  padding: 50px 20px 80px 20px;
}
.Confirmation-answer, .Confirmation-info {
  margin: 14px 0 0 0;
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.Confirmation-myCar {
  margin: 50px 0 8px 0;
  font-family: gustan_blackregular;
  font-style: italic;
  font-size: 30px;
  color: #666;
  line-height: 1;
}
.Confirmation-myCar span {
  color: #ff5000;
}
.Confirmation-ul {
  margin: 0; padding: 0;
  list-style: none;
}
.Confirmation-yourRentalCompany {
  margin: 0 0 8px 0;
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 12px;
  color: #666;
}
.Confirmation-phone {
  margin: 0 0 8px 0;
  font-family: gustan_blackregular;
  font-style: italic;
  font-size: 18px;
  color: #ff5000;
}
.Confirmation-address {
  margin: 0 0 12px 0;
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 11px;
  color: #acacac;
  line-height: 1.5;
}
.Confirmation-email {
  margin: 0 0 50px 0;
}
.ConfirmationEmail {
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 13px;
  color: #ff5000;
  line-height: 1.5;
  text-decoration: none;
}
.Confirmation-backHome {
  font-family: gustan_blackregular;
  font-style: italic;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  text-transform: uppercase;
}
.Confirmation-backHome span {
  color: #ff5000;
}

/*  ##########################################################################
    SENTENCE
*/
.Sentence {
  padding: 80px 40px 100px 40px;
  text-align: center;
  background: #141414;
  color: #fff;
  white-space: pre-line;
}
.Sentence-car {
  display: block;
  margin: auto;
  width: 80px;
  padding: 0 0 30px 0;
}
.Sentence-title {
  display: inline-block;
  margin: 0; padding-bottom: 25px;
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 22px;
  border-bottom: #353535 1px solid;
}
.Sentence-title strong, .Sentence-paragraph strong { color: #ff5000; font-weight: normal;  }
.Sentence-paragraph {
  margin: 0;
}
.Sentence-paragraph {
  display: inline-block;
  margin: 0; padding-top: 40px;
  font-family: gustan_lightregular;
  font-size: 17px;
  color: #999;
}

/*  ##########################################################################
    FOOTER
*/
.Footer {
  padding: 0;
  position: relative;
  height: 238px;
  background: #000;
}
.Footer-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.Footer-left {
  position: absolute;
  top: 70px; left: 47px;
}
.Footer-logo {
  width: 151px; height: 36px;
}
.FooterLeft-callus {
  margin: 1.4em 0 .5em;
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 1.2em;
  color: #8b8b8b;
  line-height: 1;
}
.FooterLeft-phone {
  display: block;
  margin: 0;
  font-family: gustan_blackregular;
  font-style: italic;
  font-size: 1.5em;
  color: #ff5000;
  text-decoration: none;
}
.Footer-right {
  position: absolute;
  top: 105px; right: 44px;
}
.FooterRight {
  font-family: gustan_mediumregular;
  font-style: italic;
  font-size: 1.1em;
  color: #8b8b8b;
  text-align: right;
}
.FooterRight-address {
  margin: 0 0 .6em 0;
  color: inherit;
}
.FooterRight-links {
  list-style: none;
  padding: 0; margin: 0;
}
.FooterRight-links li {
  display: inline-block;
  margin: 0 .5em;
}
.FooterRight-links li:last-child {
  margin: 0 0 0 .5em;
}
.FooterRight-links a {
  font-family: inherit;
  font-style: inherit;
  color: inherit;
  text-decoration: none;
}



/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 * http://juicystudio.com/article/screen-readers-display-none.php
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

.toCenterVertically {
  display: table;
  border-spacing: 0;
  border-collapse: 0;
  height: 100%; width: 100%;
}
.toCenterVertically > div {
  display: table-cell;
  height: 100%; width: 100%;
  vertical-align: middle;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */


@media only screen and (max-width: 767px) {
  .Header {
    height: 70px;
    background: #fff;
    border-bottom: #ddd 1px solid;
  }
  .HeaderCenter {
    top: 15px;
    width: 50%;
    max-width: 180px;
  }
  .HeaderCenter-subtitle {
    display: none;
  }
  .Header-left {
    top: 25px;
  }
  .HeaderLeft-lang {
    display: none;
  }
  .Header-right {
    display: none;
  }
  .HeaderMenu-list {
    top: 20%;
  }
  .Header-menu .close {
    top: 16px; right: 20px;
  }
  .Page-home .Intro {
    height: 220px;
  }
  .Page-contact .Intro {
    height: 400px;
  }
  .Intro-bg {
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
  .Intro-encart {
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
  .Page-home .Intro-encart {
    position: absolute;
    top: 70px; left: auto;
    margin: 0; padding: 0;
  }
  .Page-contact .Intro-encart {
    position: absolute;
    top: 130px; left: auto;
    margin: 0;
  }
  .IntroEncart {
    height: 100%; width: 100%;
  }
  .Page-contact .IntroEncart {
    height: auto; width: 100%;
  }
  .IntroEncart .welcome {
    padding: 25px 0 10px;
    font-size: 1.9em;
  }
  .IntroEncart .startedNow {
    margin: 0 0 15px;
    font-size: 1.2em;
  }
  .IntroEncart-down {
    margin-left: -15px;
    height: 30px; width: 30px;
  }
  .Product, .Reservation, .Legal {
    margin-top: 70px;
  }
  .SelectYourCar {
    width: 100%;
    padding: 20px 0 0 70px;
    text-align: center;
  }
  .SelectYourCar-text {
    margin-left: -30px;
    font-size: 1.1em;
  }
  .SelectYourCar-text:before {
    left: auto;
    margin-left: -50px;
    top: 20px;
    width: 39px; height: 14px;
  }
  .CarSlider-previous {
    left: 15px;
  }
  .CarSlider-next {
    right: 15px;
  }
  .CarSlide-title {
    margin-left: -30px;
    font-size: 2em;
  }
  .CarSlide-title img {
    width: 40px; height: 14px;
    margin-right: 10px;
  }
  .CarSlide-priceCalendar {
    margin-bottom: 0;
  }
  .CarSlide-priceCalendarContainer {
    margin: 0;
  }
  .CarSlide-priceCalendar tbody tr:nth-of-type(2n+1) {
    background: #f2f2f2;
  }
  .BookNow {
    height: auto;
    margin: 0; padding: 20px 0 30px 0;
  }
  .BookNow-content {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .BookNow-title {
    float: none;
    width: 100%;
    margin: 0 0 20px 0; padding: 0;
    font-size: 2em;
    text-align: center;
  }
  .BookNow-title .exclamation {
    display: none;
  }
  .BookNow-ul {
    width: 70%;
    margin: 0 auto; padding: 0;
    float: none;
  }
  .BookNow-li {
    margin: 0 0 15px 0; padding: 0;
  }
  .BookNow-li:last-child {
    margin: 0 0 20px 0;
  }
  .BookNow-legend {
    display: block;
    width: 100%;
    margin: 0 0 4px 0; padding: 0;
    font-size: 1em;
    text-align: center;
  }
  .BookNow-datepicker {
    display: block;
    width: 100%;
    margin: 0; padding: 0;
    font-size: 1.2em;
    line-height: 23px;
    text-align: center;
  }
  #ui-datepicker-div, #ui-datepicker-div a {
    font-size: 1.2em;
  }
  .BookNow-send {
    float: none;
    width: 70%;
    margin: 0 auto; padding: 0;
    line-height: 23px;
    font-size: 1.2em;
  }
  .Car {
    width: 100%;
  }
  .Car.black {
    height: 120px;
  }
  .Car.black p {
    margin: 0; padding: 0 0 0 0;
    font-size: 2em;
  }
  .Car.black img {
    height: 39px; width: 80px;
  }
  .Car a:hover .overlay {
    top: 100%;
  }
  .Car .bg {
    display: block;
    width: 70%;
    margin: 0 15%;
  }
  .Car .bg img {
    width: 100%;
  }
  .Car .bg {
    padding: 25% 0 10% 0;
  }
  .Car .subtitle {
    display: block;
    margin-bottom: 15%;
  }
  .Reservation {
    height: 132px;
  }
  .Reservation-p {
    margin: 0; padding: 0 4em;
    font-size: 1.4em;
    line-height: 24px;
  }
  .Legal {
    margin-top: 70px;
    padding: 2em 10%;
  }
  .Legal-title {
    font-size: 2em;
  }
  .Legal-p {
    font-size: 1.4em;
    line-height: 1.6;
  }
  .Form {
    padding: 2.7em 2em;
  }
  .Form-legend {
    width: 40%;
    font-size: 1em;
    line-height: 2.3em;
  }
  .Form-input {
    padding: 0 1em;
    line-height: 2.3em;
    width: 60%;
  }
  .Form-textarea {
    padding: 0 1em;
    height: 100px;
    line-height: 2.3em;
    width: 60%;
  }
  .FormMessage {
    margin-top: 2em;
  }
  .FormMessage .Form-legend {
    float: none;
  }
  .FormMessage .Form-textarea {
    float: none;
    width: 100%;
  }
  .Form-send {
    float: none;
    text-align: center;
  }
  .FormSend {
    cursor: pointer;
    padding: 10px 25px;
    font-size: 1em;
  }
  .Confirmation-answer, .Confirmation-info {
    margin: 12px 0;
    font-size: 12px;
  }
  .Footer {
    height: auto;
    padding: 78px 0 57px 0;
  }
  .Footer-left {
    position: relative;
    top: auto; left: auto;
    text-align: center;
  }
  .FooterLeft-callus {
    margin: 50px 0 20px 0;
  }
  .FooterLeft-phone {
    margin: 0 0 40px 0;
  }
  .Footer-right {
    position: relative;
    top: auto; right: auto;
  }
  .FooterRight {
    text-align: center;
  }
}


@media only screen and (min-width: 992px) {
  .Intro {
    height: 572px;
  }
  .BookNow {
    height: 57px;
    padding: 17px 0;
    overflow: hidden;
  }
  .BookNow-content {
    width: 926px;
  }
  .BookNow-title {
    margin: 5px 50px 0 0; padding: 0;
  }
  .BookNow-ul {
    float: left;
    width: 675px;
    margin: 0;
  }
  .BookNow-li {
    float: left;
    margin: 0; padding: 0 3.15em;
    border-right: #ff6e2c 1px solid;
  }
  .BookNow-li:last-child {
    margin: 0;
  }
  #ui-datepicker-div, #ui-datepicker-div a {
    font-size: 1.2em;
  }
  .BookNow-send {
    margin: 0;
  }
  .Car {
    height: auto; width: 25%;
  }
  .Car:nth-of-type(2), .Car:nth-of-type(4), .Car:nth-of-type(5),
  .Car:nth-of-type(7), .Car:nth-of-type(10) {
    background: #fff;
  }
  .Car:nth-of-type(3), .Car:nth-of-type(6), .Car:nth-of-type(8),
  .Car:nth-of-type(9) {
    background: #f2f2f2;
  }
  .CarSlider-previous, .CarSlider-next {
    display: block;
    top: 50%;
  }
  .CarSlide-figure {
    float: left;
    width: 35%;
    margin: 5% 5% 5% 10%;
  }
  .CarSlide-content {
    float: left;
    width: 40%;
    margin: 3% 10% 3% 0;
    text-align: right;
  }
  .CarSlideEquipments {
    display: none;
  }
  .CarSlideEquipmentsBottom {
    display: block;
  }
  .CarSlide-priceCalendar {
    float: right;
    position: relative;
    left: auto;
    margin: 1em 0 2em 0;
    width: auto;
  }
  .CarSlide-priceCalendarContainer {
    margin: 0;
  }
  .Reservation {
    height: 162px;
  }
  .Reservation-p {
    margin: 0; padding: 0 4em;
    font-size: 2em;
  }
  .Form {
    padding-bottom: 10em;
  }
  .Form-ul {
    background: url(../img/form-bg.gif) 51% 1em no-repeat;
  }
  .Form-li {
    float: left;
    width: 45%;
    margin: 1em 10% 0 0;
  }
  .Form-li:nth-of-type(2n) {
    margin: 1em 0 0 0;
  }
  .Form-legend {
    width: 30%;
    font-size:
  }
  .Form-input {
    width: 70%;
  }
  .FormMobile {
    margin: 1em 0 1.5em 0;
  }
  .FormMessage {
    float: none;
    clear: both;
    width: 100%;
  }
  .FormMessage .Form-legend {
    padding-top: .5em;
    width: 13.5%;
    line-height: 1.4;
  }
  .FormMessage .Form-legend span {
    display: block;
  }
  .FormMessage .Form-textarea {
    width: 86.5%;
  }
  .Form-send {
    margin-top: 5em;
  }
}

@media only screen and (min-width: 1100px) {
  .Intro-encart {
    margin-left: -270px;
  }
  .IntroEncart {
    width: 540px; height: 209px;
  }
  .IntroEncart .welcome {
    margin: 0; padding: 50px 0 12px;
    font-size: 2.2em;
  }
  .IntroEncart .startedNow {
    margin: 0 0 18px; padding: 0;
    font-size: 1.8em;
  }
  .IntroEncart-down {
    margin-left: -23px;
    height: 46px; width: 46px;
  }
  .SelectYourCar {
    padding: 16px 0 0 78px;
  }
  .SelectYourCar-text:before {
    left: 0;
  }
  .CarSlider {
    max-width: 1100px;
    margin: 0 auto;
  }
  .Cars {
    padding: 80px 0;
  }
  .Legal {
    padding: 4em 20%;
  }
  .Legal-title {
    font-size: 3em;
  }
  .Legal-p {
    font-size: 1.8em;
  }
  .Footer-left {
    left: 0;
  }
  .Footer-right {
    right: 0;
  }
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
