

:root {
    --focus-outline: 3px solid Highlight;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    background: transparent;
}

html, body {
    height: 100%;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--sb-font-body-family);
    font-weight: var(--sb-font-body-weight);
    font-style: var(--sb-font-body-style);
    font-size: var(--sb-font-body-size);
    line-height: var(--sb-font-body-line-height);
    letter-spacing: var(--sb-font-body-letter-spacing);
    color: var(--sb-font-body-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sb-font-heading-family);
    font-weight: var(--sb-font-heading-weight);
    font-style: var(--sb-font-heading-style);
    line-height: var(--sb-font-heading-line-height);
    letter-spacing: var(--sb-font-heading-letter-spacing);
    color: var(--sb-font-heading-color);
}

a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;

    &:hover {
        color: var(--sb-general-color);
    }
}

img, picture, svg, video {
    max-width: 100%;
    height: auto;
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button, input, select, textarea {
    font: inherit;
    margin: 0;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    outline: none;
    appearance: none;
}

.w-3-rem {
    width: 3rem;
}

:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

:focus-visible {
    outline: 2px solid var(--sb-general-color, #1E40AF);
    outline-offset: 3px;
    border-radius: 3px;
}

.btn:focus,
.form-control:focus,
.nav-link:focus {
    box-shadow: none !important;
}

.sb-skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    z-index: 9999;
    padding: 8px 20px;
    background: var(--sb-general-color, #1E40AF);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    text-decoration: none;
    font-size: 14px;
}

.sb-skip-link:focus-visible {
    left: 0;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

::placeholder {
    opacity: 1;
    color: #9aa0a6;
}

:disabled {
    cursor: default;
    opacity: 0.6;
    pointer-events: none;
}

.btn-rs-1 {
    background: var(--sb-general-color);
    color: #fff;
    border: 0;
    font-weight: 600;
    text-transform: uppercase;

    &:hover {
        background: #222;
        color: #fff;
    }
}

.copy-right-logo {
    filter: brightness(0) invert(1);
}

.rs-top-bg {
    background: linear-gradient(166deg, #fff 20%, #e7decd 100%);
}

#sb_nav {
    .nav-item {
        border-right: 1px solid #eee;
        padding: 0.3rem 1rem;

        &:last-child {
            border-right: none;
        }

        .nav-link {
            font-family: var(--sb-font-main-menu-family);
            font-weight: var(--sb-font-main-menu-weight);
            font-style: var(--sb-font-main-menu-style);
            font-size: var(--sb-font-main-menu-size);
            line-height: var(--sb-font-main-menu-line-height);
            letter-spacing: var(--sb-font-main-menu-letter-spacing);
            text-transform: var(--sb-font-main-menu-transform);
            color: var(--sb-font-main-menu-color);
            transition: all 0.3s ease;

            &:hover {
                color: var(--sb-general-color);
            }
        }
    }

    .dropdown {
        &:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .dropdown-menu {
            display: block;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            background: #fff;
            padding: 0;
            top: 45px;

            .nav-item {
                padding: 0px;
            }

            .nav-link {
                font-family: var(--sb-font-sub-menu-family);
                font-weight: var(--sb-font-sub-menu-weight);
                font-style: var(--sb-font-sub-menu-style);
                font-size: var(--sb-font-sub-menu-size);
                line-height: var(--sb-font-sub-menu-line-height);
                letter-spacing: var(--sb-font-sub-menu-letter-spacing);
                text-transform: var(--sb-font-sub-menu-transform);
                color: var(--sb-font-sub-menu-color);

                &:hover {
                    background: var(--sb-general-color);
                    color: #fff !important;
                }
            }
        }
    }
}

#banner-slider {
    position: relative;

    .swiper-slide {
        display: flex;
        align-items: center;
        overflow: hidden;

        img {
            position: relative;
            z-index: 0;
        }

        &::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 100%;
            background: rgba(184, 134, 11, 0.8);
            background-size: 600% 100%;
            z-index: 1;
        }
    }

    .sb-slider-content {
        z-index: 2;
        padding-left: 4rem;
    }

    .sb-w-slider {
        width: 35%;
    }

    .sb-slider-title {
        font-size: clamp(1.6rem, 5vw, 3rem);
        font-weight: 700;
        color: #fff;
        margin: 0;
        line-height: 1;

        @media (max-width: 991px) {
            font-size: 2.2rem;
        }
        @media (max-width: 767px) {
            font-size: 1.6rem;
        }
    }

    .swiper-pagination-bullet {
        background-color: #fff;
        opacity: 1;
        width: 1rem;
        border-radius: 5px;

        & -active {
            background-color: var(--sb-general-color);
            width: 4rem;
        }
    }
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.sb-search-trigger {
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 9px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sb-font-main-menu-color, #334155);
    font-size: 17px;
    transition: background 150ms, color 150ms;
    flex-shrink: 0;
}

.sb-search-trigger:hover {
    background: rgba(0, 0, 0, .06);
    color: var(--sb-general-color);
}

.sh5-utility .sb-search-trigger {
    color: #475569;
}

.sh4-nav-strip .sb-search-trigger {
    color: rgba(255, 255, 255, .85);
}

.sh4-nav-strip .sb-search-trigger:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.sb-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9990;
    background: rgba(10, 15, 35, .65);
    backdrop-filter: blur(10px) saturate(1.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 240ms ease, visibility 240ms ease;
}

.sb-search-overlay.sb-search--open {
    opacity: 1;
    visibility: visible;
}

body.sb-search-lock {
    overflow: hidden;
}

.sb-search-box {
    width: 100%;
    max-width: 660px;
    transform: translateY(-24px) scale(.97);
    transition: transform 240ms ease;
}

.sb-search-overlay.sb-search--open .sb-search-box {
    transform: translateY(0) scale(1);
}

.sb-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border-radius: 18px;
    padding: 6px 8px 6px 20px;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, .35),
        0 0 0 1px rgba(255, 255, 255, .08);
}

.sb-search-ic {
    font-size: 18px;
    color: #94A3B8;
    flex-shrink: 0;
}

.sb-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-family: inherit;
    padding: 14px 12px;
    background: transparent;
    color: #1E293B;
    min-width: 0;
}

.sb-search-input::placeholder {
    color: #94A3B8;
}

.sb-search-close {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: none;
    background: #F1F5F9;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 15px;
    transition: background 150ms, color 150ms;
}

.sb-search-close:hover {
    background: #E2E8F0;
    color: #1E293B;
}

.sb-search-hint {
    text-align: center;
    color: rgba(255, 255, 255, .5);
    font-size: 12.5px;
    margin: 14px 0 0;
    letter-spacing: .2px;
}

.sb-search-hint kbd {
    background: rgba(255, 255, 255, .15);
    border-radius: 5px;
    padding: 2px 7px;
    font-family: inherit;
    font-size: 12px;
    color: rgba(255, 255, 255, .8);
}

.sb-empty-state {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 52px 48px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #E8EDF5;
    overflow: hidden;
    width: 100%;
}

.sb-empty-state-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.sb-empty-state-eyebrow {
    font-size: 2rem;
    font-weight: 800;
    color: #1E293B;
    margin: 0;
    line-height: 1;
    letter-spacing: -.5px;
}

.sb-empty-state-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1E293B;
    margin: 0;
    letter-spacing: -.4px;
    line-height: 1.2;
}

.sb-empty-state-desc {
    font-size: 13.5px;
    color: #64748B;
    margin: 0;
    line-height: 1.65;
    max-width: 340px;
}

.sb-empty-state-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    padding: 10px 22px 10px 16px;
    background: var(--sb-general-color, #1E40AF);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 200ms, transform 200ms;
    font-family: inherit;
}

.sb-empty-state-btn i {
    font-size: 20px;
    line-height: 1;
}

