@charset "utf-8";
/* CSS Document */


@font-face{
	font-family: 'gotham-light';
    src: url('https://repositorio.mw.adm.br/globalfont/gotham-light.ttf');
}
@font-face{
	font-family: 'gotham-extralight';
    src: url('https://repositorio.mw.adm.br/globalfont/gotham-extralight.ttf');
}
@font-face{
	font-family: 'gotham-lightitalic';
    src: url('https://repositorio.mw.adm.br/globalfont/gotham-lightitalic.otf');
}
@font-face{
	font-family: 'gotham-medium';
    src: url('https://repositorio.mw.adm.br/globalfont/gotham-medium.ttf');
}
@font-face{
	font-family: 'gotham-book';
    src: url('https://repositorio.mw.adm.br/globalfont/gotham-book.otf');
}
@font-face{
	font-family: 'gotham-black';
    src: url('https://repositorio.mw.adm.br/globalfont/gotham-black.otf');
}

html,body{
	
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	width: 100%;
	height: 100%;
	font-family: 'gotham-book';
	background-color: #f2f2f2;
}
strong{
	font-family: 'gotham-medium';
}
/*
section, article {
	animation-duration: 2s;
	animation-name: slidein;
  }
 */ 
  @keyframes slidein {
	from {
		filter:alpha(opacity=0);
		opacity: 0;
		-moz-opacity:0;
		-webkit-opacity:0;
	}
  
	to {
		filter:alpha(opacity=100);
		opacity: 1;
		-moz-opacity:1;
		-webkit-opacity:1;
	}
  }

[data-anime]{
	opacity:0;
	transition: .5s;
}
[data-anime="left"]{
	transform: translate3d(-50px, 0, 0);
}
[data-anime="right"]{
	transform: translate3d(50px, 0, 0);
}
[data-anime="top"]{
	transform: translate3d(0, -50px, 0);
}
[data-anime="botom"]{
	transform: translate3d(0, 50px, 0);
}
[data-anime].animate{
	opacity: 1;
	transform: translate3d(0px, 0px, 0px);
}