.highlight-template {
	margin-top: 82px;
	margin-bottom: 0;
}

.category-heading {
	text-transform: uppercase;
}

.category-filter {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

.filter-option {
	color: #000;
	padding: 6px 16px 5px;
	margin-right: 0px;
	margin-top: 19px;
	display: block;
	cursor: pointer;
	transition: 0.45s cubic-bezier(0.25, 1, 0.5, 1);
	-webkit-transition: 0.45s cubic-bezier(0.25, 1, 0.5, 1);
	text-decoration: none !important;
	outline: none !important;
}

.filter-option:hover,
.filter-option:focus-visible {
	background-color: #003366;
	color: #fff;
}

.filter-option.active {
	background-color: #003366 !important;
	color: #fff;
	cursor: context-menu;
}

.post-list-container {
	margin-top: 40px;
}

.list-title {
	text-transform: uppercase;
}

.post-item {
	position: relative;
	padding-left: 16px;
	padding-right: 16px;
}

.post-item:first-child {
	margin-top: 60px;
}

.post-item .container {
	padding: 80px 0;
	border-top: 1px solid #CACACA;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	position: relative;
	z-index: 1;
	transition: 0.45s ease-in-out;
    -webkit-transition: 0.45s ease-in-out;
	max-width: 1360px;
}

.post-item:first-child .container {
	border-top: 0;
}

.post-item:nth-last-child(2) .container {
	border-bottom: 1px solid #CACACA;
}

.post-item>div {
	box-sizing: border-box;
}

.post-item h3 {
	margin-bottom: 21px;
}

.post-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: calc(42.2% - 115px);
	padding-right: 20px;
}

.post-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 230px;
	text-align: right;
	padding-left: 20px;
}

.post-item .button {
	display: flex;
	margin-top: 40px;
	width: fit-content;
}

.post-images {
	width: calc(57.8% - 115px);
}

.post-images .image-wrapper {
	position: relative;
	height: 0;
	padding-bottom: 66.7%;
	overflow: hidden;
}

.post-images .image-wrapper img {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.post-images:hover .image-wrapper img {
    transform: translate(-50%, -50%) scale3d(1.1, 1.1, 1);
}

.post-list-container .button-loadmore {
	text-align: center;
	margin-bottom: 0;
	margin-top: 80px;
}

#load-more {
	font-weight: 700;
	cursor: pointer;
}

/* SVG spinner icon animation */
.spinner {
	-webkit-animation: rotate 2s linear infinite;
	animation: rotate 2s linear infinite;
	z-index: 2;
	position: fixed;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	width: 50px;
	height: 50px;
}

.spinner .path {
	stroke: #cccccc;
	stroke-linecap: round;
	-webkit-animation: dash 1.5s ease-in-out infinite;
	animation: dash 1.5s ease-in-out infinite;
}

.no-posts-message {
	margin-top: 40px;
}

.post-bkg {
	background-color: #CACACA;
    position: absolute;
	z-index: 0;
	bottom: 0;
	top: 100%;
	left: 0;
	right: 0;
    transition: 0.45s ease-in-out;
    -webkit-transition: 0.45s ease-in-out;
}

.excerpt {
	color: #000;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.post-item:hover .post-bkg {
	top: 0;
}

.post-item:hover + .post-item .container, .post-item:last-child:hover .container {
	border-color: #fff;
}

.jumpNav {
	position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #003366;
    z-index: -1;
	transition: 0.45s cubic-bezier(0.25, 1, 0.5, 1);
	-webkit-transition: 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

@-webkit-keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes dash {
	0% {
		stroke-dasharray: 1, 150;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -35;
	}

	100% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -124;
	}
}

@keyframes dash {
	0% {
		stroke-dasharray: 1, 150;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -35;
	}

	100% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -124;
	}
}

@media (max-width: 1199px) {
	.post-info {
		width: 172px;
	}
	.post-content {
		width: calc(42.2% - 86px);
	}
	.post-images {
		width: calc(57.8% - 86px);
	}
	.post-item .h3, .post-item h3 {
		font-size: 22px;
		line-height: 32px;
	}
}

@media (max-width: 767.98px) {
	.highlight-template {
		margin-top: 61px;
	}

	.filter-option {
		padding: 5px 22.25px;
	}

	span.filter-option {
		padding: 5px 33.75px;
	}

	.post-item {
		padding-left: 16px;
		padding-right: 16px;
	}

	.post-item .container {
		display: block;
		padding: 62px 0 58px;
	}

	.post-content,
	.post-images,
	.post-info {
		width: 100%;
		padding: 0;
	}

	.post-item h3 {
		margin-bottom: 8px;
	}

	.post-images {
		margin-top: 18px;
	}

	.post-info {
		flex-direction: row;
		margin-top: 22px;
	}

	.post-info .h3 {
		font-size: 16px;
		line-height: 26px;
		font-weight: normal;
	}

	.post-list-container .button-loadmore {
		margin-top: 100px;
	}
}