@charset "UTF-8";
* {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #222;
}

* {
    --sb-track-color: #696969;
    --sb-thumb-color: #3a3a3a;
    --sb-size: 7px;
}

*::-webkit-scrollbar {
    width: var(--sb-size);
}

*::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 2px;
}

*::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 2px;
}

@supports not selector(::-webkit-scrollbar) {
    * {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

html[lang=fa-IR] .uk-flag {
    filter: grayscale(1);
}

html[lang=en-US] .iran-flag {
    filter: grayscale(1);
}

.lang-flags svg {
    transition: all 0.4s;
}

.lang-flags svg:hover {
    filter: grayscale(0);
}

#main-header .main-menu {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 100;
}

#main-header .main-menu > li.menu-item {
    padding: 0 1rem;
    position: relative;
    flex: auto;
    font-size: 14px;
}

#main-header .main-menu > li.menu-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 12px 0;
}

#main-header .main-menu > li.menu-item > a .menu-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

#main-header .main-menu > li.menu-item > a .menu-title {
    flex-grow: 1;
}

#main-header .main-menu > li.menu-item > a .menu-chevron {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

html[dir=rtl] #main-header .main-menu > li.menu-item > a .menu-chevron {
    transform: rotate(90deg);
}

html[dir=ltr] #main-header .main-menu > li.menu-item > a .menu-chevron {
    transform: rotate(0deg);
}

html[dir=rtl] #main-header .main-menu > li.menu-item > a .menu-chevron.chevron-rotated {
    transform: rotate(-90deg);
}

html[dir=ltr] #main-header .main-menu > li.menu-item > a .menu-chevron.chevron-rotated {
    transform: rotate(180deg);
}

#main-header .main-menu > li.menu-item > a:hover {
    color: #59C6D1;
}

#main-header .main-menu > li.has-mega-menu > a:hover {
    color: #59C6D1;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container {
    position: fixed;
    top: 126px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    min-width: 1000px;
    width: -moz-fit-content;
    width: fit-content;
    max-width: min(1600px, 100vw - 40px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container.mega-menu-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 32px;
    width: 100%;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list {
    display: flex;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: stretch;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item {
    flex: 0 1 auto;
    min-width: 180px;
    padding: 0 1rem;
    position: relative;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item.mb-has-two-columns {
    flex: 1 1 auto;
    min-width: 350px;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item.has-single-mc:not(.mb-has-two-columns) {
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 300px;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item.has-multiple-mc:not(.mb-has-two-columns) {
    flex: 0 1 auto;
    min-width: 220px;
}

html[dir=rtl] #main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #E5E7EB;
}

html[dir=ltr] #main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #E5E7EB;
}

html[dir=rtl] #main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item:first-child {
    padding-right: 0;
}

html[dir=ltr] #main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item:first-child {
    padding-left: 0;
}

html[dir=rtl] #main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item:last-child {
    padding-left: 0;
}

html[dir=ltr] #main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item:last-child {
    padding-right: 0;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #0C4A6D;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #59C6D1;
    transition: color 0.3s ease;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > a .menu-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > a .menu-title {
    text-align: center;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > a:hover {
    color: #59C6D1;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item {
    margin-bottom: 0;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item.has-md-children {
    margin-bottom: 12px;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > a .menu-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > a .menu-title {
    flex: 1;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > a:hover {
    color: #59C6D1;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item.has-md-children > a {
    margin-bottom: 2px;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list.md-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 8px;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item.has-md-children {
    margin-bottom: 8px;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item > a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #6B7280;
    padding: 2px 10px;
    border-radius: 6px;
    transition: all 0.25s ease;
    line-height: 1.3;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item > a .menu-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.7;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item > a .menu-title {
    flex: 1;
    word-spacing: -4px;
}

html[dir=rtl] #main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item > a {
    padding-right: 10px;
}

html[dir=ltr] #main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item > a {
    padding-left: 10px;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item > a:hover {
    background: rgba(89, 198, 209, 0.08);
    color: #59C6D1;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item > a:hover .menu-icon {
    opacity: 1;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item.no-icon > a {
    position: relative;
    display: flex;
    padding: 2px 4px;
}

html[dir=rtl] #main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item.no-icon > a {
    padding-right: 16px;
}

html[dir=rtl] #main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item.no-icon > a::before {
    content: "•";
    position: absolute;
    right: 4px;
    color: #6B7280;
    font-size: 14px;
}

html[dir=ltr] #main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item.no-icon > a {
    padding-left: 16px;
}

html[dir=ltr] #main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item.no-icon > a::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: #6B7280;
    font-size: 14px;
}

#main-header .main-menu > li.has-mega-menu > .mega-menu-container .mega-menu-content > .mb-list > li.mb-item > .mc-grid-container > li.mc-item > .md-list > li.md-item.has-icon {
    list-style: none;
}

#main-header .main-menu > li.menu-item-has-children:not(.has-mega-menu) {
    position: relative;
}

