:root {
    --theme-primary: #ff6b00;
}

.theme-primary {
    background-color: var(--theme-primary);
}

.text-theme {
    color: var(--theme-primary);
}

.img--block {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

a {
    text-decoration: none !important;
}

.link-hover:hover,
.link-hover:hover h1 {
    color: var(--theme-primary);
}

/* Hero */

.blog-intro {
    padding-block: 160px 80px !important;
}

body {
    background-image: url(../images/dark-intro.webp);
    background-repeat: no-repeat;
    color: var(--white-color);
    background:#0A0C26;
    background-size: cover;
}

/* Blog Categories */

.blog--category {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
    margin: 0;
    overflow-x: auto;
    padding: 0 0 10px;
    width: 100% !important;
}

.blog--category li.active,
.blog--category li:hover {
    color: var(--theme-primary);
    border-color: var(--theme-primary);
    font-weight: 500;
}

.blog--category::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.blog--category::-webkit-scrollbar {
	width: 6px;
    height: 6px;
	background-color: #F5F5F5;
    cursor: pointer;
}

.blog--category::-webkit-scrollbar-thumb {
	background-color: var(--theme-primary);
    cursor: pointer;
}

/* Blog List */

.sticky--column {
    position: sticky;
    top: 130px !important;
}

.page--wrapper img,
.blog--content img {
    width: 100% !important;
    height: 100% !important;
}

.read-more-link {
    color: var(--theme-primary);
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.blog--list img {
    margin: 0 0 20px;
}

/* Share Blog */

.share--blog-list {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.share--blog-list li {
    position: relative;
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2.5rem);
    border-radius: 8px;
    padding: 10px;
}
/* 
.list-unstyled li {
    display: unset !important;
    unicode-bidi: unset;
    list-style: unset;
} */


/* Blog Inner Pages */

.blog--content ul {
    margin: 0 0 20px;
    width: 100%;
}

.table--listing {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.table--content h4 {
    padding-bottom: 16px;
    border-bottom: 1px solid #EBEDEF;
}

.table--content {
    background: var(--theme-primary)08;
    padding: 30px 30px;
    border-radius: 10px;
}

.table--listing li a {
    color: var(--white-color);
}

.table--listing li::before {
    content: '';
    position: absolute;
    inset: 10px auto auto 0;
    margin: auto;
    background-color: var(--theme-primary);
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50px;
    transition: all 0.3s;
}

.table--listing li {
    position: relative;
    padding: 0 0 0 20px;
    transition: all 0.3s;
}

.table--listing li:hover {
    padding: 0 0 0 25px;
}

.table--listing li:hover a {
    color: var(--theme-primary);
}

.table--listing li:hover:before {
    background-color: var(--theme-primary);
}

.blog--block {
    padding: 20px 20px;
    border: 1px solid var(--theme-primary)08;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.blog--detial p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #575757;
}

.blog--block:hover a,
.blog--block:hover h4 {
    color: var(--theme-primary);
}

.blog--block:hover {
    border: 1px dashed var(--theme-primary);
    transform: translateY(-5px);
}

.blog--content a {
    color: var(--theme-primary);
}

/* Recent Blog */

.recent--blog-wrapper {
    padding: 30px 0 0;
}

.recent--blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.recent--blog-list li {
    padding: 0 0 15px;
    border-bottom: 1px solid var(--theme-primary);
    transition: all 0.3s;
    cursor: pointer;
}

.recent--blog-list ul li:last-child {
    border: none !important;
}

.recent--blog-list li a {
    color: var(--white-color);
    transition: all 0.3s;
}

.recent--blog-list li:hover {
    border-bottom: 1px dashed var(--theme-primary);
    transform: translateY(-2px);
}

.recent--blog-list li:hover a,
.recent--blog-list li a:hover {
    color: var(--theme-primary);
}

/* Responsive */


@media only screen  and (max-width: 1599px) {

    .table--content {
        padding: 15px 15px;
    }

    .table--content h4 {
        padding-bottom: 10px;
        margin: 0 0 10px !important;
    }

    .table--listing li {
        position: relative;
        padding: 0 0 0 15px;
        line-height: 24px;
    }

    .table--listing li a {
        font-size: 14px;
        line-height: 19px !important;
    }

    .table--listing {
        gap: 5px;
    }

}

@media only screen  and (max-width: 991px) {

    .seo-breadcrumb-sc {
        margin-top: 100px;
        margin-bottom: 0;
    }

    .row-order {
        flex-direction: column-reverse;
    }

    .blog--content {
        padding: 24px 24px;
        background-color: #dddddd30;
    }

}