/*** 
=============================
    Blog Style1 Css
=============================
***/
.blog-style1 {
    padding: 120px 0px 120px;
}

.blog-style1__inner {
    position: relative;
    display: block;
}

.single-blog-style1 {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.single-blog-style1__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.single-blog-style1__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: var(--thm-black-color-bg);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-blog-style1:hover .single-blog-style1__img::before {
    opacity: .8;
}

.single-blog-style1__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-blog-style1:hover .single-blog-style1__img img {
    transform: scale(1.05) rotate(0deg);
}

.single-blog-style1__img-category {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 3px;
    background-color: var(--thm-white-color);
    padding: 5px 10px 5px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 6;
}

.single-blog-style1:hover .single-blog-style1__img-category {
    background-color: var(--thm-primary-color);
}

.single-blog-style1__img-category i {
    color: var(--thm-primary-color);
    font-size: 14px;
    line-height: 14px;
    margin-right: 7px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1:hover .single-blog-style1__img-category i {
    color: var(--thm-white-color);
}

.single-blog-style1__img-category h6 {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1:hover .single-blog-style1__img-category h6 {
    color: var(--thm-white-color);
}

.single-blog-style1__img-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.single-blog-style1__img-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--thm-white-color);
    color: var(--thm-black-color);
    font-size: 20px;
    line-height: 0;
    opacity: 0;
    transform: translateY(30px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-blog-style1__img-icon a:hover {
    color: var(--thm-white-color);
    background-color: var(--thm-primary-color);
}

.single-blog-style1:hover .single-blog-style1__img-icon a {
    opacity: 1;
    transform: translateY(0px);
}

.single-blog-style1__content {
    position: relative;
    display: block;
    margin-top: 23px;
}

.single-blog-style1__content-title {
    position: relative;
    display: block;
}

.single-blog-style1__content-title h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

.single-blog-style1__content-title h3 a {
    color: var(--thm-black-color);
    transition: all 200ms linear;
    transition-delay: .1s;
}

.single-blog-style1__content-title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-blog-style1__content-meta {
    position: relative;
    display: block;
    padding-left: 50px;
    margin-top: 16px;
}

.single-blog-style1__content-meta-img {
    position: absolute;
    top: 6px;
    left: 0;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
}

.single-blog-style1__content-meta-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: var(--thm-black-color-bg);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-blog-style1:hover .single-blog-style1__content-meta-img::before {
    opacity: .7;
}

.single-blog-style1__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-blog-style1:hover .single-blog-style1__content-meta-img img {
    transform: scale(1.05) rotate(0deg);
}

.single-blog-style1__content-meta-info {
    position: relative;
    display: block;
}

.single-blog-style1__content-meta-info h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.single-blog-style1__content-meta-info ul {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.single-blog-style1__content-meta-info ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style1__content-meta-info ul li+li {
    margin-left: 15px;
}

.single-blog-style1__content-meta-info ul li i {
    color: #a2af9f;
    font-size: 14px;
    line-height: 14px;
    margin-right: 8px;
}

.single-blog-style1__content-meta-info ul li h5 {
    color: var(--thm-gray-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.single-blog-style1__content-btn {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 24px;
}

.single-blog-style1__content-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black-color);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1__content-btn a:hover {
    color: var(--thm-primary-color);
}

.single-blog-style1__content-btn a i {
    color: var(--thm-primary-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
}


/*** Nav Css 8***/
/*=============*/

.blog-slider-slider-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
    z-index: 10;
}

.blog-slider-button-prev,
.blog-slider-button-next {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 55px;
    height: 55px;
    border-radius: 5px;
    background: transparent;
    border: 1px solid #e0e8dd;
    color: var(--thm-primary-color);
    font-size: 25px;
    line-height: 55px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.blog-slider-button-prev span {
    transform: rotate(180deg);
}

.blog-slider-button-prev span,
.blog-slider-button-next span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-slider-button-next:hover,
.blog-slider-button-prev:hover {
    color: var(--thm-white-color);
    border-color: var(--thm-primary-color);
    background-color: var(--thm-primary-color);
}

.blog-slider-button-prev:before,
.blog-slider-button-next:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    border-radius: 5px;
    content: '';
    background: var(--thm-primary-color);
    -webkit-transition: all 500ms linear;
    transition: all 100ms 2inear;
    z-index: -1;
}

.blog-slider-button-next:hover::before,
.blog-slider-button-prev:hover::before {
    height: 100%;
}


/*** 
=============================
    Blog Style2 Css
=============================
***/
.blog-style2 {
    position: relative;
    display: block;
    background: var(--thm-white-color);
    padding: 120px 0px 123px;
    z-index: 1;
}

.blog-style2__single {
    position: relative;
    display: block;
    background: var(--thm-white-color);
    border-radius: 8px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    padding: 25px 25px 25px;
    margin-bottom: 30px;
    z-index: 1;
}

.blog-style2__single.style2 {
    position: relative;
    display: block;
}

.blog-style2__single-img2 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
}

.blog-style2__single-img2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-image: -moz-linear-gradient(90deg, rgb(19, 29, 48) 0%, rgba(19, 29, 48, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(19, 29, 48) 0%, rgba(19, 29, 48, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(19, 29, 48) 0%, rgba(19, 29, 48, 0) 100%);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.blog-style2__single:hover .blog-style2__single-img2::before {
    opacity: 1;
}

.blog-style2__single-img2 img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.blog-style2__single.style2:hover .blog-style2__single-img2 img {
    transform: scale(1.05) rotate(0deg);
}

.blog-style2__single.style2 .blog-style2__single-content-tagline {
    background: none;
    border-radius: 0px;
    padding: 0px 0px 0px;
}

.blog-style2__single.style2 .blog-style2__single-content-tagline h3 {
    color: var(--thm-primary-color);
}

.blog-style2__single.style2 .blog-style2__single-content-tagline h3 span::before {
    color: var(--thm-primary-color);
}

.blog-style2__single.style2 .blog-style2__single-content h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-top: 5px;
}

.blog-style2__single.style2 .blog-style2__single-content h2 a {
    color: var(--thm-black-color);
}

.blog-style2__single.style2 .blog-style2__single-content h2 a:hover {
    color: var(--thm-primary-color);
}

.blog-style2__single.style2 .blog-style2__single-meta-box {
    margin-top: 6px;
}


.blog-style2__single-top {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-style2__single-date {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #edf4fb;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    height: 80px;
    width: 70px;
}

.blog-style2__single-date h3 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
}

.blog-style2__single-date h3 span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-style2__single-content {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.blog-style2__single.style2 .blog-style2__single-content {
    margin-left: 25px;
}

.blog-style2__single-content-tagline {
    position: relative;
    display: inline-block;
    background: var(--thm-primary-color);
    border-radius: 4px;
    padding: 5px 10px 5px;
}

.blog-style2__single-content-tagline h3 {
    color: var(--thm-white-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-style2__single-content-tagline h3 span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-white-color);
    font-size: 15px;
    line-height: 15px;
    padding-right: 3px;
    top: 1px;
}

.blog-style2__single-meta-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 13px;
}

.blog-style2__single-meta-box li {
    position: relative;
    display: block;
}

.blog-style2__single-meta-box li+li {
    margin-left: 15px;
}

.blog-style2__single-meta-box li h5 {
    color: var(--thm-gray-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
}

.blog-style2__single-meta-box li h5 span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray-color);
    font-size: 15px;
    line-height: 15px;
    padding-right: 2px;
}

.blog-style2__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 25px;
    z-index: 1;
}

.blog-style2__single-img::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(90deg, rgb(19, 29, 48) 0%, rgba(19, 29, 48, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(19, 29, 48) 0%, rgba(19, 29, 48, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(19, 29, 48) 0%, rgba(19, 29, 48, 0) 100%);
    content: "";
    z-index: 1;
}

.blog-style2__single-img img {
    transform: scale(1.0);
    transition: all 1300ms ease;
}

.blog-style2__single:hover .blog-style2__single-img img {
    transform: scale(1.05) rotate(0deg);
}

.blog-style2__single-img-title {
    position: absolute;
    left: 25px;
    bottom: 22px;
    z-index: 2;
}

.blog-style2__single-img-title h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

.blog-style2__single-img-title h2 a {
    color: var(--thm-white-color);
}

.blog-style2__single-img-title h2 a:hover {
    color: var(--thm-primary-color);
}

.blog-style2__btn {
    position: relative;
    display: block;
    text-align: center;
    line-height: 0;
    margin-top: 24px;
}

.blog-style2__btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black-color);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-style2__btn a:hover {
    color: var(--thm-primary-color);
}

.blog-style2__btn a i {
    color: var(--thm-primary-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
}



/*** 
=============================
    Blog Style3 Css
=============================
***/

.blog-style3 {
    padding: 120px 0px 53px;
}

.single-blog-style3 {
    position: relative;
    display: block;
    overflow: auto;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-white-color);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    padding: 25px 25px 25px;
}

.single-blog-style3__content {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 25px;
}

.single-blog-style3__content-date {
    position: relative;
    display: flex;
    align-self: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 70px;
    height: 80px;
    background-color: var(--thm-gray-bg);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.single-blog-style3__content-date h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}

.single-blog-style3__content-date h6 {
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
}

.single-blog-style3__content-inner {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.single-blog-style3__content-category {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    background-color: var(--thm-primary-color);
    padding: 5px 10px 5px;
}

.single-blog-style3__content-category i {
    color: var(--thm-white-color);
    font-size: 14px;
}

.single-blog-style3__content-category h6 {
    color: var(--thm-white-color);
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    margin-left: 7px;
}

.single-blog-style3__content-meta {
    position: relative;
    display: block;
    margin-top: 15px;
}

.single-blog-style3__content-meta-info {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style3__content-meta-info li {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style3__content-meta-info li+li {
    margin-left: 15px;
}

.single-blog-style3__content-meta-info li i {
    color: #a4a0ab;
    font-size: 14px;
    margin-right: 7px;
}

.single-blog-style3__content-meta-info li h4 {
    color: var(--thm-gray-color);
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
}

.single-blog-style3__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.single-blog-style3__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(90deg, rgb(49, 30, 74) 0%, rgba(49, 30, 74, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(49, 30, 74) 0%, rgba(49, 30, 74, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(49, 30, 74) 0%, rgba(49, 30, 74, 0) 100%);
    z-index: 1;
}

.single-blog-style3__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-blog-style3:hover .single-blog-style3__img img {
    transform: scale(1.05) rotate(0deg);
}

.single-blog-style3__img-title {
    position: absolute;
    left: 25px;
    bottom: 22px;
    right: 25px;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 5;
}

.single-blog-style3:hover .single-blog-style3__img-title {
    opacity: 0;
    transform: translateY(80px);
}

.single-blog-style3__img-title h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

.single-blog-style3__img-title h3 a {
    color: var(--thm-white-color);
}

.single-blog-style3__img-btn {
    position: absolute;
    left: 25px;
    bottom: 25px;
    opacity: 0;
    transform: translateY(80px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 5;
}

.single-blog-style3:hover .single-blog-style3__img-btn {
    opacity: 1;
    transform: translateY(0px);
}

.single-blog-style3__img-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    overflow: hidden;
    border-radius: 5px;
    background-color: #edf4fb;
    color: var(--thm-primary-color);
    font-size: 24px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style3__img-btn a:hover {
    color: var(--thm-white-color);
    background-color: var(--thm-primary-color);
}

.blog-style3__btn {
    position: relative;
    display: block;
    text-align: center;
    line-height: 0;
    margin-top: 54px;
}

.blog-style3__btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black-color);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-style3__btn a:hover {
    color: var(--thm-primary-color);
}

.blog-style3__btn a i {
    color: var(--thm-primary-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
}


.blog-style3 .swiper-container {
    overflow: visible;
}


/*** 
=============================
    Blog Style4 Css
=============================
***/
.blog-style1--style4 {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
}

.blog-style1--style4 .single-blog-style1__img-category {
    top: 20px;
    left: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background: var(--thm-primary-color);
}

.blog-style1--style4 .single-blog-style1__img-category h6 {
    color: var(--thm-white-color);
}

.blog-style1--style4 .single-blog-style1__img-category i {
    color: var(--thm-white-color);
}

.blog-style1--style4 .single-blog-style1__img::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(90deg, rgb(30, 30, 30) 0%, rgba(30, 30, 30, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(30, 30, 30) 0%, rgba(30, 30, 30, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(30, 30, 30) 0%, rgba(30, 30, 30, 0) 100%);
    border-radius: var(--thm-border-radius);
    content: "";
}

.blog-style1--style4 .single-blog-style1__img::before {
    display: none;
}

.blog-style1--style4 .single-blog-style1__img-icon {
    position: absolute;
    top: auto;
    left: auto;
    bottom: 75px;
    right: 20px;
    display: block;
    z-index: 5;
}

.blog-style1--style4 .single-blog-style1__img-icon a {
    border-radius: 4px;
    background-color: var(--thm-white-color);
    color: var(--thm-black-color);
    font-size: 25px;
}

.blog-style1--style4 .single-blog-style1__img-icon a:hover {
    background: var(--thm-primary-color);
    color: var(--thm-white-color);
}

.blog-style1--style4 .single-blog-style1__content-meta-info {
    position: absolute;
    left: 20px;
    bottom: 15px;
    right: 0px;
    padding-top: 8px;
    z-index: 5;
}

.blog-style1--style4 .single-blog-style1__content-meta-info::before {
    position: absolute;
    top: 0;
    left: -20px;
    right: 0;
    height: 1px;
    background: rgb(var(--thm-white-color-rgb), .2);
    content: "";
}

.blog-style1--style4 .single-blog-style1__content-meta-info ul li i {
    color: var(--thm-primary-color);
}

.blog-style1--style4 .single-blog-style1__content-meta-info ul li h5 {
    color: #a7a0a0;
}

.blog-style1--style4 .single-blog-style1__content-btn {
    margin-top: 15px;
}

.blog-style1--style4 .single-blog-style1 .single-blog-style1__content-meta-info ul li h5 {
    transition: all 200ms linear;
    transition-delay: .1s;
}

.blog-style1--style4 .single-blog-style1:hover .single-blog-style1__content-meta-info ul li h5 {
    color: var(--thm-white-color);
}




/*** 
=============================
    Blog Page One Css
=============================
***/
.blog-page-one {
    padding: 120px 0px 120px;
}

.single-blog-page-one {
    position: relative;
    display: block;
    overflow: hidden;
    border-bottom: 1px dashed #646964;
    padding-bottom: 35px;
    margin-bottom: 65px;
}

.single-blog-page-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
    margin-bottom: 35px;
    text-align: center;
}

.single-blog-page-one__img-category {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 3px;
    background-color: var(--thm-white-color);
    padding: 5px 10px 5px;
    z-index: 6;
    box-shadow: 0 0 10px rgba(0,0,0,0.01);
}

.single-blog-page-one__img-category i {
    color: var(--thm-primary-color);
    font-size: 14px;
    line-height: 14px;
    margin-right: 7px;
}

.single-blog-page-one__img-category h6 {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
}

.single-blog-page-one__img-category h6 a:hover {
    color: var(--thm-primary-color);
}

.single-blog-page-one__content {
    position: relative;
    display: block;
}

.single-blog-page-one__content-text {
    position: relative;
    display: block;
    padding-right: 20px;
}

.single-blog-page-one__content-text h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.single-blog-page-one__content-text h3 a {
    color: var(--thm-black-color);
    transition: all 200ms linear;
    transition-delay: .1s;
}

.single-blog-page-one__content-text h3 a:hover {
    color: var(--thm-primary-color);
}

.single-blog-page-one__content-text p {
    margin: 0;
}

.single-blog-page-one__content-bottom {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 32px;
}

.single-blog-page-one__content-author {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-page-one__content-author-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 50%;
}

.single-blog-page-one__content-author-img img {
    width: 100%;
}

.single-blog-page-one__content-author-text {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 12px;
}

.single-blog-page-one__content-author-text h4 {
    font-size: 16px;
    line-height: 20px;
}

.single-blog-page-one__content-author-text ul {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.single-blog-page-one__content-author-text ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-page-one__content-author-text ul li+li {
    margin-left: 15px;
}

.single-blog-page-one__content-author-text ul li i {
    color: #a6b4a3;
    font-size: 14px;
    line-height: 14px;
    margin-right: 7px;
}

.single-blog-page-one__content-author-text ul li h5 {
    color: var(--thm-gray-color);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}

.single-blog-page-one__content-share {
    position: relative;
    display: inline-block;
}

.single-blog-page-one__content-share span {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--thm-white-color);
    border: 1px solid var(--thm-primary-color);
    color: var(--thm-primary-color);
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}

.single-blog-page-one__content-share:hover span {
    color: var(--thm-white-color);
    background-color: var(--thm-primary-color);
    border-color: var(--thm-primary-color);
}

.single-blog-page-one__content-share ul {
    position: absolute;
    bottom: 0;
    left: 0%;
    white-space: nowrap;
    transform: translateX(100px);
    padding-bottom: 50px;
    opacity: 0;
    transition: all 0.3s;
}

.single-blog-page-one__content-share:hover ul {
    opacity: 1;
    transform: translateX(0px);
}

.single-blog-page-one__content-share ul li {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.single-blog-page-one__content-share ul li:last-child {
    margin-bottom: 0;
}

.single-blog-page-one__content-share ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--thm-white-color);
    border: 1px solid var(--thm-primary-color);
    color: var(--thm-primary-color);
    font-size: 16px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-blog-page-one__content-share ul li a:hover {
    color: var(--thm-white-color);
    background-color: var(--thm-primary-color);
    border-color: var(--thm-primary-color);
}

.single-blog-page-one__content-share ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: var(--thm-base);
    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;
}

.single-blog-page-one__content-share ul li:hover a:before {
    opacity: 1;
    transform: scale(1);
    border-radius: 50%;
}

.blog-page-one__btn {
    position: relative;
    display: block;
    line-height: 0;
    text-align: center;
    margin-top: 80px;
}

.blog-page-one__btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    background-color: var(--thm-black-color-bg);
    padding: 16px 30px 16px;
    color: var(--thm-white-color);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-page-one__btn a:hover {
    color: var(--thm-primary-color);
}

.blog-page-one__btn a i {
    color: var(--thm-primary-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
}



/*=== Blog Page Sidebar ===*/
/*=========================*/

.blog-page__sidebar {
    position: relative;
    display: block;
    margin-left: 20px;
}

.blog-page__sidebar-single {
    position: relative;
    display: block;
}

.blog-page__sidebar-search {
    position: relative;
    display: block;
}

.blog-page__sidebar-search form {
    position: relative;
    display: block;
    width: 100%;
}

.blog-page__sidebar-search form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 45px;
    border: none;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-black-color-bg);
    color: var(--thm-primary-color);
    font-size: 17px;
    font-weight: 400;
    font-family: var(--thm-font);
    padding-left: 20px;
    padding-right: 55px;
    transition: all 500ms ease 0s;
}

.blog-page__sidebar-search form input[type="text"]:focus {
    color: var(--thm-primary-color);
}

.blog-page__sidebar-search form input::-webkit-input-placeholder,
.blog-page__sidebar-search form input:-moz-placeholder,
.blog-page__sidebar-search form input::-moz-placeholder,
.blog-page__sidebar-search form input:-ms-input-placeholder {
    color: var(--thm-primary-color);
}

.blog-page__sidebar-search form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: var(--thm-primary-color);
    font-size: 18px;
    line-height: 0;
    transition: all 500ms ease 0s;
    z-index: 1;
}

.blog-page__sidebar-search form input[type="text"]:focus+button,
.blog-page__sidebar-search form button:hover {
    color: var(--thm-primary-color);
}

.blog-page__sidebar-categories {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-black-color-bg);
    padding: 36px 40px 33px;
}

.blog-page__sidebar-single-title,
.widget h2,
.widget .wp-block-search__label{
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
}

.blog-page__sidebar-single-title i {
    color: var(--thm-primary-color);
    font-size: 18px;
    margin-right: 10px;
}

.blog-page__sidebar-single-title h6,
.widget h2,
.widget .wp-block-search__label{
    color: var(--thm-primary-color);
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
}

.widget h2,
.widget .wp-block-search__label {
    margin-bottom: 30px;
}

.widget h2:before,
.widget .wp-block-search__label:before{
    position: relative;
    content: "\e90d";
    color: var(--thm-primary-color);
    font-size: 18px;
    margin-right: 10px;
    font-family: 'icomoon' !important;
}

.blog-page__sidebar-categories-list {
    position: relative;
    display: block;
    margin-top: 30px;
}

.blog-page__sidebar-categories-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed #485145;
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.blog-page__sidebar-categories-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blog-page__sidebar-categories-list li a {
    position: relative;
    display: inline-block;
    color: #A8B0A6;
    font-size: 17px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: .1s;
}

.blog-page__sidebar-categories-list li a:hover {
    color: var(--thm-white-color);
}

.blog-page__sidebar-categories-list li span {
    color: #A8B0A6;
    font-size: 17px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 400;
}

.blog-page__sidebar-banner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
    background-color: #000000;
    padding: 33px 55px 30px;
}

.blog-page__sidebar-banner-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 318px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.blog-page__sidebar-banner-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.blog-page__sidebar-banner-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
}

.blog-page__sidebar-banne-content {
    position: relative;
    display: block;
    text-align: center;
}

.blog-page__sidebar-banne-content-title {
    position: relative;
    display: block;
}

.blog-page__sidebar-banne-content-title h3 {
    color: var(--thm-white-color);
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 14px;
}

.blog-page__sidebar-banne-content-title p {
    color: var(--thm-primary-color);
    font-weight: 500;
}

.blog-page__sidebar-banne-content-btn {
    position: relative;
    display: block;
    line-height: 0;
    text-align: center;
    margin-top: 207px;
}

.blog-page__sidebar-banne-content-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    background-color: var(--thm-primary-color);
    padding: 16px 30px 16px;
    color: var(--thm-white-color);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-page__sidebar-banne-content-btn a:hover {
    color: var(--thm-primary-color);
    background-color: var(--thm-white-color);
}

.blog-page__sidebar-banne-content-btn a i {
    color: var(--thm-white-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-page__sidebar-banne-content-btn a:hover i {
    color: var(--thm-primary-color);
}

.blog-page__sidebar-post {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-black-color-bg);
    padding: 30px 35px 35px;
}

.blog-page__sidebar-post-list {
    position: relative;
    display: block;
    margin-top: 27px;
}

.blog-page__sidebar-post-list li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #485145;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.blog-page__sidebar-post-list li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.blog-page__sidebar-post-list li .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.blog-page__sidebar-post-list li .img-box img {
    opacity: 1;
    transform: scale(1.0);
    transition: all 1300ms ease;
}

.blog-page__sidebar-post-list li:hover .img-box img {
    opacity: 0.4;
    transform: scale(1.05) rotate(0deg);
}

.blog-page__sidebar-post-list li .img-box .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-page__sidebar-post-list li .img-box .overlay-icon a {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 18px;
    line-height: 0;
    opacity: 0;
    transform: translateY(70px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.blog-page__sidebar-post-list li .img-box .overlay-icon a:hover {
    color: var(--thm-white-color);
}

.blog-page__sidebar-post-list li:hover .img-box .overlay-icon a {
    opacity: 1;
    transform: translateY(0px);
}

.blog-page__sidebar-post-list li .text-box {
    position: relative;
    display: block;
    margin-left: 15px;
    flex: 1;
}

.blog-page__sidebar-post-list li .text-box h5 {
    position: relative;
    display: flex;
    align-items: center;
    color: #A8B0A6;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.blog-page__sidebar-post-list li .text-box h5 i {
    color: #A8B0A6;
    font-size: 15px;
    line-height: 15px;
    margin-right: 8px;
}

.blog-page__sidebar-post-list li .text-box h4 {
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
}

.blog-page__sidebar-post-list li .text-box h4 a {
    color: #A8B0A6;
    transition: all 200ms linear;
    transition-delay: .1s;
}

.blog-page__sidebar-post-list li .text-box h4 a:hover {
    color: var(--thm-white-color);
}

.blog-page__sidebar-tag {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-black-color-bg);
    padding: 35px 35px 35px;
}

.blog-page__sidebar-tag-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -3.5px;
    margin-right: -3.5px;
    margin-top: 22px;
}

.blog-page__sidebar-tag-list li {
    position: relative;
    display: block;
    float: left;
    margin: 0 3.5px 5px;
}

.blog-page__sidebar-tag-list li a {
    position: relative;
    display: inline-block;
    border-radius: 5px;
    background-color: #373f34;
    padding: 7px 19px 7px;
    color: #A8B0A6;
    font-size: 17px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-page__sidebar-tag-list li:hover a {
    color: var(--thm-white-color);
    background-color: var(--thm-primary-color);
}

/*** 
=============================
    Blog Page Two Css
=============================
***/
.blog-style1--blog2 {
    position: relative;
    display: block;
}

.blog-style1--blog2 .styled-pagination {
    padding-top: 30px;
}


/*** 
=============================
  Blog Page Three Css
=============================
***/
.blog-page-three {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}

.blog-page-three__content {
    position: relative;
    display: block;
    margin-left: -50px;
}

.blog-page__sidebar.style2 {
    margin-left: 0px;
    margin-right: 60px;
}

.blog-page-three .single-blog-style1__img-icon a {
    width: 40px;
    height: 40px;
    font-size: 15px;
}

.blog-page-three__btn {
    position: relative;
    display: block;
    line-height: 0;
    text-align: center;
    margin-top: 55px;
}

.blog-page-three__btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    background-color: var(--thm-black-color-bg);
    padding: 16px 30px 16px;
    color: var(--thm-white-color);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-page-three__btn a:hover {
    color: var(--thm-primary-color);
}

.blog-page-three__btn a i {
    color: var(--thm-primary-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
}

.blog-page-three .styled-pagination {
    padding-top: 60px;
}

/*** 
=============================
  Blog Page Four Css
=============================
***/
.blog-page-four {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}

.blog-page__sidebar.style3 {
    position: relative;
    display: block;
    margin-left: 60px;
}

.blog-page-four__content {
    position: relative;
    display: block;
    margin-right: -60px;
}

.single-blog-style1__content-text {
    position: relative;
    display: block;
    margin-top: 9px;
}

.single-blog-style1__content-text p {
    margin: 0px;
}

.blog-page-four__content .single-blog-style1__content {
    margin-top: 28px;
}

.blog-page-four__content .single-blog-style1__content-meta {
    margin-top: 26px;
}

.blog-page-four__content .styled-pagination {
    margin-top: 60px;
}


/*** 
=============================
    Blog Details Page Css
=============================
***/
.blog-details-page {
    padding: 120px 0px 120px;
}

.blog-details-page .blog-page__sidebar.style2 {
    margin-left: 0px;
    margin-right: 20px;
}

.blog-details-content__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.blog-details-content__img img {
    width: 100%;
}

.blog-details-content__text1 {
    position: relative;
    display: block;
    margin-top: 42px;
}

.blog-details-content__text1 p {
    margin: 0;
}

.blog-details-content__text1 p:first-child::first-letter {
    position: relative;
    float: left;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: var(--thm-primary-color);
    color: var(--thm-white-color);
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    font-family: var(--thm-font);
    text-transform: uppercase;
    margin-top: 8px;
    margin-right: 15px;
    padding: 8px 10px 8px
}

.blog-details-content__text1 p+p {
    margin-top: 14px;
}

.blog-details-content__quote,
blockquote{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
    background-color: #ecf6ed;
    margin-top: 32px;
}

.blog-details-content__quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    line-height: 0;
}

.blog-details-content__quote-icon img {
    width: auto;
}

.blog-details-content__quote-title,
blockquote{
    position: relative;
    display: block;
    padding: 29px 35px 27px;
}

.blog-details-content__quote-title h3,
blockquote p{
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: var(--thm-black-color);
    font-family: var(--thm-font-2);
}

.blog-details-content__quote-name {
    position: relative;
    display: inline-block;
    background-color: var(--thm-primary-color);
    clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
    padding: 6px 35px 6px;
    padding-right: 60px;
}

.blog-details-content__quote-name p {
    color: var(--thm-white-color);
}

.blog-details-content__quote-name p span {
    color: var(--thm-black-color);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
}

.blog-details-content__text2 {
    position: relative;
    display: block;
    margin-top: 32px;
}

.blog-details-content__text2 p {
    margin: 0;
}

.what-are-fiscal-policies {
    position: relative;
    display: block;
    margin-top: 43px;
}

.what-are-fiscal-policies__title {
    position: relative;
    display: block;
}

.what-are-fiscal-policies__title h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 17px;
}

.what-are-fiscal-policies__title p {
    margin: 0;
}

.what-are-fiscal-policies__list-item {
    position: relative;
    display: block;
    margin-top: 19px;
}

.what-are-fiscal-policies__list-item p.color {
    color: var(--thm-black-color);
    font-weight: 500;
}

.what-are-fiscal-policies__list-item ul {
    position: relative;
    display: block;
    margin-top: 14px;
}

.what-are-fiscal-policies__list-item ul li {
    position: relative;
    display: block;
    padding-left: 35px;
}

.what-are-fiscal-policies__list-item ul li+li {
    margin-top: 5px;
}

.what-are-fiscal-policies__list-item ul li .icon {
    position: absolute;
    top: 3px;
    left: 0;
    color: var(--thm-primary-color);
    font-size: 24px;
    line-height: 0;
}

.what-are-fiscal-policies__list-item ul li p {
    margin: 0;
}

.how-fiscal-policies-affect-stock-market {
    position: relative;
    display: block;
    padding-top: 43px;
}

.how-fiscal-policies-affect-stock-market h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0px;
}

.how-fiscal-policies-affect-stock-market__list-item {
    position: relative;
    display: block;
    padding-top: 24px;
}

.how-fiscal-policies-affect-stock-market__list-item li {
    position: relative;
    display: block;
    padding-left: 40px;
}

.how-fiscal-policies-affect-stock-market__list-item li+li {
    margin-top: 16px;
}

.how-fiscal-policies-affect-stock-market__list-item li .icon {
    position: absolute;
    top: 2px;
    left: 0;
    color: var(--thm-primary-color);
    font-size: 25px;
    line-height: 0;
}

.how-fiscal-policies-affect-stock-market__list-item li p {
    margin: 0;
}

.how-fiscal-policies-affect-stock-market__list-item li p span {
    color: var(--thm-black-color);
    font-size: 22px;
    line-height: 30px;
    font-family: var(--thm-font-2);
    font-weight: 600;
}

.blog-details-tag {
    position: relative;
    display: block;
    margin-top: 48px;
}

.blog-details-tag__title {
    position: relative;
    display: block;
    padding-left: 20px;
}

.blog-details-tag__title-icon {
    position: absolute;
    top: 4px;
    left: 0;
    width: 14px;
    height: 16px;
    overflow: hidden;
    border-radius: 2px;
    background-color: var(--thm-primary-color);
    clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0 100%, 0% 38%);
}

