@charset "utf-8";
/* CSS Document */

:root {
	--primary-color: #248e29;
	--secondary-color: #fdc701;
	--font-color: #555;
	--primary-font: 'Poppins', Arial, "sans-serif";
}

@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;
    }
}

.action-btn {
	align-items: center;
	background-color: #8A2736;
	/*background-image: radial-gradient(circle at 33% 33%, #b03245, #5c1a24);*/
	border: #fff solid 2px;
	border-radius: 50%;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,.2);
	color: white;
	cursor: pointer;
	display: flex;
	font-family: arial;
	font-size: 16px;
	font-weight: bold;
	height: 60px;
	justify-content: center;
	margin: 0px;
	width: 60px;
}

.action-btn:hover {
	filter: brightness(1.15);
}

.action-btn-container {
	padding: 0px;
	transition: 0.7s;
}

.action-btn-container:not(:first-of-type) {
	padding-left: 5px;
}

.action-btn-container:not(:last-of-type) {
	padding-right: 5px;
}

.action-btn-img {
	height: 40px;
	width: 40px;
}

.action-btn-notification {
	background-color: #dd0000;
	border: solid 1px #fff;
	border-radius: 50px;
	color: #fff;
	cursor: pointer;
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: bold;
	height: 20px;
	position: absolute;
	right: -3px;
	text-align: center;
	top: -3px;
	width: 20px;
	z-index: 1;
}

.action-btn-wrapper {
	align-items: center;
	bottom: 15px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	margin: 0px auto 10px 10px;
	position: sticky;
	position: -webkit-sticky;
	position: -moz-sticky;
	position: -o-sticky;
	width: fit-content;
	z-index: 0;
}

#alert-bar {
	background-color: #1a6753;
	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%);
	}
}

.align-center {
	text-align: center !important;
}

body, button, html, input, select, textarea {
	color: var(--font-color);
	font-family: var(--primary-font);
}

.btn, input[type=submit] {
	background-color: var(--primary-color);
	border: none;
	border-radius: 50px;
	/*box-shadow: 1px 1px 5px rgba(0,0,0,0.7);*/
	color: #fff;
	min-width: 200px;
}

.content-flex-three {
	text-align: center;
	width: 33.33%;
}

.content-flex-two {
	height: 100%;
	text-align: center;
	width: 50%;
}

.content-flex-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}

.content-flex-wrapper > div {
	padding: 15px;
	text-align: center;
}

.content-tile-img {
	max-width: 75px;
	min-width: 50px;
	width: 15%;
}

.content-tile-link {
	color: #F6A622;
	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%);
}

.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;
	font-size: 110%;
	margin-bottom: 20px;
	padding: 10px 20px;
	text-align: center;
}

.error-msg {
	background-color: crimson;
	border: solid 3px darkred;
}

.expandOpenToMenu {
	animation-name: expandOpenToMenu;
	-webkit-animation-name: expandOpenToMenu;	

	animation-duration: 4s;	
	-webkit-animation-duration: 4s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	

	transform-origin: center;
	visibility: visible !important;	
}

@keyframes expandOpenToMenu {
	0% {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(1);
	}
	10% {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(3);
	}
	60% {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(3);
	}
	100% {
		transform: scale(1);
	}			
}

@-webkit-keyframes expandOpenToMenu {
	0% {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(1);
	}
	10% {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(3);
	}
	60% {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(3);
	}
	100% {
		transform: scale(1);
	}			
}

.fade {
  	animation-name: fade;
	animation-duration: 2s;
	-webkit-animation-name: fade;
	-webkit-animation-duration: 2s;
}

@-webkit-keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
}

@keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
}

.fc .fc-button-primary {
	background-color: var(--primary-color);
}

.fc .fc-button-primary:hover:not(:disabled) {
	background-color: var(--primary-color);
}

.fc .fc-button-primary:not(:disabled).fc-button-active, .fc .fc-button-primary:not(:disabled):active {
	background-color: var(--primary-color);
}

.flex-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
}

.flip-in {
	backface-visibility: visible;
	-webkit-backface-visibility: visible;
	opacity: 0;
	transform: perspective(300px) rotate3d(0,1,0,-90deg) translate3d(15px,0,0);
	transition: filter 1.3s, transform 1.6s, opacity 0.7s ease-in;
	will-change: filter, transform, opacity;
}

.flip-in[data-animated='1'] {
	animation-delay: .1s;
	opacity: 1;
	transform: translate3d(0,0,0) scale(1);
}

.floating-tile {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 2px 2px 8px 1px rgba(0,0,0,0.2);
	height: 100%;
	padding: 30px;
	position: relative;
}

/*.floating-tile-container:nth-child(even) .floating-tile {
	border: solid 7px #F6A622;
}

.floating-tile-container:nth-child(odd) .floating-tile {
	border: solid 7px #8A2736;
}*/

.floating-tile-container {
	flex: 0 0 100%;
	margin-bottom: 20px;
}

.floating-tile-container.two {
	flex: 0 0 50%;
}

