
.ar-image-button-area {
    width: 100%;
}

.ar-image-button-each {
    display: inline-block;
    width: 100%;
    float: left;
    height: 342px;
    margin-bottom: 25px;
    margin-top: 25px;
    text-decoration: none;
    position: relative;
    background-color: #0067b1;
}

.ar-image-button-each:focus {
    outline: 6px double #0067b1;
}

.ar-image-button-each > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(80%);
    -webkit-filter: brightness(80%);
    -moz-filter: brightness(80%);
    transition: all 0.3s ease-in-out;
}

.ar-image-button-each span.ar-image-button-label {
    display: flex;
    background: #0067b1;
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 100px;
    align-content: center;
    padding: 23px 25px 24px 25px;
}

.ar-image-button-each span.ar-image-button-label span {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 1.36em;
    display: inline-block;
    line-height: 1.3;
    max-width: 85%;
    align-self: center;
}

.ar-image-button-each:hover > img {
    filter: brightness(100%);
    -webkit-filter: brightness(100%);
    -moz-filter: brightness(100%);
}

.ar-image-button-each span.ar-image-button-label img {
    position: absolute;
    right: 64px;
    top: 50%;
    margin-top: -8px;
    height: 16px;
    width: 16px;
    opacity: 0;
    transition: all 250ms ease-in-out;
}

.ar-image-button-each:hover span.ar-image-button-label img,
.ar-image-button-each:focus span.ar-image-button-label img
{
    right: 32px;
    opacity: 1;
}
