@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Medium.woff2") format("woff2"), url("../fonts/Gotham-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-MediumItalic.woff2") format("woff2"), url("../fonts/Gotham-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Medium.woff2") format("woff2"), url("../fonts/Gotham-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Bold.woff2") format("woff2"), url("../fonts/Gotham-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-LightItalic.woff2") format("woff2"), url("../fonts/Gotham-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-XLightItalic.woff2") format("woff2"), url("../fonts/Gotham-XLightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-BookItalic.woff2") format("woff2"), url("../fonts/Gotham-BookItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Light.woff2") format("woff2"), url("../fonts/Gotham-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Black.woff2") format("woff2"), url("../fonts/Gotham-Black.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Light.woff2") format("woff2"), url("../fonts/Gotham-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Book.woff2") format("woff2"), url("../fonts/Gotham-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-UltraItalic.woff2") format("woff2"), url("../fonts/Gotham-UltraItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Bold.woff2") format("woff2"), url("../fonts/Gotham-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Thin.woff2") format("woff2"), url("../fonts/Gotham-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-BookItalic.woff2") format("woff2"), url("../fonts/Gotham-BookItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-ThinItalic.woff2") format("woff2"), url("../fonts/Gotham-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-XLight.woff2") format("woff2"), url("../fonts/Gotham-XLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-BoldItalic.woff2") format("woff2"), url("../fonts/Gotham-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
.header {
  position: fixed;
  width: 100%;
  z-index: 2;
  padding: 20px;
}
.header__logo img {
  width: 200px;
}
.header__nav .nav {
  display: flex;
  justify-content: end;
  gap: 30px;
  align-items: center;
}
.header__nav .nav a {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
}
.header__nav .nav .menu-item-has-children,
.header__nav .nav .menu-item-type-post {
  position: relative;
}
.header__nav .nav .menu-item-has-children .sub-menu,
.header__nav .nav .menu-item-type-post .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.header__nav .nav .menu-item-has-children:hover .sub-menu,
.header__nav .nav .menu-item-type-post:hover .sub-menu {
  display: block;
  opacity: 1;
}
.header__nav .nav .menu-item-type-taxonomy {
  opacity: 0.7;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}
.header__nav .nav .menu-item-type-taxonomy:hover {
  opacity: 1;
}
.header__nav .nav .menu-item-type-taxonomy a {
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
}
@media (max-width: 768px) {
  .header__logo img {
    width: 140px;
  }
  .header .row .col-xs-6 {
    width: 50%;
    position: relative;
  }
  .header .row .col-xs-6 .burger-menu {
    position: absolute;
    top: -12px;
    right: 20px;
    background: none;
    border: 0;
  }
  .header .menu-desktop {
    display: none !important;
  }
  .header .mobile-menu {
    z-index: -1;
    position: relative;
    width: 100%;
    display: block !important;
    overflow: hidden;
  }
  .header .mobile-menu.show {
    height: 100vh;
  }
  .header .mobile-menu .mobile-nav {
    position: absolute;
    right: 3px;
    top: -100%;
    opacity: 0;
    transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  .header .mobile-menu.show .mobile-nav {
    top: 0;
    z-index: 1;
    opacity: 1;
  }
  .header .mobile-menu.hide .mobile-nav {
    top: -100%;
    z-index: -1;
    opacity: 0;
  }
  @keyframes slideDown {
    from {
      top: -100%;
    }
    to {
      top: 0;
    }
  }
  @keyframes slideUp {
    from {
      top: 0;
    }
    to {
      top: -100%;
    }
  }
  .header .mobile-menu ul li {
    text-align: right;
  }
  .header .mobile-menu ul li a {
    color: white;
  }
  .header .mobile-menu ul a {
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
    background: black;
    padding: 2px 10px;
  }
  .header .mobile-menu ul .menu-item-type-taxonomy {
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
  }
  .header .mobile-menu ul .menu-item-type-taxonomy a {
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    background: transparent;
  }
}

.projets__row {
  --bs-gutter-x: 0;
}
.projets__item {
  background-size: cover;
  background-position: center;
  display: block;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.projet__video {
  position: relative;
  padding-bottom: 56.25%;
  /* Ratio 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}
.projet__video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.projet__gallery {
  --bs-gutter-x: 0;
}
.projet__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about {
  background: #000;
  color: #fff;
}
.about .main-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.about .main-wrapper a {
  color: #fff;
}

.daily .wp-block-embed {
  margin-bottom: 0;
}
.daily .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* Ratio 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}
.daily .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.daily figure {
  margin: 0;
}
.daily .wp-block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container-fluid {
  padding: 0;
}

.figure.wp-block-gallery.has-nested-images {
  gap: 0 !important;
}/*# sourceMappingURL=style.css.map */