/*# sourceMappingURL=blog.css.map */

.blog {
	padding-top: 130px;
	padding-bottom: 30px;
	width: 100%;
	background-color: #edf3f5;
}

@media screen and (max-width: 768px) {
	.blog .container {
		width: 90%;
	}
}

.blog__container {
	width: 1140px;
	display: block;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.blog__container {
		width: 100%;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
}

.blog .slider {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 24px 0px;
}

@media only screen and (max-width: 768px) {
	.blog .slider {
		display: none;
	}
}

.blog .slider__wrapper {
	position: relative;
	background-color: #fff;
	width: 1140px;
	height: 390px;
	border-radius: 8px;
	-webkit-box-shadow: 0px 1px 15px -7px #000;
	box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, .4235294118);
}

.blog .slider__item {
	display: flex;
	cursor: grab;
}

.blog .slider__image {
	flex: 2;
	width: 69%;
	height: 390px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	object-fit: cover;
	object-position: bottom;
}

.blog .slider__content {
	flex: 1;
	display: flex;
	width: 90%;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 32px;
}

.blog .slider__navigation {
	position: absolute;
	right: 0px;
	bottom: 0px;
	background-color: #fff;
	width: 140px;
	height: 80px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	border: 1px solid #e3e9ea;
	border-radius: 0px 0px 8px 0px;
}

.blog .slider__nav-button {
	cursor: pointer;
	width: 100%;
	height: 100%;
	display: flex;
	font-size: 1.1rem;
	justify-content: center;
	align-items: center;
}

.blog .slider__nav-button:hover {
	color: #115594;
}

.blog .content-wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
	height: 100%;
	padding-top: 28px;
}

.blog .content-wrapper__category {
	margin-bottom: 18px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.blog .content-wrapper__category span a {
	background-color: #fecf5e;
	font-size: .9rem;
	padding: 5px 10px;
	border-radius: 8px;
	text-decoration: none;
	color: #115594;
}

.blog .content-wrapper__post-title h2 {
	font-size: 1.6rem;
	line-height: 1.3em;
}

.blog .content-wrapper__post-title h2 a {
	text-decoration: none;
	color: #115594;
}

.blog .content-wrapper__post-title h2 a:hover {
	transition: .5s;
	color: #333;
}

.blog .content-wrapper__meta-data span {
	font-size: .85rem;
	color: #b7b7b7;
}

.blog .content-wrapper__excerpt p {
	font-size: 1rem;
	line-height: 1.3em;
	color: #575756;
}

.blog .content-wrapper__read-more {
	width: 100%;
	position: absolute;
	bottom: 0px;
}

.blog .content-wrapper__read-more a {
	display: flex;
	gap: 5px;
	align-items: center;
	text-decoration: none;
	color: #1971c2;
}

.blog .content-wrapper__read-more a span.icon {
	color: #1971c2;
	transition: .5s;
}

.blog .content-wrapper__read-more a:hover {
	color: #115594;
}

.blog .content-wrapper__read-more a:hover span.icon {
	transition: .5s;
	color: #115594;
	transform: translateX(5px);
}

.popular-posts {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px 0px 12px 0px;
}

@media screen and (max-width: 768px) {
	.popular-posts {
		flex-direction: column;
	}
}

.popular-posts__card {
	width: 355px;
	margin: 15px 5px;
	height: 420px;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0px -2px 15px rgba(0, 0, 0, .2);
	position: relative;
}

@media screen and (max-width: 768px) {
	.popular-posts__card {
		width: 90%;
	}
}

.popular-posts__thumbnail {
	height: 250px;
	width: 100%;
	overflow: hidden;
}

.popular-posts__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: relative;
}

.popular-posts__thumbnail img:hover {
	transform: scale(1.1, 1.1);
}

.popular-posts__content-area {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
}

.popular-posts__section-title {
	display: flex;
	margin-top: 62px;
	align-items: center;
	gap: 20px;
	color: #115594;
	width: 100%;
}

.popular-posts__section-title h2 {
	font-size: 1.8rem;
	font-weight: 600;
}

