/* System pages. */
:root {
    --primary: var(--sa-color-primary, #2563eb);
}

html,
body {
    overflow-x: clip;
    max-width: 100%;
}

@media (max-width: 991.98px) {
    html,
    body {
        overflow-x: clip;
        max-width: 100%;
    }

    img,
    video,
    iframe,
    canvas,
    svg {
        max-width: 100%;
    }
}

#page-loader {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 75px;
    height: 75px;
    border: 6px solid rgba(0, 0, 0, 0.05);
    border-top-color: var(--sa-color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

body:not(.sa-page--ready) main {
    opacity: 0;
}

body.sa-page--ready main {
    opacity: 1;
    transition: opacity 0.65s ease;
}

body.sa-page--leaving main {
    opacity: 0;
    transition: opacity 0.22s ease;
}

i[data-sa-icon-size="sm"] {
    font-size: 2rem !important;
}

i[data-sa-icon-size="md"] {
    font-size: 3rem !important;
}

i[data-sa-icon-size="lg"] {
    font-size: 4rem !important;
}

.sa-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 700ms cubic-bezier(.2, .8, .2, 1),
        transform 700ms cubic-bezier(.2, .8, .2, 1),
        filter 700ms cubic-bezier(.2, .8, .2, 1);
    will-change: opacity, transform;
}

.sa-reveal--in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    body:not(.sa-page--ready) main,
    body.sa-page--ready main,
    body.sa-page--leaving main,
    .sa-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

#sa-cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    background: #111827;
    color: #fff;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}

#sa-cookie-consent .sa-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
}

#sa-cookie-consent .sa-cookie-text {
    margin: 0;
    font-size: 0.95rem;
}

#sa-cookie-consent .sa-cookie-text a {
    color: #93c5fd;
}

#sa-cookie-consent .sa-cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    #sa-cookie-consent .sa-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

#sa-cookie-fab {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 1075;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#sa-cookie-fab .sa-cookie-fab-visual {
    position: relative;
    width: 1.35rem;
    height: 1.35rem;
    color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sa-cookie-fab .sa-cookie-fab-svg {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
}

#sa-cookie-fab-icon {
    position: absolute;
    right: -0.28rem;
    bottom: -0.28rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.95rem;
    height: 0.95rem;
    margin: 0;
    border-radius: 50%;
    border: 2px solid var(--bs-btn-bg, #212529);
    font-size: 0.52rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    box-sizing: border-box;
}

#sa-cookie-fab-icon.is-accepted {
    background: #16a34a;
}

#sa-cookie-fab-icon.is-rejected {
    background: #dc2626;
}

.system-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 20%,
            #f8f9fa 0%,
            #eef1f5 60%,
            #e6e9ee 100%);
    padding: 40px 20px;
}
.system-card {
    width: 100%;
    max-width: 460px;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 
        0 30px 60px rgba(0,0,0,.08),
        0 10px 20px rgba(0,0,0,.04);
    text-align: center;
    transition: transform .2s ease;
}

.system-card:hover {
    transform: translateY(-2px);
}

.system-icon-plain {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.9;
    margin-bottom: 30px;
    animation: floatIcon 4s ease-in-out infinite;
}
@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.system-icon {
    width: auto;
    height: auto;
    margin: 0 auto 25px;
    background: none;
    box-shadow: none;
}

.system-icon i {
    font-size: 64px;
    color: var(--primary);
}

.system-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.system-subtitle {
    color: #6c757d;
    margin-bottom: 30px;
}

.system-error {
    background: #fff5f5;
    border: 1px solid #f5c2c7;
    color: #842029;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.system-form .input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.system-form .input-wrapper i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #6c757d;
}

.system-form input {
    width: 100%;
    padding: 14px 14px 14px 42px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    font-size: 16px;
    transition: all .2s ease;
    box-sizing: border-box;
}

.system-form input:focus {
    outline: none;
    border-color: var(--primary, #2563eb);
    box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

.system-button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary, #2563eb), #1e40af);
    color: white;
    transition: all .2s ease;
}

.system-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37,99,235,.3);
}

.system-card-wider {
    max-width: 620px;
}

.system-card-suspended {
    border: 1px solid rgba(220, 53, 69, 0.15);
}

