/* COLOURS 

Blue - rgba(11, 26, 50, 1) / #0B1A32

Green - rgba(9, 218, 137, 1) / #09DA89

Orange - rgba(255, 121, 0, 1) / #FF7A00

*/

li {
	margin-top: 15px;
}

/* Sections */

.light-grey-bkg {
	background-color: #fafafa;
}

/* Cards */

.kc-card-layout {
	display: -ms-grid;
    display: grid; 
  	-ms-grid-columns: 1fr; 
  	grid-template-columns: 1fr; 
  	-ms-grid-rows: auto; 
  	grid-template-rows: auto; 
  	gap: 30px 30px; 
	grid-template-areas: 
    "."; 
  	width: 100%; 
  	height: 100%;
}

@media only screen and (min-width: 768px) {

	.kc-card-layout {
		-ms-grid-columns: 1fr 30px 1fr; 
		grid-template-columns: 1fr 1fr; 
		grid-template-areas: ". ."; 
	}

}

@media only screen and (min-width: 1024px) {

	.kc-card-layout {
		-ms-grid-columns: 1fr 30px 1fr 30px 1fr; 
		grid-template-columns: 1fr 1fr 1fr; 
		grid-template-areas: ". . ."; 
	}

}

.kc-card {
	background-color: #ffffff;
	border-radius: 5px;
    border-top: 10px solid #09DA89 ;
    position: relative;
    transition: all 0.3s ease;
}

.kc-card:nth-of-type(2n) {
	border-top: 10px solid #FF7A00;
}

.kc-card:hover {
	-webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.1); 
	box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.1);
	transition: 0.3s ease;

}

.kc-card-img {
	display: block;
	height: 280px;
	width: 100%;
	background-position: center;
	background-size: cover;
}

.kc-card-meta {
	padding: 30px;
}

.kc-card-meta p {
	margin-top: 1em;
	margin-bottom: 0;
}

.kc-card h3 {
	transition: all 1s ease;
}

.kc-card:nth-of-type(2n):hover h3 {
	color: #FF7A00;
}

.kc-card:hover h3 {
	color: #09DA89;
}

.kc-card a {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.video-card {
	position: relative;
}

.video-card:before {
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	background-color: #000;
	opacity: 0.2;
	z-index: 10;
}

.video-card:after {
	content: '';
	pointer-events: none;
	display: block;
	width: 72px;
	height: 50px;
	background-size:contain;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../img/yt-play.svg);
	position: absolute;
	top: calc(50% - 25px);
	left: calc(50% - 36px);
	transition: all 0.5s ease;
}

.kc-card:hover .video-card:after {
	transition: all 0.5s ease;
	background-image: url(../img/yt-play-active.svg);
	background-color: 
}

/* Video Embed */

.embed-wrapper {
	clear: both;
	padding-top: 0;
}

.embed-container { 
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%; 
} 

.embed-container iframe, .embed-container object, .embed-container embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}


/* Video Lightbox */

@media only screen and (max-width: 1024px) {
	.featherlight-iframe .featherlight-content {
		width: 100% !important;
		padding: 0;
	}
}

.archive .featherlight-iframe .featherlight-content {
	margin-left: 0;
	margin-right: 0;
}

.video-article a {
	display: block;
	width: 100%;
	padding: 10px;
	background: #09DA89;
	color: #fff;
	font-weight: 500;
	text-align: center;
}

@media only screen and (min-width: 1024px) {
	.video-article a {
		font-size: 1.4em;
		padding: 20px;
	}	
}


/* Single Post */



.single-content {
	padding-top: 30px;
	margin-bottom: 40px;
}

@media only screen and (min-width: 1024px) {
	.single-content {
		display: -ms-grid;
		display: grid; 
		-ms-grid-columns: 65% 5% 30%; 
		grid-template-columns: 65% 30%; 
		gap: 5%; 
		width: 100%; 
		height: 100%; 
	}
}

.breadcrumbs {
	margin-bottom: 10px;
}

.back-button {
	background-color: #09DA89 ;
	color: #fff;
	padding: 10px 15px;
	border-radius: 6px;
	margin-right: 10px;
	cursor: pointer;
}

.single-body {
	display: block;
}

.single-body hr{
	margin-bottom: 30px;
}

.single-body h2, .single-body h3, .single-body h4 {
	margin-bottom: 24px;
}

.single-content img {
	max-width: 100%;
	height: auto;
	padding-top: 10px;
	padding-bottom: 10px;
}

small {
	font-size: 14px;
}

/* Sidebar cta */

.candidate-cta {
	display: block;
	border: 2px solid #09DA89;
	border-radius: 6px;
	padding: 30px;
	text-align: center;
}

.candidate-cta .app-icon {
	margin-left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
}

.candidate-cta .app-icon img {
	width: 70px;
}

.candidate-cta h4 {
	font-size: 1.6em;
	line-height: 1.2em;
}

.candidate-cta p {
	margin-top: 1em;
}
.app-button {
	width: 150px;
	display: inline-block;
}

/* Sidebar related posts */

.side-card {
	margin-top: 2em;
}

.side-card .kc-card {
	margin-top: 1em;
	background-color: #fafafa;
}

.side-card .kc-card {
    border-top: 10px solid #FF7A00;
}

.side-card .kc-card:nth-of-type(2n) {
	border-top: 10px solid #09DA89;
}

.side-card .kc-card:nth-of-type(2n):hover h3 {
	color:  #09DA89;
}

.side-card .kc-card:hover h3 {
	color: #FF7A00;
}

/* Footer icons */

footer .col3-12 {
	text-align: center;
}

@media only screen and (min-width: 1024px) {
	footer .col3-12 {
		text-align: left;
	}
}

footer .social-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	justify-content: center;
}

@media only screen and (min-width: 1024px) {
	footer .social-links {
		justify-content: flex-end;
	}
}

footer .social-links a {
	fill: #fff;
}

footer .social-links a:hover {
	fill: #00db8e;
	transition: 0.3s;
}

footer .social-links svg {
	width: 100%;
}

.footer-bottom {
		display: flex;
		flex-direction: column;
		justify-content: center;
		border-top: 1px solid #ffffff !important;
	}

@media only screen and (min-width: 1024px) {
	.footer-bottom {
		flex-direction: row-reverse;
		justify-content: space-between;
		padding-bottom: 60px;
	}
}

.footer-bottom .footer-links {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media only screen and (min-width: 1024px) {
	.footer-bottom .footer-links {
		flex-direction: row;
		gap: 30px;
	}
}

.footer-bottom .footer-links li, .footer-bottom p {
	margin: 0;
	margin-right: 0px !important;
	font-size: 14px;
	text-align: center;
}

.footer-bottom p {
	margin-top: 30px;
	margin-bottom: 30px;
}

@media only screen and (min-width: 1024px) {
	.footer-bottom p {
		margin: 0 !important;
	}
}











































