@charset "utf-8";
/* CSS Document */

:root {
	--primary-color: #aa1e26;
	--secondary-color: #11bb11;
	--tertiary-color: #b2395d;
	--font-color: #333;
	--primary-font: "Poppins", Arial, sans-serif;
}

*:before, *:after {
	box-sizing: border-box;
}

body, button, html, input, select, textarea {
	color: var(--font-color);
	font-family: var(--primary-font);
}

@media screen and (min-height: 501px) and (orientation:landscape)  {
  body, button, html, input, select, textarea {
      font-size: calc(1vh + 14px);
  }
}

@media screen and (min-width: 501px) and (orientation:portrait) {
	body, button, html, input, select, textarea {
    	font-size: calc(1vw + 14px);
    }
}

@media screen and (max-width: 500px), (max-height: 500px) {
	body, button, html, input, select, textarea {
    	font-size: 15px;
    }
}

#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%);
	}
}

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 {
    display: none;
    padding: 20px 0px;
}

.accordian-section-header {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 85%;
	justify-content: space-between;
	padding: 20px 0px;
}

.accordian-section-header > *: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-txt {
	font-weight: 500;
    text-transform: uppercase;
}

.accordian-section-wrapper {
	border-bottom: solid 1px #e6e6e6;
	width: 100%;
}

/*.accordian-section-wrapper:first-child {
	border-top: solid 1px #e6e6e6;
}*/

.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;
}

.action-btn {
	align-items: center;
	background-color: var(--secondary-color);
	/*background-image: radial-gradient(circle at 67% 33%, #b03245, #5c1a24);*/
	border: none;
	border-radius: 50%;
	/*box-shadow: 0px 0px 5px 0px rgba(0,0,0,.2);*/
	color: white;
	cursor: pointer;
	display: flex;
	height: 60px;
	justify-content: center;
	margin: 0px 0px 0px auto;
	width: 60px;
}

.action-btn:hover {
	filter: brightness(1.15);
}

.action-btn-wrapper {
	bottom: 40px;
	margin: 0px 40px 40px auto;
	position: sticky;
	position: -webkit-sticky;
	position: -moz-sticky;
	position: -o-sticky;
	width: fit-content;
	z-index: 1;
}

.audio-tile {
	cursor: pointer;
	flex-shrink: 0;
	height: 340px;
	overflow: hidden;
	position: relative;
	width: 340px;
}

.audio-tile-bottom {
	background-color: var(--primary-color);
	color: #fff;
	padding: 15px;
}

.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: #89984f;
	display: flex;
	height: 50%;
	justify-content: center;
	width: 100%;
}

.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.small {
    font-size: 85%;
    padding: 10px 20px;
    min-width: 0px;
    width: auto;
}

.btn > *:first-child {
	margin-right: 5px;
}

.checkbox-label {
	align-items: center;
	display: flex;
	gap: 10px;
	/*grid-template-columns: 1em auto;*/
}

.checkbox-label + .checkbox-label {
	margin-top: 15px;
}

.checkbox {
	appearance: none;
	-webkit-appearance: none;
	background-color: #fff;
	border: solid 1px #aaa;
	border-radius: 50%;
	color: #333;
	display: grid;
	height: 24px;
	margin: 0;
	padding: 12px;
	place-content: center;
	/*transform: translateY(7px);*/
	width: 24px;
}

.checkbox::before {
	background-color: #ddd;
	border-radius: 50%;
	box-shadow: inset 1em 1em var(--primary-color);
	content: "";
	height: 16px;
	transform: scale(0);
	transition: 120ms transform ease-in-out;
	width: 16px;
}

.checkbox:checked {
	border: solid 1px var(--primary-color);
}

.checkbox:checked::before {
	transform: scale(1);
}

.checkbox:focus {
	box-shadow: none;
	outline: none;
}

.comment-container {
	display: none;
	margin-bottom: 10px;
}

.comment-container.active {
	display: block;
}

.comment-container .popup-contents {
	padding: 20px;
}

.comment-container .popup-window {
	margin: 0px;
	width: 400px;
}

.content-flex-dynamic {
	flex: 1;
	max-width: 25%;
	min-width: 320px;
}

