<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Image With Text Block - Frontend Styles
 */

.mgepc-image-with-text-block {
    position: relative;
    display: block;
}

.mgepc-image-with-text-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.mgepc-image-with-text-holder.mgepc-bg-label-exists {
    padding-bottom: 65px;
}

.mgepc-image-with-text-holder.mgepc-has-shadow .mgepc-iwt-image {
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.07);
    transition: .5s;
}

.mgepc-image-with-text-holder.mgepc-has-predefined-hover.mgepc-has-shadow:hover .mgepc-iwt-image {
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.mgepc-image-with-text-holder.mgepc-has-predefined-hover .mgepc-iwt-bg-label {
    transform: translateX(0);
    transition: transform .37s ease-out;
}

.mgepc-image-with-text-holder.mgepc-has-predefined-hover .mgepc-iwt-title span {
    display: inline-block;
    margin-left: 10px;
    transform: translateX(-21px) translateZ(0);
    transition: transform .2s ease-out;
    transition-delay: 0s;
}

.mgepc-image-with-text-holder.mgepc-has-predefined-hover .mgepc-iwt-title:before {
    content: '';
    position: relative;
    top: calc(50% - 3px);
    display: inline-block;
    vertical-align: middle;
    width: 11px;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: .2s ease-out;
    transition-delay: 0s;
}

.mgepc-image-with-text-holder.mgepc-has-predefined-hover:hover .mgepc-iwt-title span {
    transform: translateX(0) translateZ(0);
}

.mgepc-image-with-text-holder.mgepc-has-predefined-hover:hover .mgepc-iwt-title:before {
    transform: scaleX(1);
    transition-delay: .02s;
}

.mgepc-image-with-text-holder.mgepc-has-predefined-hover:hover .mgepc-iwt-bg-label {
    transform: translateX(33px);
}

.mgepc-image-with-text-holder .mgepc-iwt-image {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    transition: .5s;
}

.mgepc-image-with-text-holder .mgepc-iwt-image a,
.mgepc-image-with-text-holder .mgepc-iwt-image img {
    position: relative;
    display: block;
}

.mgepc-image-with-text-holder .mgepc-iwt-text-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.mgepc-image-with-text-holder .mgepc-iwt-title {
    margin: 31px 0 0;
}

.mgepc-image-with-text-holder .mgepc-iwt-text {
    margin: 14px 0 0;
}

.mgepc-image-with-text-holder .mgepc-iwt-bg-label {
    position: absolute;
    bottom: 0;
    left: 27px;
    font-family: "Playfair Display", serif;
    font-size: 150px;
    line-height: 1;
    font-style: italic;
    color: #ff4d30;
    opacity: .1;
}

.mgepc-image-with-text-holder a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Custom Link Behavior Style */
.mgepc-image-with-text-holder.mgepc-image-behavior-custom-link .mgepc-iwt-image a {
    cursor: pointer;
}

.mgepc-image-with-text-holder.mgepc-image-behavior-custom-link:hover .mgepc-iwt-image {
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

/* Lightbox Behavior Style */
.mgepc-image-with-text-holder.mgepc-image-behavior-lightbox .mgepc-iwt-image a {
    cursor: pointer;
}

/* Zoom Behavior Style */
.mgepc-image-with-text-holder.mgepc-image-behavior-zoom .mgepc-iwt-image {
    overflow: hidden;
}

.mgepc-image-with-text-holder.mgepc-image-behavior-zoom .mgepc-iwt-image:hover img {
    transform: scale(1.04);
}

.mgepc-image-with-text-holder.mgepc-image-behavior-zoom .mgepc-iwt-image img {
    transform: scale(1);
    transition: transform .3s ease-in-out;
}

/* Grayscale Behavior Style */
.mgepc-image-with-text-holder.mgepc-image-behavior-grayscale .mgepc-iwt-image {
    overflow: hidden;
}

.mgepc-image-with-text-holder.mgepc-image-behavior-grayscale .mgepc-iwt-image:hover img {
    -webkit-filter: grayscale(0);
    filter: none;
}

.mgepc-image-with-text-holder.mgepc-image-behavior-grayscale .mgepc-iwt-image img {
    filter: url('img/desaturate.svg#grayscale');
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: gray;
    filter: grayscale(100%);
    transition: all .3s ease-in-out;
}
</pre></body></html>