/* typo */
/* mixin */
/* general */
* {
  font-family: 'Montserrat';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none; }

html {
  width: 100%;
  height: 100%;
  color: var(--grey);
  text-align: justify;
  scroll-behavior: smooth;
  /* colors */
  --white: #fff;
  --black: #000000;
  --grey: #404040;
  --grey2: #EFEFEF;
  --green: #39C64A;
  --green2: #18ba2b;
  --red: #DB0000;
  --shadow: 0px 4px 25px rgba(0, 0, 0, 0.1); }

body {
  min-height: 100%;
  color: var(--black);
  scroll-behavior: smooth;
  background-color: var(--white); }

/* images */
picture {
  display: inline-block;
  overflow: hidden; }

img {
  max-width: 100%; }

/* titre */
p, h1, h2, h3, h4, h5, h6, ul li {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--grey);
  margin: 0 0 15px; }
  p:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, ul li:last-child {
    margin-bottom: 0; }

.title0, .title, .title2, .title3, .subtitle {
  font-family: "m-plus",sans-serif;
  text-align: left; }

.title1 {
  font-size: 35px;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 2em; }

.subtitle {
  font-size: 27px;
  font-weight: 600;
  line-height: 1.1; }

.title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 20px; }

.title2 {
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 25px; }

.title3 {
  font-size: 18px;
  line-height: 1.6;
  font-weight: bolder; }

.big {
  font-size: 48px;
  font-weight: 600;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); }

.bigtxt {
  font-size: 30px;
  font-weight: 500; }

.txt2 {
  font-size: 20px; }

/* style texte */
.maj {
  text-transform: uppercase; }

.nomaj {
  text-transform: lowercase; }

.bold, strong {
  font-weight: 900 !important; }

::selection {
  background-color: var(--purple);
  color: --white; }

::-moz-selection {
  background-color: var(--purple);
  color: var(--white); }

/* alignement texte */
.tleft {
  text-align: left; }

.tright {
  text-align: right; }

.tcenter {
  text-align: center; }

.tjustify {
  text-align: justify; }

/* lien */
a {
  color: var(--blue);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear; }
  a:hover {
    color: var(--green); }
  a.nolink {
    cursor: initial; }

/* bouton */
.btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  min-height: 55px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  padding: 5px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  background: var(--green);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear; }
  .btn:hover {
    color: var(--white);
    transform: scale(1.1); }

/* colors */
.white {
  color: var(--white); }

.bggrey {
  background: var(--grey2); }

.bloc {
  padding: 40px;
  border-radius: 40px;
  box-shadow: var(--shadow); }

/* colonnes */
section {
  position: relative; }

.row {
  width: 100%;
  max-width: 1320px;
  display: grid;
  grid-template-columns: repeat(auto-fit, 1fr);
  grid-gap: 60px;
  position: relative;
  margin: 0 auto;
  padding: 0px 15px 50px; }
  .row:first-child {
    padding-top: 50px; }
  .row.nogap {
    grid-gap: 0; }
  .row.acenter {
    align-items: center; }
  .row.tcenter > .col > * {
    text-align: center; }
  .row.full {
    max-width: inherit; }
  .row .row {
    padding: 0; }
  .row.col1x {
    grid-template-columns: repeat(1, 1fr); }
  .row.col2x {
    grid-template-columns: repeat(2, 1fr); }
  .row.col3x {
    grid-template-columns: repeat(3, 1fr); }
  .row.col4x {
    grid-template-columns: repeat(4, 1fr); }
  .row.col5x {
    grid-template-columns: repeat(5, 1fr); }
  .row.col6x {
    grid-template-columns: repeat(6, 1fr); }
  .row.col7x {
    grid-template-columns: repeat(7, 1fr); }
  .row.col8x {
    grid-template-columns: repeat(8, 1fr); }
  .row.col9x {
    grid-template-columns: repeat(9, 1fr); }
  .row.col10x {
    grid-template-columns: repeat(10, 1fr); }
  .row.col11x {
    grid-template-columns: repeat(11, 1fr); }
  .row.col12x {
    grid-template-columns: repeat(12, 1fr); }
  .row.col211 {
    grid-template-columns: 2fr repeat(2, 1fr); }
  .row.col121 {
    grid-template-columns: 1fr 2fr 1fr; }
  .row.col112 {
    grid-template-columns: repeat(2, 1fr) 2fr; }
  .row.col31 {
    grid-template-columns: 60% 1fr; }
  .row.col13 {
    grid-template-columns: 30% 1fr; }
  .row .col {
    position: relative; }
    .row .col.tcenter * {
      text-align: center; }

.mobil {
  display: none; }

/* header */
#header {
  color: var(--white);
  background: url("../img/slide.png") no-repeat scroll top center/cover; }
  #header .col3x {
    max-width: 1400px;
    grid-template-columns: 200px 1fr 400px; }
    #header .col3x .c2 {
      padding-top: 40px; }
  #header #logo {
    max-width: 170px; }
  #header .title0 {
    margin: 15px 0 20px; }

