.carousel-caption {
  /* border: 1px solid red; */
  width: 400px;
  z-index: 10;
  color: #fff;
  text-align: center;
  top: 50%;
  left: 3%;
  bottom: auto;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}



/* Responsiveness */

/* 2560px screen */
@media screen and (max-width: 2560px) {
  .carousel-caption {
    width: 800px;
  }
}

/* 1440px Large Laptop screen */
@media screen and (max-width: 1440px) {
  .carousel-caption {
    width: 600px;
  }
}

/* 1024px Laptop screen */
@media screen and (max-width: 1024px) {
  .carousel-caption {
    width: 450px;
  }
}

/* 768px Laptop screen */
@media screen and (max-width: 768px) {
  .carousel-caption {
    width: 350px;
  }
}