:root {
    --nn-blue: #0927EB;
    --nn-blue-d: #071DB8;
    --nn-blue-l: #3D5AFE;
    --nn-blue-hover: #1A3FE0;
    --nn-blue-bg: #E8EAF6;
    --nn-accent: #2196F3;
    --nn-accent-d: #1976D2;
    --red: #D32F2F;
    --red-d: #B71C1C;
    --red-m: #C62828;
    --red-l: #EF5350;
    --white: #ffffff;
    --black: #111111;
    --ink: #1a1a2e;
    --ink2: #333;
    --ink3: #555;
    --ink4: #777;
    --ink5: #aaa;
    --border: #e0e0e0;
    --bg: #f5f5f5;
    --card: #ffffff;
    --dark: #0a1628;
    --dark2: #111a2e;
    --dark3: #1a2332;
    --r: 8px;
    --sh: 0 1px 3px rgba(0, 0, 0, .06);
    --sh2: 0 4px 14px rgba(0, 0, 0, .10);
    --t: .22s ease;
    --ff: 'Cairo', sans-serif;
    --g100: #f0f2f5;
    --g200: #e3e7ef;
    --green: #2E7D32;
}

[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] body,
body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] body,
body[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--ff);
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--t)
}

img {
    max-width: 100%;
    display: block
}

ul {
    list-style: none
}

.sw-w {
    max-width: 1260px;
    margin: auto;
    padding: 0 20px
}

.sw-fixed-top-margin {
    margin-top: 0
}

.sw-breaking {
    background: var(--red);
    color: #fff;
    height: 38px;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 14px;
    font-weight: 700
}

.sw-brk-label {
    background: var(--red-d);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 22px;
    white-space: nowrap;
    gap: 9px;
    flex-shrink: 0;
    font-size: 13px
}

.sw-pulse {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: sw-pulse 1.3s infinite
}

@keyframes sw-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .35;
        transform: scale(.7)
    }
}

.sw-brk-scroll {
    overflow: hidden;
    flex: 1
}

.sw-brk-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: sw-ticker 55s linear infinite
}

.sw-brk-track span::before {
    content: "â—† ";
    font-size: 10px;
    opacity: .7
}

@keyframes sw-ticker {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

.sw-tlinks a {
    margin-right: 30px;
    color: #fff;
}

.sw-topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    padding: 5px 0
}

.sw-topbar-in {
    max-width: 1260px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.sw-topbar a {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    font-weight: 500
}

.sw-topbar a:hover {
    color: #fff
}

.sw-tlinks {
    display: flex;
    gap: 18px
}

.sw-tright {
    display: flex;
    align-items: center;
    gap: 16px
}

.sw-soc {
    display: flex;
    gap: 8px
}

.sw-soc a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .65);
    transition: background var(--t)
}

.sw-soc a:hover {
    background: var(--nn-blue);
    color: #fff
}

.sw-wchip {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .07);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px
}

.sw-tdate {
    font-size: 13px;
    color: rgba(255, 255, 255, .75)
}

.sw-main-header {
    background: var(--card);
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 3px solid var(--nn-blue);
    box-shadow: var(--sh);
}

.sw-header-inner {
    max-width: 1260px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 20px;
}

.sw-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sw-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sw-logo-img {
    height: 55px;
    width: auto;
    margin-right: 20%;
}

.sw-logo-text .sw-logo-mark {
    color: var(--ink);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.sw-logo-mark em {
    color: var(--nn-blue);
    font-style: normal;
}

.sw-logo-sub {
    font-size: 10px;
    color: var(--ink4);
    letter-spacing: .5px;
    margin-top: 1px;
}

.sw-desktop-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.sw-desktop-nav a {
    color: var(--ink2);
    font-size: 15px;
    font-weight: 600;
    padding: 6px 13px;
    border-radius: var(--r);
    transition: all var(--t);
    white-space: nowrap;
    position: relative;
}

.sw-desktop-nav a:hover,
.sw-desktop-nav a.sw-active {
    color: var(--ink);
    background: var(--g200);
}

.sw-desktop-nav a.sw-active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--nn-blue);
    border-radius: 2px;
}

.sw-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sw-search-toggle {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r);
    background: var(--g200);
    border: 1px solid var(--border);
    color: var(--ink2);
    font-size: 17px;
    cursor: pointer;
    transition: background var(--t);
}

.sw-search-toggle:hover {
    background: var(--g100);
    color: var(--ink);
}

.sw-support-btn {
    background: var(--nn-blue);
    color: #fff;
    padding: 7px 20px;
    border-radius: var(--r);
    font-size: 14px;
    font-weight: 600;
    transition: background var(--t);
}

.sw-support-btn:hover {
    background: var(--red-d);
}

.sw-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    padding: 0;
}

.sw-mobile-toggle span {
    height: 2px;
    background: var(--ink);
    width: 100%;
    transition: .2s;
}

.sw-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: var(--dark2);
    z-index: 1000;
    transition: right .3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, .3);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sw-mobile-nav.sw-active {
    right: 0;
}

.sw-mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.sw-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.sw-mobile-menu {
    list-style: none;
    padding: 10px 0;
}

.sw-mobile-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sw-mobile-menu-item a {
    display: block;
    padding: 14px 20px;
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
    transition: all .2s;
}

.sw-mobile-menu-item a:hover,
.sw-mobile-menu-item a.sw-active {
    background: rgba(255, 255, 255, .05);
    color: #fff;
}

.sw-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s;
}

.sw-mobile-overlay.sw-active {
    opacity: 1;
    visibility: visible;
}

.sw-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .95);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s;
}

.sw-search-overlay.sw-active {
    opacity: 1;
    visibility: visible;
}

.sw-search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.sw-search-close {
    position: absolute;
    top: -50px;
    left: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.sw-search-form {
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
}

.sw-search-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 18px;
    font-family: var(--ff);
    outline: none;
}

