html {
  font-size: 16px;
}

footer {
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 20px;
}

main {
  overflow: scroll;
  margin-bottom: 150px;
}

.header-iframe {
  height: 7rem;
}

.footer-iframe {
  height: 4.5rem;
}

.footer-image {
  height: 3.5rem;
  overflow: hidden;
  flex-grow: 1;
}
.footer-image__img {
  width: 3.5rem;
}

.social-media {
  display: flex;
  justify-content: space-around;
  gap: 1.5rem;
  margin-right: 1rem;
}
.social-media__icon {
  font-size: 2rem;
}
.social-media__icon--facebook {
  color: #3b5998;
}
.social-media__icon--linkedin {
  color: #0e76a8;
}
.social-media__icon--whatsapp {
  color: #25D366;
}

.image-gallery {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.registro-operario {
  padding: 1rem;
}
.registro-operario__input {
  margin-top: 0.5rem;
}
.registro-operario__button {
  margin: 0.5rem;
}

.ecosystem-card {
  margin-top: 0.5rem;
}
.ecosystem-card__content {
  -moz-columns: 3;
       columns: 3;
  display: flex;
  gap: 1em;
}
.ecosystem-card__content p::first-letter {
  font-size: 2em;
  font-family: Garamond, "Times New Roman", Times, serif;
  text-shadow: 1px 1px 2px #0ff;
}

.carousel-button {
  background: black;
}

.carousel {
  text-shadow: 0px 0px 6px #000000;
}
.carousel h6 {
  font-style: italic;
}

@keyframes bounce {
  from {
    top: 0.8rem;
  }
  to {
    top: 15rem;
  }
}
@keyframes slideRight {
  from {
    left: 0;
  }
  to {
    left: calc(100% - 10rem);
  }
}
.track {
  position: relative;
  width: 100%;
}
.track__bouncer {
  height: 10rem;
  animation: bounce 0.75s ease-in infinite alternate, slideRight 5s linear forwards;
  position: absolute;
}/*# sourceMappingURL=styles.css.map */