<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

:root {
	--primary-color: #a3342c;
	--secondary-color: #3d8a98;
	--tertiary-color: #e5bda0;
	--quarternary-color: #93cfdb;
	--grey: #bbb;
	--title-font: 'Cormorant', Arial, "sans-serif";
}

.primary {
	color: var(--primary-color);
}

.secondary {
	color: var(--secondary-color);
}

.tertiary {
	color: var(--tertiary-color);
}

.quarternary {
	color: var(--quarternary-color);
}

.grey {
	color: var(--grey);
}

@media screen and (min-height: 501px) and (orientation:landscape)  {
	:root {
		--font-size: calc(1vh + 14px);
	}
  
}

@media screen and (min-width: 501px) and (orientation:portrait) {
	:root {
		--font-size: calc(1vw + 14px);
	}
}

@media screen and (max-width: 500px), (max-height: 500px) {
	:root {
		--font-size: 15px;
	}
}

a.anchor {
	display: block;
	position: relative;
	top: -100px;
	visibility: hidden;
}

.accordian-image {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	width: 50%;
}

.accordian-image-wrapper {
	text-align: center;
}

.accordian-section-bgrnd {
	border-bottom: solid 1px #f2f2f2;
    display: none;
    padding: 20px 0px;
}

.accordian-section-header {
	align-items: center;
	border-bottom: solid 1px #f2f2f2;
	cursor: pointer;
	display: flex;
	font-size: 85%;
	justify-content: space-between;
	padding: 20px 0px;
}

.accordian-section-header &gt; *:first-child {
	padding-right: 5px;
}

.accordian-section-header:hover {
	filter: brightness(0.9);
}

.accordian-section-header-dropdown {
	border-bottom: none;
	float: right;
	transition: 0.5s;
}

.accordian-section-header-dropdown::after {
	content: 'add_circle';
}

.accordian-section-header-number {
	font-family: var(--title-font);
	font-size: 350%;
	margin-right: 20px;
}

.accordian-section-header-txt {
	font-weight: 500;
    text-transform: uppercase;
}

.accordian-section-wrapper {
	width: 100%;
}

.accordian-section-wrapper.active .accordian-section-bgrnd {
	display: block;
}

.accordian-section-wrapper.active .accordian-section-header-dropdown {
	transform: rotate(45deg);
}

.accordian-text {
	font-size: 85%;
	line-height: 1.7;
	text-align: left;
}

.accordian-text a {
	text-decoration: underline;
}

#alert-bar {
	background-color: red;
	height: 50px;
	overflow-x: hidden;
	width: 100%;
	z-index: 2;
}

#alert-text {
	animation: alertAnimation 20s infinite linear;
	color: white;
	display: inline-block;
	font-weight: bold;
	padding: 10px 0px 10px 100%;
	white-space: nowrap;
}

#alert-text a {
	text-decoration: underline;
}

@keyframes alertAnimation {
	to {
		transform: translateX(-100%);
	}
}

.audio-player {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: 75%;
}
 
.audio-details {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	margin-top: 25px;
}

.audio-tile {
	cursor: pointer;
	flex-shrink: 0;
	height: 300px;
	overflow: hidden;
	position: relative;
	width: 340px;
}

.audio-tile-bottom {
	background-color: var(--secondary-color);
	color: #fff;
	height: 40%;
	padding: 15px;
}

.audio-tile-container {
	margin: 0px 20px;
}

.audio-tile-date {
	font-size: 85%;
	opacity: 70%;
}

.audio-tile-icon {
	color: #fff;
	font-size: 50px !important;
}

.audio-tile-title {
	color: #fff;
	font-size: 95%;
}

.audio-tile-top {
	align-items: center;
	background-color: var(--quarternary-color);
	display: flex;
	height: 60%;
	justify-content: center;
	width: 100%;
}

.audio-track-art {
	margin: 25px;
	height: 150px;
	width: 150px;
	background-image: URL("/images/logo-red.png");
	background-size: cover;
	background-position: center;
}
 
.audio-track-name {
	font-size: 200%;
}

.audio-buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
}
 
.audio-playpause, .audio-prev, .audio-next {
	cursor: pointer;
	padding: 25px;
	opacity: 0.8;
	transition: opacity .2s;
}
 
.audio-playpause:hover, .audio-prev:hover, .audio-next:hover {
	opacity: 1.0;
}

.audio-slider-container {
	align-items: center;
	display: flex;
	justify-content: center;
	width: 100%;
}

.audio-seek-slider {
	width: 100%;
}
 
.audio-seek-slider, .audio-volume-slider {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: 5px;
	background: black;
	opacity: 0.7;
	-webkit-transition: .2s;
	transition: opacity .2s;
}

.audio-seek-slider::-webkit-slider-thumb, .audio-volume_slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 15px;
	height: 15px;
	background: white;
	cursor: pointer;
	border-radius: 50%;
}

.audio-seek-slider:hover, .audio-volume-slider:hover {
	opacity: 1.0;
}
 
.audio-volume-slider {
	width: 50%;
}
 
.audio-current-time, .audio-total-duration, .fa-volume-down, .fa-volume-up, .fa-volume-high {
	padding: 10px;
}

i.fa-play-circle, i.fa-pause-circle, i.fa-step-forward, i.fa-step-backward {
	cursor: pointer;
}

.bgrnd-white {
	background-color: #fff;
}

body, button, html, input, select, textarea {
	color: #000;
	font-family: 'Montserrat', Arial, "sans-serif";
	font-size: var(--font-size);
}

.bold {
	font-weight: bold;
}

.btn, input[type=submit] {
	background-color: var(--primary-color);
	border: none;
	border-radius: 50px;
	color: #fff;
}

.btn {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}

.btn &gt; *:first-child {
	margin-right: 5px;
}

