@charset "UTF-8";
/* CSS Document */

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Gotham, Helvetica Neue, Helvetica, Arial," sans-serif";
}

html, body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 10px 10px 50px 10px;
}

header {
	padding: 32px;
}

slider {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #1f1f1f;
	overflow: hidden;
	position: absolute;
}

slider > * {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background: #1f1f1f;
	animation: slide 32s infinite;
	overflow:hidden;
}

slide:nth-child(1){
	left: 0%;
	animation-delay: -1s;
	background-image: url(images/slide_01_.jpg);
	background-size: cover;
	background-position: center;
}

slide:nth-child(2){
	animation-delay: 4s;
	background-image: url(images/slide_02_.jpg);
	background-size: cover;
	background-position: center;
}

slide:nth-child(3){
	animation-delay: 8s;
	background-image: url(images/slide_03_.jpg);
	background-size: cover;
	background-position: center;
}

slide:nth-child(4){
	animation-delay: 12s;
	background-image: url(images/slide_04_.jpg);
	background-size: cover;
	background-position: center;
}

slide:nth-child(5){
	animation-delay: 16s;
	background-image: url(images/slide_05_.jpg);
	background-size: cover;
	background-position: center;
}

slide:nth-child(6){
	animation-delay: 20s;
	background-image: url(images/slide_06_.jpg);
	background-size: cover;
	background-position: center;
}

slide:nth-child(7){
	animation-delay: 24s;
	background-image: url(images/slide_07_.jpg);
	background-size: cover;
	background-position: center;
}

slide:nth-child(8){
	animation-delay: 28s;
	background-image: url(images/slide_08_.jpg);
	background-size: cover;
	background-position: center;
}

slide p {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 30px;
	text-align:justify;
	display: inline-block;
	width: 100%;
	margin-left: 10px;
	margin-top: 700px;
	color: #fff;
}

@keyframes slide {
		0% {left: 0%;}
	10% {left: 0%;}
	20% {left: -100%;}
	30% {left: -100%;}
	40% {left:-200%;}
	50% {left: -200%;}
	60% {left: -300%;}
	80% {left:-300%;}
	100% {left: 0%;}
}

img  {
	width: auto;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}


footer {
	padding: 20px 30px;	
}


.style-logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 400px;
}

.style-nav ul {
	list-style-type: none;
}

.style-nav ul li a {
	text-decoration: none;
	color: #a687c3;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 8px;
}

h1 {
	font-size: 57px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 60px;
}

h3 {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 120px;
}

h4 {
	font-size: 16px;
	font-weight: 200;
	margin-bottom: 35px;
}

.button {
	border: 2px #FFFFFF solid;
	padding: 8px 30px;
	border-radius: 0px ;
	color: #FFFFFF;
	text-decoration: none;
}

.col {
	float: left
}

.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}

.footer-text {
	font-size: 14px;
	margin-bottom:20px;
}

/*Tablet View*/

@media (min-width: 768px){
	
	.style-nav ul li {
		display: inline-block;
	}
	
}

/*Desktop View*/

@media (min-width: 1024px){
	
	.style-logo {
		float: left;
	}
	
	.style-nav {
		float: right;
	}
	
}
 /* unvisited link */

a:link {
    color: black;
}

/* visited link */

a:visited {
    color: black;
}

/* mouse over link */

a:hover {
    color: black; 
	font-weight: bold;
}

/* selected link */

a:active {
    color: black;
	font-weight: bold;
}


