/* ini: Preloader */

#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff; /* cor do background que vai ocupar o body */
    z-index:999; /* z-index para jogar para frente e sobrepor tudo */
}
#preloader .inner {
    position: absolute;
    top: 50%; /* centralizar a parte interna do preload (onde fica a animaÃ§Ã£o)*/
    left: 50%;
    transform: translate(-50%, -50%);  
}
.bolas > div {
  display: inline-block;
  background-color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  margin: 3px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: animarBola;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  
}
.bolas > div:nth-child(1) {
    animation-duration:0.75s ;
    animation-delay: 0;
}
.bolas > div:nth-child(2) {
    animation-duration: 0.75s ;
    animation-delay: 0.12s;
}
.bolas > div:nth-child(3) {
    animation-duration: 0.75s  ;
    animation-delay: 0.24s;
}

@keyframes animarBola {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  16% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; 
  } 
}
/* end: Preloader */
/* reset básico */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

/* conteiner */
.container  {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
    @media (min-width: 1170px) {
        .container {
            max-width: 1170px;
            padding: 0;
        }
    }
.container2  {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
        background-color: #f2f2f2;
    }
        @media (max-width: 1170px) {
            .container2 {
                max-width: 1170px;
                padding: 0;
            }
        }
/* linha */
.row {
    position: relative;
    margin-left: -5px;
    margin-right: -5px;
}
    .row:before,
    .row:after {
        content: "";
        display: table;
    }
    .row:after {
        clear: both;
    }
.row2 {
        background-color: #f2f2f2;
        position: relative;
        margin-left: -5px;
        margin-right: -5px;
    }
        .row2:before,
        .row2:after {
            content: "";
            display: table;
        }
        .row2:after {
            clear: both;
        }

/* colunas */
.col {
    display: inline-block;
    vertical-align: top;
    min-height: 1px;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
    margin-right: -4px;
    *zoom: 1;
    *display: inline;
}
    /* duas colonas */
    @media (min-width: 728px) {
        .col-2 {
            width: 50%;
        }
        .col-2logo {
            width: 92%;
        }
        .col-2menu {
            width: 8%;
        }
    }
    @media (max-width: 728px) {
        .col-2logo {
            width: 92%;
        }
        .col-2menu {
            width: 8%;
        }
    }

    /* tres colunas */
    @media (min-width: 728px) {
        .col-3 {
            width: 33.3333%;
        }
    }

    /* quatro colunas */
    @media (min-width: 728px) {
        .col-4 {
            width: 25%;
        }
    }
    @media (max-width: 728px) {
        .col-4 {
            width: 25%;
        }
    }

    /* sidebar */
    @media (min-width: 992px) {
        .col-content {
            width: 60%;
        }

        .col-sidebar {
           width: 40%;
        }
    }
     /* projeto */
     @media (min-width: 992px) {
        .col-descricao {
            width: 74%;
            margin-bottom: 40px;
        }

        .col-creditos {
           width: 26%;
           margin-bottom: 40px;
        }
    }


/* Grow */
.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
  }
  .hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  /* Wobble Horizontal */
  @-webkit-keyframes hvr-wobble-horizontal {
    16.65% {
      -webkit-transform: translateX(8px);
      transform: translateX(8px);
    }
    33.3% {
      -webkit-transform: translateX(-6px);
      transform: translateX(-6px);
    }
    49.95% {
      -webkit-transform: translateX(4px);
      transform: translateX(4px);
    }
    66.6% {
      -webkit-transform: translateX(-2px);
      transform: translateX(-2px);
    }
    83.25% {
      -webkit-transform: translateX(1px);
      transform: translateX(1px);
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
  }
  @keyframes hvr-wobble-horizontal {
    16.65% {
      -webkit-transform: translateX(8px);
      transform: translateX(8px);
    }
    33.3% {
      -webkit-transform: translateX(-6px);
      transform: translateX(-6px);
    }
    49.95% {
      -webkit-transform: translateX(4px);
      transform: translateX(4px);
    }
    66.6% {
      -webkit-transform: translateX(-2px);
      transform: translateX(-2px);
    }
    83.25% {
      -webkit-transform: translateX(1px);
      transform: translateX(1px);
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
  }
  .hvr-wobble-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  }
  .hvr-wobble-horizontal:hover, .hvr-wobble-horizontal:focus, .hvr-wobble-horizontal:active {
    -webkit-animation-name: hvr-wobble-horizontal;
    animation-name: hvr-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
  .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.94);
    overflow-x: hidden;
    transition: 0.5s;
  }
  
  .overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  
  .overlay a {
	font-family: 'Lato', serif; font-weight: 400;
    padding: 8px;
    text-decoration: none;
    font-size: 2em;
    color: #303030;
    display: block;
    transition: 0.3s;
  }
  
  .overlay a:hover, .overlay a:focus {
    color: #303030;
  }
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }
.overlay-content a:link {
	color: #ffffff;
}
.overlay-content a:visited {
	color: #ffffff;
}
.overlay-content a:hover {
	color: #303030;
}
.overlay-content a:active {
	color: #303030;
}
/* Links */
a{
	text-decoration: none;
}
a:link {
	color: #303030;
}
a:visited {
	color: #303030;
}
a:hover {
	color: #000000;
}
a:active {
	color: #303030;
}
a#title:link {
	color: #FFFFFF;
}
a#title:visited {
	color: #FFFFFF;
}
a#title:hover {
	color: #000000;
}
a#title:active {
	color: #FFFFFF;
}
/* Textos */
h1 {
	font-family: 'Noto Serif', serif; font-weight: 700;
	font-size: 4.375em;
	letter-spacing: -2px;
}
h2 {
	font-family: 'Noto Serif', serif; font-weight: 700;
	font-size: 3.125em;
	letter-spacing: -2px;
}
h3 {
	font-family: 'Noto Serif', serif; font-weight: 700;
	font-size: 2.25em;
	letter-spacing: -2px;
}
h4 {
	font-family: 'Lato', serif; font-weight: 400;
	font-size: 1.75em;
    letter-spacing: 3px;
    color: #585858;
}
h5 {
    font-family: 'Lato', serif;
    font-weight: 400;
    font-size: 1.625em;
    letter-spacing: 0.88px;
    color: #585858;
	text-transform: uppercase;
}
h6 {
    font-family: 'Lato', serif;
    font-weight: 900;
    font-size: 0.75em;
    letter-spacing: 1px;
    color: #797979;
	text-transform: uppercase;
}
strong {
	font-weight: 700;
}
p {
	font-family: 'Lato', serif; font-weight: 400;
	font-size: 1.125em;
}
.p2 {
	font-family: 'Lato', serif; font-weight: 700;
	font-size: 0.75em;
}
.pcreditos {
	font-family: 'Lato', serif; font-weight: 400;
    font-size: 1.125em;
    letter-spacing: 0.5px;
}
/* Header */
#logo {
	position: relative;
    margin-top: 25px;
    margin-left: 15px;
}
#menu {
    position: fixed;
    text-align: center;
    margin-top: 12px;
    background-color: #ffffff;
    opacity: 0.8;
    width: 40px;
    margin-left: 35px;
}
#header .logo {
    position: relative;
	width: 112px;
    height: 49px;
	cursor: pointer;
}
#header .menu{
    position: relative;
		float: right;
		cursor: pointer;
}
/* Projetos */
.foto-job {
	position: absolute;
	left: 45vw;
	top: -250px;
	z-index: 0;
}
.tituloprojeto {
    margin-left: 7vw;
    margin-top: 230px;
}
.descricaoprojeto {
    margin-left: 7vw;
    margin-right: 7vw;
    margin-top: 40px;
}
.creditosprojeto {
    margin-top: 40px;
    margin-left: 0vw;
}
.creditados1 {
 margin: 0;
 padding-bottom: 30px;
}
.creditados2 {
    margin: 0;
    padding-bottom: 30px;
}
.creditosprojetostory {
    margin-top: 40px;
    margin-left: 7vw;
    margin-right: 7vw;
}
.creditadosstory {
 margin-right: 40px;
 padding-bottom: 30px;
 float: left;
}
.creditosprojetostory2 {
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    max-width: 710px;
}
.creditadosstory2 {
    margin: 0;
    padding-bottom: 30px;
}
.projeto1 {
    padding: 5px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;

}
.projeto1 img {
    max-width: 100%;
}
.subtitleprojeto {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #4E4E4E;
    text-transform: uppercase;
}
.listaprojeto {
    margin-top: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.listados1 {
 margin: 20px;
 padding-bottom: 30px;
 float: left;
}
.listados2 {
    margin: 20px;
    padding-bottom: 30px;
    float: left;
   }
.spaceimg {
    padding-top: 40px;
}
.spaceimg2 {
    padding-top: 10px;
}
.spaceimg3 {
    margin-top: -70px;
}
.spaceimg4 {
    margin-top: -40px;
}
.footersobre{
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    height: 50px;
    width: 100%;
}

#footer{
		position: absolute;
		text-align: center;
		font-size: 12px;
	    font-weight: 900;
		height: 50px;
		display:block;
		width: 100%;
		z-index:9;
		bottom: 0px;
}
.projetomosaico {
    max-width: 1200px;
    margin: -40px auto 40px auto;
    text-align: center;
}
.projetomosaico img{
	margin: 10px;
	max-width: 100%;
	
}
.p_story {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
  
/* Sobre */
.foto-sobre {
	position: absolute;
	left: 50vw;
	top: -90px;
	z-index: 0;
}
.titulosobre {
    margin-left: 7vw;
    margin-top: 230px;
}
.descricaosobre {
    margin-left: 7vw;
    margin-right: 7vw;
    margin-top: 40px;
}
/* Home */
.foto-perfil img {
	height: 100%;
}
#header {
	position: relative;
	max-width: 1170px;
	margin-left: auto;
	margin-right: auto;
	z-index: 9;
	display: block;
}
#header .logo2 {
	margin-left: -2px;
	margin-top: 25px;
	z-index: 20;
	cursor: pointer;
}
#header .menu2{
		width: 22px;
		float: right;
		cursor: pointer;
		margin-top: 39px;
		margin-right: 23px;
		z-index: 1;
}
.headerfixed {
	width: 100%;
	position: fixed;
	top: 0px;
	z-index: 998;
}
.navbar{
	max-width: 1170px;
	height: 100px;
	margin: 0 auto;
	transition: .5s;
}
.navbar2{
	width: 100%;
	height: 100px;
	margin: 0 auto;
	transition: .5s;
}
.logo3 {
	margin-left: 7px;
	margin-top: 25px;
	z-index: 20;
	width: 112px;
	height: 49px;
	cursor: pointer;
	float: left;
}
.menu3 {
		width: 22px;
		cursor: pointer;
		margin-top: 39px;
		margin-right: 23px;
		float: right;
}
.intro{
	width: 100%;
	margin:0;
	max-width: 1170px;
	margin-left: auto;
	margin-right: auto;
	}
