/*
	This website is using Bootstrap 4!
	https://getbootstrap.com/docs/4.3/getting-started/introduction/
*/

/* ==========================================================================
   Global
============================================================================= */

/* Set Design Standards & Colors Here */
:root {
	--primary: #10af2f;
	--primary-rgb: 16, 175, 60;
	--secondary: #414141;
	--dark: #0d0d0d;
	--light: #10af2f;
	--gray: #f6f6f6;
	--gray-alt: #f9f7f2;
	--gray-dark: #222222;
	--gray-darker: #111111;
	--border-color: #c2c2c2;
	--muted: #c2c2c2;
	--body-text: #0d0d0d;
	--text-dark: #06372e;
	--primary-font: 'Nunito', sans-serif;
	--secondary-font: 'DM Serif Text', serif;
	--cursive-font: 'Dear Prudence', cursive;
	--box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
	--box-shadow-lg: 0 2px 12px 5px rgb(0 0 0 / 5%), 0 3px 11px -2px rgb(0 0 0 / 3%), 0 1px 15px 8px rgb(0 0 0 / 5%);
	--box-shadow-xl: 0px 33px 79px 0px rgba(0, 0, 0, 0.08);
}
html { }
body { font-family: var(--primary-font); color: var(--body-text); line-height: 1.45; letter-spacing: .05em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
main { overflow: hidden; }

/* Font Styles
============================================================================= */
h1, h2, .display-1 { font-size: 42px; margin: 0 0 45px; font-weight: 400; font-family: var(--secondary-font); line-height: 1; }
h1 + h2, h2 + h3, .display-2 { font-family: var(--primary-font); font-size: 20px; margin: -10px 0 45px; font-weight: 400; line-height: 1.5; letter-spacing: .05em; }
h3, .display-3 { font-size: 25px; margin: 40px 0 8px; color: var(--secondary); font-weight: bold; line-height: 1.2; letter-spacing: .05em; }
h4, .display-4 { font-size: 17px; margin: 25px 0 5px; font-weight: bold; line-height: 1.2; }
p { margin-bottom: 25px; }
a { color: var(--secondary); text-decoration: none; transition: all 0.5s; }
a:hover, a:active { color: var(--primary); text-decoration: none; }
@media (min-width:992px) {
	h1, h2, .display-1 { font-size: 60px; }
}
@media (max-width:575.98px) {
	h1, h2, .display-1 { font-size: 40px; }
	h1 + h2, h2 + h3, .display-2 { font-size: 20px; }
	h3, .display-3 { font-size: 20px; }
}


/* Text Colors */
.text-default { color: var(--body-text)!important; }
.text-primary { color: var(--primary)!important; }
.text-light { color: var(--light)!important; }
.text-secondary { color: var(--secondary)!important; }
.text-dark { color: var(--dark)!important; }
.text-white { color: #fff!important; }

/* Font Styles */
.font--cursive { font-family: 'Dear Prudence', cursive; font-family: var(--cursive-font); text-transform: none; }
.fs-60 { font-size: 60px; }

/* Buttons
============================================================================= */
.btn { position: relative; background-color: transparent; color: var(--dark)!important; border: 1px solid var(--primary); height: 43px; line-height: 43px; border-radius: 21.5px; padding: 0 20px; font-size: 20px; font-weight: 600; letter-spacing: .05em; text-transform: capitalize; display: inline-flex; align-items: center; justify-content: center; min-width: 176px; overflow: hidden; z-index: 3; white-space: nowrap; }
/* .btn::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; background: #000; } */
.btn::before { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: calc(200% + 1px); z-index: -1; transform: translateX(-50%); transition: transform 0.4s ease-out; transform-origin: left; background: rgb(255, 255, 255); background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, var(--primary) 50%, var(--primary) 100%); background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, var(--primary) 50%, var(--primary) 100%); background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, var(--primary) 50%, var(--primary) 100%); }
.btn:hover { color: var(--dark) !important; }
.btn:hover::before { transform: translateX(0); transform-origin: left; transition: transform 0.4s ease-out; }
/* .btn.focus, .btn:focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb),.25); } */

