.wp-block-eventoplus-dce-home-title{
    position: relative;
    overflow: hidden;
    --bgdesktop: transparent;
    --bgmobile: transparent;
    margin: 0 -15px;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wp-block-eventoplus-dce-home-title-parallax{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    background: var(--bgdesktop);
    background-position: center center;
    background-size: cover;
    /*transition: all 0.03s linear;
    will-change: transform;

    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -webkit-transform: translate3d(0, 0, 0);*/
}
.wp-block-eventoplus-dce-home-title-parallax video{
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.wp-block-eventoplus-dce-home-title-inner{
    padding: 4rem 0 4rem 0;
    flex: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wp-block-eventoplus-dce-home-title-back{
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-block-eventoplus-dce-home-title button{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border: 0;
    padding: 0 0 0.5rem 0;
    color: #fff;
    font-size: 2rem;
    transition: all 0.3s ease;
}
.wp-block-eventoplus-dce-home-title button:hover{
    padding-bottom: 0;
}
.wp-block-eventoplus-dce-home-title button:focus {
    outline:0;
}

.wp-block-eventoplus-dce-home-title .home-title{
    color: #fff;
    font-size: 4.375rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    text-align: center;
}

.wp-block-eventoplus-dce-home-title .home-title span:not(.sentence):not(.input-cursor){
    display: none;
}

.wp-block-eventoplus-dce-home-title .home-title .input-cursor {
    display: inline-block;
    width: 3px;
    height: 2rem;
    background-color: white;
    margin: 0 0.5rem;
    animation: blink .6s linear infinite alternate;
}

@keyframes blink {
    0% {opacity: 1;}
    40% {opacity: 1;}
    60% {opacity: 0;}
    100% {opacity: 0;}
}

/*** Media queries ***/

/* Large devices (landscape tablets, desktops) */
@media (max-width: 1199px) {

}

/* Medium devices (vertical tablets) */
@media (max-width: 991px) {

}

/* Small devices (landscape phones)  */
@media (max-width: 767px) {
    .wp-block-eventoplus-dce-home-title .home-title{
        font-size: 2.0rem;
    }
}

/* Small devices (vertical phones) */
@media (max-width: 575px) {
    .wp-block-eventoplus-dce-home-title-parallax{
        background: var(--bgmobile);
    }
}