
nav {
  z-index: 9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

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

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

footer {
  padding: 40px 0;
  text-align: center;
  opacity: .33;
  color: white;
}

.wrapper {
  min-width: 600px;
  max-width: 900px;
  margin: 0 auto;
}

.tabs {
  display: table;
  table-layout: fixed;
  width: 100%;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}
.tabs > .tab_item {
  transition-duration: .25s;
  display: table-cell;
  list-style: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-left: 5px solid white;
  border-right: 5px solid white;
  padding-bottom: 5px;
}
.tabs > .tab_item > .tab_in {
  background: #517F3D;
  color: white;
  border-radius: 10px;
  padding: 10px 10px 15px 10px;
  text-align: center;
  word-wrap: break-word;
  vertical-align: middle;
}
.tabs > .tab_item: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 > .tab_item:hover:before {
  -webkit-transform: translateY(70%);
  transform: translateY(70%);
}
.tabs > .tab_item.active > .tab_in {
  background: #3B5D2D;
}
.tabs > .tab_item.active:before {
  transition-duration: .5s;
  background-color: white;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.tab__content {
  background-color: white;
  position: relative;
  width: 100%;
}
.tab__content > .tab_item {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  list-style: none;
}
.tab__content > .tab_item .content__wrapper {
    width: 100%;
    padding: 25px 0px;
}

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