/* Page */


#bannerSlider .carousel-item > div {
    /*height: 400px;*/
    /*line-height: 500px;*/
    height: auto;
    font-size: 1.5em;
    text-align: center;
    color: #fff;
}

#bannerSlider .item-1 {
   /* background-color: #3498db;*/
}

#bannerSlider .item-2 {
    background-color: #B22222;
}

#bannerSlider .item-3 {
    background-color: #006400;
}

#bannerSlider .item-4 {
    background-color: #FFD700;
}

#bannerSlider .item-5 {
    background-color: #FF4500;
}

/* Carousel */

#bannerSlider .carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

#bannerSlider .carousel-container {
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 500%;
    transition: transform 0.3s cubic-bezier(.694, .0482, .335, 1);
}

#bannerSlider .carousel-item {
    position: relative;
    float: left;
    width: 20%;
}

/* Next / Prev Buttons */

#bannerSlider .carousel-prev,
#bannerSlider .carousel-next {
    position: absolute;
    top: 48%;
    background-color: #222;
    opacity: 0.7;
    border-radius: 50%;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-align: center;
    z-index: 10;
    transition: opacity 0.3s ease;
}

#bannerSlider .carousel-prev {
    left: 2%;
    padding-right: 3px;
}

#bannerSlider .carousel-prev::before {
    content: '\f053';
    font-family: "FontAwesome";
}

#bannerSlider .carousel-next {
    right: 2%;
    padding-left: 3px;
    z-index: 999;
}

#bannerSlider .carousel-next::before {
    content: '\f054';
    font-family: "FontAwesome";
}

#bannerSlider .carousel-prev:hover,
#bannerSlider .carousel-next:hover {
    opacity: 1;
}

/* Pagination */

#bannerSlider .carousel-pagination {
        
    display: inline-block;
    list-style: none;
    position: absolute;
    top: auto;
    bottom: 20%;
    left: 0;
    right: 0;
    width: 50%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
}

#bannerSlider .carousel-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #fff;
    cursor: pointer;
    margin: 0 7px;
    border-radius: 50%;
    opacity: 0.8;
    transition-property: transform, opacity, background-color;
    transition-duration: 0.3s;
}

#bannerSlider .carousel-bullet:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

#bannerSlider .carousel-bullet.active-bullet, 
#bannerSlider .carousel-bullet.active-bullet:hover {
    opacity: 1;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    background-color: #fff;
    cursor: default;
}
.item-1 img {
    width: 100%;
}