/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  background-color: rgba(25, 25, 25, .5);
  border-radius: 1rem;
  bottom: 5rem;
  padding: 1rem 2rem 1rem 2rem;
}
.carousel-text {
  color: white;
}
.carousel-text h1 {
  margin-bottom: 30px;
}
/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  overflow: hidden;
/*  max-width: 100%;
  height: 32rem;*/

  filter:blur(1px);
    -o-filter:blur(1px);
    -ms-filter:blur(1px);
    -moz-filter:blur(1px);
    -webkit-filter:blur(1px);
}

.carousel-control-prev-icon,
        .carousel-control-next-icon {
          height: 100px;
          width: 100px;
          outline: black;
          background-size: 100%, 100%;
          border-radius: 50%;
          border: 1px solid black;
          background-image: none;
        }

.carousel-control-next-icon:after
        {
          content: '>';
          font-size: 55px;
          color: red;
        }

.carousel-control-prev-icon:after {
          content: '<';
          font-size: 55px;
          color: red;
        }
.carousel-control-prev , .carousel-control-next {
            background-color: black;
            opacity: 0.7;
        }


/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.marketing h2 {
  font-weight: 400;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
/* rtl:end:ignore */

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}
/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
}

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}
