*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.main_box{
	margin-top: 30px;
	border: 1px solid #98A1A4;
	padding: 2%;
}

.comments .media{
	padding-bottom: 10px;
}

header{
 	width: 100%;
 	position: fixed;
 	top: 0;
 	left: 0;
 	background: #fff;
}

.imagen img{
	width: 90%;
}

.imagen1 img{
	width: 100%;
}

.imagen2 img{
	width: 100%;
}

.logo img{
 	width: 103px;
 	height: 58px;
}

/*BARRA MENU*/

.container__menu{
 	width: 30%;
 	height: 70px;
 	background: black;
 	padding: 0px 20px;
}

.menu{
	max-width: 1200px;
	margin: auto;
	height: 100%;
}

nav{
	height: 100%;
}

nav > ul{
	height: 80%;
	display: flex;
}

nav > ul > li{
	height: 80%;
	list-style: none;
	position: relative;
}

nav > ul > li > a{
	width: 100%;
	height: 80%;
	display: flex;
	align-items: center;
	padding: 30px;
	color: white;
	text-transform: uppercase;
	font-size: 16px;
	transition: all 300ms ease;
}

nav > ul > li > a:hover{
	transform: scale(1.1);
	background: greenyellow;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

nav > ul > li:first-child > a{
	padding: 10px 20px;
}

nav > ul > li:first-child:hover > a{
	padding: 15px 30px;
}

#selected{
	transform: scale(1.1);
	background-color: white;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/*SUB MENU*/

nav ul li ul{
	width:250px;
	display: flex;
	flex-direction: column;
	background: black;
	color: white;
	position: absolute;
	top: 90px;
	left: -5px;
	padding: 6px 10px;
	visibility: hidden;
	opacity: 0;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	z-index: 10;
	transition: all 300ms ease;
}

nav ul li:hover ul{
	visibility: visible;
	opacity: 1;
	top: 70px;
}

nav ul li ul:before{
	content: '';
	width: 0;
	height: 0%;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 12px solid white;
	position: absolute;
	top: -12px;
	left: 20px;
}

nav ul li ul li a{
	display: block;
	color: #0099E9;
	padding: 4px;
	margin-top: 10px;
	font-size: 14px;
	text-transform: uppercase;
	transition: all 300ms ease;
}

nav ul li ul li a:hover{
	background: greenyellow;
	color: #fff;
	transform: scale(1.1);
	padding-left: 5px;
	font-size: 15;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/*BLOCK*/

main{
	background: white;
	padding: 40px 20px;
	margin-top: 194px;

}

/*ELEMENTOS RESPONSIVE*/
.icon__menu{
	font-size: 26px;
	color: black;
	cursor: pointer;
	width: 60px;
	height: 100%;
	display: none;
	align-items: center;
}

#label__check{
	width: 26px;
	height: 100%;
	display: none;
}

#check__menu{
	display: none;
}

@media screen and (max-width: 620px){
	.search input{
		display: none;
	}

	.header__superior{
		padding: 10px;
	}
	
	nav > ul{
		flex-direction: column;
		background-color:black;
		position: fixed;
		padding: 4px;
		left: 0;
		top: 100;
		width: 60%;
		height: 300%;
		transition: all 300ms ease;
		z-index: 100;
		opacity: 0;
		visibility: hidden;
	}

	nav > ul > li > a:hover{
		transform: scale(1);
	}

	nav ul li ul{
		left: 150px;
	}

	nav > ul > li:hover ul{
		top: 60px;
	}

	nav > ul > li:first-child a{
		background-position: 20px;
	} 

	#selected{
		transform: scale(1);
	}

	#label__check{
		display: block;
	}

	.icon__menu{
		display: flex;
	}

	#check__menu:checked ~ nav > ul{
		height: 400px;
		visibility: visible;
		opacity: 1;
	}
}
.dropdown-menu{
	width:250px;
	display: flex;
	flex-direction: column;
	background: black;
	color: white;
	position: absolute;
	top: 90px;
	left: 70px;
	padding: 6px 10px;
	visibility: hidden;
	opacity: 0;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	z-index: 10;
	transition: all 300ms ease;
}
.dropdown-menu1{
	width:250px;
	display: flex;
	flex-direction: column;
	background: black;
	color: white;
	position: absolute;
	top: 90px;
	left: 70px;
	padding: 6px 10px;
	visibility: hidden;
	opacity: 0;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	z-index: 10;
	transition: all 300ms ease;
}