.appwhatsapp {
	position: fixed;
	right: 15px;
	bottom: 26px;
	width: 100px;
	/*<!-- z-index hace que se superponga a cualquier cosa> </!-->*/
	z-index: 1000;
}

.appwhatsapp img{
	width: 100%;
	height: 100%;
}

/* propiedades de las columnas */
.flex{
	display: flex;
	flex-wrap: wrap;
}
.columna{
    background: #255.255.255;
    /*color:#f8f3d4;*/
    color:#265E83;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 10px;   
    margin: 0 auto;
    box-shadow: 10px 10px 5px #888;
    width:23%;
    box-sizing: border-box;
}

.flex-caption p{
	font-family: 'Open Sans', sans-serif;
	position: absolute;
	top: 50%;
	text-align: center;
	width: 100%;
	font-size: 45px;
	color: #fff;
	font-weight: bold;
}



/* tipo de letra del menu */
body {
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	color:#265E83;
}

header {
	width: 100%;
	background: #265E83;
	font-family: 'Open Sans', sans-serif;
}

/* desaparece el checkbox*/
#btn-menu {
	display: none;
}

/* estilo del boton "menu" */
header label {
	/* asi se ve el boton -- con "none" no se ve
	display: block;
	*/
	display: none;
	width: 30px;
	height: 30px;
	padding: 10px;
	border-right: 1px solid #fff;
}

/*cuando pasa el mouse por arriba se hace manito*/
header label:hover {
	cursor: pointer;
	background: rgba(0,0,0,0.3);
}

.menu ul{
	margin: 0;
	list-style: none;
	padding: 0;
	/* flex hace que li de adentro sea flexible y por defecto en una fila*/
	display: flex;
	/* pone el menu de der a izq 
	justify-content: flex-end; */
	flex-direction: row;
}

.menu li:hover{
	background: rgba(0,0,0,0.3);
}

.menu li {
	/*ocupa todo el ancho de la pantalla - no me gusta
	flex-grow: 1; */
	border-right: 1px solid #fff;
}

.menu li a {
	display: block;
	padding: 15px 20px;
	color: #fff;
	text-decoration: none;
}


/* a partir 768px hacia abajo, cambia de acuerdo a lo que se indica*/
@media(max-width: 768px){

	header label{
		display: block;
	}

	.menu{
		position: absolute;
		background: #265E83;
		width: 40%;
		margin-left: -40%;
		transition: all 0.5s;
	}

	.menu ul{
		flex-direction: column;
	}

	.menu li{
		border-top: 1px solid #fff;
	}

	/* cuando hace click en icono menu, va a buscar la clase menu */
	#btn-menu:checked ~ .menu{
		margin: 0;
	}

}


}

/* PROPIEDADES PARA EL FOOTER */

footer{
  position: relative;
  bottom: 0px;
  width: 100%;
  background: #265E83;
  margin: 0;
  padding: 0;
  color: #d9d9d9;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

.main-content{
  display: flex;
  background: #265E83;
  color: #fff;
}
.main-content .box{
  flex-basis: 50%;
  padding: 10px 20px;
}
.box h2{
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
}
.box .content{
  margin: 20px 0 0 0;
  position: relative;
  color: #fff;
}
.box .content:before{
  position: absolute;
  content: '';
  top: -10px;
  height: 2px;
  width: 100%;
  background: #1a1a1a;
}
.box .content:after{
  position: absolute;
  content: '';
  height: 2px;
  width: 15%;
  background: #fff;
  top: -10px;
}
.left .content p{
  text-align: justify;
}
.left .content .social{
  margin: 20px 0 0 0;
  color: #fff;
  text-decoration: none;

}
.left .content .social a{
  padding: 0 2px;
  color: #fff;
  text-decoration: none;
}
.left .content .social a span{
  height: 40px;
  width: 40px;
  background: #1a1a1a;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.3s;
}
.left .content .social a span:hover{
  background: #20abf1;
  color: #999;
  text-decoration: none;

}
.center .content .fas{
  font-size: 1.4375rem;
  background: #1a1a1a;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
.center .content .fas:hover{
  background: #20abf1;
  color: #fff;
  text-decoration: none;
  
}
.center .content .text{
  font-size: 1.0625rem;
  font-weight: 500;
  padding-left: 10px;
}

.center .content .phone{
  margin: 15px 0;
}
.right form .text{
  font-size: 1.0625rem;
  margin-bottom: 2px;
  color: #fff;
  padding-left: 10px;
}
.right form .msg{
  margin-top: 10px;
  padding-left: 10px;
}
.right form input, .right form .msgForm{
  width: 50%;
  font-size: 1.0625rem;
  background: #151515;
  padding-left: 10px;
  border: 1px solid #222222;
  color: #fff;
}
.right form input:focus,
.right form .msgForm:focus{
  outline-color: #3498db;
}
.right form input{
  height: 35px;
}
.right form .btn{
  margin-top: 10px;
}
.right form .btn button{
  height: 40px;
  width: 51%;
  border: none;
  outline: none;
  background: #20abf1;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 500;
  cursor: pointer;
  transition: .3s;
  text-decoration: none;
}
.right form .btn button:hover{
  background: #000;
}
.bottom center{
  padding: 5px;
  font-size: 0.9375rem;
  background: #151515;
}
.bottom center span{
  color: #656565;
}
.bottom center a{
  color: #999;
  text-decoration: none;
}
.bottom center a:hover{
  text-decoration: underline;
}
/*@media screen and (max-width: 900px) {
  footer{
    position: relative;
    bottom: 0px;
  }
  .main-content{
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-content .box{
    margin: 5px 0;
  }
}
*/

/* FIN PROPIEDADES PARA EL FOOTER */



/* cambia las columnas de acuerdo a lo que se indica*/
@media (max-width: 3000px){
  .columna{
    width: 23%;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  footer{
    position: relative;
    bottom: 0px;
  }
  .main-content{
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-content .box{
    margin: 5px 0;
  }
}

@media (max-width: 1070px){
  .columna{
    width: 30%;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

@media (max-width: 600px){
  .columna{
    width: 45%;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

@media (max-width: 300px){
  .columna{
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}