* {
	box-sizing: border-box;
}

body {
	font-family: "Lato", sans-serif;
	margin: 0;
}


#hero {
	 background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,1) 45%, rgba(0,127,151,1) 100%); 
	color: white;
	width: 100%;
	height: 250px;
	position: relative;
	background-position: center;
	background-repeat: none;
	background-size: cover;
}

#logo_hero {
	position: absolute;
	width: auto;
	height: 40%;
	bottom: 20px;
	right: 50px;
}

.texto {
	background: rgb(255,255,255);
	background: rgba(255,255,255,0.5);
	color: black;
	font-size: 2em;
	font-weight: bold;
	margin: 0 auto;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 23%;
	left: 50%;
	transform: translate(-50%, -50%);
	mix-blend-mode: screen;
	opacity: 0.8;
}

h2 {
	position: absolute;
	bottom: 0px;
	left: 20px;
}



/* menú */

nav {
	overflow: hidden;
	background-color: #007F97;
	display: none;
}

.menu {
	margin: 0 0px 0 0;
	padding: 0;
}

.menu a, .menu > button {
	float: left;
	display: block;
	color: #f2f2f2;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 18.5px;
	background-color: inherit;
	border: none;
	outline: none;
	text-align: left;
	cursor: pointer;
	transition: 0.3s;
}

.menu a:hover, .menu button:hover {
	background-color: #89cff0;
	color: #000;
}

.menu button.active {
	background-color: #2c2c2c;
	color: #f2f2f2;
}


/* tabla de contenido */

.tab-contenido {
	display: flex;
}

.tabla {
	float: left;
	background-color: #007f97;
	width: 25%;
	height: 1200px;
	color: #fff;
}

.tabla button, .tabla a {
	display: block;
	background-color: inherit;
	color: #fff;
	padding: 22px 16px;
	width: 100%;
	border: none;
	outline: none;
	text-align: left;
	cursor: pointer;
	transition: 0.3s;
	font-size: 18.5px;
}

.tabla button:hover, .tabla a:hover {
	background-color: #005267;
	color: #fff;
}

.tabla button.active {
	background-color: #cd1d22;
	color: #fff;
}

.tabcontent {
	float: left;
	padding: 0 0px;
	border: solid 1px #00a9bf;
	width: 75%;
	border: none;
	display: none;
}

.tab button a {
	color: black;
}

.tab button a:hover {
	color:  white;
}

#subtitulo {
	padding: 20px 5px 20px 5px;
}

.tabcontent h4 {
	display: none;
}

iframe {
	width: 100%;
	height: 100%;
	border: none;

}

/* boton WhasApp */

#logo_whasapp {
	position: fixed;
	bottom: 120px;
	right: 28px;
	cursor: pointer;
	width: 58px;
	height: auto;
	z-index: 99;
	filter: drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.6));
}

#logo_whasapp:hover {
	filter: drop-shadow(0px 4px 2px #25D366);
}


/* botón de scroll */

#myBtn {
	display: none;
	position: fixed;
	bottom: 50px;
	right: 30px;
	z-index: 99;
	border: none;
	outline: none;
	background-color: #007f97;
	color: #fff;
	cursor: pointer;
	padding: 0px 0 5px 0;
	border-radius: 50%;
	font-size: 21px;
	width: 50px;
	height: 50px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}

#myBtn:hover {
	background-color: #cd1d22;
	color: #fff;
}


/* footer */

footer {
	display: flex;
	flex-wrap: wrap;
	width: 100%;

}

footer > #mapa-sitio, #documentacion, #empresa {
	flex: 1;
	width: 33.33%;
	color: #f1f1f1;
	font-size: 17px;
}

#mapa-sitio, #documentacion, #empresa {
	background-color: #2d2d2d;
	display: block;
	padding-left: 20px;
}

.pie {
	margin: 0;
}

#footer1 {
	width: 60%;
	height: auto;
	z-index: 99;
	filter: drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.6));
	cursor: pointer;
}

#footer1:hover {
	filter: drop-shadow(3px 3px 1px #cd1d22);
}

#footer3 {
	width: auto;
	height: 100px;
}
 
#footer2 {
	width: auto;
	height: 35px;
}

.columna h4 {
	color: #fff;
	
 }
 
ul {
	list-style-type: none;
	padding: 0 0 0 20px;
}

.vineta {
	list-style-type: circle;
}

#politicas a, #sitio a {
	text-decoration: none;
	/*color: black;*/
	color: #f1f1f1;
}

#politicas a:hover, #sitio a:hover {
	color: #cd1d22;
}

#derechos {
	bottom: 0;
	width: 100%;
	background-color: #020202;
	color: white;
	font-size: 1.3em;	
	text-align: center;
	padding: 6px 0 6px 0;
	z-index: 0;
}

a {
	text-decoration: none;
	color: #000;
}

a:hover {
	color: #fff;
}

#forma_pago {
	width: 70%;
	height: auto;
}



/* pantalla laptop */

@media screen and (max-width:991.98px) {
	
#hero {
	padding: 30px;
	margin: 0px;
	height: 200px;
}

.texto {
	font-size: 1em;
}

h2 {
	position: absolute;
	bottom: 0px;
	left: 10px;
	font-size: 18px;
}

nav {
	display: flex;
}

.menu a, .menu button {
	width: 100%;
	font-size: 17.5px;
	text-align: center;
}

.tabla {
	display: none;
}

.tabcontent {
	padding: 0 0px;
	width: 100%;
	height: 720px;
}


#documentacion {
	margin: 0;
	padding-left: 10px;
}

#derechos {
	font-size: 17px;
}			
	
	
}


/* tablet */
@media screen and (max-width:767.98px) {


.texto {
	font-size: 0.9em;
}

h2 {
	position: absolute;
	bottom: 0px;
	left: 10px;
	font-size: 18px;
}

nav {
	display: flex;
	
}

.menu a, .menu button {
	width: 100%;
}

.tabla {
	display: none;
}

.tabcontent {
	padding: 0 0px;
	width: 100%;
	height: 720px;
}


#documentacion {
	margin: 0;
	padding-left: 10px;
}

#derechos {
	font-size: 17px;
}		
	
	
	
}

 


/* celular */
@media screen and (max-width:575.98px) {

#hero {
	padding: 30px;
	margin: 0px;
	height: 130px;
}

#logo_hero {
	bottom: 10px;
	right: 20px;
}

.texto {
	font-size: 1em;
}

h2 {
	position: absolute;
	bottom: 0px;
	left: 10px;
	font-size: 18px;
}

nav {
	display: block;
}

.menu a, .menu button {
	width: 100%;
}

.tabla {
	display: none;
}

.tabcontent {
	padding: 0 0px;
	width: 100%;
	height: 720px;
}


#documentacion {
	display: none;
}
	
#derechos {
	font-size: 17px;
}	
	
	
	
}