.floating-tile-container.three {
	flex: 0 0 33%;
	max-width: 400px;
}

.floating-tile-container.two, .floating-tile-container.three {
	padding: 0px 10px;
}

.floating-tile-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	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: var(--primary-color);;
	font-size: 90%;
	font-style: italic;
	font-weight: bold;
}

.floating-tile-text {
	font-size: 90%;
}

.floating-tile-title {
	color: var(--secondary-color);
	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;
	padding: 0px 15px;
	vertical-align: top;
}

.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-img {
	height: 175px;
}

.footer-title {
	color: #fff;
	font-size: 110%;
	font-weight: bold;
	margin-top: 5px;
	padding: 8px 10px;
}

.footer-txt {
	color: #bbb;
	padding: 5px 10px;
	text-decoration: none;
}

.footer-txt a {
	color: #bbb;
	text-decoration: underline;
}

.footer-txt a:hover {
	color: #fff;
}

.footer-wrapper {
	background-color: #2c2c2c;
	font-size: 75%;
	padding: 40px;
}

#header-bar {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	height: 100px;
	justify-content: space-between;
	overflow: hidden;
	width: 100%;
	z-index: 4;
}

#header-bar.index-header-bar {
	position: fixed;
}

#header-bar:not(.index-header-bar) {
	background-color: #1a1a1a;
	box-shadow: 1px 0px 7px rgba(0,0,0.3);
}

.header-logo {
	cursor: pointer;
	max-height: 80px;
	z-index: 5;
}

.header-logo-wrapper {
	align-items: center;
	display: flex;
	cursor: pointer;
	margin-left: 20px;
}

.header-menu {
	z-index: 4;
}

.header-text {
	color: #fff;
	font-size: 23px;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}

#header-wrapper {
	box-shadow: 1px 0px 7px rgba(0,0,0.3);
	position: -webkit-sticky;
	position: sticky;
	top: 0;
    width: 100%;
	z-index: 3;
}

.home-bottom-item {
	padding: 0px 10px;
}

.home-bottom-item:first-child {
	text-align: left;
}

.home-bottom-item:last-child {
	text-align: right;
}

.home-bottom-txt a {
	text-decoration: underline;
}

.home-bottom-wrapper {
	align-items: center;
	background-color: rgba(0,0,0,.7);
	bottom: 0;
	color: #fff;
	display: flex;
	flex-wrap: nowrap;
	font-size: 80%;
	justify-content: space-between;
	padding: 10px;
	position: absolute;
	width: 100%;
}

.hours-table {
	margin: 40px auto 0px auto;
	width: 100%;
}

.hours-table a {
	color: var(--primary-color);
	text-decoration: underline;
}

.hours-table a:hover {
	color: var(--secondary-color);
}

.hours-table th, .hours-table td {
	padding: 10px;
}

.hours-table thead th:first-child, .hours-table tbody td:first-child {
	text-align: left;
}

.hours-table thead th:not(:first-child), .hours-table tbody td:not(:first-child) {
	text-align: center;
}

.hours-table tbody tr:nth-child(odd) {
	background-color: #e6e6e6;
}

.img-bgrnd-medium {
	height: 600px;
}

.img-inline {
	display: inline-block;
	max-height: 300px;
	max-width: 50%;
}

.img-medium {
	height: 50px;
	padding: 5px;
}

.img-slide {
	min-height: calc(100vh - 145px);
}

.img-wrap-img {
	float: left;
	margin-right: 30px;
	max-width: 350px;
	width: 50%;
}

.index-header-bar {
	background: linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
	background: -webkit-linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
	background: -moz-linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
}

.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 {
	color: #fff;
	font-family: 'Acme', 'Rubik';
	font-size: 155%;
	font-weight: bold;
	margin-top: 15px;
	text-shadow: 2px 2px rgba(0,0,0,0.8);
}

.index-img-title {
	color: var(--secondary-color);
	font-family: 'MedievalSharp', cursive;
	font-size: 230%;
	font-weight: bold;
	text-shadow: 2px 2px rgba(0,0,0,0.8);
	text-transform: uppercase;
}

.menu.full-right-slide {
    background-color: #1a1a1a;
	padding-top: 100px;
}

.menu.full-right-slide.active {
	width: 380px;
}

.menu-item-wrapper.phone {
	display: none !important;
	justify-content: flex-start !important;
}

.menu-item-wrapper.phone > *:not(:first-child) {
	padding-left: 10px !important;
}

.menu .menu-item-wrapper:hover, .menu .menu-sub-item-wrapper:hover {
	color: var(--secondary-color);
}

.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;
}

.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);
}

.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 {
	color: #00539f;
	text-decoration: underline;
}

.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;
	width: 25px;
}

.phone-text {
	color: #fff;
	white-space: nowrap;
}

.popup-close {
	background-color: #111;
	border: solid 2px #fff;
	border-radius: 50px;
	color: #fff;
	cursor: pointer;
	font-family: Arial, sans-serif;
	font-size: 24px;
	font-weight: bold;
	height: 30px;
	position: absolute;
	right: -15px;
	text-align: center;
	top: -16px;
	width: 30px;
}

