/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 50px;         /* Margin bottom by footer height */
}

.footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: auto;         /* Set the fixed height of the footer here */
    line-height: auto;         /* Vertically center the text there */
    background-color: rgba(0, 0, 0, 0.78);
}

/* Responsive Card Deck Solution with flex */
.card-deck {
    margin: 0px;
    justify-content: space-around;
}

@media (min-width:576px) and (max-width:767px) {
    .card-deck {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
}

.card-deck .card {
    margin: 0 0 1rem 0px;
    border: 1px solid #000000;
    box-shadow: 5px 6px 10px #000000;
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .card-deck .card {
        -ms-flex: 0 0 48.7%;
        flex: 0 0 48.7%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .card-deck .card {
        -ms-flex: 0px 0 47%;
        flex: 0 0 47%;
    }
}

@media (min-width: 992px)
{
    .card-deck .card {
        -ms-flex: 0px 0 24%;
        flex: 0 0 28%;
    }
}

h3,
h4,
p {
    font-weight: lighter;
}

.bg-transparent {
    background-color: rgba(0, 0, 0, 0.62) !important;
}

.card-text-color {
    color: #ffffff;
    z-index: -1;
}