.c-orange {
  color: #eb6319;
}

.c-gray-dark {
  color: #828282;
}

.c-gray {
  color: #a4a4a4;
}

.c-gray-light {
  color: #e5e5e5;
}

h1,
h2,
h3 {
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

p,
span,
hr {
  margin: 0;
}

p,
span,
h1,
h2,
h3 {
  font-style: normal;
}

.filter {
  position: absolute;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.25))
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
  top: 0;
  left: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a.classic {
  text-decoration: none;
  color: black;
  position: relative;
}

a.classic.c-gray {
  color: #a4a4a4;
}

a.classic.c-gray::after {
  background: #a4a4a4;
}

a.classic::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

a.classic.small:hover::after {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

a.classic.medium:hover::after {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

body {
  margin: 0;
  background-color: #f7f7f7;
}

@media (max-width: 767px) {
  .mobile-none {
    display: none !important;
  }
}

.mobile-only {
  display: none !important;
}

@media (max-width: 767px) {
  .mobile-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.noscroll {
  overflow: hidden;
}

.nodecoration {
  text-decoration: none;
}

a {
  text-decoration: none;
}

/*JACKINTHEBOX*/
@-webkit-keyframes jackInTheBox {
  from {
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.jackInTheBox:hover {
  -webkit-animation-name: jackInTheBox;
  -webkit-animation: jackInTheBox 0.5s;
  animation: jackInTheBox 0.5s;
}

a.icon .pop-up {
  padding: 10px;
  background: black;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  bottom: -45px;
  pointer-events: none;
  opacity: 0;
  transition: ease-in-out 0.3s;
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -ms-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

@media (max-width: 767px) {
  a.icon .pop-up {
    display: none;
  }
}

a.icon .pop-up svg {
  position: absolute;
  top: -7px;
}

a.icon .pop-up svg path {
  fill: black !important;
}

a.icon .pop-up span {
  font-family: "Montserrat";
  font-size: 9px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
}

.desaturate img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.lg-thumb-outer.lg-grab {
  display: none;
}

.mobile--landscape {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: white;
  top: 0;
  left: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
  z-index: 100;
}

@media (max-width: 767px) {
  .mobile--landscape {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 479px) {
  .mobile--landscape {
    display: none;
  }
}

@font-face {
  font-family: "BLACKHAWK";
  src: url("../fonts/BLACKHAWK.ttf") format("truetype");
}

.uncover {
  overflow: hidden;
  background-image: none !important;
  position: relative;
}

.uncover__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
}

.uncover__slices {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.uncover__slices--vertical {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.uncover__slices--horizontal {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.uncover__slices--horizontal-double {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
}

.uncover__slices--vertical-double {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 50% 50%;
  grid-template-rows: 50% 50%;
}

.uncover__slice {
  color: #fff;
  background-color: currentColor;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.uncover__slices--vertical .uncover__slice {
  -webkit-box-shadow: 1px 0 0 currentColor;
  box-shadow: 1px 0 0 currentColor;
}

.uncover__slices--horizontal .uncover__slice {
  -webkit-box-shadow: 0 1px 0 currentColor;
  box-shadow: 0 1px 0 currentColor;
}

.form .gform_heading h2 {
  display: none;
}

.form .gform_heading span {
  display: none;
}

.form .gf_browser_safari form input[type="checkbox"]::after {
  bottom: 4px;
}

.form form {
  width: 90%;
  margin: auto;
  max-width: 1150px;
  position: relative;
}

.form form .gfield_label {
  display: none !important;
}

.form form input[type="text"],
.form form input[type="email"],
.form form input[type="phone"] {
  height: 60px;
}

.form form textarea {
  height: 110px !important;
}

@media (max-width: 767px) {
  .form form textarea {
    height: 180px !important;
  }
  .form {
    padding-bottom: 160px !important;
  }
}

.form form textarea,
.form form input[type="text"],
.form form input[type="email"],
.form form input[type="phone"] {
  border: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid;
  font-size: 20px;
  line-height: 50px;
}

.form form textarea::-webkit-input-placeholder,
.form form input[type="text"]::-webkit-input-placeholder,
.form form input[type="email"]::-webkit-input-placeholder,
.form form input[type="phone"]::-webkit-input-placeholder {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 400 !important;
  font-size: 20px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  font-size: 20px;
}

.form form textarea:-ms-input-placeholder,
.form form input[type="text"]:-ms-input-placeholder,
.form form input[type="email"]:-ms-input-placeholder,
.form form input[type="phone"]:-ms-input-placeholder {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 400 !important;
  font-size: 20px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  font-size: 20px;
}

.form form textarea::-ms-input-placeholder,
.form form input[type="text"]::-ms-input-placeholder,
.form form input[type="email"]::-ms-input-placeholder,
.form form input[type="phone"]::-ms-input-placeholder {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 400 !important;
  font-size: 20px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  font-size: 20px;
}

.form form textarea::placeholder,
.form form input[type="text"]::placeholder,
.form form input[type="email"]::placeholder,
.form form input[type="phone"]::placeholder {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 400 !important;
  font-size: 20px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  font-size: 20px;
}

.form form textarea:focus,
.form form input[type="text"]:focus,
.form form input[type="email"]:focus,
.form form input[type="phone"]:focus {
  outline: 0;
}

.form form textarea:focus::-webkit-input-placeholder,
.form form input[type="text"]:focus::-webkit-input-placeholder,
.form form input[type="email"]:focus::-webkit-input-placeholder,
.form form input[type="phone"]:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form form textarea:focus:-ms-input-placeholder,
.form form input[type="text"]:focus:-ms-input-placeholder,
.form form input[type="email"]:focus:-ms-input-placeholder,
.form form input[type="phone"]:focus:-ms-input-placeholder {
  opacity: 0;
  transform: translateY(-50%);
}

.form form textarea:focus::-ms-input-placeholder,
.form form input[type="text"]:focus::-ms-input-placeholder,
.form form input[type="email"]:focus::-ms-input-placeholder,
.form form input[type="phone"]:focus::-ms-input-placeholder {
  opacity: 0;
  transform: translateY(-50%);
}

.form form textarea:focus::placeholder,
.form form input[type="text"]:focus::placeholder,
.form form input[type="email"]:focus::placeholder,
.form form input[type="phone"]:focus::placeholder {
  opacity: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form form .gchoice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form form .gchoice label {
  display: inline-block !important;
  max-width: 100% !important;
  margin-bottom: 5px !important;
  font-weight: 400 !important;
  font-size: 14px !important;
}

@media (max-width: 767px) {
  .form form .gchoice label {
    font-size: 9px !important;
    text-align: right !important;
  }
}

.form form .ginput_container_consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form form .ginput_container_consent .gfield_consent_label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 400 !important;
  font-size: 14px;
}

@media (max-width: 767px) {
  .form form .ginput_container_consent .gfield_consent_label {
    font-size: 9px;
    text-align: right;
  }
}

.form form .ginput_container_consent .gfield_required {
  display: none;
}

.form form .gfield_consent_description {
  border: none !important;
  padding: 0 !important;
  color: #c4c4c4;
  font-size: 11px !important;
  line-height: 15px !important;
  overflow-y: auto !important;
  text-align: justify !important;
}

.form form .gform_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.form form .gform_footer input[type="submit"] {
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  font-weight: 700;
  background: url("../images/footer/stain.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-left: 2.5rem;
  width: 230px;
  height: 60px;
  cursor: pointer;
  background-color: none;
  position: absolute;
  top: 90%;
}

.form #gform_3 input[type="text"],
.form #gform_3 input[type="email"],
.form #gform_3 textarea {
  background: transparent;
}

.form #gform_3 .gform_footer #gform_submit_button_3 {
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  font-weight: 700;
  background: url("../images/footer/stain.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-left: 2.5rem;
  width: 230px;
  height: 60px;
  cursor: pointer;
  background-color: none;
  position: absolute;
  top: 93%;
}

.menu-links {
  display: flex;
  flex-direction: row;
}

@media (max-width: 767px) {
  .form form .gform_footer input[type="submit"] {
    top: 95%;
    font-size: 20px;
    width: 172px;
    height: 45px;
  }
  .form #gform_3 .gform_footer #gform_submit_button_3 {
    top: 96%;
    font-size: 20px;
    width: 172px;
    height: 45px;
  }
  .menu-links {
    display: flex;
    flex-direction: column;
  }
}
.form form .gfield_validation_message,
.form form .validation_message {
  border: none !important;
  background: none !important;
  font-size: 11px !important;
  padding: 0;
}

.form form .gfield_error [aria-invalid="true"] {
  border: none !important;
  border-bottom: 2px solid;
}

.form form input[type="checkbox"] {
  margin: 0 10px;
  position: relative;
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .form form input[type="checkbox"] {
    margin: 0 15px;
  }
}

.form form input[type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.form form input[type="checkbox"]::before {
  content: "";
  display: inline-block;
  border-radius: 0;
  width: 18px;
  height: 18px;
  border: 2px solid;
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 0 0 8px #fff;
  box-shadow: inset 0 0 0 8px #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.form form input[type="checkbox"]:checked::after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.form form .h-captcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.form .gform_validation_errors {
  display: none !important;
}

.form.newsletter form textarea,
.form.newsletter form input[type="text"],
.form.newsletter form input[type="email"],
.form.newsletter form input[type="phone"] {
  background-color: #f7f7f7 !important;
}

@media (max-width: 767px) {
  .form.newsletter form .gform_fields {
    grid-row-gap: 40px !important;
  }
}

.form.newsletter form input[type="submit"] {
  top: auto;
  bottom: -10%;
  background-color: none;
}

@media (max-width: 767px) {
  .form.newsletter form input[type="submit"] {
    top: 17%;
  }
}

.form.newsletter form .ginput_container_consent {
  padding-right: 60px;
}

@media (max-width: 767px) {
  .form.newsletter form .ginput_container_consent {
    padding-right: 0px;
  }
}

header .menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 50px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  /*MENU*/
  /*links*/
}

header .menu-container .fade {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.85)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  top: 0;
  opacity: 0;
}

header .menu-container .logo {
  z-index: 11;
}

header .menu-container .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .menu-container .options > * {
  margin-left: 50px;
}

header .menu-container .options a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

header .menu-container .options a:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

header .menu-container .options a:hover .pop-up {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
}

header .menu-container .options .burger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  z-index: 11;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

header .menu-container .options .burger i {
  border-radius: 2px;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
}

header .menu-container .options .burger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

header .menu-container .options .burger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  -webkit-transition: margin 0.2s;
  transition: margin 0.2s;
}

header .menu-container .options .burger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

header .menu-container .options .burger.unactive:hover i:nth-child(2) {
  margin: 2px 0;
}

@media (max-width: 767px) {
  header .menu-container .options .burger.unactive:hover i:nth-child(2) {
    margin: 5px 0;
  }
}

header .menu-container .options .burger.active {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  height: 30px;
}

header .menu-container .options .burger.active:hover {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

header .menu-container .options .burger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

header .menu-container .options .burger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

header .menu-container .options .burger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
    transform: translateY(-9px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    transform: translateY(-9px) rotate(135deg);
    -webkit-transform: translateY(-9px) rotate(135deg);
    -moz-transform: translateY(-9px) rotate(135deg);
    -ms-transform: translateY(-9px) rotate(135deg);
    -o-transform: translateY(-9px) rotate(135deg);
  }
}

header .menu-container #menu {
  text-transform: uppercase;
  z-index: 10;
  pointer-events: none;
  font-family: "Montserrat";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  overflow-y: auto;
  overflow-x: hidden;
}

header .menu-container #menu a {
  text-decoration: none;
}

header .menu-container #menu.menu-open {
  pointer-events: auto;
}

header .menu-container #menu > .menu-item {
  -webkit-transition: -webkit-transform 1.1s;
  transition: -webkit-transform 1.1s;
  transition: transform 1.1s;
  transition: transform 1.1s, -webkit-transform 1.1s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  width: 50%;
  height: 100%;
  max-height: 100%;
  position: relative;
}

header .menu-container #menu .menu-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background: black;
  text-indent: -9999px;
}

header .menu-container #menu #background-image img {
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -o-object-fit: cover;
  object-fit: cover;
  max-width: none !important;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
}

header .menu-container #menu #background-image img:first-of-type {
  opacity: 1;
  z-index: 1;
}

