 .css-tabs-wrapper {	
	margin: 0 0 0 0px;
}
.css-tabs-wrapper > input {
	display: none;
}
.css-tabs-wrapper > label {
	display: block;
	float: left;
	padding: 10px 20px;
	margin-right: 5px;
	cursor: pointer;
	transition: all .25s ease-in-out;
	width: 19.55%;
	border: 1px solid #f66d42;
	text-transform: uppercase;
	vertical-align: middle;
	min-height: 136px;
    
}
.css-tabs-wrapper > label p{
	background:rgba(189, 188, 122, 0.2);	
	margin-bottom: 5px;
	font-size: 14px;
}
.css-tabs-wrapper > label:hover,
.css-tabs-wrapper > input:checked + label {
		
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	color: #ffffff;
}
.tabs {
	clear: both;
	min-height: 350px;
	perspective: 350px;
}
.tabs > div {
	position: absolute;
	opacity: 0;
	max-width: 100%;
	border: 2px solid #f66d42;
	padding: 10px 30px 40px;
	transform: rotateX(-25deg);
	transform-origin: top center;
	transition: opacity .3s ease-in-out, transform 1s;
	background-color: rgba(237, 237, 237, 0.8);	
}
.industry:hover, .industry:checked + label {
background-image: url(/images/tab/tab-industry.png);
}
.fire:hover, .fire:checked + label {
background-image: url(/images/tab/tab-fireman.png);	
}
.military:hover , .military:checked + label {
background-image: url(/images/tab/tab-military.png);	
}
.sea:hover, .sea:checked + label {
background-image: url(/images/tab/tab-sea.png);	
}
.diving:hover, .diving:checked + label {
background-image: url(/images/tab/tab-diving.png);	
}
#tab-nav-1:checked ~ .tabs > div:nth-of-type(1),
#tab-nav-2:checked ~ .tabs > div:nth-of-type(2),
#tab-nav-3:checked ~ .tabs > div:nth-of-type(3),
#tab-nav-4:checked ~ .tabs > div:nth-of-type(4),
#tab-nav-5:checked ~ .tabs > div:nth-of-type(5)
{
	opacity: 1;
	z-index: 1;
transform: rotateX(0deg);  
}
@media only screen and (max-width : 992px) {
	.tabs {
		min-height: 420px;
	}
}
@media only screen and (max-width : 768px) {
	.tabs {
		min-height: auto;
	}
	.css-tabs-wrapper > label {
		display: none;
	}
	.tabs > div {
		border: none;
		padding-bottom: 5px;
		opacity: 1;
		position: static;
		transform: none;
	}