.form {
  border-radius: 40px;
  box-shadow: var(--shadow);
  background-color: var(--white); }
  .form .headform {
    padding: 20px 0;
    border-radius: 40px 40px 0px 0px;
    background: var(--grey2); }
    .form .headform p {
      font-size: 17px;
      font-weight: 700;
      color: var(--red); }
  .form .bodyform {
    padding: 20px 20px 0px; }
  .form .little {
    font-size: 11px;
    color: var(--grey);
    margin: 0 0 10px; }
  .form .bottomform {
    padding: 20px;
    border-radius: 0px 0px 40px 40px;
    background: var(--grey2); }
    .form .bottomform p {
      font-size: 17px;
      font-weight: 700;
      color: var(--red); }
  .form label {
    display: block;
    position: relative;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0px; }
  .form input:not([type="submit"]),
  .form textarea,
  .form .chosen-single {
    width: 100%;
    max-width: 100%;
    height: 33px !important;
    font-family: 'Montserrat';
    font-size: 12px;
    line-height: 15px;
    color: var(--black) !important;
    margin: 10px 0 10px;
    padding: 8px !important;
    border: 1px solid #054573 !important;
    border-radius: 10px !important;
    background: var(--white) !important;
    box-shadow: none !important; }
  .form .active-result {
    font-size: 13px; }
  .form .chosen-container-single .chosen-single div {
    display: flex !important; }
  .form .chosen-container-single .chosen-single div b {
    height: 21px !important;
    margin: auto; }
  .form .form2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5px; }
    .form .form2 label {
      width: calc(50% - 5px); }
  .form .phoneform {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 8px; }
    .form .phoneform .prefphone {
      width: 90px;
      margin: 0; }
    .form .phoneform .phone {
      width: calc(100% - 4px - 90px);
      margin: 0; }
  .form .chosen-container.chosen-container-single {
    width: 100% !important; }
  .form input.btn {
    width: 100%;
    margin-top: 10px; }
  .form textarea {
    min-width: 100%;
    min-height: 150px;
    max-height: 250px;
    font-family: "roboto", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--black0);
    margin: 2px 0 0;
    padding: 6px;
    border: 1px solid var(--grey2);
    border-radius: 3px; }
@keyframes boinkyOne {
  0% {
    transform: rotateY(0);
    animation-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75); }
  10% {
    transform: rotateY(15deg); }
  20% {
    transform: rotateY(-15deg); }
  30% {
    transform: rotateY(15deg); }
  40% {
    transform: rotateY(-15deg); }
  50% {
    transform: rotateY(15deg); }
  60% {
    transform: rotateY(-15deg); }
  100% {
    transform: rotateY(0); } }
  .form .btn {
    margin: 0 0 15px;
    animation-name: boinkyOne;
    animation-duration: 4s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: infinite; }
  .form .error {
    display: none;
    font-size: 9px;
    color: red;
    position: absolute;
    bottom: -10px;
    left: 6px; }
    .form .error.error_telephone {
      left: 116px; }
    .form .error.open {
      display: block; }
  .form .succes {
    display: none;
    font-size: 12px;
    color: green;
    text-align: center;
    margin: 5px 0 15px; }
    .form .succes.open {
      display: block; }

#famous {
  background: url("../img/bg.png") no-repeat scroll center left/auto 80%; }

#points4 {
  margin-top: 50px; }
  #points4 .col {
    text-align: center; }
    #points4 .col p {
      font-size: 18px;
      font-weight: 500; }

#formfooter .btn {
  width: 80%;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 30px;
  padding: 20px; }

/* footer */
#footer {
  position: relative;
  background: var(--red); }
  #footer img {
    max-width: 100px;
    margin: 0 auto 30px; }
  #footer p {
    font-size: 12px;
    color: var(--white); }

/* responsive */
@media screen and (max-width: 950px) {
  .row {
    grid-gap: 20px;
    padding: 30px 15px; }

  #container .row.col1x, #container .row.col2x, #container .row.col3x, #container .row.col5x, #container .row.col6x
  #container .row.col7x, #container .row.col8x, #container .row.col9x, #container .row.col10x, #container .row.col11x, #container .row.col12x, #container .row.col211, #container .row.col121, #container .row.col112, #container .row.col31, #container .row.col13 {
    grid-template-columns: repeat(1, 1fr); }
  #container .row.col4x {
    grid-template-columns: repeat(2, 1fr); }
    #container .row.col4x .col {
      max-width: 300px;
      margin: auto; }

  #header {
    text-align: center;
    background-size: 100% 450px; }
    #header > .row {
      padding-top: 10px;
      grid-template-areas: "c1 c2" "c3 c3";
      grid-template-columns: 1fr 2fr !important;
      grid-template-rows: 500px 1fr; }
      #header > .row .c1 {
        grid-area: c1;
        text-align: left; }
      #header > .row .c2 {
        grid-area: c2;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end; }
        #header > .row .c2 * {
          min-width: 360px;
          text-align: left;
          color: var(--black); }
      #header > .row .c3 {
        grid-area: c3; }
      #header > .row #logo {
        max-width: 70px; }

  #tesla .c2 {
    order: 2; } }
@media screen and (max-width: 450px) {
  .title1 {
    font-size: 29px;
    line-height: 1.2; } }

/*# sourceMappingURL=style.css.map */
