@charset "utf-8";
/* CSS Document */

:root {
	--font-index: Raleway, Arial, "sans-serif";
	--font-main: Poppins, Arial, "sans-serif";
	--palette-color1: #0002FE;
	--palette-color2: #808082;
	--palette-color3: #000000;
}

@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;
    }
}

h1, h2 {
	margin: 0px;
}

#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;
}

.bgrnd-blue, .bgrnd-blue.flex-content::before {
	background-color: #004477;
}

.bgrnd-green, .bgrnd-green.flex-content::before {
	background-color: #d3de58;
}

.bgrnd-orange, .bgrnd-orange.flex-content::before {
	background-color: #ed6110;
}

.bgrnd-purple, .bgrnd-purple.flex-content::before {
	background-color: var(--palette-color2);
}

.bgrnd-yellow, .bgrnd-yellow.flex-content::before {
	background-color: #fdc257;
}

body, button, html, input, select, textarea {
	color: #000;
	font-family: var(--font-main);
}

.bold {
	font-weight: bold;
}

.btn {
	align-items: center;
	background-color: var(--palette-color1);
	border: none;
	border-radius: 50px;
	color: #fff;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	-webkit-transition: background-color 500ms ease;
    -ms-transition: background-color 500ms ease;
	transition: background-color 500ms ease;
}

.btn:hover:not([disabled]) {
	background-color: #001199;
}

.btn.light {
	background-color: rgba(0,0,0,0.2);
	border: solid 2px #fff;
}

.btn.small {
	font-size: 80%;
	padding: 10px 15px;
	min-width: 0px; 
}

.conditions {
	color: #a4a4a4;
	font-size: 85%;
}

.content-flex-dynamic {
	flex: 1;
	max-width: 25%;
	min-width: 320px;
	transition: ease 0.5s;
}

.content-flex-dynamic.zoom:hover {
	cursor: pointer;
	transform: scale(1.05);
}

.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 10px;
	justify-content: space-evenly;
	margin-top: 10px;
}

.content-flex-wrapper > div {
	padding: 20px;
}

.content-tile-img {
	/*border: solid 3px #fff;*/
	box-shadow: 0 0 6px 1px #000;
	height: 150px;
}

.content-tile-img.no-shadow {
	box-shadow: none;
}

.content-tile-img.round {
	border-radius: 50%;
}

.content-tile-link {
	color: var(--palette-color2);
	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(--palette-color2);
}

.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;
}

div.max-width {
	margin: auto;
	max-width: 1200px;
}

div.max-width.long {
	max-width: 1400px;
}

div.max-width.short {
	max-width: 800px;
}

.error-msg, .success-msg {
	border-radius: 10px;
	color: #fff;
	margin-bottom: 20px;
	padding: 10px 20px;
	text-align: center;
}

.fc .fc-event:hover {
	cursor: pointer;
	filter: brightness(1.10);
}

.fc .fc-button-primary {
	background-color: var(--palette-color2);
}

.fc .fc-button-primary:hover:not(:disabled) {
	background-color: var(--palette-color2);
	filter: brightness(1.15);
}

.fc .fc-button-primary:not(:disabled).fc-button-active, .fc .fc-button-primary:not(:disabled):active {
	background-color: var(--palette-color2);
	filter: brightness(1.3); 
}

.fc .fc-timegrid-axis-cushion {
	max-width: none;
}

.fc .fc-toolbar {
	text-align: center;
}

.fc .fc-toolbar-title {
	font-size: 140%;
	margin-bottom: 5px;
	text-align: center;
}

.fc th {
	background-color: #f2f2f2;
}

.fc-button-primary, .fc-button-active {
	border-color: #fff !important;
}

.fc-timegrid-slot {
	height: 1em !important;
}

.fc-day-today {
	background-color:inherit !important;
}

.flex-banner {
	display: flex;
	overflow: hidden;
	position: relative;
}

.flex-content {
	align-items: center;
	display: flex;
	flex-basis: 40%;
	flex-wrap: wrap;
	padding: 30px;
	z-index: 1;
}

.flex-content::before {
	content: '';
	left: 50%;
	position: absolute;
	-webkit-transform: skew(-18deg);
	transform: skew(-18deg);
	width: 290px;
	z-index: -1;
}

