/*@import url('https://fonts.googleapis.com/css?family=Cardo:300,500,700,300italic,500italic');*/

@keyframes crossfade{
	0% {opacity:1}
	10% {opacity:1}
	90% {opacity:0}
	100% {opacity:0}
}

@keyframes move {
	from {
		animation-timing-function:ease-in;
		top:0
	} to {
		animation-timing-function:ease-out;
		top:5px
	}
}

*, :after, :before {
	box-sizing:content-box !important;
}

body.post-template-template-post-feature {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background:#ffffff;
	color:#000000;
	font-size:18px;
	font-weight:400;
}

	body.post-template-template-post-feature .container {
		padding-left:8%;
		padding-right:8%;
	}

	body.post-template-template-post-feature p {
		margin-bottom:0.75em;
	}

	.ntap-feature-red h1 ,
	.ntap-feature-red h2 ,
	.ntap-feature-red h3 {
		color:#ce0000;
	}

	.ntap-feature-red a {
		color:#ce0000 !important;
	}

	.ntap-feature-blue a ,
	.ntap-feature-blue h1 ,
	.ntap-feature-blue h2 ,
	.ntap-feature-blue h3 {
		color:#15005f;
	}

.ntap-bg-grayscale {
	filter: grayscale( 100% );
}

	.ntap-bg-grayscale.ntap-bg-blur {
		filter: blur( 5px ) grayscale( 100% );
	}

	.ntap-bg-grayscale.ntap-bg-darken {
		filter: grayscale( 100% ) brightness( 40% );
	}

	.ntap-bg-grayscale.ntap-bg-darken.ntap-bg-blur {
		filter: blur( 5px ) grayscale( 100% ) brightness( 40% );
	}

.ntap-bg-blur {
	filter: blur( 5px );
}

	.ntap-bg-blur.ntap-bg-darken {
		filter: blur( 5px ) brightness( 40% );
	}

.ntap-bg-darken {
	filter: brightness( 40% );
}

/* Header */

.feature-header {
	margin: 30px auto;
	position: absolute;
	width: 100%;
	z-index: 5;
}

	.feature-header-logo {
	    background: transparent url('/wp-content/themes/edvotes/featured-posts/images/edvotes-logo-white.png') no-repeat;
	    background-size: 100% auto;
	    background-repeat:no-repeat;
	    background-position:center center;
	    display: block;
	    font-size: 0;
	    height: 66px;
	    margin: 0 auto;
	    width: 330px;
	}

	.feature-header p {
		display: none;
		font-size: 20px;
		line-height: 51px;
		position: absolute;
		right: 8%;
		top: 0;
	}

		.feature-header p a {
			color:#ffffff;
		}

		a.ntap-header-social {
			display:inline-block;
			padding:10px;
			width:20px;
			height:20px;
			text-align:center;
			border-radius:100%;
			border:1px solid rgba(255,255,255,0);
			-webkit-transition:0.3s;
			-moz-transition:0.3s;
			-ms-transition:0.3s;
			-o-transition:0.3s;
			transition:0.3s;
		}

			a.ntap-header-social:hover {
				background:rgba(255,255,255,0.4);
				border-color:rgba(255,255,255,0.5);
				-webkit-transition:0.3s;
				-moz-transition:0.3s;
				-ms-transition:0.3s;
				-o-transition:0.3s;
				transition:0.3s;
			}

@media( min-width:768px ) {

	.feature-header-logo {
		height:66px;
		width:330px;
	}

	.feature-header p {
		display:block;
	}

}

/* General Body */

.ntap-section-titlesummary ,
.ntap-section-timeline ,
.ntap-section-text1column ,
.ntap-section-text2column {
	margin:60px auto 0;
	max-width:960px;
}

/* Hero */

