/* Home Page Carousel 1 */ /*Carousel indicators*/ .carousel-indicators.carousel1{ left: 30%; width: 100%; bottom: -10px; background-color: rgba(255, 255, 255, 0.8); padding: 15px 0px 15px; } /*Carousel Caption*/ .carousel-caption.carousel1{ left: 0%; top: 15%; bottom: auto; } /*Title*/ .carousel-caption.carousel1 .home-page-banners-carousel-title a{ text-decoration: none; color: #000000; } /*Simple Transition effect for carousel caption*/ .carousel-inner { .item { .carousel-caption.carousel1 { opacity: 0; -webkit-transition: all 1s cubic-bezier(0.250, 0.250, 0.750, 0.750); -moz-transition: all 1s cubic-bezier(0.250, 0.250, 0.750, 0.750); -o-transition: all 1s cubic-bezier(0.250, 0.250, 0.750, 0.750); transition: all 1s cubic-bezier(0.250, 0.250, 0.750, 0.750); } } .item.active { .carousel-caption.carousel1 { opacity: 1; -webkit-transition: all 1s cubic-bezier(0.250, 0.250, 0.750, 0.750); -moz-transition: all 1s cubic-bezier(0.250, 0.250, 0.750, 0.750); -o-transition: all 1s cubic-bezier(0.250, 0.250, 0.750, 0.750); transition: all 1s cubic-bezier(0.250, 0.250, 0.750, 0.750); } } }