/* Custom CSS - The CSS properties in this stylesheet will over-write any original template styles if the same class names are used in addition to custom styles which can also be added. */
.main-content a:not(.btn), .global-footer .copyright a:not(.btn) { /* WCAG: Link identified only by color */
    text-decoration: underline;
    text-decoration-thickness: from-font;
}

#navigation {
    text-decoration: none;
}

.overlay {
    position: absolute;
    background: rgba(57, 57, 57, 0.5);
    /* center overlay text */
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay_1 {
    left: 0;
    /*bottom: 0;*/
    width: 100%;
    padding: 1rem;
}

.image-banner {
    position: relative;
    display: inline-block;
    border-radius: 8px;
}

    .image-banner .after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: .5rem;
        display: block;
        background-color: #20367C;
        font-size: 1.3rem;
        color: white;
        text-shadow: 1px 1px 2px black, 0 0 1em black, 0 0 0.2em black;
        overflow: visible;
        white-space: nowrap;
        border-radius: 0 0 8px 8px;
    }

.mov-banner-link {
    color: white!important;
}

.recipient-photo {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.3);
    border-radius: 5px; /* 5px rounded corners */
}

@media only screen and (max-width: 380px) {

    .image-banner .after {
        font-size: 3vw;
    }
}

/* Hide blue bar on mobile view by positioning bg image */
@media only screen and (max-width: 767px) {

    .global-header {
        url(../images/department/web-5.jpg) no-repeat 0% 0%!important;
    }
}