.ntap-section-hero {
	color:#ffffff;
	font-family:'Cardo',serif;
	position:relative;
	text-shadow: 0 2px 4px rgba(0,0,0,.5);
	height:90vh;
}

	.ntap-hero-bg {
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		height: 100%;
		position: absolute;
		width: 100%;
	}

	.ntap-hero-bg-mobile {
		display:none;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		height: 100%;
		position: absolute;
		width: 100%;
	}

		.ntap-hero-bg.fader {
			animation-direction: alternate;
			animation-duration: 5s;
			animation-iteration-count: infinite;
			animation-name: crossfade;
			animation-timing-function: ease-in-out;
		}

	.ntap-hero-text-container {
		padding-bottom:30px;
		position:relative;
		/*height:100%;*/
		height:calc(100% - 180px);
		width:760px;
		max-width:100%;
		padding:100px 0 80px;
		margin:0 auto;
	}

		.ntap-hero-text-container .ntap-hero-text-item {
		    font-size: 26px;
		    line-height: 1.25;
		    max-width: 610px;
		    height:100%;
		    display:flex;
		    opacity:0;
		    top:60px;
		    -webkit-transition:1s;
		    -moz-transition:1s;
		    -ms-transition:1s;
		    -o-transition:1s;
		    transition:1s;
		}

			.ntap-hero-text-container .ntap-hero-text-item.ntap-hero-text-item-active {
				opacity:1;
				top:0;
			}

			.ntap-hero-text-item-top-left ,
			.ntap-hero-text-item-middle-left ,
			.ntap-hero-text-item-bottom-left {
				margin-left:0;
				margin-right:auto;
				justify-content:flex-start;
				text-align:left;
			}

			.ntap-hero-text-item-top-center ,
			.ntap-hero-text-item-middle-center ,
			.ntap-hero-text-item-bottom-center {
				margin-left:auto;
				margin-right:auto;
				justify-content:center;
				text-align:center;
			}

			.ntap-hero-text-item-top-right ,
			.ntap-hero-text-item-middle-right ,
			.ntap-hero-text-item-bottom-right {
				margin-left:auto;
				margin-right:0;
				justify-content:flex-end;
				text-align:right;
			}

			.ntap-hero-text-item-top-left ,
			.ntap-hero-text-item-top-center ,
			.ntap-hero-text-item-top-right {
				align-items:flex-start;
			}

			.ntap-hero-text-item-middle-left ,
			.ntap-hero-text-item-middle-center ,
			.ntap-hero-text-item-middle-right {
				align-items:center;
			}

			.ntap-hero-text-item-bottom-left ,
			.ntap-hero-text-item-bottom-center ,
			.ntap-hero-text-item-bottom-right {
				align-items:flex-end;
			}

			.ntap-hero-text-container .ntap-hero-text-item blockquote {
				border:none;
				padding:0;
				font-style:normal;
				font-weight:500;
				margin:0;
			}

	.ntap-hero-link {
	    font-family: 'Open Sans',sans-serif;
	    font-weight: 700;
	    letter-spacing: 2px;
	    text-align: center;
	    text-transform: uppercase;
	    position:absolute;
	    bottom:40px;
	    z-index:100;
	    width:100%;
	}

		.ntap-hero-link a {
			color: #ffffff !important;
			display: inline-block;
			text-decoration: none;
			-webkit-transition:0.3s;
			-moz-transition:0.3s;
			-ms-transition:0.3s;
			-o-transition:0.3s;
			transition:0.3s;
		}

			.ntap-hero-link a::after {
		        border-color: #f5000e;
		        border-style: solid;
		        border-width: 2px 2px 0 0;
		        content: '';
		        display: block;
		        height: 30px;
		        margin: 0 auto;
		        position: relative;
		        transform: rotate(135deg);
		        width: 30px;
			}

			.ntap-hero-link a:hover {
				color: #f5000e !important;
				-webkit-transition:0.3s;
				-moz-transition:0.3s;
				-ms-transition:0.3s;
				-o-transition:0.3s;
				transition:0.3s;
			}

				.ntap-hero-link a:hover::after {
					animation:move 0.4s infinite 0.2s alternate;
				}

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

	body.feature .ntap-hero-text-container {
		width:100%;
		padding-left:0;
		padding-right:0;
	}

		.ntap-hero-text-container .ntap-hero-text-item {
			max-width:80%;
			margin-left:auto;
			margin-right:auto;
			font-size:40px !important;
		}

		body.feature .ntap-hero-link {
			font-size:14px;
			bottom:10px;
		}

			.ntap-hero-link a::after {
				height:10px;
				width:10px;
			}

		.ntap-hero-text-container br {
			display:none;
		}

	.ntap-hero-bg {
		display:none;
	}

	.ntap-hero-bg-mobile {
		display:block;
	}
}

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

	body.feature .ntap-hero-text-container .ntap-hero-text-item {
		font-size:28px !important;
	}

	body.feature .ntap-section-hero {
		max-height:none;
	}

}

