/*** 
=============================================
    Blog Style1 Css
=============================================
***/
.blog-style1 {
    padding: 140px 0px 90px;
}

.blog-style1__single {
    position: relative;
    display: block;
    margin-bottom: 50px;
    z-index: 1;
}

.blog-style1__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
    z-index: 1;
	margin-bottom: 35px;
	text-align: center;
}

.blog-style1__single-img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.blog-style1__single:hover .blog-style1__single-img::before {
    opacity: 0.50;
}

.blog-style1__single-img img {
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.blog-style1__single:hover .blog-style1__single-img img {
    transform: scale(1.05) rotate(0deg);
}


.blog-style1__single-content {
    position: relative;
    display: block;
    z-index: 1;
}

.blog-style1__single-content-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 19px;
}

.blog-style1__single-content-top .text-box {
    position: relative;
    display: block;
    padding-left: 15px;
}

.blog-style1__single-content-top .text-box::before {
    position: absolute;
    top: 3px;
    left: 0;
    bottom: 4px;
    width: 1px;
    background: var(--thm-border-color);
    content: "";
}

.blog-style1__single-content-top .text-box h4 {
    color: #a3a0a7;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.blog-style1__single-content-top .text-box p {
    margin: 0;
}

.blog-style1__single-content-top .text-box p span {
    color: var(--thm-primary-color);
}

.blog-style1__single-content-top .btn-box {
    position: relative;
    display: block;
}

.blog-style1__single-content-top .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-black);
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid var(--thm-border-color);
    border-radius: var(--thm-border-radius);
    overflow: hidden;
    z-index: 1;
}

.blog-style1__single-content-top .btn-box a:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: var(--thm-primary-color);
    transform: scale(0.6);
    opacity: 0;
    z-index: -1;
    border-radius: var(--thm-border-radius);
    transition: all 500ms ease;
}

.blog-style1__single-content-top .btn-box a:hover:before {
    opacity: 1;
    transform: scale(1);
}

.blog-style1__single-content-top .btn-box a:hover {
    color: var(--thm-white);
}

.blog-style1__single-content-top .btn-box a span {
    position: relative;
    display: inline-block;
    font-size: 30px;
    line-height: 30px;
}

.blog-style1__single-content h2 {
    font-size: 24px;
    line-height: 34px;
}

.blog-style1__single-content h2 a {
    color: var(--thm-black);
}

.blog-style1__single-content h2 a:hover {
    color: var(--thm-primary-color);
}

.blog-style1__single-content .category-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 28px;
	flex-wrap: wrap;
	gap: 10px;
}

.blog-style1__single-content .category-box a {
    position: relative;
    display: block;
    overflow: hidden;
    color: #a3a0a7;
    font-size: 13px;
    line-height: 23px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 9px 19px 8px;
    border-radius: 21px;
    border: 1px solid var(--thm-border-color);
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.blog-style1__single-content .category-box a:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    background: var(--thm-primary-color);
    border-radius: 21px;
    transform: scale(0.8);
    opacity: 0;
    z-index: -1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-style1__single-content .category-box a:hover:before {
    opacity: 1;
    transform: scale(1);
}

.blog-style1__single-content .category-box a:hover {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
    border-color: var(--thm-primary-color);
}



/*** 
=============================================
    Blog Style1 IN Style2 Css
=============================================
***/
.blog-style1__single--style2 .blog-style1__single-content-top .btn-box a {
    color: var(--thm-white);
}

.blog-style1__single--style2 .blog-style1__single-content h2 a {
    color: var(--thm-white);
}

.blog-style1__single--style2 .blog-style1__single-content h2 a:hover {
    color: var(--thm-primary-color);
}



/*** 
=============================================
    Blog Style2 Css
=============================================
***/
.blog-style2 {
    position: relative;
    display: block;
    background-color: #f9f6f3;
    padding: 140px 0px 90px;
    overflow: hidden;
}

.blog-style2__top-box {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 49px;
}

.blog-style2__top-box .sec-title {
    padding-bottom: 0;
}

.blog-style2__top-box .sec-title h2 {
    color: var(--thm-black);
}

.blog-style2__top-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    top: -11px;
}

.blog-style2__top-box .btn-box .btn-one:after {
    background-color: #e95637;
}



.blog-style2__single {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid #dedad4;
    margin-bottom: 40px;
    padding: 31px 30px 33px;
}

.blog-style2__single-title {
    position: relative;
    display: block;
}

.blog-style2__single-title h3 {
    font-size: 23px;
    line-height: 34px;
}