.sb-empty-state-btn:hover {
    opacity: .85;
    color: #fff;
    transform: translateX(-2px);
}

.sb-empty-state-visual {
    width: 260px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-es-c {
    position: absolute;
    border-radius: 50%;
    background: color-mix(in srgb, var(--sb-general-color, #1E40AF) 12%, transparent);
}

.sb-es-c--lg {
    width: 190px;
    height: 190px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sb-es-c--md {
    width: 90px;
    height: 90px;
    bottom: 4px;
    right: 10px;
    background: color-mix(in srgb, var(--sb-general-color, #1E40AF) 8%, transparent);
}

.sb-es-c--sm {
    width: 44px;
    height: 44px;
    top: 14px;
    left: 24px;
    background: color-mix(in srgb, var(--sb-general-color, #1E40AF) 10%, transparent);
}

.sb-empty-state-visual > i {
    font-size: 84px;
    color: var(--sb-general-color, #1E40AF);
    position: relative;
    z-index: 1;
    opacity: .85;
}

@media (max-width: 640px) {
    .sb-empty-state {
        flex-direction: column-reverse;
        padding: 36px 24px;
        gap: 20px;
    }

    .sb-empty-state-visual {
        width: 180px;
        height: 160px;
    }

    .sb-empty-state-visual > i {
        font-size: 60px;
    }

    .sb-es-c--lg { width: 140px; height: 140px; }
    .sb-es-c--md { width: 60px;  height: 60px;  }
    .sb-es-c--sm { width: 32px;  height: 32px;  }

    .sb-empty-state-eyebrow { font-size: 1.5rem; }
    .sb-empty-state-title   { font-size: 1.2rem; }
    .sb-empty-state-body    { align-items: center; text-align: center; }
    .sb-empty-state-desc    { max-width: 100%; }
}

.sbc-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.sbc-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .20);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sbc-icon i { font-size: 14px; color: #fff; }

.sbc-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -.2px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sbc-trail { display: flex; align-items: center; flex-wrap: nowrap; margin: 0; padding-left: 0; }
.sbc-trail .breadcrumb-item { font-size: 12.5px; font-weight: 500; }
.sbc-trail .breadcrumb-item + .breadcrumb-item::before {
    content: "\f285";
    font-family: "bootstrap-icons";
    font-size: .7rem;
    position: relative;
    top: 2px;
}

.sbc-trail--light .breadcrumb-item a          { color: rgba(255,255,255,.78); text-decoration: none; transition: color 140ms; }
.sbc-trail--light .breadcrumb-item a:hover    { color: #fff; }
.sbc-trail--light .breadcrumb-item.active     { color: #fff; font-weight: 600; }
.sbc-trail--light .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.42); }

.sbc-trail--dark .breadcrumb-item a           { color: #64748B; text-decoration: none; transition: color 140ms; }
.sbc-trail--dark .breadcrumb-item a:hover     { color: var(--sb-general-color); }
.sbc-trail--dark .breadcrumb-item.active      { color: #1E293B; font-weight: 600; }
.sbc-trail--dark .breadcrumb-item + .breadcrumb-item::before { color: #CBD5E1; }

.sbc-1 {
    background: var(--sb-general-color);
    padding: 12px 0;
}
.sbc-1-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.sbc-1 .sbc-trail--light {
    background: rgba(255,255,255,.16);
    border-radius: 50px;
    padding: 5px 14px 5px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sbc-2 {
    background: #fff;
    border-bottom: 1px solid #EEF2F8;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    padding: 14px 0;
}
.sbc-2-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.sbc-2-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    letter-spacing: -.2px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sbc-2 .sbc-trail--dark {
    background: #F1F5FB;
    border-radius: 50px;
    padding: 5px 14px 5px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sbc-3 {
    background: #0F172A;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.sbc-3 .container {
    display: flex;
    align-items: center;
}
.sbc-3 .sbc-trail--light {
    white-space: nowrap;
}

.sbc-4 {
    position: relative;
    background: linear-gradient(135deg, var(--sb-general-color) 0%, #0F172A 100%);
    background-size: cover;
    background-position: center;
    padding: 40px 0 36px;
    text-align: center;
    overflow: hidden;
}
.sbc-4-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, .70) 0%,
        rgba(15, 23, 42, .50) 100%);
}
.sbc-4-inner {
    position: relative;
    z-index: 1;
}
.sbc-4-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -.4px;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.sbc-4 .sbc-trail--light {
    justify-content: center;
}

.sbc-5 {
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    padding: 8px 0;
}
.sbc-5 .sbc-trail--dark {
    white-space: nowrap;
}

.sb-breadcrumb-wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; flex-wrap: wrap; }
.sb-bc-left        { display: flex; align-items: center; gap: 10px; min-width: 0; }
.sb-bc-icon        { width: 34px; height: 34px; flex-shrink: 0; background: rgba(255,255,255,.18); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.sb-bc-icon i      { font-size: 15px; color: #fff; }
.sb-bc-title       { font-size: 1.1rem; font-weight: 700; color: #fff; margin: 0; letter-spacing: -.2px; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sb-bc-trail       { display: flex; align-items: center; flex-wrap: nowrap; background: rgba(255,255,255,.15); border-radius: 50px; padding: 5px 14px 5px 10px; white-space: nowrap; }
.sb-bc-trail .breadcrumb-item { font-size: 12.5px; font-weight: 500; }
.sb-bc-trail .breadcrumb-item a { color: rgba(255,255,255,.82); text-decoration: none; transition: color 150ms; }
.sb-bc-trail .breadcrumb-item a:hover { color: #fff; }
.sb-bc-trail .breadcrumb-item.active { color: #fff; font-weight: 600; }
.sb-bc-trail .breadcrumb-item + .breadcrumb-item::before { content: "\f285"; font-family: "bootstrap-icons"; font-size: .72rem; color: rgba(255,255,255,.5); position: relative; top: 2px; }

.sb_header_5 {
    box-shadow: 0 3px 16px rgba(0, 0, 0, .08);
}

.sh5-desktop {
    align-items: stretch;
    min-height: 90px;
}

.sh5-brand {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    position: relative;
    border-right: 1px solid #ddd;
}

.sh5-brand::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -28px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    pointer-events: none;
}

.sh5-brand-right {
    border-right: none;
    border-left: 1px solid #ddd;
}

.sh5-brand-right::after {
    right: auto;
    left: -28px;
}

.sh5-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sh5-utility {
    background: #F3F6FB;
    border-bottom: 1px solid #E4EAF3;
    padding: 6px 20px;
    flex-shrink: 0;
}

.sh5-utility-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.sh5-utility input[type="search"] {
    width: 170px;
    transition: width 220ms ease;
}

.sh5-utility input[type="search"]:focus {
    width: 230px;
}

.sh5-utility #social_media a {
    padding: 3px 7px !important;
    font-size: .82rem;
}

.sh5-nav {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: #fff;
    position: relative;
}

.sb_header_5 #sb_nav {
    width: 100%;
    position: static;
}

.sb_header_5 #sb_nav .navbar-nav {
    padding: 0;
}

.sb_header_5 #sb_nav .nav-item {
    border-right: 1px solid #eee;
}

.sb_header_5 #sb_nav .nav-item:last-child {
    border-right: none;
}

.sb_header_5 #sb_nav .nav-link {
    font-family: var(--sb-font-main-menu-family);
    font-weight: var(--sb-font-main-menu-weight);
    font-size: var(--sb-font-main-menu-size);
    text-transform: var(--sb-font-main-menu-transform);
    color: var(--sb-font-main-menu-color);
    padding-top: 14px;
    padding-bottom: 14px;
    transition: color 150ms, background 150ms;
}

.sb_header_5 #sb_nav .nav-link:hover {
    color: var(--sb-general-color);
}

.sb_header_5 #sb_nav .nav-item.active > .nav-link,
.sb_header_5 #sb_nav .nav-item.current-menu-item > .nav-link {
    color: var(--sb-general-color);
    font-weight: 700;
}

.sb_header_5 #sb_nav .dropdown-menu {
    border-top: 3px solid var(--sb-general-color);
    border-radius: 0 0 10px 10px;
    margin-top: 0;
}

.sh5-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #fff;
    border-left: 5px solid var(--sb-general-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

body.sb-sep-mh .sh1-mobile,
body.sb-sep-mh .sh4-mobile,
body.sb-sep-mh .sh5-mobile,
body.sb-sep-mh .sh6-mobile,
body.sb-sep-mh .sh7-mobile,
body.sb-sep-mh .sh8-mobile,
body.sb-sep-mh .sh9-mobile {
    display: none !important;
}

.sb-mh {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 0 16px;
    min-height: 58px;
}

.sb-mh .sb-mh-logo img {
    max-height: 36px;
    width: auto;
    display: block;
}

.sb-mh .mm-trigger {
    color: inherit;
}

.sb-mh-1 {
    background: #fff;
    border-bottom: 3px solid var(--sb-general-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.sb-mh-1 .sb-search-trigger {
    color: #475569;
}

.sb-mh-2 {
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
    position: relative;
    padding: 0 12px;
}

.sb-mh2-left,
.sb-mh2-right {
    flex: 1;
    z-index: 1;
}

.sb-mh2-right {
    display: flex;
    justify-content: flex-end;
}

.sb-mh2-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sb-mh-2 .sb-search-trigger {
    color: #475569;
}

.sb-mh-3 {
    background: #0F172A;
    border-bottom: none;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .25);
}

.sb-mh-3 .sb-mh-logo img {
    filter: brightness(0) invert(1);
}

.sb-mh-3 .sb-search-trigger {
    background: rgba(255, 255, 255, .10);
    border: none;
    color: rgba(255, 255, 255, .80);
    border-radius: 8px;
    padding: 6px 10px;
}

.sb-mh-3 .sb-search-trigger:hover {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.sb-mh-3 .mm-trigger {
    border-color: rgba(255, 255, 255, .25);
    color: #fff;
}

.sb-mh-3 .mm-trigger:hover {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .4);
}

.sb-mh-4 {
    background: #fff;
    border-left: 4px solid var(--sb-general-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    padding: 0;
}

.sb-mh4-top {
    padding: 0 16px;
    min-height: 54px;
    border-bottom: 1px solid #EEF2F8;
}

.sb-mh4-bottom {
    padding: 5px 16px;
    background: #F8FAFC;
}

.sb-mh-4 #social_media a {
    border: none !important;
    background: transparent !important;
    color: #64748B !important;
    padding: 4px 6px !important;
    font-size: .85rem;
    border-radius: 6px !important;
    transition: background 150ms, color 150ms;
}

.sb-mh-4 #social_media a:hover {
    background: rgba(0, 0, 0, .05) !important;
    color: var(--sb-general-color) !important;
}

.sb-mh-4 .sb-search-trigger {
    color: #475569;
}

.sh9-utility {
    background: #0F172A;
    padding: 7px 0;
    overflow: hidden;
    max-height: 50px;
    transition:
        max-height 360ms cubic-bezier(.4, 0, .2, 1),
        padding    360ms cubic-bezier(.4, 0, .2, 1),
        opacity    250ms ease;
    opacity: 1;
}

.sb_header_9.sh9--scrolled .sh9-utility {
    max-height: 0;
    padding: 0;
    opacity: 0;
}

.sh9-utility-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sh9-top-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.sh9-top-menu li a {
    display: block;
    color: rgba(255, 255, 255, .60);
    font-size: 12px;
    font-weight: 500;
    padding: 0 13px;
    border-right: 1px solid rgba(255, 255, 255, .10);
    text-decoration: none;
    transition: color 150ms;
}

.sh9-top-menu li:last-child a {
    border-right: none;
}

.sh9-top-menu li a:hover {
    color: #fff;
}

.sh9-utility #social_media {
    gap: 2px;
}

.sh9-utility #social_media a {
    border: none !important;
    border-radius: 4px !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .60) !important;
    padding: 3px 7px !important;
    font-size: .82rem;
    transition: background 150ms, color 150ms;
}

.sh9-utility #social_media a:hover {
    background: rgba(255, 255, 255, .10) !important;
    color: #fff !important;
}

.sh9-utility .sb-search-trigger {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .65);
    padding: 3px 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 150ms, color 150ms;
}

.sh9-utility .sb-search-trigger:hover {
    background: rgba(255, 255, 255, .10);
    color: #fff;
}

.sh9-brand {
    background: #fff;
    border-bottom: 2px solid #EEF2F8;
    overflow: hidden;
    max-height: 120px;
    padding: 18px 0;
    transition:
        max-height 360ms cubic-bezier(.4, 0, .2, 1),
        padding    360ms cubic-bezier(.4, 0, .2, 1),
        opacity    250ms ease;
    opacity: 1;
}

.sb_header_9.sh9--scrolled .sh9-brand {
    max-height: 0;
    padding: 0;
    opacity: 0;
    border-bottom: none;
}

.sh9-right-logo {
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-left: 1px solid #DDE3ED;
}

.sh9-right-logo img {
    max-height: 72px;
    width: auto;
}

.sh9-nav {
    background: #1B2A45;
    position: sticky;
    top: 0;
    z-index: 1040;
    transition: box-shadow 300ms;
}

.sb_header_9.sh9--scrolled .sh9-nav {
    box-shadow: 0 6px 28px rgba(0, 0, 0, .30);
}

.sb_header_9 #sb_nav {
    width: 100%;
    position: static;
}

.sb_header_9 #sb_nav .navbar-nav {
    padding: 6px 0;
    gap: 2px;
}

