@charset "utf-8";
/* OFFICE EXPRESS */

@import url('https://fonts.googleapis.com/css?family=Raleway:300,500,700');

/**  Aspectos Básicos **/
html {}
body {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size: 2em;
	color: #6E6E6E;
}
h1, h2, h3, h4, h5 {
	font-weight: 700;
	color: #636262;
}
a, a:visited {
	color: #00cc99;
	font-weight: 500;
	text-decoration: none;
}
a:hover, a:active, a:focus {
	color: #00FFBF;
	text-decoration: none;
}
.btn-simple {
	background-color: #00cc99;
	border: none;
	color: white;
	font-weight: 700;
	transition: all 0.5s;
}
.btn-simple:hover {
	color: white;
	background-color: #00FFBF;
}
.btn-simple span {
	color: #3b3b3b;
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}
.btn-simple span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: -15px;
	right: -20px;
	transition: 0.5s;
}
.btn-simple:hover span {
	padding-right: 20px;
}
.btn-simple:hover span:after {
	color: white;
	opacity: 1;
	right: 0;
}
i {
	color: white;
	background-color: transparent;
}
.companyname {
	color: #00cc99;
	font-weight: 500;
}