.blog-style2__single-title h3 a {
    color: var(--thm-black);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.blog-style2__single-title h3 a:hover {
    color: var(--thm-primary-color);
}

.blog-style2__single-category {
    position: relative;
    display: block;
    padding-top: 28px;
}

.blog-style2__single-category span {
    position: relative;
    display: inline-block;
    color: #a5a1a0;
    font-size: 13px;
    line-height: 40px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    border: 1px solid #a5a1a0;
    padding: 0 15px 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-style2__single-category span+span {
    margin-left: 5px;
}

.blog-style2__single:hover .blog-style2__single-category span {
    color: var(--thm-black);
    border: 1px solid transparent;
}

.blog-style2__single-post {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 95px;
}

.blog-style2__single-post .author-box {
    position: relative;
    display: block;
}

.blog-style2__single-post .author-box h5 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 7px;
}

.blog-style2__single-post .author-box h5 a {
    color: #a5a1a0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-style2__single-post .author-box h5 a:hover {
    color: var(--thm-primary-color);
}

.blog-style2__single-post .author-box p {
    margin: 0;
}

.blog-style2__single-post .author-box p span {
    color: #ea654b;
}

.blog-style2__single-post .btn-box {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.blog-style2__single-post .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    border: 1px solid #dfdbd5;
    background-color: transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-style2__single-post .btn-box a:hover {
    border-color: #e95637;
    background-color: #e95637;
}

.blog-style2__single-post .btn-box a span {
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-style2__single-post .btn-box a:hover span {
    color: var(--thm-white);
}




.blog-style2__single-overlay {
    position: absolute;
    right: 50px;
    bottom: 90px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 999;
}

.blog-style2__single-overlay__bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    pointer-events: none;
    -webkit-animation: inactiveImageAnimation 1s forwards ease;
    animation: inactiveImageAnimation 1s forwards ease;
}

.hover-background-active:hover .blog-style2__single-overlay__bg {
    -webkit-animation: activeImageAnimation 1s forwards ease;
    animation: activeImageAnimation 1s forwards ease;
}



@keyframes inactiveImageAnimation {
    0% {
        clip-path: inset(0 0 0 0);
    }

    100% {
        clip-path: inset(0 0 0 100%);
    }
}

@keyframes activeImageAnimation {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}


.blog-style2__carousel.owl-carousel .owl-stage-outer {
    margin-right: -375px;
}



/*** 
=============================================
    Blog Page One Css
=============================================
***/
.blog-page-one {
    padding: 140px 0 140px;
}


/*** 
=============================================
    Blog Page Two Css
=============================================
***/
.blog-page-two {
    padding: 140px 0 140px;
}



/*** 
=============================================
    Blog Page Three Css
=============================================
***/
.blog-page-three {
    padding: 140px 0px 140px;
}

.blog-page-three__content {
    position: relative;
    display: block;
}

.blog-style1__single--style3 {
    margin-bottom: 60px;
}

.blog-style1__single--style3 .blog-style1__single-content-top .text-box ul {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-style1__single--style3 .blog-style1__single-content-top .text-box ul li {
    position: relative;
}

.blog-style1__single--style3 .blog-style1__single-content h2 {
    font-size: 30px;
    line-height: 40px;
}

.blog-style1__single--style3 .blog-style1__single-content .text {
    position: relative;
    display: block;
}




/*** 
=============================================
    Blog Page Four Css
=============================================
***/
.blog-page-four {
    position: relative;
    display: block;
    background: #fbf8ff;
    padding: 140px 0px 100px;
    z-index: 1;
}

.blog-page-four__content {
    position: relative;
    display: block;
}

.blog-style3__single {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.blog-style3__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    margin-right: 10px;
    z-index: 1;
}

.blog-style3__single-img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.blog-style3__single:hover .blog-style3__single-img::before {
    opacity: 0.50;
}

.blog-style3__single-img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.blog-style3__single:hover .blog-style3__single-img img {
    transform: scale(1.05) rotate(0deg);
}

.blog-style3__single-img a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(100px);
    transition: all 700ms ease;
    z-index: 2;
}

.blog-style3__single:hover .blog-style3__single-img a {
    opacity: 1;
    transform: translateY(0px);
}

.blog-style3__single-img a span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 30px;
    transition: all 700ms ease;
}

.blog-style3__single-img a span:hover {
    color: var(--thm-secondary-color);
}



.blog-style3__single-content {
    position: relative;
    display: block;
    padding-top: 0px;
}

.blog-style3__single-content .category-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 21px;
}