.content-flex-three {
	text-align: center;
	width: 33.33%;
}

.content-flex-two {
	height: 100%;
	width: calc(50% - 10px);
}

.content-flex-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
	margin-top: 40px;
}

.content-tile-img {
	font-size: 250% !important;
}

.content-tile-img:not(.material-symbols-outlined) {
	height: 120px;
}

.content-tile-link {
	color: var(--primary-color);
	cursor: pointer;
	font-size: 90%;
	font-weight: bold;
	margin-top: 10px;
	text-align: left;
	text-decoration: underline;
	text-shadow: 1px 1px rgb(0 0 0 / 80%);
	width: fit-content;
}

.content-tile-link.primary {
	color: var(--primary-color);
}

.content-tile-link.noshadow {
	text-shadow: none;
}

.content-tile-link:hover {
	filter: brightness(1.15);
}

.content-tile-text {
	color: #777;
	font-size: 90%;
	line-height: 1.5;
	margin-top: 20px;
	text-align: left;
}

.content-tile-title {
	font-size: 125%;
	margin-top: 10px;
	text-transform: uppercase;
}

.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.gap {
	gap: 20px;
}

.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-column-wrapper {
	flex-grow: 1;
	vertical-align: top;
}

.footer-column-wrapper:first-child {
	text-align: right;
}

.footer-column-wrapper:last-child {
	text-align: left;
}

.footer-columns-nowrap, .footer-columns-wrap {
	display: flex;
	gap: 40px;
	justify-content: center;
}

.footer-columns-nowrap {
	flex-wrap: nowrap;
}

.footer-columns-wrap {
	align-content: center;
	flex-wrap: wrap;
}

.footer-icon-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	justify-content: center;
}

.footer-img {
	height: 120px;
}

.footer-title {
	color: #fff;
	font-size: 110%;
	font-weight: bold;
	padding-bottom: 5px;
}

.footer-txt {
	color: #bbb;
	padding: 5px 0px;
	text-decoration: none;
}

.footer-txt a {
	color: #d2d2d2;
	text-decoration: underline;
}

.footer-txt a:hover {
	color: #fff;
}

.footer-wrapper {
	background-color: #33383a;
	font-size: 75%;
	padding: 40px;
}

.form li {
	list-style-type: none;
}

.form-input-wrapper {
	flex-wrap: nowrap;
}

.form-input-wrapper > *:not(:first-child) {
	margin-left: 10px;
}

.form-label {
	flex-shrink: 0;
	width: 125px;
}

.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-link {
	color: var(--primary-color);
	font-size: 80%;
	text-decoration: underline;
}

.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;
	box-shadow: 1px 0px 7px rgba(50,50,50,0.3);
	display: flex;
	flex-wrap: nowrap;
	height: 100px;
	justify-content: space-between;
	overflow: hidden;
	padding: 0px 20px;
	width: 100%;
	z-index: 4;
}

.header-logo {
	cursor: pointer;
	height: 80px;
	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 {
	font-family: Lobster, Arial;
	font-size: 23px;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}

#header-wrapper {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
    width: 100%;
	z-index: 3;
}

html {
	scroll-padding-top: 100px;
}

.hover-section {
	overflow: hidden;
	padding: 100px 0px;
	position: relative;
}

.hover-section-content {
	position: relative;
}

.hover-section-img {
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transform: scale(1.2);
	transition: 0.7s ease-in-out;
	width: 100%;
}

.hover-section-img.active {
	opacity: 1;
	transform: scale(1);
}

.hover-section-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;
}

.hover-section-item:hover .hover-section-item-bgrnd {
	transform: translateX(0) scaleX(1.1) skewX(9deg);
}

.hover-section-item:hover .hover-section-item-subtitle {
	display: block;
}

.hover-section-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;
}

.hover-section-item-title {
	font-size: 180%;
	text-transform: uppercase;
}

.hover-section-item-subtitle {
	display: none;
	font-size: 90%;
	text-transform: uppercase;
}

img.round {
	border-radius: 50%;
}

.img-bgrnd-medium {
	height: 600px;
	max-height: 100vh;
}

.img-bgrnd-three-fourths {
	height: 75vh;
	min-height: 400px;
}

