/*
 * FONT
 */
/**
 * Global Value
 */
html {
  font-size: 62.5%;
}
.width-conteneur {
  max-width: 100%;
}
.margin-auto-conteneur {
  margin: 0 auto;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
header .header-content {
  padding: 5rem;
}
header .header-content .content-logo {
  text-align: center;
}
header .header-content .content-logo .logo {
  height: 10rem;
}
.main-content {
  position: relative;
}
.main-content .content-image {
  height: 100vh;
  position: relative;
}
.main-content .content-image .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  object-position: 50% 50%;
}
.main-content .content-image::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  mix-blend-mode: color;
  top: 0;
  left: 0;
}
.main-content .information-content {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
}
.main-content .information-content .title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 3.2rem;
  letter-spacing: -0.1rem;
  padding-bottom: 2rem;
}
.main-content .information-content .title sup {
  font-size: 0.6em;
  line-height: 2.2rem;
  vertical-align: super;
  position: relative;
  top: 0.3rem;
}
.main-content .information-content .detail {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.2rem;
  letter-spacing: 0.075rem;
  padding-bottom: 5rem;
}
.main-content .information-content .content-list-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.main-content .information-content .button-content {
  padding: 0 1rem;
}
.main-content .information-content .button-content .btn-orange {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.8rem;
  letter-spacing: 0.065rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  color: #fff;
  background-color: #fa5c19;
  display: inline-block;
  width: initial;
  -webkit-transition: all 400ms cubic-bezier(0, 0.75, 0.25, 1) 0.01ms;
  -moz-transition: all 400ms cubic-bezier(0, 0.75, 0.25, 1) 0.01ms;
  -ms-transition: all 400ms cubic-bezier(0, 0.75, 0.25, 1) 0.01ms;
  -o-transition: all 400ms cubic-bezier(0, 0.75, 0.25, 1) 0.01ms;
  transition: all 400ms cubic-bezier(0, 0.75, 0.25, 1) 0.01ms;
}
.main-content .information-content .button-content .btn-orange:hover {
  background-color: #fa9164;
}
/*# sourceMappingURL=main.css.map */