.sw-search-submit {
    background: var(--nn-blue);
    border: none;
    padding: 0 25px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.sw-search-hint {
    text-align: center;
    color: rgba(255, 255, 255, .5);
    margin-top: 15px;
    font-size: 14px;
}

@media (max-width:992px) {
    .sw-desktop-nav {
        display: none
    }

    .sw-mobile-toggle {
        display: flex
    }

    .sw-header-inner {
        padding: 0 15px
    }
}

@media (max-width:768px) {
    .sw-logo-text .sw-logo-mark {
        font-size: 24px
    }

    .sw-support-btn {
        padding: 5px 12px;
        font-size: 13px
    }

    .sw-search-toggle {
        width: 34px;
        height: 34px
    }

    .sw-logo {
        padding-right: 30px
    }

    .sw-section-title-link,
    .sw-section-title-text {
        font-size: 1.6rem
    }
}

.container {
    max-width: 1260px;
    margin: auto;
    padding: 0 20px;
    width: 100%
}

.sw-sh {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    position: relative
}

.sw-sh::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 90px;
    height: 2px;
    background: var(--nn-blue)
}

.sw-sh-t {
    font-size: 22px;
    font-weight: 900;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px
}

.sw-sh-t i {
    color: var(--nn-blue);
    font-style: normal;
    font-size: 20px
}

.sw-sh-m {
    font-size: 14px;
    font-weight: 800;
    color: var(--nn-blue)
}

.sw-sh-m:hover {
    color: var(--red-d)
}

.sw-sec-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--nn-blue);
    position: relative
}

.sw-sec-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--ink)
}

.sw-sec-more {
    font-size: 14px;
    font-weight: 800;
    color: var(--nn-blue);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--t)
}

.sw-sec-more:hover {
    gap: 8px
}

.sw-tag {
    display: inline-block;
    background: var(--nn-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 2px;
    line-height: 1.6
}

.sw-tag.sw-dk {
    background: var(--dark3)
}

.sw-tag.sw-wh {
    background: #fff;
    color: var(--nn-blue)
}

.sw-wid {
    background: var(--card);
    border-radius: var(--r);
    box-shadow: var(--sh);
    overflow: hidden;
    margin-bottom: 22px
}

.sw-wid-h {
    background: var(--dark);
    color: #fff;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.sw-wid-hs {
    font-size: 11px;
    opacity: .4;
    font-weight: 500
}

.sw-mrl li {
    border-bottom: 1px solid var(--border)
}

.sw-mrl li:last-child {
    border-bottom: none
}

.sw-mrl li a {
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    align-items: flex-start;
    transition: background var(--t)
}

.sw-mrl li a:hover {
    background: var(--bg)
}

.sw-mrn {
    font-size: 25px;
    font-weight: 900;
    color: var(--nn-blue);
    opacity: .22;
    flex-shrink: 0;
    line-height: 1;
    min-width: 28px
}

.sw-mrt {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.sw-widget {
    background: var(--card);
    border-radius: var(--r);
    box-shadow: var(--sh);
    overflow: hidden;
    margin-bottom: 22px
}

.sw-widget-hdr {
    background: var(--dark);
    color: #fff;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 3px solid var(--nn-blue)
}

.sw-widget-hdr i {
    color: var(--nn-blue);
    font-size: 18px
}

.sw-widget-body {
    padding: 14px 0
}

.sw-mr-item {
    display: flex;
    gap: 12px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    transition: background var(--t)
}

.sw-mr-item:last-child {
    border-bottom: none
}

.sw-mr-item:hover {
    background: var(--g100)
}

.sw-mr-n {
    width: 28px;
    height: 28px;
    background: var(--g200);
    color: var(--ink3);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
    transition: all var(--t)
}

.sw-mr-n.sw-hot {
    background: var(--red);
    color: #fff
}

.sw-mr-item:hover .sw-mr-n {
    background: var(--red);
    color: #fff
}

.sw-mr-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.sw-mr-meta {
    font-size: 12px;
    color: var(--ink4);
    margin-top: 4px
}

.sw-pgrd {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.sw-pc {
    padding: 10px 6px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border)
}

.sw-pc:nth-child(3n) {
    border-left: none
}

.sw-pc:nth-last-child(-n+3) {
    border-bottom: none
}

.sw-pn {
    font-size: 12px;
    color: var(--ink4);
    margin-bottom: 2px
}

.sw-pt {
    font-size: 15px;
    font-weight: 900;
    color: var(--dark)
}

.sw-pc.sw-now {
    background: var(--nn-blue)
}

.sw-pc.sw-now .sw-pn,
.sw-pc.sw-now .sw-pt {
    color: #fff
}

.sw-ww {
    background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
    border-radius: var(--r);
    padding: 20px;
    text-align: center;
    margin-bottom: 22px
}

.sw-ww .sw-wci {
    font-size: 46px;
    margin-bottom: 6px
}

.sw-ww .sw-wct {
    font-size: 58px;
    font-weight: 300;
    color: #fff;
    line-height: 1
}

.sw-ww .sw-wcc {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-top: 5px;
    font-weight: 600
}

.sw-ww .sw-wlo {
    font-size: 14px;
    color: rgba(255, 255, 255, .62);
    margin-bottom: 5px;
    font-weight: 700
}

.sw-twrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.sw-tg {
    background: #ebebeb;
    color: var(--ink3);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    transition: all var(--t);
    cursor: pointer
}

.sw-tg:hover {
    background: var(--nn-blue);
    color: #fff
}

.sw-pub-sec {
    background: var(--dark2);
    padding: 32px 0
}

.sw-pub-sec .sw-sh-t {
    color: #fff
}

.sw-pub-sec .sw-sh {
    border-bottom-color: rgba(255, 255, 255, .1)
}

.sw-pub-sec .sw-sh::after {
    background: var(--nn-blue)
}

.sw-pub-sec .sw-sh-m {
    color: rgba(255, 255, 255, .45)
}

.sw-nl {
    background: var(--red);
    padding: 40px 0
}

.sw-nl-in {
    text-align: center;
    color: #fff
}

.sw-nl-in h2 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 8px
}

.sw-nl-in p {
    font-size: 15px;
    opacity: .82;
    margin-bottom: 24px;
    font-weight: 600
}

.sw-nlf {
    display: flex;
    gap: 8px;
    max-width: 500px;
    margin: auto
}

.sw-nlf input {
    flex: 1;
    padding: 13px 18px;
    border: none;
    border-radius: var(--r);
    font-size: 15px;
    font-family: var(--ff);
    outline: none
}

.sw-nlf button {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 13px 24px;
    border-radius: var(--r);
    font-size: 15px;
    font-weight: 900;
    font-family: var(--ff);
    cursor: pointer;
    transition: background var(--t);
    white-space: nowrap
}

.sw-nlf button:hover {
    background: var(--red-d)
}

.sw-nl-sec {
    background: var(--nn-blue);
    padding: 44px 0
}

.sw-nl-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--r);
    font-size: 15px;
    font-family: var(--ff);
    outline: none
}

