/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
button, input{
	outline:none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
a{
	text-decoration:none;
	color:none;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
strong {
	font-weight:bold;
}
/*FIM DO RESET*/
/*fonts*/
@font-face {
     font-family:Gabriola;
     src: url('../fontes/Gabriola.ttf')format('truetype');
}
@font-face {
     font-family:source;
     src: url('../fontes/SourceSansPro-Regular.ttf')format('truetype');
}
@font-face {
     font-family:source-SemiBold;
     src: url('../fontes/SourceSansPro-SemiBold.ttf')format('truetype');
}
@font-face {
     font-family:source-light;
     src: url('../fontes/SourceSansPro-Light.ttf')format('truetype');
}
@font-face {
     font-family:social;
     src: url('../fontes/social icons.ttf')format('truetype');
}
#main-index{
	width:100%;
	height:100vh;	
	background-image:url('../imagens/background.png');
	background-repeat:repeat;
	overflow:hidden;
}
#main{
	width:100%;
	height:auto;	
	background-image:url('../imagens/background.png');
	background-repeat:repeat;
	overflow:hidden;		
}
.header{
	display:flex;
	flex-direction:rows;
	justify-content:space-between;
	width:100%;
	height:0rem;	
	background-color:transparent;	
	vertical-align:center;	
	position:block;	
	z-index:1000;
	transition:0.8s;
}
.header-base{
	display:flex;
	flex-direction:rows;
	justify-content:space-between;
	width:100%;
	height:0rem;	
	background-color:transparent;
	vertical-align:center;			
	z-index:1000;
	transition:0.8s;
}

.menu{
	display:none;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	width:3.2rem;
	height:3.2rem;
	margin-top:43vh;
	right:2rem;
	margin-right:3rem;	
	border-radius:0.2rem;
	background-color:transparent;
	cursor:pointer;		
	transition:.5s;
	position:absolute;
	z-index:1000;
	opacity:0.9;
}
.menu:hover{
	opacity:1;
}

.barra{
	width:3.2rem;
	height:0.6rem;
	margin-bottom:0.6rem;	
	background: linear-gradient(to right, #FDBA05, #3D2D01 );
	border-radius:0.2rem;
}

.nav{
	display:none;
	width:20rem;
	right:0rem;
	height:68vh;
	margin-top:32vh;	
	background-color:transparent;	
	border-radius:0.3rem;	
	position:absolute;
	z-index:1000;
}

.nav ul{
	list-style:none;
}
.nav ul li{
	display:block;
}
.nav ul li a{
	text-decoration:none;
	font-family:source;
	font-size:1.4rem;
	color:rgba(255,255,255,1);	
	line-height:2.5rem;
	letter-spacing:0.4rem;
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;	
}
.nav ul li a:hover{
	color:#FF8000;	
}
@media(max-width:812px){
	.nav{
		display:none;
		width:20rem;
		right:0rem;
		height:80vh;
		margin-top:16vh;
		padding:3rem;		
		background-color:#fbda05;	
		border-radius:0.3rem;	
		position:absolute;
		z-index:1000;
		
		
	}
	.nav ul li a{
		color:#3D2D01;
		font-weight:bold;
		letter-spacing:0.2rem;
	}
	.menu{
		display:block;
		margin-top:4vh;
		right:2rem;
	}	
}
.section-00{
	width:100%;
	height:100%;
	position:relative;
	overflow:hidden;
}
.section-00::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgba(0,0,0,0.6);
    z-index: 0;
}
.bg_video{			
			right:0; 
			bottom:0;
			min-width:100%; 
			min-height:100%;			 
			z-index:-1000;
			width:auto;
			height:auto;
			background-size:cover;			
		}
