@font-face {
  font-family: "bebas";
  src: url("../fonts/BebasNeue-Regular.ttf");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "montserrat";
  src: url("../fonts/Montserrat/Montserrat-Medium.ttf");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "montserrat-bold";
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf");
  font-weight: 800;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  position: relative;
  width: 100%;
}

body {
  background-color: #141414;
  margin: 0 0;
  min-height: 100vh;
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: bebas !important;
}

ol,
ul {
  margin: 0;
}

.title {
  color: #fca311 !important;
}

.container {
  padding: 5em;
}

p {
  font-size: 16px;
  font-family: montserrat;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 200;
  text-align: justify;
}

.wp-block-button__link {
  @apply py-3 px-6 text-black text-base no-underline transition-all duration-300 rounded-none;
  background-color: var(--color-yellow);

  &:hover {
    background-color: var(--color-onyx);
    color: var(--color-yellow);
    outline: 1px solid var(--color-yellow);
  }
}

.btn-yellow {
  color: #141414;
  background-color: #fca311;
  transition-duration: 0.3s;
  padding: 10px 20px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;

  &:hover {
    background-color: #141414;
    color: #fca311;
    outline: 1px solid #fca311;
  }
}

a {
  color: #fca311;
  font-size: 1.8em;
  width: 100%;
  text-align: left;
  padding: 0;
}

a:hover {
  color: #ffffff;
}

.row {
  display: flex;
  flex-direction: row;
  gap: 2em;
  align-items: flex-start;
}

.row .half {
  flex-grow: 1;
  align-self: stretch;
  flex: 0.5;
}

.row .third {
  flex-grow: 1;
  align-self: stretch;
  flex: 0.33;
}

.row .two-thirds {
  flex-grow: 1;
  align-self: stretch;
  flex: 0.66;
}

.navigation-drawer {
  position: fixed;
  height: 100vh;
  right: -100vw;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  transition: all 0.5s;
}

.navigation-drawer.active {
  right: 0;
}

.navigation-drawer-navigation-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding-right: 24px;

  .navigation-drawer-navigation-list-item {
    text-align: end;
  }

  .navigation-item--has-children {
    text-align: end;
  }

  .navigation-submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    padding-left: 20px;
    margin-top: 8px;
  }

  .navigation-submenu.is-open {
    max-height: 500px;
    opacity: 1;
  }

  .navigation-submenu .navigation-drawer-navigation-list-item a {
    font-size: 36px;
  }

  a,
  button {
    font-family: bebas;
    font-size: 48px;
    line-height: 1em;
    color: #fca311;
    text-decoration: none;

    &:hover {
      color: #ffffff;
    }
  }
}

.dark-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 20;
  display: none;
  transition: all 0.4s;
}

.dark-overlay.active {
  display: block;
  transition: all 0.5s;
}

.footer {
  font-size: 1em;
  font-family: mon;
  width: 100vw;
  background-color: #0a0a0a;
  padding: 2em 5em;
}

.footer a {
  font-family: montserrat !important;
  font-weight: 300;
  font-size: 1em;
}

.footer p {
  margin: 0;
}

.footer-row {
  display: flex;
  flex-direction: row;
}

.footer-column {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 25%;
}

.footer-credentials {
  margin-top: 5vh;
  display: flex;
  justify-content: center;
}

.footer-credentials p {
  margin: 0;
}

@media only screen and (max-width: 600px) {
  .footer {
    display: none;
  }
}

.home-banner {
  height: 100vh;
  width: 100%;
  position: relative;
}

.home-banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-title {
  position: absolute;
  margin: 0.3em;
  bottom: 0;
  z-index: 2;
}

.home-banner-title h1 {
  font-size: 7em;
  color: #fca311;
  line-height: 0.5em;
}

@media only screen and (max-width: 600px) {
  .home-banner-title h1 {
    font-size: 4em;
  }
}

.home-customers {
  background-color: #fff;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 5em;
}

.home-customers-list {
  display: flex;
}

.home-customers-list-item {
  width: 15vw !important;
  height: 15vh !important;
  cursor: pointer;
  position: relative;
  margin: 1em 2em !important;
}

.home-customers-list-item a {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  transition: all 0.2s;
}

.home-customers-list-item a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-customers-list-item a:hover {
  filter: none;
}

@media only screen and (max-width: 600px) {
  .home-customers {
    padding: 2em;
  }

  .home-customers-list {
    flex-direction: column;
    gap: 3em;
  }

  .home-customers-list-item {
    width: 100% !important;
    height: 12vh !important;
    margin: 0 !important;
  }
}

.header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header-logo {
  width: 12vw;
  margin: 1em;
}

.header-home {
  position: absolute;
  right: 2vw;
  top: 1em;
  z-index: 2;
  cursor: pointer;
}

.header-home svg {
  width: 2em;
  height: 2em;
  fill: #fca311;
}

@media only screen and (max-width: 600px) {
  .header-logo {
    width: 40vw;
  }
}

.home-services {
  display: flex;
  flex-direction: column;
  gap: 10em;
}

.home-services-item {
  display: flex;
  flex-direction: row;
  gap: 2em;
  margin: 0 5em;
  align-items: stretch;
  align-content: stretch;
}