.blog-style3__single-content .category-box a {
    position: relative;
    display: block;
    overflow: hidden;
    color: #a3a0a7;
    font-size: 13px;
    line-height: 23px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 19px 7px;
    border-radius: 20px;
    border: 1px solid var(--thm-border-color);
    transition: all 200ms linear 0.1s;
    z-index: 1;
}

.blog-style3__single-content .category-box a::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-primary-color);
    border-radius: 20px;
    transform: scale(0.8);
    opacity: 0;
    z-index: -1;
    transition: all 200ms linear 0.1s;
}

.blog-style3__single-content .category-box a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.blog-style3__single-content .category-box a+a {
    margin-left: 10px;
}

.blog-style3__single-content .category-box a:hover {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
    border-color: var(--thm-primary-color);
}

.blog-style3__single-content h3 {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 34px;
}

.blog-style3__single-content h3 a:hover {
    color: var(--thm-primary-color);
}

.blog-style3__single-content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.blog-style3__single-content-bottom .text-box {
    position: relative;
    display: block;
    padding-left: 15px;
}

.blog-style3__single-content-bottom .text-box::before {
    position: absolute;
    top: 3px;
    left: 0;
    bottom: 4px;
    width: 1px;
    background: var(--thm-border-color);
    content: "";
}

.blog-style3__single-content-bottom .text-box h5 {
    color: #a3a0a7;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
}

.blog-style3__single-content-bottom .text-box p {
    margin: 0;
}

.blog-style3__single-content-bottom .text-box p span {
    color: var(--thm-primary-color);
}


.blog-style3__single-content-bottom .btn-box {
    position: relative;
    display: block;
}

.blog-style3__single-content-bottom .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-black);
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid var(--thm-border-color);
    border-radius: var(--thm-border-radius);
    overflow: hidden;
    z-index: 1;
}

.blog-style3__single-content-bottom .btn-box a:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: var(--thm-primary-color);
    transform: scale(0.6);
    opacity: 0;
    z-index: -1;
    border-radius: var(--thm-border-radius);
    transition: all 500ms ease;
}

.blog-style3__single-content-bottom .btn-box a:hover:before {
    opacity: 1;
    transform: scale(1);
}

.blog-style3__single-content-bottom .btn-box a:hover {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
    border-color: var(--thm-primary-color);
}

.blog-style3__single-content-bottom .btn-box a span {
    position: relative;
    display: inline-block;
    font-size: 30px;
    line-height: 30px;
}


















/***
=============================================
    Blog Details Area Css
=============================================
***/
.boog-details {
    position: relative;
    display: block;
    padding: 140px 0 90px;
    z-index: 10;
}

.boog-details__content {
    position: relative;
    display: block;
}

.blog-post-info {
    position: relative;
    display: block;
    padding-bottom: 50px;
}

.blog-post-info-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-post-info__author {
    position: relative;
    display: block;
    border-left: 1px solid var(--thm-border-color);
    padding-left: 15px;
}

.blog-post-info__author h5 {
    color: #a3a0a7;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
}

.blog-post-info__author ul {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.blog-post-info__author ul li {
    position: relative;
    display: block;
}

.blog-post-info__author ul li+li {
    margin-left: 13px;
}

.blog-post-info__author ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font);
    font-weight: 400;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-post-info__author ul li a:hover {
    color: var(--thm-primary-color);
}

.blog-post-info__author ul li.dotted {
    position: relative;
    top: -7px;
    width: 2px;
    height: 2px;
    background-color: var(--thm-primary-color);
}

.blog-post-info__author ul li.dotted::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2px;
    height: 2px;
    background-color: var(--thm-primary-color);
    margin-left: 4px;
}

.blog-post-info__author ul li.dotted::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 2px;
    background-color: var(--thm-primary-color);
    margin-right: 4px;
}



.blog-post-social-share {
    position: relative;
    display: block;
}

.blog-post-social-share span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f0ebf5;
    border-radius: 50%;
    color: #302e32;
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}

.blog-post-social-share:hover span {
    color: #ffffff;
    background-color: var(--thm-primary-color);
}

