@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body,
input, button, select, textarea {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", Arial, sans-serif;
    letter-spacing: -.015em;
    color: #f3f4f6;
}
body {
    color: #cbd5e1;
    font-size: 11px;
    background: #0a0a12;
    -webkit-font-smoothing: antialiased;
}
a {
    color: #c7d2fe;
}
a:hover,
a:focus {
    color: #ffffff;
}

html #header .header-top,
html #header .header-top.header-top-secondary,
html #header .header-top.header-top-secondary.header-top-style-3 {
    background: #ffffff;
    border-bottom: 1px solid #eceff7;
    border-top: 0;
}
html #header .header-top p,
html #header .header-top p.text-color-light,
html #header .header-top span,
html #header .header-top li,
html #header .header-top a {
    color: #6b7280;
    font-size: 14px;
}
html #header .header-top a:hover {
    color: #111827;
}
html #header .header-body {
    background: linear-gradient(90deg, #111827 0%, #1f2937 55%, #374151 100%);
    border-top: 0;
    border-bottom: 0;
    box-shadow: 0 2px 12px rgba(31, 41, 55, .35);
}
html #header .header-logo img {
    max-height: 2.75rem;
    width: auto;
}
html.sticky-header-active #header .header-body {
    padding-top: 8px;
    padding-bottom: 8px;
}

html #header .header-nav-main nav > ul > li > a,
html #header .header-nav-main nav > ul > li > a:hover,
html #header .header-nav-main nav > ul > li > a:focus,
html #header .header-nav-main nav > ul > li > a:active,
html.sticky-header-active #header .header-nav-main nav > ul > li > a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
    line-height: 1.25;
    padding: .9375rem 1.25rem;
    margin: 0 .1875rem;
    border: 0;
    border-radius: .5625rem;
    background: transparent;
    color: #cbd5e1;
    transition: background .18s ease, color .18s ease;
    outline: none;
}
html #header .header-nav-main nav > ul > li > a span {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    color: inherit;
    padding: 0;
    margin: 0;
    background: transparent;
}
html #header .header-nav-main nav > ul > li > a:hover,
html #header .header-nav-main nav > ul > li:hover > a,
html #header .header-nav-main nav > ul > li.open > a,
html #header .header-nav-main nav > ul > li.dropdown:hover > a {
    background: rgba(255, 255, 255, .14);
    color: #ffffff;
}
html #header .header-nav-main nav > ul > li > a:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .35);
}
html #header .header-nav-main nav > ul > li.active > a,
html #header .header-nav-main nav > ul > li.active > a:hover,
html #header .header-nav-main nav > ul > li.active > a:focus,
html #header .header-nav-main nav > ul > li.active:hover > a {
    background: #ffffff;
    color: #111827;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

html #header .header-nav-main nav > ul > li.dropdown > a:after {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 1em;
    font-weight: 400;
    line-height: 1;
    display: inline-block;
    margin-left: .5rem;
    position: relative;
    top: .08em;
    color: inherit;
    border: 0;
    width: auto;
    height: auto;
    vertical-align: baseline;
    transition: transform .18s ease;
}
html #header .header-nav-main nav > ul > li.dropdown:hover > a:after,
html #header .header-nav-main nav > ul > li.dropdown.open > a:after {
    transform: rotate(180deg);
}

