.section-content .row{
    gap:1rem;
}
.section-content .editor-content {
    margin: 20px 0 40px;
}
.play-btn {
    position: absolute;
    background: rgb(255 255 255 / 20%);
    width: 56px;
    height: 56px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 50%);
    border-radius: 50px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    backdrop-filter: blur(4px);
    cursor: pointer;
}
.play-btn::after,
.play-btn::before {
    content: '';
    box-sizing: border-box;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgb(255 255 255 / 20%);
    backdrop-filter: blur(4px);
    position: absolute;
    left: 0;
    top: 0;
    animation: animloader 2s linear infinite;
}
.play-btn::after {
    animation-delay: 1s;
}
@keyframes animloader {
    0% {
        transform: scale(0.7);
        opacity: 1;
        transition: 0.4s;
    }
    100% {
        transform: scale(1);
        opacity: 0;
        transition: 0.4s;
    }
}
.section-content .videos {
    /*height: 357px;*/
    height: auto;
    width: 100%;
}
.section-content .videos video {
    border-radius: 100px 0 0 0;
    box-shadow: -12px 0px 0 -2px var(--color2);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media only screen and (max-width: 992px) {
    .img_box {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-block: 2rem;
    }
    .section-content .videos video {
        margin-block: 28px;
    }
}
@media only screen and (max-width: 768px) {
    .section-content .editor-content {
        margin-top: 0;
    }
    .section-content .videos video {
        width: 98%;
        float: left;
    }
}