@charset "utf-8";
/* CSS Document */

.tabs-nav ul {
  margin: 0;
  padding: 0;
}

.tabs-nav li {
  display: inline-block;
  margin-right: 8px;
}

.tabs-nav a {
  display: block;
  padding: 10px 15px;
  font-weight: bold;
  background: #fff;
  color: #48474B;
  text-decoration: none;
  border-radius: 4px;
}
/* Active tab */

.tabs-nav li.active a {
  background: #189BD3;
  color: #fff;
}
/* Tab content */

.tabs-content {
	width: 100%;
}
.tabs-content ul {
	width: 100%;
	margin-top: 40px;
}
.tabs-content ul li {
	width: 30%;
	display: inline-block;
	float: none;
	clear: none;
	margin: 1%;
	overflow: hidden;
}
.tabs-content li a {
	display: block;
	border: #111 8px solid;
	border-radius: 50px 0;
	height: 300px;
	position: relative;
	overflow: hidden;
}
.tabs-content li a::before {
	display: block;
	border: #222 8px solid;
	height: 267px;
	position: absolute;
	bottom: -267px;
	left: 0;
	width: calc( 100% - 16px );
	content: " ";
	z-index: 2;
	background: rgba(0,0,0,0.8) url("../images/search-plus.png") 50% 40% no-repeat;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.tabs-content li:hover a::before {
	border-radius: 40px 0;
	bottom: 0;
	opacity:10;
}
.tabs-content li a::after {
	display: block;
	border: #222 8px solid;
	border-radius: 40px 0;
	height: 267px;
	position: absolute;
	top: 0;
	left: 0;
	width: calc( 100% - 16px );
	content: " ";
	z-index: 20;
}
.tabs-content li img {
	height: auto;
	width: auto;
	min-height: 100%;
	min-width: 100%;
	border-radius: 40px 0;
	border: #222 8px solid;
	position: relative;
}
.tabs-content li a section {
	width: calc( 100% - 16px );
	bottom: 8px;
	left: 8px;
	padding: 10px;
	background: rgba(0,0,0,1);
	color: #fff;
	z-index: 2;
	position: absolute;
	border-radius: 0 0 30px 0;
	text-align: left;
}
.tabs-content li a section h6 {
	font-size: 18px;
	margin: 0 0 4px;
	color: #fff;
}
.tabs-content li a section p {
	font-size: 12px;
	margin: 0;
	color: #fff;
}

/* Hide all but first content div */

.tabs-content div:not(:first-child) {
  display: none;
}