#main-header .main-menu > li.menu-item-has-children:not(.has-mega-menu) > .sub-menu {
    position: absolute;
    top: 100%;
    width: -moz-max-content;
    width: max-content;
    min-width: 200px;
    max-width: 350px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px #c3e2e6;
    padding: 6px 0;
    z-index: 1000;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.25s ease;
}

html[dir=rtl] #main-header .main-menu > li.menu-item-has-children:not(.has-mega-menu) > .sub-menu {
    right: 0;
    left: auto;
}

html[dir=ltr] #main-header .main-menu > li.menu-item-has-children:not(.has-mega-menu) > .sub-menu {
    left: 0;
    right: auto;
}

#main-header .main-menu > li.menu-item-has-children:not(.has-mega-menu) > .sub-menu.dropdown-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

#main-header .main-menu > li.menu-item-has-children:not(.has-mega-menu) > .sub-menu > li {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

#main-header .main-menu > li.menu-item-has-children:not(.has-mega-menu) > .sub-menu > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

#main-header .main-menu > li.menu-item-has-children:not(.has-mega-menu) > .sub-menu > li > a .menu-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

#main-header .main-menu > li.menu-item-has-children:not(.has-mega-menu) > .sub-menu > li > a .menu-title {
    flex: 1;
}

#main-header .main-menu > li.menu-item-has-children:not(.has-mega-menu) > .sub-menu > li > a:hover {
    background: rgba(89, 198, 209, 0.08);
    color: #59C6D1;
}

html[dir=rtl] #main-header .main-menu > li.menu-item-has-children:not(.has-mega-menu) > .sub-menu > li > a:hover {
    padding-right: 20px;
}

html[dir=ltr] #main-header .main-menu > li.menu-item-has-children:not(.has-mega-menu) > .sub-menu > li > a:hover {
    padding-left: 20px;
}

#main-header .main-menu > li.menu-item-has-children:not(.has-mega-menu) > .sub-menu > li:not(:last-child) {
    border-bottom: 1px solid #c3e2e6;
}

#main-header #mobile_nav .mobile-menu-item {
    border-bottom: 1px solid #c3e2e6;
    border-radius: 8px;
    margin-bottom: 4px;
}

#main-header #mobile_nav .mobile-menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

#main-header #mobile_nav .mobile-menu-item > a,
#main-header #mobile_nav .mobile-menu-item > div > a {
    transition: all 0.25s ease;
    border-radius: 6px;
}

#main-header #mobile_nav .mobile-menu-item > a:hover,
#main-header #mobile_nav .mobile-menu-item > div > a:hover {
    color: #59C6D1;
    background-color: rgba(89, 198, 209, 0.05);
}

html[dir=rtl] #main-header #mobile_nav .mobile-menu-item > a:hover,
html[dir=rtl] #main-header #mobile_nav .mobile-menu-item > div > a:hover {
    padding-right: 12px;
}

html[dir=ltr] #main-header #mobile_nav .mobile-menu-item > a:hover,
html[dir=ltr] #main-header #mobile_nav .mobile-menu-item > div > a:hover {
    padding-left: 12px;
}

#main-header #mobile_nav .mobile-menu-item .mobile-menu-toggle {
    background: rgba(89, 198, 209, 0.08);
    border-radius: 8px;
    transition: all 0.25s ease;
    padding: 8px;
}

html[dir=rtl] #main-header #mobile_nav .mobile-menu-item .mobile-menu-toggle {
    margin-right: 8px;
    margin-left: 0;
}

html[dir=ltr] #main-header #mobile_nav .mobile-menu-item .mobile-menu-toggle {
    margin-left: 8px;
    margin-right: 0;
}