html #header .header-nav-main nav > ul > li.dropdown .dropdown-menu {
    min-width: 13rem;
    padding: .375rem;
    margin-top: 0;
    top: 100%;
    background: #ffffff;
    border: 1px solid #e7eaf3;
    border-radius: 0 0 .75rem .75rem;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .14);
    overflow: hidden;
}
html #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li a {
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #334155;
    background: transparent;
    border-radius: .5rem;
    padding: .625rem .75rem;
    border-bottom: 0;
}
html #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li a:hover,
html #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li:hover > a {
    background: #f3f4f6;
    color: #111827;
}
@media (min-width: 992px) {
    html #header .header-nav-main nav > ul > li.dropdown > .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(.375rem);
        transition: opacity .16s ease, transform .16s ease, visibility .16s;
    }
    html #header .header-nav-main nav > ul > li.dropdown:hover > .dropdown-menu,
    html #header .header-nav-main nav > ul > li.dropdown.open > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    html #header .header-nav-main nav > ul > li.dropdown > a {
        position: relative;
        padding-right: 2.375rem;
    }
    html #header .header-nav-main nav > ul > li.dropdown > a:after {
        position: absolute;
        top: 50%;
        right: 1.1rem;
        margin: 0;
        transform: translateY(-50%);
    }
    html #header .header-nav-main nav > ul > li.dropdown:hover > a:after,
    html #header .header-nav-main nav > ul > li.dropdown.open > a:after {
        transform: translateY(-50%) rotate(180deg);
    }
}

@media (max-width: 991px) {
    html #header .header-body,
    html.sticky-header-active #header .header-body {
        top: 0;
        transform: none;
    }
    html #header .header-container {
        position: relative;
    }
    html #header .header-btn-collapse-nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: .75rem;
        right: .75rem;
        margin: 0;
        float: none;
        min-width: 2.75rem;
        min-height: 2.75rem;
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: .625rem;
        z-index: 100;
    }
    html #header .header-btn-collapse-nav .fa {
        color: #ffffff;
        font-size: 13px;
    }
    html #header .header-nav-main {
        width: 100%;
        max-width: 100%;
        float: none;
        clear: both;
        margin: 0;
        padding: .375rem;
        background: #111827;
        border-radius: 0 0 .75rem .75rem;
        box-shadow: 0 18px 36px rgba(0, 0, 0, .35);
        max-height: calc(100vh - 11rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    html #header .header-nav-main nav > ul > li {
        float: none;
        display: block;
        width: 100%;
        margin: 0;
        border-bottom: 0;
    }
    html #header .header-nav-main nav > ul > li > a,
    html #header .header-nav-main nav > ul > li > a:hover,
    html #header .header-nav-main nav > ul > li > a:focus {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 12px;
        text-transform: none;
        letter-spacing: 0;
        padding: .9375rem 1rem;
        margin: .125rem 0;
        border-radius: .5rem;
    }
    html #header .header-nav-main nav > ul > li.dropdown > a:after {
        float: right;
        margin-top: .2em;
    }
    html #header .header-nav-main nav > ul > li.dropdown .dropdown-menu {
        position: static;
        float: none;
        display: none;
        width: 100%;
        margin: 0 0 .25rem 0;
        padding: 0 0 0 .875rem;
        background: transparent;
        border: 0;
        box-shadow: none;
    }
    html #header .header-nav-main nav > ul > li.dropdown.open .dropdown-menu,
    html #header .header-nav-main nav > ul > li.dropdown.opened .dropdown-menu {
        display: block;
    }
    html #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li a {
        color: #cbd5e1;
        padding: .75rem 1rem;
    }
    html #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, .08);
        color: #ffffff;
    }
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    html #header .header-top p {
        white-space: normal;
        word-break: break-word;
        line-height: 1.6;
    }
    .container,
    html #header .header-container,
    html #header .header-row,
    html #header .header-column,
    html #header .header-nav {
        max-width: 100%;
    }
    img, iframe, table {
        max-width: 100%;
    }
}

