.entry-header.hidden{
	display: none;
}

.item_post {
    width: 100%;
    margin-top: 10px;
    padding-bottom: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background: #fff;
	-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
	margin-bottom: 10px;
}
.item_post_img {
	position: relative;
	overflow: hidden;
}
.item_post_img img {
	display: block;
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.item_post_img:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.investor__eyes {
	width: 100%;
	height: 100%;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
	pointer-events: none;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	font-size: 24px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	position: absolute;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-justify-content: center;
	opacity: 0;
	visibility: hidden;
}
.item_post_img:hover .investor__eyes {
	opacity: 1;
	visibility: visible;
}
.item_post a {
    text-decoration: none;
}
.item_post .title {
	color: #000000;
	margin-bottom: 5px;
	display: -webkit-inline-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

.item_post_content {
	padding: 20px;
}

.post_date {
	color: #0009;
	padding: 5px 0;
}

.post_excerpt {
	color: #0009;
}
.more-post {
	font-size: 12px;
	font-weight: bold;
	color: #05406d;
	line-height: 1.66667;
	position: relative;
}
.more-post::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #05406d;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.more-post:hover::after {
	width: 30px;
}

nav.navigation.pagination {
    float: left;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

nav.navigation.pagination a.page-numbers {
    padding: 5px;
    text-decoration: none;
}

nav.navigation.pagination a.page-numbers:hover {
    text-decoration: underline;
}

/* single */
.single-wrap{
	padding: 60px 70px;
	background-color: #fff;
}
.single-heading{
	text-transform: uppercase;
	margin-top: 0;
}
.single-pagination {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid rgba(112, 112, 112, 0.2);
}
.single-pagination img {
	width: 115px;
	height: 55px;
	object-fit: cover;
	margin:0 10px;
}
.single-pagination a {
	display: flex;
}
.single-pagination .single-pagination-next  a {
	justify-content: flex-end;
}
/* page */
.page-heading {
    text-align: center;
    color: #018791;
    font-size: 21px;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 5px;
}

@media only screen and (max-width: 1200px) {
	.single-wrap {
		padding: 20px;
	}
	.single-heading {
		font-size: 22px;
	}
}
@media only screen and (max-width: 810px) {
	.item_post_content {
		padding: 10px;
	}
	.item_post .title {
		font-size: 18px;
	}
}
@media only screen and (max-width: 768px) {
    .post_excerpt {
        font-size: 11px;
    }

    .item_post h4 {
        font-size: 13px;
    }

    .post_date {
        font-size: 10px;
        margin-top: 0px;
    }

    .post_excerpt p {
        margin: 0;
    }
    .single-pagination {
    	margin-top: 20px;
    	padding-top: 20px;
    }
    .single-pagination h3 {
    	font-size: 15px;
    	margin: 10px 0;
    }
    .single-pagination .single-pagination-btn{
    	width: 100%;
    }
}

@media only screen and (max-width: 640px) {
	.entry-content .col-mb{
		width: 50%;
	}
	.single-wrap {
		padding: 10px;
	}
}
@media only screen and (max-width: 500px) {
    .post_excerpt {
        display: none;
    }
    .item_post .title {
    	font-size: 15px;
    }
}