.blog-post-social-share ul {
    position: absolute;
    display: flex;
    align-items: center;
    top: 5px;
    right: 0;
    white-space: nowrap;
    transform: translateX(65px);
    opacity: 0;
    width: 285px;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.blog-post-social-share:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.blog-post-social-share ul li {
    position: relative;
    display: block;
}

.blog-post-social-share ul li {
    margin-left: 5px;
}

.blog-post-social-share ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: #f0ebf5;
    border-radius: 50%;
    color: #302e32;
    font-size: 16px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.blog-post-social-share ul li a:hover {
    color: var(--thm-white);
}

.blog-post-social-share ul li a::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: var(--thm-primary-color);
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.blog-post-social-share ul li a:hover::before {
    opacity: 1;
    transform: scale(1);
    border-radius: 50%;
}



.blog-post-info-category {
    position: relative;
    display: block;
    padding-top: 28px;
}

.blog-post-info-category a {
    position: relative;
    display: inline-block;
    color: #a5a1a0;
    font-size: 13px;
    line-height: 40px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    border: 1px solid #a5a1a0;
    padding: 0 15px 0;
}



.blog-details__img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
	margin-bottom: 35px;
}

.blog-details__img-box img {
    width: 100%;
}


.blog-details__text-box {
    position: relative;
    display: block;
    padding-top: 43px;
}

.blog-details__text-box p {
    margin: 0;
}

.blog-details__text-box p:first-child::first-letter {
    position: relative;
    display: block;
    float: left;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: var(--thm-primary-color);
    border-radius: var(--thm-border-radius);
    color: var(--thm-white);
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    margin-top: 7px;
    margin-right: 20px;
    padding: 14px 22.5px 15px
}

.blog-details__text-box p+p {
    margin-top: 26px;
}



.blog-details__text1 {
    position: relative;
    display: block;
    padding-top: 44px;
}

.blog-details__text1 .inner-title {
    position: relative;
    display: block;
}

.blog-details__text1 .inner-title h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 25px;
}

.blog-details__text1 .inner-title>ul {
    position: relative;
    display: block;
    padding-top: 26px;
}

.blog-details__text1 .inner-title ul>li {
    position: relative;
    display: block;
    padding-left: 40px;
}

.blog-details__text1 .inner-title>ul>li+li {
    margin-top: 26px;
}

.blog-details__text1 .inner-title>ul>li .icon {
    position: absolute;
    top: 5px;
    left: 0;
    line-height: 0;
}

.blog-details__text1 .inner-title>ul>li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 20px;
}

.blog-details__text1 .inner-title>ul>li .text {
    position: relative;
    display: block;
}

.blog-details__text1 .inner-title>ul>li .text h3 {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 11px;
}

.blog-details__text1 .inner-title>ul>li .text p {
    margin: 0;
}



.blog-details__text1 .inner-title>ul>li ol {
    position: relative;
    display: block;
    border-left: 1px solid var(--thm-border-color);
    padding-left: 25px;
    margin-top: 23px;
}

.blog-details__text1 .inner-title>ul>li ol li {
    position: relative;
    display: block;
    padding-left: 30px;
}

.blog-details__text1 .inner-title>ul>li ol li+li {
    margin-top: 11px;
}

.blog-details__text1 .inner-title>ul>li ol li .icon2 {
    position: absolute;
    top: 2px;
    left: 0;
    line-height: 0;
}

.blog-details__text1 .inner-title>ul>li ol li .icon2 span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
}

.blog-details__text1 .inner-title>ul>li ol li p {
    color: #141316;
}



.blog-details__quote-box {
    position: relative;
    display: block;
    border-radius: 10px;
    background-color: #141316;
    padding: 32px 40px 34px;
    margin-top: 60px;
}

.blog-details__quote-box h3 {
    color: var(--thm-white);
    font-size: 21px;
    line-height: 31px;
    font-weight: 600;
}

.blog-details__quote-box .bottom-box {
    position: relative;
    display: block;
    border-top: 1px solid #29282c;
    padding-top: 23px;
    margin-top: 23px;
}

.blog-details__quote-box .bottom-box h4 {
    color: #a3a0a7;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 9px;
}

.blog-details__quote-box .bottom-box h6 {
    color: var(--thm-primary-color);
    font-size: 14px;
    line-height: 24px;
}



.blog-details__text2 {
    position: relative;
    display: block;
    padding-top: 43px;
}

.blog-details__text2 p {
    margin: 0;
}



.blog-details-tag-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 53px;
}

.blog-details-tag-box .inner-title {
    position: relative;
    display: block;
}

.blog-details-tag-box .inner-title h3 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
	margin-bottom: 0px;
}

.blog-details-tag-box .inner-title h3 span {
    position: relative;
    top: 1px;
    color: var(--thm-primary-color);
    font-size: 15px;
    line-height: 15px;
    margin-right: 10px;
}

