/*** Bienvenidos Start ***/
.textoPublicaciones {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;

}

/*** youtube Start ***/
.youtube .youtube-carousel .owl-carousel {
  height: 100%;
}

.youtube .youtube-carousel .youtube-item {
  position: relative;
  overflow: hidden;
}

.youtube-carousel .owl-dots {
  position: absolute;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.youtube-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  margin-right: 15px;
  background: var(--primario);
  transition: 0.5s;
}

.youtube-carousel .owl-dots .owl-dot.active {
  width: 30px;
  height: 30px;
  border-radius: 40px;
  border: 8px solid var(--cuarto);
}

/* Servicios */
.servicios-carousel .owl-nav {
  position: absolute;
  width: calc(100% + 45px);
  height: 45px;
  top: calc(50% - 22.5px);
  left: -22.5px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: .5s;
  color: #FFFFFF;
}

.servicios-carousel:hover .owl-nav {
  opacity: 1;
}

.servicios-carousel .owl-nav .owl-prev,
.servicios-carousel .owl-nav .owl-next {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--primario);
  border-radius: 2px;
  font-size: 22px;
  transition: .5s;
}

.servicios-carousel .owl-nav .owl-prev:hover,
.servicios-carousel .owl-nav .owl-next:hover {
  background: var(--cuarto);
}