#main-header #mobile_nav .mobile-menu-item .mobile-menu-toggle:hover {
    background: rgba(89, 198, 209, 0.15);
    transform: scale(1.05);
}

#main-header #mobile_nav .mobile-menu-item .mobile-menu-toggle svg {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header #mobile_nav .mobile-menu-item .mobile-menu-toggle svg.rotate-180 {
    transform: rotate(180deg);
}

#main-header #mobile_nav .mobile-submenu {
    padding: 6px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(89, 198, 209, 0.03) 0%, rgba(89, 198, 209, 0.01) 100%);
}

html[dir=rtl] #main-header #mobile_nav .mobile-submenu {
    border-right: 3px solid rgba(89, 198, 209, 0.3);
    border-left: none;
    border-radius: 12px 0 0 12px;
    padding-right: 12px;
}

html[dir=ltr] #main-header #mobile_nav .mobile-submenu {
    border-left: 3px solid rgba(89, 198, 209, 0.3);
    border-right: none;
    border-radius: 0 12px 12px 0;
    padding-left: 12px;
}

#main-header #mobile_nav .mobile-submenu .mobile-menu-item {
    border-bottom: 1px solid rgba(89, 198, 209, 0.08);
}

#main-header #mobile_nav .mobile-submenu .mobile-menu-item:last-child {
    border-bottom: none;
}

#main-header #mobile_nav .mobile-submenu .mobile-menu-item > a:hover {
    color: #59C6D1;
    background-color: rgba(89, 198, 209, 0.08);
}

@media (max-width: 1024px) {
    #main-header .main-menu li.has-mega-menu .mega-menu-container {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    #main-header #mobile_nav {
        display: none !important;
    }
}

.mega-menu-visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.dropdown-visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.main-menu a:focus,
.mobile-menu-item a:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid #59C6D1;
    outline-offset: 2px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .mega-menu-container,
    .sub-menu,
    .mobile-submenu,
    .menu-chevron,
    .mobile-menu-toggle svg {
        transition: none !important;
    }
}

@media (prefers-contrast: high) {
    #main-header .main-menu .mega-menu-container .mega-menu-content {
        border: 2px solid #000;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    #main-header .main-menu .mega-menu-container .mega-menu-content .mb-list > li.mb-item > a:hover {
        background: #000;
        color: #fff;
    }
}

.mega-menu-container,
.main-menu .sub-menu,
.mobile-submenu,
.menu-chevron,
.mobile-menu-toggle svg {
    will-change: transform, opacity;
}

.mega-menu-container::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
}

.menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    -o-object-fit: contain;
    object-fit: contain;
}

.menu-icon img,
.menu-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
}

@media screen and (max-width: 992px) {
    .menu-icon {
        width: 30px !important;
    }

    .menu-icon img,
    .menu-icon svg {
        width: 30px !important;
    }
}

