﻿body{
    background: url(../images/fondo.jpg) no-repeat center center fixed;
    background-size: cover;
    font-family: "Montserrat", sans-serif;
}

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


.cabecera{
    background: url(../images/fondo-verde.jpg) no-repeat center center / cover;
    text-align: center;
}

.logotipo img, .cabecera-imagen img{
    width: 100%;
}

.datos{
    color: white;
    font-size: 20px;
}
.datos a{
    color: white;
}


.menuSup{
    background: black;
    color: white;
}

nav a{
    color: white;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
nav ul li{
    width: 33%;
    float: left;
}
.menu{
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    padding: 4px 0;
}
.menu:hover{
    color: #2d926e;
}

.efecto{
    margin: 20px 0;
}


.titulo{
    text-align: center;
    color: #125d41;
    font-weight: bold;
    font-size: 30px;
    margin: 15px 0 30px;
}

.solucion{
    color: blue;
    text-align: center;
    font-weight:200;
    font-size: 22px;
    margin-bottom: 40px;
}
.solucion strong{
    width: 100%;
    font-weight: bold;
    display: inline-block;
    margin: 12px 0;
}
.solucion img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}



.nosotros{
    margin: 30px 0;
}

.imagen img{
    width: 100%;
}


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

.seccion{
    font-size: 18px;
    line-height: 23px;
}
.seccion strong{
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}

.fondoBlanco{
    background: white;
    padding: 40px;
}


footer{
    background: url(../images/fondo-verde.jpg) no-repeat center center;
    background-size: cover;
    color: white;
    font-size: 18px;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer strong{
    width: 100%;
    font-size: 20px;
    display: inline-block;
    margin-bottom: 20px;
}
footer a{
    color: white;
}


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

}

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

}

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

}

@media screen and (max-width:768px){
    nav ul li{
        width: 50%;
    }
    .menu{
        padding: 10px 0;
    }
}

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