html .btn-primary,
html .btn-primary:focus {
    background: linear-gradient(135deg, #1f2937, #374151);
    border: 0;
    color: #ffffff;
    border-radius: .5625rem;
    font-weight: 500;
    box-shadow: none;
    transition: filter .15s ease, box-shadow .15s ease;
}
html .btn-primary:hover,
html .btn-primary:active,
html .btn-primary:active:hover,
html .btn-primary:active:focus {
    background: linear-gradient(135deg, #1f2937, #374151);
    border: 0;
    filter: brightness(1.08);
    box-shadow: 0 6px 16px rgba(31, 41, 55, .4);
    color: #ffffff;
}
.btn-default {
    background: #ffffff;
    border: 1px solid #d6dbe7;
    color: #374151;
    border-radius: .5625rem;
    font-weight: 500;
}
.btn-default:hover {
    background: #f6f7fb;
    border-color: #a5b0c4;
}
.btn-slider-action {
    background: linear-gradient(135deg, #1f2937, #374151);
    border: 0;
    color: #ffffff;
    border-radius: .5625rem;
    font-weight: 500;
}
.form-control {
    border: 1px solid #d6dbe7;
    border-radius: .5625rem;
    box-shadow: none;
    color: #111827;
    background: #ffffff;
    font-size: 11px;
}
.form-control:focus {
    border-color: #6b7280;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, .18);
}

.slider-container {
    position: relative;
    background: #0a0a12;
}
.tparrows {
    z-index: 1000;
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: .625rem;
    width: 2.75rem;
    height: 2.75rem;
}
.tparrows:hover {
    background: #111827;
}
.tparrows:before {
    font-size: 12px;
    line-height: 2.75rem;
    color: #ffffff;
}
.tp-bullets {
    z-index: 1000;
}
.tp-bullet {
    background: rgba(31, 41, 55, .25);
    border-radius: 999px;
    width: .5625rem;
    height: .5625rem;
    border: 0;
}
.tp-bullet.selected,
.tp-bullet:hover {
    background: #1f2937;
}

html section.section,
.section {
    background: transparent;
    border-top: 0;
    padding: 4rem 0;
    margin: 0;
}
html section.section.section-default,
.section.section-default {
    background: transparent;
    border-top: 0;
    border-bottom: 0;
}
.section h2 {
    font-size: 23px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: .75rem;
}
.section h2 strong {
    color: #a5b4fc;
    font-weight: 800;
}

.home-intro {
    background: linear-gradient(120deg, #6366f1 0%, #8b5cf6 55%, #a855f7 100%);
    border-radius: 0;
    margin-bottom: 0;
    padding: 1.25rem 0;
}
.home-intro p {
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}
.home-intro p em {
    font-family: inherit;
    font-style: normal;
    font-weight: 800;
    font-size: 1.15em;
    color: #ffffff;
    letter-spacing: .03em;
}
html .home-intro .btn,
html .home-intro .btn-primary,
html .home-intro .btn-primary:hover,
html .home-intro .btn-primary:focus {
    background: #ffffff;
    color: #6d28d9;
    border: 0;
    border-radius: .5625rem;
    padding: .75rem 1.625rem;
    font-size: 11px;
    font-weight: 600;
    filter: none;
    box-shadow: none;
}
html .home-intro .btn:hover,
html .home-intro .btn-primary:hover {
    background: #ede9fe;
    color: #5b21b6;
}

.feature-box.feature-box-style-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .125rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: .875rem;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    transition: transform .18s ease, box-shadow .18s ease;
    margin-bottom: 1.25rem;
}
.feature-box.feature-box-style-2:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
}
.feature-box.feature-box-style-2 .feature-box-icon {
    float: none;
    position: static;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    margin: 0 0 .75rem 0;
    padding: 0;
    display: block;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    font-size: 26px;
    line-height: 1;
    text-align: center;
}
.feature-box.feature-box-style-2 .feature-box-info {
    padding: 0;
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
}
.feature-box.feature-box-style-2 h4 {
    color: #0f172a;
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 .5rem;
    text-transform: none;
    letter-spacing: -.01em;
    text-align: center;
}
.feature-box.feature-box-style-2 p,
.feature-box .feature-box-info p {
    color: #64748b;
    text-align: center;
    line-height: 1.65;
    font-size: 12px;
    margin: 0;
}

.counter i { color: #818cf8; }
.counter strong { color: #818cf8; font-weight: 800; }
.counter label {
    color: #94a3b8;
    letter-spacing: .07em;
    text-transform: uppercase;
    font-size: 11px;
}

html section.section.section-parallax,
.section.section-parallax {
    background: #12172e;
    background-attachment: scroll;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    position: relative;
}
.section-parallax .container {
    position: relative;
    z-index: 1;
}
.testimonial.testimonial-style-2 blockquote {
    background: #ffffff;
    border: 1px solid #eceff7;
    border-radius: .875rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .05), 0 8px 24px rgba(15, 23, 42, .06);
    padding: 1.5rem 2rem;
}
.testimonial.testimonial-style-2 blockquote p {
    color: #334155;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.6;
}
.testimonial-with-quotes blockquote:before,
.testimonial-with-quotes blockquote:after {
    color: #c7cede;
}
.testimonial .testimonial-author img.img-circle {
    border: 3px solid #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .18);
    max-width: 3.25rem;
}
.section-parallax .testimonial-author strong,
.section-parallax .testimonial-author span {
    color: #f3f4f6;
    font-size: 11px;
}
.section-parallax .testimonial-author p {
    color: #94a3b8;
    font-size: 11px;
}

.owl-carousel .owl-item img {
    filter: grayscale(1) invert(.85);
    opacity: .75;
    transition: filter .2s ease, opacity .2s ease;
}
.owl-carousel .owl-item img:hover {
    filter: none;
    opacity: 1;
}
.owl-carousel .owl-item img.img-circle,
.testimonial img {
    filter: none;
    opacity: 1;
}
.owl-theme .owl-dots .owl-dot span {
    background: #3f3f56;
    width: .5rem;
    height: .5rem;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #a5b4fc;
}
.owl-theme .owl-nav [class*="owl-"] {
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #e7eaf3;
    border-radius: .625rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .1);
}
.owl-theme .owl-nav [class*="owl-"]:hover {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #ffffff;
}

section.page-header {
    background: linear-gradient(90deg, #111827 0%, #1f2937 55%, #374151 100%);
    border: 0;
    padding: 1.625rem 0;
    margin-bottom: 0;
}
section.page-header h1,
section.page-header h2 {
    color: #ffffff;
    font-weight: 700;
    border: 0;
}
section.page-header .breadcrumb > li,
section.page-header .breadcrumb a,
section.page-header .breadcrumb .active {
    color: #9ca3af;
}
.breadcrumb {
    background: transparent;
}
html .call-to-action,
html .call-to-action.call-to-action-primary {
    background: #ffffff;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    color: #46484f;
}
html .call-to-action h1, html .call-to-action h2, html .call-to-action h3,
html .call-to-action.call-to-action-primary h3,
html .call-to-action span, html .call-to-action strong {
    color: #111827;
}
html .call-to-action p,
html .call-to-action.call-to-action-primary p {
    color: #6b7280;
}
.panel, .well {
    background: #ffffff;
    border: 0;
    border-radius: .75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    color: #46484f;
}
.table > thead > tr > th {
    background: #f6f7fb;
    color: #52607a;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 1px solid #e7eaf3;
}
.table > tbody > tr > td {
    border-color: #f1f3fa;
    vertical-align: middle;
    font-size: 11px;
}
.table-striped > tbody > tr:nth-child(odd) > td {
    background: #fafbfe;
}
.table-hover > tbody > tr:hover > td {
    background: #f3f4f6;
}
.pagination > li > a {
    color: #1f2937;
    background: #ffffff;
    border-color: transparent;
    border-radius: .5rem;
    margin: 0 .125rem;
}
.pagination > .active > a {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-color: transparent;
    color: #ffffff;
}
.nav-tabs {
    border-bottom: 1px solid #e7eaf3;
}
.nav-tabs > li > a {
    border-radius: .5625rem .5625rem 0 0;
    color: #6b7280;
}
.nav-tabs > li > a:hover {
    background: #f3f4f6;
    border-color: transparent;
    color: #111827;
}
.nav-tabs > li.active > a {
    color: #111827;
    font-weight: 600;
    border-color: #e7eaf3 #e7eaf3 transparent;
}
.label, .badge {
    border-radius: .375rem;
    text-shadow: none;
}
.alert {
    border-radius: .75rem;
    box-shadow: none;
}
.img-thumbnail, .thumbnail {
    border-radius: .75rem;
    border-color: #eceff7;
}
.featured-box,
.featured-box.featured-box-primary {
    background: #ffffff;
    border: 0;
    border-top: 3px solid #6366f1;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    color: #46484f;
}
.featured-box .box-content {
    border: 0;
    padding: 1.625rem 1.625rem 1.375rem;
}
html .featured-box h2, html .featured-box h3, html .featured-box h4,
html .featured-box-primary h2, html .featured-box-primary h3,
html .featured-box-primary h4 {
    color: #111827;
    font-weight: 700;
    letter-spacing: -.01em;
    text-transform: none;
}
.featured-box-primary .box-content {
    border-top-color: #1f2937;
}
.featured-box-primary .icon-featured {
    background-color: #1f2937;
}
.featured-box label {
    color: #374151;
    font-weight: 500;
    font-size: 11px;
}
.featured-box .form-control {
    background: #f8fafc;
}
.featured-box .form-control:focus {
    background: #ffffff;
}
h2.word-rotator-title strong {
    color: #111827;
}

#footer {
    background: #0d0d16;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 3.5rem;
}
#footer .footer-ribbon {
    display: none;
}
#footer h1, #footer h2, #footer h3, #footer h4, #footer h5 {
    color: #6b7280;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 1.125rem;
}
#footer, #footer p, #footer li, #footer span {
    color: #9ca3af;
    font-size: 14px;
}
#footer p {
    line-height: 1.75;
}
#footer a {
    color: #cbd5e1;
}
#footer a:hover {
    color: #ffffff;
}
#footer .container ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
#footer .container ul li {
    padding: .3125rem 0;
    border: 0;
    background: none;
    list-style: none;
}
#footer .container ul li a {
    font-size: 14px;
    text-decoration: none;
    transition: color .15s ease, padding-left .15s ease;
}
#footer .container ul li a:hover {
    padding-left: .25rem;
}
#footer .footer-brand {
    display: block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: .75rem;
}
#footer .footer-copyright {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 1.75rem;
    padding: 1.25rem 0 1.5rem;
}
#footer .footer-copyright .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#footer .footer-copyright .col-md-7 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
#footer .footer-copyright .social-icons.footer-socials {
    float: right;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
}
#footer .footer-copyright #sub-menu {
    float: left;
    margin-right: 1.5rem;
}
#footer .footer-copyright #sub-menu ul {
    display: flex;
    align-items: center;
}
#footer .footer-copyright p,
#footer .footer-copyright span,
#footer .footer-copyright li,
#footer .footer-copyright a {
    color: #d1d5db;
    font-size: 14px;
    margin: 0;
}
#footer .footer-copyright a:hover {
    color: #ffffff;
}
#footer .social-icons li {
    margin: 0 10px 0 0;
}
#footer .social-icons li a {
    background: #334155;
    color: #ffffff;
    border-radius: 999px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .4);
    transition: filter .15s ease, transform .15s ease;
}
#footer .social-icons li a i,
#footer .social-icons li a .fa {
    color: #ffffff;
    line-height: inherit;
}
#footer .social-icons li.social-icons-facebook a {
    background: #1877f2;
}
#footer .social-icons li.social-icons-twitter a {
    background: #1da1f2;
}
#footer .social-icons li.social-icons-instagram a {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
#footer .social-icons li.social-icons-linkedin a {
    background: #0a66c2;
}
#footer .social-icons li.social-icons-telegram a {
    background: #229ed9;
}
#footer .social-icons li.social-icons-whatsapp a {
    background: #25d366;
}
#footer .social-icons li.social-icons-youtube a {
    background: #ff0000;
}
#footer .social-icons li a:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    color: #ffffff;
}
#footer .newsletter .form-control,
.newsletter input.form-control {
    border-radius: .5625rem 0 0 .5625rem;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .06);
    color: #f3f4f6;
    height: 2.625rem;
}
.newsletter .btn,
.newsletter .btn-default {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #ffffff;
    border: 0;
    border-radius: 0 .5625rem .5625rem 0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.newsletter .btn .btn-loader {
    display: none;
    width: 1rem;
    height: auto;
}
.newsletter-info {
    line-height: 1.7;
}
.newsletter .alert {
    border: 1px solid transparent;
    border-radius: .5625rem;
    padding: .625rem .875rem;
    font-size: 13px;
}
.newsletter .alert-success {
    background: rgba(16, 185, 129, .12);
    border-color: rgba(16, 185, 129, .35);
    color: #6ee7b7;
}
.newsletter .alert-danger {
    background: rgba(244, 63, 94, .12);
    border-color: rgba(244, 63, 94, .35);
    color: #fda4af;
}
#footer a[href*="flagcounter"] {
    display: inline-block;
    background: #ffffff;
    padding: 1rem;
    border-radius: .875rem;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    margin-top: 1.25rem;
}
#footer img[src*="flagcounter"] {
    display: block;
    max-width: 100%;
}

