/* =========================================== */
/* Globals */


body {
	background: #f7f7f7;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 300;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
}

.ck-text-align--left {
	text-align: left;
}

.ck-text-align--center {
	text-align: center;
}

.ck-text-align--right {
	text-align: right;
}

.page-layout {
	padding: 3rem 0;
}

.template-layout--one-column--narrow {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
}

.btn-primary {
	background-color: #497a9e;
	border-color: #497a9e;
}

.btn-primary:hover {
	background-color: #0e2e47;
	border-color: #0e2e47;
}

/* =========================================== */
/* header */

.site-header {
	background: #fff;
	padding: 1.5rem 0;
	text-align: center;
	position: relative;
}

.site-header h1 {
	margin: 0 auto;
}

.header-logo img {
	width: 195px;
	height: 42px;
}

/* navigation */
.site-navigation {
	background: #0e2e47;
}

.site-navigation .site-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-navigation .site-nav li {
	font-size: 1rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	border-top: 1px solid rgba(255,255,255,.2);
}

.site-nav-link {
	color: #fff;
	padding: 1rem 1.5rem;
	display: block;
	text-decoration: none;
	background-color: transparent;
	transition: background-color 300ms;
}

.site-nav-link:hover {
	color: #fff;
	background-color: #4a799e;
}

.site-nav-link--current {
	background-color: #4a799e;
}