.border-gradient-blue {
    -o-border-image: linear-gradient(90deg, rgba(89, 198, 209, 0.64) 0%, #59C6D1 50%, rgba(89, 198, 209, 0.64) 100%);
    border-image: linear-gradient(90deg, rgba(89, 198, 209, 0.64) 0%, #59C6D1 50%, rgba(89, 198, 209, 0.64) 100%);
    border-image-slice: 1;
}

.border-grad-blutrans {
    border-image-source: linear-gradient(270deg, rgba(89, 198, 209, 0) 0%, #59C6D1 50%, rgba(89, 198, 209, 0) 100%);
    border-image-slice: 2;
}

.border-gradient-blue-green {
    border-image-source: linear-gradient(90deg, rgba(89, 198, 209, 0) 0%, #59C6D1 50%, rgba(89, 198, 209, 0) 100%);
    border-image-slice: 1;
}

.border-gradient-gray {
    border-image-source: linear-gradient(90deg, rgba(226, 229, 237, 0) 0%, #E2E5ED 50%, rgba(226, 229, 237, 0) 100%);
    border-image-slice: 1;
}

#menu-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 160px;
    row-gap: 16px;
    margin-top: 16px;
}

@media (max-width: 984px) {
    #menu-footer {
        height: 300px;
    }
}

#menu-footer .menu-item {
    font-size: 14px;
}

#menu-footer .menu-item::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
    width: 1rem;
    height: 2px;
    background-color: #F5C181;
}

.footer-mask {
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: radial-gradient(47.55% 77.69% at 50% 110.19%, rgba(0, 49, 156, 0.24) 0%, rgba(0, 49, 156, 0) 100%);
}

@media (max-width: 1024px) {
    .footer-mask {
        border-image-source: radial-gradient(97.55% 77.69% at 50% 110.19%, rgba(0, 49, 156, 0.24) 0%, rgba(0, 49, 156, 0) 100%);
    }
}

.post-content:not(.shortcode-section *) {
    /* // Bloom/Ripple animation */
}

.post-content:not(.shortcode-section *) > :not(.shortcode-section), .post-content:not(.shortcode-section *) :not(.shortcode-section):not(.shortcode-section *) {
    color: #556070;
    font-family: "IranSansX";
}

.post-content:not(.shortcode-section *) h1:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h2:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h3:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h4:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h5:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h6:not(.shortcode-section *) {
    color: #59C6D1 !important;
    font-family: "peyda" !important;
    font-weight: 600 !important;
}

.post-content:not(.shortcode-section *) h1:not(.shortcode-section *) strong,
.post-content:not(.shortcode-section *) h2:not(.shortcode-section *) strong,
.post-content:not(.shortcode-section *) h3:not(.shortcode-section *) strong,
.post-content:not(.shortcode-section *) h4:not(.shortcode-section *) strong,
.post-content:not(.shortcode-section *) h5:not(.shortcode-section *) strong,
.post-content:not(.shortcode-section *) h6:not(.shortcode-section *) strong {
    color: #59C6D1 !important;
}

.post-content:not(.shortcode-section *) p a:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h2 a:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h3 a:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h4 a:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h5 a:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h6 > a:not(.shortcode-section *) {
    color: #59C6D1 !important;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
}

.post-content:not(.shortcode-section *) a strong:not(.shortcode-section *) {
    color: #59C6D1 !important;
}

.post-content:not(.shortcode-section *) p a::before:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h2 a::before:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h3 a::before:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h4 a::before:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h5 a::before:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h6 > a::before:not(.shortcode-section *) {
    content: "";
    position: absolute;
    bottom: 4px;
    right: 0;
    width: 100%;
    height: 1px;
    height: 1px;
}

.post-content:not(.shortcode-section *) p a:hover:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h2 a:hover:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h3 a:hover:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h4 a:hover:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h5 a:hover:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h6 > a:hover:not(.shortcode-section *) {
    color: rgb(var(--color-secondary));
}

.post-content:not(.shortcode-section *) p a:hover::after:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h2 a:hover::after:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h3 a:hover::after:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h4 a:hover::after:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h5 a:hover::after:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h6 > a:hover::after:not(.shortcode-section *) {
    width: 100%;
}

.post-content:not(.shortcode-section *) .social-container.show-social:not(.shortcode-section *) {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    right: calc(100% + 10px);
    min-width: 200px;
    z-index: 1;
}

.post-content:not(.shortcode-section *) .blog-img-container:not(.shortcode-section *) {
    border-radius: 10px;
}

.post-content:not(.shortcode-section *) .blog-img-container:not(.shortcode-section *) img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: auto;
    display: block;
    border-radius: 10px;
}

.post-content:not(.shortcode-section *) img:not(.shortcode-section *) {
    border-radius: 10px;
    margin: 20px auto 20px auto;
}

.post-content:not(.shortcode-section *) h1:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h2:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h3:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h4:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h5:not(.shortcode-section *),
.post-content:not(.shortcode-section *) h6:not(.shortcode-section *) {
    color: #222;
}

.post-content:not(.shortcode-section *) p:empty:not(.shortcode-section *) {
    display: none;
}

.post-content:not(.shortcode-section *) h1:not(.shortcode-section *) {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.125rem);
    /* Mobile: 24px, Tablet: 34px, Desktop: 34px */
    font-weight: 700;
    /* Bold */
    margin-bottom: 10px;
}

.post-content:not(.shortcode-section *) h2:not(.shortcode-section *) {
    font-size: clamp(1.125rem, 1.5vw, 1.875rem);
    /* Mobile: 18px, Tablet: 24px, Desktop: 30px */
    font-weight: 700;
    /* Bold */
}

.post-content:not(.shortcode-section *) h2:not(.shortcode-section *):not(:first-of-type) {
    margin-bottom: 10px;
    margin-top: 40px;
}

