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

.cintillo-ayuda{
    height: 138px;
}
.cintillo{
    background: black;
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
}
.cintillo img{
    width: 25px;
}


.fijo{
    position: fixed;
    top:0;
    left: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
}


.cabecera{
    background: white;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logotipo img{
    width: 100%;
}

nav a{
    text-decoration: none;
    color: black;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    float: left;
}
.menu{
    padding: 0 30px;
}
.menu:hover, .activo{
    font-weight: bold;
    color: red;
}


.efecto{
    padding: 0;
}


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

.titulo{
    text-align: center;
    font-size: 30px;
    color: #aec0d5;
    color: black;
    font-weight: 300;
    margin-bottom: 40px;
}

.item2{
    text-align: center;
}
.item2 img{
    width: 70%;
    height: auto;
    display: inline-block !important;
    margin: 0 15%;
}


.nosotros{
    position: relative;
    background: url(../images/fondo1.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 160px;
    padding-bottom: 160px;
}
.fondo-negro{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
}
.nosotros .container{
    position: relative;
    z-index: 2;
}

.seccion{
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    color: white;
}
.seccion strong{
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}
.black{
    color: black;
    font-size: 18px;
    line-height: 23px;
}

.especial{
    text-align: center;
    color: white;
    font-size: 24px;
}
.especial strong{
    width: 100%;
    font-size: 50px;
    color: rgb(255, 138, 138);
    display: inline-block;
}


.cuadros{
    padding-top: 50px;
    padding-bottom: 50px;
}


.cuadro{
    background: #f6f6f6;
    background: #ddd;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    padding: 30px 40px;
    margin-bottom: 30px;

    border-radius: 5px;
}
.cuadro strong{
    color: red;
}
.cuadro span{
    font-weight: lighter;
    color: red;
    font-size: 90px;
}


.contenido{
    padding-top: 50px;
    padding-bottom: 50px;
}


.imagen img{
    width: 100%;

    border-radius: 20px;
}


.texto{
    font-size: 18px;
}


.conoce{
    background: #f6f6f6;
    font-size: 16px;
    padding-top: 60px;
    padding-bottom: 60px;
}
.cir{
    background: red;
    width: 30px;
    height: 30px;
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;

    border-radius: 50%;
}
.conoce strong{
    width: 100%;
    display: inline-block;
    margin-bottom: 12px;
}


.uniTesti{
    background: #f6f6f6;
    font-size: 18px;
    line-height: 25px;
    padding-top:30px;
    padding-bottom:30px;
    margin-bottom: 30px;

    border-radius: 20px;
}
.uniTesti .imagen{
    padding: 0 20px 0 40px;
}


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


footer{
    background: black;
    color: white;
    font-size: 18px;
    line-height: 23px;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer strong{
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
}
footer img{
    width: 30px;
}
footer iframe{
    width: 100%;
    height: 220px;
}



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

}

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

}

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