.popular-posts__section-title h2 .icon {
	margin-left: 10px;
	color: #115594;
	font-size: 1rem;
}

@media screen and (max-width: 768px) {
	.popular-posts__section-title {
		justify-content: center;
	}
}

.popular-posts__title {
	cursor: pointer;
}

.popular-posts__title a {
	text-decoration: none;
	color: #115594;
	font-size: 1.3rem;
	line-height: 1.3em;
}

.popular-posts__title a:hover {
	transition: .7s;
	color: #333;
}

.popular-posts__title a:visited {
	color: #115594;
}

.popular-posts__title a:visited:hover {
	transition: .7s;
	color: #333;
}

.popular-posts__meta span {
	font-size: .85rem;
	color: #b7b7b7;
}

.popular-posts__read-more {
	bottom: 0px;
	left: 0px;
	position: absolute;
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 15px 10px;
	border-top: 1px solid #e3e9ea;
	cursor: pointer;
}

.popular-posts__read-more:hover span {
	transform: translateX(5px);
}

.popular-posts__read-more a {
	width: 90%;
	display: flex;
	text-decoration: none;
	color: #115594;
	font-size: .9rem;
	justify-content: space-between;
	align-items: center;
}

.popular-posts__read-more a span {
	color: #115594;
}

.popular-posts__read-more a:hover {
	color: #333;
	transition: .5s;
}

#popular-posts-load-more {
	width: 100%;
	background-color: #fff;
	cursor: pointer;
	text-align: center;
	padding: 18px;
	border-radius: 8px;
}

#popular-posts-load-more:hover {
	box-shadow: 0px 3px 10px rgba(0, 0, 0, .1);
}

#popular-posts-load-more:hover span {
	color: #115594;
	transition: .5s;
}

#popular-posts-load-more span {
	width: 100%;
	font-weight: 600;
	color: #919191;
	transition: .5s;
	border: 0px solid rgba(0, 0, 0, 0);
	margin-bottom: 30px;
}

.trending-posts {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px 0px 12px 0px;
}

@media screen and (max-width: 768px) {
	.trending-posts {
		flex-direction: column;
	}
}

.trending-posts__card {
	width: 555px;
	margin: 15px 5px;
	height: 450px;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0px -2px 15px rgba(0, 0, 0, .2);
	position: relative;
}

.trending-posts__card:hover .trending-posts__category {
	transition: .5s;
	transform: translateY(0%);
}

@media screen and (max-width: 768px) {
	.trending-posts__card {
		width: 90%;
		height: 490px;
	}
}

.trending-posts__category {
	position: absolute;
	top: 15px;
	transform: translateY(-200%);
	left: 18px;
	margin-bottom: 18px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	z-index: 50;
}

.trending-posts__category span a {
	background-color: #115594;
	font-size: .9rem;
	padding: 5px 10px;
	border-radius: 8px;
	text-decoration: none;
	color: #fecf5e;
}

.trending-posts__thumbnail {
	height: 280px;
	width: 100%;
	overflow: hidden;
}

.trending-posts__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: relative;
}

.trending-posts__thumbnail img:hover {
	transform: scale(1.1, 1.1);
}

.trending-posts__content-area {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
}

.trending-posts__section-title {
	display: flex;
	margin-top: 62px;
	align-items: center;
	gap: 20px;
	color: #115594;
	width: 100%;
}

.trending-posts__section-title h2 {
	font-size: 1.8rem;
	font-weight: 600;
}

.trending-posts__section-title h2 .icon {
	margin-left: 10px;
	color: #115594;
	font-size: 1rem;
}

@media screen and (max-width: 768px) {
	.trending-posts__section-title {
		justify-content: center;
	}
}

.trending-posts__title {
	cursor: pointer;
}

.trending-posts__title a {
	text-decoration: none;
	color: #115594;
	font-size: 1.6rem;
	line-height: 1.3em;
}

.trending-posts__title a:hover {
	transition: .7s;
	color: #333;
}

.trending-posts__title a:visited {
	color: #115594;
}

