/* Header */

header#masthead.headroom {
    will-change: transform;
    transition: transform 200ms linear, background 200ms ease-in-out, box-shadow 200ms ease-in-out;
}
header#masthead.headroom--top {
	background: transparent;
}

header#masthead.headroom--pinned {
    transform: translateY(0%);
}
header#masthead.headroom--unpinned {
    transform: translateY(-100%);
}

.svg-icon {
	border: 2px solid;
    border-color: var(--green);
    border-radius: 0;
    background: transparent;
    color: black;
    line-height: 1;
    padding: 10px 10px 10px;
    
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.svg-icon:hover {
	border-color: var(--green);
	background: var(--green);
	
	cursor: pointer;
}

.svg-icon svg {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	
	 transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.overlay-close.svg-icon {
	border-color: white;
}

.overlay-close.svg-icon svg {
	padding-top: 3px;
}

.overlay-close.svg-icon svg path {
	fill: black;
}

.overlay-close.svg-icon:hover {
	background: white;
}


/* Overlay style */

.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--green);
	z-index: 99999999;
	overflow-y: scroll;
}

/* Overlay closing cross */
.overlay .overlay-close {
    overflow: hidden;
    color: transparent;
    outline: none;
    z-index: 100;
}

.overlay .overlay-close svg {
	width: 20px;
	
}
/* Menu style */
.overlay nav {
	text-align: left;
	position: relative;
	padding: 25px;
}

.overlay ul {
	padding: 0;
	margin: 0;
    text-align: left;
    display: block;
    width: 100%;
	height: 100%;
	position: relative;
}

.overlay ul li {
	display: block;
	padding: 10px 0;
	margin-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    
    color: black;
}

.overlay ul li.current_page_item {
	color: white;
}

.overlay ul li.menu-item:last-of-type {
	padding: 10px 0;
	border: inherit;
	color: black;
}

.overlay ul li.menu-item.current_page_item:last-of-type {
	color: white;
}

.overlay ul li a {
    font-size: 4vmin;
    font-weight: 600;
    display: block;
    text-decoration: none;
    color: var(--secondary);
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
	color: var(--primary);
}

@media screen and (max-width: 600px) {
	.overlay ul li a {
	    font-size: 8vmin;
	    font-weight: 600;
	    display: block;
	    text-decoration: none;
	    color: var(--secondary);
	    -webkit-transition: color 0.2s;
	    transition: color 0.2s;
	}
}