.card {
	align-items: center;
	background-color: #fff;
    background-position: center;
	background-repeat: no-repeat;
    background-size: cover;
	border-radius: 15px;
	display: flex;
	flex-wrap: wrap;
	height: 600px;
	margin: 20px;
	padding: 10px;
	position: relative;
	width: 325px;
}

.card.active {
	transform: scale(1);
	z-index: 1;
}

.card-author, .card-date, .card-scripture, .card-subtitle {
	font-size: 16px;
}

.card-author, .card-date, .card-scripture, .card-subtitle, .card-title {
	color: #fff;
	font-weight: bold;
	padding: inherit;
	text-align: center;
	text-shadow: 1px 1px #000;
	width: 100%;
}

.card-author, .card-subtitle {
	font-style: italic;
}

.card-button {
	background-color: var(--secondary-color);
	bottom: 20px;
	font-size: 14px;
	padding: 8px 15px;
	position: absolute;
	text-transform: uppercase;
}

.card-contents {
	text-align: center;
	width: 100%;
}

.card-date {
	font-size: 20px;
}

.card-scripture {
	padding-top: 30px;
	text-transform: uppercase;
}

.card-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	position: relative;
}

.card-wrapper .arrow-wrapper {
	background-color: var(--secondary-color);
	border-radius: 50%;
	color: #fff;
	padding: 20px;
	position: absolute;
}

.card-wrapper .arrow-wrapper.left {
	left: 20px;
}

.card-wrapper .arrow-wrapper.right {
	right: -20px;
}

.content-flex-dynamic {
	flex: 1;
	max-width: 33%;
	min-width: 320px;
}

.content-flex-wrapper {
	display: flex;
	flex-wrap: nowrap;
	gap: 40px 20px;
	justify-content: space-evenly;
	margin-top: 50px;
}

.content-flex-wrapper &gt; div {
	padding: 60px 30px;
	position: relative;
}

.content-flex-wrapper &gt; div:hover .content-tile-bgrnd {
	opacity: 1;
	transform: translateY(0) skewY(-3deg);
}

.content-flex-wrapper.wrap {
	flex-wrap: wrap;
}

.content-img-tile {
	cursor: pointer;
	height: 40vw;
	overflow: hidden;
}

.content-img-tile:hover .content-tile-img {
	filter: brightness(.75);
	transform: scale(1.15);
}

.content-img-tile:hover .content-tile-img-content {
	display: none;
	opacity: 0;
}

.content-img-tile:hover .content-tile-overlay {
	display: block;
	opacity: 1;
}

.content-tile-bgrnd {
	background-color: #f2f2f2;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transform: translateY(40px) skewY(-3deg);
	transition: 0.5s cubic-bezier(.86,0,.07,1);
	width: 100%;
	z-index: -1;
}

.content-tile-img {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: 0.3s ease-in-out;
	width: 100%;
	z-index: -1;
}

.content-tile-img-content {
	display: block;
	opacity: 1;
	transition: display 0s, opacity 0.5s;
}

.content-tile-link {
	font-size: 90%;
	font-weight: bold;
	text-transform: uppercase
}

.content-tile-link:hover {
	filter: brightness(1.15);
}

.content-tile-overlay {
	display: none;
	opacity: 0;
	width: 100%;
}

.content-tile-text {
	font-size: 85%;
	line-height: 1.5;
	margin-bottom: 15px;
	text-align: left;
}

.content-tile-subtitle {
	font-family: var(--title-font);
	font-size: 200%;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.content-tile-title {
	font-size: 85%;
	font-weight: bold;
	margin-bottom: 10px;
	text-transform: uppercase;
}

#devotion-window p {
	margin: 0px;
}

.error-msg, .success-msg {
	border-radius: 10px;
	color: #fff;
	margin-bottom: 20px;
	padding: 10px 20px;
	text-align: center;
}

.error-msg {
	background-color: crimson;
	border: solid 3px darkred;
}

.flex-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
}

.flex-wrapper.center {
	justify-content: center;
}

.flex-wrapper.end {
	align-items: flex-end;
}

.flex-wrapper.gap {
	gap: 20px;
}

.flex-wrapper.wrap {
	flex-wrap: wrap;
}

.flex-wrapper .title, .flex-wrapper .subtitle {
	margin-bottom: 0px;
}

.flickity-item {
	margin: 30px;
	padding: 60px 30px;
	position: relative;
	width: 33%;
}

.flickity-item:hover .content-tile-bgrnd {
	opacity: 1;
	transform: translateY(0) skewY(-3deg);
}

.flickity-wrapper {
	margin-top: 30px;
}

.floating-tile {
	background-color: #fff;
	box-shadow: 3px 3px 8px 0 #333;
	padding: 30px;
	position: relative;
}

.floating-tile-container {
	flex: 0 0 100%;
	margin-bottom: 20px;
}

.floating-tile-container.two {
	flex: 0 0 50%;
	padding: 0px 10px;
}

.floating-tile-section {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}