.trending-posts__title a:visited:hover {
	transition: .7s;
	color: #333;
}

.trending-posts__meta span {
	font-size: .85rem;
	color: #b7b7b7;
}

.trending-posts__read-more {
	bottom: 0px;
	left: 0px;
	position: absolute;
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 15px 10px;
	border-top: 1px solid #e3e9ea;
	cursor: pointer;
}

.trending-posts__read-more:hover span {
	transform: translateX(5px);
}

.trending-posts__read-more a {
	width: 90%;
	display: flex;
	text-decoration: none;
	color: #115594;
	font-size: .9rem;
	justify-content: space-between;
	align-items: center;
}

.trending-posts__read-more a span {
	color: #115594;
}

.trending-posts__read-more a:hover {
	color: #333;
	transition: .5s;
}

#trending-posts-load-more {
	width: 100%;
	background-color: #fff;
	cursor: pointer;
	text-align: center;
	padding: 18px;
	border-radius: 8px;
}

#trending-posts-load-more:hover {
	box-shadow: 0px 3px 10px rgba(0, 0, 0, .1);
}

#trending-posts-load-more:hover span {
	color: #115594;
	transition: .5s;
}

#trending-posts-load-more span {
	width: 100%;
	font-weight: 600;
	color: #919191;
	transition: .5s;
	border: 0px solid rgba(0, 0, 0, 0);
	margin-bottom: 30px;
}

.single-post {
	padding-top: 80px;
	padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
	.single-post {
		margin-top: 80px;
		padding: 10px;
	}
}

.single-post__area {
	display: flex;
	gap: 20px;
}

.single-post__sidebar {
	width: 330px;
}

@media screen and (max-width: 768px) {
	.single-post__sidebar {
		display: none;
	}
}

.single-post__category {
	margin-bottom: 18px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.single-post__category span a {
	background-color: #fecf5e;
	font-size: .9rem;
	padding: 5px 10px;
	border-radius: 8px;
	text-decoration: none;
	color: #115594;
}

.single-post__title h1 {
	font-size: 2.5rem;
	line-height: 1.3em;
	color: #115594;
	margin: 10px 0px;
}

.single-post__meta {
	margin-bottom: 10px;
}

.single-post__meta span {
	color: #b7b7b7;
}

.single-post__featured-image {
	width: 100%;
}

.single-post__featured-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: top;
	border-radius: 8px;
}

.single-post__share-buttons-top {
	display: flex;
	margin-top: 14px;
	align-items: center;
	gap: 16px;
}

@media screen and (max-width: 768px) {
	.single-post__share-buttons-top {
		display: none;
	}
}

.single-post__share-buttons-top .single-post__share-list {
	display: flex;
	flex-direction: row;
	gap: 16px;
}

.single-post__share-buttons-top span {
	color: #b7b7b7;
}

.single-post__share-buttons-top a {
	text-decoration: none;
	padding: 5px 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1rem;
}

.single-post__share-buttons-top i {
	font-size: 1.3rem;
	margin-top: -3px;
}

.single-post__share-buttons-top .btn-facebook {
	background-color: #166fe5;
	transition: .5s;
	border-radius: 8px;
}

.single-post__share-buttons-top .btn-facebook a {
	color: #fff;
}

.single-post__share-buttons-top .btn-facebook i {
	color: #fff;
}

.single-post__share-buttons-top .btn-facebook:hover {
	background-color: #0a4a9e;
	transition: .5s;
}

.single-post__share-buttons-top .btn-whatsapp {
	background-color: #1eaf01;
	transition: .5s;
	border-radius: 8px;
}

@media screen and (min-width: 500px) {
	.single-post__share-buttons-top .btn-whatsapp {
		display: none;
	}
}

.single-post__share-buttons-top .btn-whatsapp a {
	color: #fff;
}

.single-post__share-buttons-top .btn-whatsapp i {
	color: #fff;
}

.single-post__share-buttons-top .btn-whatsapp:hover {
	background-color: #1b7c07;
	transition: .5s;
}

