/*======= Google fonts =======*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*======= Main Css =======*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    text-decoration: none;
}

body{
    background: rgb(255, 255, 255);
}


:root{
   
    --transition: all 400ms ease;
}
/*======= Header navigation bar =======*/
header{
    z-index: 999;
    position: fixed;
    width: 100%;
}

header .nav-bar{
    position: relative;
    background: rgba(243, 240, 240, 0.455);
    backdrop-filter: blur(20px);
    height: 4em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 150px;
    transition: 0.5s ease;
}

.nav-bar .logo{
    color: #fff;
    font-size: 1.8em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

.navigation .nav-items a{
    color: #000;
    font-size: 1em;
    text-decoration: none;
}

.navigation .nav-items a:not(:last-child){
    margin-right: 50px;
}

.navigation .nav-items a i{
    display: none;
}




/*======= Scroll bar =======*/
::-webkit-scrollbar{
    background: #fff;
    width: 11px;
    border-radius: 2em;
}

::-webkit-scrollbar-thumb{
    background: #282f4e;
    width: 100%;
    border-radius: 2em;
}

::-webkit-scrollbar-thumb:hover{
    background: #454f6d;
}

/*======= Scroll indicator bar =======*/
.scroll-indicator-container{
    width: 100%;
    height: 5px;
}

.scroll-indicator-bar{
    background: #199fff;
    width: 0%;
    height: 100%;
    box-shadow: 0 5px 25px #199fff,
                0 5px 50px #199fff;
}

.nav-close-btn, .nav-menu-btn{
    display: none;
}

/*Section home*/
section{
    padding: 100px 200px;
}
.home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #2696E9;
    
}
.home:before{
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(3, 96 , 251, 0.3);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home .content{
    z-index: 888;
    color: #fff;
    width: 70%;
    margin-top: 50px;
    display: none;
}
.home .content.active{
    display: block;
    
}

.home .content h1{
    font-size: 2em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 35px;
    margin-bottom: 40px;
}
.home .content h1 span{
    font-size: 1em;
    font-weight: 600;
}
.home .content p{
    margin-bottom: 65px;
}
.home .content a{
    background: #fff;
    padding: 15px 35px;
    color: #1680ac;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
}

.home .media-icons{
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
}
.home .media-icons a{
    color: #fff;
    font-size: 1.6em;
    transition: 00.3s ease;
}
.home .media-icons a:not(:last-child){
    margin-bottom: 20px;
}
.home .media-icons a:hover{
    transform: scale(1.3);
}
.home video{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home img{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*Section Home Productos*/
.home_produc{
    padding: 70px 17%;
    width: 100%;
    min-height: 90vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    align-items: center;
    background-color: #eeeeee;
}
.titulo-producto{
    text-align: center;
}
.home_img img{
    max-width: 100%;
    width: 500px;
    height: auto;
}
.home_titulo_producto{
    width: 400px;
}
.home_text{
    text-align: center;
}

.home_text h2{
    text-align: center;
    font-size: 2.25rem;
    margin: 1rem 0 2rem;
}
@media(max-width: 1560px){
    .home_text h1{
        font-size: 3.5rem;
    }
    .home_text h2{
        font-size: 2rem;
    }
}

@media(max-width: 1140px){
    .home_produc{
        padding:50px 8%;
    }
}
@media(max-width: 720px){
    .home_produc{
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 7%;
    }
}
@media(max-width: 320px){
    .home_text h1{
        font-size: 2.5rem;
    }
    .home_text h2{
        font-size: 1rem;
    }
}

.slider-navigation{
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
}
.slider-navigation .nav-btn{
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}
.slider-navigation .nav-btn.active{
    background: #2696E9;
}

.slider-navigation .nav-btn:not(:last-child){
    margin-right: 20px;
}
.slider-navigation .nav-btn:hover{
    transform: scale(1.2);
}

.video-slide{
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}
.video-slide.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
}

/*======= Media queries (max-width: 1100px) =======*/
@media screen and (max-width: 1100px){
    header .nav-bar{
        padding: 0 50px;
    }

    section{
        padding: 5px 20px;
    }
    .home .media-icons{
        right: 15px;
        display: flex;
        flex-direction: column;
        transition: 0.5s ease;
    }
}
/*======= PRODUCTOS =======*/
#producto1{
    text-align: center;
}
.section_p1{
    padding: 23px 200px;
}
#producto1 .pro_container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}
#producto1 .pro{
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2 ease;
}
#producto1 .pro:hover{
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}
#producto1 .pro img{
    width: 100%;
    border-radius: 20px;
}
#producto1 .pro .des{
    text-align: center;
    padding: 10px 0;
}
#producto1 .pro .des h5{
    text-align: center;
    color: #1a1a1a;
    font-size: 14px;
}
@media screen and (max-width: 1180px){
    .section_p1{
        padding: 23px 110px;
    }
}
/*======= Media queries (max-width: 850px) =======*/
@media screen and (max-width: 850px) {
    header .nav-bar {
        padding: 0 20px;
    }
    #producto1 .pro_container{
        justify-content: center;
    }
    #producto1 .pro{
        margin: 15px;
    }
   

    /*======= Navigation menu =======*/
    .nav-menu-btn{
        display: block;
        color: #000;
        font-size: 1.5em;
        cursor: pointer;
    }

    .navigation{
        z-index: 99999;
        position: fixed;
        background: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s ease;
    }

    .navigation.active{
        visibility: visible;
        opacity: 1;
    }

    .navigation .nav-items{
        position: relative;
        background: #fff;
        width: 400px;
        max-width: 400px;
        display: grid;
        place-content: center;
        margin: 20px;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.8);
        transform: translateY(-200px);
        transition: 0.3s ease;
    }

    .navigation.active .nav-items{
        transform: translateY(0);
    }

    .navigation .nav-items a{
        color: #222;
        font-size: 1em;
        margin: 15px 50px;
    }

    .navigation .nav-items a i{
        display: inline-block;
        font-size: 1.2em;
        margin-right: 5px;
    }

    .nav-close-btn{
        display: block;
        color: #222;
        position: absolute;
        top: 0;
        right: 0;
        font-size: 1.3em;
        margin: 10px;
        cursor: pointer;
    }
}