.img-large {
	aspect-ratio: 1 / 1;
	height: 200px;
	object-fit: cover;
}

.img-medium {
	height: 50px;
	padding: 5px;
}

.img-slide {
	height: calc(100vh - 100px);
}

.img-wrap-img {
	float: left;
	margin-right: 30px;
	max-width: 350px;
	width: 50%;
}

.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;
}

li {
	line-height: 1.5;
}

.link {
	color: #06c;
	cursor: pointer;
	font-weight: bold;
	text-decoration: underline;
	text-transform: uppercase;
}

.link:hover {
	filter: brightness(1.15);
}

.max-width {
	max-width: 1200px;
}

.media {
	margin: 30px auto auto auto;
	max-width: 1200px;
}

.menu .menu-item-wrapper:hover, .menu .menu-sub-item-wrapper:hover {
	color: var(--primary-color);
}

.menu-bar {
	background-color: var(--font-color);
}

.menu-bottom-bar {
	background-color: var(--font-color);
	height: 3px;
	margin-top: 3px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	width: 30px;
}

.menu.full-right-slide {
    background-color: #fff;
	padding-top: 100px;
}

.menu-item-wrapper.phone {
	display: none !important;
	justify-content: flex-start !important;
}

.menu-item-wrapper.phone > *:not(:first-child) {
	padding-left: 10px !important;
}

.menu-sub-wrapper {
	display: none;
}

.menu-sub-wrapper.active {
	display: block;
}

.menu-txt {
	font-size: 18px;
	font-weight: 500;
	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;
	padding: 5%;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 4;
}

.modal-wrapper.side {
	height: 100vh;
	overflow: hidden;
	padding: 0px;
}

.modal-wrapper.side .popup-contents {
	flex: 1;
	overflow-y: auto;
}

.modal-wrapper.side .popup-flex-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}

.modal-wrapper.side .popup-footer {
	border-top: solid 1px #d2d2d2;
}

.modal-wrapper.side .popup-header {
	border-radius: 0px;
}

.modal-wrapper.side .popup-window {
	border-radius: 0px;
	display: none;
	height: 100%;
	margin: 0px;
	position: absolute;
	right: 0;
}

.overlay {
	background-color: rgba(0,0,0,0.3);
	display: flex;
	height: 100%;
	left: 0;
	padding: 40px;
	position: absolute;
	top: 0;
	width: 100%;
}

.overlay > .para {
	flex: 1;
	font-size: 110%;
	text-align: center;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

p {
	margin: 0px;
}

.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: left;
}

.para a {
	color: #06c;
	text-decoration: underline;
}

.path-answers {
	margin: 20px 0px;
	width: 100%;
}

.path-answers .btn {
	font-size: 90%;
	min-width: 160px;
	padding: 12px 20px;
}

.path-container {
	margin: auto;
	max-width: 1000px;
}

.path-question {
	font-size: 150%;
	text-align: center;
	width: 100%;
}

.phone-flex-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	margin: 0px 25px;
}

.phone-flex-wrapper > * {
	margin: 7px;
	text-align: center;
}

.phone-img {
	filter: invert(1);
	height: 25px;
}

.phone-text {
	color: #fff;
	white-space: nowrap;
}

.popup-close {
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 10px;
	transition: 0.25s;
}

.popup-close:hover {
	filter: invert(0.4);
}

.popup-close-wrapper {
	position: relative;
}

.popup-contents {
	overflow-y: auto;
	padding: 50px;
}

.popup-contents-container {
	align-items: flex-start;
	display: flex;
	flex-wrap: nowrap;
	max-height: 85vh;
	overflow: auto;
}

.popup-contents-container:hover::-webkit-scrollbar-thumb {
    background-color: #ddd;
}

.popup-contents-container::-webkit-scrollbar {
    width: 14px;
}

.popup-contents-container::-webkit-scrollbar-track {
    border-radius: 10px;
}

.popup-contents-container::-webkit-scrollbar-thumb {
    background-clip: content-box;
    border: 4px solid transparent;
    border-radius: 10px;
}

.popup-contents-container > * {
	flex: 0 1 auto;
	padding: 2%;
	width: 60%;
}

