*{
    margin: 0;
    padding: 0;
}
body{
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}
.header{
    height: 25vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header img{
    height: 10vh;
}
.header img:nth-child(2){
	height: 4.5vh;
}
#contenedor-politicas{
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}
.bq-black{
    display: block;
	height: 7vh;
	width: 100%;
    position: absolute;
    top:-10px;
    left: 0;
	background-image:url("../img/bq-div-bg-black.png");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top left;
}
.politicas{
	width: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.politicas h1{
	padding-top: 8vh;
    padding-bottom: 5vh;
	font-size: 2em;
	text-transform: uppercase;
    align-self: center;
}
.politicas p{
    padding-bottom: 3vh;
}
.politicas p:last-child{
    padding-bottom: 5vh;
}
.nota{
	font-weight: 600;
}

footer{
	height: 10vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: black;
	/* border-top: 2px solid white; */
}
footer div{
	display: block;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
footer p{
	font-size: 14px;
	color: white;
}

@media screen and (max-width:1100px){

	.header img{
		height: 9vh;
	}
	.header img:nth-child(2){
		height: 4vh;
	}
}


@media screen and (max-width:900px){

	.bq-black{
		display: block;
		height: 7vh;
		width: 100%;
		position: absolute;
		top:0;
		left: 0;
	}
	.header{
		height: 18vh;
	}
	.header img{
		height: 8vh;
	}
	.header img:nth-child(2){
		height: 3.5vh;
	}
}


@media screen and (max-width:780px){

	.header img{
		height: 7vh;
	}
	.header img:nth-child(2){
		height: 3vh;
	}
	.politicas h1{
		font-size: 1.5em;
	}
}
@media screen and (max-width:500px){

	.header img{
		height: 5vh;
	}
	.header img:nth-child(2){
		height: 2vh;
	}
footer div{
	width: 85%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
footer p{
	font-size: 12px;
	text-align: center;
}
}