.floating-tile-section ul {
	column-count: 2; 
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.floating-tile-section ul li {
	break-inside: avoid-column;
}

.floating-tile-subtitle {
	color: #777;
	font-size: 90%;
	font-style: italic;
	font-weight: bold;
}

.floating-tile-text {
	font-size: 90%;
}

.floating-tile-title {
	color: #999;
	font-size: 120%;
	font-weight: bold;
	margin-bottom: 3px;
}

.footer-bottom-wrapper {
	background-color: #000;
	font-size: 75%;
	padding: 10px;
	text-align: center;
	width: 100%;
}

.footer-columns {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 5vw;
	justify-content: center;
}

.footer-icon-wrapper {
	align-items: center;
	display: flex;
	gap: 15px;
	justify-content: center;
	width: 100%;
}

.footer-img {
	height: 160px;
}

.footer-title {
	color: #fff;
	font-size: 110%;
	font-weight: bold;
	margin-top: 5px;
	padding: 8px 10px;
}

.footer-txt {
	color: #fff;
	line-height: 1.4;
	padding: 5px 10px;
	text-decoration: none;
}

.footer-txt a {
	text-decoration: underline;
}

.footer-txt a:hover {
	color: #d2d2d2;
}

.footer-wrapper {
	background-color: #333;
	font-size: 75%;
	padding: 40px;
}

.form li {
	list-style-type: none;
}

.form-input-wrapper {
	gap: 0px 10px;
	margin: 20px 0px;
}

.form-input-wrapper &gt; input:not([type=submit]):not([type=checkbox]):not([type=range]):not([type=file]), .form-input-wrapper &gt; select, .form-input-wrapper &gt; textarea, .form-input-wrapper &gt; .flex-wrapper, .form-input-wrapper &gt; .selectify {
    flex: 1;
}

.form-label {
	flex-shrink: 0;
	width: 150px;
}

.form-label.full {
	width: 100%;
}

.grid {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
	justify-content: center;
	margin: 40px auto;
	max-width: 1200px;
}

.grid.flickity-wrapper {
	display: block;
	flex-wrap: nowrap;
	gap: 0px;
	justify-content: flex-start;
	margin-left: 0px;
	margin-right: 0px;
	max-width: 100%;
}

.grid-box {
	background-color: #fff;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
	cursor: pointer;
	flex-shrink: 0;
	height: 440px;
	width: 340px;
}

.grid-box.no-cursor {
	cursor: auto;
}

.grid.flickity-wrapper .grid-box {
	margin: 30px;
	position: relative;
	width: 33%;
}

.grid-content {
	padding: 15px;
}

.grid-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	height: 73%;
    padding: 20px 20px;
    transition: 0.5s;
	width: 100%;
}

.grid-subtitle {
	font-family: var(--title-font);
	font-size: 120%;
	font-weight: bold;
}

.grid-title {
	color: #999;
	font-size: 75%;
}

.grid-title + .grid-subtitle {
	margin-top: 3px;
}

#header-bar {
	/*align-items: center;*/
	/*background-color: #fff;*/
	/*border-top: solid 3px var(--primary-color);*/
	/*box-shadow: 1px 0px 7px rgba(50,50,50,0.3);*/
	display: flex;
	flex-wrap: nowrap;
	/*height: 100px;*/
	justify-content: space-between;
	padding: 30px;
	width: 100%;
	z-index: 4;
}

#header-bar.active, #header-bar.light {
	color: #fff;
}

#header-bar.active .menu-bottom-bar, #header-bar.light .menu-bottom-bar {
	background-color: #fff;
}

#header-bar.active .header-logo {
	content: url("../images/logo-white.png");
}

.header-logo {
	content: url("../images/logo-red.png");
	cursor: pointer;
	height: 70px;
	z-index: 5;
}

.header-logo-wrapper {
	align-items: center;
	display: flex;
	cursor: pointer;
}

.header-menu {
	cursor: pointer;
	flex-direction: column;
	z-index: 4;
}

.header-menu:hover .menu-bottom-bar {
	width: 40px;
}

.header-text {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
}

#header-wrapper {
	position: absolute;
	top: 0;
    width: 100%;
	z-index: 3;
}

html {
	scroll-padding-top: 100px;
}

.icon-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
}

.icon-wrapper &gt; i {
	margin-right: 5px;
}

.img-bgrnd-content {
	max-width: 700px;
	width: 100%;
}

.img-bgrnd-medium {
	height: 600px;
	max-height: 100vh;
}

.img-bgrnd-skewed {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: skewY(-3deg);
	width: 100%;
	z-index: -1;
}

.img-bgrnd-skewed.reverse {
	transform: skewY(3deg);
}

.img-bgrnd-three-fourths {
	height: 75vh;
	min-height: 400px;
}

.img-inline {
	display: inline-block;
	max-height: 300px;
	max-width: 50%;
}

.img-medium {
	height: 50px;
	padding: 5px;
}

.img-slide {
	height: 100vh;
}

.img-wrap-img {
	float: left;
	margin-right: 30px;
	max-width: 350px;
	width: 50%;
}

.indent {
	margin-left: 30px;
}

.index-img {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	height: 100vh;
}

.index-img-line {
	border-bottom: solid 3px #F6A622;
	border-radius: 3px;
	margin: 5px auto 5px auto;
	text-align: center;
	width: 100%;
}

.index-img-logo {
	width: 500px;
}

.index-img-overlay {
	margin-left: auto;
	margin-right: auto;
	padding: 30px;
	text-align: center;
	width: fit-content;
}

.index-img-subtitle, .index-img-subtitle-large {
	color: #f2f2f2;
	font-family: roboto condensed;
	font-weight: bold;
	text-shadow: 2px 2px rgba(0,0,0,0.8);
}

.index-img-subtitle {
	font-size: 155%;
}

.index-img-subtitle-large {
	font-size: 180%;
}

.index-img-title {
	color: #fafafa;
	font-size: 275%;
	font-weight: bold;
	text-shadow: 1px 1px rgba(0,0,0,0.8);
	text-transform: uppercase;
}

.index-video {
	height: 100vh;
	object-fit: cover;
	width: 100%;
}

li {
	line-height: 1.5;
}

.location-header-menu {
	align-items: center;
	background-color: #222;
	box-shadow: 2px 2px 8px 1px rgba(0,0,0,.2);
	display: flex;
	justify-content: center;
	margin-top: -6px;
	padding: 20px;
	position: sticky;
	text-align: center;
	top: 0;
	z-index: 5;
}