.post-content:not(.shortcode-section *) h2:not(.shortcode-section *):first-of-type {
    margin-bottom: 10px;
}

.post-content:not(.shortcode-section *) h3:not(.shortcode-section *) {
    font-size: clamp(1.125rem, 1.2vw, 1.5rem);
    /* Mobile: 18px, Tablet: 20px, Desktop: 24px */
    font-weight: 700;
    /* Bold */
    margin-bottom: 10px;
}

.post-content:not(.shortcode-section *) h4:not(.shortcode-section *) {
    font-size: clamp(1rem, 1.1vw, 1.25rem);
    /* Mobile: 16px, Tablet: 18px, Desktop: 20px */
    font-weight: 700;
    /* Bold */
    margin-bottom: 10px;
}

.post-content:not(.shortcode-section *) h5:not(.shortcode-section *) {
    font-size: clamp(1rem, 1vw, 1.125rem);
    /* Mobile: 16px, Tablet: 16px, Desktop: 18px */
    font-weight: 700;
    /* Bold */
    margin-bottom: 10px;
}

.post-content:not(.shortcode-section *) h6:not(.shortcode-section *) {
    font-size: clamp(1rem, 0.9vw, 1rem);
    /* Mobile: 16px, Tablet: 16px, Desktop: 16px */
    font-weight: 700;
    /* Bold */
    margin-bottom: 10px;
}