/* Effects */
.overlay-npp {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-npp.open {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.overlay-npp nav {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.overlay-npp nav ul {
	opacity: 0.4;

	-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
}

.overlay-npp.open nav ul {
	opacity: 1;
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.overlay-podcast-buttons {
	margin-top: 50px;
}

.overlay-podcast-buttons .listen_on_type {
	color: white;
}

.overlay-podcast-buttons .podcast-button {
	background: white;
}

.overlay-podcast-buttons .podcast-button .button_icon {
	mix-blend-mode: difference;
}

.overlay-header {
	display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    padding: 0 25px 0 25px;
    z-index: 10000;
}

.overlay-header .overlay-logo,
.overlay-header .overlay-logo {
	max-width: 150px;
	vertical-align: middle;
}


@media screen and (max-height: 30.5em) {
	.overlay nav {
		height: 70%;
		font-size: 34px;
	}
	.overlay ul li {
		min-height: 34px;
	}
}


@media screen and (max-width: 450px) {
	.header-inner .custom-logo,
	.overlay-header img, .overlay-header svg {
		max-width: 37vw;
	}
}


/* Team member  */

.team-member.full-width {
	grid-column: span 2;
}

.team-member .about-socials {
	margin-top: 25px;
}

.team-member .about-socials i {
	color: white;
}

@media screen and (max-width: 900px) {

	.team-member.full-width {
		grid-column: span 1;
	}

}


/* Home Featured Podcast */

.home-featured-podcast-inner {
    position: relative;
    display: grid;
    grid-template-rows: 400px;
    grid-template-columns: 400px 1fr;
}

.home-featured-podcast-info {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-featured-podcast-image img {
	width: 100%;
}

.episode-main-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.episode-main-info h1 {
	max-width: 550px;
	margin-top: 10px;
}

.home-featured-podcast-info .episode-main-info h1 { 
	margin-bottom: 20px;
	margin-top: 0;
}

.episode-main-info .slider-featured-description {
	max-width: 900px;
}

/*
.episode-number {
	margin: revert;
}
*/

.player-bottom {
    padding: 10px 50px 40px;
}

@media screen and (max-width: 1250px) {
	.episode-main-info {
	    padding: 50px 50px 10px;
	}

	.episode-main-info .slider-featured-description {
		display: none;
	}

}

@media screen and (max-width: 1200px) {
	.home-featured-podcast-inner {
	    grid-template-rows: 525px;
	    grid-template-columns: 525px 1fr;
	}
}

@media screen and (max-width: 1000px) {
	.home-featured-podcast-inner {
	    grid-template-rows: auto;
	    grid-template-columns: 1fr;
	}
	
	.episode-main-info {
	    padding: 25px;
	}
	
	.player-bottom {
	    padding: 10px 20px 20px;
	}
	
	.episode-main-info .split h5 {
		margin-top: 0;
	}
	
	.episode-main-info h1 {
	    font-size: 28px;
	    line-height: 34px;
	    margin-top: 15px;
	}
	
	.episode-main-info .slider-featured-description {
		display: block;
	}
}


/* Related episode */

.related-episode .audio-player {
	position: relative;
}

.related-episode {
	background: white;
}

.related-episode {
	position: relative;
}

.related-episode-description {
	padding: 15px;
}

.related-episode-name-date {
	display: block;
}

.related-episode-name-date h5, 
.related-episode-name-date h6 {
	margin-top: 0;
	margin-bottom: 5px;
	font-size: 11px;
}

.related-episode-name-date h4 {
	color: black;
    margin: 5px 0;
}

.related-episode-description-type p {
	font-size: 12px;
	line-height: 18px;
}

.related-episode .player-bottom {
	padding: 20px;
}

.related-episode p.player-type {
	font-size: 14px;
	margin: 0;
}

@media screen and (max-width: 1200px) {
	.related-episode .related-episode-description {
		padding: 25px;
	}
	
	.related-episode .split {
		flex-direction: row;
	}
	
	.related-episode-name-date h5, 
	.related-episode-name-date h6 {
		margin-top: 0;
		margin-bottom: 5px;
		font-size: 14px;
	}
	
	.related-episode-name-date h4 {
		font-size: 28px;
		line-height: 1.2em;
	}
	
	.related-episode .related-episode-description-type p {
		font-size: 16px;
		line-height: 24px;
	}
	.related-episode .related-episode-description {
		width: 100%;
	}
}

@media screen and (max-width: 800px) {
	.related-episode .related-episode-info {
		flex-direction: column;
	}
	
	.related-episode .related-episode-featured {
		width: 100%;
	}
}	

/* Article */

.did-you-know-type, 
.did-you-know-image {
	margin-bottom: 30px;
}

/* Coming Soon÷ */

.page-id-202 header#masthead,
.page-id-202 footer#colophon {
	display: none;
}

.coming-soon {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: var(--green);
}

.coming-soon-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.coming-soon-title {
	width: 80%;
	max-width: 500px;
}

.coming-soon-description {
	padding-top: 20px;
	text-align: center;
}
 
.coming-soon-description p {
	font-size: 16px;
	line-height: 1em;
	margin: 5px 0;
}

.coming-soon-description p span {
	font-weight: bold;
}

.coming-soon-links {
	margin-top: 15px;
}

.coming-soon-links p {
	font-size: 11px;
	letter-spacing: 1px;
	font-weight: bold;
	text-transform: uppercase;
	opacity: 0.5;
}

.coming-soon .podcast-buttons {
	justify-content: center;
}

.coming-soon .podcast-button {
	background: white;
}

.coming-soon .podcast-button .button_icon {
	fill: black;
}

.coming-soon .podcast-button:hover {
	background: black;
}

.coming-soon .podcast-button:hover .button_icon {
	fill: white;
}

.coming-soon .podcast-button-label {
	color: white;
}

/* Pagination */

.pagination {
	display: flex;
	justify-content: center;
	width: 100%;
	
	padding:20px 0;
	position:relative;
	font-size:14px;
	line-height:1em;
}
 
.pagination span, .pagination a {
	display:block;
	float:left;
	margin: 2px 2px 2px 0;
	padding:12px 15px 11px 15px;
	text-decoration:none;
	width:auto;
	color: black;
	background: white;
	
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
}
 
.pagination a:hover{
	color: white;
	background:var(--dark_grey);
}
 
.pagination .current{
	background: var(--green);
	color: #fff;
}

#mc-embedded-subscribe-form input[type=checkbox]{display: inline; width: auto;margin-right: 10px;}
#mergeRow-gdpr {margin-top: 20px;}
#mergeRow-gdpr fieldset label {font-weight: normal;}
#mc-embedded-subscribe-form .mc_fieldset{border:none;min-height: 0px;padding-bottom:0px;}
#mc_embed_signup{clear:left; width:100%;}

#mc_embed_signup_scroll {
	display: flex;
}