.location-header-menu &gt; *:not(:last-child) {
	border-right: solid 1px #fff;
}

.location-menu {
	display: none;
	margin-left: 15px;
	position: relative;
	z-index: 5;
}

.location-menu.active {
	display: block;
}

.location-menu-item {
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	padding: 0px 15px;
}

.location-menu-item:hover {
	text-decoration: underline;
}

.location-sub-menu {
	appearance: auto;
	background-image: none;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	padding: 0px;
	width: 100%;
}

.location-sub-menu, .location-sub-menu:focus {
	background-color: transparent;
	border: none;
	box-shadow: none;
}

.location-sub-menu option {
	color: #333;
}

.location-title-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
}

* &gt; .sub-menu-icon:after {
	content: 'keyboard_arrow_down';
}

*.active &gt; .sub-menu-icon:after {
	content: 'keyboard_arrow_up';
}

.logo {
	max-width: 200px;
}

.media {
	margin: 30px auto auto auto;
	max-width: 1200px;
}

.menu {
	color: #fff;
	min-height: 80vh;
}

.menu.full-right-slide {
    background-color: var(--primary-color);
	padding-top: 120px;
}

.menu.full-right-slide.active {
	width: 380px;
}

.menu.full-top-slide {
	opacity: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding-top: 150px;
	position: absolute;
	top: 0;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	transform-origin: top;
	transition: 0.5s ease-out;
	width: 100%;
}

.menu.full-top-slide.active {
	opacity: 1;
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.menu .menu-item-wrapper, .menu .sub-menu-wrapper {
	font-size: 16px;
	padding: 2px;
}

.menu .menu-item-wrapper:hover, .menu .sub-menu-wrapper:hover {
	font-weight: normal;
}

.menu .menu-item-wrapper:hover .menu-item, .menu .menu-item:hover {
	text-decoration: underline;
}

.menu .menu-item-wrapper a {
	width: 100%;
}

.menu .sub-menu-wrapper {
	font-size: 14px;
	max-width: 250px;
	padding: 2px;
}

.menu-bar {
	background-color: #fff;
}

.menu-bgrnd {
	height: 40vh;
}

.menu-bgrnd-skewed {
	/*border-bottom: solid 8px #fff;*/
	height: 50vh;
}

.menu-bgrnd-skewed-line {
	top: 48vh;
}

.menu-bgrnd, .menu-bgrnd-line, .menu-bgrnd-skewed, .menu-bgrnd-skewed-line {
	position: absolute;
	width: 100%;
	z-index: -1;
}

.menu-bgrnd, .menu-bgrnd-line, .menu-bgrnd-skewed {
	background-color: var(--primary-color);
	top: 0px;
}

.menu-bgrnd-line, .menu-bgrnd-skewed-line {
	background-color: #fff;
	height: 1vh;
	width: 100%;
}

.menu-bgrnd-skewed, .menu-bgrnd-skewed-line {
	transform: skewY(-3deg);
	-webkit-transform: skewY(-3deg);
}

.menu-bottom-bar {
	background-color: #000;
	height: 3px;
	margin-top: 3px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	width: 30px;
}

.menu-sections {
	align-items: flex-start;
	display: flex;
	flex-wrap: nowrap;
	gap: 30px;
	padding: 0px 30px;
}

.menu-section-title {
	font-size: 15px;
	font-weight: bold;
	text-transform: uppercase;
}

.menu-section-title + .menu-item-wrapper {
	margin-top: 10px;
}

.menu-sub-wrapper {
	display: none;
}

.menu-sub-wrapper.active {
	display: block;
}

.menu-txt {
	font-size: 16px;
	margin: 0px;
}

.menu-txt:before {
	content: 'Menu';
}

.menu-txt.active:before {
	content: 'Close';
}

.modal-wrapper {
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
	display: none;
	height: 100%;
	left: 0;
	overflow: auto;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 4;
}

.no-side-padding .title {
	padding: 0px 60px;
}

ol.styled {
	counter-reset: item;
	list-style: none;
	padding-left: 40px;
}

ol.styled li {
	counter-increment: item;
	margin-bottom: 10px;
	margin-left: 10px;
	position: relative;
}

ol.styled li::before {
	/*background: var(--secondary-color);*/
	border: solid 1px #333;
	border-radius: 50%;
	content: counter(item);
	display: inline-block;
	height: calc(var(--font-size) + 1vh);
	left: calc(-1 * var(--font-size) - 2vh);
	position: absolute;
	text-align: center;
	width: calc(var(--font-size) + 1vh);
}

.overlay {
	background-color: rgba(0,0,0,0.3);
	display: flex;
	height: 100%;
	left: 0;
	padding: 40px;
	position: absolute;
	top: 0;
	width: 100%;
}

.overlay &gt; .para {
	flex: 1;
	font-size: 110%;
	text-align: center;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.no-overflow {
	overflow: hidden;
}

.paired-img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 10px;
}

.paired-sub-txt {
	color: #777;
	font-size: 80%;
	margin-top: 10px;
}

.paired-wrapper {
	margin: 20px 0px;
}

.para {
	line-height: 1.6;
	margin-top: 20px;
	text-align: justify;
}

.para a, .split-text a, .title a {
	color: var(--secondary-color);
	font-weight: bold;
	text-decoration: underline;
}

.para b {
	color: var(--secondary-color);
	font-family: var(--title-font);
}

.para a:hover, .split-text a:hover, .title a:hover {
	filter: brightness(1.15);
}

.para.quote {
	color: #999;
	font-size: 80%;
}

.para.small {
	font-size: 80%;
}

.phone-flex-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	margin: 0px 25px;
}

.phone-flex-wrapper &gt; * {
	margin: 7px;
	text-align: center;
}

