.holistic-pilates-wrapper{
    background-color: #eef4f6;
    padding: 0.001rem 0;
}
.about-us > .row > .about-us-text > span > a, .about-us > .row > .about-us-text > span > a:visited {
    text-decoration: none;
    color: #646464;
}
.about-us-video {
    display: grid;
    place-items: center;
    align-content: center;
    position: relative;
    transition: .2s linear;
}

    .about-us-video > i {
        position: absolute;
        font-size: 6rem;
    }

    .about-us-video video {
        width: 100%;
        max-width: 400px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        cursor: pointer;
    }

    .about-us-video:hover {
        transform: scale(1.1);
    }

.popup-video {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
    height: 100%;
    width: 100%;
}

    .popup-video video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95%;
        max-width: 750px;
        border-radius: 5px;
        border: 3px solid #fff;
        object-fit: cover;
        z-index: 1000;
    }

    .popup-video > span > i {
        color: #fff;
        position: absolute;
        right: 20px;
        top: 10px;
    }

@media(max-width: 768px) {
    .about-us > .row {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .about-us-video {
        margin-bottom: 2rem;
    }
}