.preguntas{
	position: relative;
	top: 206px;
}

.preguntas h1{
	width: 100%;
	margin-top: 15px;
	font-family: 'Hammersmith One';
	font-size: 1.6em;
	padding: 12px 10px; 
	//background: #6B980A;
	color: #222;
}

#preguntas_web{
	max-height: 0;
	overflow: hidden;
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	font-family: 'Montserrat';
	color: #222;
	font-size: 0.75em;
	padding: 10px;
	text-align: left;	
}

/*Movil*/
#preguntas_movil{
	max-height: 2000px;
	font-family: 'Montserrat';
	color: #222;
	font-size: 0.75em;
	padding: 10px;
	text-align: left;	
}

.pregunta{
	width: 100%; 
	max-height: 1000px;
}

.pregunta a{
	display: block;
	position: relative;
	background: rgb(232, 236, 237);
	padding: 6px;
	text-decoration: none;
	color: #222;
	border-bottom: solid 1px rgba(255, 255, 255, 1);
	transition: all 0.15s;
}

.pregunta a:hover{
	background: rgb(35, 166, 216);
	color: #fff;
}

.pregunta > div{
	display: none;
	position: relative;
	left: 2%;
	padding: 10px;
	color: #222;
	width: 96%;
}

.pregunta > div > ul{
	padding-left: 15px;
}

.pregunta ul li > ul{
	padding-left: 20px;
}

.pregunta div:target{
	display: table;
}

#content h3{
	display: none;
	font-size: 1.6em;
	margin-bottom: 5px;
	color: rgb(20, 165, 206);
}

@media (min-width: 1024px){
	.preguntas{
		position: relative;
		top: 86px;
	}
	
	#preguntas_web{
		max-height: 1000px;
		width: 87%;
		left: 12%;
	}

	#preguntas_movil{
		max-height: 0;
		overflow: hidden;
	}

	.pregunta{
		max-height: 0;
		overflow: hidden;
	}

	#preguntas_web > div:nth-child(1){
		width: 40%;
	}

	#preguntas_web > div:nth-child(2){
		width: 60%;
	}

	#content h3{
		font-size: 1.6em;
		margin-bottom: 5px;
		color: rgb(20, 165, 206);
		display: table;
	}

}