.post-content:not(.shortcode-section *) p:not(.shortcode-section *) {
    font-size: clamp(14px, 1vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 37px;
    text-align: justify;
    margin-bottom: 25px;
    word-spacing: -3px;
}

.post-content:not(.shortcode-section *) img:not(.shortcode-section *) {
    margin: 20px auto;
}

.post-content:not(.shortcode-section *) li:not(.shortcode-section *) {
    position: relative;
    margin: 5px 0;
    color: rgb(var(--color-darkest));
    font-size: clamp(14px, 1vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 37px;
    text-align: justify;
}

.post-content:not(.shortcode-section *) ol:not(.shortcode-section *) {
    position: relative;
    list-style-type: -moz-ethiopic-numeric;
    padding-right: 1.25rem;
}

.post-content:not(.shortcode-section *) ul:not(.shortcode-section *) {
    position: relative;
    list-style-type: disc;
    list-style-position: outside;
    padding: 0;
    padding-right: 1.5rem;
    margin: 1rem 0;
}

.post-content:not(.shortcode-section *) .wp-block-column:not(.shortcode-section *) {
    padding: 10px;
}

.post-content:not(.shortcode-section *) .blog-img-container:not(.shortcode-section *) {
    border-radius: 10px;
}

.post-content:not(.shortcode-section *) .squares-left:not(.shortcode-section *),
.post-content:not(.shortcode-section *) .squares-right:not(.shortcode-section *),
.post-content:not(.shortcode-section *) .squares-bottom:not(.shortcode-section *) {
    width: 100vw;
}

.post-content:not(.shortcode-section *) .swiper-custom-pagination .swiper-pagination-bullet {
    transition: all 0.5s;
}

.post-content:not(.shortcode-section *) .swiper-custom-pagination .swiper-pagination-bullet-active {
    border-radius: 5rem;
    width: 2rem;
    background: #000;
}

.post-content:not(.shortcode-section *) .search-results-box .search-item > a,
.post-content:not(.shortcode-section *) .mobile-search-results-box .search-item > a {
    background-color: #F3F8FD;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
    font-size: 14px;
}

.post-content:not(.shortcode-section *) .search-results-box .search-item > a img,
.post-content:not(.shortcode-section *) .mobile-search-results-box .search-item > a img {
    width: 50px;
    height: 50px;
}

.post-content:not(.shortcode-section *) .qty[type=number]::-webkit-inner-spin-button,
.post-content:not(.shortcode-section *) .qty[type=number]::-webkit-outer-spin-button,
.post-content:not(.shortcode-section *) .single-qty[type=number]::-webkit-inner-spin-button,
.post-content:not(.shortcode-section *) .single-qty[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.post-content:not(.shortcode-section *) .dot-loader {
    width: 6px;
    height: 6px;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
    0% {
        box-shadow: 9px 0 #a7c6ff, -9px 0 #3276f8;
        background: #a7c6ff;
    }
    33% {
        box-shadow: 9px 0 #a7c6ff, -9px 0 #3276f8;
        background: #3276f8;
    }
    66% {
        box-shadow: 9px 0 #3276f8, -9px 0 #a7c6ff;
        background: #3276f8;
    }
    100% {
        box-shadow: 9px 0 #3276f8, -9px 0 #a7c6ff;
        background: #a7c6ff;
    }
}

.post-content:not(.shortcode-section *) .spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #00319c;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.post-content:not(.shortcode-section *) .pulse-loader {
    width: 40px;
    aspect-ratio: 4;
    --_g: no-repeat radial-gradient(circle closest-side, #ffffff 90%, #0000);
    background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
    background-size: 33.3333333333% 100%;
    animation: l7 1s infinite linear;
}

@keyframes l7 {
    33% {
        background-size: 33.3333333333% 0%, 33.3333333333% 100%, 33.3333333333% 100%;
    }
    50% {
        background-size: 33.3333333333% 100%, 33.3333333333% 0%, 33.3333333333% 100%;
    }
    66% {
        background-size: 33.3333333333% 100%, 33.3333333333% 100%, 33.3333333333% 0%;
    }
}

.post-content:not(.shortcode-section *) .page-numbers {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
    color: #59C6D1;
    background: white;
    border: 1px solid #cdf1f5;
}

.post-content:not(.shortcode-section *) .page-numbers:hover {
    background-color: #e3f4f6;
}

.post-content:not(.shortcode-section *) .page-numbers.current {
    background-color: #59C6D1;
    color: white;
}

.post-content:not(.shortcode-section *) .page-numbers.next svg, .post-content:not(.shortcode-section *) .page-numbers.prev svg {
    color: #59C6D1;
    fill: #59C6D1;
    stroke: #59C6D1;
}

@media (max-width: 1248px) {
    .post-content:not(.shortcode-section *) .page-numbers {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
}

.post-content:not(.shortcode-section *) .line-highlight {
    position: relative;
}

.post-content:not(.shortcode-section *) .line-highlight::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -0.9rem;
    background: #59C6D1;
    height: 2px;
    width: 100%;
}

.post-content:not(.shortcode-section *) .shdow-box-green {
    transition: all 0.3 ease;
}

.post-content:not(.shortcode-section *) .shdow-box-green:hover {
    box-shadow: 0px 27px 55.6px -28px rgba(89, 198, 209, 0.2509803922);
}

.post-content:not(.shortcode-section *) .box-shadow-card {
    transition: all 0.3s ease;
}

.post-content:not(.shortcode-section *) .box-shadow-card:hover {
    box-shadow: 0px 40px 28px -34px rgba(89, 198, 209, 0.3019607843);
}

.post-content:not(.shortcode-section *) .box-shadow-card:hover .svg-holder svg {
    stroke: #59C6D1;
    stroke-width: 0.6px !important;
}

.post-content:not(.shortcode-section *) .box-shadow-card:hover .svg-holder-line svg path {
    stroke: #59C6D1;
}

.post-content:not(.shortcode-section *) .btn-banner {
    position: relative;
    border-radius: 5px;
    background: transparent;
    z-index: 0;
    overflow: hidden;
}

.post-content:not(.shortcode-section *) .btn-banner:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(102.22deg, rgba(255, 255, 255, 0.37) -0.32%, rgba(255, 255, 255, 0) 39.45%, rgba(255, 255, 255, 0.37) 84.91%);
    z-index: -1;
    border-radius: inherit;
}

.post-content:not(.shortcode-section *) .btn-banner:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(255, 255, 255, 0.26);
    z-index: -1;
    border-radius: inherit;
}

@keyframes bloom {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 255, 255, 0.5);
    }
}

.post-content:not(.shortcode-section *) .bloom-animation {
    animation: bloom 2s ease-in-out infinite;
}

b,
strong {
    font-weight: bolder !important;
}

.description-content:not(.shortcode-section) > :not(.shortcode-section), .description-content:not(.shortcode-section) :not(.shortcode-section):not(.shortcode-section *) {
    font-size: 16px;
    font-weight: 400;
    color: #556070;
    line-height: 40px;
    /*padding-right: 0.5rem;*/
}

.description-content:not(.shortcode-section) ul:not(.shortcode-section *) {
    list-style-type: disc;
    list-style-position: inside;
}