html .scroll-to-top {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: .5625rem;
    box-shadow: 0 4px 12px rgba(31, 41, 55, .35);
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #c3cbdc; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #9aa7c0; }

@media (max-width: 767px) {
    .section { padding: 2.75rem .25rem; }
    .home-intro { display: none; }
    .testimonial.testimonial-style-2 blockquote p { font-size: 12px; }
}
@media (max-width: 991px) {
    .header-logo img { height: 20px; width: auto; }
}

#frmSignIn .track-btn-col {
    padding-top: 1.75rem;
}
#frmSignIn .track-btn-col .btn {
    width: 100%;
    height: 45px;
    white-space: nowrap;
}
#frmSignIn textarea.form-control {
    resize: vertical;
}
@media (max-width: 991px) {
    #frmSignIn .track-btn-col {
        padding-top: .75rem;
    }
}

html .accordion-group {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
    margin-bottom: .75rem;
    overflow: hidden;
}
html .accordion-heading {
    background: #ffffff;
    padding: 0;
}
html .accordion-heading .accordion-toggle {
    display: block;
    padding: 1rem 1.25rem;
    color: #0f172a;
    font-size: 12px;
    text-decoration: none;
    transition: background .15s ease;
}
html .accordion-heading .accordion-toggle:hover {
    background: #f3f4f6;
    color: #0f172a;
}
html .accordion-heading .accordion-toggle strong {
    font-weight: 600;
    color: #0f172a;
}
html .accordion-heading .accordion-toggle .icon-chevron-down {
    display: none;
}
html .accordion-heading .accordion-toggle:after {
    content: "\f107";
    font-family: FontAwesome;
    float: right;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.4;
    transition: transform .18s ease;
}
html .accordion-heading .accordion-toggle[aria-expanded="true"]:after {
    transform: rotate(180deg);
    color: #0f172a;
}
html .accordion-body .accordion-inner {
    border-top: 1px solid #eef2f7;
    padding: .5rem 1.25rem 1rem;
    background: #ffffff;
    color: #46484f;
}
html .accordion-inner .table {
    margin-bottom: 0;
}
html .accordion-inner .table > tbody > tr > td,
html .accordion-inner .table > tbody > tr > td a {
    color: #334155;
}

