.post-filter-row {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 14px;
}
.post-result {
	color: var(--sk-black);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.5;
}
.jq-selectbox__select {
	border: 1px solid var(--sk-black);
	background-color: var(--sk-white);
	padding: 0 60px 0 18px;
	border-radius: 0;
	cursor: pointer;
	height: 48px;
	min-width: 195px;
}
.jq-selectbox__select-text {
	line-height: 46px;
	font-size: 16px;
	font-weight: 500;
	color: var(--sk-black);
	width: 100% !important;
}
.jq-selectbox__trigger {
	position: absolute;
	right: 0;
	top: 0;
	width: 48px;
	height: 100%;
	background-color: var(--sk-primary);
}
.jq-selectbox__trigger-arrow {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%) rotate(90deg);
	width: 7px;
	height: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.jq-selectbox__trigger-arrow:before {
	position: relative;
	display: flex;
	content: '';
	width: 100%;
	height: 100%;
	background: url(../images/btn-arrow.svg) no-repeat center;
	background-size: contain;
	transition: all 0.3s ease;
}
.jq-selectbox.opened .jq-selectbox__trigger-arrow:before {
	transform: rotate(-180deg);
}
.jq-selectbox__dropdown {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    background: #fff;
    border: 1px solid var(--sk-black);
}
.jq-selectbox ul {
	padding: 0px 0px;
    background-color: var(--sk-skeen);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
	margin: 0;
}
.jq-selectbox ul li {
	border-radius: 0;
	padding: 0 20px;
	font-size: 16px;
	color: var(--sk-black);
	cursor: pointer;
}
.jq-selectbox ul li.sel {
	color: var(--sk-secondary);
}
.jq-selectbox ul li:last-child {
	margin-bottom: 0;
}
.blog-post {
	position: relative;
	display: flex;
	align-items: center;
	transition: all 0.3s ease-out;
	color: inherit;
	text-decoration: none;
  	z-index: 1;
  	height: 100%;
  	padding-right: 111px;
  	padding-bottom: 40px;
  	margin-bottom: 35px;
  	border-bottom: 1px solid var(--sk-skeen);
}
.blog-post:hover {
	color: inherit;
	text-decoration: none;
}
.blog-post-img {
	position: relative;
	display: flex;
	width: 285px;
	min-width: 285px;
	height: 153px;
	margin-right: 48px;
	overflow: hidden;
	mask-image: url(../images/post-img-bg.svg);
    -webkit-mask-image: url(../images/post-img-bg.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center ;
    -webkit-mask-position: center;
    mask-size: contain;
    -webkit-mask-size: contain;
}
.blog-post-img .read-more {
	display: none;
}
.blog-post-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease-out;
	transform: scale(1);
}
.blog-post:hover .blog-post-img img {
	transform: scale(1.1);
}
.blog-post-info *:last-child {
	margin-bottom: 0;
}
.post-cat {
	position: relative;
	display: block;
	color: var(--sk-black);
	font-size: 16px;
	line-height: 1.2;
	font-weight: 500;
	margin: 0 0 9px;
}
.blog-post h3 {
	font-size: 28px;
	line-height: 1.1;
	margin: 0 0 15px;
}
.blog-post h3 a {
	color: var(--sk-black);
	text-decoration: none;
}
.blog-post h3 a:hover {
	color: var(--sk-secondary);
}
.post-date {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 1.2;
	color: #444;
}
.read-more {
	position: relative;
	display: flex;
	width: 48px;
	height: 48px;
	background-color: var(--sk-primary);
	align-items: center;
	justify-content: center;
}
.read-more span i,
.read-more span {
	position: relative;
	display: flex;
}
.blog-post .read-more {
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
}
.blog-post:hover .read-more {
	background-color: var(--sk-secondary);
}
.blog-post:hover .read-more:before {
	left: 0;
	top: 0;
}
.blog-post:hover .hover-icon {
	opacity: 1;
	visibility: visible;
}
.blog-post:hover .normal-icon {
	opacity: 0;
	visibility: hidden;
}
.load-more i img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}
.post-detail-info h2,
.post-detail-info h3,
.post-detail-info h4,
.post-detail-info h5,
.post-detail-info h6 {
	margin-top: 50px;
}
.post-bottom {
	position: relative;
	display: block;
	z-index: 2;
	border-top: 1px solid var(--sk-skeen);
	padding: 25px 0;
}
.post-bottom-info {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.post-bottom-info .post-date {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 400;
}
.post-social {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}
.post-social label {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 400;
}
.post-social .footer-social li a {
	background-color: var(--sk-primary);
	border: none;
}
.post-social .footer-social li a:before {
	border-color: var(--sk-white);
	width: 100%;
	height: 100%;
	left: 3px;
	top: 3px;
}
.post-social .footer-social li a:hover {
	background-color: var(--sk-yellow);
}
.gray-banner {
	position: absolute;
	left: 0;
	top: 35px;
	width: 100%;
	height: 245px;
	background-color: var(--sk-skeen);
}
.with-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	flex-wrap: wrap;
}
.with-btn .maxtitle-2 {
	margin-bottom: 0;
}
.related-post-row .blog-post {
	height: 100%;
}
.related-post-row .blog-post-img {
	width: 123px;
	min-width: 123px;
	height: 82px;	
}
.search-result .blog-post-img {
	width: 96px;
	min-width: 96px;
	height: 64px;
	margin-right: 23px;
}
.search-result .blog-post h3 a mark {
	background-color: transparent;
	color: var(--sk-secondary);
}
.blog-post.annexer-blog {
	padding-right: 90px;
}
.annexer-blog p {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
}
.annexer-blog.blog-post .read-more {
	top: 50%;
	transform: translateY(-50%);
	right: 32px;
}
.footer-top-shape {
	position: relative;
    display: flex;
    width: 100%;
    height: 50px;
    top: -23px;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}
