@import "../../../common/css/plugins.css";
@import "../../../common/css/common.css";

:root {
    --hx-card-border-color: var(--hx-gray-150);
    --hx-card-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    --hx-footer-bg: var(--hx-gray-900);
    --hx-videos-bg: var(--hx-gray-950);
    --border-radius-sm: 0.188rem;
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 1rem;
    --hx-border-radius-xs: 2px;
    --hx-border-radius-sm: 3px;
    --hx-border-radius: 4px;
    --hx-border-radius-md: 6px;
    --hx-border-radius-lg: 8px;
    --hx-border-radius-xl: 12px;
    --hx-text-main: var(--hx-gray-900);
    --hx-text-muted: var(--hx-gray-500);
    --hx-text-subtle: var(--hx-gray-400);
    --hx-text-faint: var(--hx-gray-300);
    --hx-color-white: #ffffff;
    --hx-green-500: #22c55e;
    --hx-input-border-color: #e2e8f0;
    --hx-error-color: #be1622;
    --hx-online-color: #85cc84;
    --hx-border-color :var(--hx-gray-150);
    --hx-placeholder-color: #9AA2AA;
    --primary-color: var(--hx-theme-color);
    --accent-color: var(--hx-theme-color);
    --thm-black: var(--hx-theme-color);
    --thm-dark-black: var(--hx-theme-color);
    --accent-secondary-color: #47A2DB;
    --secondary-color: #FAFAFB;
    --text-color: #121212;
    --yellow-color: #f9b12e;
    --red-color: #be1622;
    --white-color: #FFFFFF;
    --divider-color: #E6E6EB;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: var(--hx-font-primary);
    --accent-font: var(--hx-font-secondary);
    --thm-primary: #f9b12e;
    --thm-primary-rgb: 23, 65, 138;
    --thm-secondary: #9cb7bd;
    --thm-secondary-rgb: 156, 183, 189;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-gray: #838e91;
    --thm-gray-rgb: 131, 142, 145;
    --thm-border: #e1e8ea;
    --thm-border-rgb: 225, 232, 234;
    --thm-black-rgb: 35, 64, 146;
    --thm-dark-black-rgb: 1, 49, 60;
    --thm-light-bg: #f3f6f7;
    --thm-light-bg-rgb: 243, 246, 247;
    --thm-font: var(--hx-font-secondary);
    --thm-special-font: var(--hx-font-tertiary);
    --scroll-behavior: auto;
}
html {
    scroll-behavior: auto !important;
}

body {
    background-color: var(--hx-color-white);
    color: var(--hx-text-main);
    font-family: var(--hx-font-primary);
    font-size: var(--hx-fs-base);
    line-height: var(--hx-lh-base);
    overflow-x: hidden !important;
}

body, div, p, span, a, h1, h2, h3, h4, h5, h6, article, aside, section, header, footer, main, nav, ul, ol, li, th, td, label, button, b, strong, small {
    overflow-wrap: break-word;
    word-break: break-word;
}

img {
    color: transparent;
}

a {
    color: var(--hx-text-main);
    -moz-transition: all .2s ease-in-out 0s;
    -webkit-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
    text-decoration: none;
    outline: none !important;
}

a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

.p0 {
    padding: 0 !important;
}

.m0 {
    margin: 0 !important;
}

.m-r-0 {
    margin-right: 0 !important;
}

.m-l-5 {
    margin-left: 5px !important;
}

.m-l-15 {
    margin-left: 15px !important;
}

.m-r-5 {
    margin-right: 5px !important;
}

.m-r-15 {
    margin-right: 15px !important;
}

.m-b-15 {
    margin-bottom: 15px !important;
}

.m-b-20 {
    margin-bottom: 20px !important;
}

.m-b-30 {
    margin-bottom: 30px !important;
}

.width20 {
    width: 20% !important;
}

.width25 {
    width: 25% !important;
}

.width100 {
    width: 100% !important;
}

.display-block {
    display: block !important;
}

.display-inline-block {
    display: inline-block !important;
}

.position-relative {
    position: relative !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: var(--hx-font-secondary);
}

.section-mid-title .title {
    font-family: var(--hx-font-secondary);
}

.section .section-content .title {
    font-family: var(--hx-font-secondary);
}

.section .section-head .title {
    font-family: var(--hx-font-primary);
}

.post-content .post-summary h2 {
    font-family: var(--hx-font-secondary);
}

.form-input {
    display: block;
    width: 100%;
    border: 1px solid var(--hx-input-border-color);
    outline: none !important;
    color: var(--hx-gray-850);
    font-size: var(--hx-fs-base);
    line-height: var(--hx-lh-base);
    padding: 0.75rem 1rem;
    box-shadow: none !important;
    border-radius: var(--border-radius);
}

.form-control::placeholder {
    color: var(--hx-placeholder-color);
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: var(--hx-placeholder-color);
}

.form-control::-ms-input-placeholder {
    color: var(--hx-placeholder-color);
}

.form-textarea {
    display: block;
    width: 100%;
    border: 1px solid var(--hx-input-border-color);
    outline: none !important;
    color: var(--hx-gray-850);
    font-size: var(--hx-fs-base);
    line-height: var(--hx-lh-base);
    padding: 0.75rem 1rem;
    box-shadow: none !important;
    border-radius: var(--border-radius);
    height: 120px;
    min-height: 120px;
}

.form-textarea:focus {
    border-color: var(--hx-theme-color);
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.625rem 1.25rem;
    border-radius: var(--border-radius);
    outline: 0 !important;
    box-shadow: none !important;
    transition: all 0.2s ease-in-out;
    font-size: var(--hx-fs-base);
    line-height: var(--hx-lh-base);
    font-weight: 400;
    color: var(--hx-color-white);
}

.btn:hover,
.btn:active,
.btn:focus {
    color: var(--hx-color-white) !important;
}

.btn-custom {
    background-color: var(--hx-theme-color) !important;
    border-color: var(--hx-theme-color) !important;
    color: var(--hx-color-white) !important;
}

.btn-custom:hover, .btn-custom:focus, .btn-custom:active {
    color: var(--hx-color-white) !important;
    background-color: color-mix(in srgb, var(--hx-theme-color), black 10%) !important;
    box-shadow: 0 8px 12px -3px rgba(0, 0, 0, 0.1) !important;
}

.btn-block {
    width: 100% !important;
    padding: 0.938rem 1.375rem;
    border-radius: var(--border-radius);
}

.btn-xs {
    padding: 0.35rem 0.65rem;
    font-size: var(--hx-fs-sm);
    line-height: var(--hx-lh-sm);
}

.btn-sm {
    padding: 0.5rem 0.875rem;
    font-size: var(--hx-fs-md);
    line-height: var(--hx-lh-md);
}

.btn-lg {
    padding: 0.75rem 1.375rem;
}

.btn-link {
    padding: 0;
    margin: 0;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none;
}

.caret::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.caret-right::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid;
}

.img-fluid {
    width: 100%;
    max-width: 100%;
    display: block;
    height: auto;
}

.img-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    overflow: hidden;
}

.img-container .img-cover {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tbl-container {
    display: table;
    width: 100%;
    max-width: 100%;
}

.tbl-cell {
    display: table-cell;
    vertical-align: top;
    position: relative;
}

.ul-list {
    margin: 0;
    padding: 0;
}

.ul-list li {
    list-style: none;
}

.breadcrumb {
    font-size: var(--hx-fs-sm);
    line-height: var(--hx-lh-sm);
    --bs-breadcrumb-item-padding-x: 0.3rem !important;
}

.breadcrumb a {
    color: var(--hx-text-muted);
}

.breadcrumb-item:hover, .breadcrumb-item.active {
    color: var(--hx-gray-800);
}

.font-weight-normal {
    font-weight: normal !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.display-flex {
    display: flex !important;
}

.tooltip {
    font-size: var(--hx-fs-sm);
    line-height: var(--hx-lh-sm);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.mega-menu-wrapper .navbar-nav .nav-link:hover,
.mega-menu-wrapper .navbar-nav .nav-item.dropdown:hover .nav-link {
    color: var(--hx-theme-color);
    border-color: var(--hx-theme-color);
}

.mega-menu-wrapper .megamenu {
    border-radius: 0 0 var(--border-radius) var(--border-radius) !important;
}

.dropdown .dropdown-menu {
    border-radius: var(--hx-border-radius-lg);
}

#mega-menu-wrapper .dropdown .dropdown-menu {
    border-radius: 0 0 var(--border-radius) var(--border-radius) !important;
}

@media (min-width: 992px) {
    #mega-menu-wrapper .navbar {
        align-items: stretch;
    }

    #mega-menu-wrapper .navbar-collapse {
        align-items: stretch;
        height: 100%;
    }

    #mega-menu-wrapper .nav-item {
        display: flex;
        align-items: center;
    }
}

.dropdown .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
    font-size: var(--hx-fs-base);
    line-height: var(--hx-lh-base);
    border-radius: var(--border-radius-sm);
}

.mega-menu-wrapper .post-meta a, .mega-menu-wrapper .post-meta span {
    font-size: var(--hx-fs-tiny) !important;
}

.nav-dropdown-menu > li:hover > .dropdown-menu {
    display: block;
}

.dropdown-item:focus, .dropdown-item:hover, .dropdown-item:active, .dropdown-item.active {
    color: var(--hx-gray-900) !important;
    background-color: var(--hx-gray-100) !important;
}

.nav-dropdown-menu > li {
    position: relative;
}

.nav-dropdown-menu .dropdown-sub {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
}

.nav-dropdown-menu .caret-right {
    position: absolute;
    right: 10px;
    top: 10px;
}

.dropdown-languages .dropdown-menu {
    left: -34px !important;
    max-height: 400px;
    overflow-y: auto;
}

.overlay-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .6);
    top: 0;
    left: 0;
    z-index: 1001;
    animation-name: fadeIn;
}

.title-index {
    text-align: center;
    height: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
    color: transparent;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
}


.badge-category {
    padding: 0 12px;
    font-size: var(--hx-fs-xs);
    line-height: 2em;
    font-weight: normal;
    border-radius: 4px;
    white-space: nowrap;
    word-wrap: normal;
    word-break: normal;
    z-index: 2;
    transition: 0.3s;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

.badge-category:hover {
    filter: brightness(0.92);
}

.col-sidebar {
    padding-left: 10px;
}

.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin: 0;
}

.post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.188rem;
}

.post-meta .meta-item a, .post-meta .meta-item span {
    font-size: var(--hx-fs-xs);
    color: var(--hx-text-muted);
    white-space: nowrap;
}

.post-meta .meta-item .hx-icon {
    color: var(--hx-gray-450);
    width: 12px;
    height: 12px;
}

.lazyload,
.lazyloading {
    opacity: 0;
}

.lazyloaded {
    opacity: 1;
    transition: opacity 300ms;
}

img.lazyload:not([src]) {
    visibility: hidden;
}

/*--------------------------------------------------------------
# Index
--------------------------------------------------------------*/
.section {
    display: block;
    margin-bottom: 45px;
}

.section .section-title {
    margin-bottom: 30px;
    position: relative;
    border-bottom: 2px solid var(--hx-gray-150);
}

.section .section-title:after {
    content: '';
    width: 60px;
    height: 2px;
    display: block;
    position: relative;
    bottom: -2px;
}

