@charset "utf-8";
/* CSS Document */

@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 67% 33%, #b03245, #5c1a24);
	border: #F6A622 solid 2px;
	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;
	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 2px #fff;
	border-radius: 50px;
	color: #fff;
	cursor: pointer;
	font-family: Arial, sans-serif;
	font-size: 14px;
	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: red;
	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%);
	}
}

body, button, html, input, select, textarea {
	color: #555;
	font-family: 'Rubik', Arial, "sans-serif";
}

.btn, input[type=submit] {
	background-color: #8A2736;
	border-radius: 50px;
	color: #fff;
}

.content-flex-item {
	flex: 0 0 100%;
	max-width: 300px;
	text-align: center;
}

.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;
	justify-content: center;
	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;
}

.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;
}

.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}
}

.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;
	box-shadow: 3px 3px 8px 0 #333;
	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%;
	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;
	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, #header-bar-bgrnd {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	height: 100px;
	justify-content: space-between;
	overflow: hidden;
	top: 0;
	width: 100%;
}

#header-bar {
	background: linear-gradient(to bottom, rgba(0,0,0,.4), transparent);
	z-index: 4;
}

#header-bar-bgrnd {
	background-color: #393939;
	box-shadow: 1px 0px 7px rgba(0,0,0.3);
	transition: 0.7s;
	-webkit-transition: 0.7s;
	z-index: 2;
}

.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: 5;
}

.header-text {
	color: #fff;
	font-size: 23px;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
	text-transform: uppercase;
}

#header-wrapper, #header-wrapper-hidden {
	position: fixed;
	top: 0;
	transition: 0.5s;
	-webkit-transition: 0.5s;
    width: 100%;
	z-index: 3;
}

#header-wrapper-hidden:not([data-scroll='0']) {
	opacity: 1;
}

#header-wrapper-hidden {
	box-shadow: 1px 0px 7px rgba(0,0,0,0.3);
	opacity: 0;
	z-index: 2;
}

.img-bgrnd .content-tile-link {
	text-shadow: 1px 1px rgb(0 0 0 / 80%);
}

.img-bgrnd-medium {
	height: 550px;
}

.img-bgrnd-tall {
	height: 50vh;
}

.img-medium {
	height: 50px;
	width: 50px;
}

.img-slide {
	min-height: calc(100vh - 145px);
}

.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: 42vw;
}

.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;
}

.menu.full-right-slide {
    background-color: #393939;
	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;
}

.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 #C68322;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #F6A622;
  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-grey {
	background-color: #838383;
}

.section-bgrnd-maroon {
	background-color: #8A2736;
}

.section-bgrnd-yellow {
	background-color: #F6A622;
}

.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;
}

.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 .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;
	text-decoration: underline;
}

.split-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.sub-header-bar {
	background-color: #F6A622;
	padding: 8px;
	text-align: center;
}

.sub-title {
	font-size: 135%;
}

#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-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: 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-family: 'Raleway', Arial, "sans-serif";*/
	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;
	}
	
	.phone-flex-wrapper {
		display: none;
	}
	
}

@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-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;
		width: 100%;
	}
	
	.footer-column-wrapper .flex-wrapper {
		justify-content: center;
	}
	
	.footer-columns-nowrap {
		flex-direction: column;
	}
	
	.footer-img {
		height: 80px;
		width: 80px;
	}
	
	.footer-txt {
		padding: 3px 0px;
	}
	
	.footer-wrapper {
		display: block;
		padding: 20px;
	}
	
	#header-bar {
		background-size: 30px;
		padding: 10px 0px;
	}
	
	#header-bar, #header-bar-bgrnd {
		height: 64px;
	}
	
	.header-logo {
		max-height: 36px;
	}

	.header-logo-wrapper {
		margin: 2px 0px 0px 10px;
	}
	
	.header-text {
		font-size: 16px;
	}
	
	.img-bgrnd-medium .content-flex-two:last-of-type {
		display: none;
	}
	
	.img-slide {
		height: calc(100vh - 100px);
	}
	
	.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.full-right-slide {
		padding-top: 64px;
	}
	
	.phone-flex-wrapper {
		display: none;
	}
	
	.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%;
	}
	
}