/*Fun begins*/
.tab_container {
	width: 980px;
	position: relative;
	top: -49px;
}

.tab_container input, section {
  clear: both;
  display: none;
}

.tab_container label {
  font-weight: 500;
   font-size: 14px;
  display: block;
  float: left;
  width: auto;
  margin-top:10px;
  padding: 10px;
  color: #FFF;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: #3c4e8e;
}

.tab_container label:hover {
        background: #2e417a;
        top: 0;
      }

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5 {
  display: block;
  padding: 10px;
  background: #fff;
  color: #999;
  border-bottom: none;
}

.tab_container .tab-content p,
.tab_container .tab-content h3 {
  -webkit-animation: fadeInScale 0.7s ease-in-out;
  -moz-animation: fadeInScale 0.7s ease-in-out;
  animation: fadeInScale 0.7s ease-in-out;
}
.tab_container .tab-content h3  {
  text-align: center;
}

.tab_container [id^="tab"]:checked + label {
  background: #1c3379;
}

.tab_container [id^="tab"]:checked + label .fa {
  color: #0CE;
}

.tab_container label .fa {
  font-size: 14px;
  margin: 0 0.4em 0 0;
}

/*Media query*/
@media only screen and (max-width: 900px) {
    
  .tab_container {
    width: 100%;
  }
}

/*Content Animation*/
@keyframes fadeInScale {
  0% {
  	transform: scale(0.9);
  	opacity: 0;
  }
  
  100% {
  	transform: scale(1);
  	opacity: 1;
  }
}

.no_wrap {
  text-align:center;
  color: #0ce;
}
.link {
  text-align:center;
}