.home-slider .carousel-inner > .item {
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover !important; 
}
.home-slider .carousel-inner > .item > a > img {
position:0px;
margin:auto;
}

.carousel-indicators > li{
text-indent: 0;
  margin: 0 3px;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 3px;
  line-height: 17px;
  color: #48D5F2;
  background-color:#fff;
  transition: all 0.25s ease;
  
 
}
.carousel-indicators > li.active{
margin: 0 3px;
width: 20px;
height: 20px;
background-color: #40B0C7; 
border: 1px solid #40B0C7; 
color:#fff;



}

a.carousel-arrow {
  height: 50px;
  width: 50px;
  border-radius: 5px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -25px;
  background: transparent;  
  color: transparent;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  -webkit-transition: background 300ms, color 300ms;
  transition: background 300ms, color 300ms;
  
}
.carousel:hover a.carousel-arrow {
  background-color:transparent;
  color: #40B0C7;
  border-radius:5px;
}
.carousel a.carousel-arrow:hover {
  background-color:transparent;
  color: #40B0C7;
  font-size:50px;
  transition: background 300ms, color 300ms, font-size 300ms;
}
a.carousel-arrow:hover,
a.carousel-arrow:active {
  text-decoration: none;
  background-color:transparent;
   
}
a.carousel-arrow-prev {
  left: 10px;
  right: auto;
  padding-right: 5px;
  
}
a.carousel-arrow-next {
  right: 10px;
  left: auto;
  padding-left: 5px;
}

@media (max-width: 992px) {
  /* Adjusting for small devices */
  .home-slider .carousel-inner > .item {
    padding-top: 0px;
  }
}
@media (max-width: 767px) {
  /* Adjusting for mobile */
  .home-slider .carousel-inner > .item {
    padding-top: 0px;
    text-align: center;
  }
  .home-slider #item-2 ul > li {
    text-align: left;
  }
  .home-slider #item-2 ul > li > span {
    font-size: 22px;
    margin-bottom: 7px;
  }
  .home-slider #item-3 ul {
    text-align: left;
    margin-left: 50px;
  }
}
/* ===== Homepage Fullscreen ===== */
.fullscreen {
  min-height: 100%;
  height: auto !important;
  /* for older versions of IE */
  height: 100%;
  padding-top: 95px;
  /* navbar height + margin */
  margin-bottom: -93px;
  /* footer height + margin */
  padding-bottom: 123px;
  /* footer height + margin */
  background: #f6f6f6 url(../img/image-5.jpg) no-repeat center center;
  background-size: cover;
  color: white;
  text-shadow: 1px 1px 2px rgba(100, 100, 100, 0.5);
}
.fullscreen h1 {
  margin-top: 70px;
}
.fullscreen hr {
  padding-bottom: 3px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
.fullscreen h3 {
  font-size: 22px;
}
.fullscreen .btn-default {
  background: transparent;
  border: 2px solid white;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 30px;
  -webkit-transition: background 300ms, color 300ms;
  -moz-transition: background 300ms, color 300ms;
  transition: background 300ms, color 300ms;
}
.fullscreen .btn-default:hover {
  background: white;
  color: #333333;
  text-shadow: none;
}
@media (max-width: 992px) {
  /* Adjusting for small devices */
  .fullscreen h1 {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  /* Adjusting for mobile */
  .fullscreen {
    background-image: url(../img/image-alt-5.jpg);
  }
}


/**Transition**/

/*
inspired from http://codepen.io/Rowno/pen/Afykb 
*/
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}