.header-nav-social {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* mobile menu */

.navbar-toggle {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	padding: 0;
	border: 0;
	background: none;
	height: 30px;
	width: 30px;
	display: block;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	z-index: 20;
}

.navbar-toggle .navbar-toggle-indicator {
	display: block;
	position: relative;
	height: 30px;
	width: 30px;
}

.navbar-toggle .navbar-toggle-indicator::before,
.navbar-toggle .navbar-toggle-indicator::after {
	content:'';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	height: 30px;
	width: 30px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	opacity: 0;
	transition: opacity 300ms ease-in-out;
}

.navbar-toggle .navbar-toggle-indicator::before {
	background-image: url('../images/menu.svg');
}

.navbar-toggle .navbar-toggle-indicator::after {
	background-image: url('../images/x.svg');
}

.navbar-toggle[aria-expanded=true]  .navbar-toggle-indicator::before{
	opacity: 0;
}

.navbar-toggle[aria-expanded=true]  .navbar-toggle-indicator::after{
	opacity: 1;
}

.navbar-toggle[aria-expanded=false]  .navbar-toggle-indicator::before{
	opacity: 1;
}

.navbar-toggle[aria-expanded=false]  .navbar-toggle-indicator::after{
	opacity: 0;
}

/* =========================================== */
/* hero */

.hero {
	background-image: url('../images/hero-background.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
	padding: 3rem 0;
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content p {
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 1.1rem;
	text-align: center;
	text-shadow: .25rem .25rem .25rem rgba(15, 46, 71, 1);
}

.hero-content p:first-of-type {
	font-size: 1.5rem;
	font-weight: 700;
}

.carousel-item {
	padding: 0 15%;
	margin-bottom: 0;
}

/* =========================================== */
/* sponsors */

.sponsors {
	background: #f2f2f2;
	padding: 3rem 0;
}

.sponsors h2 {
	text-align: center;
	margin-bottom: 2rem;
}

.sponsor-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sponsor-list__item {
	background: #fff;
	padding: 2rem;
	margin: 0 auto 2rem;
}

.sponsor-list__item img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

/* =========================================== */
/* blurbs */

.blurbs {}
.blurb-set {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.blurb-set__item {
	width: calc(50% - 1rem);
	padding: 3rem;
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.1);
	border-radius: .25rem;
	margin-bottom: 2rem;
}

.blurb-set__item h2 {
	font-size: 1.4rem;
}

.blurb-set__item p:last-child {
	margin-bottom: 0;
}

/* =========================================== */
/* footer */

.site-footer {
	padding: 3rem 0;
	background: #010910;
	color: #fff;
	text-align: center;
}

.footer-logo {
	display: inline-block;
}

.footer-logo img {
	width: 195px;
	height: 42px;
}

/* =========================================== */
/* footer nav */

.footer-nav {
	margin-bottom: 1rem;
}

.footer-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.footer-nav li {
	margin: .5rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
}

.footer-nav li a {
	display: block;
	text-decoration: none;
	color: #60CCF4;
	transition: color 300ms;
}

.footer-nav li a:hover {
	color: #fff;
}

/* =========================================== */
/* social */

.social {}

.social ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.social ul li {}

.social ul li a {}


.stay-in-the-loop {
	background: #fff;
	text-align: center;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.1);
}

.stay-in-the-loop img {
	max-width: 100%;
}

.stay-in-the-loop .social {
	padding: 3rem 2rem;
	text-align: center;
}

.stay-in-the-loop .social h2 {
	text-transform: uppercase;
}

.stay-in-the-loop .social ul {
	justify-content: center;
	font-size: 1.5rem;
}

.stay-in-the-loop .social li {
	margin: .25rem;
}

.stay-in-the-loop .social li a {
	display: block;
	padding: .5rem;
	border-radius: 5px;
	transition: background-color 300ms;
}

.stay-in-the-loop a[href*="facebook"] {
	background: #1877f2;
}

.stay-in-the-loop a[href*="twitter"] {
	background: #1da1f2;
}

.stay-in-the-loop a[href*="meetup"] {
	background: #e0393e;
}

.stay-in-the-loop a[href*="youtube"] {
	background: #ff0000;
}

.stay-in-the-loop .social li a:hover {
	background: #222;
}


.stay-in-the-loop .social li a img {
	display: block;
	width: 30px;
	height: 30px;
}

.mailing-list-action {
	padding-top: 2rem;
}

.mailing-list-action a {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}


.site-footer .social ul {
	justify-content: center;
	margin-bottom: 2rem;
}

.site-footer .social li {
	margin: 0 .5rem;
}

.site-footer .social li a {
	opacity: .5;
	transform: opacity 300ms;
}

.site-footer .social li a:hover {
	opacity: 1;
}

.site-footer .social li a img {
	width: 24px;
}




.profile__content .social {
	margin-bottom: 1rem;
}

.profile__content .social li {
	margin-right: .25rem;
}

.profile__content .social li a {
	opacity: .5;
	transform: opacity 300ms;
}

.profile__content .social li a:hover {
	opacity: 1;
}

.profile__content .social li img {
	width: 24px;
}


/* =========================================== */
/* upcoming event tile */

.upcoming-events {}

.upcoming-event-tile {
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.1);
	padding: 2rem;
	margin-bottom: 2rem;
	border-left: 1rem solid #60ccf4;
}

.upcoming-event__date {
	font-weight: 700;
	text-transform: uppercase;
	color: #4a799e;
	font-family: 'Poppins';
	font-size: .9rem;
	margin-bottom: 0.5rem;
}

.upcoming-event__details {}

.upcoming-event__details h2 {
	font-size: 1.5rem;
}

.upcoming-event__details h2 a {
	color: #0e2e47;
	text-decoration: none;
}

.upcoming-event__details h3 {
	font-size: 1rem;
	color: #555;
	font-weight: 400;
}

.upcoming-event__details p {}

.upcoming-event__details p:last-child {
	margin-bottom: 0;
}

.upcoming-event__details__action {
	margin-top: 1rem;
}

.upcoming-event__details__action a {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

.upcoming-event__type {
	display: flex;
	align-items: center;
	font-family: 'Poppins';
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	font-size: .825rem;
	color: #767676;
}

.upcoming-event__icon {
	margin-right: .25rem;
}

.upcoming-event__icon img {
	width: 18px;
	opacity: .3;
}

/* =========================================== */
/* past event tile */

.past-events {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0 -1rem;
}

.past-event-tile {
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.1);
	padding: 2rem;
	margin: 0 1rem 2rem;
	width: 100%;
}

.past-event-tile__date {
	font-weight: 700;
	text-transform: uppercase;
	color: #4a799e;
	font-family: 'Poppins';
	font-size: .9rem;
	margin-bottom: 0.5rem;
}

.past-event-tile h2 {
	font-size: 1.3rem;
}

.past-event-tile h2 a {
	color: #0e2e47;
	text-decoration: none;
}

.past-event-tile h3 {
	font-size: 1rem;
	color: #555;
	font-weight: 400;
}

/* =========================================== */
/* blog event tile */

.blog-layout {}

.blog-tile {
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.1);
	padding: 2rem;
	margin-bottom: 2rem;
	border-left: 1rem solid #60ccf4;
}

