@font-face {
  src: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/PFDinTextCompPro-Medium.ttf);
  font-family: pfd-medium;
}
@font-face {
  src: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/PT_Sans-Web-Regular.ttf);
  font-family: ptsans-regular;
}
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-size: 62.5%;
  overflow: hidden;
}

.main {
		z-index:2;

  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.sidebar-hover,
.sidebar-real,
.left-part,
.content,
.bg-part {
  position: absolute;
  top: 0;
  height: 100%;
}

/* END OF GLOBAL STYLES */
/* SIDEBAR HOVER STYLES */
.sidebar-hover {
	text-align:center;
  position: fixed;
  z-index: 100;
  left: 0;
  width: 15rem;
}
.sidebar-hover:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
}
.sidebar-hover:hover ~ .sidebar-real {
  max-width: 30rem;
}
.sidebar-hover:hover ~ .sidebar-real .nav-elem {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.sidebar-hover:hover ~ .sidebar-real .nav-elem.nav-1 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.sidebar-hover:hover ~ .sidebar-real .nav-elem.nav-2 {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}
.sidebar-hover:hover ~ .sidebar-real .nav-elem.nav-3 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.sidebar-hover:hover ~ .sidebar-real .nav-elem.nav-4 {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}

.sidebar-hover:hover ~ .sections .content {
  -webkit-transform: translateX(30rem);
          transform: translateX(30rem);
}

.pagination {
  z-index: 500;
  position: absolute;
  font-size: 2.3rem;
  font-family: ptsans-regular;
  top: 26.7rem;
  left: 0rem;
  width: 15rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  /*
  &:before {
    content: "";
    display: block;
    position: absolute;
    top: -0.5rem;
    right: -0.2rem;
    height: 4rem;
    width: 0.5rem;
    border-radius: 5px;
    background: rgba(255,255,255, 0.9);
  }*/
}
.pagination:after {
  content: ">";
  color: #fff;
  position: absolute;
  display: block;
  right: 3rem;
  top: 0.5rem;
  -webkit-animation: navArrowMove 1s infinite;
          animation: navArrowMove 1s infinite;
}
.pagination .page {
  color: #fff;
}

/* END OF SIDEBAR HOVER */
/* REAL SIDEBAR (OFF-CANVAS MENU) STYLES */
.sidebar-real {
  z-index: 200;
  left: 15rem;
  width: 30rem;
  height: 500rem;
  max-width: 0;
  background: #08f;
  overflow: hidden;
  -webkit-transition: max-width 0.4s 0.2s, -webkit-transform 0.3s;
  transition: max-width 0.4s 0.2s, -webkit-transform 0.3s;
  transition: max-width 0.4s 0.2s, transform 0.3s;
  transition: max-width 0.4s 0.2s, transform 0.3s, -webkit-transform 0.3s;
  will-change: max-width, transform;
}
.sidebar-real:hover {
  max-width: 30rem;
}
.sidebar-real:hover .nav-elem {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.sidebar-real:hover .nav-elem.nav-1 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.sidebar-real:hover .nav-elem.nav-2 {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}
.sidebar-real:hover .nav-elem.nav-3 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.sidebar-real:hover .nav-elem.nav-4 {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}


.sidebar-real:hover ~ .sections .content {
  -webkit-transform: translateX(30rem);
          transform: translateX(30rem);
}

.nav-elem {
  position: relative;
  width: 100%;
  height: 25vh;
  //height: 19.81rem;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.4s 0.3s;
  transition: -webkit-transform 0.4s 0.3s;
  transition: transform 0.4s 0.3s;
  transition: transform 0.4s 0.3s, -webkit-transform 0.4s 0.3s;
  will-change: transform;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  cursor: pointer;
}
.nav-elem:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  will-change: background;
}
.nav-elem:hover:after {
  background: transparent;
}
.nav-elem.nav-1 {
  background-image: url(../../img/sea-1027999_960_720.jpg);
}
.nav-elem.nav-2 {
  background-image: url(../../img/jellyfish-698521_960_720.jpg);
}
.nav-elem.nav-3 {
  background-image: url(../../img/iceberg-404966_960_720.jpg);
}
.nav-elem.nav-4 {
  background-image: url(../../img/algodones-dunes-1654439_960_720.jpg);
}


/* REAL SIDEBAR STYLES END */
/* SECTIONS STYLES */
.sections {
  height: 100%;
  -webkit-transition: margin 0.5s;
  transition: margin 0.5s;
  will-change: margin;
}

.section {
  position: relative;
  height: 100%;
}
.section.section-1 .left-part {
  background-image: url(../../img/sea-1027999_960_720.jpg);
}
.section.section-1 .bg-part {
  background-image: url(../../img/sea-1027999_960_720.jpg);
}
.section.section-2 .left-part {
  background-image: url(../../img/jellyfish-698521_960_720.jpg);
}
.section.section-2 .bg-part {
  background-image: url(../../img/jellyfish-698521_960_720.jpg);
}
.section.section-3 .left-part {
  background-image: url(../../img/iceberg-404966_960_720.jpg);
}
.section.section-3 .bg-part {
  background-image: url(../../img/iceberg-404966_960_720.jpg);
}
.section.section-4 .left-part {
  background-image: url(../../img/algodones-dunes-1654439_960_720.jpg);
}
.section.section-4 .bg-part {
  background-image: url(../../img/algodones-dunes-1654439_960_720.jpg);
}


.left-part,
.bg-part {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-attachment: fixed;
  -webkit-transition: margin 0.8s;
  transition: margin 0.8s;
  will-change: margin;
}

.left-part {
  z-index: 20;
  left: 0;
  width: 15rem;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.content {
  left: 15rem;
  width: calc(100% - 15rem);
  height: 100%;
  -webkit-transition: -webkit-transform 0.4s 0.2s;
  transition: -webkit-transform 0.4s 0.2s;
  transition: transform 0.4s 0.2s;
  transition: transform 0.4s 0.2s, -webkit-transform 0.4s 0.2s;
  will-change: transform;
}


.section-heading,
.additional-text {
  display: block;
  position: absolute;
  z-index: 700;
  color: #e0fafa;
  line-height: 1;
  -webkit-transition: opacity 0.1s, color 0.3s, -webkit-transform 0.4s;
  transition: opacity 0.1s, color 0.3s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.1s, color 0.3s;
  transition: transform 0.4s, opacity 0.1s, color 0.3s, -webkit-transform 0.4s;
  will-change: transform, opacity;
}

.section-heading.not-visible,
.additional-text.not-visible {
  -webkit-transform: translateY(-10rem);
          transform: translateY(-10rem);
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.2s, -webkit-transform 0.4s;
  transition: opacity 0.2s 0.2s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.2s 0.2s;
  transition: transform 0.4s, opacity 0.2s 0.2s, -webkit-transform 0.4s;
}

.section-heading {
  top: 18.7rem;
  left: 0;
  font-size: 6rem;
  line-height: 1;
  color: rgba(0, 0, 255, 0.8);
 padding: 0 2rem 1rem;
   cursor: pointer;
}
.section-heading:hover {
  color: rgba(255, 89, 89, 0.7);
}

.additional-text {
  background: rgba(0, 0, 0, 0.4);
  font-family: ptsans-regular;
   left: 2rem;
 font-size: 3rem;
   top: 26.7rem;
 padding: 0.5rem;
  
}

.bg-part {
  width: 12.5%;
}
.bg-part:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.bg-part:nth-child(3), .bg-part:nth-child(5) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.bg-part:nth-child(2), .bg-part:nth-child(6) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.bg-part:nth-child(1), .bg-part:nth-child(7) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.bg-part:nth-child(8) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.bg-part:nth-child(1) {
  left: 0%;
}
.bg-part:nth-child(2) {
  left: 12.5%;
}
.bg-part:nth-child(3) {
  left: 25%;
}
.bg-part:nth-child(4) {
  left: 37.5%;
}
.bg-part:nth-child(5) {
  left: 50%;
}
.bg-part:nth-child(6) {
  left: 62.5%;
}
.bg-part:nth-child(7) {
  left: 75%;
}
.bg-part:nth-child(8) {
  left: 87.5%;
}

.scroll-down {
  position: fixed;
  z-index: 500;
  -webkit-transition: opacity 0.3s 1.7s, z-index 0.5s 1.5s, -webkit-transform 0.5s 1.5s;
  transition: opacity 0.3s 1.7s, z-index 0.5s 1.5s, -webkit-transform 0.5s 1.5s;
  transition: transform 0.5s 1.5s, opacity 0.3s 1.7s, z-index 0.5s 1.5s;
  transition: transform 0.5s 1.5s, opacity 0.3s 1.7s, z-index 0.5s 1.5s, -webkit-transform 0.5s 1.5s;
  font-size: 3rem;
  font-family: ptsans-regular;
  text-transform: uppercase;
  bottom: 8rem;
  left: calc(50% - 15rem);
  color: #fff;
  width: 30rem;
  text-align: center;
}
.scroll-down.removed {
  -webkit-transform: translateY(-20rem);
          transform: translateY(-20rem);
  opacity: 0;
  z-index: -10;
  -webkit-transition: opacity 0.3s 0.2s, z-index 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.3s 0.2s, z-index 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s 0.2s, z-index 0.5s;
  transition: transform 0.5s, opacity 0.3s 0.2s, z-index 0.5s, -webkit-transform 0.5s;
}
.scroll-down:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -3rem;
  left: calc(50% - 1.5rem);
  width: 3rem;
  height: 3rem;
  border: 0.5rem solid #fff;
  border-left: none;
  border-top: none;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: arrowMove 1.2s infinite;
          animation: arrowMove 1.2s infinite;
}

@-webkit-keyframes arrowMove {
  to {
    -webkit-transform: rotate(45deg) translateY(2rem) translateX(2rem);
            transform: rotate(45deg) translateY(2rem) translateX(2rem);
    opacity: 0;
  }
}

@keyframes arrowMove {
  to {
    -webkit-transform: rotate(45deg) translateY(2rem) translateX(2rem);
            transform: rotate(45deg) translateY(2rem) translateX(2rem);
    opacity: 0;
  }
}
@-webkit-keyframes navArrowMove {
  to {
    -webkit-transform: translateX(2rem);
            transform: translateX(2rem);
    opacity: 0;
  }
}
@keyframes navArrowMove {
  to {
    -webkit-transform: translateX(2rem);
            transform: translateX(2rem);
    opacity: 0;
  }
}
.codepen-link {
  color: inherit;
  text-decoration: none;
}

.check-out a {
	z-index:30;
  color: #ffaaaa;
}

//------------------------------------------
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 300;
}
body{
  
    color: #aaf;
    font-weight: 300;
}
    body ::-webkit-input-placeholder{
        color: white;
        font-weight: 300;
    }
    body ::-moz-placeholder{
        color: white;
        opacity: 1;
        font-weight: 300;
    }
    body :-ms-input-placeholder {
        color: white;
        opacity: 1;
        font-weight: 300;
    }
