@font-face {
  font-family: NexaRust;
  src: url(../Font/NexaRustSans-Black2.woff);
}
header {
  height: 400px;
  margin-bottom: 50px;
}
@media (min-width: 840px) {
  header {
    height: 600px;
  }
}

#header__logo {
  width: 150px;
  margin: 10px;
}
@media (min-width: 840px) {
  #header__logo {
    width: 300px;
  }
}
#header__firstLine {
  display: flex;
  justify-content: space-between;
}
#header__menuBtn {
  z-index: 99;
  border: 2px solid rgb(66, 64, 64);
  margin: 10px;
  padding: 5px 10px;
  width: 50px;
  height: 30px;
  text-align: center;
  color: white;
  cursor: pointer;
}
@media (min-width: 840px) {
  #header__menuBtn {
    margin: 40px;
  }
}
#header__menu {
  height: 400px;
  width: 200px;
  background-color: rgb(66, 64, 64);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  right: 0;
  font-size: 1rem;
  transition: opacity 300ms;
  z-index: 999;
}
@media (min-width: 840px) {
  #header__menu {
    font-size: 1.3rem;
    height: 600px;
    width: 300px;
  }
}
#header__menuClose {
  position: absolute;
  top: 15px;
  right: 185px;
  color: white;
  cursor: pointer;
}
@media (min-width: 840px) {
  #header__menuClose {
    right: 270px;
  }
}
#header__background {
  width: 100vw;
  height: 400px;
  background-image: url("../../img/banner/Bannerhome.jpg");
  position: absolute;
  top: 0;
  right: 0;
  z-index: -99;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 840px) {
  #header__background {
    height: 600px;
  }
}
#header__backgroundFilter {
  width: 100vw;
  height: 400px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
  background-color: black;
  opacity: 50%;
}
@media (min-width: 840px) {
  #header__backgroundFilter {
    height: 600px;
  }
}
#header__title {
  text-align: center;
}

.menu__link {
  text-decoration: none;
  color: white;
  margin-bottom: 40px;
}
.menu__link:hover, .menu__link--selected {
  color: #f8c01d;
}

.header__menu--closed {
  opacity: 0;
  visibility: hidden;
}

.italic {
  font-style: italic;
}

.centered {
  text-align: center;
}

.textEnd {
  text-align: end;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.middleText {
  text-align: center;
  margin: 0 10%;
  font-size: 0.9rem;
}
@media (min-width: 840px) {
  .middleText {
    font-size: 1.5rem;
  }
}
.middleText--yellow {
  color: #f8c01d;
}

.alignEnd {
  justify-self: end;
}

.justifyCenter {
  text-align: justify;
  -moz-text-align-last: center;
  text-align-last: center;
}

.bordered {
  border: 3px solid #f8c01d;
  width: 40%;
  margin: auto;
  padding: 10px;
}
@media (min-width: 840px) {
  .bordered {
    width: 25%;
  }
}

.triplePicto {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.triplePicto__container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 20%;
  text-align: center;
  height: 200px;
}
@media (min-width: 840px) {
  .triplePicto__container {
    height: 250px;
  }
}
.triplePicto__picto {
  margin-bottom: 40px;
  width: 40px;
}
@media (min-width: 840px) {
  .triplePicto__picto {
    width: 30%;
  }
}
.triplePicto__title {
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: bold;
}
@media (min-width: 840px) {
  .triplePicto__title {
    font-size: 1.3rem;
  }
}
.triplePicto__description {
  font-size: 0.6rem;
}
@media (min-width: 840px) {
  .triplePicto__description {
    font-size: 1.2rem;
  }
}

#contactFooter {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  text-transform: uppercase;
  height: 250px;
  position: absolute;
  width: 100vw;
}
@media (min-width: 840px) {
  #contactFooter {
    margin-top: 50px;
    height: 500px;
  }
}
#contactFooter__background {
  background-image: url(../../img/footer.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
  width: 100vw;
  z-index: -99;
  position: relative;
  top: 50px;
}
@media (min-width: 840px) {
  #contactFooter__background {
    height: 500px;
  }
}
#contactFooter__filter {
  width: 100vw;
  height: 250px;
  background-color: black;
  opacity: 0.5;
  z-index: -10;
  position: relative;
  bottom: -300px;
  margin-top: -250px;
}
@media (min-width: 840px) {
  #contactFooter__filter {
    bottom: -550px;
    height: 500px;
    margin-top: -500px;
  }
}
#contactFooter__text {
  color: white;
  font-size: 0.8rem;
}
@media (min-width: 840px) {
  #contactFooter__text {
    font-size: 1.8rem;
  }
}
#contactFooter__btn {
  font-family: NexaRust;
  background-color: rgb(66, 64, 64);
  border: 2px solid #f8c01d;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1rem;
}
@media (min-width: 840px) {
  #contactFooter__btn {
    padding: 30px 100px;
    font-size: 2rem;
    border-width: 5px;
  }
}

footer {
  height: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  background-color: rgb(66, 64, 64);
  padding: 15px;
}
@media (min-width: 840px) {
  footer {
    height: 100px;
    padding: 30px;
  }
}
footer a {
  text-decoration: none;
  color: white;
  font-size: 5pt;
}
@media (min-width: 840px) {
  footer a {
    font-size: unset;
  }
}
footer #col1row1 {
  grid-column: 1;
  grid-row: 1;
}
footer #col2row1 {
  grid-column: 2;
  grid-row: 1;
}
footer #col1row2 {
  grid-column: 1;
  grid-row: 2;
}
footer #col2row2 {
  grid-column: 2;
  grid-row: 2;
}
footer #col3row2 {
  grid-column: 3;
  grid-row: 2;
}
footer #col4row1-2 {
  grid-column: 4;
  grid-row-start: 1;
  grid-row-end: 2;
}
footer #col4row2 {
  grid-column: 4;
  grid-row: 2;
}
footer #col1row3 {
  grid-column: 1;
  grid-row: 3;
}
footer #col2row3 {
  grid-column: 2;
  grid-row: 3;
}
footer #col1row4 {
  grid-column: 1;
  grid-row: 4;
}
footer #col2row4 {
  grid-column: 2;
  grid-row: 4;
}

.lineSeparation {
  margin: 50px auto;
  width: 50%;
  border-bottom: 3px rgb(66, 64, 64) solid;
  margin-bottom: 30px;
}

body {
  font-family: "semplicitapro", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
}

h1 {
  font-family: NexaRust;
  color: white;
  font-size: 1.7rem;
  margin-bottom: 10px;
}
@media (min-width: 840px) {
  h1 {
    font-size: 3.8rem;
  }
}

h2 {
  color: #f8c01d;
  font-size: 1.3rem;
  font-weight: 100;
  margin-top: 0;
  margin-left: 5%;
  margin-right: 5%;
}
@media (min-width: 840px) {
  h2 {
    font-size: 2.2rem;
  }
}

h3 {
  text-transform: uppercase;
  text-align: center;
  font-size: 1rem;
}
@media (min-width: 840px) {
  h3 {
    font-size: 1.4rem;
  }
}

p {
  text-align: center;
  width: 80%;
  margin: auto;
}/*# sourceMappingURL=main.css.map */