/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 30 2025 | 11:31:24 */
.tabs-header {
  display: flex;
  gap: 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}

.tab-title {
  cursor: pointer;
  color: var(--main-text);
  padding: 10px 20px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.tab-title.active,
.tab-title:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tab-content {
  display: none;
  padding: 20px 0;
  font-size: 16px;
}

.tab-content.active {
  display: block;
}