.flex-image {
	flex-basis: 60%;
}

.flex-logo {
	background-color: #111;
	padding: 10px;
	width: 230px !important;
}

.flex-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 5%;
}

.flex-wrapper > .flex-item {
	flex: 1;
}

.flex-wrapper.center {
	justify-content: center;
}

.flex-wrapper.no-gap {
	gap: 0;
}

.flex-wrapper.reverse {
	flex-direction: row-reverse;
}

.flex-wrapper.small-gap {
	gap: 5px;
}

.flex-wrapper.split > * {
	width: 50%;
}

.flex-wrapper.split > *.split-33 {
	width: 33%;
}

.flex-wrapper.split > *.split-40 {
	width: 40%;
}

.flex-wrapper.split > *.split-60 {
	width: 60%;
}

.flex-wrapper.split > *.split-67 {
	width: 67%;
}

.flex-wrapper.split img {
	border-radius: 20px;
	margin: auto;
	width: 100%;
}

.flex-wrapper.top {
	align-items: flex-start;
}

.flickity-item {
	margin: 30px;
    padding: 60px 30px;
    position: relative;
    width: 30%;
}

.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: var(--palette-color3);
	font-size: 75%;
	padding: 10px;
	text-align: center;
	width: 100%;
}

.footer-column-wrapper {
	flex-grow: 1;
	padding: 0px 15px;
	vertical-align: top;
}

.footer-column-wrapper:first-child {
	text-align: center;
}

.footer-column-wrapper:last-child {
	text-align: left;
}

.footer-columns-nowrap, .footer-columns-wrap {
	display: flex;
	justify-content: center;
}

.footer-columns-nowrap {
	flex-wrap: nowrap;
}

.footer-columns-wrap {
	align-content: center;
	flex-wrap: wrap;
}

.footer-icon-wrapper > * {
	margin: 0px 10px;
}

.footer-img {
	height: 150px;
}

.footer-title {
	color: #fff;
	font-size: 120%;
	font-weight: bold;
	margin-top: 5px;
	padding: 8px 10px;
}

.footer-txt {
	color: #fff;
	padding: 5px 10px;
	text-decoration: none;
}

.footer-txt a {
	color: #f2f2f2;
	text-decoration: underline;
}

.footer-txt a:hover {
	color: #fff;
}

.footer-wrapper {
	background-color: var(--palette-color3);
	font-size: 85%;
	padding: 40px 40px 10px 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: 220px;
}

.grid {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
	justify-content: center;
	margin: 40px auto;
	/*max-width: 1200px;*/
}

.grid-box {
	flex: 1;
	max-width: 340px;
	min-width: 280px;
}

.grid-box.partners {
	align-items: center;
	display: flex;
	flex: 0;
}

.grid-circle {
	align-items: center;
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 200%;
	height: 250px;
	justify-content: center;
	margin: auto;
	width: 250px;
}

.grid-icon {
	font-size: 250% !important;
	text-align: center;
	width: 100%;
}

.grid-img {
	border-radius: 50%;
	width: 100%;
}

.grid-logo {
	height: auto;
	width: 250px;
}

.grid-number {
	color: var(--palette-color2);
	font-family: var(--font-index);
	font-size: 250%;
	font-weight: bold;
	text-align: center;
}

.grid-subtitle {
	font-size: 120%;
	font-weight: bold;
	text-transform: uppercase;
}

.grid-title {
	font-family: var(--font-index);
	font-size: 160%;
	font-weight: bold;
	margin-top: 30px;
}

#header-bar {
	align-items: center;
	background-image: linear-gradient(to bottom, #333, #000);
	box-shadow: 1px 0px 7px rgba(50,50,50,0.3);
	display: flex;
	flex-wrap: nowrap;
	height: 90px;
	justify-content: space-between;
	overflow: hidden;
	width: 100%;
	z-index: 4;
}

.header-bar-button-wrapper {
	text-align: right;
}

.header-buttons {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
}

.header-logo {
	cursor: pointer;
	height: 80px;
	z-index: 5;
}