.sw-nl-btn {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: var(--r);
    font-size: 15px;
    font-weight: 900;
    font-family: var(--ff);
    cursor: pointer;
    transition: background var(--t);
    white-space: nowrap
}

.sw-nl-btn:hover {
    background: var(--red-d)
}

.sw-stats {
    background: var(--dark);
    padding: 30px 0
}

.sw-stats-in {
    max-width: 1260px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap
}

.sw-stat {
    text-align: center
}

.sw-sn {
    font-size: 36px;
    font-weight: 900;
    color: var(--nn-blue);
    line-height: 1
}

.sw-sl {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-top: 6px;
    font-weight: 600
}

.sw-sp-banner {
    background: var(--nn-blue);
    padding: 18px 0
}

.sw-sp-lbl {
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, .7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px
}

.sw-sp-title {
    font-size: 22px;
    font-weight: 900;
    color: #fff
}

.sw-sp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: #fff;
    padding: 10px 24px;
    border-radius: var(--r);
    font-size: 14px;
    font-weight: 800;
    transition: background var(--t)
}

.sw-sp-btn:hover {
    background: var(--red-d)
}

.sw-footer {
    background: var(--white)
}

.sw-footer-top {
    padding: 44px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.sw-footer-grid {
    display: grid;
    grid-template-columns: 260px 1fr 1fr 1fr;
    gap: 44px;
}

.sw-footer-brand .sw-footer-logo {
    font-size: 44px;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -1px;
}

.sw-footer-brand .sw-footer-logo em {
    color: var(--nn-blue);
    font-style: normal;
}

.sw-footer-sub {
    font-size: 11px;
    color: var(--ink4);
    margin-top: 2px;
    letter-spacing: .5px;
}

.sw-footer-brand p {
    font-size: 13px;
    color: var(--ink3);
    margin-top: 14px;
    line-height: 1.75;
    font-weight: 500;
}

.sw-footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.sw-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    transition: background var(--t);
}

.sw-footer-social a:hover {
    background: var(--nn-blue);
    color: #fff
}

.sw-footer-col h4 {
    font-size: 15px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.sw-footer-col li {
    margin-bottom: 9px;
}

.sw-footer-col li a {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    transition: color var(--t);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sw-footer-col li a::before {
    content: '\f0d9';
    font-size: 13px;
    opacity: .35;
    font-family: "Font Awesome 7 Free", "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    color: #000;
}

.sw-footer-col li a:hover {
    color: var(--ink)
}

.sw-footer-bottom {
    padding: 16px 0;
    background: var(--g100)
}

.sw-footer-copyright {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
}

.sw-footer-copyright span,
.sw-footer-copyright a {
    font-size: 13px;
    color: var(--ink4);
    font-weight: 500;
}

.sw-footer-copyright a:hover {
    color: var(--ink3);
}

@media (max-width:992px) {
    .sw-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }
}

@media (max-width:576px) {
    .sw-footer-grid {
        grid-template-columns: 1fr
    }

    .sw-footer-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }
}

#swScrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--red), var(--red-l));
    transform-origin: right;
    transform: scaleX(0);
    z-index: 9999;
    transition: transform .1s;
}

#swBackToTop {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 46px;
    height: 46px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(183, 28, 28, .45);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s, transform .3s;
    z-index: 99;
}

#swBackToTop.sw-show {
    opacity: 1;
    transform: none;
}

#swBackToTop:hover {
    background: var(--red-d);
}

.sw-an {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s, transform .6s;
}

.sw-an.sw-in {
    opacity: 1;
    transform: translateY(0);
}

.sw-error-box {
    background: var(--card);
    border-radius: var(--r);
    padding: 50px 20px;
    text-align: center;
    box-shadow: var(--sh);
}

.sw-error-box h4 {
    font-size: 28px;
    color: var(--red);
    margin-bottom: 20px;
}

.sw-btn-home {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
}

.sw-btn-home:hover {
    background: var(--red-d);
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: .6em;
    font-weight: 600;
    page-break-after: avoid;
}

h1 {
    font-size: 40px;
    margin-bottom: .8em;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -.5px;
}

h2 {
    font-size: 30px;
    margin-bottom: .7em;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: -.3px;
}

h3 {
    font-size: 24px;
    margin-bottom: .65em;
    line-height: 1.35;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    margin-bottom: .6em;
    line-height: 1.4;
    font-weight: 600;
}

h5 {
    font-size: 17px;
    margin-bottom: .55em;
    line-height: 1.45;
    font-weight: 700;
}

h6 {
    font-size: 15px;
    margin-bottom: .5em;
    line-height: 1.4;
    font-weight: 700;
}

p {
    margin-bottom: 1.1em;
    color: var(--ink);
}

.sw-opcard {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    transition: background var(--t);
}

.sw-opcard:hover {
    background: var(--g100);
}

.sw-opcard-left {
    flex: 1;
    min-width: 0;
}

.sw-opcard-title {
    font-size: 18px;
    line-height: 1.55;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.sw-opcard-title a {
    color: var(--ink);
    text-decoration: none;
    display: block;
    transition: color .2s;
}

.sw-opcard-title:hover {
    color: var(--nn-blue);
}

.sw-opcard-date {
    font-size: 13px;
    color: var(--ink4);
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sw-opcard-av-wrap {
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--g100);
    border: 2px solid var(--border);
    margin-bottom: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.sw-opcard-av {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.sw-opcard:hover .sw-opcard-av {
    transform: scale(1.05);
}

.sw-opcard-writer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    line-height: 1.3;
}

.sw-opcard-name {
    font-weight: 900;
    color: var(--ink);
}

.sw-opcard-role {
    font-size: 12px;
    color: var(--ink4);
}

@media (max-width:576px) {
    .sw-opcard {
        padding: 12px 0;
        gap: 16px
    }

    .sw-opcard-title {
        font-size: 18px;
        line-height: 1.5
    }

    .sw-opcard-av-wrap {
        width: 60px;
        height: 60px
    }

    .sw-opcard-right {
        width: 80px
    }
}

.sw-post-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--ink);
    letter-spacing: -.3px;
    page-break-after: avoid;
}