.blog-details-tag__title-icon-dot {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    margin: 0px auto 0px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--thm-white-color);
}

.blog-details-tag__title h4 {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
}

.blog-details-tag ul {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.blog-details-tag ul li {
    position: relative;
    display: block;
}

.blog-details-tag ul li+li {
    margin-left: 5px;
}

.blog-details-tag ul li a {
    position: relative;
    display: inline-block;
    border-radius: 5px;
    background-color: #373f34;
    padding: 7px 19px 7px;
    color: #A8B0A6;
    font-size: 17px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details-tag ul li a:hover {
    color: var(--thm-white-color);
    background-color: var(--thm-primary-color);
}

.blog-details-author {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #e0e8dd;
    border-radius: var(--thm-border-radius);
    padding: 33px 40px 32px;
    margin-top: 60px;
}

.blog-details-author-inner {
    position: relative;
    display: block;
    padding-left: 160px;
}

.blog-details-author .img-box {
    position: absolute;
    top: 7px;
    left: 0;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.blog-details-author .img-box img {
    width: 100%;
}

.blog-details-author .content-box {
    position: relative;
    display: block;
}

.blog-details-author .content-box .top {
    position: relative;
    display: block;
}

.blog-details-author .content-box .top {
    position: relative;
    display: block;
    padding-bottom: 16px;
}

.blog-details-author .content-box .top h4 {
    color: #a3afa6;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 2px;
}

.blog-details-author .content-box .top h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
}

.blog-details-author .content-box .text {
    position: relative;
    display: block;
}

.blog-details-author .content-box .text p {
    margin: 0;
}

.blog-details-author .content-box .btn-box {
    position: relative;
    display: block;
    padding-top: 16px;
}

.blog-details-author .content-box .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black-color);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details-author .content-box .btn-box a:hover {
    color: var(--thm-primary-color);
}

.blog-details-author .content-box .btn-box a i {
    color: var(--thm-primary-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details-author .content-box .social-links {
    position: absolute;
    top: 0px;
    right: 0px;
}

.blog-details-author .content-box .social-links ul {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details-author .content-box .social-links ul li {
    position: relative;
    display: block;
}

.blog-details-author .content-box .social-links ul li+li {
    margin-left: 10px;
}

.blog-details-author .content-box .social-links ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #ecf6ed;
    color: var(--thm-black-color);
    font-size: 18px;
    line-height: 0;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.blog-details-author .content-box .social-links ul li a:hover {
    color: var(--thm-white-color);
    background-color: var(--thm-primary-color);
}

.blog-details-prev-next-option {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}

.blog-details-prev-next-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 1px;
    background-color: #e0e8dd;
}

.blog-details-prev-next-option .single-box {
    position: relative;
    display: block;
}

.blog-details-prev-next-option .single-box.left {
    text-align: left;
}

.blog-details-prev-next-option .single-box.right {
    text-align: right;
}

.blog-details-prev-next-option .single-box .title-box {
    position: relative;
    display: block;
    padding-bottom: 0;
}

.blog-details-prev-next-option .single-box .title-box .button-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-bottom: 5px;
}

.blog-details-prev-next-option .single-box .title-box .button-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #a3afa6;
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details-prev-next-option .single-box .title-box .button-box a:hover {
    color: var(--thm-black-color);
}

.blog-details-prev-next-option .single-box .title-box .button-box a span {
    position: relative;
    top: 0px;
    display: inline-block;
    font-size: 24px;
    line-height: 24px;
}

.blog-details-prev-next-option .single-box.left .title-box .button-box a span {
    top: -1px;
    margin-right: 7px;
    transform: rotate(180deg);
}

.blog-details-prev-next-option .single-box.right .title-box .button-box a span {
    margin-left: 7px;
}

.blog-details-prev-next-option .single-box .title-box h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.blog-details-prev-next-option .single-box .title-box h3 a {
    color: var(--thm-black-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details-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: var(--thm-black-color-bg);
    margin-top: 30px;
}

.back-to-blog-post-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white-color);
    font-size: 18px;
    line-height: 60px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    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 i {
    position: relative;
    display: inline-block;
    font-size: 20px;
    margin-right: 10px;
}

.comment-box {
    position: relative;
    display: block;
    padding-top: 51px;
}

.comment-box .inner-title {
    position: relative;
    display: block;
}

.comment-box .inner-title h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}

.comment-box .outer-box {
    position: relative;
    display: block;
}

.single-comment {
    position: relative;
    display: block;
}

.single-comment-inner {
    position: relative;
    display: flex;
    gap: 30px;
}

.single-comment .img-box {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: var(--thm-border-radius);
}

.single-comment .img-box img {
    width: 100%;
}

.single-comment .content-box {
    position: relative;
    display: block;
    width: calc( 100% - 100px );
}

.single-comment .content-box .title {
    position: relative;
    display: block;
}

.single-comment .content-box .title h6.blog-cat {
    color: var(--thm-gray-color);
    font-size: 14px;
    line-height: 28px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.single-comment .content-box .title h6 span {
    color: var(--thm-black-color);
    font-size: 22px;
    text-transform: capitalize;
}

.single-comment .content-box .btn-box {
    position: relative;
    display: block;
    padding-top: 10px;
}

.single-comment .content-box .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black-color);
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-comment .content-box .btn-box a i {
    font-size: 14px;
    margin-right: 7px;
}

.single-comment .content-box .btn-box a:hover {
    color: var(--thm-primary-color);
}

.add-comment-box {
    position: relative;
    display: block;
    padding-top: 42px;
}

.add-comment-box .inner-title {
    position: relative;
    display: block;
}

.add-comment-box .inner-title h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 14px;
}

