.start {
  display: flex;
  justify-content: center;
  align-items: center;
}

.start .arrow-down {
  margin-top: 5rem;
  display: inline-block;
  vertical-align: middle;
  margin-top: 50px;
  width: 20px;
  height: 25px;
  background: url("../img/icons/icon-arrow-down.svg") no-repeat center;
  background-size: contain;
  animation: bounce 3s infinite;
  -webkit-animation: bounce 3s infinite;
}

/* Helpers */

.slider .dots {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.slider .dots .slick-dots {
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
}

.slider .dots .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 10px 6px;
}

.slider .dots .slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  text-indent: -9999px;
  background: rgba(0, 0, 0, 0.25);
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  -webkit-appearance: none;
  cursor: pointer;
}

.slider .dots .slick-dots li.slick-active button {
  background: #000;
}

.slider .arrows button {
  position: absolute;
  top: calc(50% - 11px);
  left: 0;
  width: 13px;
  height: 22px;
  padding: 0;
  line-height: 300px;
  text-align: center;
  font-size: 50px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 50%;
  transition: 0.3s all;
  cursor: pointer;
  overflow: hidden;
  z-index: 3;
}

.slider .arrows button:focus {
  outline: 0;
}

.slider .arrows button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/img/icons/icon-arrow-right.svg") no-repeat center;
  background-size: contain;
}

.slider .arrows button.slick-next {
  left: auto;
  right: 0;
}

.slider .arrows button.slick-next:after {
  background-image: url("assets/img/icons/icon-arrow-left.svg");
}

.page.home .presentation {
  position: relative;
  color: var(--color-white);
}

.page.home .presentation .container {
  position: relative;
}

.page.home .presentation .slide {
  height: 60vh;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-position: -35% 0; */
}

.page.home .presentation .slide .data {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.page.home .presentation .slide .image {
  position: relative;
}

.page.home .presentation .slide .image .img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 60vh;
  width: 50vw;
  position: absolute;
  left: 0;
  top: 0;
}

/* @media screen and (max-width: 991px) {
    .page.home .presentation .slide .image .img {
        min-height: 50%;
    }
} */

/* @media screen and (max-width: 1200px) {
    .page.home .presentation .slide {
        background-position: center;
        height: 540px;
    }
    .page.home .presentation .slide .data{
       margin: 0 auto;
    }
    .page.home .presentation .slide .data .cta{
       display: flex;
       justify-content: center;
       align-items: center;
       width: 100%;
    }
    .page.home .presentation .slide .data .cta a{
       border-radius: 10px;
    }
    .page.home .presentation .slide .data .cta a:last-child{
       background: var(--color-courses);
       border: 1px solid var(--color-courses);
    }
} */

.page.home .presentation .slide .data h3 {
  font-size: 3.2rem;
  line-height: 4.2rem;
  margin-bottom: 2rem;
  letter-spacing: -0.06em;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.page.home .presentation .slide .data .description {
  font-size: 1.3rem;
  max-width: 70%;
  font-weight: 700;
  /* text-transform: uppercase; */
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1400px) {
  .page.home .presentation .slide {
    height: 40vh;
  }
  .page.home .presentation .slide .data {
    padding-left: 0;
    margin: 0 auto;
  }
  .page.home .presentation .slide .data h3 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
  .page.home .presentation .slide .data h3 span {
    font-size: 2.3rem;
  }
  .page.home .presentation .slide .data .description {
    font-size: 1.4rem;
    max-width: none;
  }
}

/* @media screen and (max-width: 768px) {
    .page.home .presentation .slide {
        background-image: none!important;
    }
} */

@media screen and (max-width: 576px) {
  .page.home .presentation .slide .data {
    /* display: none; */
    padding-left: 0;
    margin: 0 auto;
    /* max-width: 87%; */
  }
  .page.home .presentation .slide .data h3 {
    /* font-size: 4rem; */
    font-size: 1.8rem;
    line-height: 2.2rem;
    /* margin-bottom: 1.5rem; */
    letter-spacing: -0.05em;
  }
  .page.home .presentation .slide .data h3 span {
    /* font-size: 1.8rem; */
    font-size: 1.3rem;
  }
  .page.home .presentation .slide .data .description {
    /* font-size: 1.4rem; */
    font-size: 1.3rem;
    /* margin-bottom: 1.5rem; */
    line-height: 2.1rem;
  }
}

@media screen and (max-width: 450px) {
  .page.home .presentation .slide .data h3 {
    font-size: 1.3rem;
    line-height: 1.3rem;
    margin-bottom: 1.3rem;
  }
  .page.home .presentation .slide .data h3 span {
    font-size: 1.2rem;
  }
  .page.home .presentation .slide .data .description {
    font-size: 0.9rem;
    line-height: 1rem;
  }
}

/* Module > Video Player */

.history .bg-history {
  position: relative;
  width: 100%;
  padding: 60% 0 0;
  background: no-repeat center;
  background-size: cover;
}

/* .history .bg-history .play {
  display: block;
} */

/* .history .bg-history .play {
  position: absolute;
  top: 86%;
  left: 56%; */

  /* display: none; */
  /* left: 63%; */
  /* transform: translate(-50%, -50%); */
/* } */

/* Feed > Simple */

.feed-simple article {
  height: 100%;
  background: #fff;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid #177cc1;
}

.feed-simple article a:hover {
  color: #0086ce;
}

.feed-simple article .thumbnail {
  overflow: hidden;
}

.feed-simple article .thumbnail .img {
  padding: 40% 0 0;
  background: no-repeat center;
  background-size: cover;
  transition: 0.3s all;
}

.feed-simple article .data {
  padding: 15px;
}

.feed-simple article .data .meta {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.feed-simple article .data h2 {
  color: #177cc1;
  font-size: 21px;
  line-height: 25px;
  font-weight: bold;
}

.feed-simple article .data p {
  margin: 0;
}

@media screen and (min-width: 992px) {
  .feed-simple article:hover .thumbnail .img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  .feed-simple article .data {
    padding: 30px;
  }
}

.price span.blue {
  color: white !important;
}

.section.history {
    position: relative; /* Necesario para el posicionamiento absoluto del contenido flotante */
    background-size: cover;
    background-position: center;
}

.bg-history {
    position: absolute; /* Posiciona el contenedor de fondo de manera absoluta */
    left: 50%; /* Centra horizontalmente */
    transform: translateX(-50%); /* Ajusta el centrado horizontalmente */
    bottom: 0; /* Ubica en la parte inferior */
    padding: 40px 0 !important; /* Ajusta según sea necesario */
	background: #ffffffd1 !important;
	border-radius:20px !important;
    max-width: 800px; /* Ajusta según sea necesario */
    width: 100%; /* Permite que el ancho del div sea flexible */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Opcional: Agrega sombra */
}

.history-content {
    text-align: center; /* Centra el texto dentro del contenedor */
}
