
/* Carousel base class */
.carousel {
    margin-bottom: 4rem;
}


.carousel-indicators li {
    /* yellow */
    background-color: #fab31b;
}

.carousel-indicators .active {
    background-color: #002e5b;
}


/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    bottom: 3rem;
    z-index: 10;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
}

.carousel-caption p  a:hover{
    text-decoration: none;
}

/* Declare heights because of positioning of img element */
.carousel-item {
    height: 32rem;
}
.carousel-item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 32rem;
}

@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;
    }
}