.blog-details-tag-box ul {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.blog-details-tag-box ul li {
    position: relative;
    display: block;
}

.blog-details-tag-box ul li+li {
    margin-left: 10px;
}

.blog-details-tag-box ul li a {
    position: relative;
    display: inline-block;
    color: #6d6b71;
    font-size: 16px;
    line-height: 40px;
    font-family: var(--thm-font);
    font-weight: 400;
    border-radius: 20px;
    background-color: #f0ebf5;
    padding: 0px 15px 0px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details-tag-box ul li a:hover {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
}



.blog-details-author-box {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    border: 1px solid var(--thm-border-color);
    padding: 34px 40px 28px;
    margin-top: 60px;
}

.blog-details-author {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details-author .img-box {
    position: relative;
    display: block;
    border-radius: 50%;
    overflow: hidden;
    width: 150px;
    height: 150px;
}

.blog-details-author .img-box img {
    width: 100%;
}

.blog-details-author .text-box {
    position: relative;
    display: block;
    padding-left: 30px;
    flex: 1;
}

.blog-details-author .text-box__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
}

.blog-details-author .text-box__top .left {
    position: relative;
    display: block;
}

.blog-details-author .text-box__top .left h5 {
    color: var(--thm-primary-color);
    font-size: 13px;
    line-height: 23px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.blog-details-author .text-box__top .left h3 {
    font-size: 21px;
    line-height: 30px;
}

.blog-details-author .text-box__top .right {
    position: relative;
    display: block;
}

.blog-details-author .text-box__top .right .social-links {
    position: relative;
    display: block;
}

.blog-details-author .text-box__top .right .social-links ul {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details-author .text-box__top .right .social-links ul li {
    position: relative;
    display: block;
}

.blog-details-author .text-box__top .right .social-links ul li+li {
    margin-left: 10px;
}

.blog-details-author .text-box__top .right .social-links ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f0ebf5;
    color: #a8a5ac;
    font-size: 18px;
    line-height: 45px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1
}

.blog-details-author .text-box__top .right .social-links ul li a:hover {
    color: var(--thm-white);
}

.blog-details-author .text-box__top .right .social-links ul li a::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: var(--thm-primary-color);
    content: "";
    opacity: 0;
    transform: scale(0.5);
    border-radius: 50%;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.blog-details-author .text-box__top .right .social-links ul li a:hover::before {
    opacity: 1;
    transform: scale(1);
    border-radius: 50%;
}


.blog-details-author .text-box .text-box__bottom {
    position: relative;
    display: block;
}

.blog-details-author .text-box .text-box__bottom p {
    margin: 0;
}

.blog-details-author .text-box .text-box__bottom a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 16px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details-author .text-box .text-box__bottom a:hover {
    color: var(--thm-primary-color);
}

.blog-details-author .text-box .text-box__bottom a span {
    color: var(--thm-primary-color);
    font-size: 25px;
    line-height: 25px;
    margin-right: 5px;
}

.blog-details-author .text-box .text-box__bottom a:hover span {
    color: var(--thm-black);
}



.blog-prev-next-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 53px;
}

.blog-prev-next-option .single-box {
    position: relative;
    display: block;
}

.blog-prev-next-option .single-box.left {
    text-align: left;
}

.blog-prev-next-option .single-box.right {
    text-align: right;
}

.blog-prev-next-option .single-box .title-box {
    position: relative;
    display: block;
}

.blog-prev-next-option .single-box .title-box .button-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-bottom: 11px;
}

.blog-prev-next-option .single-box .title-box .button-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #a3a0a7;
    font-size: 16px;
    line-height: 25px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-prev-next-option .single-box .title-box .button-box a:hover {
    color: var(--thm-primary-color);
}

.blog-prev-next-option .single-box .title-box .button-box a span {
    position: relative;
    top: 1px;
    display: inline-block;
    font-size: 25px;
    line-height: 25px;
}

.blog-prev-next-option .single-box.left .title-box .button-box a span {
    margin-right: 5px;
}

.blog-prev-next-option .single-box.right .title-box .button-box a span {
    margin-left: 5px;
}

.blog-prev-next-option .single-box .title-box h3 {
    font-size: 19px;
    line-height: 29px;
}

.blog-prev-next-option .single-box .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-prev-next-option .single-box .title-box h3 a:hover {
    color: var(--thm-primary-color);
}



.back-to-blog-post-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #f0ebf5;
    margin-top: 33px;
}

.back-to-blog-post-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 55px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.back-to-blog-post-btn a:hover {
    color: var(--thm-primary-color);
}

.back-to-blog-post-btn a span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 16px;
    top: 1px;
    margin-right: 7px;
}



.comment-box {
    position: relative;
    display: block;
    padding-top: 70px;
}