.add-comment-box .inner-title p {
    margin: 0;
}

#add-comment-form {
    position: relative;
    display: block;
}

#add-comment-form .input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

#add-comment-form input[type="text"],
#add-comment-form input[type="email"],
#add-comment-form textarea {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    border: 1px solid #e0e8dd;
    background: transparent;
    width: 100%;
    height: 60px;
    color: var(--thm-gray-color);
    font-size: 18px;
    font-family: var(--thm-font);
    font-weight: 400;
    font-style: normal;
    text-transform: capitalize;
    padding: 0 20px 0px;
    transition: all 500ms ease;
}

#add-comment-form textarea {
    height: 120px;
    padding: 14px 20px;
}

#add-comment-form input[type="text"]:focus,
#add-comment-form input[type="email"]:focus,
#add-comment-form textarea:focus {
    border-color: var(--thm-primary-color);
}

#add-comment-form input[type="text"]::-webkit-input-placeholder,
#add-comment-form input[type="text"]:-moz-placeholder,
#add-comment-form input[type="text"]::-moz-placeholder,
#add-comment-form input[type="text"]:-ms-input-placeholder,
#add-comment-form input[type="email"]::-webkit-input-placeholder,
#add-comment-form input[type="email"]:-moz-placeholder,
#add-comment-form input[type="email"]::-moz-placeholder,
#add-comment-form input[type="email"]:-ms-input-placeholder,
#add-comment-form textarea::-webkit-input-placeholder,
#add-comment-form textarea:-moz-placeholder,
#add-comment-form textarea::-moz-placeholder,
#add-comment-form textarea:-ms-input-placeholder {
    color: var(--thm-gray-color);
}