.single-post__share-buttons-top .btn-linkedin {
	background-color: #056097;
	transition: .5s;
	border-radius: 8px;
}

.single-post__share-buttons-top .btn-linkedin a {
	color: #fff;
}

.single-post__share-buttons-top .btn-linkedin i {
	color: #fff;
}

.single-post__share-buttons-top .btn-linkedin:hover {
	background-color: #064268;
	transition: .5s;
}

.single-post__share-buttons-bottom {
	display: none;
	margin-top: 14px;
	align-items: center;
	gap: 8px;
}

@media screen and (max-width: 768px) {
	.single-post__share-buttons-bottom {
		display: flex;
		flex-direction: column;
	}
}

.single-post__share-buttons-bottom .single-post__share-list {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.single-post__share-buttons-bottom span {
	color: #b7b7b7;
}

.single-post__share-buttons-bottom a {
	text-decoration: none;
	width: 90%;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .9rem;
}

.single-post__share-buttons-bottom i {
	font-size: 1.5rem;
	margin-top: -3px;
}

.single-post__share-buttons-bottom .btn-facebook {
	background-color: #166fe5;
	transition: .5s;
	border-radius: 8px;
}

.single-post__share-buttons-bottom .btn-facebook a {
	color: #fff;
}

.single-post__share-buttons-bottom .btn-facebook i {
	color: #fff;
}

.single-post__share-buttons-bottom .btn-facebook:hover {
	background-color: #0a4a9e;
	transition: .5s;
}

.single-post__share-buttons-bottom .btn-whatsapp {
	background-color: #1eaf01;
	transition: .5s;
	border-radius: 8px;
}

.single-post__share-buttons-bottom .btn-whatsapp a {
	color: #fff;
}

.single-post__share-buttons-bottom .btn-whatsapp i {
	color: #fff;
}

.single-post__share-buttons-bottom .btn-whatsapp:hover {
	background-color: #1b7c07;
	transition: .5s;
}

.single-post__share-buttons-bottom .btn-linkedin {
	background-color: #056097;
	transition: .5s;
	border-radius: 8px;
}

.single-post__share-buttons-bottom .btn-linkedin a {
	color: #fff;
}

.single-post__share-buttons-bottom .btn-linkedin i {
	color: #fff;
}

.single-post__share-buttons-bottom .btn-linkedin:hover {
	background-color: #064268;
	transition: .5s;
}

.single-post__content {
	padding: 20px 20px 20px 0px;
	font-size: 1rem;
}

.single-post__content h2, .single-post__content h3, .single-post__content h4, .single-post__content h5 {
	line-height: 1.4em;
	margin-top: 18px;
}

.nav-links a {
	background-color: #115594;
	font-size: .9rem;
	padding: 5px 10px;
	border-radius: 8px;
	text-decoration: none;
	color: #fecf5e;
}

.nav-links .nav-previous a:before {
	content: "< ";
}

.nav-links .nav-next a:before {
	content: " >";
}

.latest-posts {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px 0px 12px 0px;
}

.latest-posts__area {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: row;
	gap: 18px;
}

@media screen and (max-width: 768px) {
	.latest-posts__area {
		flex-direction: column;
	}
}

.latest-posts__sidebar {
	min-width: 330px;
	margin-top: 25px;
	background-color: #fff;
	border-radius: 8px;
	padding: 32px;
	box-shadow: 0px -2px 15px rgba(0, 0, 0, .1);
}

@media screen and (max-width: 768px) {
	.latest-posts__sidebar {
		display: none;
	}
}

.latest-posts__sidebar .latest-posts__search {
	display: flex;
	justify-content: center;
}

.latest-posts__sidebar input[type=submit] {
	font-size: 1rem;
}

.latest-posts__sidebar ul {
	margin-top: 12px;
	list-style: none;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.latest-posts__sidebar li {
	margin-bottom: 8px;
}

.latest-posts__sidebar li a {
	background-color: #115594;
	border-radius: 8px;
	padding: 5px 15px;
	color: #fecf5e;
	text-decoration: none;
	font-size: 1rem;
	width: 100%;
	height: 100%;
	border: 1px solid #115594;
	transition: .5s;
}

.latest-posts__sidebar li a:hover {
	transition: .5s;
	background-color: #072a4b;
	border: 1px solid #fecf5e;
}

@media screen and (max-width: 768px) {
	.latest-posts {
		flex-direction: column;
	}
}

.latest-posts__card {
	width: 100%;
	height: auto;
	margin: 15px 5px;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0px -2px 15px rgba(0, 0, 0, .1);
	position: relative;
	display: flex;
}

.latest-posts__card:hover .latest-posts__category {
	transition: .5s;
	transform: translateY(0%);
}

@media screen and (max-width: 768px) {
	.latest-posts__card {
		width: 90%;
		flex-direction: column;
	}
}

.latest-posts__category {
	position: absolute;
	top: 15px;
	transform: translateY(-200%);
	left: 18px;
	margin-bottom: 18px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	z-index: 50;
}

.latest-posts__category span a {
	background-color: #115594;
	font-size: .9rem;
	padding: 5px 10px;
	border-radius: 8px;
	text-decoration: none;
	color: #fecf5e;
}

.latest-posts__thumbnail {
	height: 230px;
	min-width: 350px;
	max-width: 350px;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.latest-posts__thumbnail {
		min-width: 100%;
	}
}

.latest-posts__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: relative;
}

.latest-posts__thumbnail img:hover {
	transform: scale(1.1, 1.1);
}

.latest-posts__content-area {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
}

.latest-posts__section-title {
	display: flex;
	margin-top: 62px;
	align-items: center;
	gap: 20px;
	color: #115594;
	width: 100%;
}

.latest-posts__section-title h2 {
	font-size: 1.8rem;
	font-weight: 600;
}

.latest-posts__section-title h2 .icon {
	margin-left: 10px;
	color: #115594;
	font-size: 1rem;
}

@media screen and (max-width: 768px) {
	.latest-posts__section-title {
		justify-content: center;
	}
}

.latest-posts__title {
	cursor: pointer;
}

.latest-posts__title a {
	text-decoration: none;
	color: #115594;
	font-size: 1.6rem;
	line-height: 1.3em;
}

.latest-posts__title a:hover {
	transition: .7s;
	color: #333;
}

.latest-posts__title a:visited {
	color: #115594;
}

.latest-posts__title a:visited:hover {
	transition: .7s;
	color: #333;
}

.latest-posts__meta {
	margin-bottom: 10px;
}

.latest-posts__meta span {
	font-size: .85rem;
	color: #b7b7b7;
}

.latest-posts__read-more {
	bottom: 0px;
	left: 0px;
	position: absolute;
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 15px 10px;
	border-top: 1px solid #e3e9ea;
	cursor: pointer;
}

.latest-posts__read-more:hover span {
	transform: translateX(5px);
}

.latest-posts__read-more a {
	width: 90%;
	display: flex;
	text-decoration: none;
	color: #115594;
	font-size: .9rem;
	justify-content: space-between;
	align-items: center;
}

.latest-posts__read-more a span {
	color: #115594;
}

.latest-posts__read-more a:hover {
	color: #333;
	transition: .5s;
}

#latest-posts-load-more {
	width: 100%;
	background-color: #fff;
	cursor: pointer;
	text-align: center;
	padding: 18px;
	border-radius: 8px;
}

