@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&family=Roboto&display=swap');

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: #E9ECF4;
	color: #000;
	margin: 0;
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
}


.contenedor {
	width: 90%;
	max-width: 1500px;
	margin: 20px auto;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(4, auto);

	grid-template-areas: "header header header"
						 "contenido sidebar sidebar"
						 "widget-2 widget-1 widget-2"
						 "footer footer footer";

	align-items: center;
	justify-content: center;
}

.contenedor > div,
.contenedor .contenido,
.contenedor .sidebar,
.contenedor .footer {
	background: #fff;
	padding: 20px;
	border-radius: 4px;
}

header {
	height: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: auto;
	z-index: 1000;
	background: none;
    }

#btn-menu {
	display: none;
    }
    
    header label {
	font-size: 0px;
	cursor: pointer;
	display: none;
    }
    
    .menu ul {
	background: rgba(0, 59, 18, 0.9);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
    }
    
    .menu ul ul {
	display: none;
    }
    
    .menu a {
	display: block;
	padding: 15px 20px;
	color: #fff;
	text-decoration: none;
    }
    
    .menu a:hover {
	background: rgba(154, 206, 22);
	color: #fff;
    }
    
    .menu a span {
	margin-left: 10px;
    }
    
    .menu ul li:hover ul {
	display: block;
	position: absolute;
    }

	a {
	text-decoration: none;
	}

	h2 {
	text-decoration: none;
	}