.comment-box .inner-title {
    position: relative;
    display: block;
}

.comment-box .inner-title h2 {
    font-size: 30px;
    line-height: 40px;
}

.comment-box .outer-box {
    position: relative;
    display: block;
    padding-top: 25px;
}

.comment-box .outer-box .single-comment {
    position: relative;
    display: block;
}

.comment-box .outer-box .single-comment .inner {
    position: relative;
    display: block;
    padding-left: 100px;
}

.comment-box .outer-box .single-comment .inner .img-holder {
    position: absolute;
    top: 7px;
    left: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 10px;
}

.comment-box .outer-box .single-comment .inner .img-holder img {
    width: 100%;
}

.comment-box .outer-box .single-comment .inner .text-holder {
    position: relative;
    display: block;
}

.comment-box .outer-box .single-comment .inner .text-holder .top {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.comment-box .outer-box .single-comment .inner .text-holder .top h3 {
    font-size: 19px;
    line-height: 29px;
    margin-bottom: 11px;
}

.comment-box .outer-box .single-comment .inner .text-holder .top p {
    position: relative;
    top: -4px;
    color: #141316;
    margin-left: 10px;
}

.comment-box .outer-box .single-comment .inner .text-holder .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 16px;
}

.comment-box .outer-box .single-comment .inner .text-holder .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 25px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.comment-box .outer-box .single-comment .inner .text-holder .btn-box a:hover {
    color: var(--thm-primary-color);
}

.comment-box .outer-box .single-comment .inner .text-holder .btn-box a span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 16px;
    font-weight: 400;
    top: 2px;
    margin-right: 10px;
}



.add-comment-box {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid var(--thm-border-color);
    padding: 41px 30px 50px;
    margin-top: 79px;
}

.add-comment-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 33px;
}

.add-comment-box .inner-title h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
}

.add-comment-box .inner-title p {
    margin: 0;
}

.add-comment-box #add-comment-form {
    position: relative;
    display: block;
}

.add-comment-box #add-comment-form .input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.add-comment-box #add-comment-form .input-box.input-box--sytle1 {
    margin-bottom: 13px;
}

.add-comment-box #add-comment-form .input-box .field-label {
    position: relative;
    display: block;
}

.add-comment-box #add-comment-form .input-box .field-label p {
    margin: 0;
}

.add-comment-box #add-comment-form input[type="text"],
.add-comment-box #add-comment-form input[type="email"],
.add-comment-box #add-comment-form textarea {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid var(--thm-border-color);
    background: transparent;
    width: 100%;
    height: 55px;
    color: #a3a0a7;
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 400;
    font-style: normal;
    text-transform: capitalize;
    padding: 0 20px;
    transition: all 500ms ease;
}

.add-comment-box #add-comment-form textarea {
    height: 120px;
    padding: 14px 20px;
}

.add-comment-box #add-comment-form input[type="text"]:focus {
    border-color: var(--thm-primary-color);
}

.add-comment-box #add-comment-form input[type="email"]:focus {
    border-color: var(--thm-primary-color);
}

.add-comment-box #add-comment-form textarea:focus {
    border-color: var(--thm-primary-color);
}



.checked-box3 {
    position: relative;
    display: block;
    min-height: 30px;
}

.checked-box3 label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    cursor: pointer;
    min-height: 30px;
    font-family: var(--thm-font);
}

.checked-box3 input[type="checkbox"] {
    display: none;
}

.checked-box3 input[type="checkbox"]+label span {
    position: absolute;
    top: 8px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid var(--thm-border-color);
    vertical-align: middle;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box3 label span:before {
    font-family: 'icomoon' !important;
    content: "\e979";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    margin: 0px;
    color: var(--thm-primary-color);
    font-size: 10px;
    line-height: 14px;
    font-weight: 700;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box3 input[type="checkbox"]:checked+label span {
    border-color: var(--thm-primary-color);
}

.checked-box3 input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.add-comment-box #add-comment-form .button-box {
    position: relative;
    display: block;
    padding-top: 34px;
    line-height: 0;
}



.related-post {
    position: relative;
    display: block;
    padding-top: 71px;
}

.related-post .inner-title {
    position: relative;
    display: block;
    padding-bottom: 32px;
}

.related-post .inner-title h2 {
    font-size: 30px;
    line-height: 40px;
}






/*** Thm Sidebar Box Css****/
.thm-sidebar-box-style2 {
    position: relative;
    display: block;
    padding-left: 30px;
}


.sidebar-search-box-style2 {
    position: relative;
    display: block;
}

.sidebar-search-box-style2 .search-form,
.wp-block-search__inside-wrapper  {
    position: relative;
    display: block;
    width: 100%;
}

.sidebar-search-box-style2 .search-form input[type="text"],
.wp-block-search__inside-wrapper input {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid var(--thm-border-color);
    color: #6d6b71;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--thm-font);
    padding-left: 30px;
    padding-right: 70px;
    transition: all 500ms ease 0s;
}

.wp-block-search__inside-wrapper input{
	padding-right: 100px;
}

.footer-widget .sidebar-search-box-style2 .search-form input[type="text"]{
	color: #ffffff;
}

.sidebar-search-box-style2 .search-form input[type="text"]:focus,
.wp-block-search__inside-wrapper input:focus {
    border-color: var(--thm-primary-color);
}


.sidebar-search-box-style2 .search-form button,
.wp-block-search__inside-wrapper button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    right: 0px;
    bottom: 0px;
    min-width: 60px;
	border:none;
    height: 60px;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 400;
    background: transparent;
    text-align: center;
    transition: all 500ms ease 0s;
}

