﻿body{
	font-family: 'Raleway', sans-serif !important;
}


.blanco{
	border-bottom: 2px solid gray !important;
	background: rgba(256, 256, 256, 1) !important;
}
.blanco .logotipo strong{
	font-size: 23px;
}
.blanco .logotipo img{
	height: 70px;
}
.blanco nav{
	margin: 10px 0 0 0;
}
.blanco .llamanos{
	margin: 2px 0 0 0;
}

.cabecera-ayuda{
	position: relative;
	border: 0px solid red;
	width: 100%;
	height: 140px;
}
.cabecera{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	border: 0px solid blue;
	background: rgba(256, 256, 256, 0.8);
	padding: 10px 0;
}

.logotipo{
	border: 0px solid red;
}

.logotipo strong{
	border: 0px solid blue;
	font-size: 28px;
	color: #ea4a3b;
	display: inline-block;

	transition: all 0.5s;
}

.logotipo img{
	border: 0px solid blue;
	height: 120px;
	display: inline-block;

	transition: all 0.5s;
}

nav{
	margin: 40px 0 0 0;

	transition: all 0.5s;
}

nav ul{
	list-style: none;
	padding: 0;
}

nav ul li{
	width: 48%;
	float: left;
	margin: 0 0 0 2%;
}

.menu{
	background: #f7f7f7;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}


.llamanos{
	background: blue;
	text-align: center;
	font-size: 22px;
	color: white;
	padding: 10px 0;
	margin: 15px 0 0 0;

	border-radius: 5px;

	transition: all 0.5s;
}


.efecto{
	padding: 0;
}

.efecto2{
	background: url(../images/fondo-efecto.jpg) no-repeat center center;
	background-size: cover;
	height: 200px;
}


.cuadros{
	padding-top: 50px;
	padding-bottom: 50px;
}
.cuadros a, .cuadros a:hover{
	text-decoration: none;
}

.titulo{
	width: 100%;
	text-align: center;
	font-size: 39px;
	font-weight: bold;
	color: blue;
	margin: 0 0 40px 0;
}
.subtitulo{
	text-align: center;
	font-size: 30px;
	color: black;
	font-weight: bold;
	margin: 0 0 30px 0;
}

.cuadro{
	width: 100%;
	margin-bottom: 30px;
}

.imagen-cuadro{
	width: 100%;
	height: 350px;
	text-align: center;
	overflow:hidden;
}

.imagen-cuadro img{
	width: auto;
	height: 100%;
}

.titulo-cuadro{
	width: 100%;
	text-align: center;
	color: white;
	font-size: 22px;
	padding:10px 5px;
	display: inline-block;
}

.color1{background-color: #00bed5;}
.color2{background-color: #44cef4;}
.color3{background-color: #2a62ac;}
.color4{background-color: #4341a0;}
.color5{background-color: #5d2e93;}
.color6{background-color: #3f225e;}
.color7{background-color: #cb1f6e;}
.color8{background-color: #3f3f3f;}


footer{
	position: relative;
	background: url(../images/fondo-footer.jpg) no-repeat center center;
	background-size: cover;
	font-size: 22px;
	line-height: 32px;
	padding-top: 40px;
	padding-bottom: 40px;
}
.fondo-blanco{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba(256, 256, 256, 0.8);
	width: 100%;
	height: 100%;
}

footer .row{
	position: relative;
	z-index: 2;
}

footer img{
	width: 35px;
}

footer strong{
	width: 100%;
	font-size: 23px;
	display: inline-block;
	margin: 0 0 30px 0;
}

.seccion-footer{
	position: relative;
}
.mono{
	position: absolute;
	top: 0;
	width: 150px;
}
.mono1{
	left: -200px;
}
.mono2{
	right: -200px;
}


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


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