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


.cabecera-ayuda{
    height: 110px;
}
.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #2094a6;
    color: white;
    font-size: 19px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.logotipo{
    font-size: 50px;
    font-weight: bold;
}

.datos{
    text-align: center;
}
.datos img{
    width: 30px;
}


.texto{
    background: #e3e3e3;
    font-size: 20px;
    padding: 40px;
}


.galeria{
    padding-top: 30px;
    padding-bottom: 30px;
}


.imagen{
    border-right: 6px solid white;
    margin-bottom: 20px;
    padding: 0;
}
.imagen img{
    width: 100%;
    height: 200px;

    object-fit: cover;
}


.leyenda{
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
}
.leyenda strong{
    width: 100%;
    font-size: 33px;
    font-weight: bold;
    display: inline-block;
}
.leyenda span{
    font-size: 20px;
}

.fondo1{
    background: #2094a6;
    color: white;
}


footer{
    background: #e3e3e3;
    font-size: 18px;
    padding-top: 40px;
    padding-bottom: 40px;
}
footer img{
    height: 30px;
}
footer strong{
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 30px;
}
footer b{
    color: #0da0c8;
    font-size: 38px;
    line-height: 44px;
}


@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){

}

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

}

@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
}