.section .section-title .title {
    font-size: var(--hx-fs-title-lg);
    line-height: var(--hx-lh-title-lg);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.section .section-title .view-all {
    position: relative;
    font-weight: 600;
    font-size: var(--hx-fs-sm);
    line-height: var(--hx-lh-sm);
}

/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/
.featured-section {
    --fs-bg: var(--hx-gray-25);
    --fs-gap: 4px;
    --fs-gap-news: 20px;
    --fs-height-desktop: 520px;
    --fs-overlay-gradient: linear-gradient(
            to top,
            rgb(0 0 0 / 60%) 0%,
            rgb(0 0 0 / 42%) 18%,
            rgb(0 0 0 / 22%) 36%,
            rgb(0 0 0 / 8%) 55%,
            rgb(0 0 0 / 0%) 75%
    );

    --fs-transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 !important;
    color: var(--hx-gray-50);
}

.featured-section .fs-grid-wrapper {
    display: grid;
    gap: var(--fs-gap);
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:"main""sub-top""sub-bottom";
}

@media (min-width: 992px) {
    .featured-section .fs-grid-wrapper {
        height: var(--fs-height-desktop);
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas:"main sub-top""main sub-bottom";
    }
}

.featured-section .area-main {
    grid-area: main;
    height: 100%;
    min-height: 0;
}

.featured-section .area-sub-top {
    grid-area: sub-top;
}

.featured-section .area-sub-bottom {
    grid-area: sub-bottom;
}

@media (max-width: 991.98px) {
    .featured-section > .container-xl {
        padding: 0;
    }

    .featured-section .area-main {
        width: 100%;
        aspect-ratio: 3/2;
        min-height: 320px;
    }

    .featured-section .area-sub-top {
        width: 100%;
        aspect-ratio: 2/1;
    }

    .featured-section .area-sub-bottom {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .featured-section {
        padding: 1rem 0;
    }

    .featured-section .area-main {
        min-height: 280px;
    }
}

.featured-section .fs-grid-item {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.featured-section .sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fs-gap);
    width: 100%;
    height: 100%;
}

@media (max-width: 991.98px) {
    .featured-section .sub-grid {
        aspect-ratio: 2/1;
    }
}

.featured-section .fs-card {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--hx-gray-100);
    isolation: isolate;
}

.featured-section .main-slider .fs-card {
    display: block;
    width: 100%;
    height: 100%;
}

.featured-section .fs-main-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
}

.featured-section .fs-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--fs-transition), filter 0.7s var(--fs-transition);
    display: block;
    filter: brightness(1);
    z-index: 0;
}

.featured-section .fs-card:hover .fs-img {
    transform: scale(1.03);
}

.featured-section .fs-content {
    position: absolute;
    inset: 0;
    background: var(--fs-overlay-gradient);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.15rem 1.5rem;
    z-index: 5;
    pointer-events: none;
}

.featured-section .area-main .fs-content {
    padding: 1.65rem 2rem;
}

.featured-section .fs-title a,
.featured-section .fs-meta a,
.featured-section .fs-content a {
    pointer-events: auto;
    position: relative;
    z-index: 10;
    transition: color 0.3s ease, opacity 0.3s ease;
    transform: translateZ(0);
}

.featured-section .fs-meta a {
    padding: 0.35rem 0;
}

@media (max-width: 768px) {
    .featured-section .fs-content {
        padding: 1rem;
    }

    .featured-section .area-main .fs-content {
        padding: 1.25rem;
    }
}

.featured-section .fs-title {
    color: var(--hx-gray-50);
    font-weight: 600;
    font-size: var(--hx-fs-title-lg);
    line-height: var(--hx-lh-title-lg);
    margin-top: 0.65rem;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
    pointer-events: none;
}

.featured-section .fs-title a {
    color: inherit;
    text-decoration: none;
}

.featured-section .main-slider-wrapper .fs-title {
    font-size: var(--hx-fs-title-3xl);
    line-height: var(--hx-lh-title-3xl);
}

.featured-section .fs-card-small .fs-title {
    font-size: var(--hx-fs-title-md);
    line-height: var(--hx-lh-title-md);
}


.featured-section .fs-title a:hover, .featured-section .fs-title a:active, .featured-section .fs-title a:focus {
    color: #ffffff !important;
}

.featured-section .fs-meta {
    color: var(--hx-gray-200);
    font-size: var(--hx-fs-xs);
    line-height: var(--hx-lh-xs);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.featured-section .fs-meta a,
.featured-section .fs-meta span,
.featured-section .fs-meta i {
    color: var(--hx-gray-250) !important;
    text-decoration: none;
}

.featured-section .fs-meta a:hover, .featured-section .fs-meta a:focus, .featured-section .fs-meta a:active {
    color: #ffffff !important;
}

.featured-section .swiper {
    width: 100%;
    height: 100%;
}

.featured-section .swiper-slide {
    height: 100%;
}

.featured-section .swiper-pagination-bullet {
    background: var(--hx-gray-300);
    opacity: 0.6;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 0 4px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.featured-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--hx-gray-50);
    width: 32px;
}

.featured-section .fs-nav-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
    border: none;
    opacity: 0;
    padding: 0;
    outline: none;
}

.featured-section .swiper:hover .fs-nav-btn {
    opacity: 0.9;
}

.featured-section .fs-nav-btn:hover {
    transform: scale(1.15);
    opacity: 1 !important;
}

.featured-section .fs-nav-btn svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

@media (max-width: 768px) {
    .featured-section .fs-nav-btn {
        display: none;
    }

    .featured-section .fs-grid-boxes .fs-meta {
        display: none;
    }

    .featured-section .fs-grid-boxes .fs-title {
        margin-bottom: 0;
    }
}

.featured-section .main-slider-wrapper {
    width: 100%;
    height: 100%;
}

[dir="rtl"] .featured-section {
    direction: rtl;
}

[dir="rtl"] .featured-section .fs-content {
    text-align: right;
    align-items: flex-start;
}

[dir="rtl"] .featured-section .fs-badge {
    align-self: flex-start;
}

[dir="rtl"] .featured-section .fs-nav-btn svg {
    transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Post Details Page
--------------------------------------------------------------*/
.post-content .post-title {
    font-size: var(--hx-fs-post-title);
    line-height: var(--hx-lh-post-title);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.post-content .post-summary {
    font-size: var(--hx-fs-post-summary);
    line-height: var(--hx-lh-post-summary);
    font-weight: 400;
    margin-bottom: 15px;
    font-family: var(--hx-font-content)
}

.post-details-meta .item-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--hx-gray-450);
    font-size: var(--hx-fs-sm);
    line-height: var(--hx-lh-sm);
}

.post-details-meta .item-meta-author a {
    font-weight: 600;
}

.post-details-meta .item-meta-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--hx-gray-200);
}

.post-details-meta .item-meta-counters {
    font-size: var(--hx-fs-sm);
    color: var(--hx-gray-450);
}

@media (max-width: 768px) {
    .post-details-meta .item-meta {
        font-size: var(--hx-fs-xs);
        line-height: var(--hx-lh-xs);
    }

    .post-details-meta .item-meta-counters {
        font-size: var(--hx-fs-xs);
    }

    .post-details-meta .column-gap-3 {
        column-gap: 0.75rem !important;
    }
}

.post-details-meta .item-meta-counters .hx-icon {
    width: 14px;
    height: 14px;
}

.post-content .img-description {
    display: block;
    font-size: var(--hx-fs-sm);
    line-height: var(--hx-lh-sm);
    font-style: italic;
    color: var(--hx-text-muted);
    margin-top: 5px;
}

.post-video iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}