.sb_header_9 #sb_nav .nav-link {
    font-family:    var(--sb-font-main-menu-family);
    font-weight:    var(--sb-font-main-menu-weight);
    font-size:      var(--sb-font-main-menu-size);
    text-transform: var(--sb-font-main-menu-transform);
    letter-spacing: .03em;
    color:          rgba(255, 255, 255, .75);
    padding:        8px 16px;
    border-radius:  6px;
    transition:     background 180ms, color 180ms;
}

.sb_header_9 #sb_nav .nav-link:hover,
.sb_header_9 #sb_nav .nav-item:hover > .nav-link {
    background: rgba(255, 255, 255, .10);
    color: #fff;
}

.sb_header_9 #sb_nav .nav-item.active > .nav-link,
.sb_header_9 #sb_nav .nav-item.current-menu-item > .nav-link {
    background: var(--sb-general-color);
    color: #fff;
}

.sb_header_9 .navbar-nav .dropdown-toggle::after {
    color: rgba(255, 255, 255, .45);
    vertical-align: .15em;
}

.sb_header_9 #sb_nav .dropdown-menu {
    margin-top: 4px;
    border: none;
    border-radius: 10px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, .06),
        0 10px 36px rgba(0, 0, 0, .16);
}

.sb_header_9 #sb_nav .dropdown-item {
    border-radius: 6px;
    margin: 2px 6px;
    width: calc(100% - 12px);
    transition: background 150ms, color 150ms;
}

.sb_header_9 #sb_nav .mega-parent {
    position: static;
}

.sb_header_9 #sb_nav .mega-menu.dropdown-menu {
    position: absolute;
    width: 100%;
    left: 0;
    border-radius: 0 0 12px 12px;
}

.sh9-mobile {
    background: #fff;
    border-left: 4px solid var(--sb-general-color);
    box-shadow: 0 2px 14px rgba(0, 0, 0, .10);
}

