/*** 
====================================================================
	BLog One
====================================================================
***/
.blog-one {
	position: relative;
	display: block;
	padding: 120px 0 90px;
	z-index: 1;
}

.blog-one__single {
	position: relative;
	display: block;
	margin-bottom: 30px;
}

.blog-one__img-box {
	position: relative;
	display: block;
	margin-right: 110px;
}

.blog-one__img {
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 1;
}

.blog-one__img:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(var(--thm-black-rgb), .50);
	-webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
	transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
	transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
	transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(-70%);
	transform: translateY(-70%);
	z-index: 1;
}

.blog-one__single:hover .blog-one__img:before {
	visibility: visible;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	opacity: 1;
}

.blog-one__img img {
	width: 100%;
	transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__img img {
	transform: scale(1.05);
}

.blog-one__content {
	position: relative;
	display: block;
	margin-left: 60px;
	margin-top: -160px;
	border-radius: 8px;
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 0px 40px 0px rgba(4, 23, 26, 0.05);
	z-index: 2;
}

.blog-one__content-inner {
	position: relative;
	display: block;
	border-radius: 8px;
	padding: 28px 29px 26px;
	overflow: hidden;
	z-index: 1;
}

.blog-one__content-inner:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 8px;
	background-color: var(--thm-base);
	-webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
	transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
	transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
	transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translatex(-70%);
	transform: translatex(-70%);
	z-index: -1;
}

.blog-one__single:hover .blog-one__content-inner:before {
	visibility: visible;
	-webkit-transform: translatex(0%);
	transform: translatex(0%);
	opacity: 1;
}