@media(max-width:812px){
	.bg_video{
			right:0; 
			bottom:0;
			min-width:100%; 
			min-height:100%;			 
			z-index:-1000;
			width:auto;
			height:auto;
			background-size:cover;	
	}
	
}
.section-01{
	position:absolute;
	width:8rem;
	height:8rem;
	margin-top:-63vh;
	margin-left:40vw;
	display:flex;	
	border-radius:50%;
	background-color:rgba(253, 186,5,1);
	box-shadow:0.8rem 0.8rem 0.8rem #000;
	visibility:hidden;	
	z-index:1;
		
}

.section-01 img{
	width:8rem;
	height:8rem;
	transform:scale(1);
	transition:1s;
	
		
}

.section-01 img:hover{
	transform:scale(1.2);
	cursor:pointer;
}
@media(max-width:812px){
	.section-01{
		margin-left:30vw;
	}	
	
}
.section-top{
	width:100%;
	height:36rem;
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
	align-items:center;	
	position:relative;
	padding-bottom:2rem;
	overflow:hidden;
	background-image:url('../imagens/kikun1.svg');
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
	z-index:0;
}
.section-top:after{
	content: '';    
	background-color:rgba(0,0,0,0.6);
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}

.section-02{
	width:100%;
	height:42rem;
	margin-top:4rem;
	display:flex;
	flex-direction:column;
	justify-content:start;
	background-color:transparent;
	position:relative;
	/*background-image:url(../img/fundo.png);
	background-position:bottom;
	background-size:cover;*/
}
.section-02-1{
	width:100%;
	height:auto;
	margin-top:4.7rem;
	margin-bottom:4rem;
	background-color:transparent;
}
.section-02-1 h2{
	font-family:gabriola;
	font-size:2.8rem;
	color:rgba(55,55,55,1);
	font-weight:bold;
	text-align:center;
	letter-spacing:0.3rem;
	text-shadow:1px 1px 1px rgba(0,0,0,1);
	text-transform:uppercase;
}
.section-02-2{
	width:100%;
	height:auto;	
	display:flex;
	flex-direction:rows;
	justify-content:center;
	background-color:transparent;
}
@media(max-width:812px){
	.section-02-2{
		flex-direction:column;
		width:100%;
	}	
	
}

.section-02-2-a{
	width:46%;
	height:auto;
	margin:1rem 1.5rem;
	background:transparent;
	padding-left:2.6rem;
}
@media(max-width:812px){
	.section-02-2-a{
		
		width:100%;
		margin:1rem 0;
		padding:2rem;
	}
	video{
		width:100%;
		height:auto;
	}	
	
}