.phone-img {
	filter: invert(1);
	height: 25px;
}

.phone-text {
	color: #fff;
	white-space: nowrap;
}

.podcast-tile {
	background-color: #fff;
    border-radius: 15px;
	box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.1);
    height: 600px;
    margin: 20px;
	overflow-y: auto;
    width: 400px;
}

.podcast-tile::-webkit-scrollbar {
	width: 12px;
}

.podcast-tile::-webkit-scrollbar-track {
	border-radius: 10px;
}

.podcast-tile::-webkit-scrollbar-thumb {
	background-clip: content-box;
	background-color: transparent;
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
	box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

.podcast-tile-container {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	width: 100%;
}

.podcast-tile-content-section {
	padding: 20px;
}

.podcast-tile-episode {
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	justify-content: flex-start;
	padding: 10px 0px;
	width: 100%;
}

.podcast-tile-episode-number {
	font-family: var(--title-font);
}

.podcast-tile-subtitle {
	font-size: 85%;
	font-weight: bold;
	text-transform: uppercase;
}

.podcast-tile-text {
	font-size: 90%;
}

.podcast-tile-title-section {
	background-color: #f2f2f2;
	padding: 20px;
}

.podcast-tile-title {
	font-weight: bold;
}

.podcast-tile-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.podcast-tile-flex &gt; * {
	width: 100%;
}

.popup-close {
	cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    transition: 0.25s;
    user-select: none;
}

.popup-close.light {
	color: #fff;
}

.popup-close:hover {
	filter: invert(0.4);
}

.popup-close-wrapper {
	position: relative;
}

.popup-contents {
	padding: 40px;
}

.popup-contents-container {
	align-items: top;
	display: flex;
	flex-wrap: nowrap;
	max-height: 85vh;
	overflow: auto;
}

.popup-contents-container &gt; * {
	flex: 0 1 auto;
	padding: 2%;
	width: 100%;
}

.popup-contents-container::-webkit-scrollbar {
	width: 12px;
}

.popup-contents-container::-webkit-scrollbar-track {
	border-radius: 10px;
}

.popup-contents-container::-webkit-scrollbar-thumb {
	background-clip: content-box;
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
	box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

.popup-contents-first {
	max-width: 400px;
	width: 60%;
}

.popup-heading {
	color: #41b6d1;
	font-size: 90%;
	text-transform: uppercase;
}

.popup-heading + .popup-text {
	margin-top: 10px;
}

.popup-img {
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	border-radius: 50%;
	height: 0;
    padding-bottom: 100%;
	width: 100%;
}

.popup-img + .popup-heading {
	margin-top: 20px;
}

.popup-input {
	font-size: 80%;
	padding: 10px 15px;
}

.popup-subtitle {
	color: var(--quarternary-color);
	font-size: 90%;
	font-weight: bold;
}

.popup-text {
	color: #5c5c5c;
	font-size: 80%;
	line-height: 1.5;
	text-align: justify;
}

.popup-text.form-label {
	width: 125px;
}

.popup-text.giving {
	font-size: 85%;
	font-weight: bold;
	margin-bottom: 2%;
}

.popup-text.small {
	color: #888;
	font-size: 70%;
}

.popup-text p {
	margin: 0px;
}

.popup-title {
	color: var(--secondary-color);
	font-size: 120%;
	text-transform: uppercase;
}

.popup-title + .popup-text, .popup-subtitle + .popup-text {
	margin-top: 20px;
}

.popup-window {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, .6);
	position: relative;
	/*background-color: #fff;
	border-radius: 8px;
	box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, .6);
	margin: auto;
	max-width: 600px;
	padding: 2% 1%;
	position: relative;
	top: 50%;
	transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	width: 90%;*/
}

.popup-window.full {
	max-width: 90%;
}

.popup-window .btn {
	font-size: 80%;
	min-width: 200px;
}

.popup-wrapper {
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
	display: none;
	height: 100%;
	left: 0;
	overflow: auto;
	padding: 5%;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.post-author {
	font-size: 90%;
	font-style: italic;
	font-weight: bold;
	margin-top: 5px;
}

.post-container {
	height: 100%;
	max-width: 550px;
	width: 100%;
}

.post-container.video {
	min-width: 500px;
}

.post-content {
	padding: 0px 10px;
}

.post-contents {
	font-size: 95%;
	line-height: 1.5;
	margin-top: 40px;
}

.post-contents a {
	color: var(--quaternary-color);
	text-decoration: underline;
}

.post-date {
	color: var(--secondary-color);
	font-size: 75%;
	font-weight: bold;
	margin-top: 5px;
}

.post-img {
	width: 100%;
}

.post-img-bgrnd {
	height: 0px;
	padding-bottom: 56.25%;
	width: 100%;
}

.post-img-bgrnd.popup {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.post-link {
	color: var(--secondary-color);
	cursor: pointer;
	font-size: 80%;
	margin-top: 10px;
	text-decoration: underline;
}

.post-subtitle {
	color: var(--secondary-color);
	font-family: var(--title-font);
	font-size: 110%;
	font-weight: bold;
	margin-top: 5px;
}

.post-text {
	font-size: 80% !important;
	line-height: 1.5;
	margin-top: 10px;
}

.post-title {
	font-family: var(--title-font);
	font-size: 180%;
	margin-top: 15px;
	text-transform: uppercase;
}

.quote {
	color: #777;
	font-size: 90%;
	font-style: italic;
	line-height: 1.5;
	text-align: justify;
}

.quote.light {
	color: #fff;
}

.quote-img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border: solid 3px #ddd;
	border-radius: 50%;
	flex-shrink: 0;
	height: 190px;
	width: 190px;
}

.quote-name {
	color: #111;
	font-size: 100%;
	font-weight: bold;
	margin-top: 15px;
	text-align: right;
}

.quote-wrapper {
	justify-content: space-between;
}

.quote-wrapper &gt; * {
	margin: 20px;
}

.quote-wrapper:nth-child(even) .quote-img {
	order: 2;
}

.read-more-link {
	color: var(--secondary-color);
	cursor: pointer;
	font-size: 90%;
	font-weight: bold;
	text-align: center;
	text-decoration: underline;
}

.relative {
	position: relative;
}

.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}

.ribbon::before, .ribbon::after {
  position: absolute;
  z-index: 0;
  content: '';
  display: block;
  border: 5px solid #5c1a24;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #8A2736;
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  color: #fff;
  font: 700 18px/1 'Lato', sans-serif;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  text-transform: uppercase;
  text-align: center;
}

.ribbon-top-right {
  top: -10px;
  right: -10px;
}

.ribbon-top-right::before, .ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}

