@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;
}

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;
}

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

.habillage-index {
  width: 300px;
}

/*
 * Header
 */
.big-header {
  height: 94vh;
  max-height: 900px;
  position: relative;
  background: #00AEFF;
}
.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 {
  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: #006899;
}
.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: 25px;
}
#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;
}
#mobile-nav:after {
  top: 10px;
  left: 0;
}

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: #9B7EDE;
  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: #5e32c4;
}
body.nav_open .big-header header .main-nav ul li a:hover {
  color: #fff;
}

/*
 * 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 #82204A;
  border-radius: 0px;
}
.row-colonne .col:nth-child(2n) {
  border-left: solid #82204A;
  border-radius: 0px;
}

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

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

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

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

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

.map {
  width: 100vw;
}

footer {
  background: #9B7EDE;
  display: flex;
  padding: 50px;
}
footer a {
  color: #5e32c4;
}
footer a:hover {
  color: #fff;
}

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

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

.question {
  cursor: pointer;
}

.reponse {
  color: #231123;
}

.btn {
  color: #fff;
  background: #82204A;
  text-decoration: none;
  border-radius: 5px;
  padding: 10px;
}

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

.not_to_long {
  max-width: 600px;
}

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

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

  .col-index-img {
    display: 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 */