.section-02-2-a p{
	font-family:source;
	font-size:1.4rem;
	color:rgba(55,55,55,1);
	text-align:left;
	text-indent:0rem;
	letter-spacing:0.1rem;
	line-height:1.8rem;	
}
strong{
	font-weight:bold;
}
.section-02-3{
	width:80%;
	height:auto;
	margin:auto;
	text-align:right;
		
}
.section-02-3 a{
	font-family:Montserrat-Regular;
	font-size:1.4rem;
	color:rgba(255,255,255,1);
	font-weight:bold;	
	letter-spacing:0.2rem;
}
.section-02-3 a:hover{
	color:#0042ff;
	cursor:pointer;
}	
.janela-sobre{
	display:none;
	width:50%;
	height:100vh;
	position:absolute;
	top:0;
	right:0;
	margin-top:30rem;
	margin-right:2rem;
	border-radius:1rem;
	box-shadow:0.1rem 0.1rem 0.1rem #000;
	z-index:10;
	
}
@media(max-width:812px){
	.janela-sobre{
		width:100%;
		margin-right:0rem;
	}
		
}
.janela-sobre-1{
	width:100%;
	height:auto;
	margin-top:2rem;
	padding-top:2rem;
	background-color:#fff;
	
}
.janela-sobre-1 h2{
	font-family:gabriola;
	font-size:3rem;
	color:rgba(55,55,55,1);
	background-color:#fff;
	text-align:center;
	letter-spacing:0.1rem;
}
.janela-sobre-2{
	width:100%;
	height:auto;
	padding:2rem;
	background-color:#fff;
}
.janela-sobre-2 img{
	width:100%;
	height:auto;
	transform:scale(1);
}
.janela-sobre-2 img:hover{
	cursor:pointer;
	transform:scale(1.6);
}
.janela-sobre-3{
	width:100%;
	height:auto;
	background:#fff;	
}
.janela-sobre-3 p{
	font-family:source;
	font-size:1.4rem;
	color:rgba(55,55,55,1);
	text-align:left;
	text-indent:0rem;
	letter-spacing:0.1rem;
	line-height:1.8rem;
	padding:2rem;	
}
.janela-sobre-4{
	width:100%;
	height:auto;
	background:#fff;
		
}
.janela-sobre-4 p{
	font-family:source;
	font-size:1.4rem;
	color:rgba(55,55,55,0.8);
	text-align:right;	
	letter-spacing:0.1rem;
	line-height:1.8rem;
	padding:2rem;	
}
.janela-sobre-4{
	color:rgba(55,55,55,1);
	cursor:pointer;
}
.span{
	font-family:source;
	font-size:1.4rem;
	color:#013ADF;
	text-align:right;	
	letter-spacing:0.1rem;
	float:right;
	margin-right:2rem;
}
.span:hover{
	color:#0404B4;
	cursor:pointer;
}
.sobre-foto{
	display:none;
	width:40%;
	height:40%;
	top:41rem;
	right:2rem;
	padding:2rem;
	background-color:#fff;
	cursor:pointer;
	z-index:2;
	position:absolute;
	z-index:12;	
}
@media(max-width:812px){
	.sobre-foto{
		width:80%;
		height:40rem;
		right:0rem;
	}
	
	
}
.sobre-foto h3{
	font-family:gabriola;
	font-size:3rem;
	color:rgba(55,55,55,0.8);
	text-align:center;	
	letter-spacing:0.1rem;
	margin-bottom:1rem;
}
.sobre-foto p{
	font-family:source;
	font-size:1rem;
	color:rgba(55,55,55,0.8);
	text-align:left;	
	letter-spacing:0.1rem;
	line-height:1.8rem;
	margin-bottom:1rem;
}
.sobre-foto .fechar p{
	text-align:center;
	color:rgba(55,55,55,0.8);
}
.sobre-foto .fechar p:hover{	
	color:rgba(55,55,55,1);
}
.section-03{
	width:100%;
	height:auto;
	margin-top:2rem;
	padding-top:2rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	margin-bottom:4rem;
}
.section-03-0{
	width:100%;
	height:auto;
}
.section-03-0 h1{
	font-family:gabriola;
	font-size:3.6rem;
	font-weight:bold;
	color:rgba(55,55,55,1);
	text-align:center;
	letter-spacing:0.2rem;
}
.section-03-0-1{
	width:100%;
	height:46rem;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
	margin-top:0rem;
	padding-left:6rem;
	padding-right:6rem;
}
.section-03-1-0{
	width:50%;
	height:46rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	margin:2rem;
	background-color:transparent;	
	
}
.section-03-1-1,.section-03-1-2,.section-03-1-3,.section-03-1-4,.section-03-1-5,.section-03-1-6{
	width:100%;
	height:6rem;
	display:flex;
	flex-direction:rows;
	background:transparent;
	margin:3rem;	
	
}
.section-03-1-1 img,.section-03-1-2 img,.section-03-1-3 img,.section-03-1-4 img,.section-03-1-5 img,.section-03-1-6 img{
	width:6rem;
	cursor:pointer;
	transform:scale(1);
	transition:0.5s;
}
.section-03-1-1 img:hover,.section-03-1-2 img:hover,.section-03-1-3 img:hover,.section-03-1-4 img:hover,.section-03-1-5 img:hover,.section-03-1-6 img:hover{
	
	transform:scale(1.2);
}

