*{
	margin: 0px;
	padding: 0px;
}

html, body {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/*-------------------------------------*/

@font-face {
	font-family: AgeoPersonalUse-ExtraBold;
	src: url(AgeoPersonalUse-ExtraBold.otf);
}

@font-face {
	font-family: DreamWeaver-Demo;
	src: url(DreamWeaver-Demo.ttf);
}

@font-face {
	font-family: AgeoPersonalUse;
	src: url(AgeoPersonalUse.otf);
}

@font-face {
	font-family: AgeoPersonalUse-Light;
	src: url(AgeoPersonalUse-Light.otf);
}

/*-------------------------------------*/

#malla {
	display: grid;
	grid-template-columns: 1fr 48fr 1fr;
	grid-template-rows: 65px 1fr 48fr 1fr 50px;
	background: transparent;
	width: 100%;
	height: 100%;
}


/*-------------------------------------*/

#cabeza {
	background: #333;
	grid-column: 1/4;
	grid-row: 1/2;
	z-index: 3;
	display: flex;
	flex-direction: row;
	align-items: flex-end;	

}

#cuerpo {
	background: transparent;
	grid-column: 1/4;
	grid-row: 1/5;
	overflow: hidden;
}

#pie {
	background: #3C3C3D;
	grid-column: 1/4;
	grid-row: 5/6;
	display: flex;
	justify-content: center;
	align-content: center;
}

/*-------------------------------------*/

h1 {
	font-family: AgeoPersonalUse-ExtraBold;
	font-size: 24px;
	color: white;
	float: left;
	/*margin: 10px 0px 0px 0px;*/
	margin-left: 10px;
}

h2 {
	font-family: AgeoPersonalUse-ExtraBold;
	font-size: 18px;
	color: white;
	float: left;
	margin: 10px 0px 0px 10px;	
}

h3 {
	font-family: DreamWeaver-Demo;
	font-size: 60px; /*30px*/
	font-weight: normal;
	color: greenyellow;
	float: left;
	/*margin: 10px 0px 0px 0px;*/
}

h4 {
	font-family: AgeoPersonalUse-Light;
	font-size: 14px;
	font-weight: normal;
	color: white;
	float: left;
	margin: 10px;
}

p {
	text-decoration: none;
	font-family: AgeoPersonalUse-Light;
	font-size: 16px;
	color: white;
	margin-top: 9px;
	text-align: center;
	color: greenyellow;
}


ul {
	font-family: AgeoPersonalUse-Light;
	font-size: 14px;
	color: white;
	list-style-type: x;
	margin-left: 20px;
}

li {
	font-family: AgeoPersonalUse-Light;
	font-size: 14px;
	color: white;
	display: block;
}

label {
	font-family: AgeoPersonalUse-Light;
	font-size: 14px;
	color: white;
	margin-left: 10px;
}

/*-------------------------------------*/

#cuerpo img{
	width: auto;
	height: 100%;
	
}

#malla2 {
	background: transparent;
	grid-column: 2/3;
	grid-row: 3/4;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(21, 1fr);
	grid-template-rows: repeat(13, 1fr);
	grid-gap: 5px;
	width: 100%;
	height: 100%;
}

.tablas {
	overflow: hidden;
	overflow-x: hidden;
	overflow-y: scroll;

	scrollbar-color: transparent transparent;
  	scrollbar-width: thin;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#tblPresentacion {
	background-image: radial-gradient(
    circle,
    rgba(1, 50, 83, 1) 0%, /*rgba(150, 75, 0, 1)*/
    rgba(0, 0, 0, 0.2) 100%
  	);
	grid-column: 1/9;
	grid-row: 3/8;
	z-index: 10;
} 

#tblServicios {
	background-image: radial-gradient(
    circle,
    rgba(1, 33, 56, 1) 0%, /*rgba(0, 0, 139, 1)*/
    rgba(0, 0, 0, 0.2) 100%
  	);
	grid-column: 7/15;
	grid-row: 1/14;
	z-index: 9;
}

#tblContacto {
	background-image: radial-gradient(
    circle,
    rgba(1, 17, 30, 1) 0%, /*rgba(0, 100, 0, 1)*/
    rgba(0, 0, 0, 0.2) 100%
  	);

	grid-column: 13/21;
	grid-row: 8/13;
	z-index: 8;
}

#tblTienda {
	background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 0%, /*rgba(64, 64, 64, 0.8)*/
    rgba(0, 0, 0, 0.2) 100%
  	);

	grid-column: 17/22;
	grid-row: 1/6;
	z-index: 7;
}

/*-------------------------------------*/

.titulo {
	display: flex;
	flex-direction: row;
	align-items: flex-end;	
}

.descripcion {
	display: flex;
	flex-direction: column;
	align-items: flex-star;
}

/*-------------------------------------*/

.frm-wts {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

input, textarea, button {
	margin-left: 10px;
}
/*
textarea {
	margin: 0px 10px 0px 10px;
}
*/
button {
	width: 70px;
	height: 26px;
	margin-bottom: 10px;
}


/*-------------------------------------*/
/*-------------------------------------*/
/*-------------------------------------*/


@media only screen and (max-width:800px) {
	#malla2 {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr 1fr 1fr;
	}

/*-------------------------------------*/

#tblPresentacion {  	
	grid-column: 1/2;
	grid-row: 1/2;
	z-index: 3;
}

#tblServicios {
	grid-column: 1/2;
	grid-row: 2/3;
}

#tblContacto {	
	grid-column: 1/2;
	grid-row: 3/4;
}

#tblTienda {	
	grid-column: 1/2;
	grid-row: 4/5;
}