.sw-archive-post-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 10px;
    color: var(--ink);
    page-break-after: avoid;
}

.sw-ncard-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
}

.sw-fcard-sm-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.sw-fcard-sm-title a {
    color: inherit;
    text-decoration: none;
    transition: color .15s;
}

.sw-fcard-title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 8px;
}

.sw-feature-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
}

.sw-spcard-title {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.4;
    color: #fff;
}

.sw-crcard-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
}

.sw-page-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -.3px;
    page-break-after: avoid;
}

.sw-tags-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--ink);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    position: relative;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sw-tags-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 70px;
    height: 2px;
    background: var(--nn-blue);
}

@media (max-width:768px) {
    h1 {
        font-size: 32px;
        margin-bottom: .7em;
        line-height: 1.3;
        letter-spacing: -.3px
    }

    h2 {
        font-size: 26px;
        margin-bottom: .6em;
        line-height: 1.3
    }

    h3 {
        font-size: 22px;
        margin-bottom: .6em
    }

    h4 {
        font-size: 18px;
        margin-bottom: .5em
    }

    h5 {
        font-size: 16px;
        margin-bottom: .45em
    }

    h6 {
        font-size: 14px;
        margin-bottom: .4em
    }

    .sw-post-title {
        font-size: 26px;
        margin-bottom: 8px
    }

    .sw-archive-post-title {
        font-size: 18px;
        margin-bottom: 8px
    }

    .sw-ncard-title {
        font-size: 16px;
        margin-bottom: 6px
    }

    .sw-fcard-title {
        font-size: 18px;
        margin-bottom: 6px
    }

    .sw-feature-title {
        font-size: 18px;
        margin-bottom: 6px
    }

    .sw-spcard-title {
        font-size: 16px;
        margin-bottom: 6px
    }

    .sw-page-title {
        font-size: 24px;
        margin-bottom: 10px
    }

    .sw-opcard {
        gap: 14px;
        padding: 12px 0
    }

    .sw-opcard-title {
        font-size: 17px;
        margin-bottom: 6px
    }

    .sw-opcard-av-wrap {
        width: 60px;
        height: 60px
    }

    .sw-opcard-right {
        width: 80px
    }

    .sw-opcard-av {
        width: 60px;
        height: 60px
    }
}

@media (max-width:576px) {
    h1 {
        font-size: 28px;
        margin-bottom: .6em
    }

    h2 {
        font-size: 22px;
        margin-bottom: .5em
    }

    h3 {
        font-size: 19px;
        margin-bottom: .5em
    }

    h4 {
        font-size: 17px;
        margin-bottom: .45em
    }

    h5 {
        font-size: 15px;
        margin-bottom: .4em
    }

    h6 {
        font-size: 14px;
        margin-bottom: .35em
    }

    .sw-post-title {
        font-size: 22px;
        margin-bottom: 6px
    }

    .sw-archive-post-title {
        font-size: 16px;
        margin-bottom: 6px
    }

    .sw-ncard-title {
        font-size: 15px;
        margin-bottom: 5px
    }

    .sw-fcard-title {
        font-size: 18px;
        margin-bottom: 5px
    }

    .sw-feature-title {
        font-size: 18px;
        margin-bottom: 5px
    }

    .sw-spcard-title {
        font-size: 15px;
        margin-bottom: 5px
    }

    .sw-crcard-title {
        font-size: 13px;
        margin-bottom: 4px
    }

    .sw-page-title {
        font-size: 18px;
        margin-bottom: 8px
    }
}

@media (max-width:768px) {
    .sw-tlinks.sw-topbar-links {
        display: none
    }

    .sw-topbar .sw-tright {
        width: 100%;
        text-align: center
    }

    .sw-wchip {
        padding: 2px 8px;
        font-size: 10px
    }

    .sw-tdate {
        font-size: 12px;
        display: block;
        text-align: center;
        width: 100%
    }
}

@media (max-width:480px) {
    .sw-topbar {
        display: none
    }

    .sw-fixed-top-margin {
        margin-top: 0
    }
}

@media (max-width:768px) {
    .sw-header-inner {
        height: 76px;
        padding: 0 12px
    }

    .sw-logo-img {
        height: 55px
    }

    .sw-logo-text .sw-logo-mark {
        font-size: 20px
    }

    .sw-logo-sub {
        font-size: 8px
    }

    .sw-support-btn {
        padding: 4px 10px;
        font-size: 12px
    }

    .sw-search-toggle {
        width: 32px;
        height: 32px;
        font-size: 14px
    }
}

@media (max-width:576px) {
    .sw-mobile-nav {
        width: 85%;
        max-width: 280px
    }

    .sw-mobile-menu-item a {
        padding: 12px 16px;
        font-size: 14px
    }
}

@media (max-width:768px) {
    .sw-footer-top {
        padding: 30px 0
    }

    .sw-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center
    }

    .sw-footer-brand .sw-footer-logo {
        font-size: 36px
    }

    .sw-footer-social {
        justify-content: center
    }

    .sw-footer-col li a::before {
        content: none
    }

    .sw-footer-copyright {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }
}

