﻿body{
    font-family: "Dosis", sans-serif;
}


.cabecera-ayuda{
    height: 186px;
}

.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #E72A89;
    padding-top: 7px;
    padding-bottom: 7px;
}
.cabecera a{
    color: white;
    text-decoration: none;
}


.logotipo img{
    width: 60%;
}

.leyenda{
    text-align: center;
    font-size: 27px;
    color: white;
}


.datos{
    text-align: right;
    color: white;
    font-size: 29px;
}
.datos strong{
    text-shadow: 2px 2px 2px black;
}
.datos img{
    width: 30px;
}


nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 20%;
    float: left;
}
.menu-r{
    display: none;
}
.menu, .menu-r{
    text-align: center;
    font-size: 20px;
    padding: 12px 0;
    cursor: pointer;
}
.menu:hover, .menu-r:hover{
    background: #f7f7f7;
    font-weight: bold;
}


.efecto{
    padding: 0;
}


.contenido{
    margin: 30px 0;
}


.seccion{
    font-size: 20px;
    line-height: 30px;
    padding: 60px 45px;
}
.seccion strong{
    width: 100%;
    font-size: 24px;
    color: #E72A89;
    display: inline-block;
    margin-bottom: 20px;
}

.img1{
    background: url(../images/1.jpeg) no-repeat center center;
    background-size: cover;

    border-radius: 100px 0 0 20px;
}
.img2{
    background: url(../images/2.jpg) no-repeat center center;
    background-size: cover;

    border-radius: 100px 0 0 20px;
}


.contenido2{
    background: #f7f7f7;
    padding-top: 30px;
    padding-bottom: 30px;
}


.titulo{
    text-align: center;
    font-weight: bold;
    font-size: 33px;
    color: black;
    margin-bottom: 40px;
}


.p{
    text-align: center;
    margin-bottom: 30px;
}
.p img{
    width: 100%;
    height: 370px !important;
    object-fit: cover;
}
.p{
    font-size: 21px;
}


.form-group{
    margin-bottom: 20px;
}



footer{
    position: relative;
    background: url(../images/fondo-footer.jpg) no-repeat center center;
    background-size: cover;
    font-size: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.fondo-blanco{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(255,255,255,0.9);
    width: 100%;
    height: 100%;
}
footer .container{
    position: relative;
    z-index: 2;
}
footer strong{
    width: 100%;
    color: #E72A89;
    font-size: 23px;
    display: inline-block;
    margin-bottom: 20px;
}
footer img{
    width: 30px;
}


@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){
    .cabecera-ayuda{
        display: none;
    }
    .cabecera{
        position: relative;
    }
}

@media screen and (max-width:992px){
    .datos{
        text-align: center;
    }
}

@media screen and (max-width:768px){
    .menu-r{
        display: block;
    }
    nav ul{
        display: none;
    }
    nav ul li{
        width: 100%;
    }
    .img{
        height: 250px;
    }
}

@media screen and (max-width:576px){
    
}


.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: bold;
    font-size: 20px;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;

    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-iteration-count: 100;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }
}
.pulse {animation-name: pulse}