/* mobile portrait */

@media screen and (max-width:500px ) and ( min-height:500px ) {

	body.feature .ntap-section-hero {
		max-height:100vw;
	}

	body.feature .ntap-hero-link {
		font-size:14px;
	}

		.ntap-hero-link a::after {
			height:10px;
			width:10px;
		}

}

@media screen and (min-device-width : 375px) and (max-device-width : 812px) and (-webkit-device-pixel-ratio : 3) {

	body.feature .ntap-section-hero {
		max-height:100vw;
	}

}


/* Title/Summary */

.ntap-section-titlesummary {

}

	.ntap-section-titlesummary h1 {
		font-family:'Cardo',serif;
		text-align:center;
		font-size:42px;
		margin-bottom:30px;
		line-height:1.1;
	}

	.ntap-section-titlesummary p {
		font-family:'Cardo',serif;
		font-size:20px;
		line-height:1.4;
		margin:0 auto;
		max-width:680px;
	}

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

	.ntap-section-titlesummary {
		width:90%;
		margin-left:auto;
		margin-right:auto;
	}

}

/* Timeline */

.ntap-section-timeline {

}

	.ntap-section-timeline h2 {
		font-family:'Cardo',serif;
		text-align:center;
		font-size:28px;
		line-height:1.3;
		margin-bottom:20px;
	}

	.ntap-section-timeline .ntap-timeline-summary {
		font-family:'Cardo',serif;
		font-size:20px;
		line-height:1.4;
		margin:0 auto;
		max-width:680px;
	}

	.ntap-section-timeline ul {
	    margin: 30px auto 60px;
	    max-width: 820px;
	    padding: 60px 0;
	    position: relative;
	}

		.ntap-section-timeline ul::before {
			background: #afcde3;
			content: '';
			height: 100%;
			left: calc(50% - 1px);
			position: absolute;
			top: 0;
			width: 2px;
		}

			.ntap-feature-red .ntap-section-timeline ul::before {
				background:#ce0000;
			}

		.ntap-section-timeline li {
			opacity: 0;
			position: relative;
			top: 30px;
			list-style-type:none;
			transition: all 0.4s ease-in-out;
		}

			.ntap-section-timeline li::before {
				background: #d8ecf7;
				border: 5px solid #ffffff;
				border-radius: 50%;
				content: '';
				height: 15px;
				left: calc(50% - 12px);
				position: absolute;
				width: 15px;
			}

				.ntap-feature-red .ntap-section-timeline li::before {
					background:#ce0000;
				}

			.ntap-section-timeline li:not(:last-child) {
				margin-bottom:60px;
			}

			.ntap-section-timeline li:nth-child(odd) > p {
				max-width:48%;
				text-align:right;
			}

			.ntap-section-timeline li:nth-child(odd) p:last-child {
				order:2;
			}

			.ntap-section-timeline li:nth-child(odd) .ntap-timeline-image {
				margin-left:46px;
				order:3;
				position:relative;
			}

			.ntap-section-timeline li:nth-child(even) > p {
				margin-left: calc(50% + 26px);
			}

			.ntap-section-timeline li:nth-child(even) .ntap-timeline-image {
				margin-right:46px;
				position:relative;
				text-align:right;
			}

			.ntap-section-timeline li.revealed {
				opacity:1;
				top:0;
			}

			.ntap-section-timeline li div {
				align-items:flex-start;
				display:flex;
				flex-wrap:wrap;
			}

				.ntap-section-timeline li div.ntap-timeline-text {
					display:inline-block;
					width:calc(50% - 26px );
				}

					.ntap-section-timeline li div.ntap-timeline-text h3 {
						font-family:'Cardo',serif;
						margin-bottom:10px;
						font-size:22px;
						line-height:1.3;
					}

			.ntap-section-timeline li p {
				line-height:1.5;
				font-size:16px;
			}

			.ntap-section-timeline li p:first-child {
				font-family:'Cardo',serif;
				font-size:20px;
				margin-bottom:10px;
			}

			.ntap-section-timeline li .ntap-timeline-image {
				width:calc(50% - 20px);
			}

				.ntap-section-timeline li .ntap-timeline-image img ,
				.ntap-section-timeline li .ntap-timeline-image a {
					display:block;
					max-width:100%;
					width:100%;
				}

				.ntap-section-timeline li .ntap-timeline-image figcaption {
					font-size:12px;
					font-style:italic;
					margin-top:5px;
					text-align:right;
					width:100%;
				}

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

	.ntap-section-timeline li:nth-child(odd) .ntap-timeline-text {
		padding-left:10px;
		width:calc(50% - 36px);
	}

	.ntap-section-timeline li:nth-child(even) .ntap-timeline-text {
		padding-right:10px;
		width:calc(50% - 36px);
	}

}

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

	.ntap-section-timeline ul::before {
		left:12px;
	}

	.ntap-section-timeline li::before {
		left:1px;
	}

	.ntap-section-timeline li:nth-child(odd) ,
	.ntap-section-timeline li:nth-child(even) {
		width:calc( 100% - 10px );
		padding-right:10px;
	}

	.ntap-section-timeline li:nth-child(odd) > p ,
	.ntap-section-timeline li:nth-child(even) > p {
		margin-left:30px;
		text-align:left;
	}

	.ntap-section-timeline li:nth-child(odd) .ntap-timeline-image ,
	.ntap-section-timeline li:nth-child(even) .ntap-timeline-image {
		width:30%;
		float:right;
		margin-left:10px;
		margin-right:0;
		height:auto;
		order:3;
	}

	.ntap-section-timeline li:nth-child(odd) .ntap-timeline-text ,
	.ntap-section-timeline li:nth-child(even) .ntap-timeline-text {
		order:2;
		width:calc(70% - 50px );
		margin-left:30px;
		padding:0;
	}

	.ntap-timeline-summary {
		width:95%;
		padding-left:2.5%;
		padding-right:2.5%;
	}

}


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

	.ntap-section-timeline li:nth-child(odd) .ntap-timeline-text ,
	.ntap-section-timeline li:nth-child(even) .ntap-timeline-text {
		width:calc(100% - 50px);
	}

	.ntap-section-timeline li:nth-child(odd) .ntap-timeline-image ,
	.ntap-section-timeline li:nth-child(even) .ntap-timeline-image {
		display:block;
		width:80%;
		float:none;
		margin-left:31px;
	}

}