.foto-perfil{
	position: absolute;
	left: 30vw;
	top: -80px;
	z-index: 0;
	height: 100%;
	width: auto;
}
.foto-perfil2{
	position: absolute;
	left: 30vw;
	top: -80px;
	z-index: 0;
	height: 100%;
	width: auto;
}
.txthome {
	position: absolute;
    margin-left: 7vw;
	margin-left: 7vw;
	top: 20vh;
	z-index: 3;
}
.buttonhome {
	padding-top: 20px;
	float: left;
}
.txthome hr {
	border: 0.5px solid black;
	width: 139px;
	float: right;
    margin-left: 10px;
    margin-top: 10px;
}
.spacehome {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Notebook */
@media (max-width: 1366px) {
#header .logo2 {
	margin-left: 20px;
	margin-top: 25px;
	z-index: 20;
	cursor: pointer;
}

.logo3 {
	margin-left: 20px;
	margin-top: 25px;
	z-index: 20;
	width: 112px;
	height: 49px;
	cursor: pointer;
	float: left;
}
    .foto-job {
        position: absolute;
		left: 38vw;
		top: -250px;
    }
    .foto-sobre {
        position: absolute;
        right: 5vw;
        top: -10px;
        z-index: 0;
    }
    .foto-sobre img {
        max-width: 400px;
    }
	
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}
/* Notebook */
@media (max-width: 992px) {
    .creditosprojeto {
        margin-top: 40px;
        margin-left: 7vw;
    }
    .foto-job {
        position: absolute;
        left: 40vw;
        top: -10px;
        z-index: 0;
    }
    .foto-job img {
        max-width: 400px;
    }
    .creditados1 {
        margin: 0;
        padding-bottom: 40px;
        float: left;
       }
    .creditados2 {
        margin: 0;
        padding-bottom: 40px;
        padding-left: 30px;
        float: left;
    }
    .foto-sobre {
        position: absolute;
        right: 5vw;
        top: -10px;
        z-index: 0;
    }
    .foto-sobre img {
        max-width: 400px;
    }
    .p_story {
        max-width: 1140px;
        margin-left: auto;
        margin-right: auto;
        padding-right: 20px;
        padding-left: 20px;
    }
}
/* Tablet2*/
@media (max-width: 728px) {
    .foto-job {
        position: absolute;
        right: 5vw;
        top: -10px;
        z-index: 0;
    }
    .foto-job img {
        max-width: 400px;
    }
    .foto-sobre {
        position: absolute;
        left: 40vw;
        top: -50px;
        z-index: 0;
    }
    .foto-sobre img {
        max-width: 360px;
    }
}
/* Mobile */
@media (max-width: 560px) {
	h1 {
	font-family: 'Noto Serif', serif; font-weight: 700;
	font-size: 3.375em;
	letter-spacing: -2px;
}
h4 {
	font-family: 'Lato', serif; font-weight: 400;
	font-size: 1.45em;
    letter-spacing: 3px;
    color: #585858;
}
.txthome {
	position: absolute;
    margin-left: 7vw;
	margin-right: 7vw;
	top: 16vh;
	z-index: 3;
}
    .foto-job {
        position: absolute;
        right: 5vw;
        top: -10px;
        z-index: 0;
    }
    .foto-job img {
        max-width: 400px;
    }
    .foto-sobre {
        position: absolute;
        right: 5vw;
        top: -10px;
        z-index: 0;
    }
    .foto-sobre img {
        max-width: 300px;
    }
}
.video-container {
position: relative;
padding-bottom: 490px;
padding-top: 0px; height: 0; overflow: hidden;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
max-width: 100%;
height: 100%;
}