.sb_header_8 {
    box-shadow: 0 3px 16px rgba(0, 0, 0, .10);
}

.sh8-brand {
    background: #fff;
    border-bottom: 1px solid #EEF2F8;
}

.sh8-right-logo {
    border-left: 1px solid #E2E8F0;
    padding-left: 1rem;
}

.sh8-right-logo a {
    display: flex;
    align-items: center;
}

.sh8-right-logo img {
    max-height: 70px;
    width: auto;
}

.sb_header_8 #social_media a {
    color: #475569;
    border-color: #CBD5E1 !important;
    transition: background 150ms, color 150ms, border-color 150ms;
}

.sb_header_8 #social_media a:hover {
    background: var(--sb-general-color);
    border-color: var(--sb-general-color) !important;
    color: #fff;
}

.sh8-nav {
    background: #1E293B;
    position: relative;
}

.sb_header_8 #sb_nav {
    width: 100%;
    position: static;
}

.sb_header_8 #sb_nav .navbar-nav {
    padding: 0;
}

.sb_header_8 #sb_nav .nav-item {
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.sb_header_8 #sb_nav .nav-item:last-child {
    border-right: none;
}

.sb_header_8 #sb_nav .nav-link {
    font-family:    var(--sb-font-main-menu-family);
    font-weight:    var(--sb-font-main-menu-weight);
    font-size:      var(--sb-font-main-menu-size);
    text-transform: var(--sb-font-main-menu-transform);
    color:          rgba(255, 255, 255, .85);
    padding-top:    13px;
    padding-bottom: 13px;
    transition: color 150ms, background 150ms;
}

.sb_header_8 #sb_nav .nav-link:hover,
.sb_header_8 #sb_nav .nav-item:hover > .nav-link {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.sb_header_8 #sb_nav .nav-item.active > .nav-link,
.sb_header_8 #sb_nav .nav-item.current-menu-item > .nav-link {
    color: #fff;
    background: var(--sb-general-color);
}

.sb_header_8 .navbar-nav .dropdown-toggle::after {
    color: rgba(255, 255, 255, .6);
}

.sb_header_8 #sb_nav .dropdown-menu {
    margin-top: 0;
    border-top: 3px solid var(--sb-general-color);
    border-radius: 0 0 10px 10px;
}

.sb_header_8 #sb_nav .mega-parent {
    position: static;
}

.sb_header_8 #sb_nav .mega-menu.dropdown-menu {
    position: absolute;
    width: 100%;
    left: 0;
}

.sh8-mobile {
    background: #fff;
    border-bottom: 3px solid var(--sb-general-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.sb_header_7 {
    box-shadow: 0 3px 16px rgba(0, 0, 0, .10);
}

.sh7-brand {
    background: #fff;
    border-bottom: 1px solid #EEF2F8;
}

.sh7-top-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sh7-top-menu li a {
    color: #64748B;
    text-decoration: none;
    padding: 4px 14px;
    border-right: 1px solid #E2E8F0;
    font-size: 12.5px;
    font-weight: 500;
    transition: color 150ms;
    display: block;
}

.sh7-top-menu li:last-child a {
    border-right: none;
}

.sh7-top-menu li a:hover {
    color: var(--sb-general-color);
}

.sh7-nav {
    background: #1E293B;
    position: relative;
}

.sb_header_7 #sb_nav {
    width: 100%;
    position: static;
}

.sb_header_7 #sb_nav .navbar-nav {
    padding: 0;
}

.sb_header_7 #sb_nav .nav-item {
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.sb_header_7 #sb_nav .nav-item:last-child {
    border-right: none;
}

.sb_header_7 #sb_nav .nav-link {
    font-family:    var(--sb-font-main-menu-family);
    font-weight:    var(--sb-font-main-menu-weight);
    font-size:      var(--sb-font-main-menu-size);
    text-transform: var(--sb-font-main-menu-transform);
    color:          rgba(255, 255, 255, .85);
    padding-top:    13px;
    padding-bottom: 13px;
    transition: color 150ms, background 150ms;
}

.sb_header_7 #sb_nav .nav-link:hover,
.sb_header_7 #sb_nav .nav-item:hover > .nav-link {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.sb_header_7 #sb_nav .nav-item.active > .nav-link,
.sb_header_7 #sb_nav .nav-item.current-menu-item > .nav-link {
    color: #fff;
    background: var(--sb-general-color);
}

.sb_header_7 .navbar-nav .dropdown-toggle::after {
    color: rgba(255, 255, 255, .6);
}

.sb_header_7 #sb_nav .dropdown-menu {
    margin-top: 0;
    border-top: 3px solid var(--sb-general-color);
    border-radius: 0 0 10px 10px;
}

.sb_header_7 #sb_nav .mega-parent {
    position: static;
}

.sb_header_7 #sb_nav .mega-menu.dropdown-menu {
    position: absolute;
    width: 100%;
    left: 0;
}

.sh7-mobile {
    background: #fff;
    border-bottom: 3px solid var(--sb-general-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.sb_header_6 {
    position: sticky;
    top: 12px;
    z-index: 1050;

    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .07);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, .06),
        0 1px 4px  rgba(0, 0, 0, .04);

    margin: 12px 24px 0;

    transition: box-shadow 260ms ease, margin-top 260ms ease;
}

.sb_header_6.sh6--scrolled {
    box-shadow:
        0 12px 40px rgba(0, 0, 0, .11),
        0 3px 10px  rgba(0, 0, 0, .06);
    margin-top: 8px;
}

.sb_header_6::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: var(--sb-general-color);
}

.sh6-inner {
    padding: 10px 20px 10px 28px;
    gap: 16px;
    align-items: center;
}

.sb_header_6 #sb_nav {
    width: 100%;
    position: relative;
}

.sb_header_6 #sb_nav .navbar-nav {
    justify-content: center;
}

.sb_header_6 #sb_nav .nav-item {
    border-right: 1px solid #eee;
}

.sb_header_6 #sb_nav .nav-item:last-child {
    border-right: none;
}

.sb_header_6 #sb_nav .nav-link {
    font-family:     var(--sb-font-main-menu-family);
    font-weight:     var(--sb-font-main-menu-weight);
    font-size:       var(--sb-font-main-menu-size);
    text-transform:  var(--sb-font-main-menu-transform);
    color:           var(--sb-font-main-menu-color);
    padding-top:    10px;
    padding-bottom: 10px;
    transition: color 150ms, background 150ms;
}

.sb_header_6 #sb_nav .nav-link:hover {
    color: var(--sb-general-color);
}

.sb_header_6 #sb_nav .nav-item.active > .nav-link,
.sb_header_6 #sb_nav .nav-item.current-menu-item > .nav-link {
    color:       var(--sb-general-color);
    font-weight: 700;
}

.sb_header_6 #sb_nav .dropdown-menu {
    border-top:    3px solid var(--sb-general-color);
    border-radius: 0 0 10px 10px;
    margin-top:    4px;
}

.sh6-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.sh6-actions-top {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sh6-actions-bottom {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sh6-actions-bottom:empty {
    display: none;
}

@media (max-width: 991.98px) {
    .sb_header_6 {
        position: relative;
        top: 0;
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    }

    .sb_header_6::before {
        top: 0;
        bottom: 0;
        border-radius: 0;
    }
}

.sb_header_4 {
    box-shadow: 0 3px 16px rgba(0, 0, 0, .08);
}

.sh4-top-strip {
    background: #fff;
    border-bottom: 1px solid #EAEFF6;
    padding: 10px 0;
}

.sh4-top-inner {
    display: flex;
    align-items: center;
}

.sh4-col {
    flex: 1;
    display: flex;
    align-items: center;
}

.sh4-col--center {
    justify-content: center;
}

.sh4-col--right {
    justify-content: flex-end;
    gap: 10px;
}

.sh4-nav-strip {
    background: var(--sb-general-color);
}

.sb_header_4 #sb_nav {
    width: 100%;
    position: relative;
}

.sb_header_4 #sb_nav .navbar-nav {
    width: 100%;
    justify-content: center;
    padding: 0;
}