.sidebar-search-box-style2 .search-form button i {
    position: relative;
    top: 0px;
}

.sidebar-search-box-style2 .search-form input[type="text"]:focus {
    color: var(--thm-black);
}

.sidebar-search-box-style2 .search-form input[type="text"]:focus+button,
.sidebar-search-box-style2 .search-form button:hover,
.wp-block-search__inside-wrapper button:hover {
    color: var(--thm-primary-color);
}

.sidebar-search-box-style2 .search-form input::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.sidebar-search-box-style2 .search-form input:-moz-placeholder {
    color: var(--thm-gray);
}

.sidebar-search-box-style2 .search-form input::-moz-placeholder {
    color: var(--thm-gray);
}

.sidebar-search-box-style2 .search-form input:-ms-input-placeholder {
    color: var(--thm-gray);
}

.footer-widget .sidebar-search-box-style2 .search-form button{
	color: #ffffff;
}

.sidebar-title-style2,
.wp-block-search .wp-block-search__label,
.widget h2 {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: -8px;
    padding-bottom: 25px;
}

.sidebar-title-style2 .dotted-box {
    position: relative;
    display: block;
    width: 14px;
    height: 14px;
    margin-right: 14px;
}

.sidebar-title-style2 .dotted-box span {
    position: relative;
    display: block;
    width: 5px;
    height: 5px;
    background-color: var(--thm-primary-color);
}

.sidebar-title-style2 .dotted-box span.top-left {
    position: absolute;
    top: 0;
    left: 0;
}

.sidebar-title-style2 .dotted-box span.top-right {
    position: absolute;
    top: 0;
    right: 0;
}

.sidebar-title-style2 .dotted-box span.bottom-left {
    position: absolute;
    left: 0;
    bottom: 0;
}

.sidebar-title-style2 .dotted-box span.bottom-right {
    position: absolute;
    right: 0;
    bottom: 0;
}

.sidebar-title-style2 h3,
.wp-block-search .wp-block-search__label,
.widget h2 {
    font-size: 21px;
    line-height: 31px;
	color: var(--thm-heading-font-color);
	font-family: var(--thm-font-2);
	font-weight: 700;
}




/*=====================
View All Categories Css
=====================*/
.view-all-categories {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid var(--thm-border-color);
    padding: 40px 30px 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.categories-lists {
    position: relative;
    display: block;
    padding-top: 8px;
}

.categories-lists li {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--thm-border-color);
    padding-top: 15px;
    padding-bottom: 15px;
}

.categories-lists li:first-child {
    padding-top: 0;
}

.categories-lists li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.categories-lists li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 31px;
    bottom: 0;
    width: 1px;
    background-color: var(--thm-border-color);
    z-index: 1;
}

.categories-lists li a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 13px;
    line-height: 20px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.categories-lists li a:hover {
    color: var(--thm-primary-color);
}

.categories-lists li a .icon {
    position: relative;
    display: block;
    line-height: 0;
    padding-right: 45px;
}

.categories-lists li a .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.categories-lists li a:hover span {
    color: var(--thm-primary-color);
    transform: rotate(45deg);
}




.single-sidebar-box-style2 {
    position: relative;
    display: block;
}

.sidebar-popular-post {
    margin-bottom: 50px;
}

.sidebar-popular-post {
    position: relative;
    display: block;
}

.sidebar-popular-post .popular-post {
    position: relative;
    display: block;
    padding-top: 8px;
}

.sidebar-popular-post .popular-post li {
    position: relative;
    display: block;
    padding-left: 105px;
}