.header-logo-wrapper {
	align-items: center;
	display: flex;
	cursor: pointer;
	margin-left: 20px;
}

.header-menu {
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	z-index: 4;
}

.header-text {
	/*font-family: var(--font-index);*/
	font-size: 23px;
	line-height: 1.5;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
	/*text-transform: uppercase;*/
}

#header-top-bar {
	background-color: #fff;
}

#header-wrapper {
	font-family: var(--font-index);
	position: -webkit-sticky;
	position: sticky;
	top: 0;
    width: 100%;
	z-index: 3;
}

html {
	scroll-padding-top: 100px;
}

.icon-button.add, .icon-button-wrapper {
	color: #0066cc;
}

.icon-button.delete {
	cursor: pointer;
}

.icon-button.material-symbols-outlined:not(.delete) {
	font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.icon-button-text {
	font-size: 90%;
	margin-left: 8px;
}

.icon-button-wrapper {
	align-items: center;
	cursor: pointer;
	display: flex;
	width: fit-content;
}

.icon-button-wrapper:hover, .icon-button:not(.disabled):hover {
	filter: brightness(1.25);
}

.icon-button-wrapper:hover .icon-button-text {
	text-decoration: underline;
}

.icon-verified {
	color: #05aa05;
	font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

img.border {
	border: solid 3px #fff;
}

.img-bgrnd-medium, .flex-content::before {
	height: 600px;
	max-height: 100vh;
}

.img-bgrnd-page, .img-slide, .index-img-overlay {
	height: calc(100vh - 100px);
}

.img-bgrnd-three-fourths {
	height: 75vh;
	min-height: 400px;
}

.img-medium {
	height: 50px;
	padding: 5px;
}

.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 #d2d2d2;
	border-radius: 3px;
	margin: 5px auto 5px auto;
	text-align: center;
	width: 100%;
}

.index-img-logo {
	width: 500px;
}

.index-img-overlay {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: absolute;
	top: 0;
	width: 100%;
}

.index-img-subtitle, .index-img-subtitle-large {
	color: #f2f2f2;
}

.index-img-subtitle {
	font-size: 140%;
}

.index-img-subtitle-large {
	font-size: 180%;
}

.index-img-subtitle, .index-img-title {
	font-family: var(--font-index);
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
}

.index-img-title {
	color: #fafafa;
	font-size: 225%;
	font-weight: bold;
}

.info-graphic {
	margin: 30px auto;
	max-width: 600px;
	width: 100%;
}

.info-graphic-wrapper {
	text-align: center;
}

li {
	line-height: 1.5;
}

.map {
	border-radius: 15px;
	box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.25);
	/*margin: 20px auto;*/
	width: 100%;
}

.map-container {
	max-width: 800px;
}

.map-container-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 30px;
	margin-top: 30px;
}

.map-counties {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 5px 20px;
	justify-content: center;
}

.map-county {
	align-items: center;
	color: #555;
}

.map-county > *:last-child {
	margin-left: 3px;
}

.map-county-title {
	font-weight: bold;
	margin-top: 15px;
	text-align: center;
	width: 100%;
}

.map-icon {
	color: var(--palette-color1);
}

.map-item {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
}

.map-item-title {
	font-size: 18px;
	font-weight: bold;
}

.map-items-wrapper {
	align-items: flex-start;
	display: flex;
	flex-grow: 1;
	flex-wrap: wrap;
	gap: 30px;
	width: 100%;
}

.map-items-wrapper > * {
	min-width: 150px;
}

.map-subtitle {
	color: var(--palette-color1);
	font-family: Lobster;
	font-size: 20px;
}

.map-text {
	color: #333;
	font-size: 16px;
}

.media {
	margin: 30px auto auto auto;
	max-width: 1200px;
}

.menu .menu-item-wrapper, .menu .menu-sub-item-wrapper {
	background-color: transparent;
	color: #fff;
	font-weight: bold;
	-webkit-transition: background-color 500ms ease;
    -ms-transition: background-color 500ms ease;
	transition: background-color 500ms ease;
}

.menu .menu-item-wrapper:hover, .menu .menu-sub-item-wrapper:hover {
	background-color: var(--palette-color1);
}

