/********** THEME EXTRA CSS **********/

/* Cabecera interna */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/page-header.jpg), no-repeat center center;
  background-size: cover;
}

/* Secciones internas */
.bg-registration {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/registration.jpg), no-repeat center center;
  background-size: cover;
}

/* Team */
.team-img .team-social {
  position: absolute;
  top: 0;
  left: 0;

  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;

  background: rgba(68, 66, 90, 0.8);
  transition: 0.5s;
  z-index: 1;
  opacity: 0;
}

.team-item:hover .team-social {
  opacity: 1;
}

/* Testimonials */
.testimonial-carousel .owl-item img {
  width: 80px;
  height: 80px;
  border-radius: 80px;
}

.testimonial-carousel .owl-dots {
  margin-top: 25px;
  text-align: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 8px;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: #FF6600;
}

.testimonial-carousel .owl-dot::after {
  position: absolute;
  content: "";
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  border: 2px solid #FF6600;
  border-radius: 20px;
}

.testimonial-carousel .owl-dot.active {
  background: #44425A;
}

/* Formularios */
.contact-form .help-block ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Portafolio */
#portafolioCarousel .carousel-item img {
  height: 240px;
  object-fit: cover;
}

#portafolioCarousel .carousel-caption h3 {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-left: 20px;
}

/* Antiguo carousel Bootstrap, por si aún se usa en otras plantillas */
.carousel-caption {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.carousel-indicators {
  width: 60px;
  top: 0;
  right: calc(100% - 60px);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel-indicators li {
  width: 25px;
  height: 25px;
  margin: 5px 0;
  background: #44425A;
  border: 5px solid #FFFFFF;
  border-radius: 25px;
}

.carousel-indicators .active {
  background: #618ec9;
}

@media (max-width: 991.98px) {
  .carousel-indicators {
    width: 45px;
    right: calc(100% - 45px);
  }

  .carousel-indicators li {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 575.98px) {
  .carousel-caption h5 {
    font-size: 16px;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 700 !important;
  }
}