@media (max-width:576px) {

    .sw-g4,
    .sw-g3,
    .sw-g2 {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .sw-gfl {
        grid-template-columns: 1fr
    }
}

@media (max-width:576px) {
    .sw-hcard {
        flex-direction: column
    }

    .sw-hcard .sw-hi {
        width: 100%;
        aspect-ratio: 16/9
    }

    .sw-hcard .sw-hb {
        padding: 12px
    }

    .sw-hcard .sw-ht {
        font-size: 14px
    }
}

@media (max-width:576px) {
    .sw-opcard {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .sw-opcard-right {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px
    }

    .sw-opcard-av-wrap {
        width: 48px;
        height: 48px
    }

    .sw-opcard-writer-info {
        text-align: right
    }
}

@media (max-width:768px) {
    .sw-ps-stage {
        height: 350px !important
    }

    .sw-ps-title {
        font-size: 20px
    }

    .sw-ps-thumb {
        height: 70px
    }

    .sw-ps-thumb-name {
        font-size: 9px;
        white-space: normal;
        line-height: 1.2
    }
}

@media (max-width:768px) {
    .sw-book-banner {
        flex-direction: column;
        text-align: center
    }

    .sw-book-info {
        order: 2;
        padding: 20px
    }

    .sw-book-cover-section {
        order: 1;
        padding: 20px
    }

    .sw-book-name {
        font-size: 22px
    }

    .sw-book-subtitle {
        font-size: 16px
    }

    .sw-download-btn {
        font-size: 14px;
        padding: 8px 20px
    }
}

@media (max-width:576px) {
    .sw-breaking {
        height: auto;
        flex-wrap: wrap;
        padding: 5px 0
    }

    .sw-brk-label {
        padding: 0 12px;
        font-size: 11px
    }

    .sw-brk-track {
        animation-duration: 40s;
        gap: 30px
    }

    .sw-brk-track span {
        font-size: 12px
    }
}

@media (max-width:576px) {
    .sw-search-form input {
        padding: 12px 15px;
        font-size: 14px
    }

    .sw-search-submit {
        padding: 0 18px;
        font-size: 14px
    }
}

@media (max-width:576px) {
    .sw-share-buttons {
        justify-content: center
    }

    .sw-share-btn {
        width: 36px;
        height: 36px;
        font-size: 14px
    }
}

@media (max-width:768px) {
    .sw-post-header {
        padding: 15px
    }

    .sw-post-title {
        font-size: 24px
    }

    .sw-post-meta {
        gap: 12px;
        flex-wrap: wrap
    }

    .sw-post-featured-image {
        margin: 0 15px 15px
    }

    .sw-post-content {
        padding: 0 15px 20px;
        font-size: 1rem
    }

    .sw-post-content p {
        text-indent: 10px
    }

    .sw-related-posts {
        flex-direction: column
    }

    .sw-related-item {
        flex: 0 0 100%
    }
}

@media (max-width:768px) {
    .sw-archive-header {
        padding: 0 15px
    }

    .sw-archive-name {
        font-size: 24px
    }

    .sw-archive-post-card {
        flex-direction: column;
        padding: 12px
    }

    .sw-archive-post-image {
        flex: 0 0 auto;
        width: 100%
    }

    .sw-archive-post-img {
        height: auto;
        max-height: 180px
    }

    .sw-archive-post-title {
        font-size: 18px
    }
}

@media (max-width:576px) {
    .sw-load-more-btn {
        padding: 8px 20px;
        font-size: 14px
    }

    .sw-pagination-link {
        padding: 6px 10px;
        font-size: 12px
    }
}

.sw-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sw-footer-col h3 {
    font-size: 18px;
}

.sw-footer {
    color: #ffffffb5;
}

.captionjs.captionjs-stacked {
    max-width: fit-content
}

section {
    padding: 20px 0 !important
}

.fixed-top {
    position: relative !important
}

#header {
    top: 0 !important;
    border-top: none
}

.fixed-top-margin {
    margin-top: 20px !important
}

.link_slider {
    background: #00000091
}

a:hover,
.site-top a,
#topbar .contact-info i,
#topbar .contact-info a:hover,
#topbar .social-links a:hover,
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a,
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a,
#footer .footer-bottom a,
.sidebar-list .list-group .active,
.sidebar-list .list-group a:hover,
.contact .info i {
    color: #0927EB
}

.navbar .active,
.navbar .active:focus {
    color: #0927EB !important
}

#hero .carousel-item::before {
    background-color: rgba(46, 62, 78, .7)
}

a,
#footer .footer-bottom a:hover,
.section-title h2,
.staff .member h4,
.testimonials .testimonial-item h3 {
    color: #0a1628
}

.read-more-link:hover,
.card-title:hover {
    color: #0927EB !important
}

.btn-theme,
#footer .footer-newsletter form button:hover,
.back-to-top,
.section-title h2::before,
.section-title h2::after,
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #0927EB
}

.btn-primary {
    background: #0a1628;
    border-color: #0a1628
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background: #0927EB !important;
    border-color: #0927EB !important
}

.btn-theme:hover,
#footer .footer-newsletter form button,
.back-to-top:hover {
    background: #0a1628
}

.btn-secondary,
.bg-secondary {
    background-color: #0927EB;
    border-color: #0927EB
}

.btn-secondary:hover {
    background-color: #0a1628;
    border-color: #0a1628
}

.section-bg {
    background-color: #E8EAF6
}

#footer .footer-bottom,
.breadcrumbs {
    background-color: #E8EAF6
}

.bottom-article,
.widget-title,
.contact .info i {
    background: #E8EAF6;
    border-color: #C5CAE9
}

.bg-primary {
    background-color: #0927EB !important;
    border-color: #0927EB !important
}

.bg-light {
    background-color: #0a1628 !important
}

.text-primary {
    color: #0927EB !important
}

.text-light {
    color: #E8EAF6 !important
}

.text-light::placeholder {
    color: #C5CAE9 !important;
    opacity: .7
}

.text-light::-ms-input-placeholder {
    color: #C5CAE9 !important;
    opacity: .7
}

.no-data {
    color: #0a1628 !important
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #C5CAE9
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    border-color: #0927EB
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #0927EB
}

.tooltip-inner {
    background-color: #0927EB
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #0927EB
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
    border-bottom-color: #0927EB
}

.services .icon-box:hover {
    background: #0a1628 !important;
    border-color: #0a1628 !important
}

.services .icon-box {
    border-color: #0927EB !important;
    background: #0927EB !important
}

.services .icon-box .icon i,
.services .icon-box:hover .icon i {
    color: #0927EB
}

.list-group-item,
.card,
.form-control,
.card {
    border-color: #C5CAE9
}

.page-link {
    color: #000 !important
}

.active>.page-link,
.page-link.active {
    background-color: #0927EB !important;
    border-color: #0927EB !important
}

#preloader:before {
    border-color: #0927EB;
    border-top-color: #C5CAE9
}

#footer img {
    max-width: 250px
}

#footer .footer-top .footer-links ul a:hover,
#footer a:hover,
#footer a:active {
    color: #0927EB
}

.form-control:focus {
    border-color: #C5CAE9;
    box-shadow: 0 0 0 .25rem #E8EAF6
}

.header-form-search .form-control {
    background-color: #E8EAF6 !important
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #0927EB !important
}