header .menu-container #menu .menu-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  background: white;
  position: relative;
}

header .menu-container #menu.menu-open .menu-left,
header .menu-container #menu.menu-open .menu-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

header .menu-container #menu .menu-right {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

header .menu-container #menu .menu-right > .container {
  margin-right: auto;
  margin-left: 10%;
  min-height: 100%;
  max-width: 90%;
  width: 660px;
  overflow: hidden;
  position: relative;
  padding: 115px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .menu-container #menu .menu-right > .container::-webkit-scrollbar {
  display: none;
}

header .menu-container #menu span.close-menu {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 1;
}

header .menu-container #menu span.close-menu > img {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

header .menu-container #menu span.close-menu:hover > img {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

header .menu-container #menu .notification::before {
  content: "";
  width: 30px;
  height: 40px;
  position: absolute;
  background-size: contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 30px;
  border-right: 1px solid #e6511e;
}

header .menu-container #menu .notification {
  font-size: 25px;
  font-weight: 800;
  position: relative;
  padding-left: 90px;
}

header .menu-container #menu .notification svg {
  position: absolute;
  left: 0;
}

header .menu-container #menu .notification .sub-notif {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

header .menu-container #menu #menu-main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 25px 0 35px;
  padding: 0;
}

header .menu-container #menu #menu-main-menu a {
  font-size: 80px;
  font-weight: 900;
  margin: 0;
  position: relative;
  line-height: 1;
  display: inline-block;
}

header .menu-container #menu #menu-main-menu .sub-menu a,
header .menu-container #menu .menu-footer a {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

header .menu-container #menu #menu-main-menu a::after {
  content: "";
  width: 0;
  height: 20px;
  position: absolute;
  bottom: 3px;
  left: 6px;
  background: #e6511e;
  opacity: 0.5;
  z-index: -1;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

header .menu-container #menu #menu-main-menu a:hover::after {
  width: 100%;
}

header .menu-container #menu #menu-main-menu .menu-item-has-children .main-link,
header .menu-container #menu .menu-item-has-children {
  position: relative;
}

header
  .menu-container
  #menu
  #menu-main-menu
  .menu-item-has-children
  .toggle-links {
  height: 20px;
  width: 20px;
  background: url("../images/header/menu/more.svg") no-repeat center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: center;
  transform-origin: center;
  left: auto;
  right: -40px;
  cursor: pointer;
  opacity: 0.75;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header
  .menu-container
  #menu
  #menu-main-menu
  .menu-item-has-children
  .toggle-links:hover {
  opacity: 1;
}

header
  .menu-container
  #menu
  #menu-main-menu
  .menu-item-has-children
  .toggle-links.open {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

header .menu-container #menu .menu-item-has-children .sub-menu {
  display: none;
  margin-bottom: 12px;
  padding: 0;
}

header
  .menu-container
  #menu
  #menu-main-menu
  .menu-item-has-children
  .sub-menu
  a {
  display: block;
  margin-left: 40px;
  width: -webkit-max-content;
  width: max-content;
  width: -moz-max-content;
  line-height: 35px;
}

@media (max-width: 767px) {
  header
    .menu-container
    #menu
    #menu-main-menu
    .menu-item-has-children
    .sub-menu
    a {
    line-height: 30px;
  }
}

header
  .menu-container
  #menu
  #menu-main-menu
  .menu-item-has-children
  .sub-menu
  a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 4px;
  opacity: 1;
  transition: width 0.2s ease;
  -webkit-transition: width 0.2s ease;
  -moz-transition: width 0.2s ease;
  -ms-transition: width 0.2s ease;
  -o-transition: width 0.2s ease;
}