.video-player {
    display: block;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.video-player video {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.entry-content {
    clear: both;
    display: block;
    width: 100%;
    position: relative;
    max-width: 100%;
    overflow-wrap: break-word;
    font-family: var(--hx-font-content) !important;
    font-size: var(--hx-fs-content);
    line-height: var(--hx-lh-content);
    color: var(--hx-gray-800);
}

[data-bs-theme="dark"] .entry-content {
    color: var(--hx-gray-300);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.entry-content a {
    color: var(--hx-theme-color);
}

.entry-content a:hover {
    text-decoration: underline;
}

.entry-content iframe, .entry-content img, .entry-content object {
    display: block;
    max-width: 100% !important;
}

.entry-content table {
    border-collapse: collapse;
}

.entry-content table th td {
    border: 1px solid var(--hx-text-main);
}

.entry-content th, .entry-content td {
    padding: .5rem .5rem;
}

.post-content .container-bn img {
    display: block !important;
}

.post-content .post-tags .title {
    font-size: var(--hx-fs-base);
    line-height: var(--hx-lh-base);
    font-weight: 600;
    margin: 0;
    margin-bottom: 5px;
    flex-shrink: 0;
}

.post-content .post-tags ul {
    margin: 0;
    padding: 0;
    margin-left: 20px;
    flex-wrap: wrap !important;
}

.post-content .post-tags li {
    list-style: none;
    margin-right: 5px;
    margin-bottom: 5px;
}

.post-content .post-tags ul li a {
    background-color: var(--hx-gray-75);
    border: 1px solid var(--hx-gray-100);
    color: var(--hx-gray-550);
    display: inline-block;
    font-size: var(--hx-fs-sm);
    line-height: var(--hx-lh-sm);
    padding: 7px 12px;
    text-decoration: none;
    border-radius: var(--hx-border-radius);
}

.post-content .post-tags ul li a:hover {
    color: var(--hx-color-white) !important;
}

.post-next-prev {
    display: block;
    width: 100%;
    min-height: 150px;
    margin-bottom: 30px;
    border-top: 1px solid var(--hx-gray-100);
    padding: 30px 0 15px 0
}

.post-next-prev .title {
    font-size: var(--hx-fs-base);
    line-height: var(--hx-lh-base);
    font-weight: 600;
    margin: 0 0 5px;
}

.post-next-prev .title a {
    display: block
}

.post-next-prev .left {
    border-right: 1px solid var(--hx-input-border-color);
    min-height: 60px
}

.post-next-prev .right {
    min-height: 60px
}

.post-next-prev .head-title {
    font-size: var(--hx-fs-sm);
    line-height: var(--hx-lh-sm);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.post-next-prev .left .head-title svg {
    margin-right: 8px
}

.post-next-prev .right .head-title svg {
    margin-left: 8px
}

.gallery-post-item {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.title-post-item {
    width: 100%;
    display: block;
    position: relative;
    font-size: var(--hx-fs-title-xl);
    line-height: var(--hx-lh-title-xl);
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.gallery-post-item .post-image {
    position: relative
}

.gallery-post-item .post-image .post-image-inner {
    position: relative;
}

.gallery-post-item .post-item-count {
    width: auto;
    display: inline-block;
    padding: 10px 20px;
    position: absolute;
    top: 0;
    right: 0;
    color: var(--hx-color-white);
    font-weight: 600;
    background-color: rgba(22, 22, 22, .5)
}

.ordered-list-item {
    display: block;
    width: 100%;
    margin-bottom: 3rem;
}

.ordered-list-item .post-image {
    margin-bottom: 1rem;
}

.table-of-contents {
    border: 1px solid var(--hx-gray-150);
    padding: 2rem 2.5rem;
    margin: 15px 0;
    border-radius: 3px;
}

.table-of-contents .title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.table-of-contents .title h2 {
    font-size: var(--hx-fs-title-md);
    line-height: var(--hx-lh-title-md);
    font-weight: 600;
    margin: 0 !important;
}

.table-of-contents .ul-main {
    margin: 0;
    padding: 0;
    padding-left: 5px;
}

.table-of-contents ul li {
    list-style-position: outside !important;
}

.table-of-contents ul li a {
    display: inline-block;
    font-size: var(--hx-fs-base);
    line-height: var(--hx-lh-base);
    margin-bottom: 0.5rem;
}

.container-toc .ul-toc-content-main {
    padding: 0;
    margin: 0;
}

.container-toc .ul-toc-content .li-toc-content {
    display: block;
    list-style: none !important;
}

.container-toc .ul-toc-content .li-toc-content .entry-content {
    margin-bottom: 1.5rem;
}

.container-toc .ul-toc-content .li-toc-content-main {
    margin-bottom: 2.5rem;
}

.container-toc .ul-toc-content .ul-toc-content-sub {
    padding-left: 2.5rem;
}

[dir="rtl"] .container-toc .ul-toc-content .ul-toc-content-sub {
    padding-left: 0;
    padding-right: 2.5rem;
}

.container-toc [data-title] {
    scroll-margin-top: 90px;
}

.container-toc .ul-toc-content .li-toc-content .title-post-item {
    display: list-item;
}

.container-toc .ul-toc-content-sub .li-toc-content .title-post-item {
    font-size: var(--hx-fs-title-md);
    line-height: var(--hx-lh-title-md);
    margin-bottom: 0.5rem;
}

.container-toc .ul-toc-content-sub-sub .li-toc-content .title-post-item {
    font-size: var(--hx-fs-title-sm);
    line-height: var(--hx-lh-title-sm);
    margin-bottom: 0.5rem;
}

.ul-toc-content-main li-toc-content .title-post-item::marker {
    font-size: var(--hx-fs-title-xl);
    line-height: var(--hx-lh-title-xl);
    font-weight: 600;
}

.container-toc .title-post-item {
    margin-bottom: 0.625rem;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.about-author {
    border-top: 1px solid var(--hx-gray-100);
    padding-top: 30px;
    padding-bottom: 30px;
}

.about-author .img-author {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--hx-gray-150);
}

.about-author .username {
    display: block;
    margin-bottom: 5px;
}

.about-author .description {
    color: var(--hx-gray-750);
}

.about-author .social {
    margin-top: 15px;
}

/*--------------------------------------------------------------
# Load more posts
--------------------------------------------------------------*/
.btn-load-more-posts {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    outline: none !important;
}

.btn-load-more-posts.is-loading .btn-icon-svg {
    animation: btn-spin-animation 0.8s linear infinite;
}

@keyframes btn-spin-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Section Videos
--------------------------------------------------------------*/
.section-videos {
    --sv-bg-dark: var(--hx-gray-950);
    --sv-surface-dark: var(--hx-gray-900);
    --sv-accent-color: #f43f5e;
    --sv-accent-hover: #e11d48;
    --sv-text-primary: var(--hx-gray-25);
    --sv-text-secondary: var(--hx-gray-450);
    --sv-overlay-gradient: linear-gradient(to top, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.3) 50%, rgba(9, 9, 11, 0) 100%);
    background-color: var(--sv-bg-dark);
    color: var(--sv-text-primary);
    padding: 60px 0 70px 0;
    margin: 60px 0;
}

[data-bs-theme="dark"] .section-videos {
    --sv-bg-dark: var(--hx-gray-925);
}

.section-videos .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-videos .videos-title {
    font-weight: bold;
    margin: 0;
    background: linear-gradient(to right, var(--hx-gray-25), var(--hx-gray-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-videos .video-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
    background-color: var(--sv-surface-dark);
    width: 100%;
    cursor: pointer;
}

.section-videos .main-post-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    font-size: 0;
}

.section-videos .video-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section-videos .video-card:hover img {
    transform: scale(1.08);
}

.section-videos .video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--sv-overlay-gradient);
    z-index: 1;
    pointer-events: none;
}

.section-videos .card-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 1.5rem;
    pointer-events: none;
}

.section-videos .card-content a {
    pointer-events: auto;
    position: relative;
    z-index: 11;
}

.section-videos .card-content,
.section-videos .card-content h3,
.section-videos .card-content a,
.section-videos .card-content span,
.section-videos .card-content i {
    color: var(--hx-gray-25) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.section-videos .category-tag {
    display: inline-flex;
    align-items: center;
    font-size: var(--hx-fs-xs);
    line-height: var(--hx-lh-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 12px;
    text-shadow: none;
    pointer-events: auto;
}

.section-videos .category-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 50%;
}

.section-videos .video-title {
    font-weight: 700;
    font-size: var(--hx-fs-title-2xl);
    line-height: var(--hx-lh-title-2xl);
    margin-bottom: 0.5rem;
}

.section-videos .post-meta .meta-item a,
.section-videos .post-meta .meta-item span,
.section-videos .post-meta .meta-item i {
    color: var(--hx-gray-400) !important;
}

.section-videos .post-meta .meta-item a {
    padding: 0.35rem 0;
}

.section-videos .post-meta .meta-item a:hover {
    color: var(--hx-gray-100) !important;
}

.section-videos .icon-svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section-videos .card-vertical {
    height: 540px;
}

.section-videos .card-horizontal {
    height: 258px;
}

.section-videos .card-horizontal .video-title {
    font-size: var(--hx-fs-title-lg);
    line-height: var(--hx-lh-title-lg);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-videos .view-all {
    color: var(--sv-text-secondary);
    text-decoration: none;
    font-size: var(--hx-fs-base);
    line-height: var(--hx-lh-base);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.section-videos .view-all:hover {
    color: var(--hx-gray-25);
}

@media (max-width: 991px) {
    .section-videos .card-vertical {
        height: 400px;
    }

    .section-videos .card-horizontal {
        height: 250px;
    }
}

[dir="rtl"] .section-videos .category-tag {
    padding-left: 0;
    padding-right: 12px;
}

[dir="rtl"] .section-videos .category-tag::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .section-videos .view-all svg {
    transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.sidebar-widget {
    display: block;
    margin-bottom: 35px;
}

.sidebar-widget .widget-head {
    margin-bottom: 30px;
    position: relative;
    border-bottom: 2px solid var(--hx-gray-200);
}

.sidebar-widget .widget-head:after {
    content: '';
    width: 60px;
    height: 2px;
    display: block;
    position: relative;
    bottom: -2px;
}

.sidebar-widget .widget-head .title {
    font-size: var(--hx-fs-title-lg);
    line-height: var(--hx-lh-title-lg);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.sidebar-widget .widget-body iframe,
.sidebar-widget .widget-body img,
.sidebar-widget .widget-body object {
    display: block;
    max-width: 100% !important;
}

.sidebar-widget .tag-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
    padding: 0;
    margin: 0;
    padding-bottom: 15px
}

.sidebar-widget .tag-list li {
    list-style: none;
    display: inline-flex;
    align-items: center;
}

.sidebar-widget .tag-list li a {
    background-color: var(--hx-gray-75);
    border: 1px solid var(--hx-gray-100);
    color: var(--hx-gray-550);
    display: inline-block;
    font-size: var(--hx-fs-sm);
    line-height: var(--hx-lh-sm);
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 4px;
}

.sidebar-widget .tag-list li a:hover {
    color: var(--hx-color-white) !important;
}

.sidebar-widget .a-view-results {
    font-weight: 600;
    cursor: pointer
}

.sidebar-widget .total-vote {
    text-align: center;
    font-weight: bold;
    margin-top: 19px;
    margin-bottom: 5px
}

.widget-follow {
    display: flex;
}

.widget-follow .item a {
    display: flex;
    align-items: center;
    font-size: var(--hx-fs-md);
    color: var(--hx-color-white) !important;
    padding: 0.75rem 1rem;
    margin-bottom: 10px;
    border-radius: 4px;
    gap: 10px;
    color: #fff !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

.widget-follow .item a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.widget-follow .item .color-Snapchat {
    color: #000000 !important;
}

/*--------------------------------------------------------------
# Post Items
--------------------------------------------------------------*/
.post-item {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 45px;
}

.post-item .badge-category {
    position: absolute;
    left: 1rem;
    top: 1rem;
}

.post-item .image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    background-color: var(--hx-gray-50);
    --bs-aspect-ratio: 61.9%;
    overflow: hidden;
}

.post-item-no-image .badge-category {
    position: relative;
    left: 0;
    margin-bottom: 15px;
}

.post-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-item .title {
    font-size: var(--hx-fs-title-lg);
    line-height: var(--hx-lh-title-lg);
    text-transform: none;
    font-weight: 600;
    margin-top: 10px;
}

.section-related-posts .post-item .title {
    font-size: var(--hx-fs-title-sm);
    line-height: var(--hx-lh-title-sm);
}

.post-item .title a {
    display: block;
}

.post-item .description {
    color: var(--hx-text-muted);
    font-size: var(--hx-fs-md);
    line-height: var(--hx-lh-md);
}

.post-item .post-meta {
    margin-bottom: 10px;
}

.post-item-mid .title {
    font-size: var(--hx-fs-title-sm);
    line-height: var(--hx-lh-title-sm);
}

.post-item-small .title {
    margin-top: 0;
    margin-bottom: 0.375rem;
    font-size: var(--hx-fs-title-xs);
    line-height: var(--hx-lh-title-xs);
    font-weight: 600;
}

.post-item-small .image {
    position: relative;
    width: 128px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
}

.post-item-small .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-cat-block-2 .post-item {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Category Blocks
--------------------------------------------------------------*/
.nav-category-block {
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nav-category-block .nav-item .nav-link {
    font-weight: 600;
    font-size: var(--hx-fs-sm);
    line-height: var(--hx-lh-sm);
    color: var(--hx-text-main);
    background-color: transparent !important;
    border: 0 !important;
    padding: 2px 5px;
}

.nav-category-block .dropdown .dropdown-menu .dropdown-item {
    font-size: var(--hx-fs-sm);
}

.section .section-title .view-all {
    position: relative;
    font-weight: 600;
    font-size: var(--hx-fs-sm);
    line-height: var(--hx-lh-sm);
}

/*Vertical Block*/
.section-cat-block-1 .col-post-item-vr {
    margin-bottom: 30px;
}

.section-cat-block-1 .post-item-vr {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 0 !important;
}

.section-cat-block-1 .post-item-vr .image {
    height: 340px;
}

.section-cat-block-1 .post-item-vr .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-cat-block-1 .post-item-vr .caption {
    position: absolute;
    bottom: 0;
    padding: 15px;
    display: block;
    width: 100%;
}

.section-cat-block-1 .post-item-vr .caption .title {
    font-size: var(--hx-fs-title-md);
    line-height: var(--hx-lh-title-md);
    margin-bottom: 5px;
}

.section-cat-block-1 .post-item-vr .caption .title a {
    color: var(--hx-color-white) !important;
}

.section-cat-block-1 .post-item-vr .caption .post-meta a,
.section-cat-block-1 .post-item-vr .caption .post-meta span,
.section-cat-block-1 .post-item-vr .caption .post-meta i {
    color: var(--hx-gray-250) !important;
}

.section-cat-block-1 .post-item-vr .image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.55) 70%,
            rgba(0, 0, 0, 0.85) 100%
    );
    opacity: 0.9;
    transition: opacity .3s ease-in;
    will-change: opacity;
}

.section-category .dropdown .dropdown-menu {
    left: -125px !important;
    max-height: 400px;
}

[dir="rtl"] .section-category .dropdown .dropdown-menu {
    left: 0 !important;
}

/*Slider Block*/
.section-cat-slider {
    margin-bottom: 1rem;
}

.section-cat-slider .section-content {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.category-slider-container .post-item-mid {
    margin-bottom: 0 !important;
}

/*--------------------------------------------------------------
# Section Page
--------------------------------------------------------------*/

.section-page {
    min-height: 600px;
    margin-bottom: 100px;
}

.section-page .page-title {
    font-size: var(--hx-fs-title-3xl);
    line-height: var(--hx-lh-title-3xl);
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.section-page .form-contact {
    border-radius: 2px;
}

.section-page .title-send-message {
    font-size: var(--hx-fs-title-xl);
    line-height: var(--hx-lh-title-xl);
    font-weight: 600;
    margin-bottom: 15px;
}

.section-page .form-contact textarea {
    min-height: 180px;
    resize: vertical;
}

.section-page .contact-icon {
    width: 2.375rem;
    height: 2.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hx-color-white);
    border-radius: var(--hx-border-radius);
    margin-right: 15px;
    background-color: var(--hx-theme-color);
}

.contact-map-container {
    display: block;
    width: 100%;
    margin-top: 30px;
    padding: 0 !important;
}

.contact-map-container iframe {
    display: block;
    width: 100%;
    height: 460px
}

/*--------------------------------------------------------------
# Profile
--------------------------------------------------------------*/
.body-profile-page .mega-menu-wrapper {
    --mn-margin-bottom: 0 !important;
}

.body-profile-page .mobile-header-spacer {
    margin-bottom: 0;
}

.section-profile {
    padding-top: 0 !important;
}

.section-profile .widget-head {
    margin-bottom: 20px;
}

.section-profile .widget-head .title {
    font-size: var(--hx-fs-title-md);
    line-height: var(--hx-lh-title-md);
}

.container-profile {
    padding-top: 60px !important;
}

.profile-header {
    display: block;
    width: 100%;
    height: 160px;
    padding: 0;
    position: relative;
}

.profile-header .profile-cover-image {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
}

.profile-header .profile-info-container {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.profile-header .profile-last-seen {
    display: flex;
    align-items: center;
    font-size: var(--hx-fs-xs);
    line-height: var(--hx-lh-xs);
}

.profile-header .profile-last-seen svg {
    margin-right: 8px;
    color: var(--hx-gray-400);
}

.profile-header .profile-last-seen.online svg {
    color: var(--hx-online-color);
}

.profile-details {
    margin-bottom: 60px;
}

.profile-details .description {
    color: var(--hx-gray-600);
}

.profile-details .contact-details {
    color: var(--hx-gray-500);
    font-size: var(--hx-fs-md);
    line-height: var(--hx-lh-md);
}

.profile-details .profile-email {
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid var(--hx-gray-250);
}

.profile-social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-social-links .link-social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--hx-gray-100);
    color: var(--hx-gray-600) !important;
}

.section-profile .list-followers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-height: 230px;
    overflow-x: hidden;
    overflow-y: auto;
}

.section-profile .img-follower {
    width: 2.375rem;
    height: 2.375rem;
    border: 1px solid var(--hx-gray-150);
    border-radius: 0.375rem;
    overflow: hidden;
}

.section-profile .profile-header.has-image {
    height: 360px;
}

.section-profile .profile-header.has-image .profile-info-container {
    background-color: transparent;
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7) 100%);
}

.profile-info .profile-image {
    width: 146px;
    height: 146px;
    position: relative;
    padding: 2px;
    background-color: var(--hx-color-white);
    border-radius: 50%;
    overflow: hidden;
    bottom: -2.5rem;
    border: 1px solid var(--hx-gray-200);
    flex-shrink: 0;
}

.profile-info .profile-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.profile-info .profile-username {
    margin-top: 2.5rem;
}

.profile-info .profile-username .username {
    font-size: var(--hx-fs-title-5xl);
    line-height: var(--hx-lh-title-5xl);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.section-profile .profile-header.has-image .profile-username .username {
    color: var(--hx-color-white);
}

.section-profile .profile-header.has-image .profile-last-seen {
    color: var(--hx-gray-350);
}

.container-profile-follow {
    display: inline-block;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

@media (max-width: 768px) {
    .profile-info .profile-image {
        width: 96px;
        height: 96px;
        bottom: -1.5rem;
    }

    .profile-info .profile-image img {
        width: 90px;
        height: 90px;
    }

    .profile-info .profile-username {
        margin-top: 1rem;
    }

    .container-profile-follow {
        right: auto;
        bottom: -2rem;
        left: 4rem;
    }

    .container-profile-follow .btn-follow {
        padding: 0 !important;
        width: 2.375rem;
        height: 2.375rem;
        border-radius: 50%;
    }

    .d-md-block {
        display: none !important;
    }
}

.modal-header .modal-title {
    font-size: var(--hx-fs-title-2xl);
    line-height: var(--hx-lh-title-2xl);
    position: relative;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-header .btn-close {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
    background-color: transparent !important;
    position: absolute;
    z-index: 10;
    right: 1.25rem;
    top: 1.25rem;
    font-size: 0.688rem;
}

.modal-body {
    padding: 1rem 2rem;
}

.section-account {
    width: 450px;
    height: auto;
    max-width: 100%;
    background-color: transparent;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.section-account .title {
    text-align: center;
    font-size: var(--hx-fs-title-3xl);
    line-height: var(--hx-lh-title-3xl);
    font-weight: 600;
}

.input-account {
    padding: 10px 20px;
    line-height: 24px;
}

.btn-account {
    width: 100%;
    padding: 10px 20px;
    line-height: 24px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background-color: var(--hx-footer-bg);
    color: var(--hx-gray-375);
    font-size: var(--hx-fs-base);
    line-height: var(--hx-lh-base);
    margin-top: 100px;
}

#footer .footer-inner {
    padding-top: 90px;
}

#footer .footer-widget-about {
    padding-right: 30px;
}

.footer-widget .widget-title {
    font-size: var(--hx-fs-title-lg);
    line-height: var(--hx-lh-title-lg);
    font-weight: 700;
    position: relative;
    color: var(--hx-color-white);
    margin-bottom: 30px;
}

.footer-widget .footer-logo {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
}

.footer-social-links {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-links a {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--hx-gray-750);
    color: var(--hx-color-white);
    flex-shrink: 0;
}

.footer-social-links a:hover {
    background-color: var(--hx-theme-color);
    color: var(--hx-color-white) !important;
}

.footer-social-links a svg {
    width: 1.125rem;
    height: 1.125rem;
}

.footer-widget .footer-posts .post-item-small .image {
    background-color: var(--hx-gray-800);
}

.footer-widget .footer-posts .post-item-small .title a {
    color: var(--hx-gray-75);
}

.footer-widget .newsletter .newsletter-inputs {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.footer-widget .newsletter .newsletter-inputs input {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.footer-widget .newsletter .newsletter-inputs button {
    border-radius: 0 0.25rem 0.25rem 0;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

[dir="rtl"] .footer-widget .newsletter .newsletter-inputs button {
    border-radius: 0.25rem 0 0 0.25rem;
}

.footer-widget .newsletter .form-input {
    padding: 0.688rem 1.25rem;
    box-shadow: none !important;
    background-color: var(--hx-gray-850);
    color: var(--hx-gray-100);
    border: 1px solid var(--hx-gray-825);
    border-radius: 0.25rem 0 0 0.25rem;
}

.footer-widget .newsletter input[name='url'] {
    display: none !important;
}

.form-contact input[name='message_content'] {
    display: none !important;
}

.footer-copyright {
    border-top: 1px solid var(--hx-gray-800);
    padding: 40px 0;
}

.footer-copyright .copyright {
    color: var(--hx-gray-400);
    font-size: var(--hx-fs-md);
    line-height: var(--hx-lh-md);
}

.footer-copyright .nav-footer ul {
    padding: 0;
    margin: 0;
}

.footer-copyright .nav-footer ul li {
    list-style: none;
    display: inline-block;
    margin-right: 15px;
}

.footer-copyright .nav-footer ul li a {
    color: var(--hx-gray-400);
    font-size: var(--hx-fs-md);
    line-height: var(--hx-lh-md);
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: var(--hx-error-color) !important;
    background-image: none !important;
    padding-right: 0.75rem !important;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.12) !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    border-color: var(--hx-error-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15) !important;
}

.form-control.is-valid, .was-validated .form-control:valid {
    border-color: var(--hx-input-border-color);
    background-image: none !important;
}

.alert-message, .alert-messages {
    border-radius: 2px;
    padding: 12px 15px;
}

.alert-messages ul {
    padding: 0 !important;
}

.alert-messages li {
    list-style: none;
}

.alert-message svg {
    flex-shrink: 0 !important;
}

.btn-file-upload {
    position: relative;
    font-size: var(--hx-fs-sm);
    line-height: var(--hx-lh-sm);
    padding: 6px 16px !important;
    overflow: hidden !important;
    margin-right: 15px;
    color: var(--hx-color-white) !important;
    cursor: pointer;
    display: block;
    width: 180px;
}

.btn-file-upload:hover {
    color: var(--hx-color-white) !important;
}

.btn-file-upload input {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    filter: alpha(opacity=0);
    -ms-filter: "alpha(opacity=0)";
    opacity: 0;
    background-color: transparent;
    color: transparent;
    cursor: pointer;
}

.container-bn {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.container-bn-mb {
    display: none;
}

.bn-content {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding: 0 !important;
}

.bn-content .bn-inner {
    display: block;
    overflow: hidden;
}

.bn-content .bn-inner a {
    display: block;
}

.bn-sidebar-content {
    justify-content: start !important;
}

a:hover, a:active, a:focus, .nav-category-block .nav-item.show .nav-link, .nav-category-block .nav-link.active {
    color: var(--hx-theme-color) !important;
}

.nav-sm-buttons .prev:hover, .nav-sm-buttons .next:hover, .post-next-prev .head-title a {
    color: var(--hx-theme-color) !important;
}

.progress-bar, .section .section-title:after, .post-content .post-tags ul li a:hover, .sidebar-widget .widget-head:after, .sidebar-widget .widget-head-tabs .nav-tabs .active, .sidebar-widget .tag-list li a:hover {
    background-color: var(--hx-theme-color);
}

.form-input:focus, .post-content .post-tags ul li a:hover, .sidebar-widget .tag-list li a:hover {
    border-color: var(--hx-theme-color);
}

.plyr__control--overlaid {
    background: var(--hx-theme-color) !important;
    opacity: .8 !important;
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded="true"] {
    background: var(--hx-theme-color) !important;
}

.plyr--full-ui input[type="range"] {
    color: var(--hx-theme-color) !important;
}

.nav-sm-buttons .prev:hover, .nav-sm-buttons .next:hover {
    border: 1px solid var(--hx-theme-color) !important;
}

/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1240px;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}

@media (max-width: 1199.98px) {
    .section-cat-block-1 .post-item-vr .image {
        height: 285px;
    }

    .col-sidebar {
        padding: 0 !important;
    }
}

@media (max-width: 991.98px) {
    .section {
        margin-bottom: 30px;
    }

    .sidebar-widget {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .section .section-title {
        margin-bottom: 20px;
    }

    .profile-header.has-image {
        height: 320px;
    }

    .section-page {
        min-height: 800px;
    }

    .container-bn-ds {
        display: none;
    }

    .container-bn-mb {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .bd-subnavbar {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }

    .section-cat-block-1 .col-post-item-vr {
        margin-bottom: 15px;
    }

    .footer-widget {
        margin-top: 30px;
    }

    .footer-widget .widget-title {
        margin-bottom: 1rem;
    }

    .post-details-meta {
        display: block !important;
    }

    .post-details-meta .item-meta {
        display: inline-block;
    }

    .post-details-meta .item-meta svg {
        margin-right: 0;
        position: relative;
    }

    .post-next-prev .left {
        margin-bottom: 15px;
        border: 0 !important;
    }

    .post-next-prev .head-title {
        text-align: center !important;
        margin-bottom: 5px !important;
    }

    .post-next-prev .title {
        text-align: center !important;
    }

    .profile-header {
        height: 100px;
    }

    .profile-header.has-image {
        height: 280px !important;
    }

    .container-profile {
        padding-top: 35px !important;
    }

    .profile-details {
        margin-bottom: 0 !important;
    }

    .profile-details .contact-details {
        display: block !important;
    }

    .profile-details .contact-details .item {
        display: block !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        border: 0 !important;
        margin-bottom: 5px;
    }

    .profile-list-group {
        margin-bottom: 45px;
    }

    .section-cat-slider .nav-sm-buttons {
        top: -2px !important;
    }

    .table-of-contents {
        padding: 1.5rem 2rem;
    }

    .table-of-contents ul li a {
        line-height: 24px;
    }
}

@media (max-width: 575.98px) {
    .section .section-title .title {
        margin-bottom: 5px;
    }

    .sidebar-widget .widget-head {
        margin-bottom: 20px;
    }

    .sidebar-widget .widget-head .title {
        margin-bottom: 5px;
    }

    .post-item {
        margin-bottom: 30px;
    }

    .latest-posts {
        margin-bottom: 45px;
    }

    .latest-posts .mt-5 {
        margin-top: 30px !important;
    }

    #footer .footer-inner {
        padding: 30px 0;
    }

    .footer-copyright .copyright {
        text-align: center !important;
        margin-bottom: 15px;
    }

    .breadcrumb {
        display: none;
    }

    .about-author .img-author {
        width: 60px;
        height: 60px;
    }

    .profile-social-links li {
        margin-right: 2px;
        margin-bottom: 5px;
    }

    .section-page .page-title {
        margin-bottom: 15px;
    }

    .form-contact {
        margin-bottom: 30px;
    }

    .section-page .title-send-message {
        margin-bottom: 10px;
    }

    .section-page .page-content {
        padding-top: 0;
    }

    .pagination li a {
        width: 34px;
        height: 34px;
    }

    .profile-header.has-image {
        height: 240px !important;
    }

    .profile-header .profile-last-seen svg {
        margin-right: 3px;
        width: 8px;
        height: 8px;
    }

    .section-cat-slider .section-content {
        height: 500px;
    }
}

@media (max-width: 485.98px) {
    .section-cat-slider .section-content {
        height: 440px;
    }

    .section-cat-slider {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 427.98px) {
    .section-cat-slider .section-content {
        height: 410px;
    }
}

@media (min-width: 992px) {
    .col-sidebar.sticky-lg-top {
        top: 70px !important;
        z-index: 1020;
    }

    .profile-sidebar.sticky-lg-top {
        top: 70px !important;
    }
}

/*--------------------------------------------------------------
# News Theme
--------------------------------------------------------------*/
@media (min-width: 992px) {
    .featured-section-news .fs-grid-wrapper {
        height: var(--fs-height-desktop);
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas:
            "main sub-top headlines"
            "main sub-bottom headlines";
        gap: var(--fs-gap-news);
    }

    .featured-section-news .area-main {
        grid-area: main;
        height: 100%;
    }

    .featured-section-news .area-right {
        grid-area: sub-top / sub-top / sub-bottom / sub-bottom;
        display: flex;
        flex-direction: column;
        gap: var(--fs-gap-news);
        height: 100%;
    }

    .featured-section-news .area-right > .fs-card {
        flex: 1;
        height: 100%;
    }

    .featured-section-news .area-headlines {
        grid-area: headlines;
        height: 100%;
        overflow: hidden;
    }
}

@media (max-width: 991.98px) {

    .featured-section-news .fs-grid-wrapper {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "main"
            "right"
            "headlines";
        gap: 0.25rem;
    }

    .featured-section-news .area-main {
        grid-area: main;
        width: 100%;
        aspect-ratio: 3 / 2;
        min-height: 320px;
    }

    .featured-section-news .area-right {
        grid-area: right;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem;
        height: auto;
        aspect-ratio: 2 / 1;
    }

    .featured-section-news .area-right > .fs-card {
        height: auto;
    }

    .featured-section-news .area-headlines {
        grid-area: headlines;
        width: 100%;
        height: auto;
        padding: 1rem !important;
    }

}


.featured-section-news .fs-title {
    font-size: var(--hx-fs-title-sm);
    line-height: var(--hx-lh-title-sm);
}

.featured-section-news .top-headlines {
    padding: 0;
}

.featured-section-news .top-headlines .sc-title {
    margin-bottom: 1rem;
    font-size: var(--hx-fs-title-4xl);
    line-height: var(--hx-lh-title-4xl);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--hx-text-main);
}

.featured-section-news .top-headlines .item {
    display: block;
    width: 100%;
    position: relative;
    padding: 0.75rem 0;
    border-top: 1px solid var(--hx-gray-150);
}

.featured-section-news .top-headlines .item-first {
    border: 0 !important;
    padding-top: 0;
    margin-top: 0;
}

.featured-section-news .top-headlines .item .title {
    margin: 0;
    margin-bottom: 0.5rem;
    font-size: var(--hx-fs-title-xs);
    line-height: 1.4;
    font-weight: 600 !important;
}

.featured-section-news .top-headlines .item .category {
    font-size: var(--hx-fs-tiny);
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -.4px;
    color: var(--hx-theme-color) !important;
}

.featured-section-news .top-headlines .item .date {
    font-size: var(--hx-fs-tiny);
    font-weight: 600;
    line-height: 1;
    color: var(--hx-text-muted);
    letter-spacing: -.4px;
}

[data-theme="news"] .topbar {
    --tb-bg: #ffffff;
    --tb-text: var(--hx-gray-800);
    font-weight: 600;
}

[data-theme="news"] .topbar a {
    color: var(--hx-gray-900) !important;
}

[data-bs-theme="dark"][data-theme="news"] .topbar a {
    color: var(--hx-gray-300) !important;
}

[data-theme="news"] .mega-menu-wrapper {
    --mn-bg-nav: var(--hx-mega-menu-color);
    --mn-bg-sidebar: var(--hx-mega-menu-color);
    --mn-padding-nav-link: 1.25rem 0.875rem;
    --mn-min-height: 50px;
    border-bottom: 0;
}

[data-theme="news"] .mega-menu-wrapper .navbar-nav .nav-link {
    color: var(--hx-color-white);
}

[data-theme="news"] .mega-menu-wrapper .search-icon-btn {
    color: var(--hx-color-white);
}

[data-theme="news"] .mega-menu-wrapper .header-search-dropdown {
    border-color: transparent !important;
    margin-top: 0.125rem;
}

[data-theme="news"] .mega-menu-wrapper .btn-search {
    background-color: var(--hx-mega-menu-color) !important;
}

[data-theme="news"] .topbar button {
    color: var(--hx-text-main) !important;
}

[data-theme="news"] .mega-menu-wrapper .megamenu {
    border-top-color: color-mix(in srgb, var(--hx-mega-menu-color), white 10%) !important
}

[data-theme="news"] .mega-menu-wrapper .subcat-link {
    color: #fff;
}

[data-theme="news"] .mega-menu-wrapper .dropdown .dropdown-menu {
    border-bottom: 0 !important;
}

[data-theme="news"] .mega-menu-wrapper.nav-shrink {
    background-color: var(--hx-mega-menu-color) !important;
}

[data-theme="news"] .mega-menu-wrapper .subcat-link:hover,
[data-theme="news"] .mega-menu-wrapper .subcat-link.active {
    background-color: transparent !important;
    border-color: color-mix(in srgb, var(--hx-mega-menu-color), white 5%);
    color: var(--hx-theme-color);
}

[data-theme="news"] .mobile-nav-wrapper .mobile-header {
    background-color: var(--hx-mega-menu-color);
    border: 0 !important;
}

[data-theme="news"] .mobile-nav-wrapper .header-btn {
    color: #fff;
}

[data-theme="news"] .mobile-nav-wrapper .offcanvas-header {
    background-color: var(--hx-mega-menu-color);
}

[data-theme="news"] .offcanvas-header .btn-close {
    color: #fff;
}

[data-theme="news"] .mobile-nav-wrapper .custom-offcanvas {
    border-right-color: transparent !important;
}

/*--------------------------------------------------------------
# Dark Mode
--------------------------------------------------------------*/
[data-bs-theme="dark"] body {
    --hx-body-bg: var(--hx-gray-925);
    --hx-body-secondary-bg: var(--hx-gray-900);
    --hx-body-active-bg: var(--hx-gray-850);
    --hx-input-bg: var(--hx-gray-900);
    --hx-border-color: var(--hx-gray-850);
    --hx-input-border-color: var(--hx-gray-850);
    --hx-videos-bg: var(--hx-gray-925);
    --hx-text-main: var(--hx-gray-200);
    --hx-text-main-secondary: var(--hx-gray-350);
    --hx-text-muted: var(--hx-gray-500);
    --hx-text-subtle: var(--hx-gray-550);
    --hx-text-faint: var(--hx-gray-650);

    background-color: var(--hx-body-bg) !important;
    color: var(--hx-text-main) !important;
}

[data-bs-theme="dark"] .dropdown-menu {
    --bs-dropdown-bg: var(--hx-body-secondary-bg);
    --bs-dropdown-color: var(--hx-text-main);
    --bs-dropdown-link-color: var(--bs-body-color);
    --bs-dropdown-link-hover-color: var(--bs-body-color);
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: var(--bs-border-radius);
    --bs-dropdown-border-width: var(--bs-border-width);
    --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: 0.5rem;
    --bs-dropdown-box-shadow: var(--bs-box-shadow);
    --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
    --bs-dropdown-header-color: var(--hx-gray-500);
}

[data-bs-theme="dark"] .dropdown-item:focus,
[data-bs-theme="dark"] .dropdown-item:hover,
[data-bs-theme="dark"] .dropdown-item:active,
[data-bs-theme="dark"] .dropdown-item.active {
    color: var(--hx-text-main) !important;
    background-color: var(--hx-gray-800) !important;
}

[data-bs-theme="dark"] h1,
[data-bs-theme="dark"] h2,
[data-bs-theme="dark"] h3,
[data-bs-theme="dark"] h4,
[data-bs-theme="dark"] h5,
[data-bs-theme="dark"] h6,
[data-bs-theme="dark"] .h1, .h2, .h3, .h4, .h5, .h6,
[data-bs-theme="dark"] h1 a,
[data-bs-theme="dark"] h2 a,
[data-bs-theme="dark"] h3 a,
[data-bs-theme="dark"] h4 a,
[data-bs-theme="dark"] h5 a,
[data-bs-theme="dark"] h6 a {
    color: var(--hx-text-main);
}

[data-bs-theme="dark"] h1 a:hover,
[data-bs-theme="dark"] h2 a:hover,
[data-bs-theme="dark"] h3 a:hover,
[data-bs-theme="dark"] h4 a:hover,
[data-bs-theme="dark"] h5 a:hover,
[data-bs-theme="dark"] h6 a:hover {
    color: var(--hx-color-white);
}

[data-bs-theme="dark"] .text-secondary {
    color: var(--hx-gray-400) !important;
}

[data-bs-theme="dark"] .text-muted {
    color: var(--hx-gray-500) !important;
}

[data-bs-theme="dark"] .topbar {
    --tb-bg: var(--hx-body-bg);
    --tb-text: var(--hx-gray-300);
}

[data-bs-theme="dark"] .mega-menu-wrapper {
    --mn-bg-nav: var(--hx-body-secondary-bg);
    --mn-bg-dropdown: var(--hx-body-secondary-bg);
    --mn-bg-sidebar: var(--hx-body-secondary-bg);
    --mn-bg-hover: var(--hx-body-secondary-bg);
    --mn-bg-card: var(--hx-body-secondary-bg);
    --mn-text-main: var(--hx-gray-50);
    --hx-text-sub: var(--hx-gray-250);
    --hx-text-muted: var(--hx-gray-500);
    --mn-border: var(--hx-border-color);
    --mn-text-sub: var(--hx-gray-300);
}

[data-bs-theme="dark"] .mega-menu-wrapper {
    background-color: var(--hx-body-bg) !important;
    border-bottom-color: var(--hx-border-color);
}

[data-bs-theme="dark"] .mega-menu-wrapper .search-form-control {
    background-color: var(--hx-input-bg);
    border-color: var(--hx-border-color);
}

[data-bs-theme="dark"] .breadcrumb-item:hover,
[data-bs-theme="dark"] .breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--hx-gray-600);
}

[data-bs-theme="dark"] .form-input,
[data-bs-theme="dark"] textarea,
[data-bs-theme="dark"] select {
    background-color: var(--hx-input-bg);
    border-color: var(--hx-border-color);
    color: var(--hx-text-main);
}

[data-bs-theme="dark"] .form-input:focus,
[data-bs-theme="dark"] textarea:focus {
    background-color: var(--hx-input-bg);
    border-color: var(--hx-theme-color);
}

[data-bs-theme="dark"] .form-control::placeholder {
    color: var(--hx-gray-500);
}

[data-bs-theme="dark"] .list-group-item {
    background-color: var(--hx-body-bg);
    color: var(--hx-gray-300);
}

[data-bs-theme="dark"] .section .section-title,
[data-bs-theme="dark"] .sidebar-widget .widget-head {
    border-bottom-color: var(--hx-border-color);
}

[data-bs-theme="dark"] .nav-category-block .nav-item .nav-link {
    color: var(--hx-gray-100);
}

[data-bs-theme="dark"] .topbar .dropdown-menu li a {
    color: var(--hx-gray-300) !important;
}

[data-bs-theme="dark"] .topbar .dropdown-menu li a .icon,
[data-bs-theme="dark"] .topbar .dropdown-menu li a .icon svg {
    color: var(--hx-gray-300) !important;
}

[data-bs-theme="dark"] .sidebar-widget .tag-list li a,
[data-bs-theme="dark"] .post-content .post-tags ul li a {
    background-color: var(--hx-body-secondary-bg);
    border-color: var(--hx-body-secondary-bg);
    color: var(--hx-gray-400);
}

[data-bs-theme="dark"] .sidebar-widget .tag-list li a:hover,
[data-bs-theme="dark"] .post-content .post-tags ul li a:hover {
    color: var(--hx-theme-color) !important;
}

[data-bs-theme="dark"] .post-details-meta .item-meta-author img {
    border: 1px solid var(--hx-gray-600);
}

[data-bs-theme="dark"] .post-next-prev,
[data-bs-theme="dark"] .about-author,
[data-bs-theme="dark"] .about-author .img-author {
    border-color: var(--hx-border-color);
}

[data-bs-theme="dark"] .about-author .description {
    color: var(--hx-text-main-secondary);
}

[data-bs-theme="dark"] .profile-social-links .link-social {
    background-color: var(--hx-body-secondary-bg);
    color: var(--hx-text-main-secondary) !important;
}

[data-bs-theme="dark"] .form-switch .form-check-label {
    color: var(--hx-text-main) !important;
}

[data-bs-theme="dark"] .table-of-contents {
    border: 1px solid var(--hx-border-color);
}

[data-bs-theme="dark"] .recipe-container .direction .step-description,
[data-bs-theme="dark"] .profile-details .description {
    color: var(--hx-gray-350);
}

[data-bs-theme="dark"] .profile-details .profile-email {
    border-color: var(--hx-gray-600);
}

[data-theme="news"][data-bs-theme="dark"] .mega-menu-wrapper {
    background-color: var(--hx-body-bg) !important;
    border-top: 1px solid var(--hx-gray-900) !important;
    border-bottom: 1px solid var(--hx-gray-850) !important;
}

[data-theme="news"][data-bs-theme="dark"] .mega-menu-wrapper .megamenu {
    border-top-color: var(--hx-gray-900) !important;
}

[data-theme="news"][data-bs-theme="dark"] .mega-menu-wrapper .subcat-link:hover,
[data-theme="news"][data-bs-theme="dark"] .mega-menu-wrapper .subcat-link.active {
    border-color: var(--hx-gray-850) !important;
}

[data-theme="news"][data-bs-theme="dark"] .featured-section-news .top-headlines .item {
    border-color: var(--hx-border-color);
}

.event-access-section {
    border: 1px solid var(--hx-border-color);
    border-radius: 8px;
    padding: 1.25rem;
    background: var(--hx-body-bg);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.event-access-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.event-access-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.35rem;
    color: var(--hx-theme-color);
    font-size: var(--hx-fs-sm);
    font-weight: 700;
    text-transform: uppercase;
}

.event-access-desc,
.event-reservation-note,
.event-ticket-meta,
.event-ticket-benefit-text {
    color: var(--hx-text-main-secondary);
}

.event-ticket-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.event-ticket-grid--single {
    max-width: 520px;
    margin-inline: auto;
}

.event-participation-choices {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.event-participation-choice {
    border: 1px solid var(--hx-border-color);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    background: var(--hx-body-bg);
    color: var(--hx-text-main);
    font-weight: 800;
    text-align: left;
}

.event-participation-choice.is-active {
    border-color: var(--hx-theme-color);
    background: rgba(25, 135, 84, .08);
    color: var(--hx-theme-color);
}

.event-participation-panel {
    display: none;
}

.event-participation-panel.is-active {
    display: block;
}

.event-ticket-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-height: 100%;
    border: 1px solid var(--hx-border-color);
    border-radius: 8px;
    padding: 1.2rem;
    background: var(--hx-body-bg);
    box-shadow: 0 12px 26px rgba(15, 23, 42, .05);
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.event-ticket-card:not(.is-disabled):hover,
.event-ticket-card.is-selected {
    border-color: var(--hx-theme-color);
    box-shadow: 0 18px 34px rgba(15, 23, 42, .1);
}

.event-ticket-card.is-selected {
    transform: translateY(-1px);
}

.event-ticket-card.is-disabled {
    cursor: default;
    opacity: .78;
}

.event-ticket-card-top,
.event-ticket-price-row,
.event-ticket-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.event-ticket-code {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--hx-theme-color);
    font-size: var(--hx-fs-sm);
    font-weight: 800;
    text-transform: uppercase;
}

.event-ticket-name {
    display: block;
    margin: 0;
    color: var(--hx-text-main);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.25;
}

.event-ticket-status {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    background: var(--hx-gray-100);
    color: var(--hx-gray-800);
    font-size: var(--hx-fs-xs);
    font-weight: 700;
    text-align: center;
}

.event-ticket-card.is-available .event-ticket-status {
    background: rgba(25, 135, 84, .12);
    color: #198754;
}

.event-ticket-card.is-low-stock .event-ticket-status {
    background: rgba(255, 193, 7, .2);
    color: #946200;
}

.event-ticket-card.is-sold-out .event-ticket-status,
.event-ticket-card.is-ended .event-ticket-status {
    background: rgba(220, 53, 69, .12);
    color: #dc3545;
}

.event-ticket-card.is-not-started .event-ticket-status {
    background: rgba(255, 193, 7, .18);
    color: #946200;
}

.event-ticket-price {
    color: var(--hx-text-main);
    font-size: clamp(1.55rem, 2.5vw, 2rem);
    font-weight: 900;
    line-height: 1;
}

.event-ticket-currency {
    align-self: flex-end;
    color: var(--hx-text-main-secondary);
    font-size: var(--hx-fs-xs);
    font-weight: 700;
}

.event-ticket-meta {
    flex-wrap: wrap;
    margin-top: auto;
    font-size: var(--hx-fs-sm);
}

.event-ticket-meta span {
    display: grid;
    gap: 0.15rem;
}

.event-ticket-card-action {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    width: 100%;
    border: 0;
    border-radius: 8px;
    padding: 0.7rem 0.9rem;
    background: var(--hx-theme-color);
    color: #fff;
    font-weight: 800;
    transition: background-color .15s ease, transform .15s ease;
}

.event-ticket-card-action:not(:disabled):hover {
    background: var(--hx-theme-color-hover, var(--hx-theme-color));
    transform: translateY(-1px);
}

.event-ticket-card.is-disabled .event-ticket-card-action {
    background: var(--hx-gray-150);
    color: var(--hx-text-main-secondary);
}

body.event-ticket-modal-open {
    overflow: hidden;
}

.ticket-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1085;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 16px;
    background: rgba(15, 23, 42, .58);
}

.ticket-modal-overlay[hidden] {
    display: none !important;
}

.ticket-modal-overlay.is-open {
    display: flex;
}

.ticket-modal-dialog {
    width: min(1040px, calc(100vw - 32px));
    max-height: calc(100dvh - 32px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    background: var(--hx-body-bg);
    box-shadow: 0 30px 80px rgba(15, 23, 42, .28);
}

.ticket-modal-dialog .event-ticket-purchase-form {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    max-height: inherit;
    overflow: hidden;
}

.ticket-modal-header,
.ticket-modal-footer {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-color: var(--hx-border-color);
    background: var(--hx-body-bg);
}

.ticket-modal-header {
    border-bottom: 1px solid var(--hx-border-color);
}

.ticket-modal-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 1rem;
    overflow-y: auto;
    background: var(--hx-body-secondary-bg);
}

.ticket-modal-footer {
    border-top: 1px solid var(--hx-border-color);
}

.ticket-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--hx-border-color);
    border-radius: 50%;
    background: var(--hx-body-bg);
    color: var(--hx-text-main);
    font-size: 1.45rem;
    line-height: 1;
    transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}

.ticket-modal-close:hover {
    border-color: var(--hx-theme-color);
    color: var(--hx-theme-color);
}

.event-ticket-modal-grid {
    display: grid;
    grid-template-columns: minmax(0, 65fr) minmax(280px, 35fr);
    gap: 1rem;
    align-items: start;
}

.event-ticket-modal-main,
.event-ticket-modal-summary {
    display: grid;
    gap: 1rem;
}

.event-ticket-modal-selected,
.event-ticket-modal-step,
.event-ticket-modal-summary {
    border: 1px solid var(--hx-border-color);
    border-radius: 8px;
    padding: 0.95rem;
    background: var(--hx-body-bg);
}

.event-ticket-modal-selected {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.event-ticket-modal-selected strong {
    display: block;
    color: var(--hx-text-main);
    font-size: 1.1rem;
    font-weight: 900;
}

.event-ticket-modal-selected [data-ticket-modal-description],
.event-ticket-stock-note,
.event-ticket-payment-note {
    color: var(--hx-text-main-secondary);
    font-size: var(--hx-fs-sm);
}

.event-ticket-selected-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem;
    max-width: 280px;
    text-align: right;
}

.event-ticket-selected-meta span {
    display: inline-flex;
    justify-content: flex-end;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    background: var(--hx-body-secondary-bg);
    color: var(--hx-text-main);
    font-size: var(--hx-fs-xs);
    font-weight: 800;
}

.event-ticket-selected-meta span:first-child {
    background: rgba(25, 135, 84, .12);
    color: var(--hx-theme-color);
}

.event-ticket-step-head {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.event-ticket-step-head > span,
.event-ticket-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(25, 135, 84, .12);
    color: var(--hx-theme-color);
    font-size: var(--hx-fs-sm);
    font-weight: 900;
}

.event-ticket-step-head h5 {
    margin: 0 0 0.15rem;
    color: var(--hx-text-main);
    font-size: 1rem;
    font-weight: 900;
}

.event-ticket-step-head p {
    margin: 0;
    color: var(--hx-text-main-secondary);
    font-size: var(--hx-fs-sm);
}

.event-ticket-stock-note {
    display: grid;
    gap: 0.15rem;
    min-height: 100%;
    border: 1px dashed var(--hx-border-color);
    border-radius: 8px;
    padding: 0.7rem 0.85rem;
    background: var(--hx-body-secondary-bg);
}

.event-ticket-stock-note strong {
    color: var(--hx-text-main);
}

.event-ticket-modal-summary {
    position: sticky;
    top: 16px;
}

.event-ticket-modal-footer {
    display: flex;
    gap: 0.75rem;
}

.event-ticket-modal-feedback {
    flex: 1 1 auto;
    color: var(--hx-text-main-secondary);
    font-size: var(--hx-fs-sm);
    font-weight: 700;
}

.event-ticket-modal-feedback.is-error {
    color: #dc3545;
}

.event-ticket-modal-feedback.is-info,
.event-ticket-modal-feedback.is-success {
    color: var(--hx-theme-color);
}

.event-ticket-submit-btn {
    justify-content: center;
    min-width: 220px;
}
/*
.event-ticket-single-panel,
.event-ticket-beneficiary-panel {
    border: 1px solid var(--hx-border-color);
    border-radius: 8px;
    padding: 1rem;
    background: var(--hx-body-secondary-bg);
}
*/
.event-ticket-single-panel[hidden],
.event-ticket-beneficiary-panel[hidden] {
    display: none !important;
}

.event-ticket-beneficiary-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.event-ticket-beneficiary-head h5 {
    margin-bottom: 0.15rem;
    color: var(--hx-text-main);
    font-size: 1rem;
    font-weight: 800;
}

.event-ticket-beneficiary-head p {
    margin-bottom: 0;
    color: var(--hx-text-main-secondary);
    font-size: var(--hx-fs-sm);
}

.event-ticket-secondary-action {
    flex: 0 0 auto;
    border: 1px solid var(--hx-border-color);
    border-radius: 8px;
    padding: 0.55rem 0.8rem;
    background: var(--hx-body-bg);
    color: var(--hx-theme-color);
    font-size: var(--hx-fs-sm);
    font-weight: 800;
}

.event-ticket-check-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    color: var(--hx-text-main);
    font-size: var(--hx-fs-sm);
    font-weight: 700;
}

.event-ticket-holder-list {
    display: grid;
    gap: 0.75rem;
}

.event-ticket-holder-row {
    border: 1px solid var(--hx-border-color);
    border-radius: 8px;
    padding: 0.75rem;
    background: var(--hx-body-bg);
}

.event-ticket-holder-row .form-control {
    min-width: 0;
}

.event-ticket-holder-title {
    margin-bottom: 0.55rem;
    color: var(--hx-theme-color);
    font-size: var(--hx-fs-sm);
    font-weight: 800;
}

.event-ticket-inline-summary {
    border: 1px dashed var(--hx-border-color);
    border-radius: 8px;
    padding: 1rem;
    background: var(--hx-body-bg);
}

.event-ticket-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.event-ticket-summary-grid span,
.event-ticket-summary-ticket-name span,
.event-ticket-summary-beneficiaries span {
    display: block;
    color: var(--hx-text-main-secondary);
    font-size: var(--hx-fs-xs);
    font-weight: 700;
    text-transform: uppercase;
}

.event-ticket-summary-grid strong {
    display: block;
    color: var(--hx-text-main);
    font-weight: 900;
}

.event-ticket-summary-total {
    grid-column: 1 / -1;
    border-top: 1px solid var(--hx-border-color);
    padding-top: 0.75rem;
}

.event-ticket-summary-total strong {
    color: var(--hx-theme-color);
    font-size: 1.35rem;
}

.event-ticket-summary-ticket-name,
.event-ticket-summary-beneficiaries {
    margin-top: 0.85rem;
}

.event-ticket-summary-ticket-name strong {
    display: block;
    margin-top: 0.25rem;
    color: var(--hx-text-main);
    font-weight: 900;
}

.event-ticket-summary-beneficiaries ul {
    display: grid;
    gap: 0.25rem;
    margin: 0.35rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--hx-text-main);
    font-size: var(--hx-fs-sm);
}

.event-ticket-summary-beneficiaries li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    border-bottom: 1px solid var(--hx-border-color);
    padding: 0.35rem 0;
}