/* Text/Image Slider */

.ntap-section-featureslider {
	height:33vw;
	width:100%;
	position:relative;
	margin-top:50px;
	color:#ffffff;
	font-family:'Cardo',serif;
	text-shadow: 0 2px 4px rgba(0,0,0,.5);
}
	
	.ntap-featureslider-item {
		background-repeat:no-repeat;
		background-size:cover;
		position:absolute;
		overflow-y:hidden;
		display:flex;
		width:100%;
		height:100%;
		opacity:0;
		-webkit-transition:opacity 1s ease-in;
		-moz-transition:opacity 1s ease-in;
		-ms-transition:opacity 1s ease-in;
		-o-transition:opacity 1s ease-in;
		transition:opacity 1s ease-in;
	}

		.ntap-featureslider-item-mobile {
			display:none;
		}

		.ntap-featureslider-item-background {
			position:absolute;
			width:100%;
			height:100%;
			z-index:2;
			background-repeat:no-repeat;
			background-size:cover;
			background-position:top center;
		}

		.ntap-featureslider-item-active {
			opacity:1;
			-webkit-transition:opacity 1s ease-in;
			-moz-transition:opacity 1s ease-in;
			-ms-transition:opacity 1s ease-in;
			-o-transition:opacity 1s ease-in;
			transition:opacity 1s ease-in;
		}

		.ntap-featureslider-item-contents {
			width:960px;
			margin:30px auto;
			display:block;
			z-index:3;
		}

			.ntap-featureslider-item-contents h2 {
				margin-bottom:20px;
				width:500px;
				line-height:1.1;
			}

			.ntap-featureslider-item-contents p {
				width:500px;
			}

		.ntap-featureslider-item-top-left ,
		.ntap-featureslider-item-middle-left ,
		.ntap-featureslider-item-bottom-left {
			text-align:left;
			justify-content:flex-start;
		}

			.ntap-featureslider-item-top-left h2 ,
			.ntap-featureslider-item-middle-left h2 ,
			.ntap-featureslider-item-bottom-left h2 ,
			.ntap-featureslider-item-top-left p ,
			.ntap-featureslider-item-middle-left p ,
			.ntap-featureslider-item-bottom-left p ,
			.ntap-featureslider-item-top-left .ntap-attrib ,
			.ntap-featureslider-item-middle-left .ntap-attrib ,
			.ntap-featureslider-item-bottom-left .ntap-attrib {
				margin-left:10px;
				margin-right:auto;
			}

		.ntap-featureslider-item-top-center ,
		.ntap-featureslider-item-middle-center ,
		.ntap-featureslider-item-bottom-center {
			text-align:center;
			justify-content:center;
		}

			.ntap-featureslider-item-top-center h2 ,
			.ntap-featureslider-item-middle-center h2 ,
			.ntap-featureslider-item-bottom-center h2 ,
			.ntap-featureslider-item-top-center p ,
			.ntap-featureslider-item-middle-center p ,
			.ntap-featureslider-item-bottom-center p ,
			.ntap-featureslider-item-top-center .ntap-attrib ,
			.ntap-featureslider-item-middle-center .ntap-attrib ,
			.ntap-featureslider-item-bottom-center .ntap-attrib {
				margin-left:auto;
				margin-right:auto;
			}

		.ntap-featureslider-item-top-right ,
		.ntap-featureslider-item-middle-right ,
		.ntap-featureslider-item-bottom-right {
			text-align:right;
			justify-content:flex-end;
		}

			.ntap-featureslider-item-top-right h2 ,
			.ntap-featureslider-item-middle-right h2 ,
			.ntap-featureslider-item-bottom-right h2 ,
			.ntap-featureslider-item-top-right p ,
			.ntap-featureslider-item-middle-right p ,
			.ntap-featureslider-item-bottom-right p ,
			.ntap-featureslider-item-top-right .ntap-attrib ,
			.ntap-featureslider-item-middle-right .ntap-attrib ,
			.ntap-featureslider-item-bottom-right .ntap-attrib {
				margin-right:10px;
				margin-left:auto;
			}

		.ntap-featureslider-item-top-left ,
		.ntap-featureslider-item-top-center ,
		.ntap-featureslider-item-top-right {
			align-items:flex-start;
		}

		.ntap-featureslider-item-middle-left ,
		.ntap-featureslider-item-middle-center ,
		.ntap-featureslider-item-middle-right {
			align-items:center;
		}

		.ntap-featureslider-item-bottom-left ,
		.ntap-featureslider-item-bottom-center ,
		.ntap-featureslider-item-bottom-right {
			align-items:flex-end;
		}

