/* Tabs */
.tab {
  display: flex;
  justify-content: center;
 border-bottom:1px solid rgba(255, 255, 255, 0.2);
}

.tab button {
  border: none;
  background: transparent;
  padding: 15px 25px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.tab button:hover,
.tab button.active {
	background-color:var(--primary-color);
    color: #fff;
}

/* Tab content */
.tabcontent {
  display: none;
  padding: 30px 0;
  width: 100%;
  margin: auto;
}

/* Fade In Up Animation */
.fadeInUp {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .tab {
    flex-direction: column;
  }
}