.contenido1{
	
    position: absolute;
     width: 100%;
    height: 100%;
     overflow: hidden;
}

.container{
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 0;
    height: 400px;
    text-align: center;
}

.container h1 {
    font-size: 40px;
    font-weight: 200px;
    color: white;
    opacity: 1;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.burbujas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
    .burbujas li{
        position: absolute;
        list-style: none;
        display: block;
        text-align: center;
        color: #aaf;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, .7);
        background-color: rgba(255, 255, 255, 0.3);
        bottom: -160px;
        box-shadow: 0 0 20px 1px rgba(255, 255, 255, .5);
        -webkit-animation: square 25s infinite;
        -moz-animation: square 25s infinite;
        animation: square 25s infinite;
        -webkit-transition-timing-function: linear;
        -moz-transition-timing-function: linear;
        transition-timing-function: linear;
    }
    .burbujas li span{
        position: absolute;
        display: block;
        -webkit-border-radius: 50%;
        -moz-border-radius:50%;
        border-radius: 50%;
        width: 90%;
        height: 90%;
        background-color: rgba(255, 255, 255, .15);
    }

    .burbujas li:nth-child(1){
        left: 10%;

    }
    .burbujas li:nth-child(2){
        left: 20%;
        width: 80px;
        height: 80px;
        box-shadow: 0 0 20px 1px rgba(255, 255, 255, 0);
        -webkit-animation-delay: 2s;
        -moz-animation-delay: 2s;
        animation-delay: 2s;
        -webkit-animation-duration: 17s;
        -moz-animation-duration: 17s;
        animation-duration: 17s;
    }
    .burbujas li:nth-child(3){
        left: 25%;
        -webkit-animation-delay: 4s;
        -moz-animation-delay: 4s;
        animation-delay: 4s;
    }
    .burbujas li:nth-child(4){
        left: 40%;
        width: 60px;
        height: 60px;
        box-shadow: 0 0 20px 1px rgba(255, 255, 255, .2);
        -webkit-animation-duration: 22s;
        -moz-animation-duration: 22s;
        animation-duration: 22s;
        background-color: rgba(255, 255, 255, .25);
    }
    .burbujas li:nth-child(5){
        left: 70%;
    }
    .burbujas li:nth-child(6){
        left: 80%;
        width: 130px;
        height: 130px;
        box-shadow: 0 0 20px 1px rgba(255, 255, 255, 0);
        -webkit-animation-delay: 3s;
        -moz-animation-delay: 3s;
        animation-delay: 3s;
        background-color: rgba(255, 255, 255, .22);
    }
    .burbujas li:nth-child(7){
        left: 32%;
        width: 160px;
        height: 160px;
        box-shadow: 0 0 20px 1px rgba(255, 255, 255, 0);
        -webkit-animation-delay: 7s;
        -moz-animation-delay: 7s;
        animation-delay: 7s;
    }
    .burbujas li:nth-child(8){
        left: 55%;
        width: 20px;
        height: 20px;
        -webkit-animation-delay: 15s;
        -moz-animation-delay: 15s;
        animation-delay: 15s;
        -webkit-animation-duration: 40s;
        -moz-animation-duration: 40s;
        animation-duration: 40s;
    }
    .burbujas li:nth-child(9){
        left: 65%;
        width: 35px;
        height: 35px;
        -webkit-animation-delay: 2s;
        -moz-animation-delay: 2s;
        animation-delay: 2s;
        -webkit-animation-duration: 40s;
        -moz-animation-duration: 40s;
        animation-duration: 40s;
        background-color: rgba(255, 255, 255, .3);
    }
    .burbujas li:nth-child(10){
        left: 90%;
        width: 160px;
        height: 160px;
        box-shadow: 0 0 20px 1px rgba(255, 255, 255, 0);
        -webkit-animation-delay: 11s;
        -moz-animation-delay: 11s;
        animation-delay: 11s;
    }

    @-webkit-keyframes square{
        0%{
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            transform: translateY(0);
        }
        100%{
            -webkit-transform: translateY(-700px) rotate(600deg);
            -moz-transform: translateY(-700px) rotate(600deg);
            transform: translateY(-700px) rotate(600deg);
        }
    }

    @keyframes square{
        0%{
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            transform: translateY(0);
        }
        100%{
            -webkit-transform: translateY(-700px) rotate(600deg);
            -moz-transform: translateY(-700px) rotate(600deg);
            transform: translateY(-700px) rotate(600deg);
        }
    }


//--------------------------------------
.social_icon {
	position:absolute;
	z-index:1;
	top: 10px;
	 width:50px; 
	 height:5px;
	 margin:0px auto;
}


.social-icons .fa {
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	color: #FFF;
	color: rgba(255, 255, 255, 0.8);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.social-icons.icon-circle .fa{ 
	border-radius: 50%;
}
.social-icons.icon-rounded .fa{
	border-radius:5px;
}
.social-icons.icon-flat .fa{
	border-radius: 0;
}

.social-icons .fa:hover, .social-icons .fa:active {
	color: #FFF;
	-webkit-box-shadow: 1px 1px 3px #333;
	-moz-box-shadow: 1px 1px 3px #333;
	box-shadow: 1px 1px 3px #333; 
}

.social-icons.icon-rotate .fa:hover, .social-icons.icon-rotate .fa:active { 
	-webkit-transform: scale(1.1) rotate(360deg);
	-moz-transform: scale(1.1) rotate(360deg);
	-ms-transform: scale(1.1) rotate(360deg);
	-o-transform: scale(1.1) rotate(360deg);
	transform: scale(1.1) rotate(360deg);
}

.label-container{
	position:fixed;
	bottom:48px;
	right:105px;
	display:table;
	visibility: hidden;
}

.label-text{
	color:#FFF;
	background:rgba(51,51,51,0.5);
	display:table-cell;
	vertical-align:middle;
	padding:10px;
	border-radius:3px;
}

.label-arrow{
	z-index:1000;
	display:table-cell;
	vertical-align:middle;
	color:#333;
	opacity:0.5;
}

.float{
	font-size:28px;
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#33f;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
	z-index:1000;
	animation: bot-to-top 2s ease-out;
}

ul{
	position:fixed;
	right:40px;
	padding-bottom:20px;
	bottom:80px;
	z-index:100;
}

ul li{
font-size:28px;
	list-style:none;
	margin-bottom:10px;
}

ul li a{
	background-color:#33f;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
	width:60px;
	height:60px;
	display:block;
}

ul:hover{
	visibility:visible!important;
	opacity:1!important;
}


.my-float{
	font-size:24px;
	margin-top:18px;
}

a#menu-share + ul{
  visibility: hidden;
}

a#menu-share:hover + ul{
  visibility: visible;
  animation: scale-in 0.5s;
}

a#menu-share i{
	animation: rotate-in 0.5s;
}

a#menu-share:hover > i{
	animation: rotate-out 0.5s;
}

@keyframes bot-to-top {
    0%   {bottom:-40px}
    50%  {bottom:40px}
}

@keyframes scale-in {
    from {transform: scale(0);opacity: 0;}
    to {transform: scale(1);opacity: 1;}
}

@keyframes rotate-in {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

@keyframes rotate-out {
    from {transform: rotate(360deg);}
    to {transform: rotate(0deg);}
}
.section .card {
  display: inline;
}
.section .card img {
  width: 200px;
}
.section .contacts a {
  margin: 20px;
  font-size: 1.2em;
}
.section .contacts a:hover {
  text-decoration: underline;
}