.popup-close:hover {
	background-color: #393939;
}

.popup-close-wrapper {
	position: relative;
}

.popup-contents {
	max-height: 90vh;
	overflow-y: auto;
	padding: 12px;
}

.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: #555;
	/*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-text {
	color: #5c5c5c;
	font-size: 80%;
	line-height: 1.5;
	text-align: justify;
}

.popup-title {
	font-size: 120%;
	margin-bottom: 20px;
	text-align: left;
}

.popup-window {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, .6);
	margin: auto;
	position: relative;
	top: 50%;
	transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	width: 90%;
}

.popup-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: 100;
}

.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: #F6A622;
	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: #393939;
}

.section-bgrnd-light-grey {
	background-color: #b9b9b9;
}

.section-line {
	border: solid 0.5px #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;
}

.split-container {
	min-height: 400px;
	width: 100%;
}

.split-container > * {
	height: 100%;
	overflow: auto;
	padding: 40px;
	position: relative;
	width: 50%;
}

.split-container .para {
	color: #888;
}

.split-container:nth-child(even) .img-split {
	float: right;
}

.split-container:nth-child(odd) .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;
}

.sub-header-bar {
	background-color: #F6A622;
	padding: 8px;
	text-align: center;
}

.sub-title {
	font-size: 135%;
}

.subsection {
	margin-bottom: 60px;
	margin-top: 60px;
}

.subsection.full {
	margin-left: 60px;
	margin-right: 60px;
}

#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: 5px;
	box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.2);
	cursor: pointer;
	height: 100%;
	overflow: hidden;
	transition: 0.5s;
}

.tile-popup:hover {
	transform: scale(1.05);
}

.tile-popup-base {
	padding: 20px;
}

.tile-popup-container {
	flex: 0 0 33%;
	margin: 10px 0px;
	max-width: 300px;
	padding: 0px 10px;
}

.tile-popup-img {
	height: auto;
	width: 100%;
}

.tile-popup-link {
	color: #777;
	cursor: pointer;
	font-size: 80%;
	margin-top: 15px;
	text-decoration: underline;
}

.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-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;
}


@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 screen and (max-width: 920px) and (max-height: 500px), screen and (max-height: 920px) and (max-width: 500px) {
	
	.action-btn {
		height: 50px;
		width: 50px;
	}
	
	.action-btn.add {
		font-size: 14px;
	}
	
	.action-btn-container {
		padding: 0px 2px;
	}
	
	.btn, input[type=submit] {
		min-width: 140px;
		padding: 12px;
	}
	
	.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;
	}
	
	.floating-tile-container.two, .floating-tile-container.three {
		flex: 0 0 100%;
	}
	
	.footer-column-wrapper {
		text-align: center;
		width: 100%;
	}
	
	.footer-column-wrapper .flex-wrapper {
		justify-content: center;
	}
	
	.footer-columns-nowrap {
		flex-wrap: wrap;
	}
	
	.footer-img {
		height: 80px;
		width: 80px;
	}
	
	.footer-txt {
		padding: 3px 0px;
	}
	
	.footer-wrapper {
		display: block;
		padding: 20px;
	}
	
	#header-bar {
		height: 65px;
	}
	
	.header-logo {
		max-height: 36px;
	}

	.header-logo-wrapper {
		margin: 2px 0px 0px 10px;
	}
	
	.header-text {
		font-size: 16px;
	}
	
	.home-bottom-item {
		padding: 5px 0px;
	}
	
	.home-bottom-wrapper {
		flex-direction: column;
	}
	
	.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%;
	}
	
	.index-img-logo {
		max-width: 350px;
		width: 90%;
	}
	
	.index-img-overlay {
		padding: 0px;
	}
	
	.menu.active {
		width: 100%;
	}
	
	.menu.full-right-slide {
		padding-top: 65px;
	}
	
	.menu-bar1.active {
		-webkit-transform: translate(0px, 0px) rotate(45deg);
		transform: translate(0px, 6.25px)  rotate(45deg);
	}

	.menu-bar3.active {
		-webkit-transform: translate(0px, 0px) rotate(-45deg);
		transform: translate(0px, -6.25px) rotate(-45deg);
	}

	.menu-bar1, .menu-bar2, .menu-bar3 {
		height: 2.5px;
		margin: 4px 0;
		width: 25px;
	}

	.menu-button-container {
		margin-right: 15px;
	}
	
	.menu-item-wrapper {
		padding: 8px 15px;
	}
	
	.menu-sub-item-wrapper {
		padding: 5px 15px 5px 25px;
	}

	.para {
		text-align: left;
	}
	
	.popup-contents {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.popup-contents-container {
		flex-wrap: wrap;
	}
	
	.popup-img {
		margin-left: auto;
		margin-right: auto;
	}
	
	.popup-window {
		width: 90%;
	}
	
	.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 (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%;
	}
	
}