.select2-container--default .select2-results__option--selected {
    background-color: #E8EAF6
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #0927EB
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #E8EAF6 !important
}

.accordion-item {
    border-color: #C5CAE9 !important
}

.accordion-item:last-of-type .accordion-button.collapsed {
    background: #E8EAF6 !important
}

.accordion-button:not(.collapsed) {
    color: #fff !important;
    background-color: #0927EB !important;
    box-shadow: none
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    color: #C5CAE9 !important
}

.home-page .testimonials,
.home-page .gallery {
    border-top: 1px solid #E8EAF6 !important
}

.staff .member {
    background: #C5CAE9 !important;
    box-shadow: none
}

.staff .member span::after {
    background: #0927EB !important
}

.staff .member .member-info .custom-field-value {
    background: transparent
}

.cookies-accept-box {
    background-color: rgba(46, 62, 78, .9)
}

.post-gallery {
    background: #E8EAF6 !important
}

.line-frame {
    border: 1px solid #C5CAE9 !important
}

.gallery .gallery-item {
    border: 3px solid #fff
}

.sw-section-header__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px
}

.sw-title-block {
    width: fit-content
}

.sw-section-title {
    margin: 0;
}

.sw-lines-deco {
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    position: relative;
    bottom: -10px
}

.sw-line-black {
    width: 36px;
    height: 6px;
    background: #e60023
}

.sw-line-gray {
    width: 80px;
    height: 6px;
    background: #000
}

.sw-line-red {
    width: 8px;
    height: 4px;
    background: #f2f2f2
}

.sw-section-more {
    color: #ed1b24;
    font-size: 16px;
    position: relative;
    padding-bottom: 6px;
    text-decoration: none;
    font-weight: 700;
    margin-inline-end: 3%;
}

.sw-section-more::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -4px;
    border-bottom: 2px solid #000;
}

.border-dark {
    --bs-border-opacity: 1;
    border-color: rgb(230, 0, 35) !important;
}

.sw-footer-social span {
    display: none;
}

sw-footer-brand p {
    display: none;
}

.sw-footer-brand img {
    max-height: 80px !important;
}

@media (max-width:576px) {
    .footer-logo {
        text-align: center
    }

    .footer-logo img {
        display: block;
        margin: 0 auto
    }
}

#nd-footer {
    color: #000;
    background-color: #fff;
    margin-top: auto;
    bottom: 0;
}

.nd-footer-top {
    padding: 80px 0 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
    background-color: #fff;
}

#nd-footer a {
    color: #000;
    text-decoration: none;
    transition: .3s ease-in-out;
}

#nd-footer a:hover,
#nd-footer a:active {
    color: #0927EB;
}

.nd-footer-title {
    margin-bottom: 15px;
    position: relative;
}

.nd-footer-title h1 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    padding-bottom: 12px;
    margin: 0;
    position: relative;
}

.nd-footer-title h1::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #d0d0d0;
    bottom: 0;
    left: 0;
}

.nd-colorLogoG {
    color: #0927EB;
}

.nd-footer-links address,
.nd-footer-links p {
    line-height: 24px;
    margin-bottom: 15px;
    color: #000;
}

.nd-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nd-footer-links ul li {
    display: flex;
    align-items: center;
    padding: 7px 0;
    line-height: 1.25rem;
    border-bottom: 1px dotted #d0d0d0;
}

.nd-footer-links ul li:first-child {
    padding-top: 0;
}

.nd-footer-links ul li::before {
    content: '\f0d9';
    position: relative;
    top: 0;
    left: 13px;
    font-family: "Font Awesome 7 Free", "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    color: #000;
    width: 16px;
}

.nd-footer-links ul a {
    font-weight: 700;
    line-height: 1;
}

.nd-social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.nd-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 18px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    transition: .3s;
}

.nd-social-links a:hover {
    color: #0927EB;
    box-shadow: inset rgba(0, 0, 0, .1) 0 0 10px;
}

.nd-copyright,
.nd-credits {
    font-size: 13px;
    color: #000;
    padding-top: 5px;
}

.nd-credits a {
    font-weight: bold;
}

@media (max-width:768px) {
    .nd-footer-links ul {
        padding: 0 7px
    }

    .nd-footer-links ul li {
        padding: 5px 0
    }

    .nd-footer-links ul li::before {
        left: 5px
    }

    .nd-footer-links {
        margin-bottom: 30px
    }
}

@media (max-width:768px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 100%
    }
}

.sw-post-authors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    margin-top: 4px;
}

.sw-post-author {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.sw-author-avatar--small {
    width: 22px;
    height: 22px;
}

@media (max-width:480px) {
    .sw-post-authors {
        gap: 6px 12px;
        display: flex;
        flex-wrap: initial
    }

    .sw-post-author {
        font-size: 16px
    }

    .sw-author-avatar--small {
        width: 20px;
        height: 20px
    }

    .has-multiple-writers .sw-author-avatar {
        width: 50px !important;
        height: 50px !important
    }

    .sw-post-author {
        white-space: normal
    }

    .sw-author-avatar {
        width: 80px;
        height: 80px
    }
}

[dir="ltr"] .nd-footer-links ul li::before {
    content: '\f0da';
    margin-right: 10px;
}

[dir="rtl"] .nd-footer-links ul li::before {
    content: '\f0d9'
}

.section-header-tabs {
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
}

.section-title-main {
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    position: relative;
}

.section-title-main i {
    color: var(--nn-blue);
    margin-left: 8px;
}

.nav-pills-sm .nav-link {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    color: var(--ink4);
    transition: all var(--t);
}

.nav-pills-sm .nav-link.active {
    background: var(--nn-blue);
    color: #fff;
}

.nav-pills-sm .nav-link:hover:not(.active) {
    color: var(--nn-blue);
    background: var(--nn-blue-bg);
}

.section-header-tabs .nav-pills .nav-link {
    font-size: 15px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 25px;
    color: var(--ink3);
    transition: all var(--t);
}

.section-header-tabs .nav-pills .nav-link.active {
    background: var(--nn-blue);
    color: #fff;
    box-shadow: 0 2px 8px rgba(9, 39, 235, .25);
}

.section-header-tabs .nav-pills .nav-link:hover:not(.active) {
    color: var(--nn-blue);
    background: var(--nn-blue-bg);
}

.category-box {
    border-radius: var(--r);
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t);
}