.menu-bar {
	background-color: #fff;
}

/*.menu-bar {
	background-color: var(--palette-color5);
}*/

.menu-bar.active {
	background-color: #fff;
}

.menu.full-right-slide {
	background-color: var(--palette-color3);
	padding-top: 100px;
}

.menu.full-right-slide.active {
	width: 375px;
}

.menu-item-wrapper.phone {
	display: none;
	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 {
	color: #fff;
}

.metric-img {
	border-radius: 50%;
	width: 100%;
}

.metric-number {
	color: var(--palette-color2);
	font-family: var(--font-index);
	font-size: 250%;
	font-weight: bold;
}

.metric-text {
	color: var(--palette-color5);
	font-size: 135%;
	font-weight: bold;
}

.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;
}

.more-margin-bottom {
	margin-bottom: 40px !important;
}

.no-side-padding {
	padding-left: 0px;
	padding-right: 0px;
}

.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: #00539f;
	text-decoration: underline;
}

.para.small {
	font-size: 90%;
}

.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: 20px;
}

.popup-contents::-webkit-scrollbar {
	width: 12px;
}

.popup-contents::-webkit-scrollbar-track {
	border-radius: 10px;
}

.popup-contents::-webkit-scrollbar-thumb {
	background-clip: content-box;
	background-color: #000;
	/*border: 4px solid 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);
}

.popup-contents-container {
	align-items: top;
	display: flex;
	flex-wrap: nowrap;
	max-height: 90vh;
	overflow: auto;
	padding: 30px 15px;
}

.popup-contents-container > * {
	flex: 0 1 auto;
	padding: 10px;
	width: 100%;
}

.popup-img {
	height: 200px;
	width: 200px;
}

.popup-subtitle {
	color: #777;
	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: 2px 2px 8px 1px rgba(0, 0, 0, .6);
	position: relative;
}

.popup-window.flexible {
	margin: auto;
	max-width: 90%;
	width: fit-content;
}

.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-contents {
	font-size: 95%;
	line-height: 1.5;
	margin-top: 40px;
}

.post-contents a {
	color: var(--palette-color5);
	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%;
	width: 100%;
}

.post-img-bgrnd.popup {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.post-link {
	color: var(--palette-color5);
	cursor: pointer;
	font-size: 80%;
	margin-top: 10px;
	text-decoration: underline;
}

.post-subtitle {
	color: var(--palette-color4);
	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(--palette-color2);
	font-size: 150%;
	font-weight: bold;
}

.quote {
	color: var(--palette-color4);
	font-family: "Indie Flower", arial;
	font-size: 150%;
	text-align: center;
}

.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;
}

.rate-table {
	border-collapse: collapse;
	border-radius: 12px;
	margin: auto;
	overflow: hidden;
}

.rate-table thead tr {
	background-color: #ddd;
}

.rate-table tbody tr:nth-child(odd) {
	background-color: #fff;
}

.rate-table tbody tr:nth-child(even) {
	background-color: #f2f2f2;
}

.rate-table th:not(:last-child), .rate-table td:not(:last-child) {
	border-right: solid 1px #fff;
}

.rate-table td.number {
	text-align: right;
}

.rate-table th, .rate-table td {
	padding: 10px 15px;
}

.read-more-link {
	color: var(--palette-color5);
	cursor: pointer;
	font-size: 90%;
	font-weight: bold;
	text-align: center;
	text-decoration: underline;
}

.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);
}

.section-bgrnd.dark {
	background-color: #333;
}

.section-bgrnd.light-grey {
	background-color: #f7f7f7;
}

.section-bgrnd.grey {
	background-color: #838383;
}

.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-tile {
	background-color: #eee;
	box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.15);
}

.split-tile-content {
	padding: 20px;
}

.split-tile-img {
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 67%;
	width: 100%;
}

.split-tile-text {
	font-size: 85%;
	line-height: 1.5;
}

.split-tile-title {
	color: var(--palette-color5);
	font-weight: bold;
	margin-bottom: 20px;
}

.split-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.sub-header-bar {
	background-color: var(--palette-color1);
	color: #fff;
	padding: 8px;
	text-align: center;
}

.sub-section {
	margin: 30px 0px;
}

.sub-tbl {
	border: solid 2px #e6e6e6;
	border-collapse: collapse;
	margin-bottom: 15px;
	margin-top: 15px;
	width: 100%;
}

.sub-tbl .icon-button {
	margin: 2px;
}

.sub-tbl tfoot td, .sub-tbl thead th  {
	font-size: 90%;
	font-weight: bold;
	padding: 5px 5px;
	text-align: left;
}

.sub-tbl tfoot td {
	background-color: #e2e2e2;
}

.sub-tbl thead th {
	background-color: #eee;
}

.sub-tbl tr {
	background-color: #fff;
}

.sub-tbl tbody td {
	border-top: solid 1px #e6e6e6;
}

.sub-tbl tbody tr:first-child .icon-button.delete.required {
	display: none;
}

.sub-tbl th.hide, .sub-tbl td.hide, .tbl th.hide, .tbl td.hide {
	display: none;
}

.sub-tbl-input, .sub-tbl-select {
	border: none;
	border-radius: 0px;
	font-size: 90%;
	margin: 0px;
	width: 100%;
}

.sub-tbl-input {
	padding: 12px 5px;
}

.sub-tbl-select {
	padding: 12px 30px 12px 5px;
}

.sub-tbl-wrapper {
	margin-left: 0px !important;
	overflow-x: auto;
	width: 100%;
}

.sub-title {
	color: var(--palette-color5);
	font-size: 135%;
	font-weight: bold;
	margin: 0px;
}

.success-msg {
	background-color: var(--palette-color1);
	border: solid 3px var(--palette-color3);
}

#testimonial-section > .section-bgrnd:nth-child(even) {
	background-color: #00539f;
	color: #fff;
}

.text-grey {
	color: #888 !important;
}

.text-light {
	color: #fff !important;
}

.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(--palette-color5);
	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 {
	color: var(--palette-color3);
	font-size: 170%;
	font-weight: bold;
	margin: 0px;
	text-align: center;
	/*text-transform: uppercase;*/
}