.section-03-1-1{
	justify-content:flex-end;
	padding-right:3rem;
}
.section-03-1-2{
	justify-content:center;
}
.section-03-1-3{
	justify-content:flex-end;
	padding-right:3rem;
}
.section-03-1-4{
	justify-content:flex-start;
	padding-left:3rem;
}
.section-03-1-5{
	justify-content:center;
}
.section-03-1-6{
	justify-content:flex-start;
	padding-left:3rem;
}
.mostrar-titulo-1{
	
	width:30%;
	height:8rem;
	background-color:#fdba05;
	border:2px solid #3D2D01;
	border-radius:0.8rem;
	font-family:gabriola;
	font-size:4rem;
	color:#3D2D01;
	font-weight:bold;
	position:absolute;
	top:36rem;
	right:2rem;	
	text-align:center;
	line-height:8rem;
	display:none;
	
}

.mostrar-titulo-2{
	width:30%;
	height:8rem;
	background-color:#fdba05;
	border:2px solid #3D2D01;
	border-radius:0.8rem;
	font-family:gabriola;
	font-size:4rem;
	color:#3D2D01;
	font-weight:bold;
	position:absolute;
	top:36rem;
	right:2rem;	
	text-align:center;
	line-height:8rem;
	display:none;
}
.mostrar-titulo-3{
	width:30%;
	height:8rem;
	background-color:#fdba05;
	border:2px solid #3D2D01;
	border-radius:0.8rem;
	font-family:gabriola;
	font-size:4rem;
	color:#3D2D01;
	font-weight:bold;
	position:absolute;
	top:36rem;
	right:2rem;	
	text-align:center;
	line-height:8rem;
	display:none;
}
.mostrar-titulo-4{
	width:30%;
	height:8rem;
	background-color:#fdba05;
	border:2px solid #3D2D01;
	border-radius:0.8rem;
	font-family:gabriola;
	font-size:4rem;
	color:#3D2D01;
	font-weight:bold;
	position:absolute;
	top:36rem;
	right:2rem;	
	text-align:center;
	line-height:8rem;
	display:none;
}
.mostrar-titulo-5{
	width:30%;
	height:8rem;
	background-color:#fdba05;
	border:2px solid #3D2D01;
	border-radius:0.8rem;
	font-family:gabriola;
	font-size:4rem;
	color:#3D2D01;
	font-weight:bold;
	position:absolute;
	top:36rem;
	right:2rem;	
	text-align:center;
	line-height:8rem;
	display:none;
}
.mostrar-titulo-6{
	width:30%;
	height:8rem;
	background-color:#fdba05;
	border:2px solid #3D2D01;
	border-radius:0.8rem;
	font-family:gabriola;
	font-size:4rem;
	color:#3D2D01;
	font-weight:bold;
	position:absolute;
	top:36rem;
	right:2rem;	
	text-align:center;
	line-height:8rem;
	display:none;
}
.section-04{
	width:100%;
	height:56rem;
	margin-top:6rem;
	margin-bottom:6rem;
}
.section-04-1{
	width:100%;
	height:6rem;
	margin-top:3rem;
		
}
.section-04-1 h1{
	font-family:gabriola;
	font-size:3.6rem;
	font-weight:bold;
	color:rgba(55,55,55,1);
	text-align:center;
	letter-spacing:0.2rem;
}
.section-04-2{
	width:100%;
	height:6rem;	
}
.marca1{
	width:40%;
	height:2rem;
	padding-top:1.1rem;
	background-color:transparent;
	margin:auto;
	margin-bottom:6rem;
	z-index:1;
}
.marca1 h2{
	font-family:social;
	font-size:2rem;		
	text-align:center;
	background:transparent;
	text-shadow:0.1rem  0.1rem 0.1rem #000;
	cursor:pointer;
}
.marca1 a:nth-child(1) {
	color: #3b5998;
	opacity:0.8;
}
.marca1 a:nth-child(1):hover{
	opacity:1;
	text-decoration:none;
}
.marca1 a:nth-child(2) {
	color: #3f729b ;
	opacity:0.8;
}
.marca1 a:nth-child(2):hover{
	opacity:1;
	text-decoration:none;
}
.marca1 a:nth-child(3) {
	color: #34af23;
	opacity:0.8;
}
.marca1 a:nth-child(3):hover{
	opacity:1;
	text-decoration:none;
}
.marca1 a:nth-child(4) {
	color:  #3399ff;
	opacity:0.8;
}
.marca1 a:nth-child(4):hover{
	opacity:1;
	text-decoration:none;
}


