@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Roboto:wght@300;400&display=swap');
body,
* {
  font-family: 'Roboto', sans-serif;
}
.hero-bg,
footer {
  background: linear-gradient(to bottom, #4b6cb7, #182848);
}
.fade-in {
  animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 1s ease-out;
}
.pagina-qui-som body {
  font-family: 'Poppins', sans-serif;
}

.fade-in {
  animation: fadeIn 1s ease-in-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.pagina-qui-som .scroll-offset {
  scroll-margin-top: 100px;
}

@media (max-width: 640px) {
  .scroll-offset {
    scroll-margin-top: 80px;
  }
}

.productes .video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: black;
}

.productes .video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}