.event-ticket-summary-beneficiaries li:last-child {
    border-bottom: 0;
}

.event-ticket-summary-beneficiaries li span {
    color: var(--hx-text-main-secondary);
    text-transform: none;
}

.event-ticket-summary-empty {
    color: var(--hx-text-main-secondary);
    font-weight: 800;
}

.event-access-empty {
    display: grid;
    gap: 0.35rem;
    border: 1px dashed var(--hx-border-color);
    border-radius: 8px;
    padding: 1rem;
    color: var(--hx-text-main-secondary);
    background: var(--hx-body-secondary-bg);
}

.event-reservation-section .event-registration-cta,
.event-participation-block .event-registration-cta {
    margin: 0;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.event-participation-block .event-registration-cta::before {
    display: none;
}

.event-reservation-note {
    margin-top: 0.5rem;
    font-size: var(--hx-fs-sm);
}

@media (min-width: 768px) {
    .event-access-section {
        padding: 1.5rem;
    }

    .event-ticket-grid--two,
    .event-ticket-grid--three,
    .event-ticket-grid--many {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-participation-choices {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .event-ticket-grid--three,
    .event-ticket-grid--many {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1099.98px) {
    .event-ticket-modal-grid {
        grid-template-columns: 1fr;
    }

    .event-ticket-modal-summary {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .event-access-head {
        flex-direction: column;
    }

    .event-ticket-card-top,
    .event-ticket-price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-ticket-status {
        align-self: flex-start;
    }

    .event-ticket-modal-selected {
        grid-template-columns: 1fr;
    }

    .event-ticket-selected-meta {
        min-width: 0;
        max-width: none;
        justify-content: flex-start;
        text-align: left;
    }

    .event-ticket-selected-meta span {
        justify-content: flex-start;
    }

    .event-ticket-beneficiary-head {
        flex-direction: column;
    }

    .event-ticket-secondary-action {
        width: 100%;
    }

    .ticket-modal-overlay {
        align-items: stretch;
        padding: 0;
    }

    .ticket-modal-dialog {
        width: 100%;
        max-height: 100dvh;
        min-height: 100dvh;
        border-radius: 0;
    }

    .ticket-modal-header,
    .ticket-modal-footer {
        padding: 0.85rem 1rem;
    }

    .ticket-modal-body {
        padding: 1rem;
    }

    .event-ticket-modal-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .event-ticket-submit-btn {
        width: 100%;
        min-width: 0;
    }

    .event-ticket-summary-grid {
        grid-template-columns: 1fr;
    }
}

[data-bs-theme="dark"] .event-access-section,
[data-bs-theme="dark"] .event-ticket-card,
[data-bs-theme="dark"] .event-participation-choice,
[data-bs-theme="dark"] .ticket-modal-dialog,
[data-bs-theme="dark"] .ticket-modal-header,
[data-bs-theme="dark"] .ticket-modal-footer,
[data-bs-theme="dark"] .ticket-modal-close,
[data-bs-theme="dark"] .event-ticket-modal-selected,
[data-bs-theme="dark"] .event-ticket-modal-step,
[data-bs-theme="dark"] .event-ticket-modal-summary,
[data-bs-theme="dark"] .event-ticket-single-panel,
[data-bs-theme="dark"] .event-ticket-holder-row,
[data-bs-theme="dark"] .event-ticket-inline-summary {
    background: var(--hx-body-secondary-bg);
    border-color: var(--hx-border-color);
}

[data-bs-theme="dark"] .event-ticket-status,
[data-bs-theme="dark"] .event-ticket-card.is-disabled .event-ticket-card-action,
[data-bs-theme="dark"] .event-access-empty,
[data-bs-theme="dark"] .event-ticket-beneficiary-panel,
[data-bs-theme="dark"] .event-ticket-stock-note,
[data-bs-theme="dark"] .ticket-modal-body {
    background: var(--hx-gray-850);
}

#toolbarContainer {
    display: none;
}
.space-ptb {
    padding: 100px 0;
}

.space-pt {
    padding: 100px 0 0;
}

.space-pb {
    padding: 0 0 100px;
}

.bg-primary {
    background: var(--hx-theme-color) !important;
}

.btn-theme {
    background-color: var(--thm-primary) !important;
}
.section-eloquence {
    padding: 5rem 0;
}

.portfolio-two-content {
    background-color: #FFF;
    padding: 4rem 0;
}

@media (max-width: 1199px) {
    .portfolio-two-section {
        padding-bottom: 70px;
    }
}

.section-title-box {
    margin-bottom: 40px;
}

.portfolio-two-section .section-title {
    margin: 10px 0;
    font-size: 50px;
    font-weight: 700;
    line-height: .9;
}

.portfolio-two-card .item {
    width: 200px;
    height: 200px;

}

.portfolio-two-card .item img {
    max-height: 100%;
    width: 100%;
}

.portfolio-two-carousel .owl-stage-outer {
    overflow: visible;
}

.masterclass-carousel .owl-stage-outer {
    overflow: visible;
}

.portfolio-two-card-content {
    position: absolute;
    z-index: 1;
    bottom: 5%;
    left: 5%;
    right: 5%;
    transition: transform 8s;
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 500ms;
    display: flex;
    align-items: center;
    padding: 35px 39px;
    background-color: var(--thm-primary);
}

.portfolio-two-card-content a {
    color: var(--thm-white);
    font-size: 24px;
    line-height: 1.2;
}

.portfolio-two-card:hover .portfolio-two-card-content {
    transform: scale(1.0);
}

.portfolio-two-image img {
    padding: 0px 30px;
}

.portfolio-two-card-text {
    max-width: 170px;
}

.portfolio-two-card-icon {
    margin-left: 40px;
}

.portfolio-two-card-icon a {
    height: 50px;
    width: 50px;
    display: inline-block;
    background-color: var(--thm-white);
    border-radius: 50%;
    text-align: center;
    color: var(--thm-black);
    line-height: 50px;
}

.portfolio-details {
    padding-top: 120px;
}

@media(max-width: 1199px) {
    .portfolio-details {
        padding-top: 70px;
    }
}

.portfolio-details img {
    width: 100%;
}

.portfolio-details-info {
    padding: 47px 60px;
    background-color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    /*background-color: var(--thm-light-bg);*/
}

@media(max-width: 991px) {
    .portfolio-details-info {
        padding: 50px 20px;
    }
}

@media (max-width: 991px) {
    .portfolio-details-info-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .portfolio-two-card .item {
        width: 150px;
        height: 150px;
    }
}

.portfolio-details-item {
    background-color: var(--thm-light-bg);
    display: block;
    padding: 60px 60px;
    border: 4px solid var(--thm-border);
}

.portfolio-details-info-item-two+.portfolio-details-info-item-two {
    margin: 20px 0px;
}

@media (max-width: 991px) {
    .portfolio-details-info-item-two {
        margin-bottom: 0px;
    }
}

.portfolio-details-info-item span {
    color: var(--thm-white);
}

.portfolio-details-info-item-two span {
    color: var(--thm-black);
    font-weight: 700;
}

.portfolio-details-info-item-two .lead {
    color: var(--thm-gray);
    font-size: 17px;
}

.portfolio-details-info-item>p {
    font-size: 18px;
    color: var(--thm-white);
    font-weight: 500;
    margin-bottom: 0;
}

.portfolio-details-info-socials {
    display: flex;
}

.portfolio-details-info-socials a {
    height: 40px;
    display: inline-block;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--thm-dark-black);
    color: var(--thm-white);
}

.portfolio-details-info-socials a+a {
    margin-left: 10px;
}

.portfolio-details-content {
    padding-top: 50px;
    padding-bottom: 115px;
}

@media(max-width: 1199px) {
    .portfolio-details-content {
        padding-top: 40px;
        padding-bottom: 50px;
    }
}

.portfolio-details-content-inner {
    padding: 50px 0px;
}

.portfolio-details-content-list {
    padding: 0px;
}

.portfolio-details-content-title h3 {
    font-size: 34px;
    margin-bottom: 25px;
}

.portfolio-details-content-text p {
    margin-bottom: 0px;
}

.portfolio-details-content-text p+p {
    margin-top: 30px;
}

.portfolio-details-nav-inner {
    display: flex;
    justify-content: space-between;
    padding: 31px 0px;
    border-top: 1px solid var(--thm-border);
    border-bottom: 1px solid var(--thm-border);
}

@media (max-width: 575px) {
    .portfolio-details-nav-inner {
        display: grid;
    }
}

.portfolio-details-nav-item {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

@media(max-width: 575px) {
    .portfolio-details-nav-item {
        padding-bottom: 50px;
    }
}

.portfolio-details-nav-content span {
    font-size: 14px;
}

.portfolio-details-nav-content h5 {
    margin-bottom: 0;
    font-size: 18px;
}

.portfolio-details-nav-content h5>a {
    color: inherit;
}

.portfolio-details-nav-content h5>a:hover {
    color: var(--thm-primary);
}

.portfolio-details-nav-item.next-item {
    flex-direction: row-reverse;
    text-align: right;
}

.portfolio-details-nav-icon a {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
    color: var(--thm-black);
    border: 2px solid currentColor;
    border-radius: 50%;
    transition: all 500ms ease;
}

.portfolio-details-nav-item:hover .portfolio-details-nav-icon a {
    color: var(--thm-primary);
    opacity: 1;
}

.portfolio-details-nav-content a {
    color: inherit;
    font-weight: 800;
}

.page-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: -25px
}
@media (min-width:1300px) {
    .content-wrapper {
        max-width: 550px;
        margin: auto
    }

    .header-inner .header-inner-title {
        max-width: 640px;
    }
}

.header-inner {
    padding: 140px 0px;
    background-size: cover;
    background-position: center center;
}

.header-inner {
    z-index: 99;
}

.bg-overlay-black-70 {
    position: relative;
    z-index: 1;
}

.bg-overlay-black-70::before {
    background: rgba(2, 45, 98, 0.7);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.header-inner .header-inner-title {
    font-size: 18px;
}

.header-inner .header-inner-title h1 {
    font-size: 45px;
    margin-bottom: 10px;
    font-weight: 700 !important;
}
.bg-section {
    background-color: #dceafd;
    padding: 4rem 0;
}

.title-page {
    font-size: 55px;
    font-stretch: 75%;
    line-height: 50px;
    font-weight: 700;
    margin: 20px 0;
}

.p-page {
    font-size: 1.05rem;
}

.section-title {
    font-size: 45px;
    line-height: 45px;
}
/*
h1, h2, h3, h4, h5, h6 {
    line-height: 1;
}
*/
.topbar-one {
    --mn-bg-nav: #ffffff;
    --mn-margin-bottom: 1.5rem;
    display: flex;
    background-color: var(--thm-black);
    margin-bottom: var(--mn-margin-bottom);
}

@media(max-width: 991px) {
    .topbar-one {
        display: flex;
        justify-content: space-between;
    }
}

@media(max-width: 575px) {
    .topbar-one {
        display: flex;
        justify-content: space-between;
    }
}
.topbar-one-middle {
    display: flex;
    justify-content: space-between;
    padding: 8px 0px;
    align-items: center;
}

@media(max-width: 1199px) {
    .topbar-one-middle {
        display: block;
    }
}

.sticky-header--cloned {
    position: fixed;
    z-index: 9999 !important;
    top: 0;
    left: 0;
    background-color: var(--thm-white);
    width: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    box-shadow: 0px 1px 4px 0px rgb(0 0 0 / 15%);
    margin-top: 0 !important;
}

@media (max-width: 1199px) {
    .sticky-header--cloned {
        display: none !important;
    }
}

.sticky-header--cloned.sticky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease, opacity 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease, opacity 500ms ease;
    visibility: visible;
    -moz-transition: visibility 500ms ease, -webkit-transform 500ms ease, opacity 500ms ease;
    -ms-transition: visibility 500ms ease, -webkit-transform 500ms ease, opacity 500ms ease;
    -o-transition: visibility 500ms ease, -webkit-transform 500ms ease, opacity 500ms ease;
}

.main-menu {
    background-color: var(--thm-light-bg);
}

.main-menu.menu-two {
    padding-right: 0;
    z-index: 9;
    background-color: transparent;
    margin-top: 20px;
    margin-bottom: -10px!important;
}

@media(max-width: 1199px) {
    .main-menu.menu-two {
        margin-top: 10px
    }
}

@media(max-width: 575px) {
    .main-menu.menu-two {
        margin-top: -17px
    }
}

.main-menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-menu-left {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.main-menu-logo {
    min-width: 253px;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 33px 20px;
    background: #fff;
}

@media (max-width: 399px) {
    .main-menu-logo {
        width: 100%;
        max-width: 220px;
        padding: 33px 20px;
    }
}


.navigation {
    padding-left: 50px;
    padding-right: 40px;
}

.menu-two .navigation {
    padding-left: 20px;
}

@media (max-width: 1499px) {
    .navigation {
        padding-left: 50px;
    }
}

@media (max-width: 1199px) {
    .navigation {
        display: none;
    }
}

.main-menu .main-menu-list {
    display: flex;
    margin: 0;
    padding: 0;
}

@media(max-width: 1399px) {
    .main-menu .main-menu-list {
        display: none;
    }
}

.main-menu .main-menu-list>li {
    position: relative;
}

.main-menu .main-menu-list>li>a {
    padding: 38px 0;
    display: flex;
    align-items: center;
    font-size: var(--mn-font-size-nav);
    position: relative;
    color: #222;
}

.main-menu .main-menu-list>li>a:before {
    position: absolute;
    content: '';
    height: 5px;
    left: 0;
    top: calc(60% + 3px);
    background-color: var(--thm-primary);
    width: 100%;
    opacity: 0.3;
    transform: scale(0, 1);
    transition: transform 500ms ease;
    transform-origin: right;
}

.main-menu .main-menu-list>li.active>a:before,
.main-menu .main-menu-list>li:hover>a:before {
    transform: scale(1, 1);
    transform-origin: left;
}

.main-menu .main-menu-list>li.active>a,
.main-menu .main-menu-list>li>a:hover {
    color: var(--thm-black);
}

.main-menu .main-menu-list>li.has-dropdown>a:after {
    content: '\f107';
    font-family: "bootstrap-icons";
    font-size: 13px;
    margin-left: 10px;
}

.main-menu.menu-two .main-menu-list>li>a {
    padding: 23px 0;
}

.main-menu .main-menu-list>li+li {
    margin-left: 50px;
}

@media (max-width: 1520px) {
    .main-menu .main-menu-list>li+li {
        margin-left: 30px;
    }
}

.main-menu .main-menu-list>li ul {
    opacity: 0;
    position: absolute;
    width: 220px;
    left: -15px;
    top: 100%;
    transform: translateY(30px);
    visibility: hidden;
    transition: all 500ms ease;
    z-index: 999;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 10%);
}

.main-menu .main-menu-list>li:hover>a+ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .main-menu-list>li ul>li {
    position: relative;
}

.main-menu .main-menu-list>li ul>li>a {
    padding: 12px 20px;
    display: block;
    background-color: #fff;
    border-bottom: 1px solid var(--thm-border);
}

.main-menu .main-menu-list>li ul>li:last-child>a {
    border-bottom: 0;
}

.main-menu .main-menu-list>li ul>li>a:hover {
    background-color: var(--thm-primary);
    color: #fff !important;
}

.main-menu .main-menu-list>li>ul li>ul {
    left: 100%;
    top: 0;
}

.main-menu .main-menu-list>li:hover>ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Aligne les menus déroulants statiques de E360 sur la navigation commune. */
.main-menu .main-menu-list>li.dropdown>.nav-link .mn-icon {
    margin-left: 0.35rem;
    width: 1.125rem;
    height: 1.125rem;
    fill: currentColor;
}

.main-menu .main-menu-list>li.dropdown>.standard-dropdown {
    display: none;
    width: auto;
    min-width: 220px;
    margin-top: 0;
    padding: 10px 0;
    border: 1px solid var(--mn-border);
    border-radius: 0;
    background-color: var(--mn-bg-dropdown);
    box-shadow: var(--mn-shadow);
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
}

.main-menu .main-menu-list>li.dropdown:hover>.standard-dropdown,
.main-menu .main-menu-list>li.dropdown>.standard-dropdown.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.main-menu .main-menu-list>li.dropdown>.standard-dropdown>li>a.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 1.25rem !important;
    border-bottom: 0;
    background: transparent;
    color: var(--mn-text-sub);
    font-size: var(--hx-fs-sm);
    font-weight: 500;
}

.main-menu .main-menu-list>li.dropdown>.standard-dropdown>li.active>a.dropdown-item,
.main-menu .main-menu-list>li.dropdown>.standard-dropdown>li>a.dropdown-item:hover {
    background: transparent;
    color: var(--hx-theme-color) !important;
}
.topbar-one {
    box-shadow: 0px 1px 4px 0px rgb(0 0 0 / 15%);
    margin-top: 0 !important;
}

.mobile-menu-button span {
    background-color: var(--thm-black);
}

.mobile-menu-button {
    display: none;
    margin-left: 30px;
    margin-right: 30px;
}

@media (max-width: 1399px) {
    .mobile-menu-button {
        display: block;
    }
}

@media (max-width: 575px) {
    .mobile-menu-button {
        margin-left: 0px;
    }
}

.mobile-menu-button span {
    height: 2px;
    width: 20px;
    background-color: var(--thm-black);
    display: block;
}

.mobile-menu-button span+span {
    margin-top: 4px;
}

.main-menu-right {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

@media (max-width:575px) {
    .main-menu-right {
        margin-right: 20px;
    }
}

@media (max-width: 250px) {
    .main-menu-right {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
    }
}

a.search-toggler {
    display: block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--thm-white);
    line-height: 55px;
    text-align: center;
}

.search-box {
    margin-right: 30px;
}

.search-box i {
    color: var(--thm-black);
    font-size: 20px;
    line-height: 2.5;
}

.main-menu-right-button .btn-primary {
    margin-right: 40px;
    padding: 12px 20px;
}

@media (max-width: 1399px) {
    .main-menu-right-button {
        display: none;
    }
}

.main-menu-right-button .btn-primary a {
    color: var(--thm-white);
    padding: 10px 0px;
}

@media (max-width: 1399px) {
    .main-menu-right-button .btn-primary {
        padding: 13px 20px;
    }
}

.main-menu-one-inner {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 0 30px;
    position: relative;
    z-index: 99;
}

@media (max-width: 1399px) {
    .main-menu-one-inner {
        background-color: inherit;
        justify-content: end;
        padding: 0px;
        margin-top: 15px;
    }
}

@media (max-width: 575px) {
    .main-menu-one-inner {
        margin-top: 30px;
    }
}

.topbar-one-button {
    margin-top: 25px;
    margin-bottom: 25px;
    margin-right: 60px;
    display: flex;
}

@media(max-width: 1199px) {
    .topbar-one-button {
        display: none;
    }
}

@media(max-width: 767px) {
    .topbar-one-button {
        margin-left: 105px;
    }
}

@media(max-width: 575px) {
    .topbar-one-button {
        margin-left: 0px;
    }
}

.topbar-one-button .btn-p {
    padding: 12px 24px;
    margin-left: 15px;
    background-color: var(--thm-primary) !important;
}

@media(max-width: 1399px) {
    .topbar-one-button .btn-primary {
        display: none;
    }
}

@media(max-width: 991px) {
    .topbar-one-button .btn-primary {
        padding: 14px 49px;
    }
}

.topbar-one-button .btn-primary:hover,
.topbar-one-button .btn-primary:focus,
.topbar-one-button .btn-primary.active {
    background-color: var(--thm-primary);
    ;
}

.topbar-one-button a {
    flex-shrink: 0;
}
.menu-logo {
    padding: 40px 60px;
    max-width: 250px;
    max-height: 100px;
    align-items: center;
    color: var(--thm-white);
    display: inline-block;
    background-color: var(--thm-dark-black);
}
.menu-logo {
    padding: 35px 20px;
    min-width: 250px;
    max-height: 100px;
    align-items: center;
    color: var(--thm-white);
    display: flex;
    background-color: var(--thm-black);
    justify-content: center;
}

@media(max-width: 575px) {
    .menu-logo {
        min-width: 170px;
    }
}
.nav-main .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    color: #222;
    line-height: 42px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 20px 12px;
    white-space: nowrap;
}

.nav-main .navbar-nav .nav-link i {
    font-size: 12px;
    margin-left: 3px;
}

.nav-main .navbar-nav .search-icon:hover,
.nav-main .navbar-nav .search-icon:active,
.nav-main .navbar-nav .search-icon:focus {
    color: var(--hx-theme-color) !important;
}

.dropdown .dropdown-menu .dropdown-item i {
    font-size: 12px;
    margin-left: 3px;
}

.nav-main .navbar-nav .nav-link:hover,
.nav-main .navbar-nav .nav-link:focus {
    color: #222
}

.nav-main .navbar-nav .nav-link.active {
    font-weight: 600;
    color: #222
}

.nav-main .navbar-nav-svg {
    width: 1rem;
    height: 1rem
}
.about-footer p {
    font-size: 1.125rem;
    color: var(--white-color);
    margin-bottom: 40px;
    font-stretch: 75%;
}
@media only screen and (max-width: 991px) {
    .about-footer {
        margin: 0 0 30px 0;
    }

    .about-footer p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links ul li {
    text-transform: uppercase;
    color: var(--white-color);
    line-height: normal;
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
    font-stretch: 75%;
}

.footer-links ul li:hover {
    color: var(--accent-secondary-color);
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: var(--white-color);
}

.footer-links ul li a:hover {
    color: var(--white-color) !important;
    text-decoration: underline;
}
.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 20px;
    padding: 50px 0;
    color: var(--white-color);
}

.footer-copyright-text p {
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-privacy-policy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 60px;
    padding-top: 20px;
}

.privacy-policy-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.privacy-policy-list ul li {
    display: inline-block;
    text-transform: capitalize;
    line-height: normal;
    color: var(--white-color);
    border-right: 1px solid var(--dark-divider-color);
    padding-right: 10px;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.privacy-policy-list ul li:hover {
    color: var(--accent-secondary-color);
}

.privacy-policy-list ul li:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.privacy-policy-list ul li a {
    color: #ffffff !important;
}

.privacy-policy-list ul li a:hover {
    color: #ffffff !important;
}

@media only screen and (max-width: 767px) {
    .footer-privacy-policy {
        display: block;
        margin-top: 0;
    }
}

@media only screen and (max-width: 991px) {
    .footer-privacy-policy {
        margin-top: 40px;
    }
}
#pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
}

#pre-loader .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    z-index: 999999;
    background-color: var(--thm-black);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

#pre-loader .loader-section.section-left {
    left: 0;
}

#pre-loader .loader-section.section-right {
    right: 0;
}

#loader-logo {
    display: block;
    position: relative;
    left: calc(50% - 20em/2);
    top: 15%;
    width: 20em;
    height: 9.375em;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../../../img/6-dots-rotate.svg");
    z-index: 1001;
}

#loader-circle {
    display: block;
    position: relative;
    left: 50%;
    top: 35%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fff;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 9999999;
}

#loader-circle:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--thm-gray);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader-circle:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--thm-primary);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.loaded #pre-loader .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #pre-loader .loader-section.section-right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-logo,
.loaded #loader-circle {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #pre-loader {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

.no-js #pre-loader {
    display: none;
}

/***********************
* Animations
***********************/
@keyframes UpDown {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(300px);
    }

    to {
        opacity: 1;
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0);
    }
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0);
    }
}