#latest-posts-load-more:hover {
	box-shadow: 0px 3px 10px rgba(0, 0, 0, .1);
}

#latest-posts-load-more:hover span {
	color: #115594;
	transition: .5s;
}

#latest-posts-load-more span {
	width: 100%;
	font-weight: 600;
	color: #919191;
	transition: .5s;
	border: 0px solid rgba(0, 0, 0, 0);
	margin-bottom: 30px;
}

.popular-posts-sidebar {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px 0px 12px 0px;
	flex-direction: column;
}

.popular-posts-sidebar__card {
	width: 100%;
	margin: 15px 5px;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0px -2px 15px rgba(0, 0, 0, .1);
	border: 1px solid rgba(183, 183, 183, .4862745098);
	position: relative;
}

@media screen and (max-width: 768px) {
	.popular-posts-sidebar__card {
		width: 90%;
	}
}

.popular-posts-sidebar__card:hover h2 a {
	transition: .7s;
	color: #333;
}

.popular-posts-sidebar__card:hover h2 a span {
	transform: translateX(5px);
	color: #333;
}

.popular-posts-sidebar__thumbnail {
	height: 150px;
	width: 100%;
	overflow: hidden;
}

.popular-posts-sidebar__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: relative;
}

.popular-posts-sidebar__thumbnail img:hover {
	transform: scale(1.1, 1.1);
}

