a.btn:visited {
    text-decoration: none;
    color: white;
}

a.btn:hover {
    text-decoration: none;
    color: white;
}

a.btn:focus {
    text-decoration: none;
    color: white;
}

a.btn:hover, a.btn:active {
    text-decoration: none;
    color: white
}

.image-group {
    border: 1px solid grey;
    border-radius: 5px;
    padding: 15px;
    animation: slide-up 0.4s ease;
    margin: 2rem 0;
    -moz-box-shadow: 0 0 10px #ccc;
    -webkit-box-shadow: 0 0 10px #ccc;
    box-shadow: 0 0 10px #ccc;
}

.edit-img {
    height: 200px;
    width: 300px;
    object-fit: cover;
}

.card.release-card {
    width: 16rem;
    height: 23rem;
    max-height: 23rem;
    margin: 1rem;
    border: none;
    border-radius: 0;
    position: relative;
}

.release-img {
    width: 16rem;
    height: 12rem;
    object-fit: cover;
    border: none;
    border-radius: 0;
}

.hero-img {
    width: 100%;
    background-size: cover !important;
    background-position: center center !important;
    height: 550px;
}

img.release-img.card-img-top {
    border-radius: 0;
}

.release-card-body p {
    color: white
}

.top-left-box {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: white;
    width: 4rem;
    height: 4rem;
    text-align: center;
    color: #710a2c;
}

    .center {
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }


/*Maroon*/
.card-link:nth-child(4n+1) .release-card-body {
    background: #710a2c;
}
/*Blue*/
.card-link:nth-child(4n+2) .release-card-body {
    background: #356A80;
    /*background: #3f7f9a;*/
}
/*Grey*/
.card-link:nth-child(4n+3) .release-card-body {
    background: #383838;
}
/*Dark Maroon*/
.card-link:nth-child(4n+4) .release-card-body {
    background: #480014;
}

.card-link:nth-child(n) .release-card-body {
    transition: all .3s linear;
}

.card-link:nth-child(n):hover .release-card-body {
    background: white;
}

.card-link:nth-child(n):hover .release-card-body > p{
    color: black;
}

.card-link:nth-child(n):focus .release-card-body {
    background: white;
}

.card-link:focus {
    outline: none;
}

    .card-link:nth-child(n):focus .release-card-body > p {
        color: black;
    }

    .card-link:nth-child(n):hover .release-card-body > p {
        transition: all .3s linear;
    }

.card-link+.card-link {
    margin-left: 0 !important;
}

@media (max-width: 576px) {
    .card-link {
        margin: 0;
        display: flex;
        justify-content: center;
    }
}

.body-title {
    text-transform: uppercase;
    font-family: "Times New Roman", Times, serif;
    letter-spacing: 4px;
    color: #710a2c;
}

.date-title {
    padding-top: 3rem;
}


.body-title-hr {
    border-color: rgb(112,10,44);
    color: rgb(112,10,44);
    width: 33%;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.headline-full-detail figcaption {
    font-size: 80%;
}

.headline-header h1 {
    border-bottom: 1px solid #ccc;
    margin: 0!important;
    padding: .5rem;
    font-weight: initial !important;
}

.headline-full-detail figure {
    margin: 0.5rem;
    max-width: 350px;
    clear: both;
}

.headline-full-detail img {
    max-width: 100%;
    float: right;
}

.search-bar {
    background-color: #710a2c;
    background-image: linear-gradient(#710a2c, #480014);
    margin-bottom: 2rem;
    min-height: 4.5rem;
}

.search-bar ul {
    list-style-type: none;
}

.modal-backdrop {
    /* bug fix - no overlay */
    display: none;
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}