@import url('https://fonts.googleapis.com/css2?family=Abel&family=Roboto:wght@100&display=swap');
@import url(menu.css);
@import url(banner.css);
@import url(blog.css);
@import url(info.css);
@import url(catalogo.css);
@import url(contacto.css);
@import url(contactanoselka.css);

/** {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Abel', sans-serif !important;
}

/*body {
	font-family: 'Abel', sans-serif !important;
}*/

header {
	width: 100%;
	height: 50px;
	background: #4FAEE0;
	color: #FFFFFF;

	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

.contenedor {
	width: 98%;
	margin: auto;
}

h1 {
	float: left;
/*	font-size: 16px;
	padding-top: 0px;
	transform: translateY(-10px);*/
}

header .contenedor {
	display: table;
}

.contenedor a {
	text-decoration: none;
	color: #FFFFFF;
}

section {
	width: 100%;
	margin-bottom: 10px;
}

#bienvenidos {
/*	margin-top: -80px;*/
	text-align: center;
/*	transform: translateY(-100px);*/
}

#bienvenidos p {
	margin-left: 15px;
	width: 92%;
	text-align: justify;
}

#info2 p {
	margin-left: 15px;
	width: 92%;
	text-align: justify;
}

.copy {
	font-size: 20px;
}

.sociales {
	width: 100%;
	text-align: center;
	font-size: 28px;
}

.sociales a {
	color: #333;
	text-decoration: none;
}

.btn-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 15px;
}
.btn-circle.btn-lg {
  width: 35px;
  height: 35px;
  padding: 8px;
  font-size: 14px;
  line-height: 1.33;
  border-radius: 15px;
}
.btn-circle.btn-xl {
  width: 70px;
  height: 35px;
  padding: 8px;
  font-size: 14px;
  line-height: 1.33;
  border-radius: 15px;
}

/* footer */

footer {
	background: #000;
	padding: 30px 0 30px 0;
	margin: auto;
	overflow: hidden;
}

.contenedor-footer{
	display: flex;
	width: 90%;
	justify-content: space-evenly;
	margin: auto;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
}

.content-foo{
	text-align: center;
}

.content-foo h4{
	color: #fff;
	border-bottom: 3px solid #4FAEE0;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.content-foo p{
	color: #ccc;
}

.titulo-final{
	text-align: center;
	font-size: 24px;
	margin: 10px 0 0 0;
	color: #9e9797;
}

.estatusOutLineRojo {
	cursor: pointer;
	text-align: center;
  border-radius: 5px;
  border: 1.5px solid ;
  border-color: rgb(79,174,224);
  /*padding: 5px 10px 5px 10px; */
  background-color: #fff !important;
  color: rgb(79,174,224) !important;
  font-weight: 550;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  /*width: 90% !important;
  height: 150px;*/
} 

.estatusOutLineAmarillo {
	cursor: pointer;
	text-align: center;
  border-radius: 5px;
  border: 1.5px solid ;
  border-color: rgb(238,162,54);
  /*padding: 5px 10px 5px 10px; */
  background-color: #fff !important;
  color: rgb(238,162,54) !important;
  font-weight: 550;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  /*width: 90% !important;
  height: 150px;*/
} 

@media (min-width:768px) {
	.sociales {
		width: auto;
	}

	#bienvenidos {
		margin-top: -50px;
	}

}

@media screen and (max-width: 500px){

	.contenedor-footer{
		flex-direction: column;
		border: none;
	}

	.contenedor-foo{
		margin-bottom: 20px;
		text-align: center;
	}

	.contenedor-foo h4{
		border: none;
	}

	.contenedor-foo p{
		color: #ccc;
		border-bottom: 1px solid #f2f2f2;
		padding-bottom: 20px;
	}

	.titulo-final{
		font-size: 20px;
	}

}


@media (min-width:1024px) {
	.contenedor {
		width: 1000px;
	}

	#bienvenidos {
		margin-top: -70px;
	}

	#bienvenidos p {
		width: 1000px;
		margin-left: 50%;
  		transform: translate(-50%);
		text-align: justify;
	}

	#catalogo .contenedor {
		width: 70%;
		margin-left: 50%;
  		transform: translate(-50%);
	}

	#info2 p {
		width: 1000px;
		margin-left: 50%;
  		transform: translate(-50%);
		text-align: justify;
	}


}