.blog-tile__date {
	font-weight: 700;
	text-transform: uppercase;
	color: #4a799e;
	font-family: 'Poppins';
	font-size: .9rem;
	margin-bottom: 0.5rem;
}

.blog-tile h2 {
	font-size: 1.3rem;
}

.blog-tile h2 a {
	color: #0e2e47;
	text-decoration: none;
}

.mura-tag-cloud {}

.mura-tag-cloud ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mura-tag-cloud ol li {
	margin: 0 .5rem;
	font-family: 'Poppins';
}

.mura-tag-cloud ol li span {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.mura-tag-cloud ol li a {
	text-decoration: none;
}

.mura-tag-cloud ol li.ultra-popular a {
	font-weight: 700;
}

.post-details {
	text-align: center;
	padding-top: 2rem;
	padding-bottom: 2rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid #ddd;
}

.post-details__date {
	font-weight: 700;
	text-transform: uppercase;
	color: #4a799e;
	font-family: 'Poppins';
	font-size: .9rem;
	margin-bottom: 0.5rem;
}

.post-details h2 {
	font-size: 2.4rem;
}


/* =========================================== */
/* profiles */

.profiles {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.profile {
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.1);
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
}

.profile__visual {
	background: #111;
	padding: 2rem;
}

.profile__visual img {
	border-radius: 50%;
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

.profile__content {
	padding: 2rem;
}

.profile__content h3 {}
.profile__content h4 {
	color: #555;
	font-weight: 300;
}

/* =========================================== */
/* cta */

.cta {
	position: relative;
	padding: 3rem 0;
	background-image: url('../images/cta-background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.cta::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
	opacity: .7;
}

.topic-cta {
	position: relative;
	z-index: 2;
	padding: 3rem;
	text-align: center;
	color: #fff;
}

.topic-cta h3 {
	font-size: 2rem;
}

.topic-cta p.lead {
	font-size: 1.5rem;
}

.topic-cta p {
	font-size: 1.2rem;
}

.topic-cta p:last-child {
	margin-bottom: 0;
}

/* =========================================== */
/* event details */

.event-details {
	text-align: center;
	padding-top: 2rem;
	padding-bottom: 2rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid #ddd;
}

.event-details__date {
	font-weight: 700;
	text-transform: uppercase;
	color: #4a799e;
	font-family: 'Poppins';
	font-size: .9rem;
	margin-bottom: 0.5rem;
}

.event-details h2 {
	font-size: 2.4rem;
}

.event-details h3 {
	font-weight: 400;
}

.event-details-cta {
	margin-top: 2rem;
	text-align: center;
}

.event-details-cta a {
	font-family: 'Poppins';
	font-weight: 700;
	text-transform: uppercase;
}

/* =========================================== */
/* nav sequential */
.nav-sequential-mini {
	list-style: none;
	border-top: 1px solid #ddd;
	margin: 2rem 0 0;
	padding: 2rem 0 0;
	display: flex;
}

.nav-sequential-mini li {
	width: 50%;
	font-family: 'Poppins';
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
}

.nav-sequential-mini li a {
	position: relative;
	display: inline-block;
	padding: 1rem;
	background-color: #0e2e47;
	color: #fff;
	text-decoration: none;
	transition: background-color 300ms;
}

.nav-sequential-mini li a:hover {
	background-color: #4a799e;
}

.nav-sequential-mini li a::after {
	content: '';
	position: absolute;
	display: block;
	top: 50%;
	transform: translateY(-50%);
	width: 0; 
	height: 0;
	border-top: .5rem solid transparent;
	border-bottom: .5rem solid transparent;
} 

.nav-sequential-mini .navPrev {}

.nav-sequential-mini .navNext {
	text-align: right;
}

.nav-sequential-mini .navNext:only-child {
	margin-left: auto;
}

.nav-sequential-mini .navPrev a {
	padding-left: 2rem;
}

.nav-sequential-mini .navPrev a::after {
	left: .75rem;
	border-right: .5rem solid #fff;
}

.nav-sequential-mini .navNext a {
	padding-right: 2rem;
}

.nav-sequential-mini .navNext a::after {
	right: .75rem;
	border-left: .5rem solid #fff;
}

/* =========================================== */
/* mura/masa */

.mura-object-meta h2,
.masa-object-meta h2 {
	margin-bottom: 2rem;
	text-align: center;
}

.mura-next-n ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}

.mura-next-n ul li {
	font-size: 1rem;
	margin: 0 .25rem;
	line-height: 1;
}

.mura-next-n ul li a {
	font-weight: 700;
	display: block;
	padding: .5rem .75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	color: #4a799e;
	text-decoration: none;
}

.mura-next-n ul li a:hover {
	text-decoration: none;
	border-color: #999;
}

.mura-next-n ul li.current a {
	pointer-events: none;
	color: #fff;
	background: #4a799e;
	border-color: transparent;
}

/* preloader */

.mura-preloader-wrapper {
	position: relative;
}

.mura-preloader {
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0 auto;
}

.mura-preloader::before,
.mura-preloader::after {
	content: "";
}

.mura-preloader span,
.mura-preloader::before,
.mura-preloader::after {
	position: absolute;
	display: block;
	width: 6px;
	height: 100%;
	background: #61ccf4;
}

.mura-preloader::before {
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	animation: wave 0.9s linear infinite;
}

.mura-preloader::after {
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	animation: wave 0.9s linear infinite 0.6s;
}

.mura-preloader span {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: wave 0.9s linear infinite 0.3s;
}

@keyframes wave {
	0% { height: 100% }
	40% { height: 10%; }
	80% { height: 100%; }
	100% { height: 100%; }
}

/* forms */

.page-layout [id^="mura-form-"] {
	padding: 2rem;
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.1);
}

.mura-section {
	font-size: 2rem;
	font-family: 'Poppins';
	font-weight: 700;
}

.mura-control-group {
	margin-bottom: 1rem;
}

.mura-control-group > label {
	font-family: 'Poppins';
	font-weight: 700;
}

.mura-control-group > label ins {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.mura-control-group.req label::after {
	content: '*';
	color: #b31f24;
	font-size: 0.875rem;
}

/* login */

.mura-login-form {
	margin-bottom: 2rem;
}

.mura-login-form,
.mura-send-login {
	padding: 2rem;
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.1);
}

/* =========================================== */
/* embed responsively */

.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%; }

