.banner-play:active {
    padding: 45px 35px;
}
.banner-play {
    position: absolute;
    top: 50%;
    left: 25%;
    background-color: #fff;
    padding: 50px 40px;
    font-size: 0;
    border: none;
    transform: translate(-50%, -50%);
    clip-path: polygon(0% 100%, 100% 50%, 0% 0%, 0% 0%);
    -webkit-clip-path: polygon(0% 100%, 100% 50%, 0% 0%, 0% 0%);
    outline: none;
    cursor: pointer;
}
.iframe-off {
    display: none;
}
.iframe-on {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}
.iframe-on::after {
    content: '\f00d';
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #fff;
    font-size: 4rem;
    position: absolute;
    right: 4rem;
    top: 4rem;
    cursor: pointer;
}
.iframe-on.active {
    opacity: 1;
    visibility: visible;
}
.iframe-on.active iframe{
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 500px;
    transition: 2s;
}
.banner-play--paginas {
    top: 40%;
    left: 50%;
}

@media only screen and (max-width: 800px) {
    .iframe-on.active iframe {
        width: 90%;
        height: 50vh;
    }
}

@media only screen and (max-width: 500px) {
    .banner-play--paginas {
        top: 15%;
    }
}
@media (max-width:1023px){
   .banner-play {
    padding: 25px 20px;
   }
}