/*** 
=============================================
    Blog Style1 Css
=============================================
***/
.blog-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 70px;
    z-index: 10;
}

.blog-style1-title-box {
    position: relative;
    display: block;
}

.blog-style1-title-box .sec-title {
    padding-bottom: 28px;
}

.blog-style1-title-box .text {
    position: relative;
    display: block;
}

.blog-style1-title-box .text .btn-box {
    position: relative;
    display: block;
    margin-top: 27px;
}



.blog-style1-content-box {
    position: relative;
    display: block;
}

.single-blog-style1 {
    position: relative;
    display: block;
    margin-bottom: 44px;
}

.single-blog-style1 .img-holder {
    position: relative;
    display: block;
    z-index: 1;
}

.single-blog-style1 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-blog-style1 .img-holder .inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-black);
    opacity: 0;
    z-index: 2;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1:hover .img-holder .inner:after {
    opacity: 0.85;
}

.single-blog-style1 .img-holder img {
    width: 100%;
    transform: scale(1.0);
}

.single-blog-style1:hover .img-holder img {
    transform: scale(1.05) rotate(0deg);
}

.single-blog-style1 .img-holder .inner .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(-50px);
    transform-origin: top;
    transition: all 500ms ease;
    z-index: 5;
}

.single-blog-style1:hover .img-holder .inner .overlay-icon {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
}

.single-blog-style1 .img-holder .inner .overlay-icon a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 35px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1 .img-holder .inner .overlay-icon a:hover {
    color: var(--thm-base);
}



.single-blog-style1 .text-holder {
    position: relative;
    display: block;
    padding-top: 27px;
}

.single-blog-style1 .text-holder .meta-box {
    position: relative;
    display: block;
    margin-bottom: 4px;
}

.single-blog-style1 .text-holder .meta-box .meta-info {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.single-blog-style1 .text-holder .meta-box .meta-info li {
    position: relative;
    display: block;
    padding-right: 8px;
}

.single-blog-style1 .text-holder .meta-box .meta-info li:last-child {
    padding-right: 0;
}

.single-blog-style1 .text-holder .meta-box .meta-info li a {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1 .text-holder .meta-box .meta-info li a:hover {
    color: var(--thm-base);
}

.single-blog-style1 .text-holder .blog-title {
    font-size: 24px;
    line-height: 34px;
}

.single-blog-style1 .text-holder .blog-title a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1 .text-holder .blog-title a:hover {
    color: var(--thm-base);
}



.single-blog-style1 .text-holder .btn-box {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 20px;
    margin-top: 17px;
}

.single-blog-style1 .text-holder .btn-box .border-line {
    position: relative;
    display: block;
    top: -1px;
    background-color: #1a6fe1;
    width: 25px;
    height: 1px;
}

.single-blog-style1 .text-holder .btn-box a {
    color: #1a6fe1;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    letter-spacing: 0.1em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin-left: 10px;
}

.single-blog-style1 .text-holder .btn-box a:hover {
    letter-spacing: normal;
}



/*** 
=============================================
    Blog Style2 Area Css
=============================================
***/
.blog-style2-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 70px;
    z-index: 10;
}

.blog-style2-area__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 49px;
}

.blog-style2-area__top .sec-title {
    padding-bottom: 0;
}

.blog-style2-area__top .btn-box {
    position: relative;
    display: block;
    line-height: 20px;
    top: -7px;
}

.blog-style2-area__top .btn-box a {
    position: relative;
    display: flex;
    align-items: flex-end;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-style2-area__top .btn-box a .border-line {
    position: relative;
    display: block;
    width: 150px;
    height: 1px;
    bottom: 4px;
    background-color: var(--thm-black);
    margin-left: 10px;
}

.blog-style2-area__top .btn-box a:hover {
    color: var(--thm-base);
}


.blog-style2-content-box {
    position: relative;
    display: block;
}

.single-blog-style2 {
    position: relative;
    display: block;
    margin-bottom: 42px;
}

.single-blog-style2 .img-holder {
    position: relative;
    display: block;
}

.single-blog-style2 .img-holder .inner {
    position: relative;
    overflow: hidden;
}

.single-blog-style2 .img-holder .inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-black);
    opacity: 0;
    z-index: 2;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-blog-style2:hover .img-holder .inner:after {
    opacity: 0.80;
}

.single-blog-style2 .img-holder img {
    width: 100%;
    transform: scale(1.0);
}

.single-blog-style2:hover .img-holder img {
    transform: scale(1.05) rotate(0deg);
}

