@charset "UTF-8";
#anime-load {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #82204A;
  z-index: 2;
  opacity: 1;
  transition: opacity 1s ease;
}
#anime-load p {
  text-align: center;
  color: #fff;
  font-family: "Sansita Swashed", cursive;
  opacity: 0.6;
  margin-top: 60vh;
}

.circle {
  border-radius: 50%;
  border: 1px solid #fff;
  width: 0px;
  height: 0px;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  animation: circle 5s ease infinite;
}

.second {
  animation: circle 2s ease infinite;
}

@keyframes circle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
    transform: translate(-50px, -50px);
  }
}
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
  overflow-x: hidden;
}
html.nav_open, body.nav_open {
  overflow: hidden;
}

ol {
  list-style: decimal !important;
}

h1, h2, h3, h4 {
  font-family: "Sansita Swashed", cursive;
}

h2, .like-h2 {
  font-size: 1.8em;
  font-size: bold;
  font-family: "Sansita Swashed", cursive;
}

body.nav_open {
  overflow: hidden;
}

div {
  border-radius: 5px;
}

a {
  cursor: pointer;
}

.logo {
  width: 50vw;
  max-width: 300px;
  min-width: 200px;
  padding: 10px 0 0 10px;
}

.habillage-index {
  width: 300px;
}

/*
 * Header
 */
.text_call {
  text-align: center;
  transition: all 0.5s ease;
  padding: 10px;
  font-size: 1.2em;
  color: #0e3636;
}

.big-header {
  height: 94vh;
  max-height: 900px;
  position: relative;
  background: #238787;
}
.big-header .premiere-impression {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 100px 50px;
}
.big-header .premiere-impression h1, .big-header .premiere-impression p {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.big-header .left-deco, .big-header .right-deco {
  position: absolute;
  height: 60vw;
  max-height: 500px;
}
.big-header img.left-deco {
  left: 0;
  top: 25%;
}
.big-header img.right-deco {
  right: 0;
  bottom: 0;
}
.big-header img.bulle1 {
  height: 10vw;
  max-width: 125px;
  max-height: 113px;
  top: 30%;
  left: 20px;
}
.big-header img.bulle2 {
  height: 5vw;
  max-width: 59px;
  max-height: 47px;
  top: 40%;
  left: 10px;
}
.big-header img.blob1 {
  height: 20vw;
  max-width: 172px;
  max-height: 292px;
  top: 45%;
}

/* 
 * Navigation
 */
a, button {
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Primary nav */
.main-nav {
  display: flex;
  justify-content: space-between;
}
.main-nav ul {
  list-style: none;
  display: none;
}
.main-nav ul li a {
  display: block;
  color: #0e3636;
}
.main-nav ul li a:hover {
  color: #fff;
}

/* Mobile nav */
#mobile-nav {
  display: block;
  position: absolute;
  top: 50px;
  right: 50px;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: all;
  width: 25px;
  height: 60px;
  color: #fff;
}
#mobile-nav:focus {
  outline: none;
}
#mobile-nav:before, #mobile-nav:after {
  content: "";
  display: block;
  width: 25px;
  height: 5px;
  background: #fff;
  position: absolute;
  border-radius: 5px;
  transition: all ease 1s;
}
#mobile-nav:before {
  top: 0;
  left: 15px;
}
#mobile-nav:after {
  top: 10px;
  left: 10px;
}

body.nav_open .big-header .premiere-impression {
  margin: 0;
}
body.nav_open .big-header #mobile-nav:before {
  transform: rotate(45deg) translate(2px, 11px);
}
body.nav_open .big-header #mobile-nav:after {
  transform: rotate(-45deg);
}
body.nav_open .big-header header {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #7d4d64;
  z-index: 99;
}
body.nav_open .big-header header .main-nav {
  display: block;
}
body.nav_open .big-header header .main-nav ul {
  display: flex;
  flex-direction: column;
}
body.nav_open .big-header header .main-nav ul li a {
  font-size: 2em;
  padding: 20px;
  color: #3e2632;
}
body.nav_open .big-header header .main-nav ul li a:hover {
  color: #fff;
  background: #3e2632;
}

/*
 * Général
 */
div > h1, div > h2 {
  margin-top: 0;
}

.row {
  display: flex;
  margin: 50px auto;
}

.row-colonne {
  flex-direction: column;
}
.row-colonne .col:nth-child(2n+1) {
  text-align: right;
  border-right: solid #F5AA27;
  border-radius: 0px;
}
.row-colonne .col:nth-child(2n) {
  border-left: solid #F5AA27;
  border-radius: 0px;
}

