*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)!important;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
}
body{
    width: 100vw;
    height: 100vh;
    background: #000;
}
.cont__ppl{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.cont__izq,
.cont__der{
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.cont__izq{
    left: 0;
    clip-path: polygon(0 0, 50% 0, 39% 15%, 50% 27%, 31% 38%, 69% 46%, 34% 60%, 56% 71%, 26% 80%, 76% 86%, 31% 100%, 0 100%);
}
.cont__der{
    right: 0;
    clip-path: polygon(100% 0, 50% 0, 39% 15%, 50% 27%, 31% 38%, 69% 46%, 34% 60%, 56% 71%, 26% 80%, 76% 86%, 31% 100%, 100% 100%);
}
.cont__izq video,
.cont__der video{
    display: block;
    height: 100%;
    object-fit: contain;
}
.cont__izq.open{
    transform: translateX(-100%);
}
.cont__der.open{
    transform: translateX(100%);
}