.ntap-featureslider-nav {
	position:absolute;
	z-index:100;
	bottom:5px;
	width:100%;
	text-align:center;
}

	.ntap-featureslider-nav-item {
		border:1px solid #ffffff;
		border-radius:100%;
		display:inline-block;
		cursor:pointer;
		width:15px;
		height:15px;
		margin:0 5px;
		-webkit-transition:background 1s ease-in;
		-moz-transition:background 1s ease-in;
		-ms-transition:background 1s ease-in;
		-o-transition:background 1s ease-in;
		transition:background 1s ease-in;
	}

		.ntap-featureslider-nav-item-active {
			background:rgba(255,255,255,0.6);
			-webkit-transition:background 1s ease-in;
			-moz-transition:background 1s ease-in;
			-ms-transition:background 1s ease-in;
			-o-transition:background 1s ease-in;
			transition:background 1s ease-in;
		}

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

	.ntap-featureslider-item-contents h2 ,
	.ntap-featureslider-item-contents p ,
	.ntap-featureslider-item-contents .ntap-attrib {
		width:60%;
	}

}


@media screen and ( max-width:750px ) and ( min-height:500px ) {

	.ntap-section-featureslider {
		height:80vw;
	}

	.ntap-featureslider-item-background {
		display:none;
	}

	.ntap-featureslider-item-mobile {
		display:block;
		position:absolute;
		height:100%;
		width:100%;
		left:0;
		top:0;
	}

		.ntap-featureslider-item-mobile .ntap-featureslider-item-mobile-background-image {
			position:absolute;
			width:100%;
			top:0;
			left:0;
			height:33vw;
			background-position:bottom center;
			background-size:cover;
		}

			.ntap-featureslider-item-nocontent .ntap-featureslider-item-mobile .ntap-featureslider-item-mobile-background-image {
				height:100%;
			}

		.ntap-featureslider-item-bg-image .ntap-featureslider-item-contents {
			position:absolute;
			bottom:30px;
			left:0;
			width:100%;
			height:auto;
			text-align:center;
			font-size:28px;
			line-height:1.1;
		}

			.ntap-featureslider-item-bg-image .ntap-featureslider-item-contents h2 {
				font-size:36px;
			}

		.ntap-featureslider-item-contents p ,
		.ntap-featureslider-item-contents div.ntap-attrib ,
		.ntap-featureslider-item-contents h2 {
			width:90%;
			margin:10px auto;
		}

}

