*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Roboto', 'Sans serif';
}

.contenedor{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

#colorTitle
{
    color: black;
}

.bg_animate{
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, white, white);
    position: relative;
    overflow: hidden;
}

.header_nav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color:#178C20;

}

.header_nav .contenedor{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header_nav h1{
    color: #fff;
    font-family: 'Gagalin';
}

.header_nav nav a{
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
}

.banner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.banner_title h2{
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
}

.banner_title .llamanos{
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    background: #1A2849;
    padding: 20px;
}

.banner_img{
    animation: movimiento 2.5s linear infinite;
}

.banner_img img{
    width: 600px;
    display: block;
}

/* burbujas */

.burbuja{
    border-radius: 50%;
    background: #178C20;
    opacity: .2;

    position: absolute;
    bottom: -150;
    
    animation: burbujas 3s linear infinite ;
}

.burbuja:nth-child(1){
    width: 80px;
    height: 80px;
    left: 5%;
    animation-duration: 3s;
    animation-delay: 3s;
}

.burbuja:nth-child(2){
    width: 100px;
    height: 100px;
    left: 35%;
    animation-duration: 3s;
    animation-delay: 5s;
}

.burbuja:nth-child(3){
    width: 20px;
    height: 20px;
    left: 15%;
    animation-duration: 1.5s;
    animation-delay: 7s;
}

.burbuja:nth-child(4){
    width: 50px;
    height: 50px;
    left: 90%;
    animation-duration: 6s;
    animation-delay: 3s;
}

.burbuja:nth-child(5){
    width: 70px;
    height: 70px;
    left: 65%;
    animation-duration: 3s;
    animation-delay: 1s;
}

.burbuja:nth-child(6){
    width: 20px;
    height: 20px;
    left: 50%;
    animation-duration: 4s;
    animation-delay: 5s;
}

.burbuja:nth-child(7){
    width: 20px;
    height: 20px;
    left: 50%;
    animation-duration: 4s;
    animation-delay: 5s;
}

.burbuja:nth-child(8){
    width: 100;
    height: 100px;
    left: 52%;
    animation-duration: 5s;
    animation-delay: 5s;
}

.burbuja:nth-child(9){
    width: 65px;
    height: 65px;
    left: 51%;
    animation-duration: 3s;
    animation-delay: 2s;
}

.burbuja:nth-child(10){
    width: 40px;
    height: 40px;
    left: 35%;
    animation-duration: 3s;
    animation-delay: 4s;
}

  
  .footer {
    width: 100%;
    background-color: #178C20;
    color: white;
    font-size: 30px;
  }


@keyframes burbujas{
    0%{
        bottom: 0;
        opacity: 0;
    }
    30%{
        transform: translateX(30px);
    }
    50%{
        opacity: .4;
    }
    100%{
        bottom: 100vh;
        opacity: 0;
    }
}

@keyframes movimiento{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(30px);
    }
    100%{
        transform: translateY(0);
    }
}

.efecto-texto{
    text-align: center;
    overflow: hidden;
    filter: contrast(150%) brightness(1500%);
    position: relative;
}
.texto{
    color: black;
    text-align: center;           
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin: 0;
    background: white;
    position: relative;
    letter-spacing: 5px;
    font-size: 30px;
    
}
.texto::before,.texto::after{
    content: attr(data-texto);            
    color: white;
    top: 0 ; 
    left: 50%;
    transform: translate(-50%, 0%);
    pointer-events: none;
    filter: blur(0.02em);  
}
.texto::after{
    mix-blend-mode: difference;
}
.gradiente,.luces{
    position: absolute;
    top: 0;   
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}
.gradiente{
    mix-blend-mode: multiply;
}
.luces{
    top: -100%;
    left: -100%;
    background: 
        radial-gradient(circle, white, transparent 25%) 0 0 / 25% 25%, 
        radial-gradient(circle, white, black 25%) 50% 50% / 12.5% 12.5%;
    mix-blend-mode: color-dodge;
    animation: animate 5s linear infinite;
}
@keyframes animate{
    100%{ transform: translate(50%, 50% );}
}

._fondo:before, ._fondo:after {
    content: '';
    position: absolute;
    left: -8px;
    top: -8px;
    background: linear-gradient(120deg, #178C20, #178C20, #FFFF,#178C20,  
    #178C20, #FFFF,#178C20, #178C20,#FFFF, #178C20);
    background-size: 300%;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    z-index: -1;
    animation: _fondogradiente 15s ease infinite; 
    border-radius: 40px
}
@keyframes  _fondogradiente {
    0% { background-position: 0% 200%; }
    50% { background-position: 200% 0%; }
    100% { background-position: 0% 330%;}
}
._fondo:after {
    filter: brightness(1.4);
    filter: drop-shadow(16px 16px 20px rgb(248, 220, 97));
    filter: blur(15px);
}