.single-blog-style2 .img-holder .inner .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(-50px);
    transform-origin: top;
    transition: all 500ms ease;
}

.single-blog-style2:hover .img-holder .inner .overlay-icon {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
}

.single-blog-style2 .img-holder .inner .overlay-icon a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 35px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style2 .img-holder .inner .overlay-icon a:hover {
    color: var(--thm-base);
    transform: scale(1.1);
}



.single-blog-style2 .text-holder {
    position: relative;
    display: block;
    padding-top: 37px;
}

.single-blog-style2 .text-holder .date-box {
    position: relative;
    display: block;
}

.single-blog-style2 .text-holder .date-box p {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    font-family: var(--thm-font-2);
}

.single-blog-style2 .text-holder .text {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 15px;
}

.single-blog-style2 .text-holder .btn-box {
    position: relative;
    display: block;
}

.single-blog-style2 .text-holder .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}




.blog-style2-sidebar-blog-list {
    position: relative;
    display: block;
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    padding: 0px 30px 12px;
}

.blog-style2-sidebar-blog-list ul {
    position: relative;
    display: block;
}

.blog-style2-sidebar-blog-list ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid #d9d9d9;
    padding: 16px 0 16px;
    z-index: 1;
}

.blog-style2-sidebar-blog-list ul li::before {
    content: "";
    position: absolute;
    left: -30px;
    bottom: -1px;
    right: -30px;
    height: 1px;
    background-color: #d9d9d9;
}

.blog-style2-sidebar-blog-list ul li:after {
    content: "";
    position: absolute;
    top: -1px;
    left: -31px;
    bottom: 0;
    right: -31px;
    background-color: #011e45;
    z-index: -1;
    transform-origin: top center;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.blog-style2-sidebar-blog-list ul li:hover::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}


.blog-style2-sidebar-blog-list ul li h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    font-family: var(--thm-font);
    margin-bottom: 3px;
}

.blog-style2-sidebar-blog-list ul li h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-style2-sidebar-blog-list ul li:hover h3 a {
    color: #ffffff;
}


.blog-style2-sidebar-blog-list ul li h3 a:hover {
    color: var(--thm-base);
}


.blog-style2-sidebar-blog-list ul li .meta-box {
    position: relative;
    display: block;
}

.blog-style2-sidebar-blog-list ul li .meta-box a {
    position: relative;
    display: inline-block;
    line-height: 20px;
    color: #767575;
    font-size: 16px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-style2-sidebar-blog-list ul li:hover .meta-box a {
    color: #ffffff;
}

.blog-style2-sidebar-blog-list ul li .meta-box a+a {
    margin-left: 10px;
}



.read-all-blog-btn {
    position: relative;
    display: block;
    padding-top: 12px;
}

.read-all-blog-btn a {
    color: var(--thm-base);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    letter-spacing: 0.1em;
}



/*** 
=============================================
    Blog Page One Css
=============================================
***/
.blog-page-one {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.blog-page-content {
    position: relative;
    display: block;
}

@media only screen and (min-width: 1199px){
	.pr-30{
		padding-right:30px;
	}
	.pl-30{
		padding-left:30px;
	}
	.mr-30{
		margin-right:30px;
	}
	.ml-30{
		margin-left:30px;
	}
}

.single-blog-style4 {
    position: relative;
    display: block;
    margin-bottom: 80px;
}

.single-blog-style4 .img-holder {
    position: relative;
    display: block;
	text-align:center;
    z-index: 1;
	margin-bottom:25px;
}

.single-blog-style4 .img-holder .inner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-color: var(--thm-base);
}

.single-blog-style4 .img-holder .inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0;
    z-index: 2;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.single-blog-style4:hover .img-holder .inner:after {
    opacity: 0.60;
}

.single-blog-style4 .img-holder img {
    transform: scale(1.0);
}

.single-blog-style4:hover .img-holder img {
    transform: scale(1.05) rotate(0deg);
}

.single-blog-style4 .img-holder .inner .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform-origin: top;
    transition: all 1000ms ease;
    z-index: 5;
}

.single-blog-style4:hover .img-holder .inner .overlay-icon {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
}

.single-blog-style4 .img-holder .inner .overlay-icon a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style4 .img-holder .inner .overlay-icon a:hover {
    color: var(--thm-base);
}


.single-blog-style4 .text-holder {
    position: relative;
    display: block;
}

.single-blog-style4 .text-holder .date-box {
    position: relative;
    display: block;
    padding-bottom: 5px;
}

