.about-video-wrap {
    padding-top: 45px;
}

.about-video-wrap .entry-content {
    position: relative;
    padding-left: 85px;
    font-size: 14px;
}

.about-video-wrap .entry-content ul {
    display: flex;
    flex-wrap: wrap;
}

.about-video-wrap .entry-content ul li::marker {
    font-size: 20px;
}

.about-video-wrap .entry-content ul li {
    list-style: square;
    font-size: 14px;
    color: var(--text_color);
    min-width: 50%;
}

.about-video-wrap .entry-content:before {
    content: " ";
    background-color: var(--primary_color);
    -webkit-mask-image: url(../img/wave.svg);
    mask-image: url(../img/wave.svg);
    width: 71px;
    height: 86px;
    position: absolute;
    bottom: 0;
    left: 45px;
    box-shadow: 0 4px 26px 0 color-mix(in srgb, var(--primary_color) 36%, transparent);
    transform: scaleX(-1);
}

.video-about-box {
    position: relative;
    width: max-content;
    height: max-content;
    max-width: 100%;
}

.video-about-box:before {
    content: " ";
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: var(--secondary_color);
    transform: rotate(5deg);
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
}

.video-about-box > img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 24px;
    z-index: 2;
}

.video-about-box > .play-video2 svg path:last-child {
    fill: var(--primary_color);
}

.video-about-box > .play-video2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

@media (max-width: 1199px) {
    .about-video-wrap {
        flex-direction: column-reverse;
    }

    .about-video-wrap .entry-content {
        padding: 80px 0 0;
    }

    .video-about-box {
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .about-video-wrap .entry-content:before {
        content: unset;
    }
    .about-video-wrap .entry-content ul li{
        width: 100%;
    }
}