/* EveryAction Form Embed */

.ntap-section-ea_form_embed {
	width:100%;
	position:relative;
	margin-top:50px;
}

	.ntap-form-embed {
		width:100%;
	}

		.ntap-form-embed .ngp-form {
			max-width:95%;
			margin-left:auto;
			margin-right:auto;
		}

		.at * ,
		.at *:before ,
		.at *:after {
			box-sizing:border-box !important;
		}		

		.ntap-form-embed .at .at-fieldset {
			padding:0;
		}

		.ntap-form-embed .at .at-form .at-inner {
			background:none;
		}

		.ntap-form-embed .at .at-inner header.at-title {
			font-family:'Cardo',serif;
		}

		.ntap-form-embed .at .at-form input[type="submit"] {
			-webkit-transition:0.3s;
			-moz-transition:0.3s;
			-ms-transition:0.3s;
			-o-transition:0.3s;
			transition:0.3s;
		}

		.ntap-form-embed .at .at-form input[type="submit"]:hover {
			-webkit-transition:0.3s;
			-moz-transition:0.3s;
			-ms-transition:0.3s;
			-o-transition:0.3s;
			transition:0.3s;
		}

.at .at-form small {
	font-size:10px;
	line-height:1.0;
	letter-spacing:0;
}

.at .at-form .at-markup p {
	margin:10px 0px;
	line-height:1.1;
	font-size:14px;
}

.at .at-form-submit {
	text-align:center;
}

	.at .at-form-submit input[type="submit"] {
		float:none;
	}

/* Text (callout/feature) */

.ntap-section-textfeature {
	height:auto;
	position:relative;
	font-size:24px;
	line-height:1.2;
	overflow:hidden;
}

.ntap-textfeature {
	margin:0;
}

	.ntap-textfeature-background {
		position:absolute;
		width:100%;
		height:100%;
		z-index:-1;
		background-repeat:no-repeat;
		background-size:cover;
		background-position:top center;
	}

		.ntap-textfeature-background.ntap-bg-blur {
			height:120%;
			width:110%;
			margin-top:-5%;
			margin-left:-5%;
		}

	.ntap-textfeature-contents {
		z-index:2;
		width:90%;
		max-width:680px;
		margin:0px auto;
		padding:3em 0;
	}

		.ntap-textfeature-contents h1 ,
		.ntap-textfeature-contents h2 ,
		.ntap-textfeature-contents h3 {
			margin-bottom:1em;
		}

/* Text (1 column and 2 columns) */

