#Carousel {
  border-radius: 10px; /* Bordes redondeados */
  overflow: hidden; /* Ocultar el contenido que se desborde */
  box-shadow: 4px 4px 8px var(--color-c);
}

#Carousel .carousel-item iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;

}
.btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #68A4C4;
}

.btn-get-started:hover {
  background: #68A4C4;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 5%;
  }
}