.description-content:not(.shortcode-section) ul:not(.shortcode-section *) li:not(.shortcode-section *) {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.description-content:not(.shortcode-section) p:not(.shortcode-section *) {
    font-size: 16px;
    font-weight: 400;
    color: #556070;
    line-height: 40px;
    word-spacing: -3px;
}

.description-content:not(.shortcode-section) p:not(.shortcode-section *) img {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.description-content:not(.shortcode-section) a:not(.shortcode-section *) {
    color: #2f97bf !important;
}

.description-content:not(.shortcode-section) a:not(.shortcode-section *) strong {
    color: #2f97bf !important;
}

.description-content:not(.shortcode-section) a:not(.shortcode-section *):hover {
    color: #59C6D1;
}

.description-content:not(.shortcode-section) span:not(.shortcode-section *) {
    font-size: 16px;
    font-weight: 400;
    color: #556070;
    line-height: 28px;
}

.description-content:not(.shortcode-section) h2:not(.shortcode-section *),
.description-content:not(.shortcode-section) h3:not(.shortcode-section *),
.description-content:not(.shortcode-section) h4:not(.shortcode-section *),
.description-content:not(.shortcode-section) h5:not(.shortcode-section *),
.description-content:not(.shortcode-section) h6:not(.shortcode-section *) {
    color: #59C6D1 !important;
    font-weight: 700 !important;
    margin: 1rem 0 0.5rem 0 !important;
    font-family: "peyda" !important;
    text-align: start;
}

.description-content:not(.shortcode-section) h2:not(.shortcode-section *) {
    font-size: 28px !important;
}

.description-content:not(.shortcode-section) h3:not(.shortcode-section *) {
    font-size: 24px !important;
}

.description-content:not(.shortcode-section) h4:not(.shortcode-section *) {
    font-size: 20px !important;
}

.description-content:not(.shortcode-section) h5:not(.shortcode-section *) {
    font-size: 19px !important;
}

.description-content:not(.shortcode-section) h6:not(.shortcode-section *) {
    font-size: 18px !important;
}

.description-content:not(.shortcode-section) img:not(.shortcode-section *) {
    margin: 1.5rem 0 !important;
    border-radius: 10px !important;
}

@media (max-width: 769px) {
    .description-content:not(.shortcode-section) p:not(.shortcode-section *) {
        font-size: 14px;
        line-height: 32px;
    }

    .description-content:not(.shortcode-section) h2:not(.shortcode-section *),
    .description-content:not(.shortcode-section) h3:not(.shortcode-section *),
    .description-content:not(.shortcode-section) h4:not(.shortcode-section *),
    .description-content:not(.shortcode-section) h5:not(.shortcode-section *),
    .description-content:not(.shortcode-section) h6:not(.shortcode-section *) {
        line-height: 1.4;
    }

    .description-content:not(.shortcode-section) h2:not(.shortcode-section *) {
        font-size: 26px;
    }

    .description-content:not(.shortcode-section) h3:not(.shortcode-section *) {
        font-size: 22px;
    }

    .description-content:not(.shortcode-section) h4:not(.shortcode-section *) {
        font-size: 20px;
    }

    .description-content:not(.shortcode-section) h5:not(.shortcode-section *) {
        font-size: 18px;
    }

    .description-content:not(.shortcode-section) h6:not(.shortcode-section *) {
        font-size: 17px;
    }
}

.shortcode-section {
    all: revert;
    box-sizing: border-box;
}

.shortcode-section-a a {
    color: #0c4a6d;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
}

.shortcode-section-a a strong {
    color: #0c4a6d;
    font-weight: 700;
}

.shortcode-section-a a strong:hover {
    color: #58c6d1;
}

.shortcode-section-a a:hover {
    color: #58c6d1;
}

.image-center-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-center-wrapper img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .image-center-wrapper img {
        max-width: 100%;
    }
}

.box-advantages {
    position: relative;
}

.box-advantages:not(:last-child)::after {
    content: "";
    width: 2px;
    height: 53px;
    background-color: rgba(148, 148, 148, 0.2196078431);
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 993px) {
    .box-advantages::after {
        display: none;
    }

    /* Show line only between pairs in 2-column grid */
    .box-advantages:nth-child(2n+1):not(:last-child)::after {
        display: block;
    }
}

/* Table styling without additional classes */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #E2E5ED;
    direction: rtl;
    border-radius: 10px;
    overflow: hidden;
    margin: 1.5rem 0;
    border-top: 2px solid rgba(89, 198, 209, 0.3490196078);
    border-bottom: 2px solid #E2E5ED;
    /* Height column styling */
    /* Responsive styles */
}