.popular-posts-sidebar__content-area {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
}

.popular-posts-sidebar__section-title {
	display: flex;
	margin-top: 62px;
	align-items: center;
	gap: 20px;
	color: #115594;
	width: 100%;
}

.popular-posts-sidebar__section-title h2 {
	font-size: 1.4rem;
	font-weight: 600;
}

.popular-posts-sidebar__section-title h2 .icon {
	margin-left: 10px;
	color: #115594;
	font-size: 1rem;
}

@media screen and (max-width: 768px) {
	.popular-posts-sidebar__section-title {
		justify-content: center;
	}
}

.popular-posts-sidebar__title {
	cursor: pointer;
}

.popular-posts-sidebar__title a {
	text-decoration: none;
	color: #115594;
	font-size: 1rem;
	line-height: 1.3em;
}

.popular-posts-sidebar__title a:hover {
	transition: .7s;
	color: #333;
}

.popular-posts-sidebar__title a:hover span {
	transform: translateX(5px);
	color: #333;
}

.popular-posts-sidebar__title a:visited {
	color: #115594;
}

.popular-posts-sidebar__title a:visited:hover {
	transition: .7s;
	color: #333;
}

.popular-posts-sidebar__title a span {
	font-size: 1rem;
	color: #115594;
	margin-left: 10px;
}

.popular-posts-sidebar__meta span {
	font-size: .85rem;
	color: #b7b7b7;
}

.popular-posts-sidebar__read-more {
	bottom: 0px;
	left: 0px;
	position: absolute;
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 15px 10px;
	border-top: 1px solid #e3e9ea;
	cursor: pointer;
}

.popular-posts-sidebar__read-more:hover span {
	transform: translateX(5px);
}

.popular-posts-sidebar__read-more a {
	width: 90%;
	display: flex;
	text-decoration: none;
	color: #115594;
	font-size: .9rem;
	justify-content: space-between;
	align-items: center;
}

.popular-posts-sidebar__read-more a span {
	color: #115594;
}

.popular-posts-sidebar__read-more a:hover {
	color: #333;
	transition: .5s;
}

#popular-posts-load-more {
	width: 100%;
	background-color: #fff;
	cursor: pointer;
	text-align: center;
	padding: 18px;
	border-radius: 8px;
}

#popular-posts-load-more:hover {
	box-shadow: 0px 3px 10px rgba(0, 0, 0, .1);
}

#popular-posts-load-more:hover span {
	color: #115594;
	transition: .5s;
}

#popular-posts-load-more span {
	width: 100%;
	font-weight: 600;
	color: #919191;
	transition: .5s;
	border: 0px solid rgba(0, 0, 0, 0);
	margin-bottom: 30px;
}

.archive {
	background-color: #edf3f5;
}

.archive-posts {
	padding-top: 130px;
	padding-bottom: 30px;
	display: flex;
	gap: 18px;
}

@media screen and (max-width: 768px) {
	.archive-posts {
		margin-top: 80px;
		padding: 10px;
	}
}

.archive-posts__sidebar {
	width: 330px;
}

@media screen and (max-width: 768px) {
	.archive-posts__sidebar {
		display: none;
	}
}

.archive-posts .pagination a, .archive-posts .pagination span {
	padding: 10px 15px;
	border-radius: 8px;
	border: 1px solid #115594;
}

.archive-posts .current {
	background-color: #fecf5e;
	color: #115594;
}
