.carousel-item {
    height: 65vh;
    min-height: 300px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.carousel-link {
    width: 65%;
    min-height: 90%;
    margin-left: auto;
    margin-right: auto;
}

.mini-hero {
    background-color: #333333;
    padding-top: 12px;
    padding-bottom: 15px;
    text-align: center;
}

.mini-hero h1 {
    font-size: 32px;
    text-align: center;
    margin-top: 2px;
}

.mini-hero .btn {
    margin-top: 15px;
    background-color: #222222;
    border: 2px solid #bbbbbb;
    border-radius: 1px;
    color: #bbbbbb;
    font-weight: 400;
    font-size: 17px;
}

.mini-hero .btn:hover {
    background-color: #121212;
}

.card {
    background-color: #222222;
    border: 0px;
    margin-left: 15px;
    margin-right: 15px;
}

.card-body {
    padding: 0px;
}

.card img {
    width: 100%;
}

.card-hover {
    position : absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    -webkit-transition: opacity 0.4s ease-in-out;
    -moz-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
    opacity: 0;
}

.card-hover:hover {
    opacity: 1;
}

.card-hover p {
    color: #cccccc;
    background-color:rgba(0, 0, 0, 0.6);
    font-size: 32px;
    /* text-shadow: 0px 0px 2px #cccccc; */
    padding-top: 7px;
    padding-bottom: 5px;
    padding-left: 18px;
}