/* =================================
VIDAPI HERO FULL PAGE
================================= */

.hero-page-wrapper{
    margin:0;
    padding:0;
}

/* HERO SECTION */

.vidapi-hero{
    position:relative;
    width:100vw;
    height:calc(100vh - 80px);
    margin-left:calc(50% - 50vw); /* BREAK OUT OF CONTAINER */
    overflow:hidden;
}

/* HERO IMAGE */

.vidapi-hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    max-width:none; /* prevents theme containment */
}

/* OVERLAY */

.vidapi-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

/* HERO CONTENT */

.vidapi-hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    max-width:900px;
    padding:20px;
    z-index:2;
}

.vidapi-hero-content h1{
    font-size:60px;
    margin-bottom:20px;
}

.vidapi-hero-content p{
    font-size:22px;
}

/* CONTENT BELOW HERO */

.hero-content-area{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}

/* MOBILE */

@media(max-width:768px){

.vidapi-hero{
height:70vh;
}

.vidapi-hero-content h1{
font-size:34px;
}

}