.video_cta-fake {
    display: none;
    box-sizing: border-box;
    width: 100%;
    margin: 15px auto 0 auto;
    padding: 15px 15px;
    font-family: "Outfit", "Arial", sans-serif;
    font-size: 18px;
    line-height: 130%;
    color: #113367;
    font-weight: bold;
    text-align: center;
    text-decoration: underline;
    text-transform: uppercase;
    position: relative;
    background: #0f2342;
    border: solid 2px #113367;
    border-radius: 5px;
    box-shadow: 0px 0px 16px 8px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0px 0px 16px 8px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0px 0px 16px 8px rgba(0, 0, 0, .5);
    -o-box-shadow: 0px 0px 16px 8px rgba(0, 0, 0, .5)
}

@media only screen and (min-width: 768px) {
    .video_cta-fake {
        font-size: 24px;
        line-height: 130%;
        padding: 20px 10px
    }
}

.video_wrapperCta {
    display: none;
    position: relative;
    z-index: 49
}

.video_wrapperCta .video_linkRegulamento {
    display: none;
    width: fit-content;
    margin: 15px auto 0px auto;
    font-size: 15px;
    line-height: 130%;
    text-align: center;
    color: #dbdbdb
}

.video_wrapperCta .video_linkRegulamento:hover {
    text-decoration-color: #1ba8f1
}

.video_cta1 {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 15px auto 0 auto;
    padding: 15px 15px;
    font-family: "Outfit", "Arial", sans-serif;
    font-size: 18px;
    line-height: 130%;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: underline;
    position: relative;
    background: #1ba8f1;
    border: solid 2px #04d0da;
    border-radius: 5px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition: all;
    transition: all;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    box-shadow: 0px 0px 16px 8px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0px 0px 16px 8px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0px 0px 16px 8px rgba(0, 0, 0, .5);
    -o-box-shadow: 0px 0px 16px 8px rgba(0, 0, 0, .5)
}

@media only screen and (min-width: 768px) {
    .video_cta1 {
        font-size: 24px;
        line-height: 130%;
        padding: 20px 10px
    }
}

.video_cta1:hover,
.video_cta1:focus,
.video_cta1:active {
    color: #fff;
    border: solid 2px #1ba8f1
}

.video_cta1:hover:before,
.video_cta1:focus:before,
.video_cta1:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1)
}

.video_cta1:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #04d0da;
    border-radius: 5px;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out
}

.bell_cta {
    display: block;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    padding: 8px 5px 6px 5px;
    margin-top: 15px;
    font-family: "Outfit", "Arial", sans-serif;
    font-size: 16px;
    line-height: 130%;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: underline;
    text-transform: uppercase;
    background: #1ba8f1;
    border: solid 2px #04d0da;
    border-radius: 5px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease
}

.bell_cta:hover,
.bell_cta:focus,
.bell_cta:active {
    color: #fff;
    border: solid 2px #1ba8f1
}

.bell_cta:hover:before,
.bell_cta:focus:before,
.bell_cta:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1)
}

.bell_cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #04d0da;
    border-radius: 5px;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out
}

.main_wrapperCta {
    opacity: 0
}

.animate {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.fadeInDown {
    animation-name: fadeInDown
}


/* =========================================
  Pulse
========================================= */

@keyframes pulse {
    from {
        transform: scale3d(.97, .97, .97);
    }
    50% {
        transform: scale3d(1, 1, 1);
    }
    to {
        transform: scale3d(.97, .97, .97);
    }
}

.pulse {
    animation-name: pulse;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 2s;
}