.popup-contents-first {
	max-width: 400px;
	width: 60%;
}

.popup-img {
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    height: 0;
    padding-bottom: 100%;
    width: 100%;
}

.popup-subtitle {
	color: var(--primary-color);
	font-size: 95%;
	text-align: left;
	text-transform: uppercase;
}

.popup-text {
	color: #333;
	font-size: 80%;
	line-height: 1.5;
	text-align: justify;
}

.popup-title {
	font-size: 120%;
	text-align: left;
}

.popup-title + .popup-text, .popup-subtitle + .popup-text {
	margin-top: 20px;
}

.popup-window {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .3);
	margin: auto;
	max-width: 1200px;
	position: relative;
}

/*.popup-window, .popup-window button, .popup-window input, .popup-window select, .popup-window textarea {
	font-size: 16px;
}*/

.popup-window.medium {
	max-width: 700px;
	min-width: 300px;
	width: 67%;
}

.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;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 100;
}

.post-actions {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 40px;
	justify-content: center;
	margin-top: 40px;
}

.post-author {
	font-size: 90%;
	font-style: italic;
	font-weight: bold;
	margin-top: 5px;
}

.post-container {
	height: 100%;
	max-width: 550px;
	width: 100%;
}

.post-contents {
	font-size: 95%;
	line-height: 1.5;
	margin-top: 40px;
}

.post-contents a {
	color: var(--primary-color);
	text-decoration: underline;
}

.post-date {
	color: #aaa;
	font-size: 80%;
	margin-top: 5px;
}

.post-img {
	width: 100%;
}

.post-img-bgrnd {
	height: 0px;
	padding-bottom: 56.25%;
	position: relative;
	width: 100%;
}

.post-img-bgrnd.popup {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.post-img-bgrnd iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.post-link {
	color: var(--tertiary-color);
	cursor: pointer;
	font-size: 80%;
	margin-top: 10px;
	text-decoration: underline;
}

.post-subtitle {
	color: var(--primary-color);
	font-size: 110%;
	font-weight: bold;
	margin-top: 5px;
}

.post-text {
	font-size: 80%;
	line-height: 1.5;
	margin-top: 10px;
}

.post-title {
	color: var(--primary-color);
	font-size: 150%;
	font-weight: bold;
}

.quote {
	color: #777;
	font-size: 90%;
	font-style: italic;
	line-height: 1.5;
	text-align: justify;
}

.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 > * {
	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;
}

.repository-item {
	display: inline-block;
	margin: 10px;
	max-width: 500px;
	overflow: hidden;
	width: 33%;
}

.repository-item.full {
	max-width: 100%;
	width: 100%;
}

.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);
}

.schedule-tbl {
	border-collapse: collapse;
	margin: 20px auto 0px auto;
	max-width: 600px;
	text-align: left;
	width: 100%;
}

.schedule-tbl td, .schedule-tbl td:last-child {
	border-top: solid 1px #e6e6e6;
	line-height: 1.5;
	padding: 20px 5px;
}

.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-container {
	padding: 30px 0px;
}

.section-line {
	border-top: solid 1px #d2d2d2;
	margin: 0px 40px;
}

.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%;
}

.split-container {
	min-height: 400px;
	width: 100%;
}

.split-container > * {
	height: 100%;
	overflow: auto;
	padding: 40px;
	position: relative;
	width: 50%;
}

.split-container > a {
	position: absolute;
}

.split-container .para {
	color: #888;
}

.split-container.left .img-split {
	float: right;
}

.split-container.right .img-split {
	float: left;
}

.split-container-title {
	color: #444;
	font-weight: bold;
	font-size: 105%;
	text-align: center;
}

.split-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.status-message-container {
	margin-top: 20px;
	max-width: 300px;
	position: fixed;
	right: 20px;
	z-index: 99;
}

.status-message {
	border-radius: 8px;
	color: #fff;
	display: none;
	font-size: 12px;
	margin: 5px 0px;
	padding: 5px 8px;
}

.status-message i {
	margin-right: 5px;
}

.status-message.error {
	background-color: #bb0000;
}

.status-message.success {
	background-color: #11bb11;
}

.sub-header-bar {
	background-color: #F6A622;
	padding: 8px;
	text-align: center;
}