.title + .para, .sub-title + .para {
	margin-top: 30px;
}

.ui-state-highlight {
	background-color: #99bbff !important;
	border: solid 1px #55aaff !important;
	color: #fff !important;
}

ul {
	list-style: circle;
}

ul.arrow, ul.check {
	list-style: none;
	text-indent: -48px;
}

ul.arrow li:before {
	content: '\f5d2';
	font-family: 'Material Symbols Outlined';
	margin-left: 20px;
    padding-right: 8px;
}

ul.check li:before {
	content: '\e86c';
	font-family: 'Material Symbols Outlined';
	margin-left: 20px;
    padding-right: 8px;
}

ul.none {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.uppercase {
	text-transform: uppercase;
}

.vertical-flex-container {
	align-items: center;
	background-color: #f6f6f6;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.vertical-flex-container > div {
	flex: 1;
}

@media (min-width: 1217px) and (max-width: 1600px) {
	
	.content-flex-dynamic {
		max-width: 33.33%;
	}
	
}

@media screen and (max-width: 1100px) {
	
	.map-container-wrapper {
		flex-wrap: wrap;
		justify-content: center;
	}

}


@media screen and (max-width: 935px) {
	
	.floating-tile-container.two {
		flex: 0 0 100%;
		padding: 0px;
	}
	
	.floating-tile-section ul {
		column-count: 1;
	}
	
}

@media (min-width: 801px) and (max-width: 1216px) {
	
	.content-flex-dynamic {
		max-width: 50%;
	}
	
}

@media (max-width: 800px) {
	
	.content-flex-dynamic {
		max-width: 100%;
	}

	.menu-item-wrapper.phone {
		display: flex;
	}

	.phone-flex-wrapper {
		display: none;
	}
	
	.phone-flex-wrapper > * {
		margin: 4px;
	}
	
	.phone-img {
		height: 15px;
	}
	
}

@media screen and (max-width: 920px) and (max-height: 540px), screen and (max-height: 920px) and (max-width: 540px), screen and (max-width: 540px) {
	
	.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: 100px;
	}
	
	.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;
	}
	
	.form-label {
		width: 100px;
	}
	
	#header-bar {
		background-size: 30px;
		height: 80px;
	}
	
	.header-logo {
		max-height: 66px;
	}

	.header-logo-wrapper {
		margin-left: 10px;
	}

	.header-text {
		font-size: 16px;
	}
	
	.img-bgrnd-medium, .flex-content::before {
		height: 400px;
	}
	
	.img-bgrnd-medium .content-flex-two:last-of-type {
		display: none;
	}
	
	.img-bgrnd-page, .img-slide, .index-img-overlay {
		height: calc(100vh - 60px);
	}

	.img-medium {
		height: 42px;
	}
	
	.img-split {
		min-height: 200px;
	}
	
	.img-wrap-img {
		margin-bottom: 20px;
		width: 100%;
	}

	.index-img-line {
		border-bottom-width: 2px;
		width: 80%;
	}
	
	.index-img-logo {
		max-width: 500px;
		width: 90%;
	}
	
	.index-img-subtitle {
		font-size: 20px;
	}

	.index-img-title {
		font-size: 24px;
		padding: 0px 20px;
	}

	.map-container {
		padding-left: 0px;
		padding-right: 0px;
	}

	.map-subtitle {
		font-size: 15px;
	}
	
	.menu.active {
		width: 100%;
	}
	
	.menu.full-right-slide {
		padding-top: 80px;
	}
	
	.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 > * {
		margin: 15px;
	}

	.section-bgrnd {
		padding: 20px;
	}
	
	.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: 920px) {
	
	.flex-content::before {
		-webkit-transform: skew(-10deg);
		transform: skew(-10deg);
	}
	
}

