/*** MOSAIC ***/
.matrix-wrapper {
    margin: 0 -10px;
}
.matrix__column {
    clear: both;
}
.matrix__tile {
    position: relative;
    float: left;
}
.matrix__box {
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    opacity: 0;
    height: 310px;
}


/*@media(max-width: 1199px){
    .matrix__box {
        min-height: 250px;
    }
}*/

.matrix__box.matrix__box--ready {
    opacity: 1;
}

/*.matrix__box--x025 {
    padding-top: 25%;
}
.matrix__box--x050 {
    padding-top: 50%;
}
.matrix__box--x100 {
    padding-top: 100%;
}
.matrix__box--x200 {
    padding-top: 200%;
}*/

.matrix__inner {
    display: block;
    position: absolute;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    -webkit-transition: -webkit-filter 0.2s ease-in-out;
    transition: -webkit-filter 0.2s ease-in-out;
    -moz-transition: filter 0.2s ease-in-out, opacity 0.2s ease-in-out;
    transition: filter 0.2s ease-in-out, -webkit-filter 0.2s ease-in-out, opacity 0.2s ease-in-out;
    padding: 30px 20px;
    border-radius: 3px;
    text-decoration: none;
    overflow: hidden;
    text-align: center;
}

@media(min-width: 720px){
    .matrix__inner {
        padding: 20px;
        text-align: left;
    }
}

.matrix__cover {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.matrix__cover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.5);
}

@media(min-width: 720px){
    .matrix__cover:before {
        display: none;
    }
}

a.matrix__inner {
    cursor: pointer;
}
.matrix__inner:hover {
    -webkit-filter: brightness(105%);
    filter: brightness(105%);
}

.no-cssfilters .matrix__inner:hover {
    opacity: 0.9
}

.matrix__title {
    margin-bottom: 15px;
    padding: 0;
    color: inherit;
    font-family: robotolight, Arial, sans-serif;
}

.matrix__text {
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: robotolight, Arial, sans-serif;
    line-height: 20px;
    font-size: 14px;
}