.system-icon-suspended {
    background: linear-gradient(135deg, #dc3545, #b02a37);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.25);
}

.system-divider {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 30px 0;
}

.system-meta {
    margin-top: 10px;
}

.system-card-404 {
    border: 1px solid rgba(0,0,0,0.05);
}

.system-icon-404 {
    background: linear-gradient(135deg, #0d6efd, #084298);
    box-shadow: 0 10px 25px rgba(13,110,253,.25);
}

.system-card-inactive {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.system-icon-inactive {
    background: linear-gradient(135deg, #6c757d, #495057);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.system-card {
    animation: systemFade .35s ease-out;
}

@keyframes systemFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog post layout. */
.sa-blog-post-cover-btn,
.sa-blog-post-gallery-thumb {
  cursor: pointer;
}

.sa-blog-post-article {
    box-shadow: none;
}

.sa-blog-post-title {
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.sa-blog-post-body {
    font-size: 1.0625rem;
    line-height: 1.75;
}

.sa-blog-post-body p:last-child {
    margin-bottom: 0;
}

.sa-blog-post-excerpt {
    font-size: 1.125rem;
    line-height: 1.6;
}

.sa-blog-related-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0;
}

.sa-blog-related-item::marker {
    color: var(--bs-primary);
}

.sa-blog-related-link {
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 500;
}

.sa-blog-related-link:hover,
.sa-blog-related-link:focus-visible {
    text-decoration: underline;
}

.sa-internal-404 {
    margin-top: clamp(1.5rem, 4vw, 2.75rem);
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    padding-top: clamp(2.5rem, 7vw, 5rem);
    padding-bottom: clamp(3rem, 9vw, 6rem);
}

.sa-internal-404-card {
    border-radius: 1rem;
}

.sa-internal-404-icon {
    width: 3.5rem;
    height: 3.5rem;
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    line-height: 1;
}

.sa-internal-404-title {
    letter-spacing: -0.02em;
}

.sa-internal-404-lead {
    line-height: 1.5;
}

.sa-internal-404-badge {
    font-size: 0.8rem;
}

.sa-internal-404-actions {
    margin-top: 0.25rem;
}

.sa-internal-404--custom .sa-internal-404-actions {
    margin-top: clamp(0.75rem, 2vw, 1.25rem);
}

/* Blog archive layout. */
.sa-blog-archive .sa-blog-hero {
    display: block;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

/* Plain blog list. */
.sa-blog-plain__item > * {
    display: block;
}

.sa-blog-plain__item + .sa-blog-plain__item {
    margin-top: 1.25rem;
}

.sa-blog-plain__pages {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.sa-blog-plain__page.is-ellipsis {
    opacity: 0.65;
    pointer-events: none;
}

/* Menus. */
.sa-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sa-menu .sa-menu-item {
    position: relative;
    list-style: none;
}

.sa-menu .sa-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.55rem;
    text-decoration: none;
    transition: background-color 0.16s ease, color 0.16s ease;
}

.sa-menu .sa-menu-link:hover,
.sa-menu .sa-menu-link:focus-visible {
    background: rgba(0, 0, 0, 0.05);
}

.sa-menu .sa-menu-link.active,
.sa-menu .sa-menu-item.is-active > .sa-menu-link {
    color: var(--sa-color-primary, #2563eb);
    font-weight: 600;
}

.sa-menu .sa-menu-item.has-children > .sa-menu-link::after {
    content: "";
    width: 0.38rem;
    height: 0.38rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 0.25rem;
    opacity: 0.7;
}

.sa-menu .sa-submenu {
    list-style: none;
    margin: 0;
    padding: 0.4rem;
    min-width: 12rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.sa-menu-level-0 > .sa-menu-item > .sa-submenu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    z-index: 50;
    display: none;
}

.sa-menu-level-1 > .sa-menu-item > .sa-submenu,
.sa-menu-level-2 > .sa-menu-item > .sa-submenu {
    position: absolute;
    top: -0.4rem;
    left: calc(100% + 0.35rem);
    z-index: 60;
    display: none;
}

.sa-menu .sa-menu-item:hover > .sa-submenu,
.sa-menu .sa-menu-item:focus-within > .sa-submenu {
    display: block;
}

.sa-submenu .sa-menu-link {
    display: flex;
    width: 100%;
    padding: 0.5rem 0.65rem;
    border-radius: 0.5rem;
}

.sa-submenu .sa-menu-item {
    width: 100%;
}

@media (max-width: 991.98px) {
    .sa-menu {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .sa-menu-level-0 > .sa-menu-item > .sa-submenu,
    .sa-menu-level-1 > .sa-menu-item > .sa-submenu,
    .sa-menu-level-2 > .sa-menu-item > .sa-submenu {
        position: static;
        display: block;
        border: 0;
        box-shadow: none;
        padding: 0.2rem 0 0.2rem 0.75rem;
        min-width: 0;
        background: transparent;
    }
}

/* Contact form. */
.sa-contact-form {
    margin-top: 0.75rem;
}

.sa-contact-form .row {
    --bs-gutter-y: 1.25rem;
}

.sa-contact-form .form-label {
    margin-bottom: 0.5rem;
}

.sa-contact-form .form-control {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

.sa-contact-form-input-group .input-group-text {
    min-width: 2.75rem;
    justify-content: center;
}

.sa-contact-form-input-group .input-group-text i {
    opacity: 0.88;
    font-size: 0.95rem;
}

.sa-contact-form .form-check {
    margin-top: 0.35rem;
    padding-top: 0.15rem;
}

.sa-contact-form-required {
    margin-left: 0.15em;
    font-weight: 600;
}

.sa-contact-form-spam-card .form-check {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
}

.sa-contact-form-spam-card .form-check-label {
    line-height: 1.45;
}

.sa-contact-form-spam-input {
    border-radius: 0.375rem;
    overflow: hidden;
}

.sa-contact-form-spam-input .input-group-text {
    white-space: nowrap;
    font-size: 0.9rem;
}

.sa-contact-form-spam-input .form-control {
    max-width: 5rem;
    flex: 0 1 5rem;
}

.sa-contact-form-feedback.sa-contact-form-feedback--show {
    animation: saContactFormFeedbackIn 0.45s ease forwards;
}

@keyframes saContactFormFeedbackIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sa-contact-form-feedback__icon {
    width: 2.75rem;
    height: 2.75rem;
}

.sa-contact-form-wrap--sent .sa-contact-form-feedback {
    margin-bottom: 1.25rem !important;
}

.sa-page-lock__icon {
    width: 2.75rem;
    height: 2.75rem;
}

.sa-page-lock__password {
    margin-bottom: 2rem;
}

html.sa-icons-fa.sa-icons-bi .sa-page-lock__icon-pack-bi {
    display: none;
}

html.sa-icons-bi:not(.sa-icons-fa) .sa-page-lock__icon-pack-fa {
    display: none;
}

html.sa-icons-fa:not(.sa-icons-bi) .sa-page-lock__icon-pack-bi {
    display: none;
}

/* Menu behavior. */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu,
    .navbar .dropdown:focus-within > .dropdown-menu {
        display: block;
    }

    .navbar .dropdown-menu .dropend {
        position: relative;
    }

    .navbar .dropdown-menu .dropend:hover > .dropdown-menu,
    .navbar .dropdown-menu .dropend:focus-within > .dropdown-menu {
        display: block;
        position: absolute;
        top: -0.35rem;
        left: calc(100% - 0.1rem);
        margin-top: 0;
    }

    .navbar .dropdown-menu .dropdown-toggle::after {
        float: right;
        margin-top: 0.55em;
    }

    .navbar .navbar-nav {
        align-items: center;
    }

    .navbar .navbar-nav .nav-item > a.btn {
        display: inline-block;
        padding-top: var(--bs-btn-padding-y, 0.375rem);
        padding-bottom: var(--bs-btn-padding-y, 0.375rem);
        line-height: var(--bs-btn-line-height, 1.5);
        vertical-align: middle;
    }

    .navbar .navbar-nav .nav-item + .nav-item > a.btn {
        margin-left: 0.35rem;
    }

    .navbar .dropdown.sa-nav-parent-with-children > .sa-nav-parent-row .sa-nav-submenu-toggle {
        display: none;
    }

    .navbar .dropdown.sa-nav-parent-with-children > .sa-nav-parent-row .sa-nav-parent-link,
    .navbar .dropdown-menu .dropend.sa-nav-parent-with-children > .sa-nav-parent-row .sa-nav-parent-link {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }

    .navbar .dropdown-menu .dropend.sa-nav-parent-with-children > .sa-nav-parent-row .sa-nav-parent-link {
        flex: 1 1 auto;
        min-width: 0;
    }

    nav[data-sa-unified-nav] .navbar-nav > .nav-item.sa-nav-parent-with-children > .sa-nav-parent-link.dropdown-toggle,
    nav[data-sa-unified-nav] .navbar-nav > .nav-item.sa-nav-parent-with-children > .sa-nav-parent-row .sa-nav-parent-link {
        color: var(--sa-header-link, inherit);
        transition: color 0.2s ease;
    }

    nav[data-sa-unified-nav] .navbar-nav > .nav-item.sa-nav-parent-with-children > .sa-nav-parent-link.dropdown-toggle:hover,
    nav[data-sa-unified-nav] .navbar-nav > .nav-item.sa-nav-parent-with-children:hover > .sa-nav-parent-link.dropdown-toggle,
    nav[data-sa-unified-nav] .navbar-nav > .nav-item.sa-nav-parent-with-children:focus-within > .sa-nav-parent-link.dropdown-toggle,
    nav[data-sa-unified-nav] .navbar-nav > .nav-item.sa-nav-parent-with-children > .sa-nav-parent-link.dropdown-toggle.active,
    nav[data-sa-unified-nav] .navbar-nav > .nav-item.sa-nav-parent-with-children > .sa-nav-parent-row .sa-nav-parent-link:hover,
    nav[data-sa-unified-nav] .navbar-nav > .nav-item.sa-nav-parent-with-children:hover > .sa-nav-parent-row .sa-nav-parent-link,
    nav[data-sa-unified-nav] .navbar-nav > .nav-item.sa-nav-parent-with-children:focus-within > .sa-nav-parent-row .sa-nav-parent-link,
    nav[data-sa-unified-nav] .navbar-nav > .nav-item.sa-nav-parent-with-children > .sa-nav-parent-row .sa-nav-parent-link.active {
        color: var(--sa-header-link-hover, var(--sa-color-primary, #2563eb));
    }

    nav[data-sa-unified-nav] .dropdown-menu .dropend.sa-nav-parent-with-children > .sa-nav-parent-row .sa-nav-parent-link {
        color: var(--sa-header-submenu-link, inherit);
        transition: color 0.2s ease;
    }

    nav[data-sa-unified-nav] .dropdown-menu .dropend.sa-nav-parent-with-children:hover > .sa-nav-parent-row .sa-nav-parent-link,
    nav[data-sa-unified-nav] .dropdown-menu .dropend.sa-nav-parent-with-children:focus-within > .sa-nav-parent-row .sa-nav-parent-link {
        color: var(--sa-header-submenu-link-hover, var(--sa-header-link-hover, var(--sa-color-primary, #2563eb)));
    }
}

@media (max-width: 991.98px) {
    .navbar .dropdown.sa-nav-parent-with-children > .sa-nav-parent-row {
        width: 100%;
    }

    .navbar .dropdown.sa-nav-parent-with-children > .sa-nav-parent-row .sa-nav-parent-link {
        flex: 1 1 auto;
        min-width: 0;
        text-align: left;
    }

    .navbar .dropdown.sa-nav-parent-with-children > .sa-nav-parent-row .sa-nav-parent-link.dropdown-toggle::after,
    .navbar .dropdown-menu .dropend.sa-nav-parent-with-children > .sa-nav-parent-row .sa-nav-parent-link.dropdown-toggle::after {
        display: none;
    }

    .navbar .dropdown.sa-nav-parent-with-children > .sa-nav-parent-row .sa-nav-submenu-toggle {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .navbar .dropdown-menu .dropend.sa-nav-parent-with-children > .sa-nav-parent-row {
        width: 100%;
    }

    .navbar .dropdown-menu .dropend.sa-nav-parent-with-children > .sa-nav-parent-row .sa-nav-parent-link {
        flex: 1 1 auto;
        min-width: 0;
    }

    .navbar .dropdown-menu,
    .navbar .dropdown-menu.show {
        position: static !important;
        transform: none !important;
        inset: auto !important;
        min-width: 0;
        width: 100%;
        margin: 0.25rem 0 0.35rem;
        box-shadow: none;
    }

    .navbar .dropdown-menu .dropdown-menu {
        margin-left: 0.75rem;
        width: calc(100% - 0.75rem);
    }

    .navbar .dropend > .dropdown-toggle::after {
        float: right;
        margin-top: 0.55em;
    }
}

/* Secondary menus. */
.sa-nav-menu-secondary {
    display: block;
}

.sa-nav-vertical {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sa-nav-vertical__item {
    margin: 0;
    padding: 0;
}

.sa-nav-vertical__link {
    display: block;
    padding: 0.35rem 0;
    color: inherit;
    text-decoration: none;
    border-radius: 0.25rem;
}

.sa-nav-vertical__link:hover {
    text-decoration: underline;
}

.sa-nav-vertical__link--active {
    font-weight: 600;
    color: var(--sa-color-primary, #2563eb);
}

.sa-nav-vertical__sub {
    margin: 0.25rem 0 0.5rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(15, 23, 42, 0.12);
}

.sa-pagination-nav {
    max-width: 100%;
    overflow-x: clip;
}

.sa-pagination-nav .pagination {
    flex-wrap: wrap !important;
    max-width: 100%;
}

.sa-pagination-nav .page-item {
    flex: 0 0 auto;
}

.sa-pagination-nav__compact .btn.disabled {
    pointer-events: none;
    opacity: 0.45;
}

.sa-pagination-nav__summary {
    white-space: nowrap;
}

section[data-sa-section-heading-color] h1,
section[data-sa-section-heading-color] h2,
section[data-sa-section-heading-color] h3,
section[data-sa-section-heading-color] h4,
section[data-sa-section-heading-color] h5,
section[data-sa-section-heading-color] h6,
section[style*="--sa-section-heading-color"] h1,
section[style*="--sa-section-heading-color"] h2,
section[style*="--sa-section-heading-color"] h3,
section[style*="--sa-section-heading-color"] h4,
section[style*="--sa-section-heading-color"] h5,
section[style*="--sa-section-heading-color"] h6 {
    color: var(--sa-section-heading-color, inherit);
}

section[data-sa-section-heading-color] :is(.card, .bg-white, .bg-light) :is(h1, h2, h3, h4, h5, h6),
section[style*="--sa-section-heading-color"] :is(.card, .bg-white, .bg-light) :is(h1, h2, h3, h4, h5, h6) {
    color: var(--bs-heading-color, var(--bs-body-color)) !important;
}

section.sa-section--full,
section[data-sa-section-width="full"] {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: clamp(1.25rem, 4vw, 2.75rem);
    padding-right: clamp(1.25rem, 4vw, 2.75rem);
}

section.sa-section--full > .container-fluid.sa-section-fluid-inner,
section[data-sa-section-width="full"] > .container-fluid.sa-section-fluid-inner {
    max-width: none;
    padding-left: clamp(0.75rem, 2.5vw, 1.5rem);
    padding-right: clamp(0.75rem, 2.5vw, 1.5rem);
}

section[data-sa-section-text-color] {
    color: var(--sa-section-text-color) !important;
}

section[data-sa-section-text-color] .text-muted,
section[data-sa-section-text-color] .text-secondary,
section[data-sa-section-text-color] .text-body-secondary {
    color: var(--sa-section-muted-color, var(--sa-section-text-color)) !important;
    opacity: 0.9;
}

section[data-sa-section-text-color] .text-dark,
section[data-sa-section-text-color] .text-body {
    color: var(--sa-section-text-color) !important;
}

section[data-sa-section-text-color] :is(h1, h2, h3, h4, h5, h6).text-dark {
    color: var(--sa-section-heading-color, var(--sa-section-text-color)) !important;
}

section[data-sa-section-text-color] :is(.card, .bg-white, .bg-light),
section[data-sa-section-text-color] :is(.card, .bg-white, .bg-light) .card-body {
    color: var(--bs-body-color) !important;
}

section[data-sa-section-text-color] :is(.card, .bg-white, .bg-light) .text-muted,
section[data-sa-section-text-color] :is(.card, .bg-white, .bg-light) .text-secondary,
section[data-sa-section-text-color] :is(.card, .bg-white, .bg-light) .text-body-secondary {
    color: var(--bs-secondary-color) !important;
    opacity: 1;
}

section[data-sa-section-text-color] :is(.card, .bg-white, .bg-light) .text-dark,
section[data-sa-section-text-color] :is(.card, .bg-white, .bg-light) .text-body {
    color: var(--bs-body-color) !important;
}

section[data-sa-section-text-color] :is(.card, .bg-white, .bg-light) :is(h1, h2, h3, h4, h5, h6),
section[data-sa-section-text-color] :is(.card, .bg-white, .bg-light) :is(h1, h2, h3, h4, h5, h6).text-dark {
    color: var(--bs-heading-color, var(--bs-body-color)) !important;
}

@media (min-width: 992px) {
    section[data-sa-section-min-height] {
        min-height: var(--sa-section-min-height);
    }
}

section[data-sa-section-parallax="1"],
section.sa-section--parallax {
    background-attachment: fixed;
}

@media (max-width: 991px) {
    section[data-sa-section-parallax="1"],
    section.sa-section--parallax {
        background-attachment: scroll;
    }
}