*{
	font-family: 'Montserrat', sans-serif;
}
body{
	background-color: black;
	margin: 0px;
}
header{
	background-color: black;
	padding-top: 120px;
	padding-bottom: 120px;
	box-sizing: border-box;
	color: #E6F1FD;
}
a{
		text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a:hover{
		text-decoration: none;
    color: inherit;
    cursor: pointer;
}
textarea {
  resize: none;
}
img{
	user-select: none;
}
.home-btn{
	position: fixed;
	background-color: rgba(255, 255, 255, 0.9);
	height: 80px;
	width: 400px;
	left: 50%;
	bottom: 40px;
	margin-left: -200px;
	text-align: center;
	padding-top: 25px;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 900;
	color: black;
	border: solid 1px white;
	cursor: pointer;
	z-index: 1;
	transition-duration: 0.3s;
}
.home-btn:hover{
	transform: scale(1.05);
}
.privacy-contenedor {
  min-height: 100%;
  height: 100%;
  background-color: black;
  padding-bottom: 300px;
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 80px;
}
.logo-header{
	opacity: 0;
	animation: 0.8s logoIn 1 ease-in-out;
	animation-fill-mode:forwards;
	margin-bottom: 100px;
}
.privacy-contenedor p{
	color: white;
	font-size: 14px;
}
@keyframes logoIn{
	0%{
		transform: translateY(30px);
		transform: scale(1.1);
		opacity: 0;
	}
	100%{
		transform: translateY(0px);
		opacity: 1;
		transform: scale(1.0);
	}
}
@media (min-width:320px) and (max-width:1024px) {
	
}



































