.image-banner {
    width: 100%;
    position: absolute;
    bottom: 5rem;
    right: 0px;
    background: #003D69;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem;
    max-width: 85%;
    @media(min-width: 1024px) {
        max-width: 85%;
        flex-wrap: nowrap;
    }
    .image-banner-title,
    .image-banner-location,
    .image-banner-link-link {
        font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 9px;
        font-weight: 300;
        line-height: 0;
        letter-spacing: 1.5px;
        padding: 1.5rem;
        text-transform: uppercase;
    }
    .image-banner-title {
        color: #E5E5E5;
    }
    .image-banner-seperator {
        width: 1px;
        height: 10px;
        background: #98B6CB;
        display: none;
        @media(min-width: 440px) {
            display: block;
        }
    }
    .image-banner-location {
        color: #98B6CB;
        display: none;
        @media(min-width: 440px) {
            display: block;
        }
    }
    .image-banner-link {
        margin-left: auto;
    }
    .image-banner-link-link {
        color: #7BB6FF;
        padding: 0;
        margin: 0;
        line-height: inherit;
        display: block;
    }
}