.tabs-wrapper {
    display: flex;
}

/* =========================
   THEME 1 (Top Tabs)
========================= */

.theme-1 .tabs-wrapper {
    flex-direction: column;
}

.theme-1 .tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.theme-1 .tabs-stage {
    margin-top: 40px;
}

/* =========================
   THEME 2 (Left Tabs)
========================= */

.theme-2 .tabs-wrapper {
    flex-direction: row;
}

.theme-2 .tabs-nav-wrap {
    width: 30%;
}

.theme-2 .tabs-stage {
    width: 70%;
}

/* =========================
   Tabs Nav
========================= */

.tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs-nav li {
    margin-bottom: 10px;
}

.tabs-nav a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.tabs-nav li.active a {
    background: #000;
    color: #fff;
}

/* =========================
   Stage
========================= */

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

.tab-img-section img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.block-subtitle {
    margin: 10px 0 20px;
}

/* =========================
   Animation
========================= */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================
   Mobile
========================= */

.tabs-dropdown {
    display: none;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {

    .tabs-wrapper {
        flex-direction: column;
    }

    .tabs-nav {
        display: none;
    }

    .mobile-dropdown .tabs-dropdown {
        display: block;
    }

    .mobile-slider .tabs-stage {
        display: block;
    }

}
