@import url("https://fonts.googleapis.com/css2?family=Mogra&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Caveat:wght@400;700&display=swap");
.animated {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
            transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
            transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
            transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
            transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
            transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
            transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.lazyblock-odb-card-Z10zArj {
  height: 100%;
  padding-bottom: 2em;
}

.lazyblock-odb-card-Z10zArj .card {
  height: 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.padding-1 {
  padding: 1em;
}

.padding-2 {
  padding: 2em;
}

.odb-yellow {
  color: #edb713;
}

.grey-bg {
  background: #f9f9f9;
}

#odb-latest-posts {
  padding-bottom: 2.5em;
}

.odb-latest-posts-card {
  padding: 0 !important;
  margin: 0 !important;
}

.odb-latest-posts-card p {
  padding: 0 !important;
}

.odb-latest-posts-card .info {
  font-size: 0.8em;
}

#odb-signatures {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Caveat", cursive;
  max-width: 900px;
  margin: 0 auto;
}

#odb-signatures .container {
  padding: 2em;
  text-align: center;
}

#odb-signatures .title {
  font-family: "Amatic SC", cursive;
  letter-spacing: 0.06em;
  font-size: 2em;
  padding-bottom: 1em;
}

#odb-signatures .name {
  letter-spacing: -0.05em;
  font-size: 2em;
  font-weight: 400;
  color: gray;
}

@media screen and (max-width: 600px) {
  #odb-signatures {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.odb-annonces-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.odb-annonces-container .card {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding: 1em;
  margin: 1%;
}

@media screen and (min-width: 800px) {
  .odb-annonces-container .card {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    padding: 1em;
    margin: 1%;
  }
}

@media screen and (min-width: 1200px) {
  .odb-annonces-container .card {
    -ms-flex-preferred-size: 31%;
        flex-basis: 31%;
    padding: 1em;
    margin: 1%;
  }
}

a:hover {
  text-decoration: underline;
}

a.odb-link {
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  position: relative;
}

a.odb-link.dark {
  color: inherit !important;
}

a.odb-link:hover {
  text-decoration: none;
  opacity: 0.8;
}