.sidebar-popular-post .popular-post li+li {
    margin-top: 40px;
}

.sidebar-popular-post .popular-post li .img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-popular-post .popular-post li .img-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-primary-color);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.sidebar-popular-post .popular-post li:hover .img-box::before {
    opacity: 0.50;
}

.sidebar-popular-post .popular-post li .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.sidebar-popular-post .popular-post li:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
}

.sidebar-popular-post .popular-post li .img-box a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(100px);
    transition: all 700ms ease;
    z-index: 2;
}

.sidebar-popular-post .popular-post li:hover .img-box a {
    opacity: 1;
    transform: translateY(0px);
}

.sidebar-popular-post .popular-post li .img-box a span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 18px;
    transition: all 700ms ease;
}

.sidebar-popular-post .popular-post li .img-box a span:hover {
    color: var(--thm-secondary-color);
}

.sidebar-popular-post .popular-post li .text-box {
    position: relative;
    display: block;
}

.sidebar-popular-post .popular-post li .text-box p {
    margin: 0 0 4px;
    line-height: 20px;
}

.sidebar-popular-post .popular-post li .text-box h4 {
    font-size: 19px;
    line-height: 28px;
}

.sidebar-popular-post .popular-post li .text-box h4 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-popular-post .popular-post li .text-box h4 a:hover {
    color: var(--thm-primary-color);
}



.popular-tag-style2 {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 8px;
    margin-left: -5px;
    margin-right: -5px;
}

.popular-tag-style2 li {
    position: relative;
    display: block;
    float: left;
    margin: 0 5px 10px;
    padding: 0px 0px 0px;
}

.popular-tag-style2 li a {
    position: relative;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    color: #6d6b71;
    font-size: 16px;
    line-height: 40px;
    font-family: var(--thm-font);
    font-weight: 400;
    border-radius: 20px;
    background: #f0ebf5;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.popular-tag-style2 li:hover a {
    color: #ffffff;
    background-color: var(--thm-primary-color);
}




/*=====================
Sidebar Banner Box Css
=====================*/
.sidebar-banner-box {
    position: relative;
    display: block;
    margin-top: 40px;
}

.sidebar-banner-box__img-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.sidebar-banner__content-box {
    position: relative;
    display: block;
    padding: 50px 0px 50px;
}

.sidebar-banner__content-box .thm-logo {
    position: relative;
    display: block;
    padding-bottom: 17px;
}

.sidebar-banner__content-box .thm-logo span {
    color: var(--thm-white);
    font-size: 50px;
}

.sidebar-banner__content-box h3 {
    color: var(--thm-white);
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 11px;
}

.sidebar-banner__content-box p {
    color: var(--thm-white);
    font-size: 17px;
    line-height: 28px;
}

.sidebar-banner__content-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 32px;
}



/*** Styled Pagination Style2 ***/
.styled-pagination-style2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.styled-pagination-style2 li {
    position: relative;
    display: block;
    margin: 0 5px;
}

.styled-pagination-style2 li.dotted {
    position: relative;
    display: block;
    width: 15px;
    height: 2px;
}

.styled-pagination-style2 li.dotted .middle-dot {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 3px;
    height: 3px;
    background-color: var(--thm-primary-color);
    margin: 0 auto;
}

.styled-pagination-style2 li.dotted:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 3px;
    background-color: var(--thm-primary-color);
}

.styled-pagination-style2 li.dotted:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 3px;
    background-color: var(--thm-primary-color);
}

.styled-pagination-style2 li a span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1px;
    background-color: transparent;
    width: 45px;
    height: 45px;
    border-radius: var(--thm-border-radius);
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.styled-pagination-style2 li a:hover span,
.styled-pagination-style2 li a.active span {
    color: var(--thm-white);
}

.styled-pagination-style2 li a span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-primary-color);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.styled-pagination-style2 li a:hover span::after,
.styled-pagination-style2 li a.active span::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.styled-pagination-style2 li.prev a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    margin-right: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.styled-pagination-style2 li.prev a:hover {
    color: var(--thm-primary-color);
}

.styled-pagination-style2 li.prev a i {
    position: relative;
    display: inline-block;
    font-size: 34px;
    padding-right: 3px;
}


.styled-pagination-style2 li.next a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    margin-left: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.styled-pagination-style2 li.next a:hover {
    color: var(--thm-primary-color);
}

.styled-pagination-style2 li.next a i {
    position: relative;
    display: inline-block;
    font-size: 34px;
    padding-left: 3px;
}








/*** 
=============================================
    End Css
=============================================
***/