header
  .menu-container
  #menu
  #menu-main-menu
  .menu-item-has-children
  .sub-menu
  a:hover::after {
  width: 105%;
}

header .menu-container #menu .menu-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

header .menu-container #menu .menu-footer a,
header .menu-container #menu .menu-footer .social-links img {
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

header .menu-container #menu .menu-footer a:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

header .menu-container #menu .menu-footer .social-links {
  margin-left: 25px;
  padding-left: 15px;
  border-left: 1px solid #e6511e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

header .menu-container #menu .menu-footer .social-links a {
  padding: 0 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header .menu-container #menu .menu-footer .social-links a:hover .pop-up {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
}

@media all and (min-width: 1500px) {
  header .menu-container #menu .main-container > .container {
    padding: 200px 22px;
  }
}

@media all and (max-width: 1400px) {
  header .menu-container #menu .menu-footer a,
  header .menu-container #menu .phone {
    font-size: 18px;
  }
}

@media all and (max-width: 1250px) {
  header .menu-container #menu .menu-right > .container {
    margin-left: auto;
    width: 500px;
  }
  header .menu-container #menu .menu-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  header .menu-container #menu .menu-header a.icon {
    display: none;
  }
}

@media all and (max-width: 1024px) {
  header .menu-container #menu .menu-left {
    display: none;
  }
  header .menu-container #menu .menu-right {
    width: 100%;
  }
  header .menu-container #menu .menu-right > .container {
    width: 608px;
  }
}

@media all and (max-width: 991px) {
  header .menu-container #menu .menu-right {
    padding-top: 170px;
    padding-bottom: 115px;
  }
  header .menu-container #menu .menu-right > .container {
    max-width: 100%;
    padding: 0 20px;
    height: auto;
  }
  header .menu-container #menu span.close-menu {
    top: 25px;
    right: 25px;
  }
  header .menu-container #menu .notification {
    padding-left: 60px;
  }
  header .menu-container #menu .notification::before {
    width: 20px;
    height: 24px;
    padding-right: 20px;
  }
  header .menu-container #menu #menu-main-menu a {
    font-size: 45px;
  }
  header .menu-container #menu #menu-main-menu .sub-menu a {
    font-size: 18px;
  }
}

@media all and (max-width: 767px) {
  header .menu-container #menu .menu-right > .container {
    width: 100%;
  }
  header .menu-container #menu .notification {
    font-size: 20px;
  }
  header .menu-container #menu .notification .sub-notif {
    font-size: 10px;
  }
  header .menu-container #menu .menu-footer {
    margin-bottom: 25px;
  }
  header .menu-container #menu .menu-footer .social-links {
    margin-left: 20px;
  }
  header .menu-container #menu .menu-footer .social-links a {
    padding: 0 10px;
  }
}

header .header-type-1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 125vh;
  height: 910px;
}

header .header-type-1 .content {
  margin-top: 300px;
}

header .header-type-1 .content .picto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header .header-type-1 .content .picto .splash {
  -webkit-transform: translate(-10px, -50px);
  transform: translate(-10px, -50px);
  opacity: 0;
}