.search-result .blog-post {
	border: 1px solid var(--sk-skeen);
	padding: 20px 80px 20px 20px;
	margin-bottom: 20px;
}
.search-result .blog-post:hover {
	border-color: var(--sk-secondary);
}
.search-result .post-cat {
	margin-bottom: 2px;
}
.search-result .blog-post h3 {
	font-size: 24px;
}
.search-result .blog-post .read-more {
	border: 1px solid var(--sk-black);
	right: 20px;
}
@media (max-width: 991px) {
	.with-btn .btn {
		display: none;
	}
	.related-post-row .blog-post {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}
	.related-post-row .blog-post-img {
		margin: 0 0 20px;
	}
	.related-post-row .blog-post .read-more {
		display: none;
	}
	.blog-post-slider .owl-nav {
		position: relative;
		width: 100%;
		padding-top: 20px;
	}
	.blog-post-slider.owl-carousel .owl-nav button.owl-next, 
	.blog-post-slider.owl-carousel .owl-nav button.owl-prev {
		position: relative;
		display: block;
		width: 30px;
		height: 30px;
		background-color: transparent;
		outline: none;
		box-shadow: none;
		border: none;
		border-radius: 0;
		font-size: 0;
		float: left;
		padding: 0;
	}
	.blog-post-slider.owl-carousel .owl-nav button.owl-next {
		margin-left: auto;
		float: right;
	}
	.blog-post-slider.owl-carousel .owl-nav button.owl-next:after, 
	.blog-post-slider.owl-carousel .owl-nav button.owl-prev:after {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		content: '';
		display: flex;
		width: 11px;
		height: 9px;
		background: url(../images/text-arrow-link.svg) no-repeat center;
		background-size: contain;
	}
	.blog-post-slider.owl-carousel .owl-nav button.owl-prev:after {
		transform: translateY(-50%) rotate(-180deg);
		right: auto;
		left: 0;
	}
	.blog-post-slider.owl-carousel .owl-dots {
		position: absolute;
		left: 50%;
		bottom: 5px;
		transform: translateX(-50%);
		width: auto;
	}
	.blog-post-slider.owl-carousel .owl-dot {
		position: relative;
		display: inline-flex;
		width: 5px;
		height: 5px;
		background-color: transparent;
		border: 1px solid var(--sk-black);
		border-radius: 50%;
		padding: 0;
		margin: 3px;
	}
	.blog-post-slider.owl-carousel .owl-dot.active {
		background-color: var(--sk-black);
	}
	.blog-post {
	    padding-right: 95px;
	}
	.blog-post-img {
	    width: 260px;
	    min-width: 260px;
	    height: 153px;
	    margin-right: 25px;
	}
}
@media (min-width: 768px) {
	.post-bottom-left label {
		display: none;
	}
}
@media (max-width: 767px) {
	.post-result {
	    font-size: 16px;
	}
	.post-filter-row {
		flex-direction: column;
		align-items: flex-start;
	}
	.post-filter {
		width: 100%;
	}
	.blog-post {
		flex-direction: column;
		align-items: flex-start;
		padding: 0px;
	}
	.blog-post-img {
	    width: 100%;
	    min-width: inherit;
	    height: auto;
	    margin-right: 0;
	    margin-bottom: 15px;
	}
	.blog-post .read-more {
		display: none;
	}
	.post-detail-info h2:not(:first-child),
	.post-detail-info h3,
	.post-detail-info h4,
	.post-detail-info h5,
	.post-detail-info h6 {
		margin-top: 30px;
	}
	.related-post-row {
		position: relative;
		overflow: hidden;
		margin-left: -20px;
		width: calc(100% + 40px);
		padding-left: 20px;
		padding-right: 20px;
	}
	.footer-top-shape {
	    height: 20px;
	    top: -18px;
	}
	.related-post-row .blog-post-slider {
		padding-right: 20px;
	}
	.related-post-row .blog-post-slider .owl-stage-outer {
		overflow: inherit;
	}
	.search-result .blog-post {
		flex-direction: row;
		padding: 16px;
		margin-bottom: 16px;
	}
	.search-result .blog-post-img {
	    width: 75px;
	    min-width: 75px;
	    height: 50px;
	    margin-right: 19px;
	}
	.search-result .blog-post h3 {
	    font-size: 18px;
	}
	.blog-post.annexer-blog {
		padding-right: 85px;
	} 
	.blog-post.annexer-blog .read-more {
		display: flex;
		right: 25px;
	}
	.blog-post {
		border-bottom: none;
		padding-bottom: 0;
	}
	.blog-post h3 {
	    font-size: 20px;
	    line-height: 1.3;
	}
	.post-bottom-info .post-date {
		font-size: 14px;
	}
	.post-social label {
		font-size: 14px;
	}
	.post-social .footer-social li a {
		width: 48px;
	}
	.post-social label {
		display: none;
	}
	.post-bottom-left label {
		position: relative;
	    display: block;
	    font-size: 14px;
	    line-height: 1.2;
	    font-weight: 600;
	    color: var(--sk-white);
	    margin-top: 10px;
	}
	.post-cat {
	    font-size: 14px;
	}
	.jq-selectbox__select {
		min-width: 100%;
	}
	.blog-post-img .read-more {
		display: flex;
		top: auto;
		transform: none;
		right: 35px;
		bottom: 37px;
	}
	.blog-post-img {
		mask-size: cover;
    	-webkit-mask-size: cover;
	}
	.post-filter .jq-selectbox {
		width: 100%;
	}
	
}
