@charset "UTF-8";
.intro .button, #button-timeline {
  border-radius: 40px;
  background-color: #254042;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.2em;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 8% 0% 5% 40%;
}
.intro .button:hover, #button-timeline:hover {
  background-color: #57959a;
}
@media screen and (max-width: 992px) {
  .intro .button, #button-timeline {
    width: 180px;
    font-size: 1.1em;
  }
}
@media screen and (max-width: 768px) {
  .intro .button, #button-timeline {
    display: block;
    margin: 5% auto;
    text-align: center;
    padding: 15px;
  }
}

#button-timeline {
  width: 250px;
  margin: 2% 0;
}

.intro .button span, #button-timeline span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  color: #FFFFFF;
}

.intro .button span:after, #button-timeline span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.intro .button:hover span, #button-timeline:hover span {
  padding-right: 25px;
}

.intro .button:hover span:after, #button-timeline:hover span:after {
  opacity: 1;
  right: 0;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 5% 0;
  width: 100%;
}

#logo img {
  width: 100px;
  height: 100px;
  margin: 10px;
}
@media screen and (max-width: 992px) {
  #logo img {
    margin: 10px 0;
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #logo img {
    margin: 5px;
  }
}

nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

nav a {
  font-variant: small-caps;
  padding: 1em 1.8em;
  background-color: #FFF;
  letter-spacing: 1px;
  font-size: 1.3em;
  color: #254042;
  text-decoration: none;
}
@media screen and (max-width: 1440px) {
  nav a {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 992px) {
  nav a {
    padding: 1em 1.5em;
    font-size: 1.1em;
  }
}
@media screen and (max-width: 768px) {
  nav a {
    padding: 1em 0.5em;
    font-size: 1em;
  }
}

nav a:hover {
  background-color: #57959a;
  opacity: 0.8;
  text-decoration: underline;
  transition: 0.8s;
  color: #FFF;
}

nav .active {
  background-color: #7dd6dc;
  color: #192a2c;
  cursor: not-allowed;
  font-variant: small-caps;
  padding: 1em 1.8em;
  letter-spacing: 1px;
  font-size: 1.3em;
}
@media screen and (max-width: 1440px) {
  nav .active {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 992px) {
  nav .active {
    padding: 1em 1.5em;
    font-size: 1.1em;
  }
}
@media screen and (max-width: 768px) {
  nav .active {
    padding: 1em 0.5em;
    font-size: 1em;
  }
}

footer {
  width: 100%;
  height: 200px;
  background: #254042;
  color: #FFF;
  line-height: 200px;
  vertical-align: middle;
  text-align: center;
  margin: 5% 0 0 0;
  font-size: 1.4em;
}
footer a {
  color: #f2fafb;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
  color: #7dd6dc;
}
@media screen and (max-width: 768px) {
  footer {
    height: 80px;
    line-height: 80px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  max-width: 1920px;
  width: 98%;
  margin: 0 auto;
  color: #192a2c;
}
@media screen and (max-width: 992px) {
  body {
    width: 99%;
  }
}

a {
  color: #3e6b6e;
}

a:hover {
  cursor: pointer;
  color: #7dd6dc;
}

li {
  list-style-type: none;
}

h1 {
  color: #254042;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 600;
  font-size: 1.8em;
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.2em;
  }
}

h2 {
  font-weight: 300;
  font-size: 1.8em;
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.2em;
  }
}

h3 {
  font-weight: 400;
  font-size: 1.2em;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 1em;
  }
}

p, ol {
  font-size: 1.1em;
  line-height: 1.4em;
  font-weight: 200;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 768px) {
  p, ol {
    font-size: 1em;
  }
}

p span, li span {
  font-weight: 400;
  color: #254042;
}

hr {
  display: block;
  margin: 5% auto;
  border-top: 1px solid #cbeef1;
  width: 150px;
}
@media screen and (max-width: 768px) {
  hr {
    margin: 8% auto;
  }
}

