.tab-wrapper {
  text-align: center;
  display: block;
  margin: auto;
  width: 100% !important;
}
.tabs {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.tab-link {
  margin: 0;
  list-style: none;
  padding: 10px 40px;
  color: rgba(33, 41, 43, 0.73);
  cursor: pointer;
  font-weight: 700;
  transition: all ease 0.5s;
  border-bottom: solid 4px rgba(33, 41, 43, 0.73);
  font-size: 18px !important;
  font-family: "lato-black";
  width: 50% !important;
}
.tab-link:hover {
  color: #21292b;
  border-color: #21292b;
}

.tab-link.active {
  color: #333;
  border-color: #333;
}

.tab-link:nth-of-type(1).active {
  color: #f79833;
  border-color: #f79833;
}

.tab-link:nth-of-type(2).active {
  color: #f79833;
  border-color: #f79833;
}
.content-wrapper {
  padding: 15px 30px;
}
.tab-content {
  display: none;
  text-align: left;
  opacity: 0;
  /*padding-top: 30px !important;*/
  transform: translateY(15px);
  animation: fadeIn 0.5s ease 1 forwards;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: none;
  }
}



@media only screen and (min-device-width : 320px) and (max-device-width : 480px)
{
.tab-link {
  margin: 0;
  list-style: none;
  padding: 10px 15px !important;
  font-size: 14px !important;
  font-weight: bold !important;
}
  .content-wrapper {
    padding: 15px 0;
  }
}

