.single-article {
    margin-top: 5rem;
}

.single-title .title-heading {
    color: var(--text);
    font-family: var(--bold_font);
    font-size: clamp(24px, 2vw, 28px);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E8E8E8;
}

.blog-meta .single-cat-shtim {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.category_post {
    display: flex;
    align-items: center;
}

.category_post i {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--text);
    margin-left: 0.5rem;
}

.category_post:not(.tag_post) a {
    color: var(--text);
    font-size: clamp(14px, 2vw, 16px);
    font-family: var(--main_font);
    transition: 0.3s;
    position: relative;
    line-height: 1.5;
}

.category_post:not(.tag_post) a:not(:last-child) {
    margin-left: 1.5rem;
}

.category_post:not(.tag_post) a:hover {
    color: var(--color2);
}

.category_post:not(.tag_post) a:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    background-color: var(--color2);
    left: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

.single-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
}

.single-time::after {
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    background-color: var(--color2);
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

.single-time i {
    width: clamp(1.125rem, 2vw, 1.25rem);
    height: clamp(1.125rem, 2vw, 1.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text);
}

.single-time time {
    font-size: clamp(14px, 2vw, 16px);
    font-family: var(--regular_font);
    color: var(--text);
    line-height: 1.3;
    margin-top: 0.25rem;
}

.thumbnail-post-img {
    margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.thumbnail-post-img img {
    width: 100%;
    border-radius: 1rem !important;
}

.share-time {
    display: flex;
    align-items: center;
    position: relative;
    gap: 1.5rem;
}

.socials-share {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0.75rem;
    overflow: visible;
}

.socials-share .socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    opacity: 0;
    visibility: hidden;
    max-width: 0;
    min-width: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translate3d(0.85rem, 0.35rem, 0) scale(0.94);
    filter: blur(2px);
    transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.6s,
        transform 0.6s cubic-bezier(0.34, 1.25, 0.64, 1),
        max-width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;
}

.socials-share:hover .socials,
.socials-share:focus-within .socials,
.socials-share.is-open .socials {
    opacity: 1;
    visibility: visible;
    max-width: 22rem;
    overflow: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s,
        transform 0.6s cubic-bezier(0.34, 1.25, 0.64, 1),
        max-width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;
}

.socials-share .icon-share {
    color: var(--text);
    width: clamp(1.125rem, 2vw, 1.25rem);
    height: clamp(1.125rem, 2vw, 1.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 50%;
    transition: color 0.25s ease, transform 0.38s cubic-bezier(0.34, 1.25, 0.64, 1);
}

.socials-share:hover .icon-share,
.socials-share:focus-within .icon-share,
.socials-share.is-open .icon-share {
    color: var(--color2);
    transform: rotate(-10deg) scale(1.08);
}

.socials-share .icon-share:focus-visible {
    outline: 2px solid var(--color2);
    outline-offset: 3px;
}

.copy-btn {
    color: var(--text);
    width: clamp(24px, 2vw, 30px);
    height: clamp(24px, 2vw, 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 1.125rem);
    border: 1px solid var(--text);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1;
}

.copy-btn:hover,
.copy-btn:focus-visible {
    z-index: 2;
}

.copy-btn .tooltip-url {
    position: absolute;
    box-shadow: 0 1px 7px rgba(67, 43, 179, 0.1);
    background: var(--color1);
    padding: 6px 8px;
    bottom: 115%;
    min-width: 75px;
    right: 50%;
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    white-space: nowrap;
    font-size: 12px;
    direction: ltr;
    color: var(--white);
    text-align: center;
    z-index: 10;
    border-radius: 0.5rem;
    pointer-events: none;
}

.copy-btn:hover .tooltip-url,
.copy-btn:focus-visible .tooltip-url,
.copy-btn.is-copied .tooltip-url,
.copy-btn.is-error .tooltip-url {
    opacity: 1;
    visibility: visible;
}

.socials-share .socials a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--text);
    transition:
        opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.32s cubic-bezier(0.34, 1.25, 0.64, 1),
        border-color 0.3s ease,
        color 0.3s ease,
        visibility 0s linear 0.32s;
    border: 1px solid var(--text);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(9px);
}

.socials-share:hover .socials a,
.socials-share:focus-within .socials a,
.socials-share.is-open .socials a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.05s, 0.05s, 0s, 0s, 0s;
}

.socials-share:hover .socials a:nth-child(1),
.socials-share:focus-within .socials a:nth-child(1),
.socials-share.is-open .socials a:nth-child(1) {
    transition-delay: 0.04s;
}

.socials-share:hover .socials a:nth-child(2),
.socials-share:focus-within .socials a:nth-child(2),
.socials-share.is-open .socials a:nth-child(2) {
    transition-delay: 0.1s;
}

.socials-share:hover .socials a:nth-child(3),
.socials-share:focus-within .socials a:nth-child(3),
.socials-share.is-open .socials a:nth-child(3) {
    transition-delay: 0.16s;
}

.socials-share:hover .socials a:nth-child(4),
.socials-share:focus-within .socials a:nth-child(4),
.socials-share.is-open .socials a:nth-child(4) {
    transition-delay: 0.22s;
}

.socials-share:hover .socials a:nth-child(5),
.socials-share:focus-within .socials a:nth-child(5),
.socials-share.is-open .socials a:nth-child(5) {
    transition-delay: 0.28s;
}

.socials-share:hover .socials a:nth-child(n + 6),
.socials-share:focus-within .socials a:nth-child(n + 6),
.socials-share.is-open .socials a:nth-child(n + 6) {
    transition-delay: 0.34s;
}

.socials-share:not(:hover):not(:focus-within):not(.is-open) .socials a {
    transition-delay: 0s !important;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        visibility 0s linear 0.22s;
}

