#topnav {
  width: 100%;
}
.navbar-light .navbar-nav .nav-link {
  color: #6db43e;
}
.nav > li > a {
  color: #6db43e;
}
.nav > li > a:hover {
}

.tabs {
  display: flex;
  table-layout: fixed;
  width: 100%;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  padding: 0;
  margin: 0;
}
.tabs > li {
  transition-duration: 0.25s;
  display: table-cell;
  list-style: none;
  text-align: center;
  padding: 20px 20px 25px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: white;
}
.tabs > li: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: 0.25s;
  border-radius: 5px 5px 0 0;
}
.tabs > li:hover:before {
  -webkit-transform: translateY(70%);
  transform: translateY(70%);
}
.tabs > li.active {
  border-bottom: 9px solid #45851c;
}
.tabs > li.active a {
  color: #fff;
}
.tabs > li a {
  font-size: 18px;
}
.tabs > li.active:before {
  transition-duration: 0.5s;
  background-color: #6db43e;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.tabcontent {
  background-color: white;
  position: relative;
  width: 100%;
  border-radius: 5px;
}
.tabcontent > li {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  list-style: none;
}
.tabcontent > li .content__wrapper {
  border-radius: 5px;
  width: 100%;

  background-color: white;
}
.btn-download {
  color: #fff;
}
.tutorial_box .tabcontent {
  display: none;
}
.tutorial_box .tabcontent.active {
  display: block;
}
.contact-box .row {
  margin-top: 1.2rem;
}
