/*------------------------------------*\
	TIPOGRAFIAS
\*------------------------------------*/

@font-face {
    font-family: 'Nexa';
    src: url('../fonts/Nexa/NexaBold.eotNexaBold.eot');
    src: url('../fonts/Nexa/NexaBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Nexa/NexaBold.woff2') format('woff2'),
        url('../fonts/Nexa/NexaBold.woff') format('woff'),
        url('../fonts/Nexa/NexaBold.ttf') format('truetype'),
        url('../fonts/Nexa/NexaBold.svg#NexaBold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Nexa';
    src: url('../fonts/Nexa/NexaLight.eot');
    src: url('../fonts/Nexa/NexaLight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Nexa/NexaLight.woff2') format('woff2'),
        url('../fonts/Nexa/NexaLight.woff') format('woff'),
        url('../fonts/Nexa/NexaLight.ttf') format('truetype'),
        url('../fonts/Nexa/NexaLight.svg#NexaLight') format('svg');
    font-weight: 300;
    font-style: normal;
}


/*------------------------------------*\
    LANDING: ;
\*------------------------------------*/

html,
body{
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 100%;
}
body{
  background-color: #212121;
  color: #FFF;
  font-family: 'Nexa';
}
#logo{
  position: absolute;
  display: block;
  top: 4vmin;
  left: 4vmin; 
  z-index: 99;
}
#logo img{
  display: block;
  width: 200px;
  max-width: 100%;
}
#wrapper{
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
}
#wrapper > .row{
  min-height: 100%;
  position: relative;
  flex-grow: 1;
}
.esferas{
  position: relative;
  min-height: 100%;
  background-color: #1a1a1a;
  overflow: hidden;
}
.esferas img{
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  height: 95vh;
}
.content{
  position: relative;
  display: block;
  padding: 10vmin 6vmin 1vmin;
}
.content h4{
  font-size: 1.6vmin;
  font-weight: 300;
}
.content h1{
  font-size: 4.8vmin;
  font-weight: bold;
}
.content .separator{
  position: relative;
  display: block;
  width: 2.2vmin;
  height: 0.2vmin;
  background-color: #FFF;
  margin: 8vmin 0 2vmin;
}
.content p{
  font-size: 2vmin;
  font-weight: 300;
  margin-bottom: 2vmin;
  max-width: 30vmin;
}
.content p a{  
  font-size: 1.6vmin;
  color: #FFF;
}
.rrss{
  position: absolute;
  display: block;
  bottom: 4vmin;
  right: 4vmin; 
  z-index: 99;
}
.rrss ul{
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rrss ul li{
  display: inline-block;
  margin: 0px 1vmin;
}
.rrss ul li a{
  display: inline-block;
  padding: 0.8vmin;
  color: #FFF;
  font-size: 2vmin;
}
.rrss ul li a:hover{
  -webkit-transition: all 0.3s ease-out;
  -webkit-transition-delay: 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0.7;
}
.rrss ul li a:hover,
.rrss ul li a:focus,
.rrss ul li a:active{
  text-decoration: none;
}


@media (max-width: 767px) { 
  .content{
    padding: 30px 30px 50px;
  }  
  .content h4{
    font-size: 1rem;
  } 
  .content h1{
    font-size: 2.5rem;
  } 
  .content .separator{
    width: 20px;
    height: 1.5px;
    margin: 40px 0 15px;
  }
  .content p{
    font-size: 1.2rem;
    margin-bottom: 15px;
    max-width: 270px;
  }
  .content p a{
    font-size: 1rem;
  }  
  .rrss ul li{
    margin: 0px 8px;
  }
  .rrss ul li a{
    padding: 5px;
    font-size: 1.2rem;
  }
}