/* Base styles */
@font-face {
  font-family: 'Porsche';
  src: url('../fonts/Porsche-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Porsche';
  src: url('../fonts/Porsche-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Page styles */
body {
  font-family: 'Porsche', Arial, Helvetica, sans-serif;
  font-weight: normal;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}
header {
  display: flex;
  justify-content: center;
}
header a {
  display: block;
  padding: 1.25rem 0.625rem;
}
main {
  position: relative;
}
footer {
  background: #000;
  color: #fff;
  padding: 2.5rem 10% 1.25rem;
}
footer p {
  margin-bottom: 1.25rem;
}
footer a {
  color: white;
  text-decoration: none;
}
footer a:last-child() {
  text-decoration: underline;
}
footer a:hover {
  color: #b1002f;
}
.cover {
  display: block;
  width: 100%;
}
.coverMob {
  display: none;
}
.download {
  background: #000;
  border: none;
  border-radius: 8px;
  color: #fff;
  display: block;
  line-height: 1;
  padding: 1rem 0;
  margin: 0 auto;
  max-width: 12rem;
  text-align: center;
  text-decoration: none;
  width: 90%;
}
.empty {
  height: 1;
}
.images {
  justify-content: center;
  display: flex;
  gap: 3rem;
  padding: 0 10%;
  position: relative;
  top: -6vw;
  width: 100%;
}
.images .imageContainer {
  width: 100%;
  max-width: 17rem;
  min-width: 20%;
}
.images img {
  width: 100%;
}
.logo {
  width: 15rem;
}
.message {
  position: absolute;
  left: 10%;
  bottom: 20%;
}
.message p {
  color: white;
  font-size: 1.25rem;
  line-height: 1.8125rem;
}
.message p:first-child {
  font-weight: bold;
}
.message p:nth-child(2) {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  #consumptions {
    padding: 5rem 5%;
  }
  .cover {
    display: none;
  }
  .coverMob {
    display: block;
    width: 100%;
  }
  .download {
    touch-action: manipulation;
  }
  .images {
    align-items: flex-start;
    display: flex;
    cursor: grab;
    gap: 2rem;
    justify-content: flex-start;
    margin-left: 5%;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
    overscroll-behavior-x: contain;
    padding: 1rem 3rem;
    position: relative;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    top: 3rem;
    touch-action: pan-x;
    z-index: 10;
  }
  .images .imageContainer {
    flex: 0 0 calc(80% - 1rem);
    max-width: unset;
    padding: 3rem 0;
    position: relative;
    scroll-snap-align: start;
    touch-action: pan-x;
  }
  .images .imageContainer:last-child {
    margin-right: 3rem;
    scroll-margin-right: 3rem;
  }
  .images img {
    display: block;
    height: auto;
    touch-action: pan-x;
  }
  .images::-webkit-scrollbar {
    height: 1px;
  }

  .images::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }

  .images::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .message {
    bottom: 5%;
    left: 5%;
    pointer-events: none;
    right: 5%;
  }
  .message a,
  .message .button {
    pointer-events: auto;
  }
  .message p {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