.sb_header_4 #sb_nav .nav-item {
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.sb_header_4 #sb_nav .nav-item:last-child {
    border-right: none;
}

.sb_header_4 #sb_nav .nav-link {
    color: rgba(255, 255, 255, .88) !important;
    padding-top: 13px;
    padding-bottom: 13px;
    font-weight: 600;
    letter-spacing: .1px;
    transition: color 150ms, background 150ms;
}

.sb_header_4 #sb_nav .nav-link:hover,
.sb_header_4 #sb_nav .nav-item:hover > .nav-link {
    color: #fff !important;
    background: rgba(255, 255, 255, .1);
}

.sb_header_4 #sb_nav .nav-item.active > .nav-link,
.sb_header_4 #sb_nav .nav-item.current-menu-item > .nav-link {
    color: #fff !important;
    background: rgba(255, 255, 255, .15);
}

.sb_header_4 .navbar-nav .dropdown-toggle::after {
    color: rgba(255, 255, 255, .7);
}

.sb_header_4 #sb_nav .dropdown-menu {
    top: 100%;
    margin-top: 0;
    border-radius: 0 0 10px 10px;
    border-top: 3px solid var(--sb-general-color);
}

.sh4-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #fff;
}

.navbar-nav {
    .dropdown-toggle {
        &::after {
            content: "\F282";
            font-family: bootstrap-icons !important;
            border: 0;
            vertical-align: middle;
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }
    }

    .dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: all 0.3s ease;
        margin-top: 10px;
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        background: #fff;
        border-radius: 0;
        padding: 0;
        border-left: 1px solid #eee;
        border-right: 1px solid #eee;
        top: 45px;
        left: 0;

        .nav-link {
            font-family: var(--sb-font-sub-menu-family);
            font-weight: var(--sb-font-sub-menu-weight);
            font-style: var(--sb-font-sub-menu-style);
            font-size: var(--sb-font-sub-menu-size);
            line-height: var(--sb-font-sub-menu-line-height);
            letter-spacing: var(--sb-font-sub-menu-letter-spacing);
            text-transform: var(--sb-font-sub-menu-transform);
            color: var(--sb-font-sub-menu-color);
            padding: 7px 10px;
            border-bottom: 1px solid #eee;
            transition: all 0.2s ease;

            &:hover {
                background: var(--sb-general-color);
                color: #fff !important;
                font-weight: 700;
            }
        }
    }
}

.rs-bg-g-1 {
    background: var(--sb-general-color);
}

.sb-bg-g-1 {
    background: var(--sb-general-color);
}

.sb-bg-g-1:has(.sb-breadcrumb-wrap) {
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}

.sb-bg-g-1:has(.sbc),
.rs-bg-g-1:has(.sbc) {
    background: transparent !important;
    box-shadow: none;
}

.text-rs-1 {
    background: var(--sb-general-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

#service-list .card-header img {
    z-index: 99;
    position: relative;
    border: 1px solid #fff;
}

.card-header {
    border: 0px !important;
}

#service-list .card-header:after {
    content: '';
    left: 0;
    right: 0;
    top: 0;
    background: var(--sb-general-color);
    position: absolute;
    height: 75%;
    width: 100%;
}

#service-list .card-title {
    text-align: center;
}

#service-list .card .card-header img {
    object-fit: cover;
}

#service-list .card:hover {
    background: var(--sb-general-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

#service-list .card:hover .card-title {
    -webkit-text-fill-color: #fff;
}

#social_media a:hover {
    background: var(--sb-general-color);
}

#social_media a:hover i {
    color: #fff;
}

.offcanvas {
    z-index: 99999 !important;
}

.bg-danger, .btn-danger {
    background: var(--sb-general-color) !important;
    border: transparent !important;
}

.card-footer p {
    margin-bottom: 0px;
}

.card-footer, .card-header, .card-body {
    border: none;
}

.bg-theme-1 {
    background-color: var(--sb-general-color);
    color: #fff;
    font-weight: 700;
}

.bg-theme-2 {
    background-color: var(--sb-second-color);
}

.bg-theme-1:hover {
    opacity: .7;
    background-color: var(--sb-second-color);
    color: #fff;
}

.sb_header_3, .sb_header_2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.sb_header_2 {
    padding: .65rem 2rem;
}

.sb_header_3 {
    width: 100%;
    position: absolute;
    z-index: 99;
    padding: 1rem 2rem;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.63) 70%,
            rgba(0, 0, 0, 0) 100%
    );
}

.sb_header_3 .nav-item {
    border-right: 1px solid transparent !important;
}

.sb_header_3 #social_media a {
    color: #ddd;
}

.sb_header_3 #sb_nav .nav-link {
    color: #fff;
}

.sb_header_3 .nav-item {
    border-right: transparent;
}

header ul li {
    list-style: none;
}

.sb-footer-1 {
    background: #333;
}

.sb-footer-3 {
    background: #fff;
    border-top: 4px solid var(--sb-general-color);
}

.sf3-top {
    background: var(--sb-general-color);
    padding: 28px 0;
}

.sf3-top-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.sf3-logo img {
    filter: brightness(0) invert(1);
    opacity: .92;
    transition: opacity 200ms;
}

.sf3-logo:hover img {
    opacity: 1;
}

.sf3-desc {
    color: rgba(255, 255, 255, .78);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    max-width: 400px;
}

.sf3-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

.sf3-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: background 180ms, transform 180ms;
}

.sf3-social-link:hover {
    background: rgba(255, 255, 255, .3);
    color: #fff;
    transform: translateY(-2px);
}

.sf3-divider {
    padding: 0;
    overflow: hidden;
}

.sf3-divider .container span {
    display: block;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--sb-general-color) 0%,
        rgba(0, 0, 0, .06) 100%
    );
}

.sf3-body {
    padding: 52px 0 44px;
}

.sb-footer-3 .footer-menu h6,
.sf3-col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--sb-general-color);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sb-general-color);
    position: static;
    padding-left: 0;
}

.sb-footer-3 .footer-menu h6::before {
    display: none;
}

.sb-footer-3 .footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sb-footer-3 .footer-menu ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13.5px;
    color: #475569;
    text-decoration: none;
    border-bottom: 1px solid #F1F5F9;
    transition: color 150ms, padding-left 150ms;
}

.sb-footer-3 .footer-menu ul li:last-child a {
    border-bottom: none;
}

.sb-footer-3 .footer-menu ul li a::before {
    content: '\f285';
    font-family: 'bootstrap-icons';
    font-size: 11px;
    color: var(--sb-general-color);
    opacity: .6;
    flex-shrink: 0;
}

.sb-footer-3 .footer-menu ul li a:hover {
    color: var(--sb-general-color);
    padding-left: 4px;
}

.sf3-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sf3-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.sf3-contact-icon {
    font-size: 18px !important;
    color: var(--sb-general-color) !important;
    margin: 0 !important;
    flex-shrink: 0;
    margin-top: 2px !important;
}

.sf3-contact-title {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #94A3B8 !important;
    margin-bottom: 2px !important;
    display: block;
}

.sf3-contact-value {
    font-size: 13.5px !important;
    color: #334155 !important;
    margin: 0 !important;
}

@media (max-width: 767px) {
    .sf3-top-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .sf3-social {
        margin-left: 0;
    }

    .sf3-desc {
        max-width: 100%;
    }
}

.mega-footer {
    background: var(--sb-footer-background-color);
    font-size: 1rem;
    border-top: 1px solid var(--sb-footer-background-color);
}