@media screen and (min-width:320px) and (max-width:360px) {
	.contenedor {
		width: 90%;
		max-width: 1000px;
		margin: 40px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(1, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
	}

	header label {
		position: absolute;
		display: block;
	    }

	    .icon-menu {
		background: rgba(0, 59, 18);
		color: rgba(154, 206, 22);
		width: 45px;
		height: 45px;
		font-size: 40px;
		text-align: center;
		line-height: 56px;
		border-radius: 5px;
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		margin-left: 0%;
		margin-top: 0%;
		z-index: 1000;
	    }
	    .menu {
		position: absolute;
		top: 10%;
		left: 0;
		width: 100%;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		z-index: 1000;
		font-size: 14px;
	    }
	    .menu ul {
		display: block;
	    }
	    .menu a span {
		position: absolute;
		right: 5px;
	    }
	    .menu ul li:hover ul {
		display: none;
		position: static;
	    }
	    #btn-menu:checked~.menu {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	    }
	    .menu ul ul {
		background: rgba(0, 0, 0, 0.3);
	    }
	    .menu ul ul a {
		padding: 15px 40px;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 2;
		background: none;
		grid-row: 3;
		min-width: 300px;
		min-height: 260px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 3;
		width: 100%;
		height: 90%;
		max-width: 450px;
		max-height: 350px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 1;
		grid-row: 2 / 3;
		width: auto;
		height: auto;
	}
	
	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 70%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	#imagen {
		width: 250px;
		height: 200px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		transition: 0.5s;
		object-fit: cover;
	}
	
	#imagen:hover {
		scale: 1.2;
	}
	
	.contenedor .widget-3{
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		color: #000;
	}
	
	.contenedor .widget-4 {
		width: 100%;
		height: auto;
		grid-area: 3 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-5 {
		width: 100%;
		height: auto;
		grid-area: 5 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-6 {
		width: 100%;
		height: auto;
		grid-area: 7 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-7 {
		width: 100%;
		height: auto;
		grid-area: 9 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-8 {
		width: 100%;
		height: auto;
		grid-area: 11 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-9 {
		width: 100%;
		height: auto;
		grid-area: 13 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-10 {
		width: 100%;
		height: auto;
		grid-area: 15 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-4,
	.contenedor .widget-5,
	.contenedor .widget-6,
	.contenedor .widget-7,
	.contenedor .widget-8,
	.contenedor .widget-9,
	.contenedor .widget-10 {
		cursor: pointer;
	}
	.contenedor .widget-11 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgb(0, 59, 18);
		text-align: center;
	}
	
	.contenedor .widget-12 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgb(0, 59, 18);
	}
	
	.contenedor .widget-13 {
		width: 100%;
		height: 50%;
		grid-area: 8 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-14 {
		width: 100%;
		height: 50%;
		grid-area: 10 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-15 {
		width: 100%;
		height: 50%;
		grid-area: 12 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-16 {
		width: 100%;
		height: 50%;
		grid-area: 14 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-17 {
		width: 100%;
		height: 50%;
		grid-area: 16 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	p {
		font-size: 14px;
	}
	
	h2 {
		color: #fff;
		font-weight: bolder;
		font-family: 'roboto';
		font-size: 16px;
		cursor: pointer;
	}

	
	h1 {
		font-size: 16px;
		color: black;
		font-family: 'roboto';
	}

	h3 {
		font-size: 16px;
		color: black;
		font-family: 'roboto';
		text-align: center;
		border-top: 5px solid rgb(0, 59, 18);
	}
	
	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		text-align: center;
		width: 100%;
	}
	
	.pie {
		width: 80px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 11px;	
	}

	.copy {
		font-size: 11px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 18px;
	}
}

@media screen and (min-width:361px) and (max-width:460px) {
	.contenedor {
		width: 90%;
		max-width: 1000px;
		margin: 40px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(1, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
	}

	header label {
		position: absolute;
		display: block;
	    }

	    .icon-menu {
		background: rgba(0, 59, 18);
		color: rgba(154, 206, 22);
		width: 45px;
		height: 45px;
		font-size: 40px;
		text-align: center;
		line-height: 56px;
		border-radius: 5px;
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		margin-left: 0%;
		margin-top: 0%;
		z-index: 1000;
	    }
	    .menu {
		position: absolute;
		top: 10%;
		left: 0;
		width: 100%;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		z-index: 1000;
		font-size: 14px;
	    }
	    .menu ul {
		display: block;
	    }
	    .menu a span {
		position: absolute;
		right: 5px;
	    }
	    .menu ul li:hover ul {
		display: none;
		position: static;
	    }
	    #btn-menu:checked~.menu {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	    }
	    .menu ul ul {
		background: rgba(0, 0, 0, 0.3);
	    }
	    .menu ul ul a {
		padding: 15px 40px;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 2;
		background: none;
		grid-row: 3;
		min-width: 320px;
		min-height: 300px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 3;
		width: 100%;
		height: 90%;
		max-width: 450px;
		max-height: 350px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 1;
		grid-row: 2 / 3;
		width: auto;
		height: auto;
	}
	
	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 70%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	#imagen {
		width: 250px;
		height: 200px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		transition: 0.5s;
		object-fit: cover;
	}
	
	#imagen:hover {
		scale: 1.2;
	}
	
	.contenedor .widget-3{
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		color: #000;
	}
	
	.contenedor .widget-4 {
		width: 100%;
		height: auto;
		grid-area: 3 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-5 {
		width: 100%;
		height: auto;
		grid-area: 5 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-6 {
		width: 100%;
		height: auto;
		grid-area: 7 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-7 {
		width: 100%;
		height: auto;
		grid-area: 9 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-8 {
		width: 100%;
		height: auto;
		grid-area: 11 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-9 {
		width: 100%;
		height: auto;
		grid-area: 13 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-10 {
		width: 100%;
		height: auto;
		grid-area: 15 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-4,
	.contenedor .widget-5,
	.contenedor .widget-6,
	.contenedor .widget-7,
	.contenedor .widget-8,
	.contenedor .widget-9,
	.contenedor .widget-10 {
		cursor: pointer;
	}
	.contenedor .widget-11 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgb(0, 59, 18);
		text-align: center;
	}
	
	.contenedor .widget-12 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgb(0, 59, 18);
	}
	
	.contenedor .widget-13 {
		width: 100%;
		height: 50%;
		grid-area: 8 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-14 {
		width: 100%;
		height: 50%;
		grid-area: 10 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-15 {
		width: 100%;
		height: 50%;
		grid-area: 12 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-16 {
		width: 100%;
		height: 50%;
		grid-area: 14 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-17 {
		width: 100%;
		height: 50%;
		grid-area: 16 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	p {
		font-size: 14px;
	}
	
	h2 {
		color: #fff;
		font-weight: bolder;
		font-family: 'roboto';
		font-size: 16px;
		cursor: pointer;
	}

	h1 {
		font-size: 16px;
		color: black;
		font-family: 'roboto';
	}

	h3 {
		font-size: 16px;
		color: black;
		font-family: 'roboto';
		text-align: center;
		border-top: 5px solid rgb(0, 59, 18);
	}

	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		text-align: center;
		width: 100%;
	}
	
	.pie {
		width: 80px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 11px;	
	}

	.copy {
		font-size: 11px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 18px;
	}
}

@media screen and (min-width:461px) and (max-width:540px) {
	.contenedor {
		width: 90%;
		max-width: 1000px;
		margin: 40px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(1, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
	}

	header label {
		position: absolute;
		display: block;
	    }

	    .icon-menu {
		background: rgba(0, 59, 18);
		color: rgba(154, 206, 22);
		width: 45px;
		height: 45px;
		font-size: 40px;
		text-align: center;
		line-height: 56px;
		border-radius: 5px;
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		margin-left: 0%;
		margin-top: 0%;
		z-index: 1000;
	    }
	    .menu {
		position: absolute;
		top: 10%;
		left: 0;
		width: 100%;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		z-index: 1000;
		font-size: 14px;
	    }
	    .menu ul {
		display: block;
	    }
	    .menu a span {
		position: absolute;
		right: 5px;
	    }
	    .menu ul li:hover ul {
		display: none;
		position: static;
	    }
	    #btn-menu:checked~.menu {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	    }
	    .menu ul ul {
		background: rgba(0, 0, 0, 0.3);
	    }
	    .menu ul ul a {
		padding: 15px 40px;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 2;
		background: none;
		grid-row: 3;
		min-width: 320px;
		min-height: 320px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 3;
		width: 100%;
		height: 90%;
		max-width: 450px;
		max-height: 350px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 1;
		grid-row: 2 / 3;
		width: auto;
		height: auto;
	}
	
	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 70%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	#imagen {
		width: 250px;
		height: 200px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		transition: 0.5s;
		object-fit: cover;
	}
	
	#imagen:hover {
		scale: 1.2;
	}
	
	.contenedor .widget-3{
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		color: #000;
	}
	
	.contenedor .widget-4 {
		width: 100%;
		height: auto;
		grid-area: 3 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-5 {
		width: 100%;
		height: auto;
		grid-area: 5 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-6 {
		width: 100%;
		height: auto;
		grid-area: 7 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-7 {
		width: 100%;
		height: auto;
		grid-area: 9 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-8 {
		width: 100%;
		height: auto;
		grid-area: 11 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-9 {
		width: 100%;
		height: auto;
		grid-area: 13 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-10 {
		width: 100%;
		height: auto;
		grid-area: 15 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-4,
	.contenedor .widget-5,
	.contenedor .widget-6,
	.contenedor .widget-7,
	.contenedor .widget-8,
	.contenedor .widget-9,
	.contenedor .widget-10 {
		cursor: pointer;
	}
	.contenedor .widget-11 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgb(0, 59, 18);
		text-align: center;
	}
	
	.contenedor .widget-12 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgb(0, 59, 18);
	}
	
	.contenedor .widget-13 {
		width: 100%;
		height: 50%;
		grid-area: 8 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-14 {
		width: 100%;
		height: 50%;
		grid-area: 10 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-15 {
		width: 100%;
		height: 50%;
		grid-area: 12 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgb(0, 59, 18);
	}

	.contenedor .widget-16 {
		width: 100%;
		height: 50%;
		grid-area: 14 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-17 {
		width: 100%;
		height: 50%;
		grid-area: 16 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	p {
		font-size: 14px;
	}
	
	h2 {
		color: #fff;
		font-weight: bolder;
		font-family: 'roboto';
		font-size: 16px;
		cursor: pointer;
	}

	h1 {
		font-size: 16px;
		color: black;
		font-family: 'roboto';
	}

	h3 {
		font-size: 16px;
		color: black;
		font-family: 'roboto';
		text-align: center;
		border-top: 5px solid rgb(0, 59, 18);
	}
	
	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		text-align: center;
		width: 100%;
	}
	
	.pie {
		width: 80px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 11px;	
	}

	.copy {
		font-size: 11px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 18px;
	}
}

@media screen and (min-width:541px) and (max-width:680px) {
	.contenedor {
		width: 90%;
		max-width: 1000px;
		margin: 40px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(1, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
	}

	header label {
		position: absolute;
		display: block;
	    }

	    .icon-menu {
		background: rgba(0, 59, 18);
		color: rgba(154, 206, 22);
		width: 45px;
		height: 45px;
		font-size: 40px;
		text-align: center;
		line-height: 56px;
		border-radius: 5px;
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		margin-left: 0%;
		margin-top: 0%;
		z-index: 1000;
	    }
	    .menu {
		position: absolute;
		top: 10%;
		left: 0;
		width: 100%;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		z-index: 1000;
		font-size: 14px;
	    }
	    .menu ul {
		display: block;
	    }
	    .menu a span {
		position: absolute;
		right: 5px;
	    }
	    .menu ul li:hover ul {
		display: none;
		position: static;
	    }
	    #btn-menu:checked~.menu {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	    }
	    .menu ul ul {
		background: rgba(0, 0, 0, 0.3);
	    }
	    .menu ul ul a {
		padding: 15px 40px;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 2;
		background: none;
		grid-row: 3;
		min-width: 320px;
		min-height: 320px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 3;
		width: 100%;
		height: 90%;
		max-width: 450px;
		max-height: 350px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 1;
		grid-row: 2 / 3;
		width: auto;
		height: auto;
	}
	
	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 70%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	#imagen {
		width: 250px;
		height: 200px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		transition: 0.5s;
		object-fit: cover;
	}
	
	#imagen:hover {
		scale: 1.2;
	}
	
	.contenedor .widget-3{
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		color: #000;
	}
	.contenedor .widget-4 {
		width: 100%;
		height: auto;
		grid-area: 3 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-5 {
		width: 100%;
		height: auto;
		grid-area: 5 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-6 {
		width: 100%;
		height: auto;
		grid-area: 7 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-7 {
		width: 100%;
		height: auto;
		grid-area: 9 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-8 {
		width: 100%;
		height: auto;
		grid-area: 11 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-9 {
		width: 100%;
		height: auto;
		grid-area: 13 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-10 {
		width: 100%;
		height: auto;
		grid-area: 15 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-4,
	.contenedor .widget-5,
	.contenedor .widget-6,
	.contenedor .widget-7,
	.contenedor .widget-8,
	.contenedor .widget-9,
	.contenedor .widget-10 {
		cursor: pointer;
	}
	.contenedor .widget-11 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgb(0, 59, 18);
		text-align: center;
	}
	
	.contenedor .widget-12 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgb(0, 59, 18);
	}
	
	.contenedor .widget-13 {
		width: 100%;
		height: 50%;
		grid-area: 8 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-14 {
		width: 100%;
		height: 50%;
		grid-area: 10 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-15 {
		width: 100%;
		height: 50%;
		grid-area: 12 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-16 {
		width: 100%;
		height: 50%;
		grid-area: 14 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	.contenedor .widget-17 {
		width: 100%;
		height: 50%;
		grid-area: 16 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgb(0, 59, 18);
	}

	p {
		font-size: 18px;
	}
	
	h2 {
		color: #fff;
		font-weight: bolder;
		font-family: 'roboto';
		font-size: 18px;
		cursor: pointer;
	}
	
	
	h1 {
		font-size: 20px;
		color: black;
		font-family: 'roboto';
	}

	h3 {
			font-size: 20px;
			color: black;
			font-family: 'roboto';
			text-align: center;
			border-top: 5px solid rgb(0, 59, 18);
		}
	
	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		text-align: center;
		width: 100%;
	}
	
	.pie {
		width: 80px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 11px;	
	}

	.copy {
		font-size: 11px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 18px;
	}
}

@media screen and (min-width:681px) and (max-width:760px) {
	.contenedor {
		width: 90%;
		max-width: 1000px;
		margin: 40px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(1, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
	}

	header label {
		position: absolute;
		display: block;
	    }

	    .icon-menu {
		background: rgba(0, 59, 18);
		color: rgba(154, 206, 22);
		width: 45px;
		height: 45px;
		font-size: 40px;
		text-align: center;
		line-height: 56px;
		border-radius: 5px;
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		margin-left: 0%;
		margin-top: 0%;
		z-index: 1000;
	    }
	    .menu {
		position: absolute;
		top: 10%;
		left: 0;
		width: 100%;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		z-index: 1000;
		font-size: 14px;
	    }
	    .menu ul {
		display: block;
	    }
	    .menu a span {
		position: absolute;
		right: 5px;
	    }
	    .menu ul li:hover ul {
		display: none;
		position: static;
	    }
	    #btn-menu:checked~.menu {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	    }
	    .menu ul ul {
		background: rgba(0, 0, 0, 0.3);
	    }
	    .menu ul ul a {
		padding: 15px 40px;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 2;
		background: none;
		grid-row: 3;
		min-width: 320px;
		min-height: 320px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 3;
		width: 100%;
		height: 90%;
		max-width: 450px;
		max-height: 350px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 1;
		grid-row: 2 / 3;
		width: auto;
		height: auto;
	}
	
	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 70%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	#imagen {
		width: 250px;
		height: 200px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		transition: 0.5s;
		object-fit: cover;
	}
	
	#imagen:hover {
		scale: 1.2;
	}
	
	.contenedor .widget-3{
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		color: #000;
	}
	.contenedor .widget-4 {
		width: 100%;
		height: auto;
		grid-area: 3 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-5 {
		width: 100%;
		height: auto;
		grid-area: 5 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-6 {
		width: 100%;
		height: auto;
		grid-area: 7 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-7 {
		width: 100%;
		height: auto;
		grid-area: 9 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-8 {
		width: 100%;
		height: auto;
		grid-area: 11 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-9 {
		width: 100%;
		height: auto;
		grid-area: 13 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-10 {
		width: 100%;
		height: auto;
		grid-area: 15 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-4,
	.contenedor .widget-5,
	.contenedor .widget-6,
	.contenedor .widget-7,
	.contenedor .widget-8,
	.contenedor .widget-9,
	.contenedor .widget-10 {
		cursor: pointer;
	}
	.contenedor .widget-11 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: ;
		text-align: center;
	}
	
	.contenedor .widget-12 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
	}
	
	.contenedor .widget-13 {
		width: 100%;
		height: 50%;
		grid-area: 8 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-14 {
		width: 100%;
		height: 50%;
		grid-area: 10 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-15 {
		width: 100%;
		height: 50%;
		grid-area: 12 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-16 {
		width: 100%;
		height: 50%;
		grid-area: 14 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-17 {
		width: 100%;
		height: 50%;
		grid-area: 16 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	p {
		font-size: 18px;
	}
	
	h2 {
		color: #fff;
		font-weight: bolder;
		font-family: 'roboto';
		font-size: 18px;
		cursor: pointer;
	}
	
	h1 {
		font-size: 20px;
		color: black;
		font-family: 'roboto';
	}

	h3 {
		font-size: 20px;
		color: black;
		font-family: 'roboto';
		text-align: center;
		border-top: 5px solid rgba(0, 59, 18);
	}
	
	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		text-align: center;
		width: 100%;
	}
	
	.pie {
		width: 80px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 11px;	
	}

	.copy {
		font-size: 11px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 18px;
	}
}

@media screen and (min-width:761px) and (max-width:860px) {
	.contenedor {
		width: 90%;
		max-width: 1000px;
		margin: 40px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(1, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
	}

	header label {
		position: absolute;
		display: block;
	    }

	    .icon-menu {
		background: rgba(0, 59, 18);
		color: rgba(154, 206, 22);
		width: 45px;
		height: 45px;
		font-size: 40px;
		text-align: center;
		line-height: 56px;
		border-radius: 5px;
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		margin-left: 0%;
		margin-top: 0%;
		z-index: 1000;
	    }
	    .menu {
		position: absolute;
		top: 10%;
		left: 0;
		width: 100%;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		z-index: 1000;
		font-size: 14px;
	    }
	    .menu ul {
		display: block;
	    }
	    .menu a span {
		position: absolute;
		right: 5px;
	    }
	    .menu ul li:hover ul {
		display: none;
		position: static;
	    }
	    #btn-menu:checked~.menu {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	    }
	    .menu ul ul {
		background: rgba(0, 0, 0, 0.3);
	    }
	    .menu ul ul a {
		padding: 15px 40px;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 2;
		background: none;
		grid-row: 3;
		min-width: 320px;
		min-height: 320px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 3;
		width: 100%;
		height: 90%;
		max-width: 450px;
		max-height: 350px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 1;
		grid-row: 2 / 3;
		width: auto;
		height: auto;
	}
	
	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 70%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	#imagen {
		width: 250px;
		height: 200px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		transition: 0.5s;
		object-fit: cover;
	}
	
	#imagen:hover {
		scale: 1.2;
	}
	
	.contenedor .widget-3{
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		color: #000;
	}
	
	.contenedor .widget-4 {
		width: 100%;
		height: auto;
		grid-area: 3 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-5 {
		width: 100%;
		height: auto;
		grid-area: 5 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-6 {
		width: 100%;
		height: auto;
		grid-area: 7 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-7 {
		width: 100%;
		height: auto;
		grid-area: 9 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-8 {
		width: 100%;
		height: auto;
		grid-area: 11 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-9 {
		width: 100%;
		height: auto;
		grid-area: 13 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-10 {
		width: 100%;
		height: auto;
		grid-area: 15 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-4,
	.contenedor .widget-5,
	.contenedor .widget-6,
	.contenedor .widget-7,
	.contenedor .widget-8,
	.contenedor .widget-9,
	.contenedor .widget-10 {
		cursor: pointer;
	}
	.contenedor .widget-11 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
		text-align: center;
	}
	
	.contenedor .widget-12 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
	}
	
	.contenedor .widget-13 {
		width: 100%;
		height: 50%;
		grid-area: 8 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-14 {
		width: 100%;
		height: 50%;
		grid-area: 10 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-15 {
		width: 100%;
		height: 50%;
		grid-area: 12 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-16 {
		width: 100%;
		height: 50%;
		grid-area: 14 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-17 {
		width: 100%;
		height: 50%;
		grid-area: 16 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	p {
		font-size: 18px;
	}
	
	h2 {
		color: #fff;
		font-weight: bolder;
		font-family: 'roboto';
		font-size: 18px;
		cursor: pointer;
	}

	h1 {
		font-size: 20px;
		color: black;
		font-family: 'roboto';
	}

	h3 {
		font-size: 20px;
		color: black;
		font-family: 'roboto';
		text-align: center;
		border-top: 5px solid rgba(0, 59, 18);
	}
	
	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		text-align: center;
		width: 100%;
	}
	
	.pie {
		width: 80px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 11px;	
	}

	.copy {
		font-size: 11px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 18px;
	}
}

@media screen and (min-width:861px) and (max-width:960px) {
	.contenedor {
		width: 90%;
		max-width: 1000px;
		margin: 40px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(1, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
	}

	header label {
		position: absolute;
		display: block;
	    }

	    .icon-menu {
		background: rgba(0, 59, 18);
		color: rgba(154, 206, 22);
		width: 45px;
		height: 45px;
		font-size: 40px;
		text-align: center;
		line-height: 56px;
		border-radius: 5px;
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		margin-left: 0%;
		margin-top: 0%;
		z-index: 1000;
	    }
	    .menu {
		position: absolute;
		top: 10%;
		left: 0;
		width: 100%;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		z-index: 1000;
		font-size: 14px;
	    }
	    .menu ul {
		display: block;
	    }
	    .menu a span {
		position: absolute;
		right: 5px;
	    }
	    .menu ul li:hover ul {
		display: none;
		position: static;
	    }
	    #btn-menu:checked~.menu {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	    }
	    .menu ul ul {
		background: rgba(0, 0, 0, 0.3);
	    }
	    .menu ul ul a {
		padding: 15px 40px;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 2;
		background: none;
		grid-row: 3;
		min-width: 320px;
		min-height: 320px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 3;
		width: 100%;
		height: 90%;
		max-width: 450px;
		max-height: 350px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 1;
		grid-row: 2 / 3;
		width: auto;
		height: auto;
	}
	
	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 70%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	#imagen {
		width: 250px;
		height: 200px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		transition: 0.5s;
		object-fit: cover;
	}
	
	#imagen:hover {
		scale: 1.2;
	}
	
	.contenedor .widget-3{
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		color: #000;
	}
	
	.contenedor .widget-4 {
		width: 100%;
		height: auto;
		grid-area: 3 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-5 {
		width: 100%;
		height: auto;
		grid-area: 5 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-6 {
		width: 100%;
		height: auto;
		grid-area: 7 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-7 {
		width: 100%;
		height: auto;
		grid-area: 9 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-8 {
		width: 100%;
		height: auto;
		grid-area: 11 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-9 {
		width: 100%;
		height: auto;
		grid-area: 13 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-10 {
		width: 100%;
		height: auto;
		grid-area: 15 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-4,
	.contenedor .widget-5,
	.contenedor .widget-6,
	.contenedor .widget-7,
	.contenedor .widget-8,
	.contenedor .widget-9,
	.contenedor .widget-10 {
		cursor: pointer;
	}
	.contenedor .widget-11 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
		text-align: center;
	}
	
	.contenedor .widget-12 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
	}
	
	.contenedor .widget-13 {
		width: 100%;
		height: 50%;
		grid-area: 8 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-14 {
		width: 100%;
		height: 50%;
		grid-area: 10 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-15 {
		width: 100%;
		height: 50%;
		grid-area: 12 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-16 {
		width: 100%;
		height: 50%;
		grid-area: 14 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-17 {
		width: 100%;
		height: 50%;
		grid-area: 16 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	p {
		font-size: 18px;
	}
	
	h2 {
		color: #fff;
		font-weight: bolder;
		font-family: 'roboto';
		font-size: 18px;
		cursor: pointer;
	}
	
	
	h1 {
		font-size: 20px;
		color: black;
		font-family: 'roboto';
	}

	h3 {
		font-size: 20px;
		color: black;
		font-family: 'roboto';
		text-align: center;
		border-top: 5px solid rgba(0, 59, 18);
	}
	
	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		text-align: center;
		width: 100%;
	}
	
	.pie {
		width: 80px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 11px;	
	}

	.copy {
		font-size: 11px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 18px;
	}
}

@media screen and (min-width:961px) and (max-width:1140px) {
	.contenedor {
		width: 90%;
		max-width: 1000px;
		margin: 40px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(1, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
	}

	header label {
		position: absolute;
		display: block;
	    }

	    .icon-menu {
		background: rgba(0, 59, 18);
		color: rgba(154, 206, 22);
		width: 45px;
		height: 45px;
		font-size: 40px;
		text-align: center;
		line-height: 56px;
		border-radius: 5px;
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
		margin-left: 0%;
		margin-top: 0%;
		z-index: 1000;
	    }
	    .menu {
		position: absolute;
		top: 10%;
		left: 0;
		width: 100%;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		z-index: 1000;
		font-size: 14px;
	    }
	    .menu ul {
		display: block;
	    }
	    .menu a span {
		position: absolute;
		right: 5px;
	    }
	    .menu ul li:hover ul {
		display: none;
		position: static;
	    }
	    #btn-menu:checked~.menu {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	    }
	    .menu ul ul {
		background: rgba(0, 0, 0, 0.3);
	    }
	    .menu ul ul a {
		padding: 15px 40px;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 2;
		background: none;
		grid-row: 3;
		min-width: 320px;
		min-height: 320px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 3;
		width: 100%;
		height: 90%;
		max-width: 450px;
		max-height: 350px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 1;
		grid-row: 2 / 3;
		width: auto;
		height: auto;
	}
	
	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 70%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	#imagen {
		width: 250px;
		height: 200px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		transition: 0.5s;
		object-fit: cover;
	}
	
	#imagen:hover {
		scale: 1.2;
	}
	
	.contenedor .widget-3{
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		color: #000;
	}
	
	.contenedor .widget-4 {
		width: 100%;
		height: auto;
		grid-area: 3 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-5 {
		width: 100%;
		height: auto;
		grid-area: 5 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-6 {
		width: 100%;
		height: auto;
		grid-area: 7 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-7 {
		width: 100%;
		height: auto;
		grid-area: 9 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-8 {
		width: 100%;
		height: auto;
		grid-area: 11 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-9 {
		width: 100%;
		height: auto;
		grid-area: 13 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-10 {
		width: 100%;
		height: auto;
		grid-area: 15 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}

	.contenedor .widget-4,
	.contenedor .widget-5,
	.contenedor .widget-6,
	.contenedor .widget-7,
	.contenedor .widget-8,
	.contenedor .widget-9,
	.contenedor .widget-10 {
		cursor: pointer;
	}
	.contenedor .widget-11 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
		text-align: center;
	}
	
	.contenedor .widget-12 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
	}
	
	.contenedor .widget-13 {
		width: 100%;
		height: 50%;
		grid-area: 8 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-14 {
		width: 100%;
		height: 50%;
		grid-area: 10 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-15 {
		width: 100%;
		height: 50%;
		grid-area: 12 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-16 {
		width: 100%;
		height: 50%;
		grid-area: 14 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	.contenedor .widget-17 {
		width: 100%;
		height: 50%;
		grid-area: 16 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}

	p {
		font-size: 18px;
	}
	
	h2 {
		color: #fff;
		font-weight: bolder;
		font-family: 'roboto';
		font-size: 18px;
		cursor: pointer;
	}
	
	h1 {
		font-size: 20px;
		color: black;
		font-family: 'roboto';
	}

	h3 {
		font-size: 20px;
		color: black;
		font-family: 'roboto';
		text-align: center;
		border-top: 5px solid rgba(0, 59, 18);
	}
	
	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		text-align: center;
		width: 100%;
	}
	
	.pie {
		width: 80px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 11px;	
	}

	.copy {
		font-size: 11px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 18px;
	}
}

@media screen and (min-width:1141px) and (max-width:1290px) {
	.contenedor {
		width: 90%;
		max-width: 1000px;
		margin: 20px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(6, 1fr);
		grid-template-rows: repeat(4, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
	}
	.contenedor .header {
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		height: 0px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: auto;
		z-index: 1000;
	}
	
	#btn-menu {
		display: none;
	    }
	    
	    header label {
		font-size: 0px;
		cursor: pointer;
		display: none
	    }
	    
	
	    .menu ul {
		background: rgba(0, 59, 18, 0.9);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		list-style: none;
	    }
	    
	    .menu ul ul {
		display: none;
	    }
	    
	    .menu a {
		display: block;
		padding: 15px 20px;
		color: #fff;
		text-decoration: none;
	    }
	    
	    .menu a:hover {
		background: rgba(154, 206, 22);
		color: #fff;
	    }
	    
	    .menu a span {
		margin-left: 10px;
	    }
	    
	    .menu ul li:hover ul {
		display: block;
		position: absolute;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 3;
		background: none;
		grid-row: 3 / 5;
		min-width: 330px;
		min-height: 230px;
	}
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 3;
		width: 100%;
		height: 90%;
		max-width: 450px;
		max-height: 350px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 7;
		grid-row: 2 / 3;
		width: auto;
		height: auto;
	}
	
	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 70%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	#imagen {
		width: 180px;
		height: 130px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		transition: 0.5s;
		object-fit: cover;
	}
	
	#imagen:hover {
		scale: 1.2;
	}
	
	.contenedor .widget-3{
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		color: #000;
	}
	
	.contenedor .widget-4 {
		width: 100%;
		height: auto;
		grid-area: 3 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-5 {
		width: 100%;
		height: auto;
		grid-area: 3 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-6 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 3 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-7 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 3 / 5;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-8 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 5 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-9 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-10 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 5 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-4,
	.contenedor .widget-5,
	.contenedor .widget-6,
	.contenedor .widget-7,
	.contenedor .widget-8,
	.contenedor .widget-9,
	.contenedor .widget-10 {
		cursor: pointer;
	}
	.contenedor .widget-11 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
		text-align: center;
	}
	
	.contenedor .widget-12 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
	}
	
	.contenedor .widget-13 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-14 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 5;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-15 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-16 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-17 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	h2 {
		color: #fff;
		font-weight: bolder;
		font-family: 'roboto';
		font-size: 20px;
		cursor: pointer;
	}
	
	h1 {
		font-size: 24px;
		color: black;
		font-family: 'roboto';
	}
	
	h3 {
		font-size: 24px;
		color: black;
		font-family: 'roboto';
		text-align: center;
		border-top: 5px solid rgba(0, 59, 18);
	}
	
	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		text-align: center;
		width: 100%;
	}
	
	.pie {
		width: 90px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 12px;	
	}

	.copy {
		font-size: 12px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 18px;
	}
}

@media screen and (min-width:1291px) and (max-width:1414px) {
	.contenedor {
		width: 90%;
		max-width: 1000px;
		margin: 20px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(6, 1fr);
		grid-template-rows: repeat(4, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
	}
	.contenedor .header {
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		height: 0px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: auto;
		z-index: 1000;
	}
	
	#btn-menu {
		display: none;
	    }
	    
	    header label {
		font-size: 0px;
		cursor: pointer;
		display: none
	    }
	    
	
	    .menu ul {
		background: rgba(0, 59, 18, 0.9);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		list-style: none;
	    }
	    
	    .menu ul ul {
		display: none;
	    }
	    
	    .menu a {
		display: block;
		padding: 15px 20px;
		color: #fff;
		text-decoration: none;
	    }
	    
	    .menu a:hover {
		background: rgba(154, 206, 22);
		color: #fff;
	    }
	    
	    .menu a span {
		margin-left: 10px;
	    }
	    
	    .menu ul li:hover ul {
		display: block;
		position: absolute;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 3;
		background: none;
		grid-row: 3 / 5;
		min-width: 330px;
		min-height: 230px;
	}
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 3;
		width: 100%;
		height: 90%;
		max-width: 450px;
		max-height: 350px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 7;
		grid-row: 2 / 3;
		width: auto;
		height: auto;
	}
	
	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 70%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	#imagen {
		width: 230px;
		height: 170px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		transition: 0.5s;
		object-fit: cover;
	}
	
	#imagen:hover {
		scale: 1.2;
	}
	
	.contenedor .widget-3{
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		color: #000;
	}
	
	.contenedor .widget-4 {
		width: 100%;
		height: auto;
		grid-area: 3 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-5 {
		width: 100%;
		height: auto;
		grid-area: 3 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-6 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 3 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-7 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 3 / 5;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-8 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 5 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-9 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-10 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 5 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-4,
	.contenedor .widget-5,
	.contenedor .widget-6,
	.contenedor .widget-7,
	.contenedor .widget-8,
	.contenedor .widget-9,
	.contenedor .widget-10 {
		cursor: pointer;
	}
	.contenedor .widget-11 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
		text-align: center;
	}
	
	.contenedor .widget-12 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
	}
	
	.contenedor .widget-13 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-14 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 5;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-15 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-16 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-17 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	h2 {
		color: #fff;
		font-weight: bolder;
		font-family: 'roboto';
		font-size: 20px;
		cursor: pointer;
	}
	
	h1 {
		font-size: 24px;
		color: black;
		font-family: 'roboto';
	}
	
	h3 {
		font-size: 24px;
		color: black;
		font-family: 'roboto';
		text-align: center;
		border-top: 5px solid rgba(0, 59, 18);
	}
	
	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		text-align: center;
		width: 100%;
	}
	
	.pie {
		width: 100px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 13px;	
	}

	.copy {
		font-size: 13px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 20px;
	}
}

@media screen and (min-width:1415px) and (max-width:1560px) {
	.contenedor {
		width: 90%;
		max-width: 1300px;
		margin: 20px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(6, 1fr);
		grid-template-rows: repeat(4, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
	}
	.contenedor .header {
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		height: 0px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: auto;
		z-index: 1000;
	}
	
	#btn-menu {
		display: none;
	    }
	    
	    header label {
		font-size: 0px;
		cursor: pointer;
		display: none
	    }
	    
	
	    .menu ul {
		background: rgba(0, 59, 18, 0.9);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		list-style: none;
	    }
	    
	    .menu ul ul {
		display: none;
	    }
	    
	    .menu a {
		display: block;
		padding: 15px 20px;
		color: #fff;
		text-decoration: none;
	    }
	    
	    .menu a:hover {
		background: rgba(154, 206, 22);
		color: #fff;
	    }
	    
	    .menu a span {
		margin-left: 10px;
	    }
	    
	    .menu ul li:hover ul {
		display: block;
		position: absolute;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 3;
		background: none;
		grid-row: 3 / 5;
		min-width: 420px;
		min-height: 320px;
	}
	
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 3;
		width: 100%;
		height: 90%;
		max-width: 450px;
		max-height: 350px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 7;
		grid-row: 2 / 3;
		width: auto;
		height: auto;
	}
	
	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 70%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	#imagen {
		width: 250px;
		height: 200px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		transition: 0.5s;
		object-fit: cover;
	}
	
	#imagen:hover {
		scale: 1.2;
	}
	
	.contenedor .widget-3{
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		color: #000;
	}
	
	.contenedor .widget-4 {
		width: 100%;
		height: auto;
		grid-area: 3 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-5 {
		width: 100%;
		height: auto;
		grid-area: 3 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-6 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 3 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-7 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 3 / 5;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-8 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 5 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-9 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-10 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 5 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-4,
	.contenedor .widget-5,
	.contenedor .widget-6,
	.contenedor .widget-7,
	.contenedor .widget-8,
	.contenedor .widget-9,
	.contenedor .widget-10 {
		cursor: pointer;
	}
	.contenedor .widget-11 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
		text-align: center;
	}
	
	.contenedor .widget-12 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
	}
	
	.contenedor .widget-13 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-14 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 5;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-15 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-16 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-17 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	h2 {
		color: #fff;
		font-weight: bolder;
		font-family: 'roboto';
		font-size: 20px;
		cursor: pointer;
	}
	
	h1 {
		font-size: 24px;
		color: black;
		font-family: 'roboto';
	}
	
	h3 {
		font-size: 24px;
		color: black;
		font-family: 'roboto';
		text-align: center;
		border-top: 5px solid rgba(0, 59, 18);
	}
	
	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		text-align: center;
		width: 100%;
	}
	
	.pie {
		width: 120px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 14px;
	}

	.copy {
		font-size: 14px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 25px;
	}
}

@media screen and (min-width:1561px) and (max-width:1690px) {
	.contenedor {
		width: 90%;
		max-width: 1500px;
		margin: 20px auto;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(6, 1fr);
		grid-template-rows: repeat(4, auto);
	
		grid-template-areas: "header header header"
							 "contenido sidebar sidebar"
							 "widget-2 widget-1 widget-2"
							 "footer footer footer";
	}
	.contenedor .header {
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		height: 0px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: auto;
		z-index: 1000;
	}
	
	#btn-menu {
		display: none;
	    }
	    
	    header label {
		font-size: 0px;
		cursor: pointer;
		display: none
	    }
	    
	
	    .menu ul {
		background: rgba(0, 59, 18, 0.9);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		list-style: none;
	    }
	    
	    .menu ul ul {
		display: none;
	    }
	    
	    .menu a {
		display: block;
		padding: 15px 20px;
		color: #fff;
		text-decoration: none;
	    }
	    
	    .menu a:hover {
		background: rgba(154, 206, 22);
		color: #fff;
	    }
	    
	    .menu a span {
		margin-left: 10px;
	    }
	    
	    .menu ul li:hover ul {
		display: block;
		position: absolute;
	    }
	
	.contenedor .contenido {
		grid-column-start: 1;
		grid-column-end: 3;
		background: none;
		grid-row: 3 / 5;
		min-width: 430px;
		min-height: 350px;
	}
	
	#foto {
		grid-column-start: 1;
		grid-column-end: 3;
		width: 100%;
		height: 90%;
		max-width: 450px;
		max-height: 350px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	.contenedor .sidebar {
		background: none;
		text-align: justify;
		align-items: center;
		justify-content: center;
		min-height: 100px;
		grid-column-start: 1;
		grid-column-end: 7;
		grid-row: 2 / 3;
		width: auto;
		height: auto;
	}
	
	.contenedor .widget-1 {
		background: none;
		width: 100%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	#nombre {
		width: 70%;
		height: 100%;
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row: 2 / 3;
		min-width: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.contenedor .widget-2 {
		display: none;
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	#tabla {
		width: 200%;
		height: auto;
		grid-column-start: 2;
		grid-column-end: 5;
		grid-area: 5 / 3;
		min-width: 150px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	}
	
	#imagen {
		width: 300px;
		height: 250px;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
		transition: 0.5s;
		object-fit: cover;
	}
	
	#imagen:hover {
		scale: 1.2;
	}
	
	.contenedor .widget-3{
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		grid-column-start: 3;
		grid-column-end: 5;
		color: #000;
	}
	
	.contenedor .widget-4 {
		width: 100%;
		height: auto;
		grid-area: 3 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-5 {
		width: 100%;
		height: auto;
		grid-area: 3 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-6 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 3 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-7 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 3 / 5;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-8 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 5 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-9 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 5 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-10 {
		display: none;
		width: 100%;
		height: auto;
		grid-area: 5 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
	}
	
	.contenedor .widget-4,
	.contenedor .widget-5,
	.contenedor .widget-6,
	.contenedor .widget-7,
	.contenedor .widget-8,
	.contenedor .widget-9,
	.contenedor .widget-10 {
		cursor: pointer;
	}
	.contenedor .widget-11 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
		text-align: center;
	}
	
	.contenedor .widget-12 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 59, 18);
	}
	
	.contenedor .widget-13 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-14 {
		width: 100%;
		height: 50%;
		grid-area: 4 / 5;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-15 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-16 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 3;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	.contenedor .widget-17 {
		width: 100%;
		height: 50%;
		grid-area: 6 / 4;
		display: flex;
		align-items: center;
		justify-content: center;
		background:  rgba(0, 59, 18);
	}
	
	h2 {
		color: #fff;
		font-weight: bolder;
		font-family: 'roboto';
		font-size: 20px;
		cursor: pointer;
	}

	h1 {
		font-size: 24px;
		color: black;
		font-family: 'roboto';
	}
	
	h3 {
		font-size: 24px;
		color: black;
		font-family: 'roboto';
		text-align: center;
		border-top: 5px solid rgba(0, 59, 18);
	}
	
	 .footer {
		background-color: rgba(0, 0, 0, 0.8);
		color: #fff;
		grid-column-start: 1;
		grid-column-end: 7;
		text-align: center;
	}
	
	.pie {
		width: 130px;
		height: auto;
	}
	
	.social {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	#aviso {
		color: #fff;
		cursor: pointer;
		font-size: 15px;
	}

	.copy {
		font-size: 15px;
	}
	
	#icon {
		color: #fff;
		cursor: pointer;
		font-size: 25px;
	}
}

@media screen and (min-width:1691px) and (max-width:1920px) {

.contenedor {
	width: 90%;
	max-width: 1500px;
	margin: 20px auto;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(4, auto);

	grid-template-areas: "header header header"
						 "contenido sidebar sidebar"
						 "widget-2 widget-1 widget-2"
						 "footer footer footer";
	justify-content: center;
	align-items: center;
						}
.contenedor .header {
	background: none;
	grid-column-start: 1;
	grid-column-end: 7;
	height: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: auto;
	z-index: 1000;
}

#btn-menu {
	display: none;
    }
    
    header label {
	font-size: 0px;
	cursor: pointer;
	display: none
    }
    

    .menu ul {
	background: rgba(0, 59, 18, 0.9);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
    }
    
    .menu ul ul {
	display: none;
    }
    
    .menu a {
	display: block;
	padding: 15px 20px;
	color: #fff;
	text-decoration: none;
    }
    
    .menu a:hover {
	background: rgba(154, 206, 22);
	color: #fff;
    }
    
    .menu a span {
	margin-left: 10px;
    }
    
    .menu ul li:hover ul {
	display: block;
	position: absolute;
    }

.contenedor .contenido {
	grid-column-start: 1;
	grid-column-end: 3;
	background: none;
	grid-row: 3 / 5;
	min-width: 450px;
	min-height: 350px;
}

#foto {
	grid-column-start: 1;
	grid-column-end: 3;
	width: 100%;
	height: 90%;
	max-width: 450px;
	max-height: 350px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.contenedor .sidebar {
	background: none;
	text-align: justify;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	grid-column-start: 1;
	grid-column-end: 7;
	grid-row: 2 / 3;
	width: auto;
	height: auto;
}

.contenedor .widget-1 {
	background: none;
	width: 100%;
	height: 100%;
	grid-column-start: 3;
	grid-column-end: 5;
	grid-row: 2 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
}

#nombre {
	width: 70%;
	height: 100%;
	grid-column-start: 3;
	grid-column-end: 5;
	grid-row: 2 / 3;
	min-width: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contenedor .widget-2 {
	display: none;
	width: 200%;
	height: auto;
	grid-column-start: 2;
	grid-column-end: 5;
	grid-area: 5 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}

#tabla {
	width: 200%;
	height: auto;
	grid-column-start: 2;
	grid-column-end: 5;
	grid-area: 5 / 3;
	min-width: 150px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

#imagen {
	width: 300px;
	height: 250px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	transition: 0.5s;
	object-fit: cover;
}

#imagen:hover {
	scale: 1.2;
}

.contenedor .widget-3{
	width: 100%;
	height: 50%;
	grid-area: 6 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	grid-column-start: 3;
	grid-column-end: 5;
	color: #000;
}

.contenedor .widget-4 {
	width: 100%;
	height: auto;
	grid-area: 3 / 2;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}

.contenedor .widget-5 {
	width: 100%;
	height: auto;
	grid-area: 3 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}

.contenedor .widget-6 {
	display: none;
	width: 100%;
	height: auto;
	grid-area: 3 / 4;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}

.contenedor .widget-7 {
	display: none;
	width: 100%;
	height: auto;
	grid-area: 3 / 5;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}

.contenedor .widget-8 {
	display: none;
	width: 100%;
	height: auto;
	grid-area: 5 / 2;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}

.contenedor .widget-9 {
	display: none;
	width: 100%;
	height: auto;
	grid-area: 5 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}

.contenedor .widget-10 {
	display: none;
	width: 100%;
	height: auto;
	grid-area: 5 / 4;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}

.contenedor .widget-4,
.contenedor .widget-5,
.contenedor .widget-6,
.contenedor .widget-7,
.contenedor .widget-8,
.contenedor .widget-9,
.contenedor .widget-10 {
	cursor: pointer;
}
.contenedor .widget-11 {
	width: 100%;
	height: 50%;
	grid-area: 4 / 2;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 59, 18);
	text-align: center;
}

.contenedor .widget-12 {
	width: 100%;
	height: 50%;
	grid-area: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 59, 18);
}

.contenedor .widget-13 {
	width: 100%;
	height: 50%;
	grid-area: 4 / 4;
	display: flex;
	align-items: center;
	justify-content: center;
	background:  rgba(0, 59, 18);
}

.contenedor .widget-14 {
	width: 100%;
	height: 50%;
	grid-area: 4 / 5;
	display: flex;
	align-items: center;
	justify-content: center;
	background:  rgba(0, 59, 18);
}

.contenedor .widget-15 {
	width: 100%;
	height: 50%;
	grid-area: 6 / 2;
	display: flex;
	align-items: center;
	justify-content: center;
	background:  rgba(0, 59, 18);
}

.contenedor .widget-16 {
	width: 100%;
	height: 50%;
	grid-area: 6 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background:  rgba(0, 59, 18);
}

.contenedor .widget-17 {
	width: 100%;
	height: 50%;
	grid-area: 6 / 4;
	display: flex;
	align-items: center;
	justify-content: center;
	background:  rgba(0, 59, 18);
}

h2 {
	color: #fff;
	font-weight: bolder;
	font-family: 'roboto';
	font-size: 20px;
	cursor: pointer;
}

h1 {
	font-size: 24px;
	color: black;
	font-family: 'roboto';
}

h3 {
	font-size: 24px;
	color: black;
	font-family: 'roboto';
	text-align: center;
	border-top: 5px solid rgba(0, 59, 18);
}

 .footer {
	background-color: rgba(0, 0, 0, 0.8);
	color: #fff;
	grid-column-start: 1;
	grid-column-end: 3;
	text-align: center;
}

.pie {
	width: 150px;
	height: auto;
}

.social {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#aviso {
	color: #fff;
	cursor: pointer;
}

#icon {
	color: #fff;
	cursor: pointer;
	font-size: 35px;
}

}


