@font-face {
  font-family: "ChangaOne-Italic";
  src: url("Font/ChangaOne-Italic.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "ChangaOne-Regular";
  src: url("Font/ChangaOne-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "BrunoAce-Regular";
  src: url("Font/BrunoAce-Regular.ttf") format("truetype");
  font-weight: 400;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --primary:#285430;
  --secondary: #82CD47;
  --white:#f0ecfd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: var(--white);
  scroll-behavior: smooth;
}

html {
  width: 100%;
}

.scroll-up header,
header {
  width: 100vw;
  display: flex;
  background-color: var(--primary);
  position: fixed;
  top: 0;
  z-index: 5;
  transition: all 300ms ease-in-out;
}

.scroll-down header {
  transform: translate3D(0, -100%, 0);
}

.logo .media a i {
  font-size: 25px;
}

nav {
  height: 70px;
  color: var(--white);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 20px;
}

nav span,
h1 span {
  background-color: var(--secondary);
  background-image: linear-gradient(45deg, var(--secondary) 20%, rgb(255, 255, 255) 100%);
  /* Set the background size and repeat properties. */
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  font-weight: 400;
  font-size: 1em;
  font-family: "BrunoAce-Regular";
}

p span {
  background-color: var(--secondary);
  background-image: linear-gradient(45deg, var(--secondary) 20%, rgb(255, 255, 255) 100%);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

h3 span {
  background-color: var(--secondary);
  background-image: linear-gradient(45deg, var(--secondary) 20%, rgb(255, 255, 255) 100%);
  /* Set the background size and repeat properties. */
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  font-weight: 400;
  font-size: 16px;
  font-family: "BrunoAce-Regular";
}

span.neon {
  color: #c6ffcc;
  text-shadow: 0 0 6px rgba(202, 228, 225, 0.92), 0 0 30px rgba(202, 228, 225, 0.34), 0 0 12px rgba(30, 242, 65, 0.52), 0 0 21px rgba(30, 242, 65, 0.92), 0 0 34px rgba(30, 242, 65, 0.78), 0 0 54px rgba(30, 242, 65, 0.92);
  text-transform: uppercase;
  background-image: none;
  background-color: unset;
  font-size: 1em;
  -webkit-text-fill-color: unset;
  animation: flashing 1.4s infinite alternate;
}

@keyframes flashing {
  0%, 18%, 21%, 32%, 35%, 39%, 42%, 100% {
    text-shadow: 0 0 6px rgba(202, 228, 225, 0.92), 0 0 30px rgba(202, 228, 225, 0.34), 0 0 12px rgba(30, 242, 65, 0.52), 0 0 21px rgba(30, 242, 65, 0.92), 0 0 34px rgba(30, 242, 65, 0.78), 0 0 54px rgba(30, 242, 65, 0.92);
  }
  20%, 34%, 41% {
    text-shadow: none;
    box-shadow: none;
  }
}
h3 {
  margin: 20px;
  font-weight: 400;
  font-size: 16px;
  font-family: "BrunoAce-Regular";
  margin-bottom: 20px;
}

p {
  text-align: justify;
  padding-top: 10px;
  padding-bottom: 10px;
}

h2 {
  font-size: 50px;
  text-align: center;
  padding-top: 20px;
}

.menu-items {
  display: flex;
  flex-direction: row;
  background-repeat: repeat;
  align-items: center;
}

.item-menu a {
  margin-left: 20px;
  padding: 16px 24px;
  border: 8px;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  color: var(--white);
  white-space: nowrap;
}

.item-menu:hover a,
.item-menu:last-child:hover a {
  background-color: var(--white);
  color: var(--secondary);
  border-radius: 20px;
}

.item-menu:last-child a {
  background-color: var(--secondary);
  border-radius: 20px;
}

.logo a {
  font-weight: 800;
  font-size: 18px;
  font-family: "BrunoAce-Regular";
  text-decoration: none;
}

.toglle {
  display: none;
}

section {
  height: -moz-fit-content;
  height: fit-content;
}

section:first-child {
  background-image: url(Images/image10modifiee.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  z-index: 0;
}

section.icones-section {
  height: -moz-fit-content;
  height: fit-content;
  padding: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: var(--secondary);
}

section:nth-child(2n+3) {
  background-color: var(--secondary);
}

section:nth-child(2n+2) {
  background-color: var(--primary);
}

.titre {
  position: absolute;
  top: 250px;
}

h1 {
  font-family: "BrunoAce-Regular";
  color: var(--white);
  font-size: 70px;
  padding-left: 25px;
}

h1 span {
  font-size: 70px;
}

.sous-titre {
  color: var(--white);
  font-family: "ChangaOne-Italic";
  font-size: 25px;
  padding-left: 5px;
}

.btn-line {
  position: absolute;
  bottom: 100px;
  display: flex;
  justify-content: space-around;
  width: 100%;
  align-items: center;
}

.btn {
  text-decoration: none;
  background-color: var(--white);
  color: var(--secondary);
  border: solid 2px var(--secondary);
  border-radius: 25px;
  padding: 15px 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  white-space: nowrap;
}

.btn:hover,
.btn:hover > i {
  background-color: var(--secondary);
  color: var(--white);
}

.vert {
  background-color: var(--secondary);
  border: solid 2px var(--white);
  color: var(--white);
}

.btn.vert > i {
  color: var(--white);
}

.btn.vert:hover {
  background-color: var(--primary);
  border: solid 2px var(--secondary);
  color: var(--secondary);
}

.btn.vert:hover > i {
  background-color: var(--primary);
  color: var(--secondary);
}

.icone-box {
  height: 120px;
  border: solid 4px var(--white);
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
}

.icone-box:hover {
  background-color: var(--white);
}

.icone-box:hover .icones,
.icone-box:hover .icones > i,
.icone-box:hover .icones > p {
  color: var(--secondary);
}

.provisoire {
  display: flex;
  width: 100%;
  height: 80px;
  margin: 50px;
  align-items: center;
  justify-content: space-evenly;
}

.icones {
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  margin: 20px;
  color: var(--white);
  font-size: 50px;
}

.icones > i {
  font-size: 50px;
}

.btn > i {
  color: var(--secondary);
}

.slide {
  height: 300px;
  width: auto;
}

.sliders {
  width: 100%;
  margin: 0 auto;
  margin-top: 25px;
  padding-bottom: 45px;
}

.slider__content {
  color: white;
  text-align: center;
}

.slick-slide {
  height: auto;
  margin-right: 20px;
}

.deux-sections {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 50px;
  gap: 20px;
}

.deux-button {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 50px;
  gap: 20px;
}

.section-gauche,
.section-droite {
  width: 50vw;
}

.section-gauche.valeur {
  background-image: url(Images/image14modifiee.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.section-droite.entreprise {
  background-image: url(Images/image10modifiee.jpg);
  background-repeat: no-repeat;
  background-position: 25% 50%;
  background-size: cover;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.section-droite.valeur p,
.section-gauche.entreprise p {
  margin: 10px;
  text-align: justify;
}

/*Card*/
.cards {
  display: flex;
  flex-direction: row;
}

.card {
  width: 450px;
  max-width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  border: solid 3px var(--secondary);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 20px;
}

.title-card {
  color: var(--secondary);
  text-align: center;
  padding: 20px;
  font-size: 40px;
  border-bottom: solid 1px gray;
}

.tarif-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-bottom: solid 1px gray;
}

.line-tarif {
  display: flex;
  flex-direction: row;
  margin: 10px 0;
  align-items: center;
}

.title-line {
  width: 70%;
  text-align: left;
  color: grey;
}

.tarif {
  width: 30%;
  text-align: center;
  color: var(--secondary);
  font-weight: 700;
  vertical-align: middle;
}

.button-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  height: 100%;
}

.italic {
  font-style: italic;
  line-height: 1.5rem;
  padding: 20px;
}

form {
  width: 60%;
}

input, textarea {
  border-radius: 5px;
  width: 100%;
  height: 40px;
  color: var(--primary);
}

textarea {
  height: 100px;
}

.formulaire {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form > div {
  margin-top: 20px;
}

label {
  color: var(--white);
}

button {
  cursor: pointer;
}

header label {
  display: none;
}

.overlay {
  display: none;
}

footer {
  padding: 40px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.title-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.item-menu-footer {
  margin: 8px;
}

.legalContainer {
  background-color: var(--primary);
  padding: 10%;
}

.villes {
  color: var(--primary);
  font-size: xx-small;
}

.validation-page {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--primary);
  height: 100vh;
}

.validation {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: solid 2px var(--white);
  border-radius: 20px;
  margin: 25% 25% 5% 25%;
  color: var(--white);
  background-color: var(--secondary);
}

.validation h1 {
  font-size: 45px;
}

.validation-form {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  background-color: var(--white);
  border-color: var(--primary);
  border-radius: 20px;
  padding: 10px 20px 10px 20px;
  width: -moz-max-content;
  width: max-content;
}

.validation-form:hover {
  background-color: var(--secondary);
  border-color: var(--white);
  color: var(--white);
}

h2.erreur {
  color: #a60000;
}

@media screen and (max-width: 1000px) {
  .provisoire {
    flex-direction: column;
    height: 140px;
  }
  section:first-child {
    background-image: url(Images/image14modifiee.jpg);
    background-position: center;
  }
  .menu-items {
    position: fixed;
    height: 100vh;
    width: 80vw;
    display: flex;
    flex-direction: column;
    background-color: var(--primary);
    top: 70px;
    right: 0vw;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 2;
    padding: 20px;
    transform: translateX(100%);
    transition: 0.4s transform cubic-bezier(0.49, 0.27, 0.15, 0.95);
  }
  .menu-items.active {
    transform: initial;
  }
  .overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  .overlay.active {
    display: block;
  }
  .item-menu {
    margin-top: 50px;
  }
  .item-menu a {
    font-size: 30px;
  }
  header label {
    display: flex;
    flex-direction: column;
    width: 70px;
    cursor: pointer;
  }
  header label span {
    background: #fff;
    border-radius: 10px;
    height: 7px;
    margin: 7px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  }
  header label span:nth-of-type(1) {
    width: 50%;
  }
  header label span:nth-of-type(2) {
    width: 100%;
  }
  header span:nth-of-type(3) {
    width: 75%;
  }
  header input[type=checkbox] {
    display: none;
  }
  header input[type=checkbox]:checked ~ span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(8px, 0px);
  }
  header input[type=checkbox]:checked ~ span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg);
  }
  header input[type=checkbox]:checked ~ span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(30px, -11px) rotatez(45deg);
  }
  .titre {
    top: 90px;
  }
  section.icones-section {
    height: -moz-fit-content;
    height: fit-content;
    flex-wrap: wrap;
  }
  .icone-box {
    margin: 20px;
  }
  .cards {
    flex-wrap: wrap;
  }
  .card {
    width: 100%;
  }
  .btn-line {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    bottom: 10px;
    height: 200px;
  }
  .btn {
    margin: 20px;
  }
  section:first-child {
    background-attachment: local;
  }
  .deux-sections {
    padding: 10px;
  }
  .deux-button {
    flex-direction: column;
    padding: 0;
    align-items: center;
    margin: 25px;
    gap: 40px;
  }
  .section-droite,
  .section-gauche {
    padding: 10px;
    width: 100%;
  }
  .section-droite.entreprise,
  .section-gauche.valeur {
    display: none;
  }
  form {
    width: 100%;
    padding: 15px;
  }
}
@media screen and (max-width: 500px) {
  nav span,
  .logo a {
    font-size: 20px;
  }
  h1,
  h1 span {
    font-size: 1.5em;
    word-wrap: break-word;
  }
}/*# sourceMappingURL=style.css.map */