.section-04-3{
	width:100%;
	height:56rem;
	margin-top:3rem;
}
.section-04-3 form{
	width:50%;
	height:42rem;
	margin:auto;
	background-color:transparent;
}
.section-04-3 fieldset{
	width:100%;
	height:42rem;
	border:1px solid #3D2D01;
	border-radius:0.6rem;
	padding:3rem;	
}
.section-04-3 legend{
	font-family:source;
	font-size:2rem;
	color:rgba(55,55,55,1);
	text-align:center;	
	letter-spacing:0.1rem;
	
}
.section-04-3 small{
	font-family:source;
	font-size:0.8rem;
	color:rgba(55,55,55,1);
	text-align:left;	
	margin-bottom:1rem;
}
.section-04-3 label{
	font-family:source;
	font-size:1.6rem;
	color:rgba(55,55,55,1);
	text-align:left;	
	letter-spacing:0.1rem;
}
.section-04-3 input{
	width:100%;
	height:2rem;
	border:1px solid rgba(55,55,55,1);
	border-radius:0.2rem;
	background-color:#FDCF51;
	margin:0.5rem;
	padding-left:1rem;
	font-family:source;
	font-size:1.6rem;
	color:#3D2D01;
}
.section-04-3 textarea{
	width:100%;
	height:6rem;
	border:1px solid rgba(55,55,55,1);
	border-radius:0.2rem;
	background-color:#FDCF51;
	margin:0.5rem;
	padding-left:1rem;
	font-family:source;
	font-size:1.6rem;
	color:#3D2D01;
	
}
.section-04-3 .botao{
	width:20%;
	height:2.6rem;
	box-shadow:0.1rem 0.1rem 0.1rem #000;
	font-family:source;
	font-size:1.8rem;
	color:#3D2D01;
	transition:0.5s;
}
.section-04-3 .botao:hover{
	background-color:#3D2D01;
	color:#fdba05;
	cursor:pointer;
}
::placeholder{
	font-family:source;
	font-size:1.2rem;
	color:rgba(61,45,1,0.6);
}
.social-media{
	width:100%;
	height:96rem;
	padding:4rem;
	background-color:#fdba05;
	display:flex;
	flex-direction:rows;
	justify-content:center;	
}
.social-media-env{
	width:100%;
	height:96rem;
	padding:0rem;
	background-color:#fdba05;
	display:flex;
	flex-direction:column;
	justify-content:center;	
}
.social-media-0{
	width:100%;
	height:auto;
	margin-top:4rem;
}
.social-media-0 h1{
	font-family:gabriola;
	font-size:3rem;
	font-weight:bold;
	color:rgba(55,55,55,1);
	text-align:center;
	
}
.social-media-env1{
	width:100%;
	height:96rem;
	margin-top:4rem;
	background-color:#fdba05;
	display:flex;
	flex-direction:rows;
	justify-content:center;	
}
.social-media-1{
	width:50%;
	height:96rem;
	padding-left:4rem;
}

.social-media-1 h2{
	font-family:source;
	font-size:2rem;
	font-weight:bold;
	color:rgba(55,55,55,1);
	text-align:left;
	
}
.social-media-1 p{
	font-family:source-light;
	font-size:1.2rem;
	font-weight:bold;
	color:rgba(55,55,55,1);
	text-align:left;
	line-height:2rem;
	
}
.social-media-1 img{
	width:100%;
	height:auto;
}

