/* Parallax Block widget styles */

.uew-parallax-block {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
}

.uew-parallax-block .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.uew-parallax-block .parallax-block {
    position: relative;
    display: flex;
    align-items: center;
}

.uew-parallax-block .parallax-block:before {
    /*background: transparent;
    background-position: center center;*/
    content: ' ';
    display: block;
    background-position: center;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: -10;
}

.uew-parallax-block .parallax-content {
    text-align: center;
}

.uew-parallax-block .parallax-content .sub-heading,
.uew-parallax-block .parallax-content h2,
.uew-parallax-block .parallax-content a {
    position: relative;
    text-transform: uppercase;
}

.uew-parallax-block .parallax-content .sub-heading {
    font-size: 20px;
    width: 100%;
    letter-spacing: .5px;
}

.uew-parallax-block .parallax-content h2 {
    font-size: 50px;
    font-weight: 900;
    width: 100%;
    letter-spacing: .5px;
    margin: 50px 0;
}

/* SMARTPHONES & TABLETS */
@media only screen and (max-width: 800px) {

    .uew-parallax-block .parallax-content .sub-heading {
        font-size: 15px;
        margin: 0;
    }

    .uew-parallax-block .parallax-content h2 {
        font-size: 30px;
    }

}