.footer-left {
    background: var(--sb-footer-left-background-color);
    padding: 60px 50px;
}

.footer-right {
    padding: 60px 70px;
    background-image: url(../images/pattern.png);
    background-position: top right;
    background-repeat: no-repeat;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #333;
}

.footer-right h6 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--sb-footer-title-text-color);
}

.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-right ul li {
    margin-bottom: 8px;
}

.footer-right ul li a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
}

.footer-right ul li a:hover {
    text-decoration: underline;
}

.footer-menu h6 {
    position: relative;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    padding-left: 15px;
}

.footer-menu h6:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid var(--sb-general-color);
}

.store-item {
    padding: 10px;
}

.store-item img {
    width: 200px;
}

#banner-slider .swiper-pagination-bullet-active {
    background-color: var(--sb-general-color);
    opacity: 1;
    width: 3rem;
    border-radius: 5px;
}

.sb-dot-slider .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
}

.sb-dot-slider .swiper-pagination-bullet-active {
    background-color: var(--sb-general-color);
    opacity: 1;
    width: 3rem;
    border-radius: 5px;
}

.swiper-slide {
    position: relative;
}

.sb-post-slider-content:after {
    background: linear-gradient(0deg, #000, rgba(0, 0, 0, .9) 20%, transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
}

.swiper-slide h3 {
    position: absolute;
    left: 20px;
    bottom: 30px;
    font-size: 2rem;
    z-index: 99;
    color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 32px;
    height: 32px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
}

.sb-numeric-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    display: flex;
    padding: 0px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sb-numeric-slider .swiper-pagination-bullet {
    width: 100%;
    border-radius: 0px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    background-color: #000000;
    border-right: 1px solid #23262D;
    border-top: 1px solid #23262D;
    letter-spacing: -1px;
    font-weight: 600;
    margin: 0px !important;
    color: #fff;
    opacity: 1;
}

.sb-numeric-slider .swiper-pagination-bullet-active {
    background: var(--sb-general-color);
}

.sb-numeric-slider .swiper-pagination-bullet:last-child {
    border-right: 0px;
}

.sb-numeric-slider .swiper-horizontal > .sb-numeric-slider .swiper-pagination-bullets .sb-numeric-slider .swiper-pagination-bullet,
.sb-numeric-slider .sb-numeric-slider .swiper-pagination-horizontal.swiper-pagination-bullets .sb-numeric-slider .swiper-pagination-bullet {
    margin: 0px;
}

.sb-main-slider .swiper-wrapper {
    height: 500px;
}

.sb-thumb-slider {
    padding-bottom: 0px;
    padding-top: 20px;
}

.sb-thumb-slider {
    padding: 10px;
    background-color: #000;
    border-top: 1px dashed #333;
}

.sb-thumb-slider .swiper-slide img, .sb-thumb-slider .swiper-slide {
    height: 3rem;
    width: 100%;
    opacity: 0.4;
    border-radius: 2px;
    cursor: pointer;
    background-color: #23262D;
    object-fit: cover;
}

.sb-thumb-slider .swiper-slide {
    opacity: 1;
    border-radius: 8px;
}

.sb-thumb-slider .swiper-slide-thumb-active img {
    opacity: 1;
    border: 2px solid var(--sb-general-color);

}

.accordion-button:not(.collapsed) {
    background-color: var(--sb-general-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-body p {
    margin-bottom: 0px;
}

.toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translate(-50%, -100px);
    opacity: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    padding: 14px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

.support-container {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.support-trigger-wrap {
    position: relative;
    width: 160px;
    height: 160px;
}

.trigger-arc-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: none;
    transform-origin: center center;
    transition: opacity 0.3s ease;
}

.support-container.active .trigger-arc-svg {
    opacity: 0;
    animation-play-state: paused;
}

.trigger-arc-text {
    fill: #212529;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes arc-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.trigger-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 76px;
    height: 76px;
    margin: -38px 0 0 -38px;
    border-radius: 50%;
    border: 2px solid var(--st-c1, #3b82f6);
    opacity: 0;
    pointer-events: none;
    animation: st-pulse 3s ease-out infinite;
}

.trigger-pulse--2 { animation-delay: 1.2s; }

@keyframes st-pulse {
    0%   { transform: scale(1);   opacity: .55; }
    100% { transform: scale(1.75); opacity: 0; }
}

.support-container.active .trigger-pulse { animation-play-state: paused; opacity: 0; }

.support-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(145deg, var(--st-c1, #3b82f6), var(--st-c2, #4f46e5));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.20),
        0 8px 24px color-mix(in srgb, var(--st-c1, #3b82f6) 55%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    outline: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease;
    z-index: 1000;
}

.support-trigger:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.25),
        0 12px 32px color-mix(in srgb, var(--st-c1, #3b82f6) 70%, transparent);
}

.support-trigger:active {
    transform: translate(-50%, -50%) scale(0.93);
}

.trigger-online-dot {
    position: absolute;
    bottom: 8px;
    right: 7px;
    width: 11px;
    height: 11px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 6px rgba(34, 197, 94, .6);
}

.trigger-mobile-label { display: none; }

.support-trigger i {
    position: absolute;
    transition: transform 0.4s ease, opacity 0.4s ease;
    font-size: 24px;
}

.support-trigger .icon-open {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.support-trigger .icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
    font-size: 20px;
}

.support-container.active .support-trigger .icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.support-container.active .support-trigger .icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.support-container.active .trigger-online-dot { display: none; }

.support-widget {
    position: absolute;
    bottom: 170px;
    right: 0;
    width: 360px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.support-container.active .support-widget {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.widget-header {
    position: relative;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(147, 51, 234, 0.15));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
}

.header-bg-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.avatar-container {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    padding: 2px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
}

.online-status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background-color: #10b981;
    border: 2px solid #0f172a;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

.header-info {
    display: flex;
    flex-direction: column;
}

.header-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
}

.header-subtitle {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1;
}

.header-badge {
    font-size: 10px;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 2px 8px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    width: fit-content;
}

.online-dot-small {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #34d399;
}

.widget-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: -8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.channels-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.channel-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 18px;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.channel-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    border-radius: 4px 0 0 4px;
    transition: width 0.3s ease;
}

.channel-btn.whatsapp::before {
    background-color: #10b981;
}

.channel-btn.phone::before {
    background-color: #2563eb;
}

.channel-btn.mail::before {
    background-color: #8b5cf6;
}

.channel-btn:hover {
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.2);
}

.channel-btn.whatsapp:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(13, 148, 136, 0.15));
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.channel-btn.phone:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(79, 70, 229, 0.15));
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.channel-btn.mail:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(109, 40, 217, 0.15));
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.channel-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.channel-btn.whatsapp .channel-icon {
    background: linear-gradient(135deg, #10b981, #0d9488);
}

.channel-btn.phone .channel-icon {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.channel-btn.mail .channel-icon {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.channel-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.channel-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.channel-sub {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1;
}

.channel-arrow {
    color: #94a3b8;
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.channel-btn:hover .channel-arrow {
    transform: translateX(4px);
    color: #ffffff;
}

.widget-footer {
    padding: 8px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
}

.footer-secure {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
    font-weight: 600;
}

.footer-secure i {
    color: #10b981;
    font-size: 13px;
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-3px); }
}

@media (max-width: 991.98px) {

    .support-container {
        right: 20px;
        bottom: 24px;
        left: auto;
        width: auto;
        align-items: flex-end;
        padding: 0;
    }

    .support-container.active::before {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 99996;
        background: rgba(5, 10, 30, .55);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        pointer-events: none;
        animation: st-backdrop-in 280ms ease forwards;
    }

    @keyframes st-backdrop-in {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    .support-trigger-wrap {
        position: relative;
        width: auto;
        height: auto;
        z-index: 99999;
    }

    .trigger-arc-svg { display: none; }

    .trigger-pulse { display: none; }

    @keyframes pill-glow {
        0%, 100% {
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,.20),
                0 6px 20px color-mix(in srgb, var(--st-c1, #3b82f6) 55%, transparent);
        }
        50% {
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,.20),
                0 6px 28px color-mix(in srgb, var(--st-c1, #3b82f6) 80%, transparent),
                0 0 0 7px color-mix(in srgb, var(--st-c1, #3b82f6) 18%, transparent);
        }
    }

    .support-trigger {
        position: static;
        width: auto;
        height: 52px;
        border-radius: 50px;
        transform: none !important;
        padding: 0 20px 0 14px;
        gap: 9px;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        overflow: hidden;
        transition: padding .3s ease, box-shadow .3s ease;
        animation: pill-glow 2.8s ease-in-out infinite;
    }

    .support-container.active .support-trigger {
        animation-play-state: paused;
    }

    .support-trigger:active { transform: scale(.94) !important; }

    .support-trigger i {
        position: static;
        flex-shrink: 0;
        font-size: 20px;
        transition: transform .4s ease, opacity .4s ease;
    }

    .support-trigger .icon-open  { opacity: 1; transform: rotate(0deg) scale(1); }
    .support-trigger .icon-close { opacity: 0; transform: rotate(-90deg) scale(.5); position: absolute; }

    .support-container.active .support-trigger .icon-open  { opacity: 0; transform: rotate(90deg) scale(.5); }
    .support-container.active .support-trigger .icon-close { opacity: 1; transform: rotate(0deg) scale(1); }

    .trigger-mobile-label {
        display: block !important;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: -.1px;
        transition: opacity .25s ease, max-width .3s ease;
        max-width: 180px;
        overflow: hidden;
    }

    .support-container.active .support-trigger {
        padding: 0 16px;
    }

    .support-container.active .support-trigger .trigger-mobile-label {
        opacity: 0;
        max-width: 0;
        pointer-events: none;
    }

    .trigger-online-dot {
        position: absolute;
        bottom: auto;
        top: -3px;
        right: -3px;
        width: 11px;
        height: 11px;
    }

    .support-widget {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 82vh;
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: 24px 24px 0 0;
        z-index: 99998;

        opacity: 1;
        transform: translateY(105%);
        transform-origin: bottom center;
        transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
        box-shadow: 0 -8px 40px rgba(0, 0, 0, .45);

        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .support-widget::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, .22);
        border-radius: 2px;
        margin: 12px auto 0;
        flex-shrink: 0;
    }

    .support-container.active .support-widget {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .widget-header {
        padding: 16px 20px 14px;
        background: linear-gradient(145deg,
            color-mix(in srgb, var(--st-c1, #3b82f6) 22%, transparent),
            color-mix(in srgb, var(--st-c2, #4f46e5) 22%, transparent));
    }

    .avatar-container {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .avatar { border-radius: 18px; font-size: 26px; }

    .header-title  { font-size: 17px; }
    .header-subtitle { font-size: 13px; margin-top: 2px; }
    .header-badge  { margin-top: 8px; font-size: 11px; padding: 3px 10px; }

    .widget-body { padding: 12px; }
    .channels-list { gap: 10px; }

    .channel-btn {
        padding: 14px 18px;
        border-radius: 16px;
        min-height: 68px;
    }

    .channel-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 20px;
    }

    .channel-title { font-size: 15px; }
    .channel-sub   { font-size: 12px; margin-top: 3px; display: block; line-height: 1.3; }
    .channel-arrow { font-size: 16px; }

    .widget-footer {
        padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {

}

@media (min-width: 276px) and (max-width: 767.98px) {

header #social_media {
        display: none !important;
    }

    .sb_header_2, .sb_header_3, .footer-left {
        padding: 1rem;
    }

    .footer-right {
        padding: 3rem 1rem;
    }

    #banner-slider .sb-w-slider {
        width: 100%;
        padding: 1.3rem;
        bottom: 10px;
        text-align: center;
    }

    .btn {
        padding: 5px 7px;
        font-size: .775rem;
        letter-spacing: .5px;
    }

#service-list .card .card-header img {
        height: 8rem;
    }

    #service-list .card-title {
        font-size: 1rem;
    }

    #banner-slider {
        & .swiper-slide {
            img {
                object-fit: cover;
                height: 22rem;
            }
        }
    }

    .footer-menu {
        margin-bottom: 1.5rem;
    }

    .left {
        text-align: center;
    }

    .p-4 {
        padding: 1rem !important;
    }

    p {
        font-size: .85rem !important;
        line-height: 1.3;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    #service-list .card .card-header img {
        height: 10rem;
    }

    #banner-slider .sb-w-slider {
        width: 75%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {

    #service-list .card .card-header img {
        height: 12rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {

    #service-list .card .card-header img {
        height: 15rem;
    }

    #banner-slider .sb-w-slider {
        width: 70%;
        text-align: center;
    }
}

.sb-department {
    border-radius: 0.75rem;
    overflow: hidden;
}

.sb-department__tabs {
    background: #f8f8f8;
    border-bottom: 1px solid #e8e8e8;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;

    &::-webkit-scrollbar {
        display: none;
    }
}

.sb-department__tab-btn {
    white-space: nowrap;
    padding: 1rem 1.5rem;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    color: #555;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    background: transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;

    &:hover {
        color: var(--sb-general-color);
        background: rgba(0, 0, 0, 0.03);
    }

    &.active {
        color: var(--sb-general-color);
        border-bottom-color: var(--sb-general-color);
        background: #fff;
    }
}

.sb-department__single-title {
    padding: 1rem 1.5rem;
    background: #f8f8f8;
    border-bottom: 1px solid #e8e8e8;
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.sb-department__body {
    padding: 1.5rem;
    background: #fff;
}

.sb-department__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid #ebebeb;
    border-radius: 0.6rem;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;

    &:hover {
        background: #fff;
        border-color: var(--sb-general-color);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }
}

.sb-department__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: var(--sb-general-color);
    display: flex;
    align-items: center;
    justify-content: center;

    i {
        color: #fff;
        font-size: 1.1rem;
    }
}

.sb-department__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.sb-department__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
}

.sb-department__value {
    font-size: 0.9rem;
    color: #222;
    word-break: break-word;
    line-height: 1.2;
}

.sb-department__link {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;

    &:hover {
        color: var(--sb-general-color);
    }
}

.sb-department__section-title {
    padding: 0.85rem 1.25rem;
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-bottom: 0;
    border-radius: 0.75rem 0.75rem 0 0;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.sb-department--stack .sb-department__body {
    border: 1px solid #e8e8e8;
    border-radius: 0 0 0.75rem 0.75rem;
}

.sb-department__item--map {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
}

.sb-department__map {
    border: 1px solid #ebebeb;
    border-top: 0;
    border-bottom-left-radius: 0.6rem;
    border-bottom-right-radius: 0.6rem;
    overflow: hidden;
    line-height: 0;

    iframe {
        width: 100%;
        height: 280px;
        display: block;
        border: 0;
    }
}

@media (min-width: 1400px) {

    #service-list .card .card-header img {
        height: 18rem;
    }
}

.sb-news-slider {
    --sbnsl-bg: #ffffff;
    --sbnsl-panel: #ffffff;
    --sbnsl-strip: #f4f4f4;
    --sbnsl-accent: #b8910a;
    --sbnsl-txt1: #1a1a22;
    --sbnsl-txt2: #6b6f7a;
    --sbnsl-border: rgba(0, 0, 0, .08);

    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1), 0 2px 8px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .07);
}

.sb-news-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7a5c10 0%, #c9a227 40%, #e8c96a 75%, #c9a227 100%);
    z-index: 20;
}

.sbnsl-img-col {
    position: relative;
    overflow: hidden;
}

.sbnsl-img-col::after {
    display: none;
}

.sbnsl-carousel {
    height: 440px;
}

.sbnsl-carousel .swiper-wrapper,
.sbnsl-carousel .swiper-slide {
    height: 100%;
}

.sbnsl-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.sbnsl-carousel .swiper-slide:hover img {
    transform: scale(1.04);
}

.sbnsl-arrows {
    position: absolute;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.sbnsl-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(0, 0, 0, .15);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .9rem;
    transition: background .2s, border-color .2s, color .2s, transform .15s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.sbnsl-nav-btn:hover {
    background: var(--sbnsl-accent);
    border-color: var(--sbnsl-accent);
    color: #fff;
    transform: scale(1.08);
}

.sbnsl-counter {
    color: rgba(0, 0, 0, .4);
    font-size: .75rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: .03em;
    margin-left: 4px;
    user-select: none;
    text-shadow: 0 1px 3px rgba(255, 255, 255, .8);
}

.sbnsl-counter .cur {
    color: var(--sbnsl-accent);
    font-weight: 700;
    font-size: .95rem;
}

.sbnsl-counter .sep {
    margin: 0 2px;
    opacity: .5;
}

.sbnsl-right {
    display: flex;
    flex-direction: column;
    background: #ffffff !important;
    border-left: none;
}

.sbnsl-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem 1.25rem 1.5rem;
    min-height: 0;
    opacity: 1;
    transition: opacity .22s ease;
}

.sbnsl-content.sbnsl-fading {
    opacity: 0;
}

.sbnsl-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--sbnsl-accent);
    background: rgba(184, 145, 10, .08);
    border: 1px solid rgba(184, 145, 10, .25);
    border-radius: 20px;
    padding: 3px 11px;
    margin-bottom: .9rem;
    width: fit-content;
}

.sbnsl-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--sbnsl-accent);
    animation: sbnsl-blink 2.2s ease-in-out infinite;
}

@keyframes sbnsl-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .3;
    }
}

