@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bitter:wght@400;700&family=Roboto:wght@300;500;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;700&family=Open+Sans:wght@400;700&display=swap");
:root {
  --logo-title-font: "Roboto";
  --title-font: "Josefin Sans";
  --content-font: "Open Sans";
  --yellow-color: #edb713;
}
body {
  width: 100%;
  min-height: 100%;
  color: #525252;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--content-font);
}
.button:active,
.button:focus,
a:active,
a:focus {
  background-color: inherit;
}
.yellow {
  color: #edb713;
}
a {
  -webkit-transition: -webkit-text-decoration-color 0.25s;
  transition: -webkit-text-decoration-color 0.25s;
  transition: text-decoration-color 0.25s;
  transition: text-decoration-color 0.25s, -webkit-text-decoration-color 0.25s;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
}
#main a,
.odb-footer a {
  color: #edb713;
}
input[type="submit"],
input[type="file"] {
  background: unset;
  color: #edb713;
  padding: 0.5em;
  border: 2px solid #edb713;
  cursor: pointer;
}
input[type="submit"]:hover,
input[type="file"]:hover {
  background-color: #edb713;
  color: #333333;
}
.button.boxed.yellow:hover {
  color: #333 !important;
  background: #edb713;
}
p {
  cursor: default;
  font-family: var(--content-font);
  font-weight: lighter;
  color: #555555;
  padding-bottom: 2em;
}
p.has-text-align-center {
  text-align: center;
}
p.white {
  color: white;
}
p.justify {
  text-align: justify;
}
.modBlogPost {
  margin-top: 0px;
}
.modBlogPost img {
  width: auto !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
.title {
  cursor: default;
  font-family: var(--title-font);
  font-weight: bolder;
  margin-bottom: 0.5em;
  letter-spacing: -0.05em !important;
}
.section-title h2 {
  letter-spacing: -0.05em;
}
p.small-title {
  font-family: var(--title-font);
  font-weight: 400;
}
#main.top-shift {
  margin-top: 0px;
}
#main.top-shift-short {
  position: relative;
  top: 0px;
}
#main {
  background: white;
  left: 0;
  top: 70px;
}
.full {
  padding-top: 60px;
}
.parallax {
  background-position: center;
  background-size: cover;
}
.grecaptcha-badge {
  z-index: 10000000;
  bottom: 100px !important;
}
.card {
  margin-bottom: 2em;
  padding: 0.5em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.card.shadow {
  -webkit-box-shadow: 5px 5px 13px -10px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 13px -10px rgba(0, 0, 0, 0.3);
}
.card.center {
  text-align: center;
}
.card-section {
  -webkit-box-flex: unset;
  -ms-flex: unset;
  flex: unset;
}
.card h2 {
  margin-bottom: 1em;
}
.slick-slide {
  display: inline-block;
  width: 100%;
  height: auto;
}
.gallery.masonry {
  overflow: hidden;
}
.odb-bottom-left {
  position: absolute !important;
  left: 50px;
  bottom: 50px;
  z-index: 100;
}
#odb-preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 100000;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
#odb-preloader.loaded {
  opacity: 0;
  pointer-events: none;
}
:root {
  --rot-angle: 60deg;
}
html,
body {
  height: 100%;
}
.odb-preloader--container {
  height: 100%;
  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;
}
#odb-preloader--egg-svg {
  display: block;
  width: 120px;
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s linear 0.2s;
  transition: opacity 0.3s linear 0.2s;
  -webkit-animation: rotation_anim 2s infinite;
  animation: rotation_anim 2s infinite;
}
@-webkit-keyframes rotation_anim {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  66% {
    -webkit-transform: rotate(calc(var(--rot-angle) * 1));
    transform: rotate(calc(var(--rot-angle) * 1));
  }
  72% {
    -webkit-transform: rotate(calc(var(--rot-angle) * -0.8));
    transform: rotate(calc(var(--rot-angle) * -0.8));
  }
  78% {
    -webkit-transform: rotate(calc(var(--rot-angle) * 0.6));
    transform: rotate(calc(var(--rot-angle) * 0.6));
  }
  82% {
    -webkit-transform: rotate(calc(var(--rot-angle) * -0.4));
    transform: rotate(calc(var(--rot-angle) * -0.4));
  }
  88% {
    -webkit-transform: rotate(calc(var(--rot-angle) * 0.2));
    transform: rotate(calc(var(--rot-angle) * 0.2));
  }
  94% {
    -webkit-transform: rotate(calc(var(--rot-angle) * 0));
    transform: rotate(calc(var(--rot-angle) * 0));
  }
}
@keyframes rotation_anim {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  66% {
    -webkit-transform: rotate(calc(var(--rot-angle) * 1));
    transform: rotate(calc(var(--rot-angle) * 1));
  }
  72% {
    -webkit-transform: rotate(calc(var(--rot-angle) * -0.8));
    transform: rotate(calc(var(--rot-angle) * -0.8));
  }
  78% {
    -webkit-transform: rotate(calc(var(--rot-angle) * 0.6));
    transform: rotate(calc(var(--rot-angle) * 0.6));
  }
  82% {
    -webkit-transform: rotate(calc(var(--rot-angle) * -0.4));
    transform: rotate(calc(var(--rot-angle) * -0.4));
  }
  88% {
    -webkit-transform: rotate(calc(var(--rot-angle) * 0.2));
    transform: rotate(calc(var(--rot-angle) * 0.2));
  }
  94% {
    -webkit-transform: rotate(calc(var(--rot-angle) * 0));
    transform: rotate(calc(var(--rot-angle) * 0));
  }
}
.menu-item a {
  position: relative;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.menu-item a:hover {
  text-decoration: none;
}
.menu-item a::after {
  content: "";
  position: absolute;
  display: block;
  background-color: currentColor;
  opacity: 0.6;
  width: 100%;
  height: 2px;
  bottom: 0px;
  left: 0px;
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none;
}
.menu-item a:hover::after {
  content: "";
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.odb-page-title-widget-container {
  overflow: hidden;
}
.odb-page-title-widget-container .bg-image {
  background-size: cover;
  background-position: 50% 50%;
}
.odb-page-title-widget-container .odb-overlay {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#000000ff),
    to(#00000088)
  );
  background: linear-gradient(#000000ff 0%, #00000088 100%);
  opacity: 0.5;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}
.odb-logo-container svg {
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px;
}
#svg-logo--container {
  position: relative;
  width: 190px;
  border: 0px solid red;
  padding: 0px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scale(1);
  transform: scale(1);
  margin: 20px;
  margin: 0 auto;
  opacity: 0;
  z-index: 200;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#svg-logo--container:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
#svg-logo--container svg {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0px 0px 9px 0px #5a5854;
  box-shadow: 0px 0px 9px 0px #5a5854;
}
#svg-logo--jaune {
  position: absolute;
  left: 50%;
  opacity: 0;
  -webkit-transform: translateX(calc(-136px / 2)) translateY(calc(20px))
    scale(0.8);
  transform: translateX(calc(-136px / 2)) translateY(calc(20px)) scale(0.8);
  margin: 0 auto;
}
#svg-logo--typo-group {
  -webkit-transform: translateX(95px);
  transform: translateX(95px);
}
#svg-logo--typo {
  -webkit-transform: translate(-190px, 55%) scale(170);
  transform: translate(-190px, 55%) scale(170);
}
#svg-logo--rect-group {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}
#svg-logo--ellipse {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
#svg-logo--rectangle {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.odb-annonce-box {
  background: white;
  margin: 10px 10px 80px;
}
.odb-product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.odb-product-card img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.wp-block-lazyblock-odb-product-card:focus {
  outline: unset;
}
.odb-carousel {
  width: 90%;
  margin: 0 auto;
}
.slick-dots li button:before {
  font-size: 10px;
  color: var(--yellow-color);
}
.slick-dots li button:before,
.slick-dots li.slick-active button:before {
  color: var(--yellow-color);
}
.top-bar .title-area .name h1 a {
  white-space: nowrap;
}
.odb-title {
  cursor: default;
  display: block;
  position: relative;
  margin-bottom: 1em;
  color: #525252;
  font-family: var(--title-font);
  text-align: left;
}
.odb-title::before {
  content: "";
  position: absolute;
  top: 100%;
  background: #edb713;
  width: 150px;
  max-width: 100%;
  height: 2px;
}
.odb-full {
  padding: 60px 0 80px;
  background-size: cover;
  background-position: 50% 50%;
  clear: both;
}
.odb-image-header {
  height: 20em;
  width: 100%;
  padding: 0;
  margin: 0;
  background-size: cover;
  background-position: center;
}
.full {
  background: white;
  background-position: center;
  background-size: cover;
}
.fullscreen {
  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;
}
.fullscreen.odb-video-block {
  height: 60vh;
  min-height: unset;
}
.fullscreen .overlay {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#000000ff),
    color-stop(50%, #000000ee),
    to(#000000ff)
  );
  background: linear-gradient(#000000ff 0%, #000000ee 50%, #000000ff);
  opacity: 0.22;
  position: absolute;
  z-index: 3;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}
.fullscreen .overlay.light {
  opacity: 0.3;
}
.fullscreen .layer {
  position: relative;
  z-index: 4;
  max-width: 1000px;
  left: 0px;
}
.fullscreen .layer h1 {
  margin-bottom: 10px;
  font-weight: unset;
}
.odb-header-desc {
  color: white;
}
#odb-down-arrow {
  z-index: 10;
  position: relative;
  cursor: pointer;
  color: white;
  font-size: 5em;
  text-align: center;
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#odb-down-arrow:hover {
  opacity: 1;
  padding-top: 50px;
}
#odb-down-arrow.orange {
  color: orange;
}
.odb-text-intro--container {
  padding: 120px 50px 0px;
  background: white;
}
.odb-footer {
  z-index: 10;
  position: relative;
  margin-top: auto;
  background: #222;
  padding-bottom: 0px;
  padding-top: 50px;
  padding-left: 1em;
  width: 100%;
}
.odb-footer-menu {
  position: absolute;
}
.odb-footer a {
  padding: 10px 0px 2px;
  font-weight: bolder;
  opacity: 0.8;
}
.odb-footer .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.odb-footer .inner ul {
  padding: 0;
  width: 300px;
  height: auto;
  display: block;
  font-size: 14px;
  margin: 0;
  list-style: none;
  position: relative;
}
.odb-footer .inner ul li {
  display: block;
  padding-left: 2em;
  padding-bottom: 10px;
}
.odb-footer .copyright {
  top: 100%;
  width: 100%;
  font-weight: bolder;
  letter-spacing: 0em;
  opacity: 0.6;
  text-align: center;
}
.odb-footer .copyright > span {
  display: block;
}
.od-contact--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 5px;
}
.wp-block-lazyblock-odb-carousel {
  padding-bottom: 60px;
}
@media only screen and (max-width: 800px) {
  .od-contact--container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .fullscreen .layer {
    padding: 0px 0.5em 0px 0.5em;
  }
  .full {
    padding-top: 50px;
  }
  .odb-product-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .odb-product-card img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    max-height: 150px;
  }
}
@media only screen and (max-width: 640px) {
  .fullscreen {
    position: relative;
    background-size: cover;
    overflow: hidden;
  }
  .fullscreen .layer {
    padding: 0px 0.5em 0px 0.5em;
  }
  .odb-full {
    padding-top: 30px;
  }
  .odb-text-intro--container {
    padding: 30px 10px;
  }
  .button {
    margin-bottom: 5px;
  }
  .top-bar .title-area .name h1 a {
    font-size: 1em;
  }
}
form.wpcf7-form p {
  margin: 0;
  padding: 0;
}
form.wpcf7-form label {
  color: #525252;
}
@media only screen and (max-width: 60em) {
  .fullscreen .layer {
    top: unset;
    left: unset;
  }
  .contain-to-grid.transparent {
    position: absolute;
  }
}
@media only screen and (max-height: 600px) {
  .fullscreen {
    min-height: 200px;
  }
}
/*# sourceMappingURL=style.min.css.map */