.ntap-section-text1column ,
.ntap-section-text2column {
}

	.ntap-section-text1column {
		width:680px;
	}

	.ntap-section-text1column h2 ,
	.ntap-section-text2column h2 {
		text-align:center;
		font-family:'Cardo',serif;
		margin-bottom:20px;
	}

	.ntap-section-text1column h3 ,
	.ntap-section-text2column h3 {
		font-family:'Cardo',serif;
		margin-bottom:10px;
	}

	.ntap-text-2columns {
		display:flex;
		justify-content:space-between;
		align-items:flex-start;
	}

		.ntap-text-2columns .ntap-text-column {
			width:47%;
		}

	.ntap-section-text1column img.size-large ,
	.ntap-section-text2column img.size-large {
		display:block;
		width:100%;
	}

	.ntap-section-text1column img.size-medium ,
	.ntap-section-text2column img.size-medium {
		margin-bottom:30px;
		margin-top:0;
	}

	.ntap-section-text1column p ,
	.ntap-section-text2column p {
		font-size:18px;
		line-height:1.625;
		margin-bottom:24px;
		position:relative;
	}

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

	.ntap-text-2columns {
		flex-wrap:wrap;
	}
	.ntap-text-2columns .ntap-text-column {
		display:block;
		width:680px;
		margin:20px auto;
	}

}

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

	.ntap-section-text1column ,
	.ntap-text-2columns .ntap-text-column {
		width:95%;
		padding-left:2.5%;
		padding-right:2.5%;
	}

}

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

	.alignright, .alignleft, .aligncenter {
		width:auto !important;
	}

}

/* Footer */

.ntap-above-footer {
	background:#15005f;
	padding:20px 0;
	display:flex;
	justify-content:center;
	align-items:center;
}

	.ntap-above-footer a {
		display:inline-block;
		font-size:24px;
		color:#ffffff;
		padding:10px;
		font-weight:bold;
		text-transform:uppercase;
		text-decoration:none;
		border-radius:10px;
		-webkit-transition:0.2s;
		-moz-transition:0.2s;
		-ms-transition:0.2s;
		-o-transition:0.2s;
		transition:0.2s;
	}

		.ntap-above-footer a.ntap-above-footer-social {
			min-width:24px;
			text-align:center;
			color:#ffffff;
		}

		.ntap-above-footer a:hover {
			background:#ffffff;
			color:#15005f;
			-webkit-transition:0.2s;
			-moz-transition:0.2s;
			-ms-transition:0.2s;
			-o-transition:0.2s;
			transition:0.2s;
		}

	.ntap-above-footer span.ntap-divider {
		display:inline-block;
		padding:0;
		margin:0 20px;
		width:1px;
		height:45px;
		background:#ffffff;
	}

.ntap-footer {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #222;
	color: #ffffff;
	font-size: 12px;
	padding: 30px 0;
	text-align: center;
}

	.ntap-footer a {
	    color: #ffffff;
	    font-weight: bold;
	    text-decoration: none;
	}

	.ntap-footer a:hover {
		text-decoration: underline;
	}

	.ntap-footer a:active , .ntap-footer a:focus , .ntap-footer a:visited {
		color:#ffffff;
	}

	.ntap-footer-logo a {
		background: transparent url('/wp-content/themes/edvotes/featured-posts/images/logo-feature-footer-nea.gif') no-repeat;
		display: block;
		height: 62px;
		font-size: 0;
		margin: 0 auto 20px;
		width: 205px;
	}

	.ntap-footer-info {
		align-self:center;
	}

@media (min-width: $break-lg) {

	.ntap-footer {
		display: flex;
		justify-content: center;
		text-align: left;
	}

	.ntap-footer-logo a {
		margin: 0 40px 0 0;
	}

}


/* Video Overlay */

#ntap-overlay {
	align-items: center;
	background-color: rgba(0,0,0,.7);
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}

	#ntap-overlay.active {
		display: flex;
	}

.ntap-overlay-content-wrapper {
	margin: 0 auto;
	max-width: 100%;
	position: relative;
}

@media (max-width: 799px) {
	.ntap-overlay-content-wrapper video {
		height: auto !important;
		width: 100% !important;
	}
}