main {
  margin-top: 5%;
  width: 100%;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

.container-intro {
  align-items: center;
}

.intro {
  width: 40%;
  margin: 0 0 0 2%;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .intro {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  .intro {
    width: 100%;
    flex-direction: column-reverse;
  }
}

.intro h1 {
  margin: 1.5em 0 1em 0.2em;
}
@media screen and (max-width: 992px) {
  .intro h1 {
    margin: 0 0 5% 2%;
    font-size: 1.6em;
  }
}
@media screen and (max-width: 768px) {
  .intro h1 {
    text-align: center;
    margin: 5% 0;
    font-size: 1.2em;
  }
}

.intro h2 {
  margin: 0 0em 0.5em 0.2em;
}
@media screen and (max-width: 992px) {
  .intro h2 {
    margin: 2%;
    font-size: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  .intro h2 {
    margin: 2% 0;
    text-align: center;
    font-size: 1.2em;
  }
}

.intro h2 span {
  color: #3e6b6e;
  font-weight: 600;
}

.illu {
  width: 60%;
  margin: 0;
}
@media screen and (max-width: 992px) {
  .illu {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .illu {
    width: 100%;
  }
}

.illu img {
  width: 100%;
  height: auto;
}

.illu video {
  width: 100%;
  height: auto;
}

/* INDEX */
.article {
  width: 48%;
  margin: 0 auto;
  padding: 1em;
  border: 1px solid #cbeef1;
  border-radius: 10px;
  box-shadow: 3px 3px 2px #f2fafb;
  transform: scaleY(1);
  animation: appearence 2000ms cubic-bezier(0.73, 0.16, 0.23, 0.9);
}
@media screen and (max-width: 768px) {
  .article {
    width: 95%;
    margin: 5% auto;
  }
}
.article--1 {
  animation-delay: 100ms;
}
.article--1 > div {
  animation-delay: 200ms;
}
.article--2 {
  animation-delay: 200ms;
}
.article--2 > div {
  animation-delay: 300ms;
}
.article--3 {
  animation-delay: 400ms;
}
.article--3 > div {
  animation-delay: 500ms;
}
.article--4 {
  animation-delay: 500ms;
}
.article--4 > div {
  animation-delay: 600ms;
}

.article__head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  padding: 1% 0;
}

.article__head h2 {
  color: #3e6b6e;
  font-weight: 600;
  padding: 1% 3% 2% 3%;
  line-height: 36px;
  text-align: center;
}

.article_head img {
  width: 100%;
  height: auto;
}

#scissors1 {
  transform: rotate(90deg);
}

#scissors2 {
  transform: rotate(270deg);
}

.img180 {
  transform: rotateY(180deg);
}

/* A PROPOS */
.timeline-description {
  display: none;
}

.timeline {
  display: block;
  margin: 0 auto;
  padding: 1em;
  border: 1px solid #cbeef1;
  border-radius: 10px;
  box-shadow: 3px 3px 2px #f2fafb;
}

.close {
  color: #3e6b6e;
  float: right;
  font-size: 40px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #57959a;
  text-decoration: none;
  cursor: pointer;
}

.timeline h2 {
  color: #3e6b6e;
  text-align: center;
  font-weight: 600;
  line-height: 36px;
  width: 100%;
}

.timeline-container {
  width: 80%;
  padding: 50px 0;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .timeline-container {
    width: 100%;
  }
}

.timeline-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  background: #CCD1D9;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .timeline-container:before {
    display: none;
  }
}

