/* ==================================================
   OLEG CUSTOM OVERRIDES
   All manual business tweaks go here
   ================================================== */

/* Hide second part of services on mobile */
@media screen and (max-width: 799px) {
    .mobile-hide-group {
        display: none !important;
    }
}

/* Hide text reviews on mobile */
@media screen and (max-width: 799px) {
    .mobile-hide-reviews {
        display: none !important;
    }
}


/* === Lazy YouTube video reviews === */

.video-review {
    position: relative;
    max-width: 100%;
    cursor: pointer;
}

.video-review img.video-preview {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.video-play-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #fff;
}
