html,
body{
	margin: 0px;
	padding: 0px;	
	background-color: #CCC;
}

body{
	background-image: url("../imagenes/background.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

form .col-md-12,
form .col-md-6,
form .col-md-4,
form .col-md-3{
	margin-bottom: 5px;
}

.btn-primary{
	background-color: #123C5D;
	border: 1px solid #123C5D;
}

.btn-close-modal{
	color: #FFF;
	padding: 0px;
	border: 0px;
	font-size: 20px;
}

.form-s {
  width: 100%;
  max-width: 400px;
}

.form-m {  
  width: 100%;
  max-width: 600px;
}

.form-l {  
  width: 100%;
  max-width: 800px;
}

.form-xl {  
  width: 100%;
  max-width: 950px;
}

.modal-header{
	color: #FFF;
	background-color: #123C5D;
	padding: 10px 15px;
}

.modal-dialog{	
	margin:auto;
}

.red-label{
	color:#FFF;
	background: #D72D2D;
	padding: 2px 10px;
}

.icon-redsocial{
	width: 25px;
	margin-right: 2px;
	cursor: pointer;
	transition: all linear 0.1s;
}

.icon-redsocial:hover{
	transform: scale(1.3);
}

#contenedor{
	position: relative;
	z-index: 1;
	width: 100%;
}

.contenedor{
	max-width: 1200px;
	margin: auto;
}

.contenedor_box{
	position: relative;
	box-shadow: 1px 1px 22px 0px rgba(0,0,0,0.53);
	-webkit-box-shadow: 1px 1px 22px 0px rgba(0,0,0,0.53);
	-moz-box-shadow: 1px 1px 22px 0px rgba(0,0,0,0.53);
	background-color: #FFF;
}

#top_bar{
	color: #FFF;
	background-color: #123C5D;
	padding: 10px;
}

#top_bar a{
	color: #FFF;
	text-decoration: none;
}

.header-fixed{
	position: fixed;
	top:0;left:0;right:0;
	width:100%;
	z-index: 2;
}

/*PARA PREVENIR UN SALTO BRUSCO AL HACER SCROLL Y CONVERTIR EL HEADER EN FIXED*/
.header-fixed + section {
  padding-top: 120px;
}

header{
	position: relative;
	z-index: 2;
	background-color: #F8F9FA;
	box-shadow: 0px 0px 10px;
}

.navbar a{
	transition: all linear 0.1s;
}

.navbar a:hover,
.navbar .active{	
	color:#123C5D !important;
	box-shadow: 0px 3px 0px #123C5D;
}

.titulos_footer{
	padding-bottom:5px;
	margin-bottom:10px;
	border-bottom:1px solid #ACD8E8;
	max-width:200px;
}

footer{
	position: relative;
 	margin-top:20px;
 	padding-top:10px;
 	padding-bottom:20px;
 	background-color:#1B1B1B;
 	color:#EEE;
}

 footer a{
 	text-decoration: none;
 	color:#EEE;
 }

footer a:hover{
	color:#EEE;
	text-decoration: underline;
}

 footer ul{
 	padding:0px;
 }

 footer li{
 	list-style: none;
 }

 #botones_footer{
 	box-shadow: 0px 0px 10px #000;
 	background-color: #FFF;
 	position: fixed;
 	z-index: 8;
 	bottom: 0px;left: 0px; right: 0px; 	
 }

 #botones_footer .col-3{
 	border-right: 1px solid #CCC;
 	height: 70px;
 	padding-top: 10px;
 	cursor: pointer;
 }

#botones_footer .col-3:hover{
	opacity: 0.8;
}

 #botones_footer i{
 	font-size: 20px;
 }

 #botones_footer a{
 	color: #000;
 	text-decoration: none;
 }

@media screen and (min-width: 0px){
	.img-pc{
		display: none;
	}
	.img-movile{
		display: block;
	}
	.modal-dialog{	
		margin:auto;
		margin-top: 10px;
	}
	 #botones_footer{
	 	display: block;
	 }
	 footer{
	 	padding-bottom: 100px;
	 }
}

@media screen and (min-width: 800px){
	.img-pc{
		display: block;
	}
	.img-movile{
		display: none;
	}
	.modal-dialog{	
		margin:auto;
		margin-top: 20px;
	}
	 #botones_footer{
	 	display: none;
	 }
	 footer{
	 	padding-bottom: 10px;
	 }
}