/*********************************************/
/*****************Navigation******************/
/*********************************************/
/* Menu */
.menu-wrap {
  position: absolute;
  z-index: 1001;
  width: 260px;
  height: 100%;
  background: #404040;
  padding: 2.5em 1.5em 0;
  font-size: 1.15em;
  -webkit-transform: translate3d(-320px, 0, 0);
  transform: translate3d(-320px, 0, 0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.menu,
.icon-list {
  height: 100%;
}

.icon-list {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.icon-list a {
  display: block;
  padding: 20px 10px;
  color: #bdc3c7;
  font-size: 1.25em;
  font-weight: 400;
  -webkit-transform: translate3d(0, 500px, 0);
  transform: translate3d(0, 500px, 0);
}
.icon-list i {
  display: inline-block;
  width: 20px;
  font-size: 1.5rem;
}
.icon-list a:hover {
  color: #fff;
  font-weight: 700;
}
.tarif-list a {
  padding: 10px 30px;
}
.icon-list,
.icon-list a {
  -webkit-transition: -webkit-transform 0s 0.4s;
  transition: transform 0s 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.icon-list a:nth-child(2) {
  -webkit-transform: translate3d(0, 1000px, 0);
  transform: translate3d(0, 1000px, 0);
}

.icon-list a:nth-child(3) {
  -webkit-transform: translate3d(0, 1500px, 0);
  transform: translate3d(0, 1500px, 0);
}

.icon-list a:nth-child(4) {
  -webkit-transform: translate3d(0, 2000px, 0);
  transform: translate3d(0, 2000px, 0);
}

.icon-list a:nth-child(5) {
  -webkit-transform: translate3d(0, 2500px, 0);
  transform: translate3d(0, 2500px, 0);
}

.icon-list a:nth-child(6) {
  -webkit-transform: translate3d(0, 3000px, 0);
  transform: translate3d(0, 3000px, 0);
}

.icon-list a span {
  margin-left: 10px;
  font-family: "Montserrat", sans-serif;
}

/* Menu Button */
.menu-button {
  position: fixed;
  z-index: 1000;
  margin: 15px;
  padding: 0;
  width: 2.5em;
  height: 2.25em;
  border: none;
  text-indent: 2.5em;
  font-size: 1.5em;
  color: transparent;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-button::before {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  bottom: 0.5em;
  left: 0.5em;
  background: linear-gradient(
    #000 20%,
    transparent 20%,
    transparent 40%,
    #000 40%,
    #000 60%,
    transparent 60%,
    transparent 80%,
    #000 80%
  );
  content: "";
}

.menu-button:hover {
  cursor: pointer;
  transform: scale(1.2);
}

/* Close Button */
.close-button {
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  right: 1em;
  top: 1em;
  overflow: hidden;
  text-indent: 1em;
  font-size: 1em;
  border: none;
  background: transparent;
  color: transparent;
  cursor: pointer;
}

.close-button::before,
.close-button::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  background: #bdc3c7;
}

.close-button::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close-button::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Shown menu */
.show-menu .menu-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.show-menu .icon-list,
.show-menu .icon-list a {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.show-menu .icon-list a {
  -webkit-transition-duration: 0.9s;
  transition-duration: 0.9s;
}

.show-menu #wrapper::before {
  opacity: 1;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/**********Home********/
h1 {
  z-index: 4;
  position: absolute;
  top: 50%;
  right: 50%;
  width: 400px;
  margin: 0 auto;
  padding: 15px 20px 15px 10px;
  font-size: 5rem;
  font-weight: normal;
}
.home section {
  align-items: center;
  width: 49%;
  padding: 50px 0;
}
.home section > div {
  width: 95%;
  text-align: right;
}
.home section div.flex-column {
  width: 57%;
  align-self: center;
}
.home h3 {
  align-self: flex-end;
  margin: 10px 0;
  width: 90%;
  font-size: 2.8rem;
}
.home section img {
  width: 200px;
  align-self: center;
}
.home p {
  line-height: 1.4;
}
.home section div:first-child p {
  align-self: flex-end;
  width: 70%;
}
.home section > p {
  width: 30%;
  margin-top: 110px;
}
.image-fond {
  max-width: 50%;
  width: 50%;
  min-height: 600px;
  position: relative;
}

/***********Liens*************/
.links {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  margin: 15px 20px;
}
.links a {
  padding: 10px;
  font-size: 1.8em;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.links a:hover {
  transform: scale(1.3);
}

#partenaires-overlay i {
  position: absolute;
  top: 0;
  right: 0;
  padding: 30px;
  font-size: 3rem;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
}
#partenaires-overlay h3 {
  width: 100%;
  text-align: center;
  font-size: 3.5rem;
}
#partenaires-overlay h3::after {
  content: none;
}
.partenaires-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  align-items: center;
  transform: translate(-50%, -50%);
  flex-wrap: wrap;
}
.partenaires-wrapper > div {
  width: 100%;
}

.partenaires-wrapper > div a {
  display: block;
  width: 50%;
  margin: 30px auto;
}
.partenaires-wrapper a {
  width: 45%;
}
/***********Slider*************/

.fp-controlArrow {
  -webkit-user-select: none; /* webkit (safari, chrome) browsers */
  -moz-user-select: none; /* mozilla browsers */
  -khtml-user-select: none; /* webkit (konqueror) browsers */
  -ms-user-select: none; /* IE10+ */
  position: absolute;
  z-index: 4;
  top: 48%;
  cursor: pointer;
  width: 32px;
  height: 32px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fp-controlArrow.fp-next {
  right: 20px;
  background-image: url("../img/arrow-right.png");
}

.fp-controlArrow.fp-prev {
  left: 15px;
  background-image: url("../img/arrow-left.png");
}