.col {
  margin: 5px auto;
  padding: 20px;
}

.col-index-text {
  width: 90vw;
  padding: 50px 20px;
  background: #7d4d64;
  color: #fff;
}

.col-index-text:nth-child(2n) {
  text-align: right;
  background: #238787;
}

.col-index-img {
  width: 25vw;
  align-self: center;
}

.col-index-img:nth-child(2n) {
  transform: translateX(-20px);
}

.venir {
  margin-left: 50px;
}

.map {
  width: 100vw;
}

footer {
  background: #238787;
  display: flex;
  flex-direction: row-reverse;
  padding: 20px;
}
footer a {
  color: #0e3636;
  font-size: 0.8em;
  margin: 0 10px;
}
footer a:hover {
  color: #fff;
}

#txt_legale {
  width: 80vw;
  transform: translateX(-50%);
}

.big-header-faq {
  max-height: none;
  height: auto;
  padding-bottom: 50px;
}

.faq_group {
  margin: 20px auto;
  max-width: 80vw;
  background: rgba(211, 222, 223, 0.5);
}

.question {
  cursor: pointer;
  background: #d3dedf;
  padding: 5px 0 5px 15px;
}

.reponse {
  color: #231123;
  padding: 20px;
  text-align: justify;
}
.reponse li {
  margin-bottom: 10px;
}

.reponse-close {
  display: none;
}

.hero-card-img {
  width: 50vw;
  max-width: 500px;
}

/*
 * Usables class
*/
.bold-dark {
  color: #0e3636;
  font-weight: bolder;
}

.citation {
  margin: 30px auto;
  padding: 0 30px;
  position: relative;
  align-self: center;
  font-size: 1.2em;
  width: 50vw;
  max-width: 550px;
}
.citation:before, .citation::after {
  content: '"';
  display: inline-block;
  font-size: 3em;
  font-weight: bold;
  font-family: "Sansita Swashed", cursive;
  color: #F5AA27;
  position: absolute;
}
.citation::before {
  transform: rotate(-45deg);
  top: -30px;
  left: 0px;
}
.citation::after {
  transform: rotate(135deg);
  bottom: -30px;
  right: 20px;
}

.btn {
  color: rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-radius: 5px;
  padding: 10px;
  margin: 0 5px;
  display: inline-block;
  border: none;
  font-size: 1em;
  cursor: pointer;
}
.btn:hover {
  background: white;
  color: rgba(0, 0, 0, 0.7);
}

.shadow {
  box-shadow: 1px 4px 12px rgba(0, 0, 0, 0.5);
}

.not_to_long {
  max-width: 600px;
}

/*
*   ADATPTATIVE
*/
@media all and (max-height: 600px) {
  .big-header {
    height: auto;
  }
}
/*
 * width <= 375px
 * petits smartphone
 */
@media all and (max-width: 375px) {
  .big-header .premiere-impression {
    margin: 50px;
  }
  .big-header .premiere-impression img {
    display: none;
  }

  .col-index-text {
    width: 100vw;
  }

  /*.col-index-img {
      display: none;
  }*/
  .reponse {
    text-align: left;
  }
}
@media all and (max-width: 600px) {
  .row-hero-card {
    flex-direction: column;
    align-items: center;
  }

  .citation {
    width: 80vw;
    margin: 0;
    padding: 0;
  }

  .btn {
    padding: 20px;
    font-size: 1.5em;
  }

  .col-index-img {
    width: auto;
  }
  .col-index-img:nth-child(2n) {
    transform: none;
  }
}
/*
 *  width >= 768px
 *  ipad, 15' old screen, some phone on vertical
*/
@media all and (min-width: 769px) {
  #mobile-nav {
    display: none;
  }

  .main-nav {
    justify-content: space-evenly;
  }
  .main-nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    width: 60vw;
  }
  .main-nav ul li a {
    padding: 50px 10px;
  }

  .big-header .left-deco, .big-header .right-deco {
    height: 60vh;
  }
  .big-header img.bulle1 {
    height: 10vh;
  }
  .big-header img.bulle2 {
    height: 5vh;
  }
  .big-header img.blob1 {
    height: 20vh;
  }

  .col-index-text {
    width: 60vw;
    padding: 150px 90px;
  }

  .col-index-img {
    width: 40vw;
    transform: translateX(-40px);
  }

  .habillage-index {
    width: 40vw;
  }

  .row-colonne {
    flex-direction: row;
  }
}

/*# sourceMappingURL=main.css.map */
