

.bg-color {
  background-color: #46a1de;
  transition-duration: .5s;
}

.text-color {
  color: #46a1de;
  font-size:35px;
  transition-duration: .5s;
}
.wrapper {
	-webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  margin-right:auto;
  margin-left:auto;
}

.tabs {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: table;
	table-layout: fixed;
	width: 100%;
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
	padding: 0px;
	margin: 0px;
}

.tabs > li {
	-webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  transition-duration: .25s;
  display: table-cell;
  list-style: none;
  text-align: center;
  padding: 20px 20px 25px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color:#30302F;
}
.tabs > li:before {
	z-index: -1;
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,153,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 {
	z-index: 10;
  background-color:#D9D9D9;
  color:#09F;
}
.tabs > li.active:before {
  transition-duration: .5s;
  background-color:#3C3C3C;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.tab__content {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color:#3C3C3C;
	position: relative;
	width: 100%;
	border-radius: 5px;
	margin: 0px;
}
.tab__content > li {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  list-style: none;
}
.tab__content > li .content__wrapper {
	-webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 5px;
  width: 100%;
  padding: 45px 40px 40px 40px;
  background-color: white;
  -webkit-box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.50);
	-moz-box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.50);
	box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.50);
}

.content__wrapper h2 {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  font-weight: 300;
}
.content__wrapper img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.sub {
	width:100%;
	display: -webkit-flex;
 	display: flex;
	margin-bottom:20px;
	}
.txt{
	float: left;
	width: 60%;
	text-align: justify;	
	}
.ima{
	float:left;
	width:calc(40% - 30px);
	margin-left:30px;
	  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
		  
display: -webkit-flex;
  display:         flex;
	}
h3{
	text-align: left;
	}
	
.intro{
	margin-bottom:20px;}
	
@media screen and (max-width:820px ) {
.txt{
	float: left;
	width: 100%;	
	}
.ima{
	display:none;
	}
.wrapper {
  width: 100%;
}
}
@media screen and (max-width:600px ) {
.tab__content > li .content__wrapper {
  padding: 25px 20px 20px 20px;
}

.tabs > li {
  padding: 20px 0px 25px 0px;
}
}

@media screen and (max-width:300px ) {
.tab__content > li .content__wrapper {
  padding: 25px 20px 20px 20px;
}

.tabs > li {
	font-size:12px;
}
}