/* Front page */

.banner .menu {
  height: 40px;
  display: flex;
  justify-content: center;
}
.banner .menu .container {
  justify-content: center;
}

.front-page-container {
  width: 100%;
  background-color: black;
  height: calc(100vh - 166px);
}

.slidershow {
  width: 100%;
  margin: auto;
  height: 60vh;
}

.slidershow div {
  padding: 0;
  margin: 0;
}

.slide {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .banner .menu {
    height: auto;
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .front-page-container,
  .slidershow {
    height: auto;
  }
}