a.odb-link::after {
  content: "";
  position: absolute;
  top: calc(100% - 0.6rem);
  left: 0;
  opacity: 0;
  background: currentColor;
  width: 100%;
  height: 0.3rem;
  -webkit-transform: translate3d(0px, 0.2em, 0px);
          transform: translate3d(0px, 0.2em, 0px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a.odb-link:hover::after {
  opacity: 1;
  -webkit-transform: translate3d(0px, 0em, 0px);
          transform: translate3d(0px, 0em, 0px);
}

.blog-card .content .blog-card-image {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-card .content .blog-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-card .content h3 {
  font-size: 3em;
  line-height: 0.9em;
  letter-spacing: -0.12em !important;
}

.blog-card .content p {
  padding-bottom: 1em;
}

.parallax-bg-image {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  background-position: center center;
  background-size: cover;
}

.right-half {
  width: 100%;
  padding: 60px 80px 60px 60px;
  height: 100%;
  position: relative;
  left: 0%;
  background: rgba(0, 0, 0, 0.7);
}

.right-half .section-header .odb-title h2 {
  color: white;
  font-size: 3em;
  text-transform: uppercase !important;
}

.right-half p {
  margin-bottom: 0.6em;
  padding-bottom: 0;
  font-size: 1em;
  line-height: 1.3em;
}

@media screen and (min-width: 760px) {
  .right-half {
    width: 50%;
    left: 50%;
  }
}

@media screen and (min-width: 900px) {
  .right-half p {
    margin-bottom: 0.6em;
    padding-bottom: 0;
    font-size: 1.25em;
    line-height: 1.3em;
  }
}

.linkage,
.linkage > canvas {
  visibility: hidden;
  height: 2em !important;
}

.linkage:nth-of-type(odd),
.linkage > canvas:nth-of-type(odd) {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

@media screen and (min-width: 700px) {
  .linkage,
  .linkage > canvas {
    visibility: inherit;
    height: 100px !important;
  }
}

@media screen and (min-width: 1000px) {
  .linkage,
  .linkage > canvas {
    height: 160px !important;
  }
}

.odb-separator {
  position: relative;
  visibility: hidden;
}

.odb-separator::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100px;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #edb713;
}

@media screen and (min-width: 600px) {
  .odb-separator {
    margin: 0.5em 0;
  }
}

@media screen and (min-width: 700px) {
  .odb-separator {
    visibility: inherit;
    margin: 1em 0;
  }
}

@media screen and (min-width: 1000px) {
  .odb-separator {
    margin: 2em 0;
  }
}

.wpgdprc-consent-bar {
  background: orange !important;
}

.wpgdprc-consent-bar .wpgdprc-consent-bar__settings {
  visibility: hidden;
}

.float-left {
  z-index: -1;
  float: left;
  padding: 0em 1em 0em 0em;
  z-index: 10;
}

.float-left.shadow {
  -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}

.float-right {
  z-index: -1;
  float: right;
  padding: 0em 0em 0em 1em;
  z-index: 10;
}

.float-right.shadow {
  -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}

span.oe-colle {
  letter-spacing: -0.15em;
  white-space: pre;
}

.btn-page-top {
  position: fixed;
  z-index: 100;
  bottom: 5px;
  right: 5px;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: #edb713;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.9;
  -webkit-transition: all 0.2s ease, border-radius 0.15s ease-out 0.2s;
  transition: all 0.2s ease, border-radius 0.15s ease-out 0.2s;
}

.btn-page-top.hidden {
  right: -60px;
  width: 60px;
  pointer-events: none;
}

.btn-page-top > i {
  display: inline-block;
  color: white;
  font-size: 2.5em;
  position: absolute;
  top: 50%;
  right: 0.25em;
  -webkit-transform: translate(0%, -60%);
          transform: translate(0%, -60%);
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.btn-page-top .text {
  font-family: "Verdana";
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  white-space: nowrap;
  color: white;
  font-size: 0.9em;
  font-weight: bolder;
  line-height: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-page-top:hover {
  width: 180px;
  opacity: 1;
}

.btn-page-top:hover > i {
  -webkit-transform: translate(0%, -60%) scale(0.8);
          transform: translate(0%, -60%) scale(0.8);
}

.btn-page-top:hover .text {
  opacity: 1;
}

a.odb-button,
input.wpcf7-form-control.wpcf7-submit {
  padding: 0.6em 0.9em;
  font-size: 1em;
  display: inline-block;
  width: auto;
  background-color: rgba(237, 183, 19, 0.1);
  position: relative;
  font-weight: bolder;
  text-decoration: none;
  color: #edb713;
}

a.odb-button.dark,
input.wpcf7-form-control.wpcf7-submit.dark {
  color: black !important;
  background-color: #edb713;
}

a.odb-button.dark:hover,
input.wpcf7-form-control.wpcf7-submit.dark:hover {
  text-decoration: underline;
  background: #edb713;
}

a.odb-button::before, a.odb-button::after,
input.wpcf7-form-control.wpcf7-submit::before,
input.wpcf7-form-control.wpcf7-submit::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 2px;
  background: rgba(237, 183, 19, 0.6);
}

a.odb-button::before,
input.wpcf7-form-control.wpcf7-submit::before {
  top: -10px;
}

a.odb-button::after,
input.wpcf7-form-control.wpcf7-submit::after {
  top: calc(100% + 10px);
}

a.odb-button:hover,
input.wpcf7-form-control.wpcf7-submit:hover {
  background-color: rgba(0, 0, 0, 0);
}

a.odb-button:hover::before,
input.wpcf7-form-control.wpcf7-submit:hover::before {
  opacity: 1;
  top: 0;
}

a.odb-button:hover::after,
input.wpcf7-form-control.wpcf7-submit:hover::after {
  opacity: 1;
  top: 100%;
}

.odb-horizontal-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 150px;
  background: #f8f8f8;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.1));
  background: linear-gradient(-5deg, #f8f8f8 0%, #f8f8f8 80%, #e7e4df 100%);
}

.odb-horizontal-card::after {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
  background: #edb713;
  bottom: 0px;
}

.odb-horizontal-card .card-image {
  display: block;
  width: 100%;
  height: 150px;
  position: relative;
}

.odb-horizontal-card .card-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.odb-horizontal-card .card-image img.align-top {
  -o-object-position: center top;
     object-position: center top;
}

.odb-horizontal-card .card-content {
  padding: 1em;
  -ms-flex-preferred-size: 150%;
      flex-basis: 150%;
  position: relative;
  border: 2px solid white;
}

.odb-horizontal-card .card-content p {
  padding-bottom: 0em;
  margin-bottom: 0;
  color: inherit;
  font-weight: 400;
  position: relative;
  text-align: justify;
}

.odb-horizontal-card .card-content p > strong {
  font-style: italic;
  font-weight: 900;
}

.odb-horizontal-card h2 {
  margin: 0em;
  padding: 0;
  padding-top: 0.5em;
  margin-bottom: 1em;
}

@media screen and (min-width: 700px) {
  .odb-horizontal-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: unset;
  }
  .odb-horizontal-card.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .odb-horizontal-card::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 5px;
    background: #edb713;
    left: 0px;
  }
  .odb-horizontal-card.reverse::after {
    left: unset;
    right: 0px;
  }
  .odb-horizontal-card .card-content {
    -ms-flex-item-align: stretch;
        align-self: stretch;
    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;
  }
  .odb-horizontal-card .card-image {
    position: relative;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    height: unset;
    width: 100%;
  }
  .odb-horizontal-card .card-image img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .odb-horizontal-card h2 {
    margin-top: 0em;
    padding: 0;
    line-height: 1em;
  }
}

@media screen and (min-width: 800px) {
  .odb-horizontal-card {
    min-height: 250px;
  }
  .odb-horizontal-card .card-content {
    padding: 3em;
  }
}

.services-container {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  padding: 2em 0em;
  max-width: 1300px;
  margin: 0;
}

.services-container .top-container {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.services-container .top-container:hover::before, .services-container .top-container:hover::after {
  opacity: 1;
}

.services-container .top-container::before, .services-container .top-container::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 20px;
  bottom: 15px;
  background: red;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  opacity: 0;
  -webkit-box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.6);
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services-container .top-container::before {
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  left: 6px;
}

.services-container .top-container::after {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  right: 6px;
}

.services-container .top-container a:hover {
  text-decoration: none;
}

.services-container .top-container .service-card {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 0 auto;
  background: black;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.services-container .top-container .service-card img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.services-container .top-container .service-card .content {
  color: white;
  position: relative;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  padding: 1em;
  padding: 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}

.services-container .top-container .service-card .content .title {
  font-size: 2em;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.services-container .top-container .service-card .content .small-title {
  font-size: 1em;
}

.services-container .top-container .service-card .desc {
  width: 100%;
  position: absolute;
  top: 50%;
  color: white;
  padding: 0.5em 2em;
  opacity: 0;
  z-index: 200;
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
  font-weight: lighter;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.services-container .top-container .service-card .desc p {
  display: block;
  padding: 1em 0em;
}

.services-container .top-container .service-card .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: translate(-50%, 0%) scale(0.5);
          transform: translate(-50%, 0%) scale(0.5);
  font-size: 1em;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services-container .top-container .service-card:hover img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  opacity: 0.4;
}

.services-container .top-container .service-card:hover .content {
  top: 0%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

.services-container .top-container .service-card:hover .content::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 2px;
  background: rgba(255, 165, 0, 0.8);
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.services-container .top-container .service-card:hover .desc {
  top: 50%;
  opacity: 1;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.services-container .top-container .service-card:hover .icon {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  opacity: 0.5;
  -webkit-transform: translate(-50%, 0%) scale(20);
          transform: translate(-50%, 0%) scale(20);
}

@media screen and (min-width: 800px) {
  .services-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 auto;
    padding: 5em 0em;
  }
  .services-container .top-container {
    border-radius: 3px;
  }
  .services-container .top-container .service-card {
    border-radius: 3px;
    height: 300px;
    width: 90%;
  }
  .services-container .top-container .service-card .content .title {
    font-size: 1.5em;
  }
}

.odb-text-intro--container .big-size {
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  border: 2px solid rgba(255, 165, 0, 0);
  padding: 1em;
}

.odb-text-intro--container .big-size:hover {
  border-top-color: #edb713;
  border-bottom-color: #edb713;
}

.odb-text-intro--container a.text-link {
  display: block;
  color: #333 !important;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.odb-text-intro--container a.text-link:hover {
  opacity: 1;
  text-decoration: none;
}

.odb-header--title {
  font-family: "Roboto";
}

.odb-header--bg-image {
  background-position: center !important;
  background-size: cover !important;
}

.engagements .wp-block-lazyblock-odb-product-card {
  height: 100%;
}

.engagements.wp-block-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.engagements.wp-block-columns .wp-block-column {
  margin-left: 0;
  float: unset;
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
}

.engagements.wp-block-columns .wp-block-column .odb-product-card {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.engagements.wp-block-columns .wp-block-column .card {
  min-height: 100%;
}

.engagements.wp-block-columns .wp-block-column .card img {
  display: block;
  height: 250px;
  margin: 0 auto;
  z-index: -1;
}

.engagements .odb-content {
  max-width: 250px;
  display: block;
  text-align: center;
  font-size: 1em;
  color: #555;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  font-weight: bold;
}

@media screen and (min-width: 800px) {
  .engagements.wp-block-columns {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .engagements.wp-block-columns .card {
    height: 100%;
  }
  .engagements figure {
    width: 300px;
  }
}

#odb-engagements-reglementaires {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#odb-engagements-reglementaires .logos-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: 0 2em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#odb-engagements-reglementaires img {
  display: block;
  width: calc(100% / 4);
  max-width: 250px;
  padding: 10px;
}

#odb-engagements-reglementaires p {
  padding: 0;
  margin: 0;
  margin-bottom: 0.6em;
  text-align: justify;
}

ul.engagements {
  padding-left: 3em;
  color: #555;
}

ul.engagements li {
  font-weight: lighter;
}

.odb-header-carousel {
  margin: 0 auto;
  width: 100%;
  background: #333;
  color: #eee;
  margin-top: 70px;
}

.odb-header-carousel .slick-prev {
  position: absolute;
  left: 0;
  z-index: 100;
}

.odb-header-carousel .slick-next {
  position: absolute;
  right: 0;
  z-index: 100;
}

.odb-header-carousel .slick-slide {
  display: block;
  position: relative;
  height: 300px;
}

.odb-header-carousel .slick-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.one-line-ellipsis {
  white-space: pre;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  max-width: 100%;
}

@media screen and (max-width: 700px) {
  .float-left,
  .float-right {
    shape-outside: unset !important;
  }
  .float-left img,
  .float-right img {
    max-width: 220px;
    width: auto;
    max-height: 400px;
  }
}

@media screen and (max-width: 500px) {
  .float-left {
    padding: 0 1em 0 0;
    float: none !important;
  }
  .float-left img {
    display: block;
    margin: 0 auto;
    margin-bottom: 1em;
  }
  .float-right {
    float: none !important;
    width: unset;
    padding: 0;
    margin: 0 auto;
  }
  .float-right img {
    display: block;
    margin: 0 auto;
    margin-bottom: 1em;
  }
}

@media screen and (max-width: 370px) {
  .wp-block-lazyblock-odb-separator div {
    height: 30px !important;
  }
  .float-left {
    padding: 0 0.1em 0 0;
  }
  .float-right {
    padding: 0 0 0 0.1em;
  }
  .float-left img,
  .float-right img {
    max-width: 120px;
    width: auto;
    max-height: 120px;
  }
}
/*# sourceMappingURL=sass_styles.css.map */