.sub-title {
	font-size: 135%;
}

.success-msg {
	background-color: #00cc00;
	border: solid 3px #00aa00;
}

#testimonial-section > .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-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 {
	align-self: stretch;
	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: flex-start;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 30px;
}

.title {
	font-size: 170%;
	text-align: center;
}

.title + .para, .sub-title + .para {
	margin-top: 30px;
}

.vertical-flex-container {
	align-items: center;
	background-color: #f6f6f6;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.vertical-flex-container > div {
	flex: 1;
}

.video-container {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.video-container iframe {
	height: 100%;
	width: 100%;
}

.video-tile {
	padding-top: 25%;
	position: relative;
}

.video-tile-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

@media screen and (max-width: 1300px) {

	.video-tile {
		padding-top: 25%;
		width: 33%;
	}
	
}

@media screen and (max-width: 900px) {

	.video-tile {
		padding-top: 33%;
		width: 50%;
	}
	
}

@media (min-width: 1217px) and (max-width: 1600px) {
	
	.content-flex-dynamic {
		max-width: 33.33%;
	}
	
}


@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) {
	
	.action-btn {
		height: 50px;
		padding: 10px;
		width: 50px;
	}
	
	.action-btn.add {
		font-size: 14px;
	}
	
	.action-btn-container {
		padding: 0px 2px;
	}

	.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-direction: column;
	}
	
	.content-tile-img {
		height: 50px;
		width: 50px;
	}
	
	.footer-column-wrapper {
		text-align: center !important;
		width: 100%;
	}
	
	.footer-column-wrapper .flex-wrapper {
		justify-content: center;
	}
	
	.footer-columns-nowrap {
		flex-direction: column;
	}
	
	.footer-img {
		height: 100px;
	}
	
	.footer-txt {
		padding: 3px 0px;
	}
	
	.footer-wrapper {
		display: block;
		padding: 20px;
	}

	.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: 0px 10px;
	}
	
	#header-bar, #header-bar-bgrnd {
		height: 64px;
	}
	
	.header-logo {
		max-height: 50px;
	}
	
	.header-text {
		font-size: 16px;
	}

	.hover-section-item {
		padding: 20px 30px;
	}
	
	.img-bgrnd-medium {
		height: 400px;
	}
	
	.img-bgrnd-medium .content-flex-two:last-of-type {
		display: none;
	}
	
	.img-slide {
		height: calc(100vh - 64px);
	}
	
	.img-split {
		min-height: 200px;
	}
	
	.img-wrap-img {
		margin-bottom: 20px;
		width: 100%;
	}
	
	.index-img-logo {
		max-width: 500px;
		width: 90%;
	}
	
	.index-img-subtitle {
		font-size: 150%;
	}
	
	.menu.active {
		width: 100%;
	}

	.menu-txt {
		font-size: 14px;
	}
	
	.menu.full-right-slide {
		padding-top: 64px;
	}
	
	.phone-flex-wrapper {
		/*display: none;*/
		margin: 0px 15px;
	}
	
	.phone-flex-wrapper > * {
		margin: 4px;
	}
	
	.phone-img {
		height: 15px;
	}
	
	.popup-contents-container {
		flex-wrap: wrap;
	}
	
	.popup-img {
		margin-left: auto;
		margin-right: auto;
	}

	.post-content {
		margin-top: 20px;
	}
	
	.quote {
		font-size: 100%;
	}
	
	.quote-img {
		height: 140px;
		width: 140px;
	}
	
	.quote-name {
		font-size: 110%;
	}
	
	.quote-wrapper > * {
		margin: 15px;
	}
	
	.section-line {
		margin: 0px 20px;
	}
	
	.slide-button {
		height: 12px;
		width: 12px;
	}
	
	.split-container > * {
		height: auto;
		width: 100%;
	}
	
	.split-container .img-split {
		float: none;	
	}
	
	.tile-popup-container {
		flex: 0 0 100%;
	}
	
	.tile-popup-wrapper {
		margin-top: 0px;
		padding: 30px 0px;
	}

}

@media only screen and (max-width: 500px) {
	
	.video-tile {
		padding-top: 67%;
		width: 100%;
	}
	
}