.home-services-item-content {
  width: 50vw;
}

.home-services-item-content h1 {
  color: #fca311;
}

.home-services-item-thumbnail {
  width: 50vw;
}

.home-services-item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 600px) {
  .home-services {
    flex-direction: column;
    gap: 5em;
  }

  .home-services-item {
    flex-direction: column;
    margin: 0;
    width: 100%;
  }

  .home-services-item-content {
    width: 100%;
    text-align: justify;
  }

  .home-services-item-thumbnail {
    display: none;
  }
}

.home-infos-img {
  height: auto;
  width: auto;
}

.home-infos-img img {
  height: auto;
  width: auto;
}

@media only screen and (max-width: 600px) {
  .home-infos .row {
    flex-direction: column;
  }

  .home-infos-img {
    display: none;
  }
}

.home-solutions-grid {
  justify-content: center;
}

.home-solutions-grid-item {
  flex: 0.3 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-solutions-grid-item a {
  width: auto;
}

.home-solutions-grid-item img,
.home-solutions-grid-item svg {
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .home-solutions .title {
    margin-bottom: 5vh;
  }

  .home-solutions-grid {
    flex-direction: column;
    gap: 2vh;
  }

  .home-solutions-grid-item {
    width: 100%;
  }
}

.home-realisations {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.home-realisations-grid {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  flex-wrap: wrap;
  width: 100%;
}

.home-realisations-grid-item {
  width: 20%;
  border: 3px solid transparent;
}

.home-realisations-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-realisations-grid-item:hover {
  border-color: #fca311;
}

@media only screen and (max-width: 600px) {
  .home-realisations-grid {
    flex-direction: column;
    gap: 2vh;
  }

  .home-realisations-grid-item {
    width: 100%;
  }
}

.home-presentation {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.home-presentation-video {
  width: 80vw;
  height: 62vh;
  position: relative;
  margin: 0 auto;
}

.home-presentation-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.realisations-slideshow {
  height: 70vh;
  position: relative;
  object-fit: cover;
}

.realisations-slideshow-item {
  height: 100%;
  width: 100%;
}

.realisations-grid {
  display: flex;
  flex-direction: row;
  padding: 5vh 5vw;
  gap: 1vw;
  flex-wrap: wrap;
}

.realisations-grid-item {
  width: 13vw;
  border: 3px solid transparent;
}

.realisations-grid-item-icon {
  opacity: 0.2;
}

.realisations-grid-item:hover {
  border: 3px solid #fca311;
}

.realisations-grid-item:hover-icon {
  opacity: 1;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 20px;
  z-index: 100;
  display: none;
}

.uk-slideshow-items,
.uk-slideshow {
  height: 100% !important;
  width: 100% !important;
}

@media only screen and (max-width: 600px) {
  .realisations-grid {
    flex-direction: column;
    gap: 2vh;
    padding: 5vh;
  }

  .realisations-grid-item {
    width: 100%;
  }
}

.realisation-video {
  width: 100%;
  height: 100vh;
  object-fit: contain;
}

.realisation-content {
  margin: 5vh 1vw;
}

.prestations {
  padding: 10vh 5vw 10vh 5vw;
}

.prestations-bloc {
  margin: 15vh 0;
}

.prestations-bloc-text {
  text-align: justify;
}

.prestations-bloc-image {
  height: 30vh;
  width: 100%;
  background-size: cover;
}

.prestations-bloc-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 600px) {
  .prestations-bloc {
    margin: 5vh 0;
  }

  .prestations .row {
    flex-direction: column;
    gap: 5vh;
  }
}

.navigation-link {
  display: flex;
  align-items: center;
  gap: 8px;
  transition-duration: 0.3s;

  &:hover {
    svg {
      transform: rotate(90deg);
    }
  }

  &[aria-expanded="true"] {
    svg {
      transform: rotate(90deg);
    }
  }

  svg {
    width: 36px;
    transition-duration: 0.3s;
  }
}

.contact {
  padding: 15vh 2vw 0 2vw;
  display: flex;
}

.contact .row {
  align-items: stretch !important;
}

.contact-form {
  margin: 0 30px;
}

textarea {
  resize: none;
}

.uk-input,
.uk-textarea {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(18, 18, 18, 0.2);
  color: #fff;
  width: 100%;
  border-radius: 2px;
}

.uk-input:focus,
.uk-textarea:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(18, 18, 18, 0.4);
  color: #fff;
}

.uk-button {
  background-color: #fca311;
  color: #fff;
  border: none;
}

.uk-button:hover {
  background-color: #d78703;
  border-color: #d78703;
}

.uk-textarea {
  height: 20vh;
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .contact .row {
    flex-direction: column;
    padding: 5vh 2vw 0 2vw;
  }

  .contact .row-form {
    margin: 0;
  }

  .contact-img {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .container {
    padding: 3em;
  }
}

@media (min-width: 768px) {
  .navigation-drawer-navigation-list a {
    font-size: 60px;
  }

  .navigation-drawer-navigation-list {

    a,
    button {
      font-size: 60px;
    }
  }
}

/*# sourceMappingURL=main.css.map */