/********************
GENERAL
********************/

* {
    margin: 0 auto;
    padding: 0;
}

html, body {
	width: 100%;
	height: 100%;
	color: #000;
	background: #fff;
	text-align: center;
}

body {
	margin: 0 auto;
	padding: 0;
	font-size: 28px;
	font-family: "Lato", sans-serif;
	font-weight: 400;
}

a, a:visited, a:hover, a:focus {
    text-decoration: none;
}

ul {
	list-style: none;
	list-style-position: outside;
}

ul li {
	display: inline-block;
}

h2 {
	font-weight: normal;
}



/********************
PARALLAX
********************/
.parallax-1 {
	position: relative;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.parallax-1 {
	background-image: url("../img/img1.jpg");
	min-height: 100%;
	opacity: 1;
	padding: 150px 20px;
	background-size: cover;
	color: #fff;
	z-index: 1;
}



/********************
HEADER
********************/

header h1 {
	margin-top: -40px;
	padding-bottom: 20px;
}

header h2 {
	padding: 0 0 40px;
}

header h2 a {
	color: #fff;
	font-size: 1em;
}

.btn {
	background: #000;
	color: #fff;
	border-radius: 30px;
	padding: 10px 25px;
	font-size: 0.7em;
	text-transform: uppercase;
	font-weight: bold;
	box-shadow: 2px 5px 10px #333;
}

.btn:hover {
	background: #fff;
	color: #000;
	transition-duration: 0.8s;
}

.arrow {
	width: 100%;
	text-align: center;
	padding-bottom: 5px;
	position: relative;
	margin-top: 40px;
}

#arrow1 img {
	width: 40px;
}

#arrow2 img {
	width: 50px;
	padding-top: 5px;
}

.animate-fade-in1 {
	animation:animate-fade-in 3s infinite;
}

.animate-fade-in2 {
	animation:animate-fade-in 3s infinite;
	animation-delay: 1s;
}

@keyframes animate-fade-in {
	0% { opacity: 0; }
	50% {opacity: 1; }
	100% { opacity:0; }
}

.content {
	overflow-x: hidden;
}



/********************
SECTION
********************/

section {
	position: absolute;
	width: 100%;
	z-index: 2;
	color: #fff;
	background-color: transparent;
	background-image: -webkit-linear-gradient(83deg, #000 70%, transparent 30%);
	height: 650px;
	margin-top: -650px;
}

.section-float {
	padding: 300px 20px 0;
}

.section-float p {
	font-size: 0.7em;
	padding-bottom: 10px;
	max-width: 850px;
}



/********************
FOOTER
********************/

footer {
	position: absolute;
	z-index: 3;
	width: 100%;
	color: #000;
	background-color: transparent;
	background-image: -webkit-linear-gradient(95deg, #fff 60%, transparent 40%);
	height: 350px;
	margin-top: -200px;
	text-align: right;
}

.footer-float {
	padding: 150px 50px 0 0;
}

footer p {
	font-size: 0.5em;
	font-weight: bold;
}

footer ul {
	margin-right: 20px;
	margin-bottom: 40px;
}

footer ul li {
	padding: 25px;
}

footer ul li img {
	width: 40px;
}

#cf {
  position: relative;
}

#cf img {
  position: absolute;
  box-shadow: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

#cf img.top:hover {
  opacity:0;
}

