@keyframes content-slide-bot {
  from {
    top: 20px;
    opacity: 0;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}



.tabs-wrapper {
	margin: 0px;
	padding: 0px;
}
.tabs-wrapper input[type="radio"] {
  display: none;
}
.tabs-wrapper label {
  transition: all 0.1s;
  display: inline-block;
  cursor: pointer;
  color: #02234E;
  font-size: 18px;
  font-weight: 700;
  width: 49.7%;
  height: 3em;
  text-align: center;
  line-height: 3em;
}
.tabs-wrapper label:last-of-type {
  border-bottom: none;
}
.tabs-wrapper label:hover {
  color: #000;
  border-bottom: 5px solid #02234E;
}
@media screen and (max-width: 1600px) {
  .tabs-wrapper label {

  }
}
@media screen and (max-width: 900px) {
  .tabs-wrapper label {

  }
}
@media screen and (max-width: 600px) {
  .tabs-wrapper label {
    width: 100%;
    display: block;
    border-bottom: 1px solid #02234E;
    border-radius: 0;
  }
}
@media screen and (max-width: 600px) {
  .tabs-wrapper {
    margin: 0;
  }
}

#tab1:checked + label,
#tab2:checked + label,
#tab3:checked + label,
#tab4:checked + label {
  color: #000;
  border-bottom: 5px solid #02234E;
}

.tab-body {
  position: absolute;
  top: -9999px;
  opacity: 0;
  padding: 10px;
}

.tab-body-wrapper {
  border-top: 1px solid #02234E;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .tab-body-wrapper {
    border: none;
    border-radius: 0;
  }
}

#tab1:checked ~ .tab-body-wrapper #tab-body-1,
#tab2:checked ~ .tab-body-wrapper #tab-body-2,
#tab3:checked ~ .tab-body-wrapper #tab-body-3,
#tab4:checked ~ .tab-body-wrapper #tab-body-4 {
  position: relative;
  top: 0px;
  animation-delay: 0.1s;
  animation-duration: 0.4s;
  animation-name: content-slide-bot;
  animation-fill-mode: forwards;

}