.ribbon-top-right::before {
  top: 0;
  left: 0;
}

.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}

.ribbon-top-right span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}

.scrolling-gallery-wrapper &gt; .gallery-img-wrapper {
	flex: none;
}

.secondary-color {
	color: var(--secondary-color);
}

.section-bgrnd {
	padding-left: 100px;
	padding-right: 100px;
}

.section-bgrnd.more-padding {
	padding-bottom: 100px;
	padding-top: 100px;
}

.section-bgrnd.no-side-padding {
	padding-left: 0px;
	padding-right: 0px;
}

.section-bgrnd-dark {
	background-color: #272727;
}

.section-bgrnd-grey {
	background-color: #838383;
}

.section-bgrnd-light-grey {
	background-color: #f2f2f2;
}

.section-bgrnd-primary {
	background-color: var(--primary-color);
}

.section-bgrnd-secondary {
	background-color: var(--secondary-color);
}

.section-bgrnd-tertiary {
	background-color: var(--tertiary-color);
}

.section-img {
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transform: scale(1.2);
	transition: 0.7s ease-in-out;
	width: 100%;
}

.section-img.active {
	opacity: 1;
	transform: scale(1);
}

.section-line {
	border-top: solid 1px #d2d2d2;
	margin: 0px 40px;
}

.section-skewed {
	margin: 60px 0px;
}

.section-skewed-content {
	position: relative;
}

.section-skewed-header {
	font-weight: bold;
	padding: 10px 60px;
	text-transform: uppercase;
}

.section-skewed-item {
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	justify-content: space-between;
	overflow: hidden;
	padding: 30px 100px;
	position: relative;
	z-index: 1;
}

.section-skewed-item:hover .section-skewed-item-bgrnd {
	transform: translateX(0) scaleX(1.1) skewX(9deg);
}

.section-skewed-item:hover .section-skewed-item-subtitle {
	display: block;
}

.section-skewed-item-bgrnd {
	background-color: var(--primary-color);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: 0.7s cubic-bezier(.86,0,.07,1);
	transform: translateX(-104%) scaleX(1) skewX(9deg);
	width: 100%;
	z-index: -1;
}

.section-skewed-item-title {
	font-family: var(--title-font);
	font-size: 200%;
	text-transform: uppercase;
}

.section-skewed-item-subtitle {
	display: none;
	font-size: 90%;
	text-transform: uppercase;
}

.selectify {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	text-align: left;
}

.selectify li {
	color: #333;
	cursor: pointer;
	list-style: none;
	padding: 0px 10px;
	white-space: nowrap;
}

.selectify.form-select li {
	padding: 5px 20px;
}

.selectify.select-filter li {
	padding: 3px 10px;
}

.selectify li.active {
	background-color: var(--secondary-color);
	color: #fff;
}

.selectify ul {
	margin: 0px;
	min-height: 24px;
	overflow-y: auto;
	padding: 0px;
}

/*.selectify.active {
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}*/

.selectify-box {
	cursor: default;
	overflow-x: hidden;
	overflow-y: hidden;
	text-wrap: nowrap;
	user-select: none;
}

.selectify-filter-wrapper {
	align-items: center;
	border-bottom: solid 1px gainsboro;
	display: flex;
	flex-wrap: nowrap;
	position: relative;
}

.selectify-filter-wrapper i {
	color: #bbb;
	cursor: default;
	left: 5px;
	position: absolute;
	user-select: none;
}

.selectify-filter-wrapper i:first-child {
	margin-left: 20px;	
}

.selectify-filter-wrapper i:last-child {
	margin-right: 20px;	
}

.selectify-input {
	border: none;
	border-radius: 0px;
	color: #888;
	font-size: 100%;
	margin: 0px;
	padding: 10px 10px 10px 35px;
	width: 100%;
}

.selectify-list {
	background-color: #fff;
	border: solid 1px gainsboro;
	display: none;
	left: -1px;
	min-width: 100%;
	position: absolute;
	top: 100%;
	width: auto;
	z-index: 1;
}

.selectify.active .selectify-list {
	display: block;
}

.slide-button {
	border: solid 1.5px #fff;
	border-radius: 50%;
	cursor: pointer;
	height: 15px;
	margin: 0px 5px;
	width: 15px;
}

.slide-button.active {
	background-color: #fff;
}

.slide-controls {
	bottom: 20px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	position: absolute;
	text-align: center;
	width: 100%;
}

.slides {
	display: none;
}

.slides.active {
	display: block;
}

.slideshow-container {
	margin: auto;
	position: relative;
	width: 100%;
}

.space-between {
	justify-content: space-between !important;
}

.split-container {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	padding-left: 10vw;
	padding-right: 10vw;
	width: 100%;
}

.split-container &gt; * {
	align-self: stretch;
	padding: 20px;
	width: 50%;
}

.split-image img {
	width: 100%;
}

.split-text {
	line-height: 1.875;
}