header .header-type-1 .content .picto .plank {
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

header .header-type-1 .content .picto svg {
  z-index: 0;
}

header .header-type-1 .content .infos {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

header .header-type-1 .content .infos .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

header .header-type-1 .content .infos .sous-titre {
  display: block;
}

header .header-type-1 .content .infos .sous-titre hr {
  margin-bottom: 10px;
}

header .header-type-1 .content .infos .sous-titre .label {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0em;
  text-align: left;
}

header .header-type-1 .content .infos .citation {
  position: relative;
  bottom: 20px;
}

header .header-type-1 .content .infos .citation p {
  font-family: "BLACKHAWK";
  font-size: 60px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  position: relative;
  right: 22px;
}

header .header-type-1 .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 125px;
  position: relative;
  text-decoration: none;
}

header .header-type-1 .more p {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.4em;
  text-align: center;
  text-transform: uppercase;
}

header .header-type-1 .more .arrow {
  margin-bottom: 25px;
  -webkit-animation: hop 0.7s ease infinite alternate;
  animation: hop 0.7s ease infinite alternate;
}

@-webkit-keyframes hop {
  from {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

@keyframes hop {
  from {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

header .header-type-1 .video {
  height: 150vh;
  width: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: calc(1150px - 50vh);
  pointer-events: none;
}

header .header-type-1 .video .sticky {
  height: 100vh;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .header-type-1 .video .sticky .lightview {
  max-width: 1400px;
  width: 90%;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: all;
}

header .header-type-1 .video .sticky .lightview a video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: none;
}

header .header-type-2 {
  height: 600px;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 100px;
}

header .header-type-2 .content {
  position: absolute;
  bottom: 125px;
}

header .header-type-2 .content .infos {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header .header-type-2 .content .infos .sous-titre {
  position: absolute;
  bottom: 100%;
}

header .header-type-2 .ariane {
  text-align: left;
  position: absolute;
  bottom: -20px;
  left: 15%;
}

header .header-type-2 .ariane span {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}

header .header-type-2 .ariane span a {
  color: #a4a4a4;
}

header .header-type-2 .ariane span .breadcrumb_last {
  font-weight: 300;
}

header .background {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
}

header .background .background-image {
  height: 100%;
}

header .background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

header .background img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

header .background .slider,
header .background .slick-list,
header .background .slick-track {
  height: 100%;
}

header .background .slider {
  height: 100%;
  pointer-events: none;
}

header .background .slider .slick-dots {
  bottom: 100px;
  pointer-events: all;
}

header .background .slider .slick-dots li {
  width: 40px;
  height: 3px;
  bottom: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

header .background .slider .slick-dots li button {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  padding: 0;
}

header .background .slider .slick-dots li button:before {
  content: "";
  width: 0%;
  height: 3px;
  opacity: 1;
  background: white;
}

header .background .slider .slick-dots li.slick-active {
  bottom: 2px;
}

header .background .slider .slick-dots li.slick-active button:before {
  transition: 3s linear;
  -webkit-transition: 3s linear;
  -moz-transition: 3s linear;
  -ms-transition: 3s linear;
  -o-transition: 3s linear;
  width: 100%;
}

header .background .split {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}

header .content .splash {
  position: absolute;
}

header .content .infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  text-transform: uppercase;
}

header .content .infos h1 {
  font-family: "Montserrat";
  font-size: 100px;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0em;
}

header .content .infos .liaison {
  font-family: "Nunito Sans";
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: center;
  position: absolute;
}

header .content .infos .sous-titre {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .content .infos .sous-titre .label {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 10px;
}

header .content .infos .sous-titre hr {
  width: 80px;
  height: 1px;
  border: none;
}

header .content .infos .citation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 500px;
  bottom: -25px;
  margin-left: auto;
  margin-right: auto;
}

header .content .infos .citation .splash {
  opacity: 0;
}

header .content .infos .citation .absolute {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .content .infos .citation .absolute:first-of-type {
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
}

header .content .infos .citation .absolute:last-of-type {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}

header .content .infos .citation .paint {
  width: 0px;
  position: absolute;
  overflow: hidden;
}

header .content .infos .citation .paint.first {
  left: 0;
  height: 105px;
}

header .content .infos .citation .paint.first svg {
  left: 0;
}

header .content .infos .citation .paint.second {
  right: 0;
  height: 105px;
}

header .content .infos .citation .paint.second svg {
  right: 0;
}

header .content .infos .citation .paint svg {
  position: absolute;
}

header .content .infos .citation p {
  font-family: "BLACKHAWK";
  font-size: 60px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  position: relative;
  right: 22px;
  opacity: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

header .fade {
  position: absolute;
  top: 100%;
  height: 80px;
  width: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f7f7f7),
    to(rgba(247, 247, 247, 0))
  );
  background: linear-gradient(180deg, #f7f7f7 0%, rgba(247, 247, 247, 0) 100%);
}

main {
  position: relative;
}

main .background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  z-index: -1;
}

.titre {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1230px;
  width: 90%;
  margin: auto;
}

.titre h2 {
  font-family: "Montserrat";
  font-size: 45px;
  font-weight: 600;
  line-height: 100%;
  max-width: 800px;
  width: 90%;
}

.titre .sous-titre {
  font-family: "Montserrat";
  font-size: 35px;
  font-weight: 500;
  line-height: 100%;
  margin: 20px 0 0;
  text-align: center;
}

.titre .sous-titre a {
  color: #e6511e;
}

.titre .subtitle {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.4em;
  margin: 25px 0;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .titre .subtitle {
    font-size: 16px;
  }
}

.titre h3 {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.4em;
  margin: 25px 0;
}

.article.simple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 1230px;
  width: 90%;
  margin: 50px auto;
  position: relative;
}

.article.simple .texte {
  font-family: "Montserrat";
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
}

.article.simple .texte p {
  margin-bottom: 40px;
}

.article.simple .texte p img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.article.simple .texte p img.aligncenter {
  margin: auto;
}

.article.simple .texte p img.alignright {
  margin-left: auto;
}

.article.simple .texte p img.alignleft {
  margin-right: auto;
}

.article.simple .texte a {
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.article.simple .texte a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}

.article.simple .media {
  width: 100%;
}

.article.simple .media .scroll-img,
.article.simple .media iframe {
  width: 100%;
  height: 600px;
}

.article.sur-mesure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1230px;
  margin: 100px auto;
  position: relative;
  width: 90%;
}

.article.sur-mesure.droite {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.article.sur-mesure.droite .media {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.article.sur-mesure.droite .infos {
  width: 600px;
}

.article.sur-mesure.gauche {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.article.sur-mesure.gauche .media {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.article.sur-mesure.gauche .infos {
  width: 600px;
}

.article.sur-mesure.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.article.sur-mesure.center .infos {
  width: 100%;
}

.article.sur-mesure.center .infos h2 {
  width: 600px;
}

.article.sur-mesure .infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.article.sur-mesure .infos > * {
  text-align: left;
}

.article.sur-mesure .infos h2 {
  font-family: "Montserrat";
  font-size: 45px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 20px;
}

.article.sur-mesure .infos .sous-titre {
  font-family: "Montserrat";
  font-size: 28px;
  font-weight: 500;
  line-height: 100%;
  margin: 0px 0 40px;
}

.article.sur-mesure .infos .texte {
  font-family: "Montserrat";
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
}

.article.sur-mesure .infos .texte p {
  margin-bottom: 40px;
}

.article.sur-mesure .infos .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article.sur-mesure .infos .cta .normal {
  width: 80px;
  height: 80px;
  background: black;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.article.sur-mesure .infos .cta .hover {
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.article.sur-mesure .infos .cta .more {
  position: absolute;
}

.article.sur-mesure .infos .cta:hover .hover {
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
}

.article.sur-mesure .media {
  width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.article.sur-mesure .media .lightview {
  width: 100%;
}

.article.sur-mesure .media .scroll-img {
  width: 100%;
  height: 600px;
}

.article.sur-mesure .media p {
  font-family: "Montserrat";
  font-size: 10px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  position: relative;
  bottom: -8px;
}

.article.sur-mesure .media p a {
  font-weight: 600;
}

.article.sur-mesure .media p a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #a4a4a4;
}

.article.accordeon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article.accordeon .liste {
  list-style: none;
  margin: 40px auto 100px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1134px;
  width: 90%;
}

.article.accordeon .liste > li {
  width: 100%;
  padding: 40px 0;
  border-bottom: 1px solid #828282;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.article.accordeon .liste > li:last-of-type {
  border: none;
}

.article.accordeon .liste > li .label h3 {
  font-family: "Montserrat";
  font-size: 35px;
  font-weight: 400;
  font-style: normal;
  line-height: 120%;
  text-align: center;
  text-transform: none;
  width: 650px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.article.accordeon .liste > li .label h3::after {
  content: "+";
  position: absolute;
  right: 0;
  font-family: "Montserrat";
  font-weight: 500;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -ms-transition: transform 0.5s;
  -o-transition: transform 0.5s;
}

.article.accordeon .liste > li .content {
  display: none;
  max-width: 940px;
  width: 90%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px auto 0;
}

.article.accordeon .liste > li .content .texte {
  font-family: "Montserrat";
  font-size: 20px;
  line-height: 120%;
}

.article.accordeon .liste > li .content .texte p {
  margin: 40px 0;
}

.article.accordeon .liste > li .content .media .scroll-img {
  height: 300px;
  width: 100%;
}

.article.accordeon .liste > li .content .media iframe {
  height: 300px;
  width: 100%;
}

.article.accordeon .liste > li .content a.cover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.article.accordeon .liste > li .content .cta {
  bottom: 100px;
  left: 0;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.article.accordeon .liste > li:first-of-type .content {
  display: block;
}

.article.accordeon .liste > li.open .label h3::after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.article.accordeon .liste > li .lightview {
  width: 100%;
}

.article.colonne {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1300px;
  width: 90%;
  margin: 100px auto;
  position: relative;
}

.article.colonne > div {
  width: 45%;
}

.article.colonne > a {
  width: 45%;
}

.article.colonne div .texte {
  font-family: "Montserrat";
  font-size: 22px;
  line-height: 120%;
  text-align: left;
}

.article.colonne div .texte p {
  margin-bottom: 40px;
}

.article.colonne div .media {
  width: 100%;
}

.article.colonne div .media .scroll-img {
  width: 100%;
  height: 300px;
}

.article.colonne div .media iframe {
  width: 100%;
  height: 300px;
}

.article .citation {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  font-family: "BLACKHAWK";
  font-size: 160px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  text-transform: uppercase;
}

.article .citation.haut {
  top: -50px;
}

.article .citation.bas {
  bottom: -30px;
}

.article .texte strong {
  font-weight: 500;
}

.article .texte a {
  text-decoration: none;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

.article .texte a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

.article .texte a:hover::after {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

.bouton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 50px 0;
}

.bouton a {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  padding: 20px 35px;
  text-decoration: none;
  text-transform: uppercase;
  border: 3px solid;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.bouton a .hover {
  z-index: -1;
  position: absolute;
  width: 250%;
  padding-top: 250%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  left: 0;
  top: 0;
  transform: translateX(-50%) translateY(-40%) scale(0);
  -webkit-transform: translateX(-50%) translateY(-40%) scale(0);
  -moz-transform: translateX(-50%) translateY(-40%) scale(0);
  -ms-transform: translateX(-50%) translateY(-40%) scale(0);
  -o-transform: translateX(-50%) translateY(-40%) scale(0);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.bouton a:hover .hover {
  transform: translateX(-50%) translateY(-40%) scale(1);
  -webkit-transform: translateX(-50%) translateY(-40%) scale(1);
  -moz-transform: translateX(-50%) translateY(-40%) scale(1);
  -ms-transform: translateX(-50%) translateY(-40%) scale(1);
  -o-transform: translateX(-50%) translateY(-40%) scale(1);
}

.bouton a.black {
  border-color: black;
  color: black;
}

.bouton a.black .hover {
  background: black;
}

.bouton a.black:hover {
  color: white;
}

.bouton a.white {
  border-color: white;
  color: white;
  background: black;
}

.bouton a.white:hover {
  background: white;
  color: black;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1170px;
  width: 90%;
  margin: auto;
  margin: 100px auto 150px;
}

.social a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.social a .infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  top: 40px;
}

.social a .infos .citation {
  position: absolute;
  left: -20px;
  z-index: -1;
  font-family: "BLACKHAWK";
  font-size: 160px;
  font-weight: 400;
  line-height: 80%;
  text-align: center;
  transform: rotate(-4deg);
  text-transform: uppercase;
  width: 100%;
  top: 70px;
  -webkit-transform: rotate(-4deg);
  -moz-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  -o-transform: rotate(-4deg);
}

.social a .infos > svg {
  margin-bottom: 40px;
}

.social a .infos h2 {
  font-family: "Montserrat";
  font-size: 45px;
  font-weight: 600;
  line-height: 100%;
  text-align: left;
}

.social a .infos .sous-titre {
  font-family: "Montserrat";
  font-size: 35px;
  font-weight: 500;
  line-height: 100%;
  margin-top: 20px;
  text-align: left;
  color: black;
}

.social a .media {
  position: relative;
  max-width: 600px;
  width: 100%;
}

.social a .media .frame {
  position: absolute;
  top: 80px;
  right: 80px;
  pointer-events: none;
}

.social a .media .galerie {
  height: 600px;
  width: 100%;
  position: relative;
}

.social a .media .galerie img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
}

.cursor .play {
  position: absolute;
  left: -60px;
  top: -60px;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.cursor.visible {
  opacity: 1;
}

.cursor.visible .play {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.carrousel {
  max-width: 1200px;
  width: 90%;
  height: 485px;
  margin: 75px auto;
  position: relative;
}

.carrousel .galerie,
.carrousel .slick-list,
.carrousel .slick-track,
.carrousel img {
  height: 100%;
}

.carrousel .slick-list.bounce-right {
  animation: bounce-right 1s ease-out;
  -webkit-animation: bounce-right 1s ease-out;
}

.carrousel .slick-list.bounce-left {
  animation: bounce-left 1s ease-out;
  -webkit-animation: bounce-left 1s ease-out;
}

@-webkit-keyframes bounce-right {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  25% {
    transform: translateX(-30px);
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
  }
  50% {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

@keyframes bounce-right {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  25% {
    transform: translateX(-30px);
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
  }
  50% {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

@-webkit-keyframes bounce-left {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  25% {
    transform: translateX(30px);
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px);
  }
  50% {
    transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

@keyframes bounce-left {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  25% {
    transform: translateX(30px);
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px);
  }
  50% {
    transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

.carrousel .galerie {
  padding: 0;
  list-style: none;
}

.carrousel .galerie .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 440px;
  width: 550px;
  margin: 0 auto;
  padding-top: 30px;
}

.carrousel .galerie .content .img-container {
  position: relative;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 20px 10px #0000001a;
  box-shadow: 0px 0px 20px 10px #0000001a;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.carrousel .galerie .content .img-container img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.carrousel .galerie .content .cta {
  position: absolute;
  bottom: -40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.carrousel .galerie .content .cta .normal {
  width: 80px;
  height: 80px;
  background: black;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.carrousel .galerie .content .cta .hover {
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.carrousel .galerie .content .cta .more {
  position: absolute;
}

.carrousel .galerie .content .infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  bottom: 80px;
  width: 100%;
  padding: 0 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.carrousel .galerie .content .infos > p {
  font-family: "Montserrat";
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}

.carrousel .galerie .content .infos span {
  font-family: "Montserrat";
  font-size: 25px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 20px;
  text-align: center;
}

.carrousel .galerie .slick-slide a .content:hover .img-container img {
  transform: scale(1.201);
  -webkit-transform: scale(1.201);
  -moz-transform: scale(1.201);
  -ms-transform: scale(1.201);
  -o-transform: scale(1.201);
}

.carrousel .galerie .slick-slide a .content:hover .cta .hover {
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
}

.carrousel .swipe {
  display: none;
}

.carrousel .swipe.display {
  display: block;
}

.carrousel .swipe .left,
.carrousel .swipe .right {
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  cursor: pointer;
  z-index: 1;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.carrousel .swipe .left {
  left: -4%;
}

.carrousel .swipe .left:hover {
  transform: translateX(-10px);
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
}

.carrousel .swipe .right {
  right: -4%;
}

.carrousel .swipe .right:hover {
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
}

.separateur.image {
  max-width: 1230px;
  width: 90%;
  height: auto;
  margin: 150px auto;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.separateur.image img {
  width: 100%;
  -webkit-box-shadow: 0px 10px 75px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 75px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  border-radius: 10px;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.separateur.image:hover {
  transform: scale(1.025);
  -moz-transform: scale(1.025);
  -ms-transform: scale(1.025);
  -o-transform: scale(1.025);
  -webkit-transform: scale(1.025);
}

.separateur.image:hover img {
  -webkit-box-shadow: 0px 10px 75px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 75px rgba(0, 0, 0, 0.2);
}

.separateur.ligne {
  max-width: 1230px;
  width: 90%;
  margin: auto;
  padding: 35px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.separateur.ligne .saw {
  position: absolute;
  z-index: -1;
  width: 75px;
  height: 75px;
  right: -37px;
}

.separateur.ligne .saw .container {
  position: relative;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

.separateur.ligne .saw .container .hide {
  position: absolute;
  width: 100%;
  height: 50%;
  background: #f7f7f7;
  bottom: 0;
}

.separateur.ligne .saw .container .second {
  position: relative;
}

.separateur.ligne .saw .container .second .hide {
  top: 0;
}

.separateur.ligne .saw .scie {
  -webkit-transform-origin: center;
  transform-origin: center;
}

.separateur.ligne .saw .eclats {
  position: absolute;
  bottom: 40px;
}

.separateur.ligne .saw .eclats path {
  display: none;
}

.separateur.ligne .saw .eclats path.display {
  display: block;
}

.separateur.ligne hr {
  width: 100%;
  border: none;
  border-bottom-width: 3px;
  border-bottom-style: dashed;
}

.separateur.ligne.black svg path {
  fill: black;
}

.separateur.ligne.black hr {
  color: black;
}

.separateur.ligne.white svg path {
  fill: white;
}

.separateur.ligne.white hr {
  color: white;
}

.separateur.symbole {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.separateur.symbole svg {
  width: auto;
}

.separateur.symbole.petit svg {
  height: 50px;
}

.separateur.symbole.moyen svg {
  height: 100px;
}

.separateur.symbole.grand svg {
  height: 200px;
}

.separateur.couleur {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.separateur.couleur p {
  font-family: "Montserrat";
  font-size: 28px;
  line-height: 100%;
  text-align: center;
}

.separateur.couleur.black {
  background: black;
}

.separateur.couleur.black p {
  color: white;
}

.separateur.couleur.white {
  background: white;
}

.separateur.couleur.white p {
  color: black;
}

.vignette.picto-texte {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
  max-width: 1200px;
  width: 90%;
  padding: 100px 0;
}

.vignette.picto-texte .card {
  width: 360px;
  height: 310px;
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 35px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 35px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 15px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  padding: 190px 20px 0;
}

.vignette.picto-texte .card > svg {
  height: 120px;
  max-width: 100%;
  width: auto;
  position: absolute;
  top: 50px;
}

.vignette.picto-texte .card p {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0 15px;
}

.vignette.picto-texte .card .more {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.vignette.picto-texte .card:hover {
  transform: scale(1.025);
  -webkit-transform: scale(1.025);
  -moz-transform: scale(1.025);
  -ms-transform: scale(1.025);
  -o-transform: scale(1.025);
  -webkit-box-shadow: 0px 5px 35px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 35px rgba(0, 0, 0, 0.5);
}

.vignette.picto-texte .card:hover .more {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.media.galerie .lightview {
  width: 100%;
}

.media.galerie.four .lightview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 500px;
}

.media.galerie.four .lightview a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% / 2);
  height: 250px;
}

.media.galerie.four .lightview a img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.media.galerie.six .lightview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 500px;
}

.media.galerie.six .lightview a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% / 3);
  height: 250px;
}

.media.galerie.six .lightview a img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.media.galerie.one .lightview a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.media.galerie.one .lightview a img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}

.media.galerie.two .lightview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 500px;
}

.media.galerie.two .lightview a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 50%;
}

.media.galerie.two .lightview a img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*footer fixed button*/
}

footer .bar-1 {
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .bar-1 p {
  font-family: "Nunito Sans";
  font-size: 30px;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 15px;
  text-align: center;
}

footer .bar-1 hr {
  width: 1px;
  height: 20px;
  border: none;
  background: white;
  margin: 0 15px;
}

footer .bar-1 .reseaux {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .bar-1 .reseaux a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  z-index: 1;
  margin: 0 15px;
}

footer .bar-1 .reseaux a:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

footer .bar-1 .reseaux a:hover .pop-up {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
}

footer .bar-2 {
  width: 100%;
  height: 80px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

footer .bar-2 .totop {
  position: absolute;
  left: 20px;
  z-index: 2;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

footer .bar-2 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .bar-2 ul li {
  margin: 0 25px;
}

footer .bar-2 ul li a {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

footer .bar-2 ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 0%;
  height: 1px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

footer .bar-2 ul li a:hover::after {
  width: 50%;
}

footer .bar-2 .data-projekt {
  position: absolute;
  right: 20px;
}

footer .credits {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px 0 100px;
  background: #f7f7f7;
}

footer .credits .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

footer .credits .copyright .label {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 700;
  line-height: 115%;
}

footer .credits .copyright hr {
  border: none;
  height: 15px;
  width: 1px;
  background: #828282;
  margin: 0 25px;
}

footer .credits .copyright .info {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 400;
  line-height: 115%;
  text-transform: uppercase;
}

footer .credits .referencement {
  max-width: 940px;
  width: 90%;
}

footer .credits .referencement p {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}

footer .credits .referencement p b {
  font-weight: 700;
}

footer .credits .referencement p a {
  color: black;
}

footer .buy {
  position: fixed;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 4;
}

footer .buy .stain {
  overflow: hidden;
  position: absolute;
}

footer .buy .stain.primary {
  width: 300px;
  right: -10%;
}

footer .buy .stain.hover {
  width: 0px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  right: -12%;
  transform: scaleX(-140%);
  -webkit-transform: scaleX(-140%);
  -moz-transform: scaleX(-140%);
  -ms-transform: scaleX(-140%);
  -o-transform: scaleX(-140%);
}

footer .buy p {
  font-family: "Montserrat";
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  z-index: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

footer .buy:hover .stain.hover {
  width: 230px;
}

footer a {
  text-decoration: none;
}

footer .footer-fixed-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border: 2px solid;
  z-index: 15;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

footer .footer-fixed-btn svg {
  pointer-events: none;
}

footer .footer-fixed-btn:hover {
  -webkit-transform-origin: center;
  transform-origin: center;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

footer .footer-fixed-btn:hover svg {
  -webkit-animation-name: jackInTheBox;
  -webkit-animation: jackInTheBox 0.5s;
  animation: jackInTheBox 0.5s;
}

footer .modal-contact {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  font-family: "Montserrat";
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -ms-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -o-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .modal-contact.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.7s, visibility 0s;
  transition: opacity 0.7s, visibility 0s;
}

footer .modal-contact .cross {
  position: fixed;
  top: 75px;
  right: 75px;
  z-index: 20;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  cursor: pointer;
}

footer .modal-contact .cross:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

footer .modal-contact .content {
  margin: auto;
}

footer .modal-contact .content h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
  margin: 50px 0;
}

footer .modal-contact .content .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
  margin: 50px 0;
  text-transform: uppercase;
}

footer .modal-contact .content .subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0.35em;
  text-align: center;
  margin-bottom: 75px;
  text-transform: uppercase;
}

footer .modal-contact .content .sous-titre {
  font-size: 14px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0.35em;
  text-align: center;
  margin-bottom: 75px;
}

footer .modal-ie {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  -webkit-animation-name: displayBlock;
  animation-name: displayBlock;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

footer .modal-ie.none {
  display: none;
}

footer .modal-ie svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@-webkit-keyframes displayBlock {
  to {
    opacity: 1;
  }
}

@keyframes displayBlock {
  to {
    opacity: 1;
  }
}

footer .cd-transition-layer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

footer .cd-transition-layer.opening .bg-layer {
  animation: cd-sequence-2 0.8s steps(37) forwards;
  -webkit-animation: cd-sequence-2 0.8s steps(37) forwards;
}

footer .cd-transition-layer.closing .bg-layer {
  animation: cd-sequence-2 0.8s steps(37) forwards reverse;
  -webkit-animation: cd-sequence-2 0.8s steps(37) forwards reverse;
}

footer .cd-transition-layer.visible {
  opacity: 1;
  visibility: visible;
}

footer .cd-transition-layer.visible .bg-layer {
  transform: translateY(-50%) translateX(-98.6842%);
  -webkit-transform: translateY(-50%) translateX(-98.6842%);
  -moz-transform: translateY(-50%) translateX(-98.6842%);
  -ms-transform: translateY(-50%) translateX(-98.6842%);
  -o-transform: translateY(-50%) translateX(-98.6842%);
}

footer .cd-transition-layer .bg-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  transform: translateY(-50%) translateX(-1.3158%);
  -webkit-transform: translateY(-50%) translateX(-1.3158%);
  -moz-transform: translateY(-50%) translateX(-1.3158%);
  -ms-transform: translateY(-50%) translateX(-1.3158%);
  -o-transform: translateY(-50%) translateX(-1.3158%);
  width: 3800%;
  background-image: url("../images/footer/scribble.png");
}

@-webkit-keyframes cd-sequence {
  0% {
    /* translateX(-2%) is used to horizontally center the first frame inside the viewport */
    -webkit-transform: translateY(-50%) translateX(-2%);
    transform: translateY(-50%) translateX(-2%);
  }
  100% {
    /* translateX(-98%) (2% + 96) is used to horizontally center the last frame inside the viewport  */
    -webkit-transform: translateY(-50%) translateX(-98%);
    transform: translateY(-50%) translateX(-98%);
  }
}

@keyframes cd-sequence {
  0% {
    /* translateX(-2%) is used to horizontally center the first frame inside the viewport */
    -webkit-transform: translateY(-50%) translateX(-2%);
    transform: translateY(-50%) translateX(-2%);
  }
  100% {
    /* translateX(-98%) (2% + 96) is used to horizontally center the last frame inside the viewport  */
    -webkit-transform: translateY(-50%) translateX(-98%);
    transform: translateY(-50%) translateX(-98%);
  }
}

@-webkit-keyframes cd-sequence-2 {
  0% {
    -webkit-transform: translateY(-50%) translateX(-1.3158%);
    transform: translateY(-50%) translateX(-1.3158%);
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-98.6842%);
    transform: translateY(-50%) translateX(-98.6842%);
  }
}

@keyframes cd-sequence-2 {
  0% {
    -webkit-transform: translateY(-50%) translateX(-1.3158%);
    transform: translateY(-50%) translateX(-1.3158%);
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-98.6842%);
    transform: translateY(-50%) translateX(-98.6842%);
  }
}

@-webkit-keyframes cd-sequence-3 {
  0% {
    -webkit-transform: translateY(-50%) translateX(-2.5%);
    transform: translateY(-50%) translateX(-2.5%);
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-97.5%);
    transform: translateY(-50%) translateX(-97.5%);
  }
}

@keyframes cd-sequence-3 {
  0% {
    -webkit-transform: translateY(-50%) translateX(-2.5%);
    transform: translateY(-50%) translateX(-2.5%);
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-97.5%);
    transform: translateY(-50%) translateX(-97.5%);
  }
}

@media (max-width: 767px) {
  header .menu-container {
    padding: 25px;
  }
  header .menu-container .options .star {
    height: 20px;
    width: 21px;
  }
  header .menu-container .options .etsy {
    width: 89px;
    height: 30px;
  }
  header .menu-container .options > * {
    margin-left: 20px;
  }
  header .header-type-1 {
    height: 600px;
    margin-bottom: 300px;
  }
  header .header-type-1 .content {
    margin-top: 220px;
    max-width: 100%;
    overflow: hidden;
  }
  header .header-type-1 .content .picto .splash {
    height: 107px;
    width: 90px;
    -webkit-transform: translate(-5px, -30px);
    transform: translate(-5px, -30px);
  }
  header .header-type-1 .content .picto svg:not(.splash) {
    height: 50px;
    width: 89px;
  }
  header .header-type-1 .content .infos {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .header-type-1 .content .infos .liaison {
    font-size: 10px;
  }
  header .header-type-1 .content .infos .sous-titre {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
  }
  header .header-type-1 .content .infos .sous-titre hr {
    display: none;
  }
  header .header-type-1 .content .infos .sous-titre .label {
    display: none;
  }
  header .header-type-1 .content .infos .citation {
    right: auto;
    bottom: auto;
  }
  header .header-type-1 .content .infos .citation .paint {
    height: 47px !important;
  }
  header .header-type-1 .content .infos .citation .paint.first {
    left: 25%;
  }
  header .header-type-1 .content .infos .citation .paint.second {
    right: 40%;
  }
  header .header-type-1 .content .infos .citation .paint svg {
    width: 302px !important;
    height: 47px !important;
  }
  header .header-type-1 .content .infos .citation .splash {
    width: 123px;
    height: 146px;
  }
  header .header-type-1 .content .infos .citation p {
    font-size: 35px;
    right: auto;
  }
  header .header-type-1 .more {
    margin-top: 45px;
  }
  header .header-type-1 .more .arrow {
    display: none;
  }
  header .header-type-1 .more p {
    font-size: 12px;
    padding: 0 15px;
  }
  header .header-type-1 .video {
    height: auto;
    top: 525px;
    position: absolute;
  }
  header .header-type-1 .video .sticky {
    height: auto;
  }
  header .header-type-1 .video .sticky .lightview {
    height: 280px;
    width: 90%;
  }
  header .header-type-1 .video .sticky .lightview a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .header-type-1 .video .sticky .lightview a .play {
    position: absolute;
  }
  header .header-type-2 {
    height: 400px !important;
    margin-bottom: 25px;
    overflow: hidden;
  }
  header .header-type-2 .content {
    bottom: 100px;
  }
  header .header-type-2 .content .infos .sous-titre {
    display: none;
  }
  header .header-type-2 .content .infos .citation .paint {
    height: 47px !important;
  }
  header .header-type-2 .content .infos .citation .paint.first {
    left: 35%;
  }
  header .header-type-2 .content .infos .citation .paint.second {
    right: 35%;
  }
  header .header-type-2 .content .infos .citation .paint svg {
    width: 302px !important;
    height: 47px !important;
  }
  header .header-type-2 .content .infos .citation .absolute:last-of-type {
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
  }
  header .header-type-2 .content .infos .citation .splash {
    width: 123px;
    height: 146px;
  }
  header .header-type-2 .content .infos .citation p {
    font-size: 35px;
    right: auto;
  }
  header .header-type-2 .ariane {
    display: none;
  }
  header .content .infos h1 {
    font-size: 40px;
    width: 300px;
  }
  header .content .infos .sous-titre .citation {
    min-width: 300px;
  }
  header .background .split {
    width: auto;
  }
  main .background {
    display: none;
  }
  .titre h2 {
    font-size: 28px;
  }
  .titre .sous-titre {
    font-size: 20px;
  }
  .titre h3 {
    font-size: 12px;
  }
  .article .citation {
    font-size: 60px;
  }
  .article.simple {
    margin: 25px auto;
  }
  .article.simple .texte {
    font-size: 16px;
  }
  .article.simple .texte p {
    margin-bottom: 20px;
  }
  .article.simple .texte p strong {
    font-weight: 600;
  }
  .article.simple .media .scroll-img {
    height: 300px;
  }
  .article.colonne {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 25px auto;
  }
  .article.colonne > div {
    width: 100%;
    margin: 10px 0;
  }
  .article.colonne > div .media {
    margin-top: 10px;
  }
  .article.colonne > div .media img {
    height: 300px;
  }
  .article.colonne > div .texte {
    font-size: 16px;
  }
  .article.colonne > div .texte p {
    margin-bottom: 20px;
  }
  .article.colonne > div .texte p strong {
    font-weight: 600;
  }
  .article.colonne > div .bouton {
    padding: 25px 0;
  }
  .article.accordeon .liste {
    margin-top: 0;
  }
  .article.accordeon .liste > li .label {
    width: 100%;
  }
  .article.accordeon .liste > li .label h3 {
    font-size: 22px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
    width: auto;
    padding-right: 15px;
  }
  .article.accordeon .liste > li .content {
    width: 100%;
  }
  .article.accordeon .liste > li .content .texte {
    font-size: 16px;
  }
  .article.accordeon .liste > li .content .texte p {
    margin-bottom: 20px;
  }
  .article.sur-mesure {
    margin: 40px auto;
  }
  .article.sur-mesure.droite {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .article.sur-mesure.droite .media {
    margin-top: 30px;
  }
  .article.sur-mesure.gauche {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .article.sur-mesure.gauche .media {
    margin-bottom: 50px;
  }
  .article.sur-mesure .infos {
    width: 100% !important;
  }
  .article.sur-mesure .infos h2 {
    font-size: 28px;
    text-align: center !important;
  }
  .article.sur-mesure .infos .sous-titre {
    font-size: 20px;
    text-align: center !important;
    margin: 10px 0 20px;
  }
  .article.sur-mesure .infos .texte {
    font-size: 16px;
  }
  .article.sur-mesure .infos .texte p {
    margin-bottom: 20px;
  }
  .article.sur-mesure .infos .texte p strong {
    font-weight: 600;
  }
  .article.sur-mesure .infos .cta .normal {
    width: 40px;
    height: 40px;
  }
  .article.sur-mesure .infos .cta .hover {
    width: 40px;
    height: 40px;
  }
  .article.sur-mesure .infos .cta .more {
    position: absolute;
    width: 10px;
    height: 10px;
  }
  .article.sur-mesure .media {
    width: 100%;
  }
  .article.sur-mesure .media .scroll-img {
    height: 390px;
  }
  .media.galerie:not(.one) .lightview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto !important;
  }
  .media.galerie:not(.one) .lightview a {
    width: 100% !important;
    height: 200px !important;
  }
  .carrousel {
    height: 325px;
    margin: 25px auto;
  }
  .carrousel .galerie .content {
    height: 250px;
    width: 90%;
  }
  .carrousel .galerie .content .img-container {
    -webkit-box-shadow: 0px 0px 20px 5px #0000001a;
    box-shadow: 0px 0px 20px 5px #0000001a;
  }
  .carrousel .galerie .content .cta {
    bottom: -20px;
  }
  .carrousel .galerie .content .cta .normal,
  .carrousel .galerie .content .cta .hover {
    width: 40px;
    height: 40px;
  }
  .carrousel .galerie .content .cta .more {
    width: 10px;
    height: 10px;
  }
  .carrousel .galerie .content .infos {
    bottom: 40px;
  }
  .carrousel .galerie .content .infos p {
    font-size: 20px;
  }
  .carrousel .galerie .content .infos span {
    font-size: 16px;
  }
  .carrousel .swipe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    width: 100%;
  }
  .carrousel .swipe.display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .carrousel .swipe .left,
  .carrousel .swipe .right {
    margin: 0;
    position: relative;
  }
  .carrousel .swipe .left {
    left: -10%;
  }
  .carrousel .swipe .right {
    right: -10%;
  }
  .bouton a {
    font-size: 14px;
    padding: 15px 25px;
    border: 2px solid #e95139;
  }
  .separateur.couleur {
    padding: 0 25px;
  }
  .separateur.couleur p {
    font-size: 30px;
  }
  .separateur.image {
    margin: 75px auto;
  }
  .separateur.ligne .saw {
    right: 0;
  }
  .separateur.ligne .saw .scie {
    width: 70px;
    height: 70px;
  }
  .vignette.picto-texte .card {
    width: 325px;
    height: 280px;
    margin: 15px 0;
  }
  .vignette.picto-texte .card .more {
    width: 16px;
    height: 16px;
  }
  .social {
    position: relative;
    margin: 100px auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .social a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .social a .infos {
    top: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    position: static;
  }
  .social a .infos .citation {
    font-size: 60px;
    top: auto;
    bottom: -40px;
  }
  .social a .infos > svg {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
  .social a .infos h2 {
    font-size: 28px;
    text-align: center;
  }
  .social a .infos .sous-titre {
    font-size: 20px;
    z-index: 1;
    background: #f7f7f7;
    padding: 0 15px;
  }
  .social a .media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .social a .media .galerie {
    max-width: 325px;
    width: 100%;
    height: 325px;
  }
  .social a .media .frame {
    display: none;
  }
  .social a .media .frame-mob {
    position: absolute;
    max-width: 300px;
    width: 90%;
    top: -33px;
  }
  footer {
    position: relative;
  }
  footer .bar-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    padding: 25px 25px 35px;
  }
  footer .bar-1 p {
    margin: 0;
    width: 250px;
  }
  footer .bar-1 hr {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    margin: 5px 0;
  }
  footer .bar-2 {
    height: auto;
    padding: 15px 0 35px;
    position: static;
  }
  footer .bar-2 ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer .bar-2 ul li {
    margin: 15px;
  }
  footer .bar-2 ul li a {
    letter-spacing: 0.25em;
  }
  footer .bar-2 .data-projekt {
    bottom: 100px;
    right: auto;
  }
  footer .bar-2 .totop {
    bottom: 155px;
    left: auto;
  }
  @media screen and (max-width: 767px) {
    footer .bar-2 .totop {
      bottom: 237px;
      left: auto;
    }
  }
  footer .credits {
    padding: 40px 0 100px;
  }
  footer .credits .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  footer .credits .copyright .label {
    margin-bottom: 15px;
  }
  footer .credits .copyright hr,
  footer .credits .copyright .tiret {
    display: none;
  }
  footer .credits .copyright .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 165px;
  }
  footer .credits .referencement {
    display: none;
  }
  footer .footer-fixed-btn {
    width: 40px;
    height: 40px;
  }
  footer .footer-fixed-btn svg {
    width: 20px;
    height: 20px;
  }
  footer .buy p {
    font-size: 20px;
  }
  footer .buy .stain.primary {
    right: -85%;
  }
  footer .buy .stain svg {
    width: 172px;
  }
  footer .modal-contact .cross {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 767px) {
  footer .buy p {
    font-size: 15px;
  }

  footer .buy .stain.primary {
    right: -87%;
  }
}

.form-container {
  position: relative;

  .form-infos {
    margin-top: 1rem;
  }

  .gform_wrapper {
    --form-color: #ff5200 !important;
    text-align: left;
    margin-top: 2rem;
    font-family: inherit;

    &:focus-within .gfield:not(:focus-within) {
      opacity: 0.5 !important;
    }
    &.focus-checkbox .gfield {
      &:not(:focus-within) {
        opacity: 0.5 !important;
      }
      &.focused-checkbox {
        opacity: 1 !important;
      }
    }
    &:focus-within .gfield:hover:not(:focus-within) {
      opacity: 1 !important;
      > * {
        opacity: 0.5 !important;
      }
      .gform_button:hover {
        opacity: 1 !important;
      }
    }

    .gform_title {
      display: none;
    }

    .gfield_required {
      color: var(--form-color) !important;
    }

    .gform_required_legend {
      display: none;
    }

    .gfield_required,
    .gform_required_legend .gfield_required {
      font-size: 1.4rem !important;
      font-weight: 400 !important;
      line-height: 1 !important;
      vertical-align: bottom !important;
    }

    .gform_validation_errors {
      margin-bottom: 2rem !important;
      background-color: white !important;
      box-shadow: none !important;
      border-width: 2px !important;

      h2.gform_submission_error {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        column-gap: 0.5rem !important;
        font-size: 1rem !important;

        .gform-icon {
          left: 0 !important;
          position: relative !important;
        }
      }
    }

    &.gravity-theme {
      label {
        font-weight: 400 !important;
        color: var(--form-color) !important;
      }

      .gfield_label {
        font-size: 1.2rem !important;
      }

      .form-contact,
      .form-projet {
        .gfield:nth-child(-n + 2) {
          margin: 1rem 0 !important;
        }
      }

      .gfield {
        &:not(fieldset) {
          display: flex !important;
          flex-direction: column !important;
          position: relative !important;
          margin: 1.5rem 0 !important;

          label {
            position: absolute !important;
            top: 0 !important;
            transform: translateY(40%) translateX(20px) !important;
            transform-origin: center left !important;
            transition: transform 150ms ease, font-weight 150ms ease !important;
            background: white !important;
            padding: 0 0.4rem !important;
            pointer-events: none !important;
          }

          &:focus-within label,
          label.input-filled {
            transform: translateY(-70%) translateX(10px) scale(0.8) !important;
            font-weight: 600 !important;
          }

          input,
          select,
          textarea {
            display: block !important;
            min-height: 50px !important;
            border: 2px solid transparent !important;
            border-bottom-color: var(--form-color) !important;
            color: var(--form-color) !important;
            background-color: transparent !important;
            padding: 1rem calc(10px + 0.4rem) !important;

            &:focus-visible {
              outline: none !important;
              border-color: var(--form-color) !important;
            }
          }
        }
        &.gfield_hcaptcha {
          margin: 0 !important;
          align-items: flex-end !important;
        }
      }

      .gform_fields {
        grid-row-gap: 1rem !important;
      }

      .gfield_consent_label,
      .gfield-choice-input + label {
        display: inline !important;
        font-size: 1rem !important;
        font-weight: 400 !important;
      }

      .gfield_consent_label a {
        color: var(--form-color) !important;
      }

      .ginput_container.ginput_container_checkbox .gchoice,
      .ginput_container.ginput_container_consent {
        display: flex !important;
        flex-direction: row-reverse !important;
        align-items: center !important;
        column-gap: 10px !important;
      }

      .ginput_container.ginput_container_consent + .gfield_validation_message,
      .gfield_hcaptcha {
        width: 48% !important;
        margin-left: auto !important;
      }

      .ginput_container input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        border: 2px solid var(--form-color) !important;
        background: var(--form-color) !important;
        box-shadow: 0 0 0 16px #fff inset !important;
        appearance: none !important;
        transition: all 100ms ease !important;
        flex-shrink: 0 !important;

        &:checked {
          border: 2px solid var(--form-color) !important;
          box-shadow: 0 0 0 3px #fff inset !important;
        }
      }

      .field_description_below .gfield_consent_description,
      .gfield_consent_description {
        border: none !important;
        overflow-y: auto !important;
      }

      .gform_footer {
        padding: 0 !important;
        margin: 0 !important;
        justify-content: flex-end !important;
      }

      .gform_button {
        margin-top: 1rem !important;
        font-size: 1rem !important;
        border-width: 2px !important;
      }

      .gfield_validation_message,
      .validation_message {
        margin-top: 0 !important;
        border: none !important;
        font-size: 0.85rem !important;
        font-style: italic !important;
      }

      .gform_ajax_spinner {
        position: absolute !important;
        width: 100% !important;
        padding: 40% !important;
        background-color: #ffffff80 !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
      }

      &.form-newsletter_wrapper .gform_fields {
        grid-row-gap: 2rem !important;
      }
    }
  }
}
/*# sourceMappingURL=style.css.map */
