.home-carousel {
  position: relative;
  padding: 60px 90px;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
@media screen and (max-width: 575px) {
  .home-carousel {
    padding: 90px 20px;
  }
}

.home-carousel .carousel {
  width: 100%;
}

.home-carousel .carousel-inner {
  height: 100%;
}

/* top text */
.home-carousel-top {
  color: #009be7;
}

/* logo */
.home-carousel-logo {
  max-width: 200px !important;
  margin-top: 10px;
  max-height: 100px;
}

@media screen and (min-width: 768px) {
  max-width: 280px !important;
}

/* text */
.home-carousel-text {
  margin-top: 10px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 22px;
  color: #fff;
}

/* button */
.home-carousel-button {
  height: 46px !important;
  display: inline-block;
  width: auto !important;
  line-height: 35px;
  margin-left: 0 !important;
  margin-top: 20px !important;
}

/* indicators */
ol.home-carousel-indicators {
  display: block;
  list-style: none;
  position: relative;
  margin: 0;
}
ol.home-carousel-indicators li {
  display: inline-block;
  border: none;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border-radius: 50%;
  cursor: pointer;
  background-color: rgba(0, 163, 228, 0.5);
}
ol.home-carousel-indicators li.active {
  background-color: #00a4e4;
}