@media (prefers-reduced-motion: reduce) {

    .socials-share .socials,
    .socials-share .socials a,
    .socials-share .icon-share {
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        filter: none !important;
    }

    .socials-share .socials {
        transform: none;
    }

    .socials-share:hover .socials,
    .socials-share:focus-within .socials,
    .socials-share.is-open .socials {
        transform: none;
    }

    .socials-share:not(:hover):not(:focus-within):not(.is-open) .socials a {
        transform: none;
    }

    .socials-share:hover .socials a,
    .socials-share:focus-within .socials a,
    .socials-share.is-open .socials a {
        transform: none;
    }
}

.socials-share .socials a:hover:not(.copy-btn) {
    color: var(--color2);
    border: 1px solid var(--color2);
}

.help-heading {
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 2rem;
}

.help-heading .help-heading-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: var(--color2);
    border-radius: 1rem;
    height: 66px;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.help-heading .help-heading-title i {
    color: var(--white);
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.help-heading .help-heading-list li a {
    margin-bottom: 1.75rem;
    font-family: var(--main_font);
    transition: 0.3s;
    color: #444343;
    line-height: 1.4;
    position: relative;
    padding: 0 1.125rem;
    font-size: 14px;
}

.help-heading .help-heading-list li a::before {
    content: '';
    background-color: #B1B1B180;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.help-heading .help-heading-list li a:hover::before {
    background-color: #147A7F;
}

.help-heading .help-heading-list li:first-child a {
    margin-top: 1.5rem;
}

.help-heading .help-heading-list li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0.875rem;
}

.help-heading .help-heading-list li a:hover {
    color: #147A7F;
}

.editor-content.main-content.single-content {
    border: 1px solid #E8E8E8;
    padding: clamp(2rem, 2vw, 3rem);
    border-radius: 1rem;
    margin-top: clamp(1.5rem, 2vw, 3rem);
}

.category_post.tag_post {
    margin-top: 3rem;
    gap: 0.75rem;
    border: 1px solid #E8E8E8;
    border-radius: 1rem;
    padding: 30px 1rem;
    flex-wrap: wrap;
}

.category_post.tag_post span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color2);
    font-size: 1.125rem;
}

.category_post.tag_post span i {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--color2);
    border-radius: 50%;
    font-size: 1.125rem;
}

.category_post.tag_post .single-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.category_post.tag_post a {
    color: #707070;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    position: relative;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.category_post.tag_post a:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    background-color: var(--color2);
    left: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

.category_post.tag_post a:hover {
    color: var(--color2);
}

.single-section-blog .title-heading {
    color: var(--text);
}

.general-subtitle {
    color: #444343;
}

.single-section-blog {
    z-index: 3;
    position: relative;
    padding: 68px 0;
    background-color: #F3F8FD;
    overflow: hidden;
}

.single-section-blog .sw-navigation.sw-between .swiper-nav-next {
    right: -1rem;
}

.single-section-blog .sw-navigation.sw-between .swiper-nav-prev {
    left: -1rem;
}

.section-base-single {
    margin: 3rem 0 auto;
}

.section-faq-single .section-title.text-center {
    text-align: right !important;
    margin-bottom: 3rem;
}

.section-faq-single .title-heading-sub {
    display: none !important;
}

.author-wrapper {
    padding: 1rem;
    background-color: #F8F8F8;
    border-radius: 1rem;
    margin: 3rem 0 auto;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    line-height: 1.4;
    color: var(--text);
}

.author-post {
    color: #147A7F;
    font-size: 14px;
    line-height: 1.4;
}

.author-img img {
    max-width: 69px;
    max-height: 69px;
    border-radius: 0.75rem;
}

.author-desc p {
    color: var(--color3);
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: justify;
}

.author-napo {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.access-list {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.access-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    background-color: #F8F8F8;
    font-size: 1.125rem;
    line-height: 1.4;
    transition: 0.3s;
    height: 60px;
    padding: 0 1rem;
    border-radius: 1rem;
    color: var(--text);
    transition: 0.3s;
}

.access-list li a:hover {
    color: #147A7F;
}

.access-list li a i {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text);
    transition: 0.3s;
}

.access-list li a:hover i {
    color: #147A7F;
}

.sidebar.sidebar-post .widget_media_image img {
    width: 100%;
}

.single-article #news-related,
.single-article #faqs,
.single-article #comments-single,
.single-article .editor-content.main-content h2[id^="section-"] {
    scroll-margin-top: calc(50px + 6rem + 24px);
}

@media (max-width: 991.99px) {
    .single-title .title-heading {
        margin-bottom: 1.25rem;
    }

    .single-cat-shtim {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .single-section-blog {
        padding: 3rem 0;
    }

    .help-heading .help-heading-title {
        justify-content: flex-start;
        padding: 0 1rem;
        cursor: pointer;
        margin-bottom: 0;
    }

    .single-post .help-heading .caticon {
        left: 2.5rem;
        top: 34px;
        background-color: var(--white);
        color: var(--color2);
    }

    .help-heading .help-heading-title .caticon.active {
        transform: scaleY(-1);
    }

    .widget-side.widget_media_image {
        display: table;
        margin: auto;
        margin-top: 4rem;
    }

    .share-time {
        width: 100%;
        justify-content: flex-end;
    }

    .category_post.tag_post {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .section-faq-single .section-title .title-heading {
        text-align: center;
    }
}

@media (min-width: 991.99px) {
    .general-subtitle {
        max-width: 40%;
    }
}

@media (min-width: 767.99px) and (max-width: 991.99px) {
    .single-cat-shtim {
        flex-wrap: nowrap;
    }
}