.module-mozaiq {
    position: relative;
    display: block;
    padding: 10px 0px;
}

.module-mozaiq-title {
    position: relative;
    display: block;
    color: #000000;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;

    margin-bottom: 20px;
}
.module-mozaiq-title:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY( -50% ) translate3d(0);
    height: 1px;
    left: 0px;
    right: 0px;
    background: #cccccc;

    z-index: 1;
}

.module-mozaiq-title span {
    position: relative;
    background: #ffffff;

    padding: 0px 15px;

    z-index: 2;
}


.mozaiq-playground {
    position: relative;
    overflow: hidden;
}
.mozaiq-block {
    position: relative;
    display: block;
    transform-origin: top left;
    padding-right: 1px;
    padding-bottom: 1px;
    overflow: hidden;
}
.mozaiq-block img {
    transform-origin: top left;
}
.mozaiq-block .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% );
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    color :#ffffff;
    background: rgba(246,124,83, 0.8);
    letter-spacing: 0.05em;
    text-align: center;
    max-width: 95%;
    min-width: 210px;
    padding: 10px 25px;

    z-index: 2;
}

.mozaiq-block .hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: backdrop-filter 0.3s;
    backdrop-filter: blur(0px);
}
.mozaiq-block:hover .hover {
    backdrop-filter: blur(7px);
}