/* Informational image-and-copy sections.  JS marks each Bootstrap column as
   either copy or photo, so the layout stays correct even where the columns
   alternate from one service page to another. */
@media (min-width: 768px) {
    html body .slidors .second-block,
    html body .slidors .third-block {
        display: flex;
        align-items: center;
    }
}

html body .slidors .vo-slidors-copy {
    position: relative;
    padding: 26px 32px !important;
    background: rgba(255, 255, 255, .88);
    border-left: 3px solid #ffaa83;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 10px 28px rgba(27, 45, 41, .07);
}

html body .slidors .vo-slidors-copy > p,
html body .slidors .vo-slidors-copy > div > p {
    margin: 0 0 14px !important;
    font-family: "MullerRegular", Arial, sans-serif;
    font-size: 17px !important;
    line-height: 1.6 !important;
    color: #43504c !important;
}

html body .slidors .vo-slidors-copy > p:last-child,
html body .slidors .vo-slidors-copy > div > p:last-child {
    margin-bottom: 0 !important;
}

html body .slidors .vo-slidors-copy ul {
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

html body .slidors .vo-slidors-copy li {
    position: relative;
    margin: 0 0 9px;
    padding-left: 23px;
    font-family: "MullerRegular", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.45;
    color: #53605c;
}

html body .slidors .vo-slidors-copy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffaa83;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

html body .slidors .vo-slidors-photo {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(27, 45, 41, .12);
    cursor: zoom-in;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

html body .slidors .vo-slidors-photo img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    transform: translateZ(0) scale(1) !important;
    transform-origin: 50% 50%;
    transition: transform 1.3s cubic-bezier(.22, 1, .36, 1), filter 1.3s cubic-bezier(.22, 1, .36, 1) !important;
    will-change: transform, filter;
}

html body .slidors .vo-slidors-photo:hover img,
html body .slidors .vo-slidors-photo.vo-slidors-photo-active img {
    transform: translateZ(0) scale(1.09) !important;
    filter: saturate(1.05) contrast(1.025);
}

@media (max-width: 767px) {
    html body .slidors .vo-slidors-copy {
        margin: 0 15px 20px;
        padding: 21px 22px !important;
    }
    html body .slidors .vo-slidors-photo {
        margin: 0 15px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .slidors .vo-slidors-photo img {
        transition: transform .15s linear !important;
    }
}
