@import url('https://fonts.googleapis.com/css?family=Oswald:300,500');
@import url('https://fonts.googleapis.com/css?family=Montserrat+Alternates:400,800&display=swap');
/*
VERDE OSCURO: #458276
VERDE CLARO: #8A9E39/

/*ESTILOS GENERALES*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
  font-family: 'Montserrat Alternates', sans-serif;
}
body {
  background: #1D1D1D;
}
img {
	display: block;
  width: 100%;
  margin: auto;
}
ul, li {
	list-style: none;
}
a {
	display: block;
	text-decoration: none;
}

/*CONTENEDOR*/
.contenedor {
  width: 95%;
  max-width: 99%;
  margin: auto;
}

/*ESTILOS SECTION*/
.section {
  padding: 80px 0;
}

/*LOGO SUPERIOR*/
.logo-superior {
	overflow: hidden;
	max-width: 99%;
	margin: auto;
	background: #fff;
}
.logotipo-header {
	padding: 15px;
	max-width: 260px;
}
.logosuperior-datos {
	display: none;
}

/*HEADER*/
.header {
  overflow: hidden;
  max-width: 99%;
  margin: auto;
  background: #fff;
}
.grupo-header {
	display: flex;
	justify-content: space-between;
  align-items: center;
	max-width: 1900px;
	margin: auto;
}
.logo-img {
  max-width: 250px;
}

/*BANNER*/
.banner {
  overflow: hidden;
  max-width: 99%;
  margin: auto;
  position: relative;
}
.banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}
.banner-img {
  height: 350px;
  object-fit: cover;
}
.index-textos {
  text-align: right;
  width: 70%;
  position: absolute;
  top: 70%;
  left: 80%;
  transform: translateX(-80%) translateY(-70%);
}
.banner-titulo {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 800;
  font-size: 1.6em;
  color: #fff;
}
.index-txt {
  color: #fff;
  font-size: 1em;
  line-height: 1.2;
}
.banner-vermas {
  padding: 5px;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  width: 150px;
  margin: 10px auto;
	transition: all .4s;
}
.banner-vermas:hover {
  background: #8A9E39;
}

/*FOOTER*/
.footer {
  max-width: 99%;
  margin: auto;
  background: #eee;
  overflow: hidden;
}
.columna-footer {
  padding: 15px 0;
  margin: 20px auto;
  border-bottom: 1px dashed rgba(0,0,05,0.2);
}
.titulo-footer {
  color: #333;
  font-size: 1em;
	font-weight: 800;
  margin-bottom: 15px;
}
.footer [class*='icon-'] {
  color: #333;
  font-size: 1.6em;
  margin-right: 10px;
}
.footer-txt {
  color: #333;
  display: flex;
  justify-content: flex-start;
  font-size: 0.9em;
}
.logo-footer {
	display: none;
}
/*COPY*/
.footer-copy {
  overflow: hidden;
  max-width: 99%;
  margin: auto;
  background: #333;
  padding: 20px 0;
}
.copy {
  color: #fff;
  padding: 10px;
  max-width: 1400px;
  margin: auto;
  text-align: left;
  font-size: 0.8em;
}

/*-------------ESTILOS RESPONSIVE WEB DESIGN-------------*/
@media (min-width: 768px) {
.banner-titulo {
  font-size: 3em;
}
}

@media (min-width: 1024px) {
.logotipo-header {
	padding: 0px;
}
.logosuperior-datos {
		display: flex;
		justify-content: center;
		margin-left: 30px;
	}
.grupo-logosuperior {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
.a {
		width: 20%;
		margin: 0;
	}
.gruposuperior-datos {
		display: flex;
	}
.datos-titulo {
	font-weight: 800;
	color: #666;
}
.telefonos {
	font-size: 0.9em;
	color: #666;
}
.logosuperior-datos .icon-call, .icon-mail-read {
  color: #8ABE11;
  margin-right: 10px;
  font-size: 1.4em;
  display: block;
}
	
/*BANNER*/

.index-txt {
  font-size: 2em;
}
.banner-vermas {
  padding: 15px;
}
.banner-img {
  width: 100%;
  height: 750px;
}
	
/*FOOTER*/
.grupo-footer {
  display: flex;
  justify-content: space-around;
}
.columna-footer {
  width: 20%;
  border-bottom: none;
  margin: 0;
}
	.siguenos {
		width: 10%;
	}
.titulo-footer {
  padding-bottom: 10px;
  border-bottom: 1px dashed #999;
  }
.accesosfooter-container {

  }
.logo-footer {
	display: block;
	width: 200px;
}
}