#add-comment-form .checked-box1 {
    margin-top: 3px;
}

#add-comment-form .checked-box1 label {
    font-size: 18px;
    line-height: 28px;
}

#add-comment-form .checked-box1 input[type="checkbox"]+label span {
    top: 7px;
    background-color: #e0e8dd;
    border: 1px solid #e0e8dd;
}

#add-comment-form .button-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 23px;
}

#add-comment-form .button-box button {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    background-color: var(--thm-primary-color);
    padding: 16px 30px 16px;
    color: var(--thm-white-color);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#add-comment-form .button-box button:hover {
    color: var(--thm-primary-color);
    background-color: var(--thm-black-color-bg);
}

#add-comment-form .button-box button i {
    color: var(--thm-white-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#add-comment-form .button-box button:hover i {
    color: var(--thm-primary-color);
}




































/*=============================*/
/*==== Blog Page Sidebar ======*/
/*=============================*/

.blog-page-style2__sidebar {
    position: relative;
    display: block;
    margin-left: 20px;
}


.blog-page-style2__sidebar--instyle2 {
    margin-left: 27px;
}

.blog-page-style2__sidebar-single {
    position: relative;
    display: block;
    border-radius: 20px;
    background-color: var(--thm-gray-bg);
    padding: 29px 40px 35px;
}

