@charset "utf-8";
/* CSS Document */
.container {
	float: left;
	width: 92%;
	height: 140px;
	background-color: #770007;
	padding-left: 4%;
	padding-right: 4%;
	margin-top: 8px;
}
.box {
	float: left;
	background-color: #770007;
	width: 20%;
	height: 100%;
	box-sizing: border-box;
	transform: skewX(-25deg);
	position: relative;
	overflow: hidden;
	display: inline-block;
	border-right-width: 7px;
	border-right-style: solid;
	border-right-color: #FFF;
	cursor: pointer;
	-webkit-transition: .2s ease-out;
	-moz-transition: .2s ease-out;
	-o-transition: .2s ease-out;
	transition: .2s ease-out;
}
.box:last-child {
	border:none;
}
.retifica {
	float:left;
	transform: skew(25deg);
	text-align:center;
	width:85%;
}
/* tamanho do icone*/
.retifica img{
	width:100px;
	height:auto;
	margin-top:10px;
}
/* tamanho do texto icone*/
.box p{
	font-size:17px;
	color:#FFF;
}
.box:hover {
	z-index: 100;
	position: relative;
	background-color: #F00;
	transform: skewX(-25deg);
}