/* ======================================================================================  */
/* 768px+ */
@media (min-width: 768px) {
	.site-header {
		padding: 2rem 0;
	}

	/*
	width: 260px;
	height: 56px;
	*/

	.hero {
		padding: 6rem 0;
	}

	.hero-content p {
		font-size: 1.5rem;
	}

	.hero-content p:first-of-type {
		font-size: 2rem;
	}

	.header-logo img {
		width: 390px;
		height: 84px;
	}

	.site-navigation .site-nav {
		display: flex;
		justify-content: center;
	}

	.site-navigation .site-nav li {
		border: 0;
	}

	.navbar-toggle {
		display: none !important;
	}

	.site-header__navbar {
		display: block !important;
	}

	.topic-cta h3 {
		font-size: 3rem;
	}

	.past-event-tile {
		width: calc(50% - 2rem);
	}

	.sponsor-list__item {
		width: calc(50% - 1rem);
	}

	.footer-nav ul {
		flex-direction: row;
		justify-content: center;
	}
}


/* ======================================================================================  */
/* 992px+ */
@media (min-width: 992px) {

	.template-layout--two-column {
		display: flex;
		justify-content: space-between;
	}
	
	.template-layout--two-column .template-layout__item--primary {
		width: calc(66.66% - 1rem);
	}
	.template-layout--two-column .template-layout__item--secondary {
		width: calc(33.33% - 1rem);
	}

	.hero {
		padding: 8rem 0;
	}

	.header-logo img {
		width: 520px;
		height: 112px;
	}

	.site-navigation .site-nav li {
		font-size: 1.1rem;
	}

	.site-nav-link {
		padding: 1rem 2rem;
	}

	.sponsor-list__item {
		width: calc(33% - 1rem);
	}

	.past-event-tile {
		width: calc(33% - 2rem);
	}

	.profile {
		width: calc(50% - 1rem);
	}
}

/* ======================================================================================  */
/* 1200+ */
@media (min-width: 1200px) {
	.site-header {
		padding: 3rem 0;
	}

	.header-logo img {
		width: 780px;
		height: 168px;
	}

	.site-navigation .site-nav li {
		font-size: 1.2rem;
	}

	.past-event-tile {
		width: calc(25% - 2rem);
	}
}