/*video-slider --------------------------------------------------------------------------------------------------------*/
.video-slider {
  background: linear-gradient(130.82deg, #0098AA 0%, #0072B1 179.05%);
  padding: 40px 0;
}
.video-slider .slick-dots li button {
  background: rgba(255, 255, 255, 0.5);
}
.video-slider .slick-dots li.slick-active button {
  background: #fff;
}

h3.titular {
  margin: 5px;
  text-align: center;
  line-height: 1.625rem;
}
h3.titular a {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #fff;
}
h3.titular a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  h3.titular {
    margin: 5px 0;
  }
  h3.titular a {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.625rem;
    color: #fff;
  }
}
@media (min-width: 1024px) {
  h3.titular {
    margin: 5px 0;
  }
  h3.titular a {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.625rem;
    color: #fff;
  }
}
.video-slider-box {
  position: relative;
  cursor: pointer;
  display: block;
  max-height: 231px;
  overflow: hidden;
  width: 280px;
}
.video-slider-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}
.video-slider-box:hover .slick-card-play-icon {
  opacity: 1;
}
.video-slider-box:hover:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 34.44%, rgba(0, 0, 0, 0.8) 100%);
}

.video-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}

.video-slider-main-img {
  width: 100%;
  height: 100%;
  max-height: 231px;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
}

.video-iframe-container {
  max-width: 814px;
  margin: 0 auto;
}

.video-iframe-outer {
  position: relative;
  padding-bottom: 60%;
  height: 0;
  width: 100%;
}

.video-iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* Responsive Media Queries --------------------------------------------------------------------------------------------------------*/
@media (min-width: 375px) {
  .video-slider-box {
    width: 344px;
  }
  h3.titular {
    max-width: 344px;
  }
}
@media (min-width: 768px) {
  .video-slider {
    padding: 60px 0;
  }
  .video-slider-box {
    width: auto;
  }
}

/*# sourceMappingURL=video-slider.css.map */