html, body {
    width: 100%;
    height: 100%;
}
nav {
    height: 60px;
    position: absolute;
    right: 140px;
}
nav li {
    display: inline-block;
}
nav li a {
    margin-left: 15px;
    display: block;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 60px;
    opacity: .5;
    transition: opacity 0.5s ease 0s;    
}
nav li a:hover, nav li a:visited {
    opacity: 1;
    text-decoration: none !important;
}
@media screen and (max-width: 750px) {
    nav {
        display: none !important;
    }
}
main {
    width: 100%;
}
section {
    background-size: cover;
    background-position: center;
}
section.animation {
    animation: animationFrames linear 10s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    animation-fill-mode:forwards; /*when the spec is finished*/
    -webkit-animation: animationFrames linear 10s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
    -moz-animation: animationFrames linear 10s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -moz-animation-fill-mode:forwards; /*FF 5+*/
    -o-animation: animationFrames linear 10s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -o-animation-fill-mode:forwards; /*Not implemented yet*/
    -ms-animation: animationFrames linear 10s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
    -ms-animation-fill-mode:forwards; /*IE 10+*/      
}
section .main {
    max-width: 1100px;    
    padding: 75px 10% 100px 10%;
    margin: auto;
    text-align: left;
}
section h1 {
    margin-bottom: 25px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 4.5em;
    color: #fff;
    /*text-transform: uppercase;*/
    line-height: 1.2em;
}
section h2 {
	font-size: 1.2em;
	font-weight: 200;
	color: #ddd;
}
section p {
	margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
	line-height: 20px;
	font-weight: 400;
}
article .main {
    max-width: 1000px;
    padding: 40px 10% 25px 10%;
    margin: auto;
}
article img {
    display: block;
    max-width: 100%;
    margin: 0 auto 30px 0;
}
article h1 {
    margin-bottom: 10px;
font-family: 'Anton', sans-serif;
    font-weight: 100;
    font-size: 2.2em;
}
article h2 {
    margin-bottom: 15px;
	font-size: 1.2em;
	font-weight: 200;
	color: #696969;
}
article p {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	margin-bottom: 20px;
}
article p.column {
    width: 40%;
    margin-left: 5%;
    float: right;
}
article a:link {
    color: #AA0F1D
}
article a:visited {
    color: #AA0F1D
}
article a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 600px) {
    article p.column {
        width: 90%;
        margin: auto;
        float: none;
    }
}


/*OTROS*/
.arrow {
    width: 50px;
    height: 50px;
    display: block;
    margin-top: 20px;
    border-radius: 50%;
    background-color: #000;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .5;
    transition: all .5s ease;
}
.arrow.down {
    background-image: url(../svg/arrow_down.svg);
}
.arrow:hover {
    opacity: 1;
}
/*OTROS*/
/*ANIMATION*/
@keyframes animationFrames{
  0% {
    opacity:0;
    background-size: 120%;
  }
  10% {
    opacity:1;  
    background-size: 120%;
  }
  100% {
    opacity:1;
    background-size: 100%;
  }
}
@-moz-keyframes animationFrames{
  0% {
    opacity:0;
    background-size: 120%; 
  }
  10% {
    opacity:1;  
    background-size: 120%;
  }
  100% {
    opacity:1;
    background-size: 100%;
  }
}
@-webkit-keyframes animationFrames {
  0% {
    opacity:0;
    background-size: 120%;  
  }
  10% {
    opacity:1;  
    background-size: 120%;
  }    
  100% {
    opacity:1;
    background-size: 100%;
  }
}
@-o-keyframes animationFrames {
  0% {
    opacity:0;
    background-size: 120%; 
  }
  10% {
    opacity:1;  
    background-size: 120%;
  }
  100% {
    opacity:1;
    background-size: 100%;
  }
}

@-ms-keyframes animationFrames {
  0% {
    opacity:0;
    background-size: 120%;
  }
  10% {
    opacity:1;  
    background-size: 120%;
  }
  100% {
    opacity:1;
    background-size: 100%;
  }
}
