

.bg-color {
  background-color: #46a1de;
  transition-duration: .5s;
}

.text-color {
  color: #46a1de;
  transition-duration: .5s;
}


.wrapper {
	width: 100%;
	margin-top: 3%;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

.tabs {
  display: table;
  table-layout: fixed;
  width: 100%;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.tabs > li {
	transition-duration: .25s;
	display: table-cell;
	list-style: none;
	text-align: center;
	padding: 10px 10px 15px 10px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	color: #C60000;
	font-size: 25px;
		border:solid #CCC 1px;

	  border-radius: 5px 5px 0 0;

	/* 	background-color: rgba(153,153,153,0.1);  */
	background-color: rgba(153,153,153,0.1); 
}

.tabs > li:before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 100%;
  height: 120%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition-duration: .25s;
  border-radius: 5px 5px 0 0;
}
.tabs > li:hover:before {
  -webkit-transform: translateY(70%);
  transform: translateY(70%);
}
.tabs > li.active {
  color: #50555a;
}
.tabs > li.active:before {
  transition-duration: .5s;
  background-color: white;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.tab__content {
  background-color: white;
  position: relative;
  width: 100%;
  border-radius: 5px;
}
.tab__content > li {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  list-style: none;
}
.tab__content > li .content_wrapper {
  text-align: center;
  border-radius: 5px;
  width: 100%;
  padding: 15px 40px 40px 40px;
  background-color: white;
}

.content_wrapper h4 {
  width: 100%;
  text-align: right;
  font-weight: 300;
  color:#808080;
   padding-top:2%;
}

.content_wrapper p{
  width: 100%;
  text-align: right;
  padding-bottom: 2%;
  font-weight: 300;
}
.content_wrapper img {
  height: auto;
  border-radius: 5px;
}