/* Button Colors */
.btn--secondary { background-color: var(--secondary); color: #fff !important; border: 1px solid var(--secondary); }
.btn--secondary::before { background: rgb(255, 255, 255); background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, var(--primary) 50%, var(--secondary) 100%); background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, var(--secondary) 50%, var(--secondary) 100%); background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, var(--secondary) 50%, var(--secondary) 100%); }
.btn--secondary:hover { background-color: #fff; color: var(--secondary) !important; }

/*  */
.btn--white { background-color: #fff; color: var(--primary) !important; border: 1px solid #fff; }
.btn--white:hover { background-color: var(--primary); color: #fff !important; border: 1px solid var(--primary); }
/*  */
.btn--arrow { padding-right: 12px; }
.btn--arrow::after { content: '\f061'; font-family: "Font Awesome 5 Pro"; font-style: normal; font-weight: 600; margin-bottom: -0.15em; -webkit-font-smoothing: antialiased; padding-left: 15px; font-size: 1.3em; }
.btn--arrow:hover::after {
	-webkit-animation-name: nudgeRight;
  animation-name: nudgeRight;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(.33,.4,.43,1.15);
}
@-webkit-keyframes nudgeRight {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
}
@keyframes nudgeRight {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
	50% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
}

/* Inverted Buttons - Outline Only */
.btn--outline-primary { }
.btn--outline-primary:hover { }
.btn--outline-secondary { }
.btn--outline-secondary:hover { }

/* Button Sizes */
.btn--lg { height: 67px; min-width: 273px; }
.btn--sm { }

/* Button Lists */
.btn-list { display: inline-flex; flex-wrap: wrap; margin: 0 -8px 15px; }
.btn-list .btn { margin: 0 8px 15px; }

/* Images
============================================================================= */
img { max-width: 100%; height: auto; }
img.cover { object-fit: cover; font-family: 'object-fit:cover; '; width: 100%; height: 100%; }
img.content { float: left; margin: 5px 15px 15px 0; padding: 5px; }
svg[class*="icon-"] { height: 32px; width: 32px; display: inline-block; fill: currentColor; }

/* Fade image in after lazyloaded */
.lazyload, .lazyloading { opacity: 0; }
.lazyloaded { opacity: 1; transition: opacity 300ms; }


/* Backgrounds
============================================================================= */
.bg-primary { background-color: var(--primary)!important; }
.bg-secondary { background-color: var(--secondary)!important; }
.bg-light { background-color: var(--light)!important; }
.bg-dark { background: var(--dark)!important; color: #fff; }
.bg-gray { background: var(--gray)!important; }
.bg-gray-dark { background: var(--gray-dark)!important; color: #fff; }
.bg-image { position: relative; background-repeat: no-repeat; background-size: cover; background-position: center center; color: #fff; }
.bg-image::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--dark); opacity: .9; }
.bg-image .container { position: relative; z-index: 2; }
[class*='bg-'] form input { color: #000; }
@media (min-width:992px) {
	.bg-image { background-attachment: fixed; }
}

/* Banners - Reuseable Repeating Styles specific to this websites' design
============================================================================= */
.banner { padding: 85px 0; }
@media (min-width: 992px) {
	.banner-lg { padding: 140px 0; }
}

/* Social Media Icons
============================================================================= */
.social { display: inline-flex; }
.social a { text-align: center; border: 1px solid var(--primary); color: var(--dark); background: var(--primary); height: 35px; width: 35px; line-height: 35px; border-radius: 50%; font-size: 18px; }
.social a ~ a { margin-left: 5px; }
.social a:hover { color: #fff; background: var(--dark); border: 1px solid var(--dark);  }

/* List Styles
============================================================================= */

/* Inline list with Pipes or Dots */
.list-inline, .list-inline--pipes, .list-inline--dots { list-style: none; padding: 0; margin: 0; }
.list-inline li, .list-inline--pipes li, .list-inline--dots li { display: inline-block; }
.list-inline--pipes li:nth-child(1n+2)::before { content: '|'; margin: 0 8px; }
.list-inline--dots li:nth-child(1n+2)::before { content: '•'; margin: 0 8px; }

/* Numbered List with styled numbers */
.numbers { list-style: none; padding: 0; margin: 10px 0 20px; display: inline-block; }
.numbers li { position: relative; padding-left: 85px; margin: 0 0 50px; font-size: 24px; text-align: left; counter-increment: item-counter; }
.numbers li::before { content: counter(item-counter) "."; position: absolute; left: 0; top: 2px; font-size: 24px; font-weight: bold; height: 58px; width: 58px; border-radius: 50%; border: 1px solid #fff; background: var(--primary); color: #fff; text-align: center; line-height: 55px; padding-left: 3px; }
.numbers li h3 { font-size: 30px; font-weight: bold; text-transform: capitalize; margin: 0 0 15px; }
@media (max-width:375px) {
	.numbers li { padding-left: 65px; font-size: 20px; }
	.numbers li::before { height: 48px; width: 48px; font-size: 20px; line-height: 45px; }
	.numbers li h3 { font-size: 20px; }
}

/* List with Checks instead of bullets */
.checks { list-style: none; padding: 0; margin: 30px 0; padding-left: 35px; }
.checks li { position: relative; padding-left: 35px; margin-bottom: 12px; font-size: 17px; }
.checks li::before { color: var(--primary); content: '\f00c'; font-size: 25px; line-height: 1; font-family: "Font Awesome 5 Pro"; font-style: normal; font-weight: 300; -webkit-font-smoothing: antialiased; position: absolute; top: 0; left: 0; }

.checks--cols { display: flex; flex-wrap: wrap; margin-bottom: 15px; }
.checks--cols li { flex: 0 1 235px; }

/* List with small icons instead of bullets */
.icons { list-style: none; padding: 0; margin: 10px 0 20px; display: inline-block; }
.icons li { position: relative; padding-left: 55px; margin: 0 0 35px; font-size: 20px; text-align: left; }
.icons li .icon { position: absolute; left: 0; top: 2px; }

/* List with Primary colored Dots */
.dots { list-style: none; padding: 0; padding-left: 35px; margin: 5px 0 25px; }
.dots li { padding-left: 20px; font-size: 17px; position: relative; font-weight: 400; margin: 0 0 5px; }
.dots li::before { content: ""; height: 4px; width: 4px; border-radius: 50%; background: var(--primary); position: absolute; top: .6em; left: 0; }
.dots ul { list-style: none; margin: 10px 0; }
.dots ul > li { margin: 5px 0; }
.dots ul > li::before { background: transparent; border: 2px solid var(--primary); }

/* Icon List */
.icon-list { list-style: none; padding: 0; margin: 50px 0; display: flex; flex-wrap: wrap; justify-content: center; }
.icon-list__item { flex: 0 0 255px; padding: 0 15px; text-align: center; margin: 0 auto 30px; }
.icon-list__icon { margin: 0 auto 10px; height: 116px; width: 116px; border-radius: 50%; background: var(--primary); display: flex; justify-content: center; align-items: center; box-shadow: 0px 22px 42.57px 0.43px rgba(0, 0, 0, 0.1); }
.icon-list__icon svg, .icon-list__icon img { height: 95px; width: 95px; }
.icon-list__title { font-size: 18px; font-weight: 400; margin: 25px 0 10px; text-transform: capitalize; }
.icon-list__description { }
.icon-list__description a { display: block; font-weight: 600; }
.icon-list--circle-icons .icon-list__icon { height: 111px; width: 111px; border: 2px solid currentColor; background: var(--primary); border-radius: 50%; }

/* Image List */
.image-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; }
.image-list__item { flex: 1 0 271px; padding: 0 15px; margin: 0 0 30px; }
.image-list__img { position: relative; margin: 0; height: 0; padding-top: 75%; overflow: hidden; }
.image-list__img img { position: absolute; top: 0; left: 0; transition: 0.8s; }
.image-list__item a:hover img { transform: scale(1.08); transition: 0.8s; }
.image-list__title { position: relative; font-size: 20px; font-weight: 400; margin: 0; color: #fff; background: var(--primary); margin: 0; padding: 10px 20px; }
.image-list__title::after { content: '\f105'; font-family: "Font Awesome 5 Pro"; font-style: normal; font-weight: 300; -webkit-font-smoothing: antialiased; position: absolute; top: 50%; right: 20px; transform: translateY(-50%); }
@media (min-width:992px) {
	.image-list { margin: 0 -15px; }
	.image-list__item { flex: 0 0 25%; }
	.image-list--col-2 { max-width: 900px; margin: 0 auto; }
	.image-list--col-2 .image-list__item { padding: 0 25px; margin: 0 auto 50px; flex: 0 0 50%; }
	.image-list--col-3 { margin: 0 -25px; }
	.image-list--col-3 .image-list__item { padding: 0 25px; margin: 0 auto 50px; flex: 0 0 33.33%; }
}


/* Utilities - Helper Classes
============================================================================= */
.mw-600 { width: 600px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }
.mw-650 { width: 650px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }
.mw-700 { width: 700px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }
.mw-750 { width: 750px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }
.mw-900 { width: 900px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }
.mw-1000 { width: 1000px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }
.mw-1060 { width: 1060px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }
.mw-1400 { width: 1400px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }
.mw-1600 { width: 1600px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }
.mw-1700 { width: 1700px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }

/* Padding Relative to Screen Width on containers */
/* Math: (2000px (design width) - 1000px (content width) / 2 (sides)) / 2000px (design width) * 100 = VW */
.pw-1000 { padding-left: 25vw; padding-right: 25vw; }
.pw-1400 { padding-left: 16vw; padding-right: 16vw; }
.pw-1600 { padding-left: 10vw; padding-right: 10vw; }
.pw-1700 { padding-left: 8vw; padding-right: 8vw; }

/* Adjust size of padding between columns */
.g-3 { margin: -15px; }
.g-3 > [class*='col-'] { padding: 15px; }
.g-4 { margin: -22px; }
.g-4 > [class*='col-'] { padding: 22px; }
.g-5 { margin: -30px; }
.g-5 > [class*='col-'] { padding: 30px; }
.g-6 { margin: -2.25vw; }
.g-6 > [class*='col-'] { padding: 2.25vw; }
.g-7 { margin: -3.5vw; }
.g-7 > [class*='col-'] { padding: 3.5vw; }
.g-8 { margin: -5.5vw; }
.g-8 > [class*='col-'] { padding: 5.5vw; }

.gx-6 { margin-left: -2.25vw; margin-right: -2.25vw; }
.gx-6 > [class*='col-'] { padding-right: 2.25vw; padding-left: 2.25vw; }

@media (min-width:1200px) {
	.pr-xl-6, .px-xl-6 { padding-right: 6rem!important; }
	.pl-xl-6, .px-xl-6 { padding-left: 6rem!important; }
	.g-xl-4 { margin: -22px; }
	.g-xl-4 > [class*='col-'] { padding: 22px; }
	.g-xl-5 { margin: -30px; }
	.g-xl-5 > [class*='col-'] { padding: 30px; }
	.g-xl-6 { margin: -45px; }
	.g-xl-6 > [class*='col-'] { padding: 45px; }
}
@media (min-width:992px) {
	.g-lg-4 { margin: -22px; }
	.g-lg-4 > [class*='col-'] { padding: 22px; }
	.g-lg-5 { margin: -30px; }
	.g-lg-5 > [class*='col-'] { padding: 30px; }
	.g-lg-6 { margin: -45px; }
	.g-lg-6 > [class*='col-'] { padding: 45px; }
	.row--gutters-lg { margin: 0 -30px; }
	.row--gutters-lg [class*='col-'] { padding: 0 30px; }
	.row--gutters-xl { margin: 0 -35px; }
	.row--gutters-xl [class*='col-'] { padding: 0 35px; }
	.pr-lg-6, .px-lg-6 { padding-right: 6rem!important; }
	.pl-lg-6, .px-lg-6 { padding-left: 6rem!important; }
}

/* Affix */
.affix { position: fixed !important; top: 0; left: 0; width: 100%; z-index: 9999; }

/* Box Shadows */
.shadow-sm { -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -webkit-transition: all 0.25s ease-in-out; -moz-transition: all 0.25s ease-in-out; -ms-transition: all 0.25s ease-in-out; -o-transition: all 0.25s ease-in-out; transition: all 0.25s ease-in-out; }
a.shadow-sm:hover, .shadow-md { -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); -ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); -o-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); }

/* video wrapper */
.video-wrapper { position: relative; display: block; height: 0; padding: 0; overflow: hidden; }
.video-wrapper, .video-wrapper.video-16by9 { padding-bottom: 56.25%; }
.video-wrapper.video-4by3 { padding-bottom: 75%; }
.video-wrapper iframe { position: absolute; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Misc */
*:focus { outline-color: var(--primary); }
.box { padding: 15px; border: solid 1px #cccccc; }
.no-outline:focus { outline: none; }
/* a:focus, a:active { outline: none; -moz-outline-style: none; } */
button::-moz-focus-inner { border: 0; }
address [class*='street-address'] { list-style: none; padding: 0; display: block; }
.banner-replace { display: none; }
.email-replace { display: none; }
.mapboxgl-marker svg g[fill*='#3FB1CE'] { fill: var(--primary)!important; }
.form-direction:after { content: 'to the right'; }
.form-direction-l:after { content: 'to the left'; }
@media (min-width:1300px) {
	.container { max-width: 1285px; }
}
@media (min-width:992px) {
	/* [class*='lazy-']:not(.lazy-text) { opacity: 0; } */
	/* [class*='lazy-'].animated, [class*='lazy-'].animated-slow,[class*='lazy-'].animated-slower  { opacity: 1; } */
	[data-animation]:not(.animated):not(.animated-fast):not(.animated-slow), [data-stagger]:not(.visible) { animation-fill-mode: backwards; animation-play-state: paused; opacity: 0; transition: opacity .2s; }
}
@media (max-width:991px) {
	.form-direction:after, .form-direction-l:after { content: 'below'; }
}

/* clear / height */
div.clear, div.clr { clear: both; display: block; }
.height-xs { height: 15px; }
.height-sm { height: 20px; }
.height-md { height: 25px; }
.height-lg { height: 30px; }
.height-xl { height: 35px; }


/* ==========================================================================
   Header
============================================================================= */
:root { --header-height: 180px; }
#header { height: var(--header-height); background-color: #fff; transition: background-color 0.4s ease-out, box-shadow 0.2s ease-out; position: absolute; top: 0; left: 0; width: 100%; z-index: 99; }
#header .container-fluid { position: relative; height: 100%; max-width: 1900px; margin: 0 auto; }
#header .logo { position: absolute; top: 50%; left: 15px; transform: translateY(-50%); max-width: 60vw; }
#header .logo img { max-height: 125px; max-width: 300px; }
#header .phone { color: var(--body-text); font-family: var(--secondary-font); font-size: 30px; position: absolute; top: 20%; transform: translateY(-50%); right: 15px; }
#header .phone a { color: inherit; }
#header .phone a:hover { color: var(--primary); }
#header .links { font-size: 17px; font-weight: 600; list-style: none; margin: 0 -10px; padding: 0; display: flex; position: absolute; top: 50%; right: 15px; transform: translateY(-50%); letter-spacing: .05em; text-transform: capitalize; }
#header .links li { padding: 0 10px; }
#header .links a { color: #111111; }
#header .links i { color: var(--primary); height: 36px; width: 36px; line-height: 36px; text-align: center; border-radius: 50%; background: #fff; box-shadow: 0px 17px 32px 0px rgba(187, 187, 187, 0.3); margin-right: 10px; transition: 0.4s; }
#header .links a:hover { color: var(--secondary); }
#header .links a:hover i { background: var(--primary); color: #fff; transition: .4s; }
#header .nav { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: calc(100% - 950px); }
#header .launch-menu-button { display: none; position: absolute; top: 50%; right: 15px; transform: translateY(-50%); text-align: right; line-height: 50px; color: inherit; transition: bottom 0s; }

@media (min-width:1656px) {
	#header .links { top: 20%; right: 225px; }
	#header .nav { width: calc(100% - 400px); right: 0; left: auto; transform: translate(0,-50%); }
}

@media (max-width:1656px) {
	#header .links { top: 20%; right: 225px; }
	#header .nav { width: calc(100% - 400px); right: 0; left: auto; transform: translate(0,-50%); }
}
/* @media (max-width:1108px) {
	#header .logo img { max-width: 250px; }
	#header .nav { width: calc(100% - 300px); }
	#header .nav > .nav__item:first-child { display: none; }
} */

@media (max-width:1129px) {
	:root { --header-height: 135px; }
	#header .launch-menu-button { display: block; }
	#header .nav,
	#header .links { display: none; }
	#header .phone { right: 15px; font-size: 20px; }
	#header .logo img { max-width: 100%; }
}
@media (max-width:991px) {
	:root { --header-height: 135px; }
	#header .launch-menu-button { display: block; }
	#header .nav,
	#header .links { display: none; }
	#header .phone { right: 15px; font-size: 20px; }
	#header .logo img { max-width: 100%; }
}
@media (max-width:600px) {
	#header .phone { display: none; }
}
@media (max-width:425px) {
	#header .logo { text-align: center; right: 15px; left: 15px; top: 40%; margin: 0 auto; }
	#header .launch-menu-button { bottom: 0; left: 0; top: auto; transform: none; text-align: center; }
}

/* Header Affix */
#header.affix { height: 50px; background-color: rgba(255, 255, 255, 1); transition: background-color 0.4s ease-in, box-shadow 0.2s ease-in; box-shadow: var(--box-shadow); }
#header.affix .phone, #header.affix .links { display: none; }
#header.affix .logo { left: 15px; right: auto; top: 50%; }
#header.affix .logo img { max-height: 30px; }
#header.affix .nav { bottom: auto; top: 50%; transform: translateY(-50%); }
#header.affix .nav__item { line-height: normal; }
#header.affix .launch-menu-button { display: block; bottom: auto; top: 50%; left: auto; right: 15px; transform: translateY(-50%); }
#header.affix .nav { display: none; }


/* ==========================================================================
   #Nav
============================================================================= */
#header .nav { list-style: none; padding: 0; margin: 0; font-weight: 600; font-size: 17px; letter-spacing: .05em; text-transform: capitalize; justify-content: space-around; }
#header .nav__item { position: relative; padding: 0 10px; line-height: 29px; }
#header .nav__item a { color: var(--body-text); }
#header .nav__item > a::after { content: ''; height: 29px; width: 100%; border-radius: 14px; background-color: var(--light); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0); transition: 0.3s ease-in;z-index: -1; box-shadow: 0px 17px 32px 0px rgba(187, 187, 187, 0.3); }
#header .nav__item:hover > a::after, #header .nav__item.active > a::after { transform: translate(-50%,-50%) scale(1); transition: 0.3s ease-out; }
#header .nav__dropdown { display: none; list-style: none; padding: 0; margin: 0; position: absolute; top: 100%; background-color: #fff;  left: 0; border-radius: 14px; overflow: hidden; box-shadow: 0px 17px 32px 0px rgba(187, 187, 187, 0.3); }
#header .nav__dropdown > li { white-space: nowrap; line-height: 35px; padding: 0 10px; }
#header .nav__dropdown > li > a { color: var(--body-text); }
#header .nav__dropdown > li:hover { background-color: var(--light); }
#header .nav__item:not(.dropdown):hover .nav__dropdown { display: block; }
#header .nav__dropdown--lg { width:850px; padding: 30px 10px; right:-463px; left:auto; }
#header .nav__dropdown--lg ul { list-style: none; padding: 0; margin: 0; }
#header .nav__dropdown--lg .nav__item, #header .nav__dropdown--lg li { margin: 0 0 15px!important; }
#header .nav__dropdown--lg .nav__item a { display: block; line-height: 1.3; padding: 0 15px;color:var(--body-text); }
#header .nav__dropdown--lg .nav__item a:hover {color:var(--primary);}
#header .nav__dropdown--lg .nav__item li:hover {background-color:var(--light);}
#header .nav__dropdown--lg .nav__item li:hover a {color: var(--body-text);}
#header .nav__dropdown--lg .nav__item > ul { padding: 0 15px; }
#header .nav__dropdown--lg .nav__item > a::after { display: none!important; }
#header .nav__dropdown--lg .nav__item.service-title > a {margin-bottom:15px;}
#header .nav__dropdown--lg .nav__item ul > li > a {font-weight:400;}
#header .nav__dropdown--lg [class*="col-"]:not(:last-of-type) {border-right:1px solid var(--primary);}
@media (max-width:1425px) {
	#header .nav__item:last-child .nav__dropdown  { left: auto; right: 15px; }
}
@media (max-width:1108px) {
	#header .nav__dropdown--lg { width: 950px; left: -300px; right: auto; }
}

/* Launch Menu
============================================================================= */
.launch-menu { position:fixed; top:0; bottom:0; right:0; width:300px; background:#fff; padding-bottom: 50px; z-index:9999; transform: translateX(100%); transition: 0.5s ease-out; text-align: center; overflow-y: scroll; box-shadow: var(--box-shadow); }
.launch-menu.open { transform: translateX(0%); transition: 0.5s ease; }
.launch-menu-mask { background: rgba(0,0,0,0.8); position: fixed; top:0; left:0; height: 100%; width: 100%; z-index: 9998; display: none; }
.launch-menu-close { opacity: 0.4; margin: 15px auto; font-size: 30px; display: block; background: transparent; border: 0; transition: 0.4s; outline: none!important; }
.launch-menu-close:hover { opacity: 0.8; transition: 0.4s; }
.launch-menu .nav { text-align: left; margin-top: 30px; }
.launch-menu .nav a { color: inherit; }
.launch-menu .nav__item { border-top: 1px solid #ccc; }
.launch-menu .nav__item:last-child { border-bottom: 1px solid #ccc; }
.launch-menu .nav__item:hover { -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.25); -moz-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.25); box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.25); }
.launch-menu .nav__item > a { padding: 13px 10px 13px 20px; display: block; }
.launch-menu .nav__item > a:hover, .launch-menu .nav__item.active > a { background: var(--secondary); color: #fff; transition: color 0s; }
.launch-menu .nav__dropdown { display: none; list-style: none; padding: 0; margin: 0; background: var(--secondary); -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.25); -moz-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.25); box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.25); }
.launch-menu .nav__dropdown li { background: rgba(0,0,0,.1); }
.launch-menu .nav__dropdown > li:first-child { border-top: 1px solid #ccc;  }
.launch-menu .nav__dropdown a { color: #fff; padding: 13px 10px 13px 40px; display: block; }
.launch-menu .nav__dropdown a:hover { background: rgba(0,0,0,.1); -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.25); -moz-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.25); box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.25); }
.launch-menu .logo img { max-width: 60%; margin: 0 auto 20px; display: block; }
.launch-menu .phone { font-size: 24px; margin: 20px 0; color: var(--secondary); }
.launch-menu .links { margin: 0 auto 20px; }
.launch-menu .links .btn { width: 70%; min-width: unset; margin-bottom: 10px; }
.launch-menu .links .btn i { margin-right: 10px; }
.launch-menu .social { margin-top: 35px; }
.launch-menu .nav__dropdown .nav__dropdown .nav__item a { padding-left: 60px; }


/* ==========================================================================
   #Footer
============================================================================= */
.footer { color: #fff; font-size: 18px; overflow: hidden; }
.footer section { padding: 75px 0; }
.footer .container-fluid { max-width: 1700px; }
.footer h3 { font-size: 25px; font-style: italic; margin: 0 0 25px; color: inherit; font-family: var(--secondary-font); }
.footer a { color: inherit; }
.footer a:hover { color: var(--primary); }
.footer__logo img { filter: brightness(0) invert(1); margin-bottom: 25px; }
.footer__address .street-address { display: block; }
.footer__phone { margin: 30px 0; }
.footer__hours { text-align: left; margin: 0 auto; }
.footer__hours td:last-child { padding-left: 2.3vw; }
.footer .list-unstyled li { margin: 5px 0; }
.footer .social a { border: 1px solid rgba(255, 255, 255, .65); background: transparent; }
.footer .social a:hover { color: inherit; background: var(--primary); }
.footer__affil { margin: 20px -5px 0; }
.footer__affil img, .footer__affil svg { padding: 5px; }
.footer__affil svg { height: 60px; width: 60px; }
@media (min-width:992px) {

}
@media (max-width:991px) {
	.footer { text-align: center; }
	.footer__links { margin-top: 50px; }
}

/* Footer CTA
============================================================================= */
.footer-cta { padding: 35px 0; }
.footer-cta h3 { font-size: 60px; margin: 0; }
.footer-cta__text { text-align: right; }
svg[class*="icon-"].footer-cta__underline { height: 65px; width: 286px; color: var(--primary); fill: currentColor; display: inline-block; }
@media (max-width:991px) {
	.footer-cta__text { text-align: center; }
}

/* ==========================================================================
   Forms
============================================================================= */
.form-container { border: 0; background-color: #fff; padding: 60px 40px 75px; border-radius: 60px; box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); }
.form-container h2 { color: var(--secondary); font-size: 30px; font-family: var(--secondary-font); text-transform: none; text-align: center; margin: 0 0 30px; }
.form-container .ion-form-group { margin-bottom: 15px; }
.form-container .ion-form-group label { display: none; }
.form-container .ion-form-group input, .form-container .ion-form-group textarea { border: 0 !important; border-radius: 0 !important; background: var(--gray-alt); }
.form-container .ion-form-group input, .form-container .ion-form-group select { height: 37px; }
.form-container .ion-form-group textarea { height: 175px; }
.form-container .ion-form-group ::-webkit-input-placeholder, .form-container .ion-form-group select:invalid { color: var(--secondary); font-size: 16px; text-transform: capitalize; letter-spacing: .1em; }
.form-container .ion-form-group select { padding-left: 5px;  border: 0; background: var(--gray-alt); }
.form-container .ion-form-group-break h3 { color: inherit; font-size: 14px; margin: 0; text-transform: capitalize; font-weight: bold; padding-top: 10px; }
.form-container .ion-form-group-radio label, .form-container .ion-form-group-checkbox label { display: block; color: inherit; }
.form-container .ion-form-group-radio label:not(:first-child), .form-container .ion-form-group-checkbox label:not(:first-child) { width: 50%; display: inline-block; }
.form-container .ion-form-group-radio input, .form-container .ion-form-group-checkbox input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.form-container .ion-form-group-radio span, .form-container .ion-form-group-checkbox span { display: flex; padding-left: 30px; padding-right: 15px; position: relative; font-size: 15px; }
.form-container .ion-form-group-radio span::before, .form-container .ion-form-group-checkbox span::before { content: ''; position: absolute; left: 0; top: 2px; height: 20px; width: 20px; background: var(--gray-alt); display: block; transition: 0.3s; }
.form-container .ion-form-group-radio span::after, .form-container .ion-form-group-checkbox span::after { content: '\f00c'; color: var(--primary); opacity: 0; position: absolute; left: 3px; top: 2px; font-family: "Font Awesome 5 Pro"; font-style: normal; font-weight: 600; line-height: 23px; -webkit-font-smoothing: antialiased; transition: 0.3s; }
.form-container .ion-form-group-radio input:hover span::after, .form-container .ion-form-group-checkbox input:hover span::after { opacity: .4; transition: 0.3s; }
.form-container .ion-form-group-radio input:checked ~ span::after, .form-container .ion-form-group-checkbox input:checked ~ span::after { opacity: 1; transition: 0.3s; }
.form-container iframe { margin: -10px 0 10px; }
.form-container form > div:last-of-type > div { margin-left: auto; }
.form-container .ion-btn { background-color: var(--secondary); border-color: var(--secondary); font-size: 0; width: 53px; height: 53px; line-height: 53px; border-radius: 50%; margin: 15px 0 0 auto; display: flex; align-items: center; justify-content: center; }
.form-container .ion-btn::after { content: '\f061'; width: 53px; height: 53px; line-height: 57px; border-radius: 50%; font-size: 28px; font-family: "Font Awesome 5 Pro"; font-style: normal; font-weight: 400; -webkit-font-smoothing: antialiased; }
.form-container .ion-btn:hover { color: var(--secondary); border-color: var(--secondary); }
@media (min-width:992px) {
	.form-container { max-width: 100%; width: 539px; margin-left: auto; }
}
/* Form Container Stacked on small screens */
@media (min-width:600px) and (max-width:991px) {
	.form-container form { display: flex; flex-wrap: wrap; justify-content: space-between; margin: 0 -10px; }
	.form-container form .ion-form-group { flex-basis: calc(50% - 20px); flex-grow: 1; margin: 0 10px 20px; }
	.form-container form .ion-form-group.ion-form-group-textarea, .form-container form .ion-form-group.ion-form-group-break, .form-container form .ion-form-group.ion-form-group-checkbox, .form-container form .ion-form-group.ion-form-group-radio, .form-container form > div:last-of-type { flex-basis: 100%; }
	.form-container form button { margin-right: 10px; }
	/* .form-container form > div:last-of-type { padding: 0 10px; } */
	.form-container form > div:last-of-type > div { margin-left: auto; }
}

/* Form COntainer Stacked */
@media (min-width:992px) {
	.form-container--stacked { width: auto; }
	.form-container--stacked form { display: flex; flex-wrap: wrap; justify-content: space-between; margin: 0 -10px; }
	.form-container--stacked form .ion-form-group { flex-basis: calc(50% - 20px); flex-grow: 1; margin: 0 10px 20px; }
	.form-container--stacked form .ion-form-group.ion-form-group-textarea, .form-container--stacked form .ion-form-group.ion-form-group-break, .form-container--stacked form .ion-form-group.ion-form-group-checkbox, .form-container--stacked form .ion-form-group.ion-form-group-radio, .form-container--stacked form > div:not(.ion-form-group):last-of-type { flex-basis: 100%; }
	.form-container--stacked form .ion-form-group.ion-form-group-textarea { margin-bottom: 5px; }
	.form-container--stacked form button { margin-right: 10px; }
	.form-container--stacked form > div:not(.ion-form-group):last-of-type { padding: 0 10px; }
	.form-container--stacked form > div:not(.ion-form-group):last-of-type > div { margin-left: auto; }
}

/* Form Inline
================================================== */
.form-container-inline { justify-content: center; }
.form-container-inline > div { width: 100%; max-width: 100%; overflow: hidden; }
.form-container-inline form { position: relative; overflow: hidden; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; margin: 0 -15px; }
.form-container-inline label { font-weight: 400!important; text-transform: capitalize; margin-bottom: 15px!important; }
.form-container-inline input { font-size: 17px; border: 0!important; height: 29px; padding: 0 15px!important; border-radius: 14.5px!important; background: var(--gray); color: var(--secondary); }
.form-container-inline button { width: 153px; height: 53px; line-height: 53px; border-radius:0; background: var(--secondary); border-color: var(--secondary); text-transform: capitalize; padding: 0; letter-spacing: .025em; margin: 7px; font-family: 'Nunito', sans-serif; }
.form-container-inline button:hover { color: var(--secondary); }
.form-container-inline .ion-form-group { margin: 0; flex: 1 1 auto; padding: 20px 15px; }
.form-container-inline .ion-form-group ::-webkit-input-placeholder, .form-container-inline .ion-form-group select:invalid { color: #191919; text-transform: capitalize; }
.form-container-inline--btn-arrow button { background-color: var(--secondary); border-color: var(--secondary); font-size: 0; width: 53px; height: 53px; line-height: 53px; border-radius: 50%; margin: 30px 15px 0; display: flex; align-items: center; justify-content: center; }
.form-container-inline--btn-arrow button::after { content: '\f061'; width: 53px; height: 53px; line-height: 57px; border-radius: 50%; font-size: 28px; font-family: "Font Awesome 5 Pro"; font-style: normal; font-weight: 400; -webkit-font-smoothing: antialiased; }
@media (min-width: 501px) {
	.form-container-inline .ion-form-group { flex: 1 1 33.33%; }
	.form-container-inline--last-grow .ion-form-group:last-of-type { flex: 2 0 100%!important; min-width: 344px; }
}

.form-container-inline--hide-labels label { position: absolute; left: 110vw; top: -110vh; visibility: hidden; opacity: 0; }

/* Form Swap
================================================== */
.form-swap { text-align: left; }
.form-swap p { font-size: 15px; font-weight: bold; margin: 0 0 10px; color: inherit; }
.form-swap a { color: inherit; }
.form-swap .is-required:after { display: inline-block; content: '*'; color: #dc3545; margin-left: .5em; }
.form-swap .nav { font-size: 15px; margin: 0 0 10px; display: flex; flex-wrap: wrap; }
.form-swap .nav li { margin: 0 0 8px; }
.form-swap .nav a { position: relative; display: block; padding: 0 15px 0 28px; }
.form-swap .nav a::before { content: ''; position: absolute; left: 0; top: 0; height: 20px; width: 20px; background: var(--gray-alt); display: block; transition: 0.3s; }
.form-swap .nav a::after { content: "\f00c"; color: var(--primary); font-size: 18px; position: absolute; left: 1px; top: 2px; opacity: 0; font-family: "Font Awesome 5 Pro"; font-style: normal; font-weight: 400; line-height: 1; transition: 0.3s; }
.form-swap .nav a:hover::after { opacity: .5; transition: 0.3s; }
.form-swap .nav a.active::after { opacity: 1; }


/* ==========================================================================
   Accordion
============================================================================= */
.launch-accordion { margin: 0; list-style: none; padding: 0; }
.launch-accordion > li { margin-bottom: 15px; }
.launch-accordion > li > h4 { position: relative; font-size: 18px; font-weight: 400; background-color:#f1f1f1; color: #000; margin: 0; border: 0; -webkit-transition:background-color 0.05s ease; -o-transition:background-color 0.05s ease; transition:background-color 0.05s ease; padding: 15px 50px 16px 15px; line-height: 1.333em; }
.launch-accordion > li > h4::after { content: '+'; right: 35px; color: #adadad; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); position: absolute; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; }
.launch-accordion > li.active > h4:after { content: '-'; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; }
.launch-accordion > li > h4:hover { cursor: pointer; }
.launch-accordion > li > h4:hover, .launch-accordion > li.active > h4, .launch-accordion.no-margin > li.active > h4, .launch-accordion > li:focus > h4 { background-color: rgba(189,190,192,0.44); -webkit-transition: background-color 0.3s; -o-transition: background-color 0.3s; background-color: all 0.3s; }
.launch-accordion > li > div { background-color: #f7f7f7; border-color: #ecebeb; padding: 30px 20px; display: none; }
.launch-accordion > li > div p { margin: 20px 0; }
.launch-accordion > li > div ul { list-style: disc; margin: 20px 0; }
.launch-accordion > li > div ul li { margin: 0 0 10px; }
.launch-accordion > li > div *:last-child { margin-bottom: 0; }
.launch-accordion > li > div *:first-child { margin-top: 0; }
.launch-accordion > li:focus { outline: none; }
.launch-accordion.no-margin > li.active + li > h4, .launch-accordion.no-margin > li:hover + li > h4 { border-color: #ecebeb; border-top: 0; }
.launch-accordion.faqs h4 { padding-left: 70px; }
.launch-accordion.faqs h4::before { content: 'Q:'; color: var(--primary); font-size: 30px; position: absolute; top: 45%; left: 30px; transform: translateY(-50%); }
.launch-accordion.faqs > li > div { padding: 30px; }
.launch-accordion.faqs > li > div:not([itemprop="acceptedAnswer"])::before,
.launch-accordion.faqs > li div[itemprop="text"]::before { content: 'A: '; color: var(--primary); font-size: 20px; }
.launch-accordion.faqs > li div > *:first-child { display: inline; }
@media (min-width: 768px) {
	.launch-accordion > li > h4 { padding: 15px 65px 15px 35px; }
	.launch-accordion > li > div { padding: 20px 35px; }
}


/* ==========================================================================
   Areas
============================================================================= */
#areas { padding: 100px 0; text-align: center; background: var(--primary); }
.areas { list-style: none; display: flex; flex-wrap: wrap; font-family: var(--secondary-font); color: var(--dark); font-size: 25px; letter-spacing: .1em; margin: -15px; padding-left: 0; }
.areas li { padding: 15px; flex: 0 1 300px; }
.areas a { color: inherit; }
.areas a:hover { color: var(--white); }
@media (min-width: 1199px) {
	#areas { text-align: left; }
	#areas h2 { padding: 0 6.5vw; text-align: right; margin: 0; }
}
@media (max-width: 1200px) {
	.areas { justify-content: center; }
}

/* ==========================================================================
  Home Page
============================================================================= */

/* Home Banner
============================================================================= */
#home-banner { position: relative; padding-top: var(--header-height); overflow: hidden; background-size: cover; background-position: center; }
#home-banner .container { position: relative; z-index: 9; height: 100%; }
#home-banner .home-banner-image img { width: 100%; }

/* Home Banner Prompt */
#home-banner .prompt { font-size: 74px; color: var(--dark); position: relative; padding: 15px 0 55px; text-align: center; width: 875px; max-width: 100%; margin: 0 auto; letter-spacing: .05em; }
#home-banner .prompt .lead { font-size: inherit; font-family: var(--secondary-font); color: inherit; line-height: 1; margin: 0; }
#home-banner .prompt .sub { font-size: 0.4em; margin: 1.2em 0 0; font-family: var(--primary-font); color: inherit; text-transform: none; letter-spacing: .05em; }
@media (max-width:991px) {
	#home-banner .prompt { padding-top: 45px; font-size: 60px; }
}
@media (max-width:500px) {
	#home-banner .prompt { font-size: 40px; }
}

/* Home Banner Carousel */
#home-banner-carousel { position: absolute; top: 0; left: 0; height: 100%; width: 100%; }
#home-banner-carousel .carousel-inner, #home-banner-carousel .carousel-item { height: 100%; }
#home-banner-carousel .carousel-indicators li { width: 8px; height: 8px; border: 1px solid rgba(255, 255, 255, .65); background: transparent; opacity: 1; }
#home-banner-carousel .carousel-indicators li.active { background: #fff; }
@media (max-width:500px) {
	#home-banner-carousel { display: none; }
}


/* Home Stats
============================================================================= */
#home-stats { padding: 70px 0 40px; text-align: center; }
.stats { list-style: none; margin: 0; padding: 0; display: inline-flex; justify-content: center; flex-wrap: wrap; color: var(--dark); }
.stats__item { padding: 0 30px 30px; letter-spacing: .05em; }
.stats__number { font-size: 100px; font-family: var(--secondary-font); }
.stats__description { font-size: 22px; display: block; }
@media (max-width:1345px) {
	.stats__number { font-size: 70px; }
	.stats__description { font-size: 20px; }
}
@media (min-width:930px) and (max-width:1199px) {
	.stats__item { padding: 0 20px 30px; }
	.stats__number { font-size: 45px; }
	.stats__description { font-size: 16px; }
}
@media (max-width:500px) {
	.stats { display: block; }
	.stats__number { font-size: 45px; }
	.stats__description { font-size: 16px; }
}

/* Home CTAs
============================================================================= */
#home-ctas { padding: 0; }
#home-ctas .ctas { margin-bottom: -70px; }

/* CTAs */
.ctas { }
.cta { position: relative; width: 593px; max-width: 100%; margin: 0 auto 30px; padding: 55px 60px; z-index: 2; }
.cta::before { content: ''; position: absolute; top: 0; left: 0; transform: scale(.9); opacity: 0; box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); height: 100%; width: 100%; background: #fff; border-radius: 60px; transition: .5s; }
.cta__icon { height: 116px; width: 116px; border-radius: 50%; background-color: var(--primary); display: inline-flex; align-items: center; position: relative; z-index: 2; }
.cta__icon img { max-width: 95px; max-height: 95px; }
.cta__title { font-size: 46px; font-family: var(--secondary-font); color: var(--dark); margin: 25px 0 40px; transition: 0.5s; position: relative; z-index: 3; text-transform: capitalize;}
.cta__links { font-size: 20px; display: inline-flex; list-style: none; margin: 0 -10px; padding: 0; text-transform: capitalize; position: relative; z-index: 3;  text-transform: capitalize;}
.cta__links li { padding: 0 10px; }
.cta__links i { display: block; margin-top: 10px; font-size: 26px; color: #b7b7b7; opacity: 0; transition: .5s; }
.cta__links a { color: #06372e; }
.cta__links a:hover i { color: var(--primary); transition: .5s; }
.cta:hover::before { transform: scale(1); opacity: 1; transition: .5s; }
.cta:hover .cta__links i { opacity: 1; transition: .5s; }
@media (max-width:1650px) {
	.cta__title { font-size: 36px; }
}
@media (max-width:991px) {
	.cta::before { transform: scale(1); opacity: 1; }
	.cta .cta__links i { opacity: 1; }
}
@media (max-width:500px) {
	.cta__links { display: block; }
	.cta__links a { display: flex; align-items: center; padding: 12px 0; }
	.cta .cta__links i { display: inline-block; padding-left: 10px; margin: 0; }
}

/* Home Welcome
============================================================================= */
#home-welcome { color: #fff; background: var(--dark); padding: 224px 0 100px; line-height: 2.5em; }
#home-welcome h2 { margin-bottom: 45px; }
#home-welcome .btn { margin-top: 25px; }
@media (max-width: 1199px) {
	#home-welcome { padding: 150px 0 100px; }
}

/* Home Management Types
============================================================================= */
#home-management-types { padding: 0 0 80px; background: var(--dark); color: #fff; text-align: center; }
.clouds { margin-bottom: 80px; }
.property-type { position: relative; display: block; }

.property-type__image img { transform-origin: bottom; transition: .5s; }
.property-type__image--residential img { margin-bottom: -12px; }
.property-type__title { font-size: 22px; font-family: var(--secondary-font); font-style: italic; color: #fff; transition: .4s; }
@media (min-width: 992px) {
	#home-management-types { padding: 0; margin-bottom: 250px; }
	.property-type__title { color: var(--secondary); position: absolute; top: 100%; left: 0; right: 0; }
	.property-type:hover .property-type__image img { transform: scale(1.1); transition: .5s cubic-bezier(.07,.66,.53,1); }
	.property-type:hover .property-type__title { color: var(--primary);  transition: .4s; }
}
@media (min-width: 1199px) {
	.property-type__title { font-size: 34px; }
}
@media (max-width: 991px) {
	.property-type { margin: 50px 0; }
	.property-type__image { border-radius: 40px; background: #fff; padding: 30px 15px 0; width: 300px; margin: 0 auto; box-shadow: 0px 33px 79px 0px rgb(0 0 0 / 8%); overflow: hidden; }
}



/* Home Analysis
============================================================================= */
#analysis-banner { }
#analysis-banner h2 { line-height: 1; }
#analysis-banner.pm { padding: 130px 0; }
#analysis-banner .form-container-inline .ion-form-group { flex: 1 1 50%; }


@media (max-width: 991px) {
	#analysis-banner .form-container-inline { margin-bottom: 50px; }
}

/* Home Testimonials
============================================================================= */
#home-testimonials { padding: 95px 0 125px; }
@media (min-width: 600px) {
	#testimonial-carousel { max-width: 85%; margin: 0 auto; }
}
@media (max-width: 600px) {
	#testimonial-carousel { text-align: center; }
}

/* Testimonial Carousel */
#testimonial-carousel { font-family: var(--secondary-font); }
#testimonial-carousel .carousel-inner { min-height: 150px; margin-bottom: 50px; overflow: visible; }
#testimonial-carousel [class*='carousel-control'] { display: inline-block; position: relative; opacity: 1; font-size: 28px; width: auto; }
#testimonial-carousel [class*='carousel-control']:hover, #testimonial-carousel [class*='carousel-control']:focus { color: var(--secondary); }
#testimonial-carousel .blockquote { position: relative; color: #fff; font-size: 20px; line-height: 1.5; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--primary-font); padding: 90px 2.4vw 120px; text-align: center; margin: 0 auto; }
#testimonial-carousel .blockquote-bubble { position: absolute; top: 0; left: 0; width: 100%; height: 100%; color: var(--dark); z-index: -1; }
#testimonial-carousel .blockquote p { margin: 0; }
#testimonial-carousel .blockquote p ~ p { margin: 10px 0 0; }
@media (min-width: 1199px) {
	#testimonial-carousel .blockquote-bubble { top: -7%; left: -7%; height: 114%; width: 114%;  }
	#testimonial-carousel .blockquote--bubble-1 { padding: 130px 3vw 150px 1vw; }
	#testimonial-carousel .blockquote--bubble-1 .blockquote-bubble,
	#testimonial-carousel .blockquote--bubble-2 .blockquote-bubble { top: -12%; left: -12%; height: 124%; width: 124%; }
	#testimonial-carousel .blockquote--bubble-2 { padding: 120px 3vw 150px; }
	#testimonial-carousel .carousel-item .blockquote:first-child  { z-index: 0; }
	#testimonial-carousel .carousel-item .blockquote:nth-child(2)  { z-index: 1; }
	#testimonial-carousel .carousel-item .blockquote:last-child  { z-index: 2; }
	#testimonial-carousel .carousel-item:nth-child(odd) .blockquote:nth-child(odd) svg { color: var(--dark); }
	#testimonial-carousel .carousel-item:nth-child(odd) .blockquote:nth-child(even) svg { color: var(--secondary); }
	#testimonial-carousel .carousel-item:nth-child(even) .blockquote:nth-child(odd) svg { color: var(--secondary); }
	#testimonial-carousel .carousel-item:nth-child(even) .blockquote:nth-child(even) svg { color: var(--dark); }
	#testimonial-carousel .carousel-item .blockquote:nth-child(2) .blockquote-bubble { filter: drop-shadow(0px 11px 62px rgb(0 0 0 / 0.22)); transition: .4s; }
	#testimonial-carousel .carousel-item .blockquote:last-child, #testimonial-carousel .carousel-item.carousel-item-left .blockquote:first-child { opacity: 0; transition: 0.6s ease; transform-origin: bottom; }
	#testimonial-carousel .carousel-item .blockquote:last-child { transform: scale(.4) translateX(100%); }
	#testimonial-carousel .carousel-item.active .blockquote:last-child { opacity: 1; transition: 0.6s; transform: scale(1) translateX(0); }
	#testimonial-carousel .blockquote p { font-size: 1vw; }
	.multi-item-carousel .blockquote { flex: 0 0 33%; }
}
@media (max-width: 1200px) {
  #testimonial-carousel .carousel-item > * ~ * { display: none!important; }
	#testimonial-carousel .blockquote p { width: 70%; }
	#testimonial-carousel .blockquote { padding: 200px 5vw 220px; }
	#testimonial-carousel .carousel-item:nth-child(even) .blockquote svg { color: var(--secondary); }
}
@media (max-width: 991px) {
	#testimonial-carousel .blockquote { background: var(--dark); border-radius: 60px; padding: 80px 5vw; }
	#testimonial-carousel .carousel-item:nth-child(even) .blockquote { background: var(--secondary); }
	#testimonial-carousel .blockquote p { width: 100%; }
	#testimonial-carousel .blockquote-bubble { display: none; }
}

.multi-item-carousel .carousel-item {
  justify-content: space-between;
}
.multi-item-carousel .carousel-control {
  height: 87px;
  width: 87px;
  color: #fff;
  font-size: 41px;
  background: var(--primary);
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}
.multi-item-carousel .carousel-control:hover {
  background: var(--secondary);
}
@media (min-width: 1199px) {
  .multi-item-carousel .carousel-inner,
  .multi-item-carousel .carousel-item.active,
  .multi-item-carousel .carousel-item-next,
  .multi-item-carousel .carousel-item-prev {
    display: flex;
  }

  .multi-item-carousel .carousel-item-next:not(.carousel-item-left),
  .multi-item-carousel .active.carousel-item-right {
    -webkit-transform: translateX(33.33%);
    transform: translateX(33.33%);
  }

  .multi-item-carousel .carousel-item-prev:not(.carousel-item-right),
  .multi-item-carousel .active.carousel-item-left {
    -webkit-transform: translateX(-33.33%);
    transform: translateX(-33.33%);
  }
}

/*  */
@media (max-width: 1200px) {
  .multi-item-carousel .carousel-item > * ~ * {
    display: none!important;
  }
}

.unwrap-testimonials .blockquote-bubble { display: none; }
.unwrap-testimonials .blockquote { margin: 50px 0; padding: 40px 0 15px 30px; border-left: 10px solid var(--gray); }

/* Home Services
============================================================================= */
#home-services { padding: 0 0 35px; }
#home-services header { text-align: center; margin-bottom: 100px; }
.services { font-size: 18px; font-weight: 600; }
.service-item { position: relative; line-height: 1.667em; letter-spacing: .05em; display: block; padding: 30px 25px; color: var(--body-text); }
.service-item::before { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: #fff; border-radius: 40px; opacity: 0; transform: scale(.9); box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); transition: .5s; z-index: -1; }
.service-item__icon { height: 67px; width: 67px; line-height: 67px; border-radius: 50%; background: var(--primary); margin-bottom: 15px; position: relative; z-index: 1; }
.service-item__icon img { max-height: 50px; max-width: 50px; vertical-align: bottom; }
.service-item__title { font-size: 30px; letter-spacing: .1em; font-weight: 400; color: var(--secondary); font-family: var(--secondary-font); margin: 0 0 10px; position: relative; z-index: 1; }
.service-item p { margin-bottom: 10px; }
.service-item:hover::before { opacity: 1; transform: scale(1); transition: .5s cubic-bezier(.07,.66,.53,1); }
.service-item::after { color: var(--primary); display: block; text-align: right; content: '\f061'; font-size: 26px; line-height: 1; font-family: "Font Awesome 5 Pro"; font-style: normal; font-weight: 600; -webkit-font-smoothing: antialiased; opacity: 0; transform: translateX(-10px); transition: .4s; }
.service-item:hover::after { opacity: 1; transition: .8s cubic-bezier(.07,.66,.53,1); transform: translateX(0); transition-delay: .3s;  }
.service-item:hover { color: inherit; }
@media (min-width: 1200px) and (max-width: 1370px) {
	.services .col-xl { flex: 0 1 33.33%; }
}
@media (max-width: 991px) {
  #home-services { padding: 100px 0; }
	.service-item { width: 593px; max-width: 100%; margin: 0 auto; }
	.service-item::before { opacity: 1; transform: scale(1); }
	.service-item::after { opacity: 1; transform: translateX(0); }
}

/* Home Blog
============================================================================= */
#home-blog { padding: 0 0 85px; }
#home-blog header { padding-top: 80px; }
#home-blog .form-container-inline { width: 275px; max-width: 100%; }
@media (min-width: 1200px) and (max-width: 1500px) {
	#home-blog h2 { font-size: 50px; }
}
@media (max-width: 1200px) {
	#home-blog header { text-align: center; }
	#home-blog .form-container-inline { margin: 0 auto 50px; }
}

/* ==========================================================================
  Secondary/Inner Pages
============================================================================= */
.body-container { padding-top: 70px; padding-bottom: 70px; }

/* Split CTAs */
.side-content { }
.side-content .ctas { }
.side-content .ctas [class*='col-'] { width: 100%; flex: 1 1 100%; max-width: 100%; padding: 0; }
.side-content .cta__title { font-size: 22px; margin-bottom: 15px; }
.side-content .cta__links { display: block; }
.side-content .cta__links a { display: flex; align-items: center; }
.side-content .cta__links a i { padding-left: 10px; position: relative; top: -2px; }

/* Secondary Banner
============================================================================= */
#secondary-banner { position: relative; height: 680px; }
#secondary-banner.overlay::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, .4); }
#secondary-banner .image-list { display: none !important; }

.hero { padding-top: calc(var(--header-height) + 65px); text-align: center; }
.hero h1, .hero .hero__lead, .hero__lead h1 { font-size: 72px; margin-bottom: 50px; font-family: var(--secondary-font); }
.hero h2, .hero .hero__sub { font-size: 30px; margin: -30px 0 50px; font-weight: 400; font-family: var(--primary-font);  }
.hero  .hero__sub-pm-replace {margin-top:10px !important;}
@media (max-width:991px) {
	.hero h1, .hero .hero__lead { font-size: 48px; }
	.hero h2, .hero .hero__sub { font-size: 20px; }
}
@media (max-width:500px) {
	.hero h1, .hero .hero__lead { font-size: 43px; }
	.hero h2, .hero .hero__sub { font-size: 18px; }
}

/* No Hero Image */
main.no-hero { margin-top:var(--header-height); border-top: 15px solid var(--gray); }

/* ==========================================================================
  About Page
============================================================================= */
.bios { padding: 45px 0; }
.bios .bio:first-child { border-top: solid 1px #ccc; }
.bios .bio { border-bottom: solid 1px #ccc; padding: 55px 0; }
.bio__name { font-size: 30px; line-height: 1.25em; margin: 0 0 30px; text-transform: capitalize; }
.bio__title { display: block; color: var(--primary); font-size: 24px; text-transform: none; }
.bio__image .circle-img { position: relative; height: 0; width: 100%; padding-top: 100%; border-radius: 50%; overflow: hidden; border: 2px solid var(--primary); }
.bio__image img { position: absolute; top: 0; left: 0; height: 100%; width: 100%; object-position: top; border: 5px solid #fff; border-radius: 50%; }
.bio__content p { margin-bottom: 20px; }
.bio__contact { margin-top: 1.5em; }
.bio__contact:before { content: ""; display: table; clear: both; }
.bio__contact .item { display: block; }
@media (max-width:1199px) {
	.bio__image { align-self: flex-start; }
}
@media (min-width:768px) {
	.bio { display: flex; }
	.bio__contact { width: 70%; margin: auto 0; }
	.bio__image { width: 25%; min-width: 25%; margin-right: 5%; margin-bottom: 0; }
}
@media (max-width:767px) {
	.bio { text-align: center; }
	.bio__image { max-width: 300px; margin: 0 auto 35px; }
}

/* Bio Popups */
#bioModal button { position: absolute; right: 10px; top: 5px; z-index: 99; width: 30px; height: 30px; line-height: 30px; text-align: center; padding: 0; }
.bio-popup { padding: 15px; }
.bio-popup .bio__content { display: block; }


/* ==========================================================================
  Blog Page
============================================================================= */

/* Main Template */
.blog-container { }
.blog-container .main-panel { }
.blog-container .side-panel { float: none; width: unset; align-self: flex-start; }
.blog-container .index { display: block; margin: 30px 0; text-transform: capitalize; font-weight: bold; }
@media (min-width:992px) {
	.blog-container { display: flex; justify-content: space-between; }
	.blog-container .main-panel { flex: 1 1 auto; margin-right: 105px; }
	.blog-container .side-panel { flex: 0 0 380px; margin-right: auto; }
}

/* Search */
#tipue_search_content { max-width: 100% !important; padding: 0 !important; }
#tipue_search_content { padding: 0!Important; max-width: 100%!Important; font-weight: 400; }
#tipue_search_content .tipue_search_content_title { font-size: 24px; font-weight: 400; color: var(--secondary); line-height: 1.15; }
#tipue_search_content .tipue_search_content_title ~ .tipue_search_content_title { margin-top: 50px; }
#tipue_search_content .tipue_search_content_url a { color: var(--secondary)!Important; font-size: 16px!Important; font-weight: 400!Important; }
#tipue_search_content .tipue_search_content_text { font-weight: 400 !important; }
#tipue_search_input { background: var(--gray); padding: 10px; border-radius: 15px 0 0 15px; flex: 1 1 auto; border: 0; font-size: 16px; color: #000; }
#tipue_search_input::-webkit-input-placeholder {  }
.tipue_search_group { display: flex; height: 30px; width: 100%; }
.tipue_search_button { color: #fff; background: var(--secondary); border: 1px solid var(--secondary); border-radius: 0 15px 15px 0; flex: 0 0 37px; padding: 0 5px 0 0; transition: 0.4s; outline: none!important; }
.tipue_search_button:hover { background: #fff; color: var(--secondary); transition: 0.4s; }

/* Side Panel
============================================================================= */
.blog-container .side-panel { background: #fff; border-radius: 40px; padding: 40px; box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); }
.blog-container .side-panel section { margin: 0 0 45px; }
.blog-container .side-panel section h4 { font-size: 15px; text-transform: capitalize; padding-bottom: 15px; margin: 0 0 20px; border-bottom: 1px solid #cccccc; }
.blog-container .side-panel section ul { list-style: none; padding: 0; margin: 0; }
.blog-container .side-panel section a { }
.blog-container .side-panel section a:hover { }
.blog-container .side-panel section .social a:hover { color: #fff; }

/* Blog Search */
.blog-container .side-panel .tipue_search_group { display: flex; }
.blog-container .side-panel .tipue_search_group input { flex: 1 1 auto; background: #fff !important; padding: 10px !important; }
.blog-container .side-panel .tipue_search_group button { flex: 0 0 46px; }

/* Recent */
.blog-recent-posts { }
.blog-recent-posts li { margin-bottom: 25px; }
.blog-recent-posts li a { display: flex; justify-content: space-between; }
.blog-recent-posts .post-thumb { position: relative; flex: 0 0 127px; height: 85px; overflow: hidden; margin-right: 20px; background: var(--dark); }
.blog-recent-posts .post-thumb img { position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 1; transition: 0.7s; }
.blog-recent-posts .post-thumb .video { color: var(--primary); text-align: center; line-height: 85px; font-size: 50px; transition: 0.7s; }
.blog-recent-posts .post-thumb .default { max-height: 60%; width: auto; height: auto; max-width: 80%; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: 0.7s; filter: brightness(0) invert(1); }
.blog-recent-posts .post-details { font-size: 14px; line-height: 1.2; flex: 1 1 auto; }
.blog-recent-posts .post-details .post-title { margin: 0 0 3px; }
.blog-recent-posts .post-details .post-date { color: #8f8f8f; font-size: 0.9em; }

/* Recent - Hover Effects */
.blog-recent-posts li a:hover .post-thumb img, .blog-recent-posts li a:hover .post-thumb .video { transform: scale(1.1); transition: 0.7s; }
.blog-recent-posts li a:hover .post-thumb img.default { transform: translate(-50%, -50%) scale(1.1); transition: 0.7s; }

/* Categories */
.blog-category-list li { font-size: 15px; display: block; padding: 0px 10px; margin: 0 0 5px; }
.blog-category-list li::before { content: '- '; }
.blog-category-list li a {  }


/* Tags */
.blog-tag-list li { font-size: 14px; display: inline-block; padding: 8px 10px 7px; line-height: 1; margin-left: 1px; margin-bottom: 5px; border-radius: 3px; background: var(--primary); transition: 0.3s; border-bottom: 2px solid rgba(0,0,0,0.1); }
.blog-tag-list li a { color: #fff;  }
.blog-tag-list li:hover { box-shadow: 1px 1px 5px rgba(0,0,0,0.35); transform: scale(1.01); transition: 0.3s; background: var(--primary); }

/* Authors */
.blog-author-list { display: flex; flex-wrap: wrap; text-align: center; justify-content: space-around; }
.blog-author-list li { flex: 0 0 80px; }
.blog-author-list .author-image { height: 100px; width: 100px; margin: 0 auto 5px; border-radius: 50%; border: 3px solid var(--primary); background: var(--primary); position: relative; overflow: hidden; }
.blog-author-list .author-image img { position: absolute; top: 0; left: 0; transition: 0.7s; }
.blog-author-list .author-image img[src*='favicon'] { filter: brightness(0) invert(1); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.blog-author-list .author-name { font-size: 12px; letter-spacing: 0.025em; line-height: 1.1em; text-transform: none; }
.blog-author-list li a:hover .author-image img {  transform: scale(1.1); transition: 0.7s; }
.blog-author-list li a:hover .author-image img[src*='favicon'] { max-width: 80%; transform: translate(-50%,-50%) scale(1.1); }

/* Post
============================================================================= */
.blog-post { background: #fff; border: 0; }
.blog-post .post-featured { position: relative; display: block; height: 0; padding-top: 56.25%; overflow: hidden; background: var(--dark); }
.blog-post .post-featured img, .blog-post .post-featured iframe { position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 1; transition: 0.7s linear; }
.blog-post .post-featured img.default { max-width: 70%; height: auto; width: auto; margin: 0 auto; top: 50%; left: 50%; transform: translate(-50%, -50%); filter: brightness(0) invert(1); }
.blog-post .post-featured img:not(.default) { transform: scale(1.01); }
.blog-post a.post-featured:hover img:not(.default) { transform: scale(1.1); transition: 0.7s ease; }
.blog-post .post-header { padding: 30px 0 25px; text-transform: capitalize; border: 0; margin: 0; }
.blog-post .post-header .post-title { font-size: 30px; margin: 0 0 5px; padding: 0; border: 0; font-family: var(--secondary-font); text-transform: none; color: var(--secondary); }
.blog-post .post-header .post-date { font-size: 14px; color: var(--body-text); line-height: 1.1; }
.blog-post .post-body { padding: 25px 0 0; font-size: 17px; margin: 0; line-height: 1.5; }
.blog-post .post-footer { padding: 20px 0 35px; }
.blog-post .post-footer h4 { font-size: 15px; text-transform: capitalize; margin: 0 0 20px; }
.blog-post .post-footer-share { text-align: right; }
.blog-post .read-more { margin-top: 30px; display: flex; align-items: center; justify-content: flex-end; text-transform: capitalize; font-weight: bold;  text-align: right; }

/* Post Author */
.blog-post .post-footer-author { margin-top: 30px; padding-top: 30px; border-top: 1px solid #ccc; }
.blog-post .post-footer-author .author-image { position: relative; height: 130px; width: 130px; overflow: hidden; margin: 0 auto 30px; border-radius: 50%; }
.blog-post .post-footer-author .author-image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.blog-post .post-footer-author .author-details { text-align: center; }
.blog-post .post-footer-author .author-details .author-name { font-size: 18px; color: #333333; text-transform: capitalize; margin: 0; }
.blog-post .post-footer-author .author-details .author-title { font-size: 14px; color: var(--body-text); line-height: 1.1; text-transform: capitalize; margin-bottom: 15px; }
.blog-post .post-footer-author .author-details .author-bio { display: none; }
.blog-post .post-footer-author .author-details .author-bio, .author-bio-preview { font-size: 15px; color: var(--body-text); line-height: 1.1; }
.blog-post .post-footer-author .author-details .author-bio > *:last-child { display: inline; }
.blog-post .post-footer-author .author-details .author-bio-toggle { font-size: 13px; display: inline; color: var(--body-text); text-transform: capitalize; }
@media (min-width:501px) {
	.blog-post .post-footer-author .author-image { float: left; margin: 5px 30px 10px 0; }
	.blog-post .post-footer-author .author-details { text-align: left; }
}

/* Post List
============================================================================= */
.blog-post-list { }
.blog-post-list .blog-post { margin-bottom: 30px; }
.blog-post-list .post-body { padding: 0 0 35px; font-size: 18px; color: var(--body-text); line-height: 1.5; }
.blog-post-list .blog-post .post-featured .default svg { position: absolute; top: 50%; left: 50%; max-width: 70%; transform: translate(-50%, -50%); }
.blog-post-list .blog-post .post-featured .default #logo-text * { fill: #fff; }

/* Split Blog Post List */
/* @media (min-width:768px) {
	.blog-post-list .blog-post { display: flex; }
	.blog-post-list .post-image { flex: 0 1 40%; min-width: 40%; padding: 30px 0 30px 30px; }
	.blog-post-list .post-featured { height: 100%; padding: 0; }
	.blog-post-list .post-content { flex: 1 1 auto; }
	.blog-post-list .post-body { padding-bottom: 30px; }
} */

/* Inline Blog Post List
============================================================================= */
#blog-inline { display: flex; flex-wrap: wrap; }
#blog-inline .blog-item { padding: 30px; flex: 0 1 50%; }
#blog-inline .blog-post { position: relative; background: #fff; border: 0; border-radius: 60px; padding: 60px 3vw; transition: .4s; letter-spacing: .05em; min-height: 375px; }
#blog-inline .blog-post:hover { box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); transition: .4s; }
#blog-inline .blog-post .post-image {  }
#blog-inline .blog-post .post-featured { padding-top: 56.25%; display: none; }
#blog-inline .blog-post .post-icon { flex: 0 0 88px; align-self: flex-start; }

#blog-inline .blog-post .post-link a { color: var(--secondary); }
#blog-inline .blog-post .post-link i { display: block; font-size: 26px; color: #b7b7b7; margin-top: 10px; transition: 0.4s; }
#blog-inline .blog-post .post-link a:hover i { color: var(--primary); transition: 0.4s; }
#blog-inline .blog-post:hover .post-link { opacity: 1; transition: .4s; }
#blog-inline .blog-post .post-header { padding: 0; margin: 0 0 10px; word-wrap: break-word; }
#blog-inline .blog-post .post-title { font-size: 30px; margin: 0 0 25px; color: var(--dark); text-align: left; }
#blog-inline .blog-post .post-body { padding: 0 2.5vw 0 0; margin: 0; font-size: 18px; }
#blog-inline .blog-post .post-body .post-content { }
@media (min-width:992px) {
	#blog-inline .blog-post .post-link { opacity: 0; transition: .4s; }
}
@media (min-width:601px) {
	#blog-inline .blog-post .post-link { position: absolute; right: 60px; bottom: 60px; width: 73px; }
}
@media (min-width:1200px) and (max-width:1500px) {
	#blog-inline .blog-item { flex: 0 1 100%; }
}
@media (max-width:991px) {
	#blog-inline { margin-top: 50px; }
	#blog-inline .blog-item { flex: 0 1 100%; }
	#blog-inline .blog-post { box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); }
	#blog-inline .blog-post .post-link { opacity: 1; }
}
@media (max-width:600px) {
	#blog-inline .blog-post { flex-direction: column; }
	#blog-inline .blog-post .post-link { align-self: flex-end; margin-top: 30px; }
	#blog-inline .blog-post .post-icon { order: -1; width: 88px; margin-bottom: 30px; }
}
@media (max-width:450px) {
	#blog-inline .blog-post { padding: 30px; }
	#blog-inline .blog-post .post-title { font-size: 22px; }
	#blog-inline .blog-post .post-body { font-size: 16px; }
}

/* ==========================================================================
  Contact Page
============================================================================= */
.contact-info { list-style: none; padding-left: 15px; font-size: 20px; margin: 35px 0; }
.contact-info a { color: inherit; }
.contact-info a:hover { color: var(--primary); }
.contact-info > li { padding-left: 40px; position: relative; margin: 25px 0; }
.contact-info__icon { position: absolute; top: 0; left: 0; color: var(--primary); font-size: 25px; }
.contact-info table { font-size: 16px; margin: 20px 0; width: auto; }
.map-container { margin-bottom: -8px; }




/* ==========================================================================
  Pricing Page
============================================================================= */
#pricing { padding-bottom: 50px; }
#pricing table { margin: 50px auto 130px; }

/* Table Header */
#pricing thead {  }
#pricing thead th { font-size: 16px; color: var(--body-text); padding: 25px 15px; text-align: center; min-width: 321px; vertical-align: middle; font-weight: 400; font-family: var(--secondary-font); border-top-left-radius: 60px; border-top-right-radius: 60px; }
#pricing thead th h3 { display: block; font-size: 35px; line-height: .95em; color: inherit; margin: 0; letter-spacing: .025em; }
#pricing thead th h4 { font-size: 15px; font-weight: 300; margin: 15px 0 0; font-family: var(--primary-font);  }
#pricing thead th p { margin: 0; }
#pricing thead th:nth-child(1) { min-width: 355px; color: var(--secondary); }
#pricing thead th:nth-child(2) { background-color: var(--primary); }
#pricing thead th:nth-child(3) { background-color: var(--secondary); color: #fff; }

/* Table Body */
#pricing tbody { background-color: #fff; border-top: 15px solid #fff; border-bottom: 15px solid #fff; box-shadow: var(--box-shadow-xl); }
#pricing tbody th { position: relative; font-size: 16px; text-align: left; padding: 12px 15px 12px 35px; font-weight: 300;  }
#pricing tbody th small { display: block; }
#pricing tbody td { font-size: 16px; padding: 12px 15px; text-align: center; font-weight: 300; height: 52px; vertical-align: middle; overflow: auto; }
#pricing tbody td:nth-child(2) i { color: var(--primary); }
#pricing tbody td:nth-child(3) i { color: var(--secondary); }
#pricing tbody td i { font-size: 30px; }
#pricing tbody td:nth-child(2) .fa-times { color: #c5c5c5; }

/* Buttons */
#pricing tbody .table-footer { }
#pricing tbody .table-footer td { padding: 0; height: 0; border: 0; position: relative; overflow: visible; }
#pricing tbody .table-footer td .btn { min-width: 0; width: 100%; max-width: 80%; height: 51px; line-height: 51px; position: absolute; left: 50%; top: 35px; transform: translateX(-50%); }

@media (max-width: 1400px){
	#pricing thead th { min-width: unset!important; width: 25%; }
	#pricing thead th h3 { font-size: 25px; }
}

/* Mobile Table v2 */
@media (max-width: 991px){
	#pricing, #pricing thead, #pricing tbody, #pricing th, #pricing td, #pricing tr { display: block; border: 0!important; }
	#pricing thead tr { display: flex; }
	#pricing thead tr th:first-child { display: none; }
	#pricing thead tr th { flex: 1 1 33.33%; min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: 25px 5px; border-top-left-radius: 40px; border-top-right-radius: 40px; }
	#pricing thead th h3 { font-size: 18px; }
	#pricing tbody { border: 0; }
	#pricing tbody td { display: flex; flex-direction: column; justify-content: center; font-size: 16px; overflow: visible; padding: 15px 8px; height: auto; }
	#pricing tbody td:nth-child(2) { background-color: var(--primary); color: #fff; }
	#pricing tbody td:nth-child(2) i { color: #fff!important;  }
	#pricing tbody td:nth-child(3) { background-color: var(--secondary); color: #fff; }
	#pricing tbody td:nth-child(3) i { color: #fff!important;  }
	#pricing tbody td::before { text-align: left; min-width: 50%; font-size: 15px; }
	#pricing tbody td:first-child { font-size: 20px; font-weight: 500; padding: 15px 8px; margin: 30px 0 0; text-align: center; justify-content: center; background: #fff; }
	#pricing tbody td.not-included::after, #pricing tbody .footer td .btn { margin: 0; }
	#pricing tbody tr { display: flex; flex-wrap: wrap; border: 1px solid #ccc!important; border-bottom: 0!important; }
	#pricing tbody td { flex: 1 1 33.33%; margin: 0; }
	#pricing tbody td:first-child { flex: 1 0 100%; margin: 0; }
	#pricing tbody tr:last-child { border-bottom: 1px solid #ccc!important; }
	#pricing tbody th { text-align: center; flex: 1 1 100%; padding: 15px 8px; }
	#pricing tbody .table-footer td:first-child { display: none; }

}
@media (max-width: 475px){
	#pricing tbody td:first-child, #pricing tbody th small, #pricing tbody td small { font-size: 18px; }
	#pricing tbody td, #pricing thead tr th { font-size: 14px; line-height: 1.1; }
	#pricing tbody .table-footer td:not(:last-child){ display: none; }
	#pricing thead th h3 { font-size: 16px; overflow-wrap: break-word; }
	#pricing thead th h4 { font-size: 12px; }
	#pricing thead th br { display: none; }
}


/* ==========================================================================
  #Services Page(s)
============================================================================= */
.intro { padding-bottom: 85px; font-size: 17px; overflow: hidden; }
.intro p > a:not(.btn), .intro li > a:not(.btn) { font-weight: bold; }
.intro h1, .intro__lead { font-style: italic; }
.intro p { line-height: 2.5; }
.image-wrapper { position: relative; height: 0; width: 100%; padding-top: 42.39%; overflow: hidden; margin-bottom: 35px; }
.image-wrapper img { position: absolute; top: 0; left: 0; height: 100%; width: 100%; }

.form-cta { color: var(--secondary); position: relative; font-family: var(--primary-font); text-align: center; font-size: 25px; margin-top: 40px; font-weight: bold; }
.form-cta p { line-height: 1.6!important; }
.form-cta__arrow { position: absolute; right: -60px; bottom: -10px; transform: scaleX(-1) rotate(120deg); transform-origin: left; z-index: 2; }
.form-cta__arrow svg { fill: var(--dark); max-width: 131px; height: 50px; }
@media (min-width: 992px){
	.form-cta { }
	.form-cta__arrow { bottom: 0; transform: rotate(0deg); }
	.form-cta__arrow svg { max-width: 131px; }
}
@media (max-width: 991px){
	.form-cta { margin-bottom: 60px; }
}

/* AMP
============================================================================= */
.amp { text-align: center; padding-top: 5px; }
.amp a { color: inherit; }
.amp a:hover { color: var(--primary); }
.amp__lead { font-size: 42px; font-family: var(--secondary-font); line-height: 1; margin-top: 15px; }
.amp__sub { font-size: 20px; line-height: 1.5; margin-top: 15px; }
.amp__form { max-width: 800px; margin: 0 auto; min-height: 50px; }
.amp__form .ion-form { display: flex; justify-content: center; }
.amp__form .ion-form .ion-form-group {width:100%;max-width:100%;}
.amp__form .ion-form label { display: none; }
.amp__form .ion-form input { width:100%; border: 0 !important; height: 50px; padding: 0 15px;background:var(--gray); border-radius:0px !important;display:block; }
.amp__form .ion-form input::-webkit-input-placeholder {color:#000;font-weight:500;}
.amp__form .ion-form button { border:1px solid var(--light);background:var(--light);white-space: nowrap; text-transform: capitalize; font-weight:600; color: var(--body-text)!important; letter-spacing: .05em; max-width:150px;height: 43px; line-height: 22px; border-radius: 21.5px; text-transform: capitalize; font-size:20px; }
.amp__form .ion-form button:hover { background:#fff;color:var(--light) !important; }
@media (min-width: 601px){
	.amp__form .ion-form input {margin-right:10px;}
	.amp__form .ion-form .ion-form-group {max-width:80%;margin-right:10px;}
}
@media (max-width: 600px){
	.amp__lead { font-size: 34px; }
	.amp__sub { font-size: 20px; }
	.amp__form .ion-form { flex-wrap: wrap; }
	.amp__form .ion-form button { width: 100%; }
}


/* Cluster Content
============================================================================= */
#pm-cluster { position: relative; margin-top: 40px; z-index: 2; }
#pm-cluster > .container-fluid { position: relative; padding-top: 59px; }


/* Sub Nav */
#sub-nav { position: absolute; top: 0; left: 15px; right: 15px; height: 59px; color: #fff; text-transform: capitalize; }
#sub-nav::before { content: ''; background-color: var(--dark); position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 1685px; max-width: 100%; z-index: -1; transition: 0.5s; }
#sub-nav .nav { height: 100%; }
#sub-nav .nav-item { display: flex; justify-content: center; align-items: center; }
/* #sub-nav .nav-item ~ .nav-item::before { content: '|'; color: inherit; font-size: 16px; } */
#sub-nav .nav-link { color: inherit; }
#sub-nav .nav-link:hover, #sub-nav .nav-item.active .nav-link { color: var(--light); transition: text-shadow 0.3s; text-shadow: 0.5px 0 0 currentColor; }
#sub-nav.affix { position: fixed; height: 50px; line-height: 1; top: 50px; left: 0; right: 0; padding: 5px 0; z-index: 99; }
#sub-nav.affix::before { transform: translateX(-50%) scaleX(1.5); transition: 0.5s; box-shadow: var(--box-shadow); }
@media (min-width:1200px) and (max-width:1310px) {
	#sub-nav { font-size: 15px; }
	#sub-nav .nav-link { padding: .5rem; }
}
@media (max-width:1199px) {
	#sub-nav .nav-item, #sub-nav .nav-item.prev:before  { display: none; }
	#sub-nav .nav-item.prev, #sub-nav .nav-item.next, #sub-nav .nav-item.active { display: inherit; }
	#sub-nav .nav-item.prev::before { content: '\f053'; display: inline-block; font-family: "Font Awesome 5 Pro"; font-style: normal; font-weight: 300; -webkit-font-smoothing: antialiased; font-size: 16px; }
	#sub-nav .nav-item.next::after { content: '\f054'; display: inline-block; font-family: "Font Awesome 5 Pro"; font-style: normal; font-weight: 300; -webkit-font-smoothing: antialiased; font-size: 16px; }
}
@media (max-width:768px) {
	#sub-nav .nav-item.active:not(:first-child):not(:last-child) { display: none; }
}
@media (max-width:500px) {
	#sub-nav .nav-item { font-size: 0; }
	#sub-nav .nav-item.prev .nav-link::before { content: 'Prev'; font-size: 16px; }
	#sub-nav .nav-item.next .nav-link::after { content: 'Next'; font-size: 16px; }
	#sub-nav .nav-item.active, #sub-nav .nav-item.next:nth-child(2)::before  { display: none; }
}


/* PM Services */
#pm-services h2 { margin-bottom: 70px; }


/* PM Guarantees */
#pm-guarantees { background: var(--dark); color: #fff; }
#pm-guarantees h2 { margin: 0 0 100px; }
#pm-guarantees .guarantees-container { padding: 150px 5.2vw; }
#pm-guarantees .guarantee { font-size: 20px; }
#pm-guarantees .guarantee__title { font-size: 30px; font-weight: 600; margin: 0 0 25px;  }
#pm-guarantees .guarantee p { min-height: 150px; }
@media (min-width:1200px) {
	#pm-guarantees .guarantee { position: relative; padding-left: 10vw; }
	#pm-guarantees .guarantee__icon { position: absolute; top: 0; left: 0; width: 8vw; color: var(--primary); }
}
@media (max-width:1199px) {
	#pm-guarantees { text-align: center; }
	#pm-guarantees .guarantee__icon { margin-bottom: 30px; }
}

/* Guarantee Carousel */
#guarantees-carousel { }
#guarantees-carousel [class*='carousel-control'] { opacity: 1; font-size: 26px; color: var(--light); }
#guarantees-carousel [class*='carousel-control']:hover, #testimonial-carousel [class*='carousel-control']:focus { color: var(--primary); }
@media (min-width:1200px) {
	#guarantees-carousel .carousel-inner { max-width: 825px; margin: 0 auto; padding-right: 4.6vw; }
}
@media(max-width:1199px){
	#guarantees-carousel [class*='carousel-control'] { display: inline-block; position: relative; width: auto; padding: 30px; }
}

/* Pm Discover */
#pm-discover { background: var(--dark); color: #fff; text-align: center; }
#pm-discover h2 { margin-bottom: 45px; }
.area-info { padding: 130px 6.5vw 100px; }
.separator-bar { position: relative; }
.separator-bar::before { content: ''; height: 15px; width: 277px; background: var(--light); position: absolute; left: 50%; top: 100%; transform: translate(-50%,-50%); }
@media (min-width:1200px) {
	#pm-discover { text-align: right; }
	#pm-discover h2 { font-size: 60px; }
	.separator-bar::before { content: ''; height: 277px; width: 15px; background: var(--light); position: absolute; left: 0; top: 85px; transform: translateX(-50%); }
	.separator-bar--right::before { left: 100%; }
}

#pm-market-stats { text-align: center; padding: 100px 0 80px; background: var(--secondary); color: #fff; }
#pm-market-stats h2 { padding: 0 6.5vw; text-align: center; }
#pm-market-stats h4 { font-size: 22px; margin: 40px 0 10px; letter-spacing: .1em; color: var(--primary); font-family: var(--secondary-font); }
#pm-market-stats p { margin: 0 0 40px; font-size: 18px; font-weight: 600; }
#pm-market-stats p:not(:last-child) { margin: 0 0 80px; }
@media (min-width:1200px) {
	#pm-market-stats { padding: 50px 0; text-align: left; }
	#pm-market-stats h2 { text-align: right; margin: 0; }
	#pm-market-stats p { margin: 0 0 40px; }
}

#pm-testimonials { padding-bottom:115px; position: relative; z-index: -1; }


#pm-footer-form { padding: 100px 0; }
#pm-footer-form h2 { font-size: 50px; }
#pm-footer-form .form-container { padding: 20px 0 0; box-shadow: none; position: relative; }
@media (min-width:1200px) {
	#pm-footer-form h2 { text-align: right; margin: 0; }
	#pm-footer-form .form-container { padding-right: 85px; }
	#pm-footer-form .ion-btn { position: absolute; top: 50%; right: 0; transform: translateY(-50%); margin: 0; }
}
@media (max-width:600px) {
	#pm-footer-form h2 { font-size: 35px; margin-bottom: 0; }
}

/* Pillar Management Boxes */
#numbered-boxes { }
.goal-boxes { }
.goal-boxes .box {flex:0 0 calc(33.3333% - 50px);margin:15px 25px;background:var(--dark);width: 100%; position: relative; display: block; padding:75px 15px; }
.goal-boxes img {opacity:0.2;position: absolute; top: 0; left: 0;transition: 0.5s;}
.goal-boxes .text { color:#fff;padding:15px;display:flex;flex-direction:column;position:relative;}
.goal-boxes .num {font-size:100px;font-weight:500;line-height:1;}
.goal-boxes .num sup {font-size:60px;}
.goal-boxes h3 {color: inherit; font-size:34px;font-weight:bold;margin-top:0;}
.goal-boxes .box p {margin-top:40px;}
.goal-boxes a.box:hover img {opacity:0;}

@media(max-width:1199px){
	.goal-boxes .box {flex:0 0 100%; margin: 0 0 25px;}
}

/* Commercial Management Guarantees */
#pillar-guarantees svg {max-width:95px;max-height:95px;fill:var(--dark);}
#pillar-guarantees .list-item__title {font-weight:bold;font-size:24px;text-transform: capitalize;}
#pillar-guarantees .services-check {position:absolute;fill:#fff;height:30px;width:30px;}
.cursive-link {font-size:60px;font-family:var(--cursive-font);}

#pillar-guarantees { }
#pillar-guarantees .list-item {margin: 0 0 50px;flex:0 0 100%;}
@media(min-width:1200px){
	#pillar-guarantees .list-item {flex:0 0 calc(50% - 150px);margin: 0 75px 65px;}
}
@media(min-width:992px){
	#pillar-guarantees .list-item {flex:0 0 calc(50% - 90px);margin: 0 45px 65px;}
}

@media(max-width:424px){
	#pillar-guarantees .guarantees {text-align: center;}
	#pillar-guarantees .guarantees .list-item__side {margin:0 auto 20px;}
}

/* HOA Services
===================================================== */
#hoa-services { }
#hoa-services .box {border:0;padding:60px 30px;}
#hoa-services h3 {text-transform: capitalize;font-size:30px;font-weight:bold;}

@media(min-width:1250px){
	#hoa-services .box {border:0;padding:60px 200px;}
}

/* Real Estate Services
===================================================== */
#re-calculator {padding:100px 0;}
#re-calculator h3 {margin-top:0;}
#re-calculator ul {padding-left:15px;}
#re-calculator .row {display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;}
#re-calculator .row [class*="col-"] {margin: auto;}
#re-calculator .row:before, #re-calculator .row:after {display:inline-block !important;}
@media(max-width:991px){
	#re-calculator {text-align: center;padding-bottom:50px;}
	#re-calculator .row .col-md-4 {margin-bottom:20px;}
}

/* RE Discover */
#re-discover { padding: 100px 0; }
#re-discover .row:before, #re-discover .row:after {display:inline-block !important;}
@media (min-width: 992px) {
	#re-discover .row [class*="col-"]:first-of-type {padding-right:40px;}
	#re-discover p { max-width:520px; margin: 0 0 30px auto; }
}
@media(max-width:991px){
	#re-discover .row [class*="col-"]:first-of-type { margin-bottom: 30px; }
}

/* Mortgage Calculator
================================================== */
#mortgage-calculator { margin-bottom:50px; }
#mortgage-calculator .input-group { display: flex; width: 100%;flex-wrap:nowrap; }
#mortgage-calculator .ion-form-group input { height: 40px; }
#mortgage-calculator .form-group-addon { width: 40px; height: 40px; text-align: center; line-height: 40px; border: 0; border-right: 0;background:var(--primary);color:#fff; }
#mortgage-calculator p { font-size: 15px; font-style: italic; margin: 30px 0 0; }
#mortgage-calculator label { display: block; }
@media (min-width: 600px) {
	#mortgage-calculator form, #mortgage-calculator .calculator, #mortgage-calculator .results { display: flex; flex-wrap: wrap; justify-content: space-between; margin: 0; width: 100%; }
	#mortgage-calculator form .ion-form-group { flex-basis: calc(50% - 20px); margin: 0 10px 15px; flex-grow: 1; }
	#mortgage-calculator form .ion-form-group.ion-form-group-textarea, #mortgage-calculator .form-container form .ion-form-group.ion-form-group-break, #mortgage-calculator .form-container form .ion-form-group.ion-form-group-checkbox, #mortgage-calculator .form-container form .ion-form-group.ion-form-group-radio { flex-basis: 100%; }
}

/* ==========================================================================
  Tenants Page
============================================================================= */

/* Guarantees
================================================== */
#guarantees {}
#guarantees h3 {font-size:24px;font-style:normal;font-weight:bold;text-transform: none; font-family: var(--secondary-font); letter-spacing: .1em; margin-bottom:5px;}
#guarantees .row {display:flex;flex-wrap:wrap;margin:25px 0;}
#guarantees .row [class*="col-"] {margin: auto;}
#guarantees .row:before, #guarantees .row:after {display:inline-block !important;}
#guarantees svg {width:75px;height:100%;fill:var(--dark);}
@media(max-width:991px){
	#guarantees {text-align: center;}
}


/* ==========================================================================
   Widget Color Overrides
============================================================================= */
/* FRS Smooth Load Animation */
@-webkit-keyframes frsFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes frsFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
[data-frs]:not([data-frs='call-lead']) > * { -webkit-animation-name: frsFadeIn; animation-name: frsFadeIn; -webkit-animation-duration: 1s; animation-duration: 1s; }

/* FRS Btns */
.frs-widget .frs-btn, .frs-widget .prop-tabs .prop-tab-nav ul li a { background-color: var(--dark); border: 1px solid var(--dark); transition: 0.5s; border-radius: 21.5px; font-weight: bold; }
.frs-widget .frs-btn:hover, .frs-widget .prop-tabs .prop-tab-nav ul li a:hover { background: #fff; color: var(--dark); text-decoration: none; transition: 0.5s; }

/* FRS Pager */
.frs-paging {}
.frs-paging > div { display: inline-block; float: right; margin: 0px 2px 0px 2px; }
.frs-paging-btn a { min-width: 45px; padding: 2px 4px; border: 1px solid var(--dark); color: var(--dark); text-decoration: none; font-weight: bold; font-size: 0.9em; }
.frs-paging-btn a:hover, .frs-paging-btn.active a { background: var(--dark); color: #ffffff; text-decoration: none; }

/* Review Widget */
.r4e-widget .review {margin: 20px 0px;}
.r4e-widget .stars-container i {color:gold;}
.r4e-widget .summary, .r4e-widget .icon {display: inline-block; padding: 5px;}
.r4e-widget .comment {font-style: italic;}
.r4e-widget .rating, .r4e-widget .date, .r4e-widget .info {display: inline-block;}

/* AMP Step 1
============================================================================= */
.amp { text-align: center; }
.amp a { color: inherit; }
.amp a:hover { color: var(--primary); }
.amp__lead { font-size: 42px; line-height: 1.2; margin-top: 15px; }
.amp__sub { font-size: 24px; font-family: var(--secondary-font); line-height: 1.2; }
.amp__form { max-width: 800px; margin: 0 auto; min-height: 50px; }
.amp__form .ion-amp-form { display: flex; }
.amp__form .ion-amp-form .ion-form-group { margin: 0; flex: 1 1 auto;  }
.amp__form .ion-amp-form label { display: none; }
.amp__form .ion-amp-form input { border: 0; height: 50px; padding: 0 15px; border-radius: 0!important; border: 0!important; }
.amp__form .ion-amp-form button { background: var(--primary); border: 1px solid var(--primary); font-weight: bold; white-space: nowrap; opacity: 1!important; text-transform: capitalize; flex: 0 1 150px;  }
.amp__form .ion-amp-form button:hover { background: #fff; color: var(--primary); }
@media (max-width: 600px){
	.amp__lead { font-size: 34px; }
	.amp__sub { font-size: 20px; }
	.amp__form .ion-amp-form { flex-wrap: wrap; }
	.amp__form .ion-amp-form button { width: 100%; }
	#ion_amp_1681504760107_submit_btn .ion_button { width: 100%; }
}


/* AMP Step 2
============================================================================= */
body.no-hero main { margin-top: var(--header-height); }
body.no-hero #secondary-banner { display: none; }
body.no-hero .body-container { width: 100%; max-width: 100%; padding: 0; }

.amp-step-2 { text-align: center; font-family: var(--primary-font); letter-spacing: .05em; }
.amp-step-2__header { position: relative; padding: 90px 15px 0; background: var(--dark); color: #fff; font-weight: 500; letter-spacing: .05em; }
.amp-step-2__header h1 { font-size: 70px; font-weight: 500; letter-spacing: .05em; text-transform: capitalize; color: inherit; margin: 0 0 20px; }
.amp-step-2__header p { font-size: 22px; color: inherit; width: 800px; max-width: 100%; margin: 0 auto 70px; }
.amp-step-2__header-img { position: relative; max-width: 90%; margin: 0 auto; display: inline-block; }
.amp-step-2__logo { position: absolute; top: 200px; left: 50px; transform: rotate(-25.84deg); height: 40px; transform-origin: left; }
@media (max-width: 850px) {
	.amp-step-2__logo { height: 4.5vw; top: 22vw; left: 6.5vw; }
}

.amp-step-2__form { position: relative; background: #fff; padding: 50px 55px; border-radius: 20px; width: 1072px; max-width: 95vw; margin: 0 auto; letter-spacing: .05em; box-shadow: 0px 6px 43px 0px rgba(0, 0, 0, 0.17); transform: translateY(-20px); z-index: 2; }
.amp-step-2__form .ion-form-group-break h3 { font-size: 22px; text-transform: capitalize; font-weight: 500; letter-spacing: .05em; margin: 40px 0 20px; }
.amp-step-2__form .ion-form-group-break:first-of-type h3 { margin-top: 0; }
.amp-step-2__form .ion-form .ion-form-group label { font-size: 20px; letter-spacing: .05em; font-weight: 400; font-family: var(--secondary-font); margin: 0 12px 12px; }
.amp-step-2__form input, .amp-step-2__form select, .amp-step-2__form textarea { background: var(--gray)!important; border: 0!important; border-radius: 0!important; height: 54px!important; padding: 12px!important; font-size: 20px; font-family: var(--secondary-font); }
.amp-step-2__form textarea { height: 4em!important; }
.amp-step-2__form .ion-btn { font-size: 0; color: #fff; background-color: var(--secondary); border-color: var(--secondary); height: 47px; line-height: 47px; padding: 0 20px; text-transform: capitalize; font-weight: 500; border-radius: 10px; width: 270px; letter-spacing: .05em; margin: 58px 10px 10px auto; }
.amp-step-2__form .ion-btn::after { content: 'send my free report!'; font-size: 18px; }
.amp-step-2__form .ion-btn:hover { border-color: var(--secondary); color: var(--secondary); }

.amp-step-2__footer { font-size: 18px; padding: 50px 15px 70px; width: 1072px; max-width: 95vw; margin: 0 auto; line-height: 1.66em; }
.amp-step-2__footer h2 { font-size: 60px; font-family: var(--secondary-font); font-weight: 500; letter-spacing: .05em; margin: 0 0 45px; }
.amp-step-2__footer .amp-step-2__icon { background: var(--gray); height: 90px; width: 90px; border-radius: 50%; margin: 0 auto 15px; display: flex; justify-content: center; align-items: center; }
.amp-step-2__footer .amp-step-2__phone { font-size: 22px; color: var(--body-text); white-space: nowrap; }
.amp-step-2__footer .amp-step-2__phone a { color: var(--body-text); }
.amp-step-2__footer .amp-step-2__phone a:hover { color: var(--primary); }
.amp-step-2__icon { fill: var(--light); }
.amp-step-2__icon--email svg { margin-left: -25px; height: 59px; }
.amp-step-2__icon--support svg { margin-top: -25px; height: 83px; }
.amp-step-2__footer .btn { height: 47px; line-height: 47px; border-radius: 10px; }

@media (min-width: 600px) {
	.amp-step-2__form form { display: flex; flex-wrap: wrap; margin: -10px; }
	.amp-step-2__form .ion-form-group { flex: 1 1 190px; padding: 10px; margin: 0; }
	.amp-step-2__form .ion-form-group:nth-child(4), .amp-step-2__form .ion-form-group:nth-child(8), .amp-step-2__form .ion-form-group:nth-child(12) { flex: 2 1 339px; }
	.amp-step-2__form .ion-form-group:nth-child(10) { flex: 1 1 100%; }
	.amp-step-2__form .ion-form-group:last-of-type { flex-grow: 0; }
	.amp-step-2__form .ion-form-group-break, .amp-step-2__form .ion-form-group-textarea { flex: 1 1 100%; }
}
@media (min-width: 600px) and (max-width: 1051px){
	.amp-step-2__form .ion-btn { margin-left: 10px; }
}
@media (max-width: 500px) {
	.amp-step-2__header h1 { font-size: 40px; }
	.amp-step-2__form { padding: 50px 25px; }
	.amp-step-2__footer h2 { font-size: 36px; }
}

/* ==========================================================================
  Preferred Companies Map Page
============================================================================= */
#map-page { }
#map-page .popover { background: #050505; color: #fff; opacity: .9; border-radius: 10px; padding: 25px 20px; }
#map-page .popover-title { margin: 0 0 3px; background: none; color: #fff; border: 0; padding: 0; font-size: 16px; font-weight: 600; text-transform: capitalize; }
#map-page .popover-content { color: #fff; padding: 0; font-size: 14px; }
#map-page .popover-content a { color: #fff; }
#map-page .popover-content a:hover { opacity: .7; }
#map-page .popover-content .website a { font-style: italic; }
#map-page .popover.left>.arrow::after { border-left-color: #050505; }
#map-page .popover.right>.arrow::after { border-right-color: #050505; }
#map-page .popover-content .city { font-weight: 500; margin: 10px 0; font-size: 16px; }
#map-page .popover-content ul ~ ul { margin-top: 20px; }
.preferred-list__states { line-height: 1.7; font-size: 16px; }
.preferred-list__states h4 { font-size: 20px; font-weight: 600; margin: 40px 0 0; text-transform: capitalize; border-bottom: 1px solid #ccc; border-top: 1px solid #ccc; padding: 10px 0; }
.preferred-list__company {color:#fff;}
.preferred-list__company, #map-page .popover-content { list-style: none; padding: 0; line-height: 1.7; }
.preferred-list__company ~ .preferred-list__company { margin-top: 25px; }
.preferred-list__company .city { font-weight: 600; margin: 10px 0; font-size: 18px;color:#fff; }
.preferred-list__company .company, #map-page .popover-content .company { font-size: 17px;  }
.preferred-list__company a {color:var(--secondary);}
.preferred-list__company a:hover {color:#fff;}
.preferred-list__map { position: relative; overflow: hidden; margin: 50px 0; }
.preferred-list__map svg { width: 100%; max-width: 100%; }


.d-block { display: block; }
.d-none { display: none; }
@media (min-width: 600px) {
  .d-sm-none { display: none; }
  .d-sm-block { display: block; }
}

/* Clickable Map
================================================== */
.us-map { display: block; }
.us-map path { stroke: #fff!important; fill: var(--primary);!important; stroke-width:1.3px; stroke-linejoin: miter;  transition: fill .5s ease; -moz-transition: fill .5s ease; -webkit-transition: fill .5s ease; outline: none!important; }
.us-map path:hover, .us-map path:focus { stroke: #fff!important; stroke-width:1.5px; stroke-linejoin: miter; fill: #8db88b!important; cursor: pointer; transition: fill .5s ease; -moz-transition: fill .5s ease; -webkit-transition: fill .5s ease; }
#hi-ak-border { fill: none!important;stroke: #fff !important; cursor: default; display: none; }

/* Disabled States */
.us-map #disabled-states path { fill: #ccc!important; }
.us-map #disabled-states path:hover { cursor: default; }


.form-container .ion-form-group-radio label:not(:first-child), .form-container .ion-form-group-checkbox label:not(:first-child){width:100%;}

.text-underline {text-decoration: underline !important;}
#form__services > fieldset > label > span{display:block;}
#form__contact > fieldset > label > span{display:block;}
#form__services-hoa > fieldset > label > span{display:block;}
#form__agent-referral > fieldset > label > span{display:block;}

#association .btn {text-transform: capitalize;}