.blog-page-style2__sidebar-single+.blog-page-style2__sidebar-single {
    margin-top: 40px;
}

.blog-page-style2__sidebar-search {
    position: relative;
    display: block;
}

.blog-page-style2__sidebar-single-title {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-page-style2__sidebar-single-title i {
    color: var(--thm-black-bg);
    font-size: 20px;
    line-height: 0;
}

.blog-page-style2__sidebar-single-title h3 {
    color: var(--thm-black-bg);
    font-size: 20px;
    line-height: 30px;
    margin-left: 10px;
}

.blog-page-style2__sidebar-search form {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 19px;
}

.blog-page-style2__sidebar-search form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: var(--thm-white);
    border: none;
    color: var(--thm-body-font-color);
    font-size: 17px;
    font-weight: 400;
    font-family: var(--thm-font);
    padding-left: 20px;
    padding-right: 55px;
    transition: all 500ms ease 0s;
}

.blog-page-style2__sidebar-search form input[type="text"]:focus {
    color: var(--thm-black-bg);
}

.blog-page-style2__sidebar-search form input::-webkit-input-placeholder,
.blog-page-style2__sidebar-search form input:-moz-placeholder,
.blog-page-style2__sidebar-search form input::-moz-placeholder,
.blog-page-style2__sidebar-search form input:-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.blog-page-style2__sidebar-search form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: var(--thm-body-font-color);
    font-size: 18px;
    line-height: 0;
    transition: all 500ms ease 0s;
}