.social-media-1 small{
	font-size:0.8rem;
}
.social-media-base-0{
	width:100%;
	height:6rem;
	text-align:center;
}
.social-media-base-0 a{
	font-family:source;
	font-size:2rem;
	font-weight:bold;
	color:rgba(55,55,55,1);	
	text-decoration:none;	
}
.social-media-base-0 a:hover{
	color:#f38000;
}
.social-media-base-0 a{
	list-style:none;
}
.social-media-base-1{
	width:100%;
	height:2rem;
	padding-left:4rem;
	padding-right:4rem;
	display:flex;
	flex-direction:rows;
	justify-content:space-between;
	background:yellow;
	margin-top:4rem;
	margin-bottom:4rem;
}
.social-media-base-1 img{
	width:5%;
	height:auto;
	transform:scale(1);
	transition:0.5s;
}
.social-media-base-1 img:hover{
	transform:scale(1.2);
	cursor:pointer;
}
.portfolio{
	width:100%;
	height:auto;
	margin-top:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	background-color:transparent;
	
}
.portfolio-01{
	width:100%;
	height:auto;	
}
.portfolio-01 h1{
	font-family:gabriola;
	font-size:3rem;
	color:rgba(55,55,55,1);
	font-weight:bold;
	text-align:center;
}
.portfolio-depoimentos{
	width:100%;
	height:auto;
	margin-top:6rem;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
	background-color:transparent;
}
.portfolio-depoimento-01{
	width:32%;
	height:32rem;
	margin-left:1%;
	margin-right:1%;
	background-color:transparent;
}

/*FOOTER*/
.footer{
	margin-top:0rem;
	width:100%;
	height:8rem;
	display:flex;
	flex-direction:rows;
	justify-content:flex-start;
	background-color:#3d2d01;
}
@media(max-width:812px){
	.footer{
		margin-top:40rem;
		
	}	
}
.header-footer{
	width:20%;
	height:auto;
	margin:auto;
}
.logo{
	width:30%;
	height:auto;
	margin:auto;
	min-width:3rem;
	text-align:center;
	background-color:transparent;
}
.logo img{
	width:100%;
}
.section-footer{
	width:40%;
	height:8rem;
}
.footer-footer{
	width:40%;
	height:1.2rem;
}
.marca{
	width:40%;
	height:2.6rem;
	padding-top:1.1rem;
	background-color:transparent;
	margin:auto;
	z-index:1;
}
.marca h2{
	font-family:social;
	font-size:1.8rem;		
	text-align:center;
	background:transparent;
	text-shadow:0.1rem  0.1rem 0.1rem #000;
	cursor:pointer;
}
.marca a:nth-child(1) {
	color: #3b5998;
	opacity:0.8;
}
.marca a:nth-child(1):hover{
	opacity:1;
	text-decoration:none;
}
.marca a:nth-child(2) {
	color: #3f729b ;
	opacity:0.8;
}
.marca a:nth-child(2):hover{
	opacity:1;
	text-decoration:none;
}
.marca a:nth-child(3) {
	color: #34af23;
	opacity:0.8;
}
.marca a:nth-child(3):hover{
	opacity:1;
	text-decoration:none;
}
.marca a:nth-child(4) {
	color:  #3399ff;
	opacity:0.8;
}
.marca a:nth-child(4):hover{
	opacity:1;
	text-decoration:none;
}

.endereco{
	width:100%;
	height:auto;
	margin-top:0.8rem;	
}
.endereco p{
	font-family:source-light;
	font-size:0.8rem;
	color:rgba(255,255,255,1);
	text-align:center;
	line-height:2rem;
	
}


.footer-footer{
	width:40%;
	height:8rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	
}
.uso{
	
	width:80%;
}
.uso p{
	font-family:source-light;
	font-size:0.8rem;
	color:rgba(255,255,255,1);
	text-align:center;
	line-height:1.4rem;
}