.split-title {
	font-weight: bold;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.sub-header-bar {
	padding: 8px 20px;
}

.sub-menu-icon {
	margin-left: 5px;
}

.sub-menu-wrapper {
	display: none;
	margin-left: 10px;
}

.sub-menu-wrapper.active {
	display: block;
}

.subsection {
	margin-bottom: 60px;
	margin-top: 60px;
}

.subsection.full {
	margin-left: 60px;
	margin-right: 60px;
}

.subtitle {
	font-family: var(--title-font);
	font-size: 225%;
}

#testimonial-section &gt; .section-bgrnd:nth-child(even) {
	background-color: #00539f;
	color: #fff;
}

.text-light {
	color: #fff !important;
}

.tile-overlay {
	background-color: #fff;
	border: solid 1px #fff;
	color: #fff;
	cursor: default;
	flex: 0 0 33.33%;
	overflow: hidden;
	padding-top: 25%;
	position: relative;
	text-shadow: 1px 1px 3px #111;
}

.tile-overlay:hover .tile-overlay-img {
	transform: scale(1.05);
}

.tile-overlay * {
	cursor: pointer;
}

.tile-overlay-banner {
	background-color: #00539f;
	box-shadow: 2px 2px 8px 1px rgba(0,0,0,.2);
	opacity: 0.9;
	padding: 10px 20px;
	position: absolute;
	top: 0px;
	transition: 0.5s;
	width: 100%;
	z-index: 1;
}

.tile-overlay-content {
	align-items: center;
	bottom: 20px;
	display: flex;
	left: 20px;
	position: absolute;
	transition: 0.5s;
	width: calc(100% - 40px);
}

.tile-overlay-date {
	font-size: 90%;
	line-height: 1.4;
}

.tile-overlay-date, .tile-overlay-title {
	font-family: Poppins, Arial, "sans-serif";
	font-weight: bold;
	opacity: 1;
	text-align: left;
	width: 100%;
}

.tile-overlay-fgrnd {
	background-color: #000;
	height: 100%;
	opacity: .2;
	padding: 25px;
	position: absolute;
	top: 0;
	width: 100%;
}

.tile-overlay-img {
	cursor: pointer;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.tile-overlay-link {
	cursor: pointer;
	font-size: 80%;
	line-height: 1.5;
	text-align: left;
}

.tile-overlay-overlay {
	background-image: linear-gradient(transparent, transparent, rgba(0,0,0,0.8));
	color: #fff;
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}

.tile-overlay-section {
	align-items: center;
	background-color: #676767;
	display: flex;
	flex-wrap: wrap;
}

.tile-overlay-text {
	font-size: 80%;
	line-height: 1.5;
	margin: 20px 0px;
	text-align: left;
	width: 100%;
}

.tile-overlay-title {
	font-size: 115%;
	margin-right: 5px;
}

.tile-popup {
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.2);
	height: 100%;
	overflow: hidden;
	transition: 0.2s;
}

.tile-popup:not(.nocursor) {
	cursor: pointer;
}

.tile-popup:not(.nohover):hover {
	transform: scale(1.05);
}

.tile-popup-base {
	padding: 20px;
}

.tile-popup-container {
	flex: 0 0 33.33%;
	margin: 10px 0px;
	max-width: 320px;
	padding: 0px 10px;
}

.tile-popup-img {
	height: auto;
	width: 100%;
}

.tile-popup-links {
	margin-top: 15px;
}

.tile-popup-link {
	color: var(--primary-color);
	cursor: pointer;
	font-size: 80%;
	text-decoration: underline;
}

.tile-popup-link:hover {
	font-weight: bold;
}

.tile-popup-subtitle {
	color: #777;
	font-size: 90%;
	margin-top: 5px;
}

.tile-popup-title {
	font-size: 110%;
}

.tile-popup-wrapper {
	align-items: top;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 30px;
}

.title {
	font-family: var(--title-font);
	font-size: 300%;
	margin-bottom: 30px;
	text-align: center;
}

.title + .para, .subtitle + .para {
	margin-top: 30px;
}

.vertical-flex-container {
	align-items: center;
	background-color: #f6f6f6;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.vertical-flex-container &gt; div {
	flex: 1;
}

.video {
	object-fit: cover;
	width: 100%;
}

.video-container {
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}

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

.video-tile {
	margin: 20px;
	max-width: 400px;
	width: 33%;
}

.video-tile-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

@media (min-width: 1217px) and (max-width: 1600px) {
	
	.content-flex-dynamic {
		max-width: 40%;
	}
	
}


@media screen and (max-width: 935px) {
	
	.floating-tile-container.two {
		flex: 0 0 100%;
		padding: 0px;
	}
	
	.floating-tile-section ul {
		column-count: 1;
	}
	
	.menu-item-wrapper.phone {
		display: flex !important;
	}
	
}

@media (min-width: 801px) and (max-width: 1216px) {
	
	.content-flex-dynamic {
		max-width: 50%;
	}
	
}

@media (max-width: 800px) {
	
	.content-flex-dynamic {
		max-width: 100%;
	}
	
}

