/* ======================================== */
/* VIDEO PREMIUM */
/* ======================================== */

.video-premium{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

    background:#000;

    display:flex;

    align-items:center;

    justify-content:center;
}

/* ======================================== */
/* POSTER */
/* ======================================== */

.video-poster{

    position:absolute;

    inset:0;

    cursor:pointer;

    transition:
    opacity .8s ease,
    visibility .8s ease;

    z-index:3;
}

/* COVER */

.video-cover{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .8s ease;
}

/* OVERLAY */

.video-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,.68) 0%,
    rgba(0,0,0,.35) 50%,
    rgba(0,0,0,.15) 100%);
}

/* ======================================== */
/* CONTENT */
/* ======================================== */

.video-poster::before{

    content:"EXPERIENCIA INDUPARK";

    position:absolute;

    top:22%;

    left:7%;

    color:#E14514;

    font-size:14px;

    letter-spacing:3px;

    font-weight:700;

    z-index:5;
}

.video-poster::after{

    content:"EXPLORA NUESTRO PARQUE INDUSTRIAL";

    position:absolute;

    left:7%;

    top:28%;

    max-width:750px;

    color:#fff;

    font-size:68px;

    line-height:.92;

    font-weight:900;

    z-index:5;
}

/* ======================================== */
/* PLAY BUTTON */
/* ======================================== */

.video-poster .play-btn{

    position:absolute;

    left:7%;

    bottom:14%;

    width:88px;

    height:88px;

    border-radius:50%;

    background:#E14514;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:5;

    transition:.4s ease;

    box-shadow:
    0 20px 50px rgba(225,69,20,.35);
}

.video-poster .play-btn:hover{

    transform:scale(1.08);

    background:#35753D;
}

/* TRIANGLE */

.video-poster .play-btn::before{

    content:"";

    width:0;
    height:0;

    border-left:26px solid #fff;

    border-top:16px solid transparent;

    border-bottom:16px solid transparent;

    margin-left:6px;
}

/* ======================================== */
/* VIDEO FRAME */
/* ======================================== */

.video-frame{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transition:.7s ease;

    z-index:2;
}

/* ACTIVE */

.video-frame.active{

    opacity:1;

    visibility:visible;
}

/* IFRAME */

.video-frame iframe{

    width:100%;
    height:100%;

    border:none;
}

/* ======================================== */
/* MOBILE */
/* ======================================== */

@media(max-width:768px){

    .video-premium{

        min-height:650px;
    }

    .video-poster::before{

        top:18%;

        left:24px;

        font-size:12px;

        letter-spacing:3px;
    }

    .video-poster::after{

        left:24px;

        top:25%;

        max-width:320px;

        font-size:44px;

        line-height:1;
    }

    .video-poster .play-btn{

        left:24px;

        bottom:10%;

        width:82px;

        height:82px;
    }

    .video-poster .play-btn::before{

        border-left:20px solid #fff;

        border-top:12px solid transparent;

        border-bottom:12px solid transparent;
    }
}

/* ========================================
LARGE DESKTOP
======================================== */

@media(max-width:1600px){

.video-poster::after{

    font-size:72px;
}

}

/* ========================================
LAPTOP
======================================== */

@media(max-width:1400px){

.video-poster::after{

    max-width:620px;

    font-size:62px;
}

.video-poster .play-btn{

    width:92px;
    height:92px;
}

.video-poster .play-btn::before{

    border-left:22px solid #fff;

    border-top:14px solid transparent;

    border-bottom:14px solid transparent;
}

}

/* ========================================
TABLET
======================================== */

@media(max-width:992px){

.video-premium{

    height:90vh;
}

.video-poster::before{

    top:18%;

    left:50px;

    font-size:12px;

    letter-spacing:3px;
}

.video-poster::after{

    left:50px;

    top:25%;

    max-width:520px;

    font-size:52px;

    line-height:1;
}

.video-poster .play-btn{

    left:50px;

    bottom:12%;

    width:82px;
    height:82px;
}

.video-poster .play-btn::before{

    border-left:20px solid #fff;

    border-top:12px solid transparent;

    border-bottom:12px solid transparent;
}

}

/* ========================================
MOBILE
======================================== */

@media(max-width:768px){

.video-premium{

    min-height:650px;

    height:auto;
}

.video-overlay{

    background:
    linear-gradient(
    to bottom,
    rgba(0,0,0,.75),
    rgba(0,0,0,.35)
    );
}

.video-poster::before{

    top:16%;

    left:24px;

    font-size:11px;

    letter-spacing:2px;
}

.video-poster::after{

    left:24px;

    top:23%;

    max-width:300px;

    font-size:40px;

    line-height:1.05;

    letter-spacing:-1px;
}

.video-poster .play-btn{

    left:24px;

    bottom:10%;

    width:72px;
    height:72px;
}

.video-poster .play-btn::before{

    border-left:18px solid #fff;

    border-top:11px solid transparent;

    border-bottom:11px solid transparent;
}

}

/* ========================================
SMALL MOBILE
======================================== */

@media(max-width:480px){

.video-poster::after{

    font-size:34px;

    max-width:260px;
}

.video-poster .play-btn{

    width:64px;
    height:64px;
}

.video-poster .play-btn::before{

    border-left:16px solid #fff;

    border-top:10px solid transparent;

    border-bottom:10px solid transparent;
}

}