.category-box:hover {
    box-shadow: var(--sh2);
}

.category-box .card-header {
    background: var(--card);
    border-bottom: 2px solid var(--nn-blue);
    padding: 14px 18px;
}

.category-box .card-body {
    padding: 16px;
}

.numbered-list {
    counter-reset: numbered-counter;
}

.numbered-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    transition: background var(--t);
}

.numbered-item:hover {
    background: var(--g100);
}

.numbered-item:last-child {
    border-bottom: none;
}

.rank-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--g100);
    color: var(--ink4);
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
    transition: all var(--t);
}

.rank-badge.top-rank {
    background: var(--nn-blue);
    color: #fff;
}

.numbered-item:nth-child(1) .rank-badge {
    background: var(--nn-blue);
    color: #fff;
}

.numbered-item:nth-child(2) .rank-badge {
    background: var(--nn-accent);
    color: #fff;
}

.numbered-item:nth-child(3) .rank-badge {
    background: var(--nn-blue-l);
    color: #fff;
}

.sidebar-section .card {
    border: none;
    border-radius: var(--r);
    box-shadow: var(--sh);
    overflow: hidden;
}

.sidebar-section .card-header {
    background: var(--card);
    border-bottom: 2px solid var(--nn-blue);
    padding: 12px 16px;
}

.sidebar-section .card-body {
    padding: 0;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--nn-blue) 0%, var(--nn-blue-l) 100%);
    border-radius: var(--r);
    padding: 30px 24px;
    text-align: center;
}

.newsletter-box .sidebar-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.newsletter-box input[type="email"] {
    border: none;
    border-radius: 25px;
    padding: 10px 18px;
    font-family: var(--ff);
    font-size: 14px;
}

.newsletter-box input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .3);
}

.newsletter-box .btn-light {
    border-radius: 25px;
    font-weight: 700;
    color: var(--nn-blue);
    padding: 10px 24px;
}

.sidebar-section .social-feed {
    padding: 16px;
}

.sidebar-section .social-feed .btn {
    border-radius: var(--r);
    font-weight: 700;
    font-family: var(--ff);
    font-size: 14px;
    transition: transform var(--t);
}

.sidebar-section .social-feed .btn:hover {
    transform: translateY(-2px);
}

.opinion-item .author-avatar {
    border: 2px solid var(--nn-blue-bg);
    transition: border-color var(--t);
}

.opinion-item:hover .author-avatar {
    border-color: var(--nn-blue);
}

.horizontal-small-card {
    border-radius: var(--r);
    overflow: hidden;
    background: var(--card);
    transition: transform var(--t), box-shadow var(--t);
}

.horizontal-small-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh2);
}

.quick-news-item {
    transition: background var(--t);
}

.quick-news-item:hover {
    background: var(--g100);
}

.split-section {
    background: var(--bg);
}

.content-section {
    background: var(--card);
    border-radius: var(--r);
    padding: 24px;
    box-shadow: var(--sh);
}

.content-section .tab-content {
    padding-top: 20px;
}

.literature-item {
    transition: background var(--t);
}

.literature-item:hover {
    background: var(--g100);
}

@media (max-width:768px) {
    .section-header-tabs {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px !important
    }

    .section-header-tabs .nav-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        width: 100%;
        padding-bottom: 4px
    }

    .section-header-tabs .nav-pills .nav-link {
        font-size: 13px;
        padding: 5px 14px;
        white-space: nowrap
    }

    .section-title-main {
        font-size: 20px
    }

    .category-box .card-header {
        padding: 10px 14px
    }

    .nav-pills-sm .nav-link {
        font-size: 12px;
        padding: 3px 10px
    }

    .numbered-item {
        padding: 10px 14px
    }

    .content-section {
        padding: 16px
    }
}

@media (max-width:576px) {
    .section-header-tabs .nav-pills .nav-link {
        font-size: 12px;
        padding: 4px 12px
    }

    .numbered-item {
        gap: 10px
    }

    .rank-badge {
        width: 28px;
        height: 28px;
        font-size: 12px
    }

    .newsletter-box {
        padding: 20px 16px
    }
}

.sw-line-black {
    background: var(--nn-blue);
}

.sw-line-red {
    background: var(--nn-accent);
}

.sw-line-gray {
    background: var(--dark);
}

.sw-section-more {
    color: var(--nn-blue);
}

.sw-section-more::before {
    border-bottom-color: var(--nn-blue);
}

.border-dark {
    border-color: var(--nn-blue) !important;
}

.sw-main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nn-blue) 0%, var(--nn-accent) 50%, var(--nn-blue-l) 100%);
    z-index: 1;
}

.sw-desktop-nav a {
    position: relative;
    border-left: 1px solid rgba(0, 0, 0, .06);
    padding: 6px 16px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .2px;
}

.sw-desktop-nav a:first-child {
    border-left: none;
}

.sw-desktop-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    left: 50%;
    height: 3px;
    background: var(--nn-blue);
    border-radius: 3px 3px 0 0;
    transition: right var(--t), left var(--t);
}

.sw-desktop-nav a:hover::before,
.sw-desktop-nav a.sw-active::before {
    right: 15%;
    left: 15%;
}

.sw-desktop-nav a.sw-active {
    color: var(--nn-blue);
    font-weight: 800;
}

.sw-desktop-nav a.sw-active::after {
    display: none;
}

.sw-sh {
    border-bottom: none;
    padding-bottom: 16px;
    position: relative;
}

.sw-sh::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nn-blue), var(--nn-accent), transparent);
    border-radius: 2px;
}

.sw-sh-t::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--nn-blue);
    border-radius: 50%;
    margin-left: 6px;
    flex-shrink: 0;
}

.sw-sec-hdr {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 24px;
    position: relative;
    padding-right: 18px;
}

.sw-sec-hdr::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: linear-gradient(180deg, var(--nn-blue), var(--nn-accent));
    border-radius: 3px;
}

.sw-sec-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--ink);
    position: relative;
}

.sw-card {
    border-top: 3px solid var(--nn-blue);
    border-radius: var(--r);
}

.sw-card:hover {
    border-top-color: var(--nn-accent);
}

.sw-cfeat {
    border-top: 4px solid var(--nn-blue);
}

