:root{
  --font-primary: "myriad-pro", sans-serif;
  --font-secondary: "myriad-pro", sans-serif;
  --color-primary: #1b365d;
  --color-secondary: #54a4c8;
  --color-tertiary: #0D223F;
  --color-white: #ffffff;
  --color-gray: #333333;
  --color-mediumgray: #666666;
  --color-overlight: rgba(0,0,0,0.1);
  --color-extra: #f5f5f5;
  --color-over: rgba(0,0,0,0.5);
  --color-overwhite: rgba(255,255,255,0.25);
  --color-overhover: rgba(27,54,93,0.9);
  --color-lightgray: #eeeeee;
  --hv-dot-size: 8px;
  --hv-dot-height: 18px;
  --hv-dot-gap: 4px;
  --hv-dot-active-height: 44px;
  --hv-dot-width: 5px;
  --hv-ui-margin: 3em;
  --hv-ui-color: rgba(255,255,255,.92);
  --hv-ui-muted: rgba(255,255,255,.55);
  --hv-scrim: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.25) 100%);
  --hv-inset-bg: #102a4a;
}

/* Backgrounds */
.primary-gradient {
	background: var(--color-tertiary);
	background: -webkit-linear-gradient(140deg, rgba(13, 34, 63, 1) 0%, rgba(27, 54, 93, 1) 50%, rgba(13, 34, 63, 1) 100%);
	background: -moz-linear-gradient(140deg, rgba(13, 34, 63, 1) 0%, rgba(27, 54, 93, 1) 50%, rgba(13, 34, 63, 1) 100%);
	background: linear-gradient(140deg, rgba(13, 34, 63, 1) 0%, rgba(27, 54, 93, 1) 50%, rgba(13, 34, 63, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--color-tertiary)", endColorstr="var(--color-primary)", GradientType=0);
}
.secondary-gradient {
	background: var(--color-gray);
	background: -webkit-linear-gradient(120deg, rgba(51, 51, 51, 1) 0%, rgba(85, 85, 85, 1) 50%, rgba(51, 51, 51, 1) 100%);
	background: -moz-linear-gradient(120deg, rgba(51, 51, 51, 1) 0%, rgba(85, 85, 85, 1) 50%, rgba(51, 51, 51, 1) 100%);
	background: linear-gradient(120deg, rgba(51, 51, 51, 1) 0%, rgba(85, 85, 85, 1) 50%, rgba(51, 51, 51, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--color-gray)", endColorstr="var(--color-mediumgray)", GradientType=0);
}
.gray-gradient {
	background: var(--color-lightgray);
	background: -webkit-linear-gradient(120deg, rgba(229, 229, 229, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(229, 229, 229, 1) 100%);
	background: -moz-linear-gradient(120deg, rgba(229, 229, 229, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(229, 229, 229, 1) 100%);
	background: linear-gradient(120deg, rgba(229, 229, 229, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(229, 229, 229, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--color-lightgray)", endColorstr="var(--color-white)", GradientType=0);
}
.bg-primary {
	background-color: var(--color-primary);
}
.bg-secondary {
	background-color: var(--color-secondary);
}
.bg-tertiary {
	background-color: var(--color-tertiary);
}
.bg-white {
	background-color: var(--color-white);
}
.bg-gray {
	background-color: var(--color-gray);
}
.bg-lightgray {
	background-color: var(--color-lightgray);
}
.grey,.gray {
 	background-color: var(--color-gray);
}
.white {
	background-color: var(--color-white);
}

/* Breadcrumbs */
.bcr {
	padding: 0.5em 1em;
}
.bcr-container {
	font-size: 0.9em;
}
.bcr-container a {
	color: var(--color-gray);
}
.bcr-container a:hover {
	color: var(--color-secondary);
}
.bcr-container a:after {
	content: '/';
	color: var(--color-secondary);
	margin: 0 0.5em;
}
.bcr-container a.bcr-active:after {
	content: none;
	margin: 0;
}
@media (min-width: 768px){
	.bcr {
		padding: 0.75em 1.5em;
	}
}

/* Dealer Locator Component */
.dealer-result .distance {
	color: var(--color-mediumgray);
}
.directions a {
	display: block;
	background: transparent url('../assets/images/directions-icon.png') center left no-repeat;
	background-size: 18px auto;
	padding-left: 24px;
	margin: 0.25em 0 0;
}
.telephone a {
	display: block;
	background: transparent url('../assets/images/phone-icon.png') center left no-repeat;
	background-size: 18px auto;
	padding-left: 24px;
	margin: 0.25em 0 0;
}
.dealer-page a {
	display: block;
	background: transparent url('../assets/images/person-icon.png') center left no-repeat;
	background-size: 18px auto;
	padding-left: 24px;
	margin: 0.25em 0 0;
}

/* Hero Component */
.hi-content-lg {
	font-weight: 700;
}
h1.hv-content-lg,h1.hi-content-lg {
	font-size: 4em !important;	
	line-height: 1.1;
}
.hv-content-lg,.hi-content-lg {
  opacity: 0;
  transform: translateY(30px);
}
.section-visible .hv-content-lg,.section-visible .hi-content-lg {
  animation: slideFadeUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 1.5s;
}
@keyframes slideFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 768px){
	h1.hv-content-lg,h1.hi-content-lg {
		font-size: 6em !important;	
		max-width: 50%;
	}
}

/* Call-to-Action Component */
.cta-link a:after {
	content: '»';
	color: var(--color-white);
	padding-left: 0;
	-webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
}
.cta-link a:hover:after {
	color: var(--color-secondary);
	padding-left: 0.5em;
}

/* Button Component Animation */
.bc-item {
	overflow: hidden;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.bc-item:hover img {
	transform: scale(1.25);
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

/* Product Image Hover Swap */
.mo-option .product-image-swap {
  position: relative;
}
.mo-option .product-image-swap img {
  transition: opacity 0.3s ease;
}
.mo-option .product-image-swap img.product-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}
.mo-option .product-image-swap:hover .product-image-default {
  opacity: 0;
}
.mo-option .product-image-swap:hover .product-image-hover {
  opacity: 1;
}
.mobile-mega-option .product-image-swap {
  position: relative;
}
.mobile-mega-option .product-image-swap img {
  transition: opacity 0.3s ease;
}
.mobile-mega-option .product-image-swap img.product-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}
.mobile-mega-option .product-image-swap:hover .product-image-default {
  opacity: 0;
}
.mobile-mega-option .product-image-swap:hover .product-image-hover {
  opacity: 1;
}

/* Feature Cards Component */
.fcs-cards.fcs-primary-gradient .fcs-box {
	background: var(--color-tertiary);
	background: -webkit-linear-gradient(140deg, rgba(13, 34, 63, 1) 0%, rgba(27, 54, 93, 1) 50%, rgba(13, 34, 63, 1) 100%);
	background: -moz-linear-gradient(140deg, rgba(13, 34, 63, 1) 0%, rgba(27, 54, 93, 1) 50%, rgba(13, 34, 63, 1) 100%);
	background: linear-gradient(140deg, rgba(13, 34, 63, 1) 0%, rgba(27, 54, 93, 1) 50%, rgba(13, 34, 63, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--color-tertiary)", endColorstr="var(--color-tertiary)", GradientType=0);
	color: var(--color-white);
}
.fcs-cards.fcs-primary-gradient .fcs-box h2 a,.fcs-cards.fcs-primary-gradient .fcs-box h3 a,.fcs-cards.fcs-primary-gradient .fcs-box h4 a,.fcs-cards.fcs-primary-gradient .fcs-box h5 a,.fcs-cards.fcs-primary-gradient .fcs-box h6 a {
	color: var(--color-white);
}
.fcs-cards.fcs-secondary-gradient .fcs-box {
	background: #333333;
	background: -webkit-linear-gradient(120deg, rgba(51, 51, 51, 1) 0%, rgba(85, 85, 85, 1) 50%, rgba(51, 51, 51, 1) 100%);
	background: -moz-linear-gradient(120deg, rgba(51, 51, 51, 1) 0%, rgba(85, 85, 85, 1) 50%, rgba(51, 51, 51, 1) 100%);
	background: linear-gradient(120deg, rgba(51, 51, 51, 1) 0%, rgba(85, 85, 85, 1) 50%, rgba(51, 51, 51, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#333333", endColorstr="#333333", GradientType=0);
	color: var(--color-white);
}
.fcs-cards.fcs-secondary-gradient .fcs-box h2 a,.fcs-cards.fcs-secondary-gradient .fcs-box h3 a,.fcs-cards.fcs-secondary-gradient .fcs-box h4 a,.fcs-cards.fcs-secondary-gradient .fcs-box h5 a,.fcs-cards.fcs-secondary-gradient .fcs-box h6 a {
	color: var(--color-white);
}
.fcs-cards.fcs-gray-gradient .fcs-box {
	background: var(--color-lightgray);
	background: -webkit-linear-gradient(120deg, rgba(229, 229, 229, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(229, 229, 229, 1) 100%);
	background: -moz-linear-gradient(120deg, rgba(229, 229, 229, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(229, 229, 229, 1) 100%);
	background: linear-gradient(120deg, rgba(229, 229, 229, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(229, 229, 229, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--color-lightgray)", endColorstr="var(--color-lightgray)", GradientType=0);
	color: var(--color-white);
}
.fcs-cards.fcs-gray-gradient .fcs-box h2 a,.fcs-cards.fcs-gray-gradient .fcs-box h3 a,.fcs-cards.fcs-gray-gradient .fcs-box h4 a,.fcs-cards.fcs-gray-gradient .fcs-box h5 a,.fcs-cards.fcs-gray-gradient .fcs-box h6 a {
	color: var(--color-white);
}
.fcs-cards.fcs-bg-lightgray .fcs-box {
	background: var(--color-lightgray);
	color: var(--color-white);
}
.fcs-cards.fcs-bg-lightgray .fcs-box h2 a,.fcs-cards.fcs-bg-lightgray .fcs-box h3 a,.fcs-cards.fcs-bg-lightgray .fcs-box h4 a,.fcs-cards.fcs-bg-lightgray .fcs-box h5 a,.fcs-cards.fcs-bg-lightgray .fcs-box h6 a {
	color: var(--color-white);
}
.fcs-cards.fcs-bg-gray .fcs-box {
	background: var(--color-gray);
	color: var(--color-white);
}
.fcs-cards.fcs-bg-gray .fcs-box h2 a,.fcs-cards.fcs-bg-gray .fcs-box h3 a,.fcs-cards.fcs-bg-gray .fcs-box h4 a,.fcs-cards.fcs-bg-gray .fcs-box h5 a,.fcs-cards.fcs-bg-gray .fcs-box h6 a {
	color: var(--color-white);
}
.fcs-cards.fcs-bg-primary .fcs-box {
	background: var(--color-primary);
	color: var(--color-white);
}
.fcs-cards.fcs-bg-primary .fcs-box h2 a,.fcs-cards.fcs-bg-primary .fcs-box h3 a,.fcs-cards.fcs-bg-primary .fcs-box h4 a,.fcs-cards.fcs-bg-primary .fcs-box h5 a,.fcs-cards.fcs-bg-primary .fcs-box h6 a {
	color: var(--color-white);
}
.fcs-cards.fcs-bg-secondary .fcs-box {
	background: var(--color-secondary);
	color: var(--color-white);
}
.fcs-cards.fcs-bg-secondary .fcs-box h2 a,.fcs-cards.fcs-bg-secondary .fcs-box h3 a,.fcs-cards.fcs-bg-secondary .fcs-box h4 a,.fcs-cards.fcs-bg-secondary .fcs-box h5 a,.fcs-cards.fcs-bg-secondary .fcs-box h6 a {
	color: var(--color-white);
}

/* Virtual Tour */
.matterport-iframe-container iframe {
	width: 100%;
    display: block;
    min-height: 600px;
}
@media (min-width: 768px){
	.matterport-iframe-container iframe { 
		min-height: 900px;
	}
}