@media screen and (max-width: 920px) and (max-height: 500px), screen and (max-height: 920px) and (max-width: 500px) {
	
	.btn, input[type=submit] {
		padding: 13px;
	}
	
	.content-flex-dynamic {
		max-width: 100%;
	}
	
	.content-flex-three {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.content-flex-three, .content-flex-two {
		width: 100%;
	}
	
	.content-flex-wrapper {
		flex-wrap: wrap;
		margin-top: 30px;
	}

	.content-flex-wrapper &gt; div {
		padding: 15px;
	}

	.content-img-tile {
		height: 50vh;
		min-height: 50vw;
	}

	.flex-wrapper {
		flex-wrap: wrap;
	}

	.flex-wrapper.reverse {
		flex-wrap: wrap-reverse;
	}
	
	.flickity-item {
		padding: 0px;
		width: 80%;
	}

	.footer-column-wrapper {
		text-align: center !important;
		width: 100%;
	}
	
	.footer-column-wrapper .flex-wrapper {
		justify-content: center;
	}
	
	.footer-columns {
		flex-wrap: wrap;
	}

	.footer-columns-nowrap {
		flex-direction: column;
	}
	
	.footer-img {
		height: 80px;
	}
	
	.footer-txt {
		padding: 3px 0px;
	}
	
	.footer-wrapper {
		display: block;
		padding: 20px;
	}

	.form-input-wrapper {
		margin: 10px 0px;
	}

	.form-input-wrapper &gt; input:not([type=submit]):not([type=checkbox]):not([type=range]):not([type=file]), .form-input-wrapper &gt; select, .form-input-wrapper &gt; textarea, .form-input-wrapper &gt; .flex-wrapper, .form-input-wrapper &gt; .selectify {
		flex: none;
		flex-grow: 1;
	}

	.form-label {
		width: 80px;
	}

	.grid {
		gap: 40px;
	}

	.grid.flickity-wrapper .grid-box {
		width: 100%;
	}

	.grid-subtitle {
		font-size: 160%;
	}

	.grid-title {
		font-size: 100%;
	}
	
	#header-bar {
		background-size: 30px;
		padding: 20px;
	}
	
	#header-bar, #header-bar-bgrnd {
		height: 80px;
	}
	
	.header-logo {
		max-height: 54px;
	}

	.header-logo-wrapper {
		flex-wrap: wrap;
		gap: 10px;
	}
	
	.header-text {
		font-size: 16px;
	}

	.header-wrapper {
		height: 100vh;
		overflow-y: auto;
	}
	
	.img-bgrnd-medium {
		height: 400px;
	}
	
	.img-bgrnd-medium .content-flex-two:last-of-type {
		display: none;
	}

	.img-medium {
		height: 42px;
	}
	
	.img-slide {
		height: calc(100vh - 100px);
	}
	
	.img-split {
		min-height: 200px;
	}
	
	.img-wrap-img {
		margin-bottom: 20px;
		width: 100%;
	}

	.indent {
		margin-left: 15px;
	}
	
	.index-img-logo {
		max-width: 500px;
		width: 90%;
	}
	
	.index-img-subtitle {
		font-size: 150%;
	}
	
	.location-header-menu {
		flex-wrap: wrap;
		gap: 10px 0px;
		padding: 15px 10px;
	}

	.location-menu {
		flex-basis: 100%;
		margin-left: 0px;
	}
	
	.location-menu-item {
		padding: 0px 10px;
	}

	.menu {
		background-color: var(--primary-color);
		padding-bottom: 30px;
	}
	
	.menu.active {
		width: 100%;
	}
	
	.menu.full-right-slide {
		padding-top: 64px;
	}

	.menu-bgrnd {
		min-height: unset;
	}

	.menu-section {
		width: 100%;
	}

	.menu-sections {
		flex-wrap: wrap;
	}

	ol.styled {
		padding-left: 25px;
	}

	.para {
		margin-top: 15px;
	}
	
	.phone-flex-wrapper {
		/*display: none;*/
		margin: 0px 15px;
	}
	
	.phone-flex-wrapper &gt; * {
		margin: 4px;
	}
	
	.phone-img {
		height: 15px;
	}
	
	.podcast-tile-container {
		flex-wrap: wrap;
	}

	.popup-contents-container {
		flex-wrap: wrap;
	}
	
	.popup-img {
		margin-left: auto;
		margin-right: auto;
	}
	
	.quote {
		font-size: 100%;
	}
	
	.quote-img {
		height: 140px;
		width: 140px;
	}
	
	.quote-name {
		font-size: 110%;
	}
	
	.quote-wrapper &gt; * {
		margin: 15px;
	}

	.section-bgrnd {
		padding-left: 20px;
		padding-right: 20px;
	}

	.section-bgrnd.more-padding {
		padding-bottom: 20px;
		padding-top: 20px;
	}
	
	.section-line {
		margin: 0px 20px;
	}

	.section-skewed-item {
		padding: 20px 30px;
	}
	
	.slide-button {
		height: 12px;
		width: 12px;
	}

	.split-container {
		flex-wrap: wrap;
		padding-left: 0px;
		padding-right: 0px;
	}

	.split-container.reverse {
		flex-wrap: wrap-reverse
	}
	
	.split-container &gt; * {
		height: auto;
		width: 100%;
	}
	
	.split-container .img-split {
		float: none;	
	}

	.split-content {
		padding: 0px;
	}

	.split-image {
		padding-left: 0px;
		padding-right: 0px;
	}

	.subsection {
		margin-bottom: 30px;
		margin-top: 30px;
	}

	.subsection.full {
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.tile-popup-container {
		flex: 0 0 100%;
	}
	
	.tile-popup-wrapper {
		margin-top: 0px;
		padding: 30px 0px;
	}

	.video-tile {
		width: 80%;
	}

}

@media only screen and (min-width: 701px) and (max-width: 1200px) and (orientation: portrait), screen and (min-width: 501px) and (max-width: 1200px) and (orientation: landscape) {
	
	.tile-overlay {
		flex: 0 0 50%;
		padding-top: 37.5%;
	}
	
}

@media only screen and (max-width: 700px) and (orientation: portrait), screen and (max-width: 500px) and (orientation: landscape) {
	
	.tile-overlay {
		flex: 0 0 100%;
		padding-top: 75%;
	}
	
}

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

	.post-container.video {
		min-width: 80%;
	}

}</pre></body></html>