.blog-page-style2__sidebar-search form input[type="text"]:focus+button,
.blog-page-style2__sidebar-search form button:hover {
    color: var(--thm-black-bg);
}


.blog-page-style2__sidebar-categories {
    padding: 29px 40px 62px;
}

.blog-page-sidebar__categories-list {
    position: relative;
    display: block;
    margin-top: 25px;
}

.blog-page-sidebar__categories-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed rgb(105, 89, 76, .2);
    margin-bottom: 19px;
    padding-bottom: 17px;
}

.blog-page-sidebar__categories-list li:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.blog-page-sidebar__categories-list li a {
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font);
    font-weight: 500;
}

.blog-page-sidebar__categories-list li a:hover {
    color: var(--thm-black);
}

.blog-page-sidebar__categories-list li span {
    color: var(--thm-body-font-color);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font);
    font-weight: 500;
}

.blog-page-style2__sidebar-tag {
    margin-top: 40px;
    padding: 29px 40px 20px;
}

.blog-page-sidebar__tag {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -3.5px;
    margin-right: -3.5px;
    margin-top: 22px;
}

.blog-page-sidebar__tag li {
    position: relative;
    display: block;
    float: left;
    margin: 0px 3.5px 10px;
}

.blog-page-sidebar__tag li a {
    position: relative;
    display: block;
    border-radius: 20px;
    background: var(--thm-white);
    padding: 7px 15px 7px;
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-page-sidebar__tag li a:hover {
    color: var(--thm-primary-color);
    background-color: var(--thm-black-bg);
}





























































































































































































































































/*** 
=============================================
    End Css
=============================================
***/