.sw-cfeat:hover {
    border-top-color: var(--nn-accent);
}

.sw-hcard {
    border-right: 3px solid var(--nn-blue);
    border-radius: var(--r);
}

.sw-hcard:hover {
    border-right-color: var(--nn-accent);
}

.sw-card .sw-ct:hover,
.sw-cfeat .sw-ft:hover,
.sw-hcard .sw-ht:hover {
    color: var(--nn-blue);
}

.sw-ncard-title a:hover {
    color: var(--nn-blue);
}

@keyframes nn-pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .7
    }
}

.sw-breaking .sw-brk-label {
    animation: nn-pulse 2s ease-in-out infinite;
    border-radius: 0 0 8px 8px;
    padding: 6px 18px;
    font-size: 13px;
    letter-spacing: 1px;
}

.sw-sh-m,
.sw-sec-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sw-sh-m::after,
.sw-sec-more::after {
    content: 'â†گ';
    transition: transform var(--t);
}

.sw-sh-m:hover::after,
.sw-sec-more:hover::after {
    transform: translateX(-4px);
}

.sw-card:hover,
.sw-cfeat:hover,
.sw-ncard:hover,
.sw-fcard:hover {
    box-shadow: 0 8px 25px rgba(9, 39, 235, .12);
}

.sw-wcard::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--nn-blue);
    border-radius: 2px;
    transition: height var(--t);
}

.sw-wcard {
    position: relative;
}

.sw-wcard:hover::before {
    height: 60%;
}

.numbered-item:nth-child(1) .rank-badge {
    background: linear-gradient(135deg, var(--nn-blue), var(--nn-blue-d));
    box-shadow: 0 2px 8px rgba(9, 39, 235, .3);
}

.numbered-item:nth-child(2) .rank-badge {
    background: linear-gradient(135deg, var(--nn-accent), var(--nn-accent-d));
    box-shadow: 0 2px 8px rgba(33, 150, 243, .3);
}

.numbered-item:nth-child(3) .rank-badge {
    background: linear-gradient(135deg, var(--nn-blue-l), var(--nn-blue));
    box-shadow: 0 2px 8px rgba(61, 90, 254, .3);
}

#nd-footer::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--nn-blue), var(--nn-accent), var(--nn-blue-l), var(--nn-accent));
    background-size: 200% 100%;
    animation: nn-gradient-shift 4s ease infinite;
}

@keyframes nn-gradient-shift {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

.sw-spcard-cat {
    background: var(--green) !important;
}

.nn-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--nn-blue), var(--nn-accent), transparent);
    border: none;
    border-radius: 2px;
    margin: 30px 0;
}

.nn-divider-v {
    width: 3px;
    background: linear-gradient(180deg, var(--nn-blue), var(--nn-accent));
    border-radius: 2px;
    align-self: stretch;
}

.nn-dot-accent {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--nn-blue);
    border-radius: 50%;
    margin-left: 6px;
}

.nn-btn-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nn-blue);
    font-weight: 700;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all var(--t);
}

.nn-btn-read:hover {
    color: var(--nn-blue-d);
    border-bottom-color: var(--nn-blue);
}

.nn-btn-read::after {
    content: 'â†گ';
    transition: transform var(--t);
}

.nn-btn-read:hover::after {
    transform: translateX(-4px);
}

.nn-badge-new {
    display: inline-block;
    background: var(--nn-blue);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 8px;
    border-radius: 10px;
    margin-right: 6px;
    animation: nn-pulse 3s ease-in-out infinite;
}

.sw-opcard-av-wrap {
    border: 2px solid var(--nn-blue-bg) !important;
    transition: border-color var(--t);
}

.sw-opcard-v2:hover .sw-opcard-av-wrap {
    border-color: var(--nn-blue) !important;
}

#swScrollProgress {
    background: linear-gradient(90deg, var(--nn-blue), var(--nn-accent)) !important;
}

.sw-h-dot.sw-on {
    background: var(--nn-blue) !important;
    transform: scale(1.3);
}

.sw-ps-dot.sw-on {
    background: var(--nn-blue) !important;
}

.sw-dossier-dot.sw-active {
    background: var(--nn-blue) !important;
}

.sw-book-dot.sw-on {
    background: var(--nn-blue) !important;
}

.sw-caricature-dot.sw-active {
    background: var(--nn-blue) !important;
}

.sw-dialogues-dot.sw-active {
    background: var(--nn-blue) !important;
}

.sw-dossier .sw-doss-card {
    border: 1px solid rgba(9, 39, 235, .15);
}

.sw-dossier .sw-doss-card:hover {
    border-color: rgba(9, 39, 235, .35);
}

.nn-pattern-bg {
    background-image: radial-gradient(circle at 1px 1px, rgba(9, 39, 235, .03) 1px, transparent 0);
    background-size: 24px 24px;
}

.category-box .card-header {
    border-bottom: 3px solid var(--nn-blue);
    background: linear-gradient(180deg, var(--card), var(--g100));
}

.nav-pills .nav-link.active {
    background: var(--nn-blue) !important;
    box-shadow: 0 2px 8px rgba(9, 39, 235, .25);
}

.nav-pills .nav-link:hover:not(.active) {
    color: var(--nn-blue);
    background: var(--nn-blue-bg);
}

.nav-pills-sm .nav-link.active {
    background: var(--nn-blue) !important;
}

::-webkit-scrollbar-thumb {
    background: var(--nn-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--nn-blue-d);
}

@media (max-width:768px) {
    .sw-sec-hdr::before {
        width: 4px
    }

    .sw-sec-title {
        font-size: 22px
    }

    .sw-desktop-nav a {
        font-size: 13px;
        padding: 6px 10px;
        border-left: none
    }

    .sw-desktop-nav a::before {
        height: 2px
    }

    .sw-hcard {
        border-right: none;
        border-top: 3px solid var(--nn-blue)
    }
}

@media (max-width:576px) {
    .sw-sh-t {
        font-size: 18px
    }

    .sw-sh-t::before {
        width: 6px;
        height: 6px
    }

    .sw-sec-hdr {
        padding-right: 14px
    }

    .sw-sec-title {
        font-size: 20px
    }
}


.sw-post-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 0.75rem;
    font-weight: normal;
    line-height: 1.3;
}

.edit-icon-container {
  margin-right: auto;
}