html {
  font-size: 62.5%;
}

body {
  font-family: 'Fira Sans', sans-serif;
  background: #2c2d44;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body::-webkit-scrollbar {
    width: 0.5em;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: transparent;
}
 
body::-webkit-scrollbar-thumb {
  background-color: white;
}

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


*, *::after, *::before {
  box-sizing: border-box;
}

h1 {
  color: #fff;
  font-size: 8em;
  font-weight: 600;
  letter-spacing: 0.2em;
}

span {
    color: white;
    font-weight: 400;
    margin: 0;
}



#one {
  position: relative;
  width: 100%;
  height: 100vh;
}


#two {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #2c2d44;
  z-index: 2;
}

#mouse-scroll {
  style: block;
}
#mouse-scroll {
  position: fixed;
  margin: auto;
  left: 50%;
  bottom: 80px;
  -webkit-transform: translateX(-50%);
  z-index: 1;
}
#mouse-scroll span{
  display: block;
  width: 5px; 
  height: 5px;
  -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
       transform: rotate(45deg);
       transform: rotate(45deg);
  border-right: 2px solid #fff; 
  border-bottom: 2px solid #fff;
  margin: 0 0 3px 5px;
}
#mouse-scroll .mouse {
  height: 21px;
  width: 14px;
  border-radius: 10px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  border: 2px solid #ffffff;
  top: 170px;
}
#mouse-scroll .down-arrow-1 {
  margin-top: 6px;
}
#mouse-scroll .down-arrow-1, #mouse-scroll .down-arrow-2, #mouse-scroll .down-arrow-3 {
  -webkit-animation: mouse-scroll 1s infinite; 
    -moz-animation: mouse-scroll 1s infinite:
}
#mouse-croll .down-arrow-1 {
   -webkit-animation-delay: .1s; 
   -moz-animation-delay: .1s;
   -webkit-animation-direction: alternate;
}
#mouse-scroll .down-arrow-2 {
  -webkit-animation-delay: .2s; 
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
}
#mouse-scroll .down-arrow-3 {
   -webkit-animation-delay: .3s;
   -moz-animation-delay: .3s;
   -webkit-animation-direction: alternate;
}
#mouse-scroll .mouse-in {
  height: 5px;
  width: 2px;
  display: block; 
  margin: 5px auto;
  background: #ffffff;
  position: relative;
}
#mouse-scroll .mouse-in {
 -webkit-animation: animated-mouse 1.2s ease infinite;
  -moz-animation: mouse-animated 1.2s ease infinite;
}

@-webkit-keyframes animated-mouse {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
     opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-moz-keyframes mouse-scroll {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  } 
}
@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  } 
}
@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

#mouse-scroll div.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

#mouse-scroll:hover div.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.spin {
   -webkit-filter: drop-shadow(0 1px 4px rgba(0,0,0,0.9));
   filter: drop-shadow(0 1px 4px rgba(0,0,0,0.9));
}

.footer {
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    position: absolute;
}

#fade {
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
  opacity: 0;
}

#fadeaway {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  opacity: 0;
}

.cd-main-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  /* vertically align its content */
  display: table;
}
.cd-main-content .center {
  /* vertically align inside parent element */
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* contact form */

*:focus {
    outline: 0;
}

#contact-wrap {
  font-size:16px;
  font-weight:300;
  width: 100%;
  color:#333;
  overflow:auto; 
}

#contact-area {
  margin-left:3px;
  padding:20px 0;
}

#contact-area input, #contact-area textarea {
  padding: 5px;
  width: 100%;
  font-size:14px;
  font-weight:300;
  color:#fff;
      background-color:transparent;
      border-top: 1px solid transparent;
      border-left: 1px solid transparent;
      border-bottom: 1px solid #fff;
      border-right: 1px solid transparent;
  
  margin-bottom:15px;
}

#contact-area textarea {
  height: 150px;
  width: 100%;
        background-color:transparent;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-bottom: 1px solid #fff;
  border-right: 1px solid transparent;
  
}

#contact-area textarea:focus, #contact-area input:focus {
      background-color:transparent;
      border-top: 1px solid transparent;
      border-left: 1px solid transparent;
      border-bottom: 1px solid #fff;
      border-right: 1px solid transparent;
  
}

#contact-area input.submit-button {
  font-size:12px;
  font-weight:300;
  text-transform:uppercase;
  width: 100px;
  float: left;
  background-color:transparent;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  
  -moz-transition:all 0.1s ease-in-out;
  -webkit-transition:all 0.1s ease-in-out;
  -o-transition:all 0.1s ease-in-out;
  -ms-transition:all 0.1s ease-in-out;
  transition:all 0.1s ease-in-out;
}

#contact-area input.submit-button:hover {
  color:#333;
  background-color: #fff;
  cursor: pointer;
  transition: all 350ms ease-in-out;
}

label {
  float: left;
  text-align: left;
  margin-right: 16px;
  width: 100px;
  padding-top: 5px;
  font-size:18px;
  font-weight:300;
}



::-webkit-input-placeholder {
  color: #fff;
  font-size:14px;
}

:-moz-placeholder { /* Firefox 18- */
  color: #fff; 
  font-size:14px;
}

::-moz-placeholder {  /* Firefox 19+ */
  color: #fff;
  font-size:14px;
}

:-ms-input-placeholder {  
  color: #fff;  
  font-size:14px;
}


@media only screen and (max-width: 375px) {
  .letter {
    letter-spacing: 0.2em;
  }
}

.homepage-hero-module {
    border-right: none;
    border-left: none;
    position: relative;
}

.video-container {
    z-index: 1;
    width: 100%;
}
.video-container video {
    position: absolute;
    z-index: 0;
    bottom: 0;
}

#background_video {
  position: absolute;

  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

#video_cover {
  position: absolute;

  width: 100%; height: 100%;

  background: url('/img/Working-Space.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

.video {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
background: #000;
z-index: 0;
}

video {
  min-width: 100%;
  min-height: 100vh;
  width: auto;
  height: auto;
}

#contact-area {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.7s ease-in-out;
    overflow: hidden;
}

#contact-area.is-showing {
      opacity: 1;
      transform: translateX(0px);
      overflow: hidden;}


.footer p {
    margin: 10px;
    font-size: 14px;
    color: #a9b5be;
}

.copy {
  color: #a9b5be;
}


/* CONTACTO */

.wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  -webkit-flex-flow: row;
    flex-flow: row;
    text-align: left;
    flex: 1 100%;
}

.contact-box {
    margin: auto;
    color: #fff;
    order: 2;
    padding: 0 10px;
    width: 100%;
}

.quote {
    margin: auto;
    color: #fff;
    order: 1;
    padding: 0 10px;
    width: 100%;
}

.text-animation {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.7s ease-in-out;
    overflow: hidden;
}

.text-animation.is-showing {
      opacity: 1;
      transform: translateX(0px);
      overflow: hidden;}


@media only screen and (max-width: 800px) {
  .wrapper {
      -webkit-flex-flow: row wrap;
        flex-flow: row wrap;
    }

  h1 {
    font-size: 4em;
    text-align: center;
  }
}

.green {
  color: #48DC7E;
}

.red {
  color: #DC4848;
}