.sbnsl-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--sbnsl-txt1);
    line-height: 1.3;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sbnsl-desc {
    color: var(--sbnsl-txt2);
    font-size: .875rem;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sbnsl-meta-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 1rem 0 .85rem;
}

.sbnsl-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .77rem;
    color: var(--sbnsl-txt2);
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 20px;
    padding: 3px 10px;
    line-height: 1.4;
}

.sbnsl-pill .bi {
    color: var(--sbnsl-accent);
    font-size: .72rem;
}

.sbnsl-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.sbnsl-btn-ghost {
    padding: 7px 14px;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, .14);
    color: var(--sbnsl-txt2);
    font-size: .8rem;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
    background: transparent;
}

.sbnsl-btn-ghost:hover {
    border-color: var(--sbnsl-accent);
    color: var(--sbnsl-accent);
    background: rgba(184, 145, 10, .05);
}

.sbnsl-btn-primary {
    padding: 7px 16px;
    border-radius: 7px;
    background: linear-gradient(135deg, #8c6a10 0%, #c9a227 100%);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(184, 145, 10, .3);
    transition: all .2s;
    white-space: nowrap;
    border: none;
    letter-spacing: .01em;
}

.sbnsl-btn-primary:hover {
    background: linear-gradient(135deg, #c9a227 0%, #e0b93a 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(184, 145, 10, .4);
    transform: translateY(-1px);
}

.sbnsl-btn-primary .bi {
    font-size: .75rem;
}

.sbnsl-right .sbnsl-thumb-strip {
    background: #f4f4f4 !important;
    border-top: 1px solid rgba(0, 0, 0, .07);
    padding: 10px 14px;
    overflow: hidden;
    box-sizing: border-box;
}

.sbnsl-thumb,
.sbnsl-thumb-strip .swiper-slide {
    width: 76px !important;
    height: 54px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: .5;
    transition: opacity .22s, border-color .22s, box-shadow .22s;
    flex-shrink: 0;
}

.sbnsl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sbnsl-thumb.swiper-slide-thumb-active,
.sbnsl-thumb.active {
    border-color: var(--sbnsl-accent);
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(184, 145, 10, .2), 0 4px 10px rgba(184, 145, 10, .15);
}

.sbnsl-thumb:not(.swiper-slide-thumb-active):not(.active):hover {
    opacity: .8;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .sbnsl-carousel {
        height: 360px;
    }

    .sbnsl-content {
        padding: 1.4rem 1.25rem 1rem 1.4rem;
    }

    .sbnsl-title {
        font-size: 1.15rem;
        -webkit-line-clamp: 3;
    }

    .sbnsl-desc {
        font-size: .83rem;
        -webkit-line-clamp: 3;
    }

    .sbnsl-thumb, .sbnsl-thumb-strip .swiper-slide {
        width: 60px !important;
        height: 44px;
    }
}

@media (max-width: 767.98px) {
    .sbnsl-img-col::after {
        display: none;
    }

    .sbnsl-carousel {
        height: 250px;
    }

    .sbnsl-content {
        padding: 1.25rem 1rem 1rem;
    }

    .sbnsl-title {
        font-size: 1.15rem;
        -webkit-line-clamp: 2;
    }

    .sbnsl-desc {
        font-size: .85rem;
        -webkit-line-clamp: 3;
    }

    .sbnsl-meta-row {
        margin: .75rem 0 .7rem;
        gap: 6px;
    }

    .sbnsl-thumb, .sbnsl-thumb-strip .swiper-slide {
        width: 66px !important;
        height: 48px;
    }
}

@media (max-width: 479.98px) {
    .sbnsl-carousel {
        height: 220px;
    }

    .sbnsl-content {
        padding: 1rem .875rem .875rem;
    }

    .sbnsl-title {
        font-size: 1rem;
    }

    .sbnsl-footer {
        flex-direction: column;
        gap: 8px;
    }

    .sbnsl-btn-ghost,
    .sbnsl-btn-primary {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 9px 12px;
    }

    .sbnsl-thumb, .sbnsl-thumb-strip .swiper-slide {
        width: 58px !important;
        height: 42px;
        border-radius: 4px;
    }

    .sbnsl-thumb-strip {
        padding: 8px 10px;
        gap: 5px;
    }
}

/* ── Carousel slide link ── */
.sbnsl-slide-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* ── Clickable content wrapper (badge + title + desc) ── */
.sbnsl-content-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    text-decoration: none;
    color: inherit;
    transition: color .18s;
}

.sbnsl-content-link:hover {
    color: inherit;
    text-decoration: none;
}

.sbnsl-content-link:hover .sbnsl-title {
    color: var(--sbnsl-accent);
}

.sb-post-list-widget {
    --sb-plw-accent: var(--sb-general-color, #1E40AF);
}

.sb-plw-heading {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff !important;
    background: var(--sb-general-color, #1E40AF);
    padding: .6rem 1rem;
    margin: 0 0 .5rem;
    border-radius: 7px 7px 0 0;
}

.sb-plw-item {
    margin-bottom: .4rem;
}

.sb-plw-item:last-child {
    margin-bottom: 0;
}

.sb-plw-card {
    display: block;
    position: relative;
    height: 140px;
    overflow: hidden;
    border-radius: 7px;
    text-decoration: none;
}

.sb-plw-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.sb-plw-card:hover img {
    transform: scale(1.05);
}

.sb-plw-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.25) 60%,
        transparent     100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: .55rem .7rem;
}

.sb-plw-date {
    display: block;
    font-size: .6rem;
    color: rgba(255,255,255,.6);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .2rem;
    font-style: normal;
}

.sb-plw-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}

