/*Carousel -------------------------------------------*/
.carousel {
  margin-bottom: 2.2rem;
}

.carousel-indicators > li {
  border-radius: 50%;
  width: 3px;
  height: 1px;
  margin: 0 8px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
  bottom: 0.1rem;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 35rem;
  background: repeating-linear-gradient(
    0deg,
    #777,
    #777 100px,
    black 200px,
    #777 350px,
    #777
  );
  background-size: 100% 100%;
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 1200px) {
  .carousel-caption p {
    margin-bottom: 4rem;
    font-size: 1.7rem;
    line-height: 1.4;
  }

  .cover {
    max-width: 1200px;
  }

  .left-icon {
    display: none;
  }

  .right-icon {
    display: none;
  }
  
    .carousel img {
    width: 1200px;
	height: 100%;
   
  }

  #next {
    display: none;
  }
}

@media (min-width: 750px) and (max-width: 1200px) {
  .carousel-caption p {
    margin-bottom: 4rem;
    font-size: 1.7rem;
    line-height: 1.4;
  }

  .cover {
    max-width: 1200px;
  }

  .left-icon {
    display: none;
  }

  .right-icon {
    display: none;
  }
    .carousel img {
    width: 1200px;
   
  }
 
}

@media (min-width: 450px) and (max-width: 750px)  {
  /* Bump up size of carousel content */
  .carousel img {
    width: 1200px;
   
  }

  .carousel-caption h2 {
    font-size: 2rem !important;
    display: inline-flex;
    margin-left: 50px;
  }

  .carousel-caption p {
    margin-bottom: 1rem;
    margin-top: 1rem;
    margin-left: 50px;
    font-size: 1rem !important;
    display: inline-flex;
  }

  .carousel-caption p a {
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-size: 1rem !important;
    display: inline;
  }

  .left-icon {
    display: none;
  }

  .right-icon {
    display: none;
  }
}

@media (max-width: 450px) {
  /* Bump up size of carousel content */
  .carousel-item {
  
  }
  .carousel img {
    width: 1200px;
   
  }

  .left-icon {
    display: none;
  }

  .right-icon {
    display: none;
  }

  .carousel-caption h2 {
    font-size: 1.5rem !important;
    display: inline-flex;
    margin-left: 30px;
  }

  .carousel-caption p {
    margin-bottom: 1rem;
    margin-top: 1rem;
    margin-left: 30px;
    font-size: 0.9rem !important;
    display: inline-flex;
  }

  .carousel-caption p a {
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-size: 0.7rem !important;
    display: inline;
  }

}