@media only screen and (max-width: 700px) and (orientation: portrait), screen and (max-width: 540px) and (orientation: landscape) {
	
	.flex-wrapper.reverse {
		flex-direction: column-reverse;
	}

	.flex-wrapper.split:not(.reverse) {
		flex-direction: column;
	}
	
	.flex-wrapper.split .flex-image {
		margin: auto;
		max-width: 300px; 
	}
	
	.flex-wrapper.split > * {
		width: 100% !important;
	}
	
}

@media only screen and (max-width: 700px) and (orientation: portrait) {
	
	.flex-banner {
		flex-direction: column;
	}
	
	.flex-content::before {
		height: 120px;
		left: 0;
		top: 360px;
		-webkit-transform: rotate(-4deg);
		transform: rotate(-4deg);
		width: 190%;
	}
	
	.flex-image {
		flex-basis: unset;
		height: 400px;
	}
	
}

@media screen and (max-width: 540px) and (orientation: portrait) {

	.grid {
		flex-direction: column;
	}

	.header-buttons {
		display: none;
	}

	.header-text {
		font-size: 12px;
	}

	.index-img-subtitle {
		font-size: 15px;
	}

	.index-img-title {
		font-size: 19px;
	}

	.menu.full-right-slide.active {
		width: 100%;
	}

	.popup-window.flexible {
		max-width: 100%;
	}

}

@media screen and (max-width: 540px), (max-height: 540px) {
	
	.grid {
		gap: 40px;
	}
	
	.grid-box {
		flex: 0 0 100%;
		margin: 0px auto;
    	min-width: auto;
		max-width: 250px;
    }
	
	.grid-title {
		margin-top: 10px;
	}
	
}

/* rating stars */
.ratings {
    position: relative;
    vertical-align: middle;
    display: inline-block;
    color: #b1b1b1;
    overflow: hidden;
}

.rating-line {
	border-top: solid 2px var(--palette-color1);
	margin: 10px auto;
	text-align: center;
	width: 50px;
}

.full-stars {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    color: orange;
}

.empty-stars:before, .full-stars:before {
    content:"\2605\2605\2605\2605\2605";
    font-size: 150%;
}

.empty-stars:before {
    -webkit-text-stroke: 1px #848484;
}

.full-stars:before {
    -webkit-text-stroke: 1px orange;
}

/* Webkit-text-stroke is not supported on firefox or IE */

/* Firefox */
 @-moz-document url-prefix() {
    .full-stars {
        color: #ECBE24;
    }
}