.blog-one__date {
	font-size: 14px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__date {
	color: var(--thm-white);
}

.blog-one__date span {
	color: var(--thm-base);
	position: relative;
	margin-right: 4px;
	top: 1px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__date span {
	color: var(--thm-white);
}

.blog-one__title {
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	margin-top: 11px;
	margin-bottom: 15px;
}

.blog-one__title a {
	color: var(--thm-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__title a {
	color: var(--thm-white);
}

.blog-one__btn {
	position: relative;
	display: inline-block;
}

.blog-one__btn a {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__btn a {
	color: var(--thm-white);
}

.blog-one__btn a span {
	position: relative;
	margin-left: 15px;
}

/*** 
====================================================================
	Blog Two
====================================================================
***/
.blog-two {
	position: relative;
	display: block;
	padding: 120px 0 90px;
	z-index: 1;
}

.blog-two .container {
	max-width: 1200px;
}

.blog-two__single {
	position: relative;
	display: block;
	margin-bottom: 30px;
}

.blog-two__img-box {
	position: relative;
	display: block;
}

.blog-two__shape-1 {
	position: absolute;
	top: 0;
	left: 0;
	border-top: 65px solid var(--thm-base);
	border-bottom: 65px solid transparent;
	border-left: 165px solid var(--thm-base);
	border-right: 165px solid transparent;
	z-index: 1;
}

.blog-two__single-3 .blog-two__shape-1 {
	right: 0;
	left: inherit;
	border-right: 165px solid var(--thm-base);
	border-left: 165px solid transparent;
	z-index: 1;
}

.blog-two__img {
	position: relative;
	display: block;
	overflow: hidden;
}

.blog-two__img img {
	width: 100%;
	transform: scale(1.0);
	transition-delay: .1s;
	transition-timing-function: ease-in-out;
	transition-duration: .7s;
	transition-property: all;
}

.blog-two__single:hover .blog-two__img img {
	transform: scale(1.2) rotate(1deg);
}

.blog-two__content {
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	background-color: var(--thm-white);
	padding: 27px 24px 25px;
	z-index: 2;
}

.blog-two__content::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--thm-black);
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
	transform-origin: top right;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	z-index: -1;
}

.blog-two__single:hover .blog-two__content::before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	transform-origin: bottom center;
}

.blog-two__date {
	font-size: 14px;
	color: var(--thm-black);
	position: relative;
	display: flex;
	align-items: center;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-two__single:hover .blog-two__date {
	color: var(--thm-white);
}

.blog-two__date span {
	margin-right: 8px;
	color: var(--thm-base);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-two__single:hover .blog-two__date span {
	color: var(--thm-white);
}

.blog-two__title {
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	margin-top: 6px;
	margin-bottom: 12px;
}

.blog-two__title a {
	color: var(--thm-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-two__single:hover .blog-two__title a {
	color: var(--thm-white);
}

.blog-two__btn {
	position: relative;
	display: inline-block;
}

.blog-two__btn a {
	position: relative;
	display: flex;
	align-items: center;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	color: var(--thm-base);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-two__single:hover .blog-two__btn a {
	color: var(--thm-white);
}

.blog-two__btn a span {
	position: relative;
	margin-left: 14px;
}

.blog-two__single:hover .blog-two__btn a span {
	color: var(--thm-white);
}

/*** 
====================================================================
	Blog Three
====================================================================
***/
.blog-three {
	position: relative;
	display: block;
	padding: 120px 0 60px;
	z-index: 1;
}

.blog-three__single {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 60px;
}

.blog-three__img-box {
	position: relative;
	display: block;
}

.blog-three__img {
	position: relative;
	display: block;
	border-radius: 15px;
	overflow: hidden;
	z-index: 1;
	min-width: 600px;
}

.blog-three__img:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(var(--thm-black-rgb), .60);
	-webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
	transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
	transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
	transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(-70%);
	transform: translateY(-70%);
	z-index: 1;
}

.blog-three__single:hover .blog-three__img:before {
	visibility: visible;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	opacity: 1;
}

.blog-three__img img {
	width: auto;
	border-radius: 15px;
	max-width: none;
	transition: all 500ms ease;
}

.blog-three__single:hover .blog-three__img img {
	transform: scale(1.05);
}

.blog-three__date {
	position: absolute;
	top: 40px;
	right: -80px;
	z-index: 2;
}

.blog-three__date:before {
	content: "";
	position: absolute;
	left: -5px;
	top: 5px;
	right: 5px;
	bottom: -5px;
	background-color: var(--thm-black);
	border-radius: 10px;
	z-index: -1;
}

.blog-three__date p {
	position: relative;
	font-weight: 500;
	color: var(--thm-white);
	padding: 5px 28px 7px;
	background-color: var(--thm-base);
	border-radius: 10px;
	z-index: 2;
}

.blog-three__content {
	position: relative;
	display: block;
	margin-left: 50px;
}

.blog-three__admin-info {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 220px;
}

.blog-three__admin-info:before {
	content: "";
	position: absolute;
	left: 60px;
	top: 50%;
	width: 130px;
	height: 2px;
	background-color: rgba(var(--thm-black-rgb), .10);
	transform: translateY(-50%);
}

.blog-three__admin-img {
	position: relative;
	display: block;
	border: 5px solid rgba(var(--thm-black-rgb), .15);
	border-radius: 50%;
	overflow:hidden;
}

.blog-three__admin-img img {
	width: auto;
	border-radius: 50%;
	max-width: none;
}

.blog-three__admin-name {
	font-weight: 500;
	color: var(--thm-black);
	margin-left: 20px;
}

.blog-three__title {
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	margin-bottom: 19px;
	margin-top: 28px;
}

.blog-three__title a {
	color: var(--thm-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-three__title a:hover {
	color: var(--thm-base);
}

.blog-three__arrow {
	position: relative;
	display: inline-block;
	margin-top: 24px;
}

.blog-three__arrow a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--thm-black);
	border-radius: 50%;
	font-size: 16px;
	color: var(--thm-base);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-three__arrow a:hover {
	color: var(--thm-white);
	background-color: var(--thm-base);
	border: 1px solid var(--thm-base);
}

.blog-three__single-2 .blog-three__admin-name {
	margin-left: 0;
	margin-right: 20px;
}

.blog-three__single-2 .blog-three__admin-info:before {
	left: inherit;
	right: 60px;
}

.blog-three__single-2 .blog-three__date {
	left: -80px;
	right: inherit;
}

.blog-three__single-2 .blog-three__content {
	margin-left: 0;
	text-align: right;
	margin-right: 50px;
}

/*** 
====================================================================
	Blog Archive
====================================================================
***/
.blog-archive {
	position: relative;
	display: block;
	padding: 120px 0 120px;
	z-index: 1;
}

.blog-archive .container {
	max-width: 1320px;
}

.blog-archive__left {
	position: relative;
	display: block;
}

.blog-archive__single {
	position: relative;
	display: block;
	margin-bottom: 41px;
}

.blog-archive__img {
	position: relative;
	display: block;
	border-radius: 15px;
	margin-bottom: 30px;
	text-align: center;
}

.blog-archive__img img {
	border-radius: 15px;
	height: auto;
}

.blog-archive__meta {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 21px;
}

.blog-archive__meta li+li {
	margin-left: 18px;
}

.blog-archive__meta li a {
	color: var(--thm-gray);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-archive__meta li a:hover {
	color: var(--thm-base);
}

.blog-archive__meta li a i {
	color: var(--thm-base);
	position: relative;
	margin-right: 5px;
	font-weight: 900;
}

.blog-archive__title {
	font-size: 30px;
	font-weight: 600;
	line-height: 40px;
}

.blog-archive__title a {
	color: var(--thm-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-archive__title a:hover {
	color: var(--thm-base);
}

.blog-archive__text-1 {
	margin-top: 18px;
	margin-bottom: 16px;
}

.blog-archive__btn {
	position: relative;
	display: inline-block;
	margin-top: 20px;
}

.blog-archive__btn a {
	position: relative;
	display: flex;
	align-items: center;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	color: var(--thm-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-archive__btn a:hover {
	color: var(--thm-base);
}

.blog-archive__btn a span {
	position: relative;
	margin-left: 15px;
}

.blog-archive__pagination {
	position: relative;
	display: block;
	margin-top: 50px;
}

.blog-archive__pagination .pg-pagination li {
	position: relative;
	display: inline-block;
}

.blog-archive__pagination .pg-pagination li+li {
	margin-left: 20px;
}

.blog-archive__pagination .pg-pagination li a {
	height: 60px;
	width: 60px;
	text-align: center;
	line-height: 60px;
	display: inline-block;
	color: var(--thm-black);
	background-color: transparent;
	border: 1px solid #dcdedf;
	border-radius: 50%;
	font-weight: 700;
	font-size: 16px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-archive__pagination .pg-pagination li a:hover {
	background-color: var(--thm-base);
	color: var(--thm-white);
	border: 1px solid var(--thm-base);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar__single+.sidebar__single {
	margin-top: 32px;
}

.sidebar {
	position: relative;
	display: block;
	margin-top: -8px;
}

.sidebar__title-box,
.widget .wp-block-search__label,
.widget h2 {
	position: relative;
	display: block;
	margin-bottom: 30px;
	color: var(--thm-black);
	font-family: var(--thm-font-two);
}

.sidebar__title-box::before,
.widget .wp-block-search__label:before,
.widget h2:before {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 30px;
	height: 4px;
	border-radius: 2px;
	background-color: var(--thm-base);
}

.sidebar__title-box h3,
.widget .wp-block-search__label,
.widget h2 {
	font-size: 24px;
	font-weight: 600;
	line-height: 34px;
}

.sidebar__search {
	position: relative;
	display: block;
}

.sidebar__search-box {
	position: relative;
}

.sidebar__search-form,
.wp-block-search__inside-wrapper {
	position: relative;
	display: block;
}

.sidebar__search-form input[type="search"],
.wp-block-search__inside-wrapper input{
	display: block;
	outline: none;
	background-color: var(--thm-primary);
	font-size: 16px;
	font-weight: 500;
	padding-left: 20px;
	height: 60px;
	width: 100%;
	padding-right: 50px;
	color: var(--thm-gray);
	border-radius: 10px;
}

.wp-block-search__inside-wrapper input{
	border: none;
	padding-right: 91px;
}

.sidebar__search-form button[type="submit"],
.wp-block-search__inside-wrapper button {
	color: var(--thm-base);
	font-size: 16px;
	position: absolute;
	top: 0;
	right: 0;
	min-width: 50px;
	bottom: 0;
	outline: none;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: transparent;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.wp-block-search__inside-wrapper button{
	padding-right:10px;
	padding-left: 10px;
	margin: 0;
}

.sidebar__search-form button[type="submit"]:hover,
.wp-block-search__inside-wrapper button:hover {
	background-color: var(--thm-base);
	color: var(--thm-white);
}

.sidebar__categories {
	position: relative;
	display: block;
}

.sidebar__categories-box {
	position: relative;
	display: block;
}

.sidebar__categories-list {
	position: relative;
	display: block;
}

.sidebar__categories-list li {
	position: relative;
	display: block;
}

.sidebar__categories-list li+li {
	margin-top: 15px;
}

.sidebar__categories-list li>a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	font-weight: 500;
	font-family: var(--thm-font-two);
	border: 1px solid #dadcdd;
	border-radius: 10px;
	color: var(--thm-black);
	padding: 14px 25px 16px;
	overflow: hidden;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 1;
}

.sidebar__categories-list li:hover a {
	color: var(--thm-white);
}

.sidebar__categories-list li>a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0px;
	right: 0;
	border-radius: 10px;
	background-color: var(--thm-base);
	transition: -webkit-transform 0.5s ease;
	transition: transform 0.5s ease;
	transition: transform 0.5s ease, -webkit-transform 0.5s ease;
	transform-origin: left right;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	z-index: -1;
}

.sidebar__categories-list li:hover a::before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	transform-origin: top center;
}

.sidebar__categories-list li>a>p {
	position: relative;
	display: inline-block;
}

.sidebar__categories-list li>a>p>span {
	position: absolute;
	top: -4px;
	right: -9px;
	font-size: 10px;
}

.sidebar__categories-list li>a .icon {
	position: relative;
	display: inline-block;
	opacity: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.sidebar__categories-list li>a .icon i {
	font-size: 14px;
	font-weight: 900;
	color: var(--thm-white);
}

.sidebar__categories-list li:hover .icon {
	opacity: 1;
}

.sidebar__post {
	position: relative;
	display: block;
}

.sidebar__post-list {
	position: relative;
	display: block;
	border: 1px solid #dadcdd;
	padding: 29px 29px 29px;
	border-radius: 10px;
}

.sidebar__post-list li {
	position: relative;
	display: flex;
	align-items: center;
}

.sidebar__post-list li+li {
	margin-top: 25px;
}

.sidebar__post-image {
	position: relative;
	display: block;
	max-width: 70px;
	width: 100%;
	border-radius: 10px;
}

.sidebar__post-image img {
	width: 100%;
	border-radius: 10px;
}

.sidebar__post-content {
	position: relative;
	display: block;
	margin-left: 20px;
}

.sidebar__post-title {
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
}

.sidebar__post-title a {
	color: var(--thm-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.sidebar__post-title a:hover {
	color: var(--thm-base);
}

.sidebar__post-date {
	font-size: 12px;
}

.sidebar__tag {
	position: relative;
	display: block;
}

.sidebar__tag-list {
	position: relative;
	display: block;
	border: 1px solid #dadcdd;
	padding: 34px 29px 34px;
	border-radius: 10px;
}

.sidebar__tag-list a {
	color: var(--thm-black);
	background-color: #f6f6f6;
	display: inline-block;
	padding: 9px 20px 11px;
	line-height: 30px;
	margin-left: 7px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	border-radius: 3px;
}

.sidebar__tag-list a+a {
	margin-left: 6px;
	margin-top: 10px;
}

.sidebar__tag-list a:hover {
	background-color: var(--thm-base);
	color: var(--thm-white);
}

/*** 
====================================================================
	Blog Details
====================================================================
***/
.blog-details {
	position: relative;
	display: block;
	padding: 120px 0 120px;
	z-index: 1;
}

.blog-details .container {
	max-width: 1200px;
}

.blog-details__left {
	position: relative;
	display: block;
}

.blog-details__img-1 {
	position: relative;
	display: block;
	border-radius: 15px;
	margin-bottom: 30px;
}

.blog-details__img-1 img {
	width: 100%;
	border-radius: 15px;
}

.blog-details__meta {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 21px;
}

.blog-details__meta li+li {
	margin-left: 18px;
}

.blog-details__meta li a {
	color: var(--thm-gray);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-details__meta li a:hover {
	color: var(--thm-base);
}

.blog-details__meta li a i {
	color: var(--thm-base);
	position: relative;
	margin-right: 5px;
	font-weight: 900;
}

.blog-details__title {
	font-size: 30px;
	font-weight: 600;
	line-height: 40px;
}

.blog-details__title a {
	color: var(--thm-black);
}

.blog-details__text-1 {
	margin-top: 18px;
	margin-bottom: 16px;
}

.blog-details__img-2 {
	position: relative;
	display: block;
	border-radius: 15px;
	margin-top: 44px;
}

.blog-details__img-2 img {
	width: 100%;
	border-radius: 15px;
}

.blog-details__title-2 {
	font-size: 30px;
	font-weight: 600;
	line-height: 40px;
}

.blog-details__title-2 a {
	color: var(--thm-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-details__title-2 a:hover {
	color: var(--thm-base);
}

.blog-details__text-3 {
	margin-top: 18px;
	margin-bottom: 26px;
}

.blog-details__quote-text-box {
	position: relative;
	display: flex;
}

.blog-details__quote {
	position: relative;
	display: block;
	top: 4px;
}

.blog-details__quote span {
	position: relative;
	display: inline-block;
	font-size: 43px;
	color: var(--thm-black);
}

.blog-details__quote-text {
	margin-left: 20px;
}

.blog-details__points {
	position: relative;
	display: block;
	margin-top: 20px;
	margin-bottom: 26px;
	padding: 0px !important;
}

.blog-details__points li {
	position: relative;
	display: flex !important;
	align-items: center;
	list-style: none !important;
}

.blog-details__points li+li {
	margin-top: 16px;
}

.blog-details__points-shape {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 10px;
	height: 10px;
	background-color: #bfc2c3;
	border-radius: 50%;
}

.blog-details__points li p {
	margin-left: 10px;
}

.blog-details__social {
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 34px;
}

.blog-details__social p {
	font-weight: 500;
	font-family: var(--thm-font-two);
	color: var(--thm-black);
	margin-right: 22px;
}

.blog-details__social a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: transparent;
	font-size: 14px;
	color: var(--thm-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-details__social a:hover {
	color: var(--thm-white);
	background-color: var(--thm-base);
}

.blog-details__social a+a {
	margin-left: 13px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.blog-details__comment-and-form {
	position: relative;
	display: block;
	margin-top: 70px;
}

.comment-one__title {
	margin: 0;
	color: var(--thm-black);
	font-size: 30px;
	margin-bottom: 35px;
	letter-spacing: -0.05em;
	font-weight: 600;
}

.comment-one__single {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.comment-one__single+.comment-one__single {
	margin-top: 28px;
}

.comment-one__content {
	position: relative;
	margin-left: 30px;
	border-bottom: 1px solid #e5e7e8;
	padding-bottom: 29px;
	width: calc( 100% - 130px );
	margin-bottom: 30px;
}

.comment-one__single-3 .comment-one__content {
	border-bottom: none;
}

.comment-one__content h3.c-title {
	font-size: 20px;
	color: var(--thm-black);
	font-weight: 600;
}

.comment-one__content span {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
	color: var(--thm-black);
}

.comment-one__btn {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 23px;
	color: var(--thm-base);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	margin-left: 13px;
}

.comment-one__btn:hover {
	color: var(--thm-black);
}

.comment-one__image {
	position: relative;
	display: block;
	border-radius: 50%;
	max-width: 100px;
	width: 100%;
}

.comment-one__image img {
	width: 100%;
	border-radius: 50%;
}

.comment-one__form {
	position: relative;
	display: block;
	margin-top: 70px;
}

.comment-one__form .comment-one__title {
	letter-spacing: 0;
}

.comment-one__form-box {
	position: relative;
	display: block;
}

.comment-one__form-box .row {
	--bs-gutter-x: 25px;
}

.comment-one__input-box {
	position: relative;
	display: block;
	margin-bottom: 13px;
}

.comment-one__input-box input[type="text"],
.comment-one__input-box input[type="email"] {
	height: 38px;
	width: 100%;
	border-bottom: 1px solid #dadcdd;
	background-color: transparent;
	outline: none;
	font-size: 14px;
	color: var(--gray-color);
	display: block;
	font-weight: 500;
	border-radius: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.comment-one__input-box input[type="text"]:focus,
.comment-one__input-box input[type="email"]:focus {
	border-bottom: 1px solid var(--thm-base);
}

.comment-one__input-box textarea {
	font-size: 14px;
	color: var(--thm-gray);
	height: 115px;
	width: 100%;
	background-color: transparent;
	border-bottom: 1px solid #dadcdd;
	outline: none;
	margin-bottom: 0px;
	font-weight: 500;
	border-radius: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.comment-one__input-box textarea:focus {
	border-bottom: 1px solid var(--thm-base);
}

.comment-one__input-box.text-message-box {
	height: 115px;
	margin-bottom: 35px;
}

.comment-one__btn-2 {
	padding: 24px 27px 23px;
	background-color: rgba(var(--thm-base-rgb), .40);
}

.comment-one__btn-2::before {
	background: var(--thm-base);
}

.comment-one__btn-2::after {
	background: var(--thm-black);
}

.sidebar__twitter {
	position: relative;
	display: block;
}

.sidebar__twitter-list {
	position: relative;
	display: block;
	border: 1px solid #dadcdd;
	border-radius: 10px;
	padding: 25px 30px 26px;
	padding-right: 40px;
}

.sidebar__twitter-list li {
	position: relative;
	display: block;
}

.sidebar__twitter-list li+li {
	border-top: 1px solid #dadcdd;
	margin-top: 26px;
	padding-top: 25px;
}

.sidebar__twitter-text {
	font-size: 14px;
	color: var(--thm-black);
	line-height: 24px;
}

.sidebar__twitter-text a {
	color: var(--thm-base);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.sidebar__twitter-text a:hover {
	color: var(--thm-black);
}

.sidebar__twitter-day {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 14px;
	margin-top: 9px;
}

.sidebar__twitter-day span {
	position: relative;
	margin-right: 10px;
	color: var(--thm-base);
}

/*** 
====================================================================
	Blog Four
====================================================================
***/
.blog-four {
	position: relative;
	display: block;
	padding: 120px 0 90px;
	z-index: 1;
}

.blog-four .row {
	--bs-gutter-x: 40px;
}

.blog-four__left {
	position: relative;
	display: block;
	margin-right: -60px;
}

.blog-four__single {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.blog-four__content {
	position: relative;
	display: block;
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 0px 25px 0px rgba(38, 38, 56, 0.07);
}

.blog-four__content-top {
	position: relative;
	display: block;
	padding: 31px 45px 0px;
}

.blog-four__sub-title {
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	position: relative;
	display: inline-block;
}

.blog-four__sub-title::before {
	content: "";
	position: absolute;
	bottom: -9px;
	left: 0;
	width: 55px;
	height: 3px;
	background-color: var(--thm-base);
}

.blog-four__title {
	font-size: 26px;
	font-weight: 700;
	line-height: 34px;
	margin-top: 26px;
	margin-bottom: 14px;
	font-family: var(--thm-font);
}

.blog-four__title a {
	color: var(--thm-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-four__title a:hover {
	color: var(--thm-base);
}

.blog-four__meta {
	position: relative;
	display: flex;
	align-items: center;
	background-color: rgb(241, 243, 242, .90);
	width: 320px;
	padding: 14px 40px 13px;
	clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
	margin-top: 34px;
}

.blog-four__meta li {
	position: relative;
	display: flex;
	align-items: center;
}

.blog-four__meta li+li {
	margin-left: 32px;
}

.blog-four__meta li a {
	font-size: 16px;
	font-weight: 500;
	color: var(--thm-gray);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-four__meta li a:hover {
	color: var(--thm-base);
}

.blog-four__meta li a span {
	color: var(--thm-base);
	position: relative;
	margin-right: 10px;
}

.blog-four__img {
	position: relative;
	display: block;
	overflow: hidden;
	max-width: 350px;
	width: 100%;
}

.blog-four__img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(var(--thm-black-rgb), .50);
	transform: scaleX(0.7) rotateX(20deg);
	opacity: 0;
	transition: all 0.4s linear;
}

.blog-four__single:hover .blog-four__img::before {
	transform: scaleX(1.0) rotateX(0deg);
	transition: all 0.4s linear;
	opacity: 1;
}

.blog-four__img img {
	width: auto;
	max-width: none;
}

.blog-four__right {
	position: relative;
	display: block;
	margin-left: 60px;
}

.blog-four__date {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--thm-white);
	width: 114px;
	margin-bottom: -22px;
	padding-top: 32px;
	clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 100%);
	z-index: 2;
}

.blog-four__date p {
	font-size: 45px;
	font-weight: 700;
	line-height: 45px;
	color: var(--thm-base);
	text-align: center;
}

.blog-four__date p span {
	font-size: 22px;
	font-weight: 500;
	line-height: 22px;
	color: #262638;
	position: relative;
	top: -15px;
}








/*** 
====================================================================
	End
====================================================================
***/