/*======= COURSER =======*/
.courses{
    margin-top: 1rem;
    color: #fff;
}
.courses h2{
    text-align: center;
    margin-bottom: 4rem;
}
.courses_container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.course{
    background: #2e3267;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

.course:hover{
    background: transparent;
    border-color: #6c63ff;
}
.course_info{
    padding: 2rem;
}
.course_info p{
    margin: 1.2rem 0 2rem;
}
.course_info a{
    color: #fff;
}
.course_image img{
    width: 100%;
    display: block;
    object-fit: cover;
}
.course_info .btn{
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border: 1px solid transparent;
    font-weight: 500;
    transition: var(--transition);
}
.course_info .btn:hover{
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.course_info .btn-primary{
    background: #f75842;
    color: #fff;
}

/*MEDIA QUERIES COUSE RESPONSIVE*/

@media screen and (max-width: 1024px){
    .container{
        width: 100%;
    }
    .courses h2{
        font-size: 2.2rem;
    }
    .courses_container{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 850px){
    .courses_container{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 600px){
    .courses_container{
        grid-template-columns: repeat(1, 1fr);
    }
    

}
@media screen and (max-width: 700px){
    
    .section_p1{
        padding: 23px ;
    }

}
/*PRODUCTOS*/
.container-product{

  width: 100%;
  height: 100%;
 
}
.decoration{
    text-decoration: none;
}
.container-product ul{
    display: flex;
    justify-content: space-between;
    
    
}
.container-product ul li{
    list-style: none;
    display: flex;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
   
    
}
.container-product ul li img{
    width: 200px;
    margin-bottom: -30px;
}

.circulo p{
    font-size: 13px;
    margin: 0px 20px;
}
.linea{
    display: inline-block;
    position: relative;
    
}
.linea::after,.linea::before{
    content: '';
    position: absolute;
    width: 120px;
    height: 3px;
    background-color: #000;
    top: 0.1em;
    margin-left: 14px;
}
@media screen and (max-width: 1700px) {
    .container-product ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
   
}
.container-product ul li{
    justify-content: center;
}
}
@media screen and (max-width: 550px){
    .container-product ul{
        justify-content: center;
    }
  
}

/*Maps*/
.map_peru{
    text-align: center;
}
.map_peru h3{
    color: #000;
    text-align: center;
    margin-bottom: 2rem;
}
.map_peru img{
    justify-content: center;
    align-items: center;
    width: 600px;
}
/*MEDIA QUERIES MAP RESPONSIVE*/
@media screen and (max-width: 650px){
    .map_peru img{
        width: 80%;
    }
}

/*===SLIDER PARNETS===*/

.slider{
    width: 100%;
    height: auto;
    margin: auto;
    overflow: hidden;
}
.titulo h2{
   text-align: center;
   color: #fff;
}
.slider .slide-track{
    display: flex;
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 40s linear infinite;
    width: calc(200px * 16);
   
}
.slider .slide{
    width: 300px;
    padding-right: 20px;
}
.slider .slide img{
    width: 80%;
    height: 100px;
    padding-right: 20px;
}
@keyframes scroll {
    0%{
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100%{
        -webkit-transform: translateX(calc(-200px*8));
        transform: translateX(calc(-200px*8));

    }
}
/*========NOSOTROS===============*/
.about{
    width: 100%;
    padding: 78px 0px;
    background-color: rgba(3, 96 , 251, 0.3);
}
.about .main img{
    height: 100%;
    width: 320px;
}
.about-text{
    width: 550px;
}
.main{
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.about-text h1{
    color: black;
    font-size: 80px;
    text-transform: capitalize;
   
   
}

.about-text h5{
    color: #000;
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 2px;
   
}
.about-text p{
    padding-bottom: 20px;
}
.button{
    background: #082d3d;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 20px;
    border-radius: 30px;
    transition: .4s;
}
.button:hover{
    background: transparent;
    border: 2px solid #082d3d;
    cursor: pointer;
    color: #000;
}

.mision{
    width: 100%;
    padding: 78px 0px;
    background-color: #ffffff;
}
.mision .main img{
    height: 100%;
    width: 320px;
}
.mision-text{
    width: 450px;
   
}
.main{
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.mision-text h1{
    color: black;
    font-size: 50px;
    text-transform: capitalize;
   
   
}

.mision-text h5{
    color: #000;
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 2px;
   
}
.mision-text p{
    padding-bottom: 20px;
}
/*Servicio*/
.servicio{
    width: 100%;
    padding: 78px 0px;
    background-color: #ffffff;
}
.servicio .main img{
    height: 100%;
    width: 320px;
}
.servicio-text{
    width: 450px;
   
}
.main_derecha{
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.servicio-text h1{
    color: black;
    font-size: 30px;
    text-transform: capitalize;
   
   
}

.servicio-text h5{
    color: #000;
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 2px;
   
}


.servicio-text h5{
    color: #000;
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 2px;
   
}

/*Servicio*/
.servicio_derecha{
    width: 100%;
    padding: 78px 0px;
    background-color: #ffffff;
}
.servicio_derecha .main_derecha img{
    height: 100%;
    width: 320px;
}
.servicio-text{
    width: 450px;
   
}
.servicio-text h1{
    color: black;
    font-size: 30px;
    text-transform: capitalize;
   
   
}

.servicio-text h5{
    color: #000;
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 2px;
   
}


.servicio-text h5{
    color: #000;
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 2px;
   
}

.vision{
    width: 100%;
    padding: 78px 0px;
    background-color: #ffffff;
}
.vision .main img{
    height: 100%;
    width: 300px;
}
.vision .main_vision img{
    height: 100%;
    width: 300px;
}
.vision-text{
    width: 348px;
   
}
.main{
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.main_vision{
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.vision-text h1{
    color: black;
    font-size: 50px;
    text-transform: capitalize;
   
   
}

.vision-text h5{
    color: #000;
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 2px;
   
}
.vision-text p{
    padding-bottom: 0px;
}

.valores{
    margin-top: 1em;
}

.valores-container{
    width: 80%;
    margin: auto;
}

.valores_title{
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 2rem;
}
.valores_text_container {
text-align: center;
}
.valores_text_container .valores-titulo{
    width:300px;
}
.valores_desc{
    font-size: 1.12em;
    line-height: 1.187rem;
    text-align: center;
    margin-top: 1.6rem;
}
.valores_line{
    width: 3.5em;
    border: 2px solid #000;
    margin: auto;
}
.valores_list_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 5em;
}
.valores_list{
    width: 21.5em;
    height: 22em;
}
.valores_list_img{
    height: 90px;
    margin-top: 1.3em;
}

.valores_list_title{
    font-size: 1.5em;
    line-height: 3.5em;
}
.valores_list_desc{
    font-size: 1em;
    line-height: 1.75rem;
}

@media screen and (max-width: 700px){
    .main{
        flex-wrap: wrap;
        justify-content:space-around;
        text-align: center;
        
    }
    .main_derecha{
        
        justify-content:space-around;
        flex-direction: column-reverse;
        text-align: center;
        
    }
    .main_vision{
        flex-wrap: wrap;
        justify-content:space-around;
        flex-direction: column-reverse;
    }
    .vision .main img{
        width: 200px;
    }
    .vision .main_vision img{
        width: 200px;
    }
  
    .titulo-servicio img {
        width: 300px;
    }
    .about-text h1{
        color: black;
        font-size: 40px;
        text-transform: capitalize;       
    }
    
    .about-text h5{
        color: #000;
        font-size: 18px;
        text-transform: capitalize;
        letter-spacing: 2px;
       
    }
    .about-text p{
        font-size: 15px;
        padding-bottom: 20px;
    }
    .servicio .main img{
        height: 100%;
        width: 120px;
    }
    .servicio_derecha .main_derecha img{
        height: 100%;
        width: 120px;
    }
    .servicio-text h1{
        color: black;
        font-size: 20px;
        text-transform: capitalize;
    }
}
.titulo-servicio{
    text-align: center;
}
/*========Contactanos===============*/
.contenedore-contactanos{
    width: 90%;
    max-width: 1000px;
    background: #fff;
    
    margin: 20px auto;
    text-align: center;
   
}
.contenedore-contactanos .imagen_contacto{
    width:400px;
  
}

.contenido-contacto{
    display: flex;
    width: 100%;
    overflow: hidden;
}
.contenido-contacto .info-contacto,
.contenido-contacto .formulario-contacto{
    width: 50%;
}

.info-contacto{
    padding-left: 30px;
}
.info-contacto .col{
    width: 100%;
    display: flex;
    margin-bottom: 15px;
    font-size: 20px;
    align-items: center;
    flex-wrap: nowrap;
}
.info-contacto .col .icono{
    color: #282f4e;
    margin-right: 15px;
}
.info-contacto p{
    color: #999;
}
.info-contacto .redes-s{
    width: 100%;
    overflow: hidden;
    padding-left: 25px;
    display: flex;
    flex-wrap:  wrap;
}
.info-contacto .redes-s a{
    display: flex;
    width: 40px;
    height: 40px;
    background:#282f4e;
    color: #fff;
    margin: 5px 5px 10px 5px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 50%;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, .4);
}
.info-contacto .redes-s a:hover{
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
}

.formulario-contacto{
    padding-left: 10px;
}
.formulario-contacto input[type='text'],
.formulario-contacto textarea{
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 20px;
    border: 1px solid #999;
    color: #999;
    font-weight: 400;
    outline: 0;   
}
.formulario-contacto textarea{
    max-width: 100%;
    min-width: 100%;
    min-height: 150px;
    max-height: 200px;
}
.formulario-contacto input[type='text']:focus,
.formulario-contacto textarea:focus{
    border: 1px solid #282f4e;
}
.formulario-contacto button{
    padding: 12px 30px;
    border: transparent;
    background: #282f4e;
    color: #fff;
    cursor: pointer;
    float: right;
}
/*========FOOTER===============*/
.footer{
    position: relative;
    bottom: 0px;
    width: 100%;
    background: #282f4e;
}
.main-content{
    display: flex;
}
.main-content .box{
    flex-basis: 50%;
    padding: 10px 20px;
}
.box h2{
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
}
.box .content{
    margin: 20px 0 0 0;
}
.box .content::before{
    position: relative;
    content: '';
    top: -10px;
    height: 2px;
    width: 100%;
    background: #1a1a1a;
}
.box .content::after{
    position: relative;
    content: '';
    height: 2px;
    width: 15%;
    background: #f12020;
    top: -10px;
}
.content .social .uil{
    color: #fff;
}
.left .content p{
    text-align: justify;
}
.left .content .social{
    margin: 20px 0 0 0;
}
.left .content .social a{
    padding: 0 2px;
}
.left .content .social a span{
    height: 40px;
    width: 40px;
    background: #1a1a1a;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}
.left .content .social a span:hover{
     background: #f12020;
}
.center .content .uil{
    font-size: 1.4375rem;
    color: #fff;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
}
.center .content .text{
    font-size: 1.0624rem;
    font-weight: 500;
    padding-left: 10px;
}
.center .content .phone{
    margin: 15px 0;
}
.right form .text{
    font-size: 1.0625rem;
    margin-bottom: 2px;
    color: #fff;
}
.right form .msg{
    margin-top: 10px;
}
.right form input, .right form textarea{
    width: 100%;
    font-size: 1.0625rem;
    background: #eeeeee;
    padding-left: 10px;
    border: 1px solid #222222;
}
.right form input:focus,
.right form textarea:focus{
    outline-color: #3498db;
}
.right form input{
    height: 35px;
}
.right form .btn{
    margin-top: 10px;
}
.right form .btn button{
    height: 40px;
    width: 100%;
    border: 1px solid transparent;
    outline: none;
    background: #fff;
    font-size: 1.0625rem;
    font-weight: 500;
    cursor:pointer;
    transition: .3s;
    color: #1680ac;
    
    
}
.right form .btn button:hover{
   background-color: transparent;
   border-color: #082d3d;
}
.bottom center{
    padding: 5px;
    font-size: 0.9375rem;
    background: #151515;
}
.bottom center span{
    color: #656565;
}
.bottom center a{
    color: #f12020;
    text-decoration: none;
}
.bottom center a:hover{
    text-decoration: underline;
}
@media screen and (max-width: 700px){
    .main-content{
        flex-direction: column;
    }
    .main-content .box h2{
        text-align: center;
    }
    .box .content p{
        text-align: center  ;
    }
    .box .content .social{
        text-align: center  ;
    }
    .box .content .place{
        text-align: center;
    }
    .box .content .phone{
        text-align: center;
    }
    .box .content .email{
        text-align: center;
    }

}
    

/*WSP*/
#whatsapp .wtsapp{
    position: fixed;
    transform: all .5s ease;
    background-color: #25d366;
    display: block;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    border-radius: 50px;
    border-right: none;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    bottom: 70px;
    border: 0;
    z-index: 9999;
    width: 50px;
    height: 50px;
    line-height: 50px;
    
}

#whatsapp .wtsapp:before{
    
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    -webkit-animation:pulse-border 1500ms ease-out infinite;
    animation:pulse-border 1500ms ease-out infinite;
}
#whatsapp .wtsapp:focus{
    
    border: none;
    outline: none;
}
.wsp{
    padding-left: 10px;
}

@keyframes pulse-border{
    0%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity: 1;}
    100%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5); opacity: 0;}
    
}