body {
  overflow: hidden;
}

footer {
  text-transform: uppercase;
}

#footer-description {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 10px var(--gutter-width);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: var(--gutter-width);
  background-color: rgb(255, 255, 255, 0.8);
}

#footer-buttons {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--gutter-width);
}

#informations {
  text-align: center;
}

#informations > .arrow {
  -moz-transition: transform 0.5s;
  -webkit-transition: transform 0.5s;
  transition: transform 0.5s;
}

.flip {
  transform: rotate(-180deg);
}

#footer-buttons p {
  text-align: center;
}

#footer-buttons p:first-child {
  text-align: left;
}

#footer-buttons p:last-child {
  text-align: right;
}

#description {
  grid-column: span 12;
  height: auto;
  display: none;
}

#description-wrapper {
  display: flex;
  grid-gap: var(--gutter-width);
  justify-content: space-between;
}

.description-item {
  grid-column: span 2;
}

.description-item .description-item h4 {
  text-transform: uppercase;
}

.description-item h4:first-child {
  font-weight: 700;
}

/* SWIPER */

.swiper {
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: relative;
  overflow: hidden;
  list-style: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 90px var(--gutter-width);
  box-sizing: border-box;
}

.swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  display: none;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--gutter-width);
  display: grid;
  justify-content: center;
  text-align: center;
  padding-bottom: 1rem;
  background-color: transparent;
  height: 100%;
}

.swiper-slide picture {
  grid-column: 3 / span 8;
  height: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0;
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.swiper-slide picture img,
.swiper-slide picture video {
  display: block;
  max-height: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  height: calc(100% - 90px);
  width: 10vw;
  top: 0;
  right: 0;
  margin: 0;
  color: var(--color-text);
}

#prev,
#next {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  cursor: none;
  justify-content: center;
}

.swiper-button-prev {
  left: 0;
  justify-content: right;
}

.swiper-button-next {
  justify-content: left;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: " ";
}

.arrow,
.arrow {
  height: 15px;
  width: 15px;
  user-select: none;
}

#prev img {
  transform: rotate(180deg);
}

#next {
  right: 0;
}

@media screen and (max-width: 750px) {
  .swiper-button-next,
  .swiper-button-prev {
    height: calc(100% - 10px);
  }

  #prev,
  #next {
    cursor: pointer;
  }

  .swiper-slide picture {
    grid-column: 2 / span 10;
  }

  #description-wrapper {
    flex-direction: column;
  }

  #informations {
    cursor: pointer;
  }
}