table thead tr {
    background-color: rgba(89, 198, 209, 0.1490196078);
    border: 2px solid rgba(89, 198, 209, 0.3490196078);
}

table thead th {
    background-color: rgba(89, 198, 209, 0.1490196078);
    color: #1e3a8a;
    font-weight: 700;
    padding: 0.88rem 0.5rem;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    border: 2px solid rgba(89, 198, 209, 0.3490196078) !important;
}

table thead th strong {
    font-weight: inherit;
    color: inherit;
}

table thead th span {
    display: block;
    font-size: 11px;
    color: #64748b;
    font-weight: normal;
}

table tbody tr {
    background-color: #FFFFFF;
    border: 2px solid #E2E5ED;
}

table tbody td {
    background-color: #FFFFFF;
    padding: 0.7rem 0.5rem;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    line-height: 22px;
    border: 2px solid #E2E5ED !important;
}

table td:nth-child(3) {
    color: #475569;
}

@media screen and (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        max-width: -moz-fit-content;
        max-width: fit-content;
        margin: 0 auto;
        max-height: 500px;
        overflow-y: auto;
        /* Custom scrollbar styling */
        /* For Firefox */
        scrollbar-width: thin;
        scrollbar-color: #b0b9d1 #f1f1f1;
    }

    table::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    table::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    table::-webkit-scrollbar-thumb {
        background: #b0b9d1;
        border-radius: 4px;
    }

    table::-webkit-scrollbar-thumb:hover {
        background: #8896bd;
    }

    table td {
        padding: 12px 15px;
        text-align: center;
        font-size: 16px;
        color: #334155;
        line-height: 22px;
    }
}

.wp-block-table thead {
    border-bottom: 0px !important;
}

.table-features table {
    width: 100%;
    border-collapse: collapse;
    background-color: #E2E5ED;
    direction: rtl;
    border-radius: 20px;
    border: 1px solid #E2E5ED !important;
    overflow: hidden;
    margin: 1.5rem 0;
    /* Remove duplicate borders */
    /* Remove inner vertical borders for first/last columns */
    /* Height column styling */
    /* Responsive styles */
}

.table-features table th {
    background-color: rgba(89, 198, 209, 0.3490196078);
    color: #0C4A6D;
    font-weight: 700;
    padding: 0.88rem 0.5rem;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    border: 1px solid rgba(89, 198, 209, 0.3490196078) !important;
}

.table-features table th strong {
    font-weight: inherit;
    color: inherit;
}

.table-features table th span {
    display: block;
    font-size: 12px;
    color: #64748b;
}

.table-features table td {
    padding: 0.7rem 0.5rem;
    text-align: center;
    border: 1px solid #E2E5ED !important;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    line-height: 22px;
}

.table-features table tr:first-child th {
    border-top: none;
}

.table-features table td:first-child,
.table-features table th:first-child {
    border-right: none;
}

.table-features table td:last-child,
.table-features table th:last-child {
    border-left: none;
}

.table-features table td:nth-child(3) {
    color: #475569;
}

.table-features table tr {
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    .table-features table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        max-width: -moz-fit-content;
        max-width: fit-content;
        margin: 0 auto;
        max-height: 500px;
        /* Set your desired max height */
        overflow-y: auto;
        /* Custom scrollbar styling */
        /* For Firefox */
        scrollbar-width: thin;
        scrollbar-color: #b0b9d1 #f1f1f1;
    }

    .table-features table::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    .table-features table::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .table-features table::-webkit-scrollbar-thumb {
        background: #b0b9d1;
        border-radius: 4px;
    }

    .table-features table::-webkit-scrollbar-thumb:hover {
        background: #8896bd;
    }
}

#single-product-content hr,
#single-blog-content hr {
    color: #d4d4d4 !important;
}

/* Assigning Fonts */
html[lang=fa-IR]:root {
    font-family: "IranSansX", "AzarMehrFD", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

html[lang=en-US]:root {
    font-family: "IranSansX", "AzarMehrEN", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

/*# sourceMappingURL=main.css.map */