@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/* line 5, ../../../../../.rvm/gems/ruby-2.4.0@global/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../../../.rvm/gems/ruby-2.4.0@global/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../../.rvm/gems/ruby-2.4.0@global/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../../.rvm/gems/ruby-2.4.0@global/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../../.rvm/gems/ruby-2.4.0@global/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../../.rvm/gems/ruby-2.4.0@global/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../../.rvm/gems/ruby-2.4.0@global/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../../.rvm/gems/ruby-2.4.0@global/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../../.rvm/gems/ruby-2.4.0@global/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* VARIABLE */
/* MAIN VARIABLE COLOR */
/* line 9, ../sass/screen.scss */
html {
  scroll-behavior: smooth;
}

/* line 13, ../sass/screen.scss */
body {
  font-family: "Montserrat", sans-serif;
}

/* KEYFRAMES */
@keyframes opactityTo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  50% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes rightToLeft {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 80px;
  }
}
@keyframes rightToLeftOpa {
  from {
    margin-left: 50px;
    opacity: 0;
  }
  to {
    margin-left: 0;
    opacity: 1;
  }
}
/* Header */
/* line 63, ../sass/screen.scss */
.header {
  height: 100vh;
  /*
    MENU BURGER
  */
}
/* line 65, ../sass/screen.scss */
.header .navbar {
  padding: 25px 50px;
  background: #fff;
}
/* line 69, ../sass/screen.scss */
.header .navbar .logo img {
  max-width: 165px;
}
/* line 75, ../sass/screen.scss */
.header .navbar .menu ul li {
  display: inline-block;
  padding: 0 20px;
}
/* line 78, ../sass/screen.scss */
.header .navbar .menu ul li a {
  font-weight: 300;
  color: #474746;
  text-decoration: none;
}
/* line 83, ../sass/screen.scss */
.header .navbar .menu ul li a .youtube p {
  display: inline-block;
}
/* line 86, ../sass/screen.scss */
.header .navbar .menu ul li a .youtube img {
  max-width: 24px;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
/* line 101, ../sass/screen.scss */
.header .menu-burger {
  width: 40px;
  height: 30px;
  z-index: 9999;
  position: absolute;
  right: 30px;
  top: 50px;
  cursor: pointer;
  display: none;
  transition: 0.5s cubic-bezier(0.47, 0.38, 0.26, 1);
}
/* line 111, ../sass/screen.scss */
.header .menu-burger .bar {
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background: #B1DDE8;
  display: block;
  position: relative;
  margin-top: 10px;
  transition: 0.2s cubic-bezier(0.47, 0.38, 0.26, 1);
}
/* line 120, ../sass/screen.scss */
.header .menu-burger .bar::before, .header .menu-burger .bar::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background: #B1DDE8;
  transition: 0.5s cubic-bezier(0.47, 0.38, 0.26, 1);
}
/* line 129, ../sass/screen.scss */
.header .menu-burger .bar::before {
  top: -10px;
  left: 0;
}
/* line 133, ../sass/screen.scss */
.header .menu-burger .bar::after {
  top: 10px;
  left: 0;
}
/* line 139, ../sass/screen.scss */
.header .menu-burger.blanc .bar {
  background: #fff;
}
/* line 141, ../sass/screen.scss */
.header .menu-burger.blanc .bar::before, .header .menu-burger.blanc .bar::after {
  background: #fff;
}
/* line 147, ../sass/screen.scss */
.header .menu-burger.open .bar {
  background: transparent;
}
/* line 149, ../sass/screen.scss */
.header .menu-burger.open .bar::before {
  top: -4px;
  left: -6px;
  transform: rotate(45deg);
}
/* line 154, ../sass/screen.scss */
.header .menu-burger.open .bar::after {
  transform: rotate(-45deg);
  transform-origin: bottom left;
}
/* line 161, ../sass/screen.scss */
.header .menu-responsive {
  display: none;
}
/* line 164, ../sass/screen.scss */
.header .video {
  height: 84%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
/* line 169, ../sass/screen.scss */
.header .video img {
  width: 100%;
  height: auto;
  position: absolute;
  top: -20px;
  left: 0;
  bottom: 0;
  opacity: 1;
  animation: fadeOut 9s forwards;
}
/* line 179, ../sass/screen.scss */
.header .video iframe {
  width: 100%;
  height: 100%;
}
/* line 184, ../sass/screen.scss */
.header.not-home {
  height: auto;
}

/* Présentation */
/* line 190, ../sass/screen.scss */
.presentation {
  padding: 180px 0 150px;
  position: relative;
}
/* line 193, ../sass/screen.scss */
.presentation .number {
  font-size: 20rem;
  font-weight: 200;
  position: absolute;
  left: -70px;
  top: -10px;
  color: #B1DDE8;
  opacity: 0.2;
}
/* line 202, ../sass/screen.scss */
.presentation .container {
  position: relative;
}
/* line 205, ../sass/screen.scss */
.presentation .img {
  position: relative;
}
/* line 207, ../sass/screen.scss */
.presentation .img .quote {
  position: absolute;
}
/* line 209, ../sass/screen.scss */
.presentation .img .quote img {
  max-width: 70px;
}
/* line 212, ../sass/screen.scss */
.presentation .img .quote.q-1 {
  top: -28px;
  left: 475px;
}
/* line 216, ../sass/screen.scss */
.presentation .img .quote.q-2 {
  bottom: -28px;
  left: -30px;
}
/* line 221, ../sass/screen.scss */
.presentation .img img {
  max-width: 510px;
}
/* line 225, ../sass/screen.scss */
.presentation .text {
  max-width: 60%;
  padding: 90px 50px;
  background: #F8F8F8;
  position: absolute;
  bottom: -50px;
  right: 0;
}
/* line 232, ../sass/screen.scss */
.presentation .text .ferdy {
  position: absolute;
  top: -113px;
  right: 0;
}
/* line 236, ../sass/screen.scss */
.presentation .text .ferdy img {
  max-width: 100px;
}
/* line 240, ../sass/screen.scss */
.presentation .text .title {
  font-weight: 800;
  color: #B1DDE8;
  font-size: 3rem;
  position: absolute;
}
/* line 245, ../sass/screen.scss */
.presentation .text .title.t1 {
  top: -30px;
  left: -35px;
}
/* line 249, ../sass/screen.scss */
.presentation .text .title.t2 {
  bottom: -20px;
  right: -40px;
}
/* line 254, ../sass/screen.scss */
.presentation .text p {
  line-height: 20pt;
  font-size: 0.95rem;
  font-weight: 300;
}

/* Service */
/* line 263, ../sass/screen.scss */
.services {
  width: 100%;
  position: relative;
  z-index: 10;
}
/* line 267, ../sass/screen.scss */
.services .owl-carousel {
  width: 100%;
}
/* line 269, ../sass/screen.scss */
.services .owl-carousel .item {
  background: #fff;
}
/* line 272, ../sass/screen.scss */
.services .owl-carousel img {
  max-width: 100%;
}
/* line 276, ../sass/screen.scss */
.services .owl-nav {
  margin-top: -60px;
  position: relative;
  z-index: 2;
  padding: 0 30px;
}
/* line 282, ../sass/screen.scss */
.services .img-nav {
  max-width: 28px !important;
}
/* line 285, ../sass/screen.scss */
.services .owl-next {
  float: right;
}
/* line 291, ../sass/screen.scss */
.services .owl-prev.disabled img,
.services .owl-next.disabled img {
  opacity: 0.5;
}

/* Expérience */
/* line 299, ../sass/screen.scss */
.experiences {
  background-color: #F8F8F8;
  width: 100%;
  height: 3100px;
  position: relative;
  overflow: hidden;
}
/* line 305, ../sass/screen.scss */
.experiences .ascenseur {
  position: fixed;
  transform: translate(-50%, 0);
  top: 0;
  left: 50%;
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
  z-index: 2;
}
/* line 314, ../sass/screen.scss */
.experiences .ascenseur img {
  max-width: 390px;
}
/* line 317, ../sass/screen.scss */
.experiences .ascenseur span {
  font-weight: 900;
  font-size: 13pt;
  color: #fff;
  position: fixed;
  transform: translate(-50%, 0);
  left: 50%;
  top: 135px;
}
/* line 326, ../sass/screen.scss */
.experiences .ascenseur.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
/* line 332, ../sass/screen.scss */
.experiences .experience {
  position: absolute;
  right: 0;
  top: 17px;
  width: 100%;
  height: 16.6%;
  text-align: right;
  overflow: hidden;
  z-index: 1;
}
/* line 341, ../sass/screen.scss */
.experiences .experience .contenu {
  width: 100%;
  position: relative;
}
/* line 345, ../sass/screen.scss */
.experiences .experience .prez-exp {
  opacity: 0;
  animation: opactityTo 0.6s forwards 1.8s;
  height: 100%;
  position: relative;
}
/* line 351, ../sass/screen.scss */
.experiences .experience .logo {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
/* line 357, ../sass/screen.scss */
.experiences .experience .logo img {
  position: absolute;
  left: 37%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 42%;
}
/* line 365, ../sass/screen.scss */
.experiences .experience img {
  max-width: 32%;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translate(0, -50%);
}
/* line 372, ../sass/screen.scss */
.experiences .experience p {
  text-align: left;
  color: #000;
  font-size: 11pt;
  font-weight: 200;
  line-height: 20pt;
  margin-top: 5px;
  margin-bottom: 30px;
  padding: 0 50px 0 80px;
}
/* line 382, ../sass/screen.scss */
.experiences .experience h2 {
  font-size: 25pt;
  font-weight: 800;
  color: #B1DDE8;
  text-align: left;
  margin-bottom: 10px;
  padding: 0 50px 0 80px;
  opacity: 0;
  animation: opactityTo 0.6s forwards 1.2s;
}
/* line 391, ../sass/screen.scss */
.experiences .experience h2 sup {
  font-size: 18pt;
}
/* line 395, ../sass/screen.scss */
.experiences .experience .sol {
  width: 100%;
  height: 2px;
  background-color: #B1DDE8;
  position: absolute;
  bottom: 0;
}
/* line 402, ../sass/screen.scss */
.experiences .experience.e2, .experiences .experience.e4 {
  left: 0;
  top: 517px;
  text-align: left;
}
/* line 406, ../sass/screen.scss */
.experiences .experience.e2 img, .experiences .experience.e4 img {
  max-width: 32%;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translate(0, -50%);
}
/* line 413, ../sass/screen.scss */
.experiences .experience.e2 .logo, .experiences .experience.e4 .logo {
  right: 0;
  left: auto;
}
/* line 416, ../sass/screen.scss */
.experiences .experience.e2 .logo img, .experiences .experience.e4 .logo img {
  right: 25%;
  max-width: 23%;
  left: auto;
}
/* line 422, ../sass/screen.scss */
.experiences .experience.e2 p, .experiences .experience.e4 p {
  padding: 0 50px 0 30px;
}
/* line 425, ../sass/screen.scss */
.experiences .experience.e2 h2, .experiences .experience.e4 h2 {
  padding: 0 50px 0 30px;
}
/* line 429, ../sass/screen.scss */
.experiences .experience.e3 {
  top: 1017px;
}
/* line 431, ../sass/screen.scss */
.experiences .experience.e3 .trait {
  width: calc(86% - 270px);
}
/* line 434, ../sass/screen.scss */
.experiences .experience.e3 img {
  max-width: 28%;
}
/* line 438, ../sass/screen.scss */
.experiences .experience.e4 {
  top: 1517px;
}
/* line 440, ../sass/screen.scss */
.experiences .experience.e4 .trait {
  width: calc(86% - 420px);
  margin-left: 20px;
}
/* line 445, ../sass/screen.scss */
.experiences .experience.e4 .logo img {
  right: 17%;
  max-width: 40%;
}
/* line 451, ../sass/screen.scss */
.experiences .experience.e5 {
  top: 2017px;
}
/* line 453, ../sass/screen.scss */
.experiences .experience.e5 .trait {
  width: calc(86% - 420px);
  margin-left: 20px;
}
/* line 458, ../sass/screen.scss */
.experiences .experience.e5 .logo img {
  max-width: 65%;
}
/* line 463, ../sass/screen.scss */
.experiences .experience.e6 {
  top: 2517px;
}
/* line 465, ../sass/screen.scss */
.experiences .experience.e6 .trait {
  width: calc(86% - 420px);
  margin-left: 20px;
}
/* line 469, ../sass/screen.scss */
.experiences .experience.e6 .logo {
  right: 0;
  left: auto;
}
/* line 472, ../sass/screen.scss */
.experiences .experience.e6 .logo img {
  right: 17%;
  max-width: 40%;
  left: auto;
}
/* line 478, ../sass/screen.scss */
.experiences .experience.e6 img {
  max-width: 32%;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translate(0, -50%);
}

/* line 489, ../sass/screen.scss */
.contact {
  padding: 100px 0;
  position: relative;
  z-index: 3;
  background: #fff;
  overflow: hidden;
}
/* line 495, ../sass/screen.scss */
.contact .fond-bleu {
  background: #B1DDE8;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
/* line 504, ../sass/screen.scss */
.contact .container {
  position: relative;
}
/* line 506, ../sass/screen.scss */
.contact .container .logo-lcda {
  position: absolute;
  top: 5px;
  left: -180px;
  z-index: 3;
}
/* line 511, ../sass/screen.scss */
.contact .container .logo-lcda img {
  max-width: 42.5%;
}
/* line 516, ../sass/screen.scss */
.contact .number {
  font-size: 20rem;
  font-weight: 200;
  position: absolute;
  right: -56px;
  top: -10px;
  color: #B1DDE8;
  opacity: 0.2;
}
/* line 525, ../sass/screen.scss */
.contact .ferdy {
  position: absolute;
  bottom: 0;
  right: 50px;
}
/* line 529, ../sass/screen.scss */
.contact .ferdy img {
  max-width: 238px;
}
/* line 533, ../sass/screen.scss */
.contact .quote {
  position: relative;
  margin-left: -20px;
}
/* line 536, ../sass/screen.scss */
.contact .quote img {
  max-width: 38px;
}
/* line 540, ../sass/screen.scss */
.contact h2 {
  font-weight: 800;
  color: #fff;
  font-size: 2.7rem;
  position: relative;
  display: block;
  margin-bottom: 55px;
}
/* line 548, ../sass/screen.scss */
.contact form {
  position: relative;
  z-index: 10;
}
/* line 551, ../sass/screen.scss */
.contact form input,
.contact form textarea {
  display: block;
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  color: #474746;
  font-weight: 300;
  font-size: 1.2rem;
  padding: 15px;
  width: 92%;
  margin-bottom: 15px;
}
/* line 563, ../sass/screen.scss */
.contact form .btn {
  background: #fff;
  color: #474746;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.1rem;
  padding: 7px 18px;
  border-radius: 0;
  margin-top: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
/* line 575, ../sass/screen.scss */
.contact .coordonnees {
  padding: 55px 0;
}
/* line 578, ../sass/screen.scss */
.contact .adresse,
.contact .mail,
.contact .phone {
  text-align: center;
}
/* line 582, ../sass/screen.scss */
.contact .adresse .picto,
.contact .mail .picto,
.contact .phone .picto {
  display: block;
  margin: auto;
}
/* line 585, ../sass/screen.scss */
.contact .adresse .picto img,
.contact .mail .picto img,
.contact .phone .picto img {
  max-width: 36px;
  margin-bottom: 15px;
}
/* line 590, ../sass/screen.scss */
.contact .adresse p,
.contact .mail p,
.contact .phone p {
  font-size: 1.3rem;
  font-weight: 200;
  color: #474746;
  letter-spacing: 0.8pt;
}
/* line 595, ../sass/screen.scss */
.contact .adresse p a,
.contact .mail p a,
.contact .phone p a {
  color: #474746;
}
/* line 600, ../sass/screen.scss */
.contact .adresse,
.contact .mail {
  margin-bottom: 35px;
}
/* line 606, ../sass/screen.scss */
.contact .mail .picto img {
  max-width: 44px;
}
/* line 613, ../sass/screen.scss */
.contact .phone .picto img {
  max-width: 43px;
}

/* Mentions légales - RGPD */
/* line 621, ../sass/screen.scss */
.mentions {
  padding: 100px 0;
}
/* line 623, ../sass/screen.scss */
.mentions h1 {
  color: #B1DDE8;
  font-size: 3rem;
  margin-bottom: 50px;
}
/* line 628, ../sass/screen.scss */
.mentions h2 {
  color: #B1DDE8;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
/* line 633, ../sass/screen.scss */
.mentions p {
  margin-bottom: 40px;
  line-height: 20pt;
}
/* line 636, ../sass/screen.scss */
.mentions p a {
  color: #000;
  text-decoration: underline;
}

/* Footer */
/* line 644, ../sass/screen.scss */
footer {
  padding: 40px 0 25px;
}
/* line 646, ../sass/screen.scss */
footer p {
  display: inline-block;
  font-size: 0.95rem;
  max-width: 80%;
  color: #474746;
}
/* line 652, ../sass/screen.scss */
footer a {
  color: #474746;
}
/* line 654, ../sass/screen.scss */
footer a:hover {
  color: #474746;
}
/* line 658, ../sass/screen.scss */
footer .logo-lcda {
  padding-top: 23px;
}
/* line 660, ../sass/screen.scss */
footer .logo-lcda img {
  max-width: 120px;
}
/* line 664, ../sass/screen.scss */
footer .adresse {
  padding-top: 23px;
}
/* line 666, ../sass/screen.scss */
footer .adresse img {
  max-width: 15px;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
/* line 673, ../sass/screen.scss */
footer .mail {
  padding-top: 25px;
}
/* line 675, ../sass/screen.scss */
footer .mail img {
  max-width: 20px;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
/* line 683, ../sass/screen.scss */
footer .youtube img {
  max-width: 50px;
  display: block;
  margin: auto;
}
/* line 688, ../sass/screen.scss */
footer .youtube p {
  display: block;
  text-align: center;
  max-width: 100%;
}
/* line 694, ../sass/screen.scss */
footer .copy {
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #B1DDE8;
}
/* line 700, ../sass/screen.scss */
footer .copy span {
  display: inline-block;
  margin-right: 20px;
}