#ntap-overlay-close {
	font-size: 0;
	height: 20px;
	position: absolute;
	overflow: hidden;
	right: 5px;
	top: -25px;
	width: 20px;
}

@media (min-width: 768px) {
	#ntap-overlay-close {
		right: -25px;
	}
}

	#ntap-overlay-close:hover::before, #ntap-overlay-close:hover::after {
		background: #d8ecf7;
    }

	#ntap-overlay-close::before, #ntap-overlay-close::after {
		background: #ffffff;
		content: '';
		height: 2px;
		left: 0;
		position: absolute;
		top: 50%;
		width: 100%;
	}

	#ntap-overlay-close::before {
		transform: rotate(45deg);
	}

	#ntap-overlay-close::after {
		transform: rotate(-45deg);
	}

/* Action Button */

.ntap-action-button {
	text-align:center;
	margin-top:1.5em;
}

	.ntap-action-button a {
		display:inline-block;
		/*background:#f05022;*/
		padding:10px 20px;
		border-radius:5px;
		color:#ffffff !important;
		text-decoration:none;
		font-family:'Raleway','Open Sans',sans-serif;
		text-transform:uppercase;
		font-size:16px;
		font-weight:bold;
		max-width:80%;
		border:2px solid #f05022;
		-webkit-transition:0.3s;
		-moz-transition:0.3s;
		-ms-transition:0.3s;
		-o-transition:0.3s;
		transition:0.3s;
	}

		.ntap-action-button a:hover {
			color:#f05022 !important;
			background:#ffffff;
			text-decoration:none;
			-webkit-transition:0.3s;
			-moz-transition:0.3s;
			-ms-transition:0.3s;
			-o-transition:0.3s;
			transition:0.3s;
		}

/* Shortcodes and other fun stuff */

.ntap-attrib {
	font-size:-4;
	font-style:italic;
	margin-top:1em;
}

.ntap-quote-graphic {
	position:relative;
	display:flex;
	width:768px;
	margin-left:-44px;
	left:-44px;
	align-items:center;
	margin:20px 0;
	padding:20px 0;
	border-top:1px solid #000000;
	border-bottom:1px solid #000000;
}

	.ntap-quote-graphic-image {
		margin-right:20px;
		width:300px;
		flex-grow:0;
		flex-shrink:0;
		padding:0;
	}

		.ntap-quote-graphic-image img {
			width:100%;
			height:auto;
		}

	.ntap-quote-graphic .ntap-quote-graphic-contents {
		opacity:0;
		top: 30px;
		transition: all 0.4s ease-in-out;
		flex-grow:1;
		display:flex;
		flex-direction:column;
		justify-content:center;
	}

	.ntap-quote-graphic.revealed .ntap-quote-graphic-contents {
		opacity:1;
		top:0;
	}

	.ntap-quote-graphic p.ntap-quote {
		font-family:'Cardo',serif;
		font-weight:bold;
		font-size:28px;
	}

		.ntap-quote-graphic p.ntap-attrib {
			font-family:'Cardo',serif;
		}

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

	.ntap-quote-graphic {
		width:100%;
		margin-left:0;
		left:0;
	}

}

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

	.ntap-quote-graphic {
		flex-wrap:wrap;
	}

}

/** Video Lightbox **/

.ntap-video-lightbox {
    position:fixed;
    height:100vh;
    width:100vw;
    top:0;
    left:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,0.3);
    z-index:10000;
}

    .ntap-video-lightbox .ntap-video-lightbox-contents {
        width:auto;
        height:auto;
        position:relative;
        z-index:10001;
    }

    .ntap-video-lightbox .ntap-video-lightbox-close {
        position:absolute;
        bottom:101%;
        left:101%;
        cursor:pointer;
        color:#ffffff;
        font-size:24px;
        -webkit-user-select:none;
        -moz-user-select:none;
        -ms-user-select:none;
        -o-user-select:none;
        user-select:none;
    }

    .ntap-video-lightbox .ntap-video-lightbox-contents {
        padding:20px;
        width:auto;
        max-width:90vw;
        background:#e8e8e8;
    }