html .alert {
    border-radius: .75rem;
    border: 1px solid transparent;
    box-shadow: none;
    padding: .875rem 1.125rem;
}
html .alert-danger,
html .alert-error {
    background: rgba(244, 63, 94, .1);
    border-color: rgba(244, 63, 94, .35);
    color: #fda4af;
}
html .alert-success {
    background: rgba(16, 185, 129, .1);
    border-color: rgba(16, 185, 129, .35);
    color: #6ee7b7;
}
html .alert-info {
    background: rgba(99, 102, 241, .1);
    border-color: rgba(99, 102, 241, .35);
    color: #c7d2fe;
}
html .alert-warning {
    background: rgba(245, 158, 11, .1);
    border-color: rgba(245, 158, 11, .35);
    color: #fcd34d;
}
html .featured-box .alert-danger,
html .panel .alert-danger,
html .call-to-action .alert-danger,
html .accordion-inner .alert-danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}
html .featured-box .alert-success,
html .panel .alert-success,
html .call-to-action .alert-success,
html .accordion-inner .alert-success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #047857;
}
html .featured-box .alert-info,
html .panel .alert-info {
    background: #eef2ff;
    border-color: #c7d2fe;
    color: #4338ca;
}
html .featured-box .alert-warning,
html .panel .alert-warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #b45309;
}

