body {
  overflow-x: hidden;
}

.home100 {
  width: 100vw;
  height: 100vh;
  background-image: url("/assets/img/friends4.jpg");
  background-size: cover;
  background-position: center;
}
.home100 section {
  width: 100vw;
  height: 100%;
  background-color: #000000d6;
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
}
.home100 section h1 {
  color: #82CBCE;
  font-family: haboro-contrast-normal, sans-serif;
  font-weight: 700;
  font-size: 56px;
}
.home100 section h2 {
  color: white;
  font-family: haboro-contrast-normal, sans-serif;
  font-weight: 900;
  margin: 0% 10%;
  font-size: 28px;
}
.home100 section h3 {
  color: white;
  font-family: paralucent, sans-serif;
  font-weight: 300;
  font-size: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home100 section p {
  font-size: 15px;
  color: white;
  font-family: agenda, sans-serif;
  display: flex;
  align-items: center;
}
.home100 section p a {
  font-size: 14px;
  color: white;
  display: grid;
  text-decoration: underline;
}
.home100 section p a:hover {
  text-transform: uppercase;
  color: #82CBCE;
  text-decoration: none;
}
.home100 section h4 {
  color: white;
  font-family: paralucent, sans-serif;
  font-weight: 300;
  opacity: 0.2;
  bottom: 1%;
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  animation: banner 300s linear infinite;
  overflow: hidden;
}
@keyframes banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.home100 .bannerDesktop {
  display: none;
}

.underhome {
  width: 100%;
}
.underhome article {
  background-color: #F8E8F4;
  width: 100%;
  color: #877786;
  text-align: center;
  padding: 10% 12%;
}
.underhome article h1 {
  font-family: paralucent, sans-serif;
  font-weight: 300;
  font-size: 28px;
  margin: 0px 0px 15px 0px;
}
.underhome article h2 {
  font-family: agenda, sans-serif;
  font-weight: 100;
  font-size: 14px;
  font-family: proxima-nova, sans-serif;
  font-weight: 100;
}
.underhome article h2 span {
  font-weight: 900;
}
.underhome section {
  background: linear-gradient(9deg, #eedaec 0%, #c5eef0 100%);
  color: #877786;
  padding: 10% 12%;
  display: flex;
  flex-direction: column;
  border-top: 1px dotted;
  border-bottom: 1px dotted;
}
.underhome section h1 {
  font-family: haboro-contrast-normal, sans-serif;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  margin: 0px 0px 15px 0px;
}
.underhome section div {
  display: flex;
  flex-direction: column;
}
.underhome section div h2, .underhome section div h3 {
  font-family: proxima-nova, sans-serif;
  font-weight: 100;
  font-size: 24px;
  margin: 0px 0px 15px 0px;
}
.underhome section div h2 span, .underhome section div h3 span {
  font-weight: 900;
}
.underhome section div h2 {
  text-align: start;
}
.underhome section div h3 {
  text-align: end;
}
.underhome section figure {
  display: flex;
  justify-content: center;
  margin: 25px 0px 15px 0px;
}
.underhome section figure img {
  display: none;
}
.underhome section figure a {
  margin: auto;
}

.nav {
  overflow: hidden;
}
.nav__link {
  color: white;
  font-family: paralucent, sans-serif;
  font-weight: 300;
  font-size: 26px;
}
.nav__link--text {
  grid-area: 1/1;
  transition: opacity 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95), transform 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.nav__link--text .word {
  white-space: nowrap;
}
.nav__link--text .char {
  display: inline-block;
  transform-origin: 50% 50% 0.4em;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
  transition-delay: calc(0ms + var(--char-index) * 25ms);
  backface-visibility: hidden;
}
.nav__link--text:nth-child(1) {
  color: white;
  font-family: paralucent, sans-serif;
  font-weight: 300;
  font-size: 26px;
}
.nav__link--text:nth-child(2) {
  color: white;
  font-family: paralucent, sans-serif;
  font-weight: 300;
  font-size: 26px;
  opacity: 0;
}
.nav__link--text:nth-child(2) .char {
  transform: rotate3d(1, -0.5, 0, 90deg);
}
.nav__link:hover .nav__link--text:nth-child(1) {
  opacity: 0;
}
.nav__link:hover .nav__link--text:nth-child(1) .char {
  transform: rotate3d(1, 0.3, 0, -90deg);
}
.nav__link:hover .nav__link--text:nth-child(2) {
  opacity: 1;
}
.nav__link:hover .nav__link--text:nth-child(2) .char {
  transform: rotate3d(0, 0, 0, 90deg);
}

.formConnexion {
  transform: translate(0px, -40px);
}
.formConnexion fieldset {
  border: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.formConnexion fieldset div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.formConnexion fieldset div label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.657);
  font-family: agenda, sans-serif;
  margin: 15px 0px 6px 0px;
}
.formConnexion fieldset div input {
  height: 30px;
  width: 185px;
  background-color: #82ccce0a;
  border: none;
  border-radius: 7px;
  text-align: center;
  color: #D8F5F38C;
  font-family: agenda, sans-seriff;
  font-weight: 400;
  font-size: 16px;
  box-shadow: rgba(92, 166, 166, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.formConnexion fieldset div input:hover {
  background-color: #ee80c000;
  border: 1px solid #84f6f688;
  box-shadow: rgba(111, 157, 230, 0.5) 0px 1px 0px, rgba(50, 114, 232, 0.18) 0px -8px 24px, rgba(79, 201, 217, 0.31) 0px 16px 48px;
}
.formConnexion fieldset button {
  cursor: pointer;
  letter-spacing: 1px;
  font-size: 12px;
  border: none;
  margin: auto;
  margin-top: auto;
  margin-top: 20px;
  font-family: proxima-nova, sans-serif;
  font-weight: 900;
  background-color: #FFF;
  padding: 10px 20px 10px 20px;
  border-radius: 20px;
  color: #82CBCE;
  text-transform: uppercase;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px, rgba(255, 255, 255, 0.1) 0px 8px 24px, rgba(255, 255, 255, 0.1) 0px 16px 48px;
}
.formConnexion fieldset button:hover {
  color: #f3f3f3;
  background-color: #010202;
  animation: shake 1s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: bounceAccount 2s cubic-bezier(0.28, 0.84, 0.42, 1) 1;
}

.boxCo {
  margin: 0px 0px 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.boxCo .noAcc {
  color: rgba(255, 255, 255, 0.459) !important;
  transform: translate(0px, -20px);
}
.boxCo .fixColorCoBtn {
  background-color: #82CBCE !important;
  font-size: 12px !important;
}
.boxCo .fixColorCoBtn:hover {
  background-color: #ffffffef !important;
  color: black;
}

@media (min-width: 800px) {
  .home100 section h1 {
    font-size: 100px;
  }
  .home100 section h2 {
    font-size: 32px;
    padding: 0% 10%;
  }
}
@media (min-width: 1025px) {
  .box2co {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-direction: row;
    width: 75%;
    max-width: 575px;
    margin: 0px 0px 55px 0px;
  }
  .box2co .boxCo .noAcc {
    transform: translate(0px, -45px);
  }

  .home100 section h2 {
    font-size: 32px;
    padding: 0% 3%;
    max-width: 596px;
  }

  .home100 {
    display: flex;
  }

  .bannerDesktop {
    display: flex !important;
    align-items: center;
    background-color: #000000d6;
  }
  .bannerDesktop div {
    position: relative;
  }
  .bannerDesktop div p {
    font-size: 20px;
    text-transform: uppercase;
    text-align: end;
    color: white;
    padding: 20px 30px 20px 25px;
    border-radius: 38px 0px 0px 38px;
    font-family: proxima-nova, sans-serif;
    font-weight: 100;
    line-height: 40px;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px, rgba(255, 255, 255, 0.1) 0px 8px 24px, rgba(255, 255, 255, 0.1) 0px 15px 40px;
    background: linear-gradient(32deg, #94d2eba8, #e89eda9b, #a3d8df8f, #c590e49d);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
  }
  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .bannerDesktop div p span {
    font-weight: 900;
  }

  .underhome article {
    display: none;
  }
  .underhome section {
    padding: 3% 10%;
  }
  .underhome section h1 {
    margin: 0px 0px 35px 0px;
  }
  .underhome section div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .underhome section div h2, .underhome section div h3 {
    max-width: 40%;
  }
  .underhome section figure {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  .underhome section figure img {
    display: block;
    width: 110px;
    animation: rotate 6s cubic-bezier(0.28, 0.84, 0.42, 1) infinite;
  }
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(20deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  .underhome section figure a {
    margin: inherit;
  }
}

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