.timeline-block {
  width: -webkit-calc(50% + 8px);
  width: -moz-calc(50% + 8px);
  width: calc(50% + 8px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  clear: both;
}
@media screen and (max-width: 768px) {
  .timeline-block {
    width: 100%;
    margin-bottom: 30px;
  }
}

.timeline-block-right {
  float: right;
}
@media screen and (max-width: 768px) {
  .timeline-block-right {
    float: none;
  }
}

.timeline-block-left {
  float: left;
  text-align: right;
  padding-right: 2em;
}
@media screen and (max-width: 768px) {
  .timeline-block-left {
    float: none;
  }
}

.timeline-block-center {
  width: 75%;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.timeline-block-center h3 {
  text-align: center;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 500;
  color: #3e6b6e;
}

.marker, .marker-right {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #f2fafb;
  background: #64abb0;
  margin-top: 10px;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .marker, .marker-right {
    display: none;
  }
}

.marker-right {
  position: absolute;
  top: 0;
  right: 49%;
}
@media screen and (max-width: 992px) {
  .marker-right {
    right: calc(47% + 10px);
  }
}
@media screen and (max-width: 768px) {
  .marker-right {
    display: none;
  }
}

.timeline-content {
  width: 95%;
  padding: 0 15px;
}

.timeline-number {
  display: none;
}
@media screen and (max-width: 768px) {
  .timeline-number {
    display: block;
    font-size: 20px;
    color: #57959a;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #f2fafb;
    border: 1px solid #cbeef1;
  }
}

.timeline-content h3 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 500;
  color: #3e6b6e;
}

@media screen and (max-width: 768px) {
  .infos-block {
    width: 100%;
    flex-direction: column-reverse;
  }
}

.infos-block-title {
  width: 35%;
  margin: 0 auto;
  padding: 1em;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .infos-block-title {
    width: 90%;
    margin: 5% auto;
  }
}

.infos-block-title h2 {
  color: #3e6b6e;
  font-weight: 600;
  text-align: center;
}

.infos-block-title img {
  width: 48px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.infos-block-text {
  width: 65%;
  margin: 0 auto;
  padding: 2% 10%;
}
@media screen and (max-width: 768px) {
  .infos-block-text {
    width: 90%;
    margin: 5% auto;
    padding: 2% 2%;
  }
}

.infos-block-text li, .cgv li, .contact li {
  list-style-type: disc;
  list-style-position: inside;
}

.subtitle {
  text-align: center;
  width: 100%;
  margin: 5% auto;
}

/* ACTUS */
.illu-actus img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 3px 3px 3px #cbeef1;
}

.actus {
  flex-wrap: wrap;
}

.actus__article {
  width: 30%;
  margin: 2% auto;
  display: flex;
  flex-direction: column;
  transform: scaleY(1);
  animation: appearence 2000ms cubic-bezier(0.73, 0.16, 0.23, 0.9);
}
@media screen and (max-width: 992px) {
  .actus__article {
    width: 48%;
    margin: 5% auto;
  }
}
@media screen and (max-width: 768px) {
  .actus__article {
    width: 95%;
    margin: 5% auto;
    align-content: center;
  }
}
.actus__article--1 {
  animation-delay: 100ms;
}
.actus__article--1 > div {
  animation-delay: 200ms;
}
.actus__article--2 {
  animation-delay: 200ms;
}
.actus__article--2 > div {
  animation-delay: 300ms;
}
.actus__article--3 {
  animation-delay: 300ms;
}
.actus__article--3 > div {
  animation-delay: 400ms;
}

.actus__head {
  display: flex;
  flex-direction: column;
}

.actus__date {
  color: #3e6b6e;
  font-size: 0.8em;
}

.actus li {
  list-style: circle;
  list-style-position: inside;
  font-size: 1.1em;
  line-height: 1.4em;
  font-weight: 200;
  margin-bottom: 0.1em;
}
@media screen and (max-width: 768px) {
  .actus li {
    font-size: 1em;
  }
}

.actus__article img {
  display: block;
  margin: auto;
}
@media screen and (max-width: 1455px) {
  .actus__article img {
    width: 100%;
    height: auto;
  }
}

.actus__img-double {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 1em auto;
  width: 100%;
}

/* MENTIONS LEGALES */
.mentions {
  flex-wrap: wrap;
}

.article-mentions {
  width: 24%;
  margin: 0 auto;
  padding: 1em;
  border: 1px solid #cbeef1;
  border-radius: 10px;
  box-shadow: 3px 3px 2px #f2fafb;
}
@media screen and (max-width: 992px) {
  .article-mentions {
    width: 48%;
    margin: 5% auto;
  }
}
@media screen and (max-width: 768px) {
  .article-mentions {
    width: 90%;
    margin: 5% auto;
  }
}

.article-mentions h3 {
  text-align: center;
}

.cgv {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.cgv h2 {
  margin: 0 0 5% 25%;
}

/* CONTACT */
.contact article {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .contact article {
    width: 90%;
    margin: 5% auto;
  }
}

.contact h2 {
  margin: 1em auto;
}

.contact li {
  padding: 0.5em 0 0.8em 0;
  line-height: 1.5em;
}

.contact li img {
  vertical-align: middle;
}

.illu-contact iframe {
  margin: 0;
  border: 0;
  width: 100%;
}

@keyframes appearence {
  0% {
    transform: translateY(130px);
    opacity: 0.1;
    -webkit-transform: translateY(130px);
    -moz-transform: translateY(130px);
    -ms-transform: translateY(130px);
    -o-transform: translateY(130px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

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