.single-blog-style4 .text-holder .date-box h4 {
    color: #1a6fe1;
    font-size: 17px;
    line-height: 27px;
    font-weight: 700;
	margin-bottom:0px;
    font-family: var(--thm-font);
    text-transform: uppercase;
}

.single-blog-style4 .text-holder .blog-title {
    font-size: 28px;
    line-height: 36px;
    font-weight: 900;
}

.single-blog-style4 .text-holder .blog-title a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style4:hover .text-holder .blog-title a {
    color: var(--thm-base);
}



.single-blog-style4 .text-holder .meta-box {
    position: relative;
    display: block;
    margin-top: 13px;
    padding-top: 15px;
    padding-left: 40px;
    border-top: 1px solid #e4e4e4;
}

.single-blog-style4 .text-holder .meta-box .meta-title {
    position: absolute;
    top: 15px;
    left: 0;
    color: #848484;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.single-blog-style4 .text-holder .meta-box .meta-info {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-blog-style4 .text-holder .meta-box .meta-info li {
    position: relative;
    display: block;
    float: left;
    padding-right: 18px;
    margin-right: 16px;
}

.single-blog-style4 .text-holder .meta-box .meta-info li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.single-blog-style4 .text-holder .meta-box .meta-info li::before {
    position: absolute;
    content: '';
    top: 11px;
    right: 0;
    bottom: 9px;
    width: 2px;
    background-color: #b8b8b8;
    transform: rotate(15deg);
}

.single-blog-style4 .text-holder .meta-box .meta-info li:last-child::before {
    display: none;
}

.single-blog-style4 .text-holder .meta-box .meta-info li a {
    color: #797979;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style4 .text-holder .meta-box .meta-info li a:hover {
    color: var(--thm-base);
}

.single-blog-style4 .text-holder .text {
    position: relative;
    display: block;
    padding-top: 20px;
}

.single-blog-style4 .text-holder .btn-box {
    position: relative;
    display: block;
    margin-top: 36px;
}

.single-blog-style4 .text-holder .btn-box a {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 34px;
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 3px;
    border-radius: 25px;
    text-transform: uppercase;
    background-color: #ffffff;
    border: 2px solid var(--thm-base);
    font-family: var(--thm-font-5);
    font-weight: 700;
}

.single-blog-style4 .text-holder .btn-box a:hover {
    color: #ffffff;
}

.single-blog-style4 .text-holder .btn-box a:after {
    display: none;
}

.single-blog-style4 .text-holder .btn-box a:before {
    background-color: var(--thm-black);
}




.thm-sidebar-box {
    position: relative;
    display: block;
}

