/** Single **/
.single-post .site-main {
    padding-top: clamp(100px, 14vw, 200px);
}
@media only screen and (min-width: 768px) {
    .sidebar {
        position: sticky;
        top: 100px;
    }
}
.help-heading {
    position: relative;
}
.help-heading ul {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
    background: white;
    padding: clamp(24px, 3vw, 32px) clamp(16px, 2vw, 24px);
}
.help-heading a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    transition: 0.4s;
}
.help-heading a:hover {
    color: var(--color1);
}
.help-heading .title-sidebar {
    display: flex;
    align-items: center;
    gap: clamp(4px, 2vw, 8px);
    font-size: clamp(16px, 2vw, 20px);
    justify-content: center;
    position: relative;
    min-height: 80px;
    background: var(--gray);
}
.help-heading .title-sidebar i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color2);
}
.access-post {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-block: 1.5rem;
}
.access-post a {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 18px;
    cursor: pointer;
    background: var(--gray);
    padding-right: 24px;
    transition: 0.4s;
    font-variation-settings: "wght" 500;
    text-transform: capitalize;
}
.access-post a:hover {
    background: var(--color2);
    color: white;
}
.sidebar-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    margin-top: 1.5rem;
    position: relative;
}
.sidebar-banner img {
    width: 100%;
}
.sidebar-banner:before {
    content: "";
    width: 3rem;
    height: 3rem;
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: white;
    z-index: 2;
    clip-path: polygon(0% 100%, 100% 0, 100% 100%);
}
.sidebar-blog {
    margin-top: 1rem;
}
.sidebar-banner:hover {
    transform: translateY(-10px);
}
.sw--blog--single {
    padding-bottom: 2rem;
}
.section-related .swiper-pagination {
    bottom: 0;
}
.tags_post {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.tags_post a {
    background: var(--gray);
    font-size: 16px;
    padding: 3px 10px;
    min-width: 80px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 94px;
}
.tags_post a:hover {
    background: var(--color2);
    color: white;
}
.single-content {
    border: 1px solid var(--strock);
    padding: clamp(16px, 2vw, 24px);
}
.thumbnail-post-img {
    position: relative;
    margin-block: 1rem clamp(32px, 4vw, 48px);
    text-align: center;
}
.socials-share {
    text-align: center;
    padding-top: 12px;
    display: flex;
    gap: 40px;
    font-size: 18px;
    min-height: clamp(60px, 5vw, 72px);
    justify-content: center;
    position: absolute;
    bottom: -37px;
    left: 50%;
    transform: translateX(-50%);
}
.socials-share:before {
    content: "";
    position: absolute;
    background: white;
    width: clamp(270px, 22vw, 370px);
    height: clamp(32px, 3vw, 40px);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    clip-path: polygon(8% 0%, 92% 0%, 100% 100%, 0% 100%);
}
.socials-share .icon-Share-Circle {
    width: clamp(24px, 3vw, 30px);
    height: clamp(24px, 3vw, 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, 2vw, 18px);
    color: var(--black);
    flex: 0 0 clamp(24px, 3vw, 30px);
}
.single-socials {
    position: relative;
    display: flex;
    height: 30px;
    gap: 28px;
}
.single-socials:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: gray;
    width: 1px;
    height: 15px;
    right: -20px;
}
.tooltip-url {
    position: absolute;
    box-shadow: 0 1px 7px rgba(67, 43, 179, 0.1);
    background: var(--gray);
    padding: 4px;
    border-radius: 11px;
    bottom: 130%;
    min-width: 75px;
    right: 50%;
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    white-space: nowrap;
    font-size: 13px;
    text-align: center;
    z-index: 1;
    color: var(--black);
}
.copy-btn .tooltip-url:hover {
    background: var(--color1);
}
.copy-btn .tooltip-url:hover:before {
    border-color: var(--color1);
}
.copy-btn:hover .tooltip-url {
    opacity: 1;
    visibility: visible;
}
.copy-btn .tooltip-url::before {
    content: "";
    display: block;
    position: absolute;
    right: 50%;
    bottom: -8px;
    width: 0;
    height: 0;
    box-sizing: border-box;
    border: 3px solid #000;
    border-top-color: rgb(0, 0, 0);
    border-right-color: rgb(0, 0, 0);
    border-bottom-color: rgb(0, 0, 0);
    border-left-color: rgb(0, 0, 0);
    border-top-color: rgb(0, 0, 0);
    border-right-color: rgb(0, 0, 0);
    border-bottom-color: rgb(0, 0, 0);
    border-left-color: rgb(0, 0, 0);
    border-top-color: rgb(0, 0, 0);
    border-right-color: rgb(0, 0, 0);
    border-bottom-color: rgb(0, 0, 0);
    border-left-color: rgb(0, 0, 0);
    border-color: white;
    transform-origin: 0 0;
    transform: rotate(-45deg) translateX(50%);
    box-shadow: -1px 1px 3px 0 rgb(106 137 204 / 19%);
    z-index: 0;
}
.copy-btn, .single-socials a {
    color: var(--subtitle);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    position: relative;
    cursor: pointer;
}
.copy-url.copy-btn:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--subtitle);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    left: -15px;
}
.single-socials a:not(:nth-last-child(1)):before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--subtitle);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    left: -15px;
}
.copy-btn:hover,
.single-socials a:hover {
    color: var(--color1);
}
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: clamp(8px, 1vw, 12px);
    gap: 12px;
}
.category_post {
    display: flex;
    align-items: center;
    gap: clamp(6px, 2vw, 8px);
    flex-wrap: wrap;
}
.category_post a {
    color: #767E8B;
    font-size: clamp(14px, 2vw, 16px);
    position: relative;
    transition: 0.4s;
    padding-left: clamp(10px, 2vw, 12px);
}
.category_post a:hover {
    color: var(--color1);
}
.category_post a:before {
    content: "/";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.category_post a:nth-last-child(1) {
    padding-right: 0;
}
.category_post a:nth-last-child(1):before {
    content: none;
}
.category_post a:nth-last-child(1) {
    padding-right: 0;
}
.blog-meta i {
    color: var(--graydark);
    width: clamp(24px, 3vw, 32px);
    height: clamp(24px, 3vw, 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(15px, 2vw, 20px);
}
.blog-meta .post-date {
    color: #767E8B;
    font-size: clamp(14px, 2vw, 16px);
    display: flex;
    align-items: center;
    gap: clamp(6px, 2vw, 8px);
    line-height: 1;
    & span {
        padding-top: 6px;
    }
}
.title-heading {
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.3;
    font-variation-settings: "wght" 600;
}
.swiper-lightgallery {
    margin-block: clamp(40px, 4vw, 56px);
}
.swiper-lightgallery .swiper-pagination {
    bottom: 0;
}
.bg-dark {
    /*background: linear-gradient(180deg, #08224A 65%, #5A75A4);*/
    position: relative;
    padding-block: clamp(40px, 7vw, 98px);
    color: white;
    background: linear-gradient(180deg, rgba(8, 34, 74, 1) 20%, rgba(11, 47, 102, 1) 65%, rgba(90, 117, 164, 1) 100%);
}
.bg-dark .s-subtitle {
    color: var(--gray);
}
.bg-dark a {
    color: white !important;
}
.bg-dark .post-date {
    background: var(--gray1);
    color: var(--gray2);
}
.bg-dark .swiper-navigation div {
    color: white;
    filter: brightness(14);
}
.bg-dark .swiper-navigation div:hover {
    color: var(--color3);
    background-color: white;
    filter: none;
}
@media only screen and (max-width: 768px) {
    .help-heading {
        margin-block: 32px 16px;
    }
    .help-heading .title-sidebar .caticon {
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    .help-heading .title-sidebar .caticon.active {
        transform: translateY(-50%) rotateX(180deg);
    }
    .help-heading .title-sidebar {
        padding-inline: 1rem;
        justify-content: flex-start;
    }
    .help-heading:before {
        color: white;
    }
    .thumbnail-post-img {
        margin: 24px 0 16px;
    }
    .sidebar-blog {
        margin-top: 4rem;
    }
}
.mt-80 {
    margin-top: clamp(40px, 5vw, 80px);
}
.wrap-map p {
    margin: 0 !important;
    text-align: center !important;
}
.wrap-map .s-title {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 30px;
}
.wrap-map .s-title:before {
    content: none;
}
.wrap-map .section-title {
    gap: clamp(8px, 1vw, 16px);
}
.wrap-map iframe {
    height: 300px !important;
}
@media only screen and (max-width: 768px) {
    .wrap-map p {
        text-align: left !important;
    }
}
.wrap-gallery .swiper-navigation div {
    width: clamp(26px, 3vw, 36px);
    height: clamp(26px, 3vw, 36px);
    font-size: clamp(12px, 2vw, 14px);
}
.wrap-gallery .swiper-navigation {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.wrap-gallery .swiper-navigation:before {
    content: "";
    width: clamp(130px, 10vw, 170px);
    height: clamp(28px, 3vw, 38px);
    background: white;
    position: absolute;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    z-index: -1;
    bottom: 8px;
}