.hero-banners {
    padding: 28px 0 4px;
}
.hero-carousel {
    position: relative;
    aspect-ratio: 1896 / 830;
    border-radius: 16px;
    overflow: hidden;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .55);
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 5;
}
.hero-dots button {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}
.hero-dots button.active {
    background: #ffffff;
    transform: scale(1.2);
}
@media (max-width: 767px) {
    .hero-banners {
        padding: 14px 10px 0;
    }
    .hero-carousel {
        border-radius: 12px;
    }
    .hero-dots {
        bottom: 8px;
    }
}

.gf-brand-ribbons {
    background: #f6f7fb;
    padding: 1.75rem 0 2rem;
}
.gf-ribbon-row {
    margin-top: 1.25rem;
}
.gf-ribbon-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #8b95ab;
    margin-bottom: 1rem;
}
.gf-ribbon-track {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.gf-ribbon-scroll {
    display: flex;
    align-items: center;
    width: max-content;
    animation: gf-ribbon-scroll-left 102.4s linear infinite;
}
.gf-ribbon-scroll-reverse {
    animation-name: gf-ribbon-scroll-right;
    animation-duration: 115.2s;
}
.gf-ribbon-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 2.25rem;
}
.gf-ribbon-logo img {
    height: 28px;
    width: auto;
    max-width: 110px;
    opacity: .45;
    filter: grayscale(1);
    transition: opacity .2s ease, filter .2s ease;
}
.gf-ribbon-logo:hover img {
    opacity: .9;
    filter: grayscale(0);
}
@keyframes gf-ribbon-scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes gf-ribbon-scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
    .gf-ribbon-scroll {
        animation: none;
    }
}
@media (max-width: 767px) {
    .gf-brand-ribbons {
        padding: 2.25rem 0 2.75rem;
    }
    .gf-ribbon-logo {
        height: 52px;
        padding: 0 1.5rem;
    }
    .gf-ribbon-logo img {
        height: 22px;
        max-width: 84px;
    }
}

.gf-reviews-section {
    background: #ffffff;
    padding: 1.75rem 0;
    border-top: 1px solid #e7eaf3;
}
.gf-review-carousel {
    max-width: 640px;
    margin: 0 auto;
}
.gf-review-card {
    text-align: center;
}
.gf-review-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: .5rem;
}
.gf-review-text {
    margin: 0 0 .5rem;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    font-style: italic;
}
.gf-review-author {
    margin: 0;
    font-size: 12px;
    color: #8b95ab;
}
.gf-review-author strong {
    color: #1f2937;
    font-style: normal;
    margin-right: .5rem;
}
@media (max-width: 767px) {
    .gf-reviews-section {
        padding: 1.5rem 0;
    }
    .gf-review-text {
        font-size: 13px;
    }
}
