﻿body{
    background: linear-gradient(to right, #000080, #4169E1);
    /* background: url(../images/fondo.jpg) no-repeat center center;
    background-size: cover; */
    color: white;
    font-family: "Montserrat", sans-serif;
}

.cabecera-ayuda{
    height: 110px;
}

.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #f7f7f7;
    padding-top: 3px;
    padding-bottom: 3px;

    box-shadow: 0px 0px 0px gray;
}

.logotipo img{
    width: 90%;
}

.datos{
    color: #000080;
    font-size: 19px;
    text-align: center;
}
.datos img{
    width: 30px;
}


nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 25%;
    float: left;
}
nav a{
    color: black;
    text-decoration: none;
}
.menu-r{
    display: none;
}
.menu, .menu-r{
    text-align: center;
    color: black;
    font-weight: 300;
    font-size: 17px;
    cursor: pointer;
}
.menu:hover{
    font-weight: bold;
}

.efecto{
    padding: 0;
}


.servicios{
    padding-top: 60px;
    padding-bottom: 60px;
}

.titulo{
    text-align: center;
    color: #001b93;
    color: #f7f7f7;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 30px;
}


.servicio{
    text-align: center;
}
.servicio img{
    width: 100%;
    margin: 0 0 10px 0;

    border-radius: 50%;
}
.servicio strong{
    color:#001b93;
    color: white;
    font-size: 19px;
}


.importante{
    position: relative;
    font-size: 19px;
    line-height: 25px;
    text-align: center;
}
.importante strong{
    color: #001b93;
    font-size: 22px;
}
.importante img{
    height: 90px;
}

.importante2{
    color: white;
    font-size: 27px;
}


.nosotros{
    position: relative;
    background: url(../images/fondo-nosotros.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 120px;
}

.textoNosotros{
    background: white;
    text-align: justify;
    color: #001b93;
    font-size: 19px;
    padding: 30px;

    border-radius: 20px;
}

.btn-success{
    border: 0;
    background: #05189a;

    transition: all 0.2s;
}
.btn-success:hover{
    background: #05189a;
    font-weight: bold;
}


.seccion{
    font-size: 18px;
}


.imagen{
    text-align: center;
}
.borderR img{
    width: 100%;
    border-radius: 50%;
}
.imagen img{
    width: 80%;
}


.regu{
    font-size: 20px;
    padding: 50px;
}
.regu img{
    height: 120px;
}
.regu1{
    background: linear-gradient(to right, #f8f8f8, #d3d3d3);
    color: black;
}



.testi{
    background: url(../images/fondo2.jpg) no-repeat center center;
    background-size: cover;
    color: black;
    padding-top: 50px;
    padding-bottom: 50px;
}
.testi .titulo{
    color: black;
}
.subtitulo{
    text-align: center;
    font-size: 25px;
    font-weight: lighter;
    margin-bottom: 60px;
}

.image-testi{
    width: 100%;
}
.texto-testi{
    text-align: left;
    font-size: 17px;
    line-height: 22px;
}
.texto-testi span{
    color: gray;
}

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


footer{
    border-top: 1px solid gray;
    background: #001b93;
    background: #000049;
    color: white;
    font-size: 18px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;

    box-shadow: 10px -10px 10px black;
}
footer strong{
    width: 100%;
    font-size: 23px;
    display: inline-block;
    margin-bottom: 20px;
}
footer img{
    width: 30px;
}
footer iframe{
    width: 100%;
    height: 100px;
}
footer a{
    color: white;
}

.areaFooter{
    border-right: 1px solid white;
}
.conPadding{
    padding-left: 50px;
    padding-right: 50px;
}


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

}

@media screen and (max-width:1200px){
    .cabecera{
        position: relative;
    }
    .logotipo img{
        width: 100% !important;
    }
    .cabecera-ayuda{
        display: none;
    }
}

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

}

@media screen and (max-width:768px){
    .regu{
        padding: 20px;
    }
    .menu-r{
        display: block;
    }
    nav{
        margin: 20px 0 !important;
    }
    nav ul{
        display: none;
    }
    nav ul li{
        width: 100%;
    }
    .menu{
        padding:10px 0;
    }
}

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