.single-sidebar-box {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.sidebar-search-box {
    position: relative;
    display: block;
}

.sidebar-search-box .search-form,
.wp-block-search__inside-wrapper  {
    position: relative;
    display: block;
    width: 100%;
}

.sidebar-search-box .search-form input[type="text"],
.wp-block-search__inside-wrapper input {
    position: relative;
    display: block;
    width: 100%;
    height: 52px;
    background-color: #ffffff;
    border: 1px solid #d3d3d3;
    color: rgb(68, 68, 68, 0.65);
    font-size: 18px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 60px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.sidebar-search-box .search-form button,
.wp-block-search__inside-wrapper button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    min-width: 50px;
    height: 52px;
    color: var(--thm-gray);
    font-size: 25px;
    background: transparent;
    text-align: center;
    transition: all 500ms ease 0s;
}

.wp-block-search__inside-wrapper button{
	font-size:14px;
	padding:0 15px;
}

.sidebar-search-box .search-form button i,
.wp-block-search__inside-wrapper button i {
    position: relative;
    top: 0px;
}

.sidebar-search-box .search-form input[type="text"]:focus,
.wp-block-search__inside-wrapper input:focus {
    color: rgb(68, 68, 68, 0.65);
}

.sidebar-search-box .search-form input[type="text"]:focus+button,
.sidebar-search-box .search-form button:hover,
.wp-block-search__inside-wrapper button:hover {
    color: var(--thm-base);
}

.sidebar-search-box .search-form input::-webkit-input-placeholder,
.wp-block-search__inside-wrapper input::-webkit-input-placeholder  {
    color: rgb(68, 68, 68, 0.65);
}

.sidebar-search-box .search-form input:-moz-placeholder,
.wp-block-search__inside-wrapper input:-moz-placeholder  {
    color: rgb(68, 68, 68, 0.65);
}

.sidebar-search-box .search-form input::-moz-placeholder,
.wp-block-search__inside-wrapper input::-moz-placeholder  {
    color: rgb(68, 68, 68, 0.65);
}

.sidebar-search-box .search-form input:-ms-input-placeholder,
.wp-block-search__inside-wrapper input:-ms-input-placeholder  {
    color: rgb(68, 68, 68, 0.65);
}



.sidebar-title,
.widget .wp-block-search__label,
.widget h2 {
    position: relative;
    display: flex;
    align-items: flex-end;
	margin-bottom: 30px;
}

.sidebar-title h3,
.widget .wp-block-search__label,
.widget h2  {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    text-transform: capitalize;
	font-family: var(--thm-font-2);
}

.sidebar-title .border-box {
    position: relative;
    display: block;
    top: -4px;
    width: 35px;
    height: 1px;
    margin-left: 10px;
    background-color: var(--thm-black);
}


.sidebar-categories-box {
    position: relative;
    display: block;
    padding-top: 16px;
}

.sidebar-categories-box li {
    position: relative;
    display: block;
    border-bottom: 1px solid #f2ece7;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.sidebar-categories-box li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.sidebar-categories-box li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #444444;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    font-family: var(--thm-font);
    letter-spacing: 0.0em;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.sidebar-categories-box li a i {
    position: relative;
    display: inline-block;
    color: #e6e6e6;
    font-size: 10px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-categories-box li:hover a i {
    color: var(--thm-base);
}

.sidebar-categories-box li a:after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -6px;
    width: 0;
    height: 1px;
    background-color: var(--thm-base);
    transition: all 600ms ease 100ms;
    z-index: -1;
}

.sidebar-categories-box li a:hover:after {
    width: 100%;
}


.sidebar-blog-post {
    position: relative;
    display: block;
    padding-top: 26px;
}

.sidebar-blog-post ul {
    position: relative;
    display: block;
}

.sidebar-blog-post ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.sidebar-blog-post ul li:last-child {
    border-bottom: none;
    padding: 0;
    margin-bottom: 0;
}

.sidebar-blog-post ul li .inner {
    position: relative;
    display: block;
    padding-left: 70px;
}

.sidebar-blog-post ul li .img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 62px;
    overflow: hidden;
}

.sidebar-blog-post ul li .img-box img {
    width: 100%;
}

.sidebar-blog-post ul li .img-box .overlay-content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(var(--thm-base-rgb), .80);
    border-radius: 0%;
    opacity: 0;
    transform: perspective(0px) scale(0);
    transform-origin: center;
    transition: all 0.5s ease-in-out 0s;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.sidebar-blog-post ul li:hover .img-box .overlay-content {
    opacity: 1;
    transform: perspective(400px) scale(1.0);
    transition: all 0.3s ease-in-out 0.3s;
}

.sidebar-blog-post ul li .img-box .overlay-content a {
    color: #ffffff;
    font-size: 14px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-blog-post ul li .title-box {
    position: relative;
    display: block;
    padding-left: 25px;
    min-height: 62px;
}

.sidebar-blog-post ul li .title-box h4 {
    position: relative;
    top: -5px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--thm-font);
    margin: 0 0 3px;
}

.sidebar-blog-post ul li .title-box h4 a {
    color: var(--thm-gray);
    transition: all 600ms linear;
    transition-delay: 0.1s;
}

.sidebar-blog-post ul li .title-box h4 a:hover {
    color: var(--thm-base);
    text-decoration: underline;
}

.sidebar-blog-post ul li .title-box .date-box {
    position: relative;
    display: block;
}

.sidebar-blog-post ul li .title-box .date-box p {
    color: #091c55;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}



.popular-tag-box {
    position: relative;
    display: block;
    padding-top: 26px;
}

.single-sidebar-box .popular-tag {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -5px;
    margin-right: -5px;
}

.single-sidebar-box .popular-tag li {
    position: relative;
    display: block;
    float: left;
    margin: 0 5px 10px;
}

.single-sidebar-box .popular-tag li a {
    position: relative;
    display: block;
    padding: 8px 19px 8px;
    background: #ffffff;
    color: #a6a6a6;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    border: 1px solid #e4e4e4;
    text-transform: capitalize;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.single-sidebar-box .popular-tag li:hover a {
    color: #ffffff;
    border-color: #2db7cf;
    background-color: #2db7cf;
}



/*** 
=============================================
    Blog Page Two Css
=============================================
***/
.blog-page-two {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.blog-page-two .single-blog-style4 {
    margin-bottom: 50px;
}

.blog-page-two .single-blog-style4 .text-holder .blog-title {
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
}

.blog-page-two .single-blog-style4 .text-holder .btn-box {
    margin-top: 21px;
}

.blog-page-two .single-blog-style4 .text-holder .text {
    padding-top: 10px;
}























/*** 
=============================================
    Blog Details Area Css
=============================================
***/
.blog-details-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.blog-details-box {
    position: relative;
    display: block;
}

.blog-details-box .single-blog-style4 {
    margin: 0;
}



.blog-details-text-1 {
    position: relative;
    display: block;
    padding-top: 46px;
    padding-bottom: 44px;
}

.blog-details-text-1 .inner-title {
    position: relative;
    display: block;
    padding-bottom: 16px;
}

.blog-details-text-1 .inner-title h3 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 500;
    font-family: var(--thm-font-3);
}

.blog-details-text-1 .text-1-1 {
    position: relative;
    display: block;
}


.blog-details-text-2 {
    position: relative;
    display: block;
}

.blog-details-text-2 a {
    color: var(--thm-base);
    text-decoration: underline;
}





/*** comments Box Css ***/
.comment-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 48px;
}

.comment-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 34px;
}

.comment-box .inner-title h2 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
    font-family: var(--thm-font-3);
}

.comment-box__inner {
    position: relative;
    display: block;
    border-bottom: 1px solid #eeeeee;
}

.comment-box .single-comment {
    position: relative;
    display: block;
    border: 1px solid #eeeeee;
    border-bottom: none;
    padding: 30px 30px 24px;
}

.comment-box .single-comment-box {
    position: relative;
    display: flex;
	justify-content:space-between;
	gap:40px;
}

.comment-box .single-comment-box--reply {
    margin-top: 43px;
    margin-left: 100px;
}

.comment-box .single-comment-box .img-holder {
    width: 70px;
}

.comment-box .single-comment-box .img-holder img {
    width: 100%;
}

.comment-box .single-comment-box .text-holder {
    position: relative;
    display: block;
	width:calc(100% - 110px);
}

.comment-box .single-comment-box .text-holder .top {
    position: relative;
    display: block;
}

.comment-box .single-comment-box .text-holder .top h3 {
    color: #444444;
    font-size: 20px;
    line-height: 20px;
	margin-bottom:22px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-font-3);
}

.comment-box .single-comment-box .text-holder .text {
    position: relative;
    display: block;
}

.comment-box .single-comment-box .text-holder .text p {
    line-height: 26px;
}

.comment-box .single-comment-box .text-holder .text p:last-child{
	margin-bottom:0px;
}

.comment-box .single-comment .bottom-box {
    position: relative;
    display: flex;
    align-items: center;
}

.comment-box .single-comment .bottom-box .date {
    position: relative;
    display: block;
    color: #7c7c7c;
    font-size: 17px;
}

.comment-box .single-comment .bottom-box .reply::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 15px;
    bottom: 7px;
    width: 1px;
    background: #a5a5a5;
}

.comment-box .single-comment .reply {
    position: relative;
    display: block;
    padding-left: 30px;
}

.comment-box .single-comment .reply a {
    color: var(--thm-base);
    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.comment-box .single-comment .reply a:hover {
    color: var(--thm-black);
}





.reply-form-box {
    position: relative;
    display: block;
    padding-top: 55px;
}

.reply-form-box .title {
    position: relative;
    display: block;
    padding-bottom: 34px;
}

.reply-form-box .title h2 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
    font-family: var(--thm-font-3);
}

.reply-form-box #review-form {
    position: relative;
    display: block;
    background-color: #f7f7f7;
    padding: 50px 40px 50px;
    border: 1px solid #eeeeee;
}


.reply-form-box form .input-box {
    position: relative;
    display: block;
}

.reply-form-box form .input-box .icon {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 15px;
    color: var(--thm-gray);
}

.reply-form-box form input[type="text"],
.reply-form-box form input[type="email"],
.reply-form-box form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 50px;
    border: 1px solid #eeeeee;
    color: #737373;
    font-size: 16px;
    padding: 0 30px;
    margin-bottom: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
}

.reply-form-box form textarea {
    height: 150px;
    padding: 10px 30px;
    margin-bottom: 30px;
}

.reply-form-box form button {}

.reply-form-box form input[type="text"]:focus {
    border-color: #11161e;
}

.reply-form-box form input[type="email"]:focus {
    border-color: #11161e;
}

.reply-form-box form textarea:focus {
    border-color: #11161e;
}