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

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

/* Set Design Standards & Colors Here */
:root {
	--primary: #172f53;
	--primary-rgb: 3,138,138;
	/* --secondary: #451bc4; */
	--secondary: #88A9C3;
	--dark: #172f53;
	--gray: #f7fafe;
	--gray-dark: #252525;
	--border-color: #e7eaee;
	--muted: #707070;
	--body-text: #212529;
	--text-dark: #343a40;
	--primary-font: 'Montserrat', sans-serif;
	--secondary-font: 'Zilla Slab', serif;
	--cursive-font: 'Gaegu', 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%);
}
html { }
body { font-family: var(--primary-font); color: #303030; line-height: 1.45; }

/* Font Styles
============================================================================= */
h1, h2, .display-1 { font-size: 42px; margin: 0 0 25px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.025em; }
h1 + h2, h2 + h3, .display-2 { font-family: var(--secondary-font); font-size: 24px; margin: -20px 0 25px; font-weight: 400; text-transform: none; letter-spacing: 0.025em; line-height: 1.2; }
h3, .display-3 { font-size: 24px; margin: 25px 0 3px; font-weight: 400; line-height: 1.2; }
h4, .display-4 { font-size: 17px; margin: 25px 0 5px; font-weight: bold; line-height: 1.2; }
p { margin-bottom: 25px; }
a, a:link, a:visited { color: var(--primary); text-decoration: none; transition: all 0.5s; }
a:hover, a:active { color: var(--secondary); }
hr.primary, header hr { border-color: var(--primary); width: 51px; display: inline-block; margin-top: 0px; margin-bottom: 30px; transform: scaleX(0); transition: all 0.5s; transform-origin: left; }
hr.primary.animate, header hr.animate { transform: scaleX(1); transition: all 0.5s; transition-delay: .5s; }
.banner hr, .text-center hr { transform-origin: center; }
.special {display: block; font-size: 18px; font-style: italic; margin-bottom: 20px;}
@media (max-width:575.98px) {
	h1, h2, .display-1 { font-size: 34px; }
	h1 + h2, h2 + h3, .display-2 { font-size: 20px; }
	h3, .display-3 { font-size: 20px; }
}


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

/* Font Styles */
.font--cursive { font-family: 'Gaegu', cursive; font-family: var(--cursive-font); text-transform: none; }

/* Buttons
============================================================================= */
.btn { position: relative; background-color: transparent; color: #fff !important; border: 1px solid var(--primary); height: 40px; line-height: 40px; border-radius: 0; padding: 0 20px; font-size: 16px; font-weight: bold; text-transform: uppercase; display: inline-flex; align-items: center; justify-content: center; min-width: 271px; 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(--primary) !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 !important; color: var(--primary) !important; border: 1px solid #fff; }
.btn--white:hover { background-color: var(--primary) !important; color: #fff !important; border: 1px solid var(--primary); }
.btn--arrow::after { content: '\f061'; font-family: "Font Awesome 5 Pro"; font-style: normal; font-weight: 300; -webkit-font-smoothing: antialiased; padding-left: 8px; font-size: 1.1em; }

.btn--white-outline { background-color: transparent !important; color: #fff !important; border: 1px solid #fff; }
.btn--white-outline:hover { background-color:#fff !important; color: var(--primary) !important; border: 1px solid #fff; }
.btn--arrow-outline::after { content: '\f061'; font-family: "Font Awesome 5 Pro"; font-style: normal; font-weight: 300; -webkit-font-smoothing: antialiased; padding-left: 8px; font-size: 1.1em; }

/* 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-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; }

/* Social Media Icons
============================================================================= */
.social { display: inline-flex; }
.social a { text-align: center; border: 1px solid var(--primary); color: var(--primary); background: #fff; 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(--primary); }

/* 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: uppercase; letter-spacing: 0.15em; 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: 0; display: flex; flex-wrap: wrap; justify-content: center; }
.icon-list__item { flex: 0 0 290px; padding: 0 15px; text-align: center; margin: 0 auto 30px; }
.icon-list__icon { margin: 0 auto 10px; height: 68px; display: flex; justify-content: center; align-items: center; }
.icon-list__icon svg { height: 62px; width: 62px; }
.icon-list__title { font-size: 18px; font-weight: 400; margin: 25px 0 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.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(--secondary); 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%; }
}

/* Video Wrapper Overlay */
.video-wrapper { background-color: #000; }
.video-wrapper.play::after, .video-wrapper.play::before, .video-wrapper.play .video-thumbnail, .video-wrapper.play .video-title { visibility: hidden; opacity: 0; z-index: -9; transition: 0.3s; margin: 0 !important; }
.video-wrapper .video-thumbnail { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; background-repeat: no-repeat; background-size: cover; background-position: center; }
.video-wrapper .video-thumbnail::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, .4); z-index: 1; }
.video-wrapper::before { content: ""; position: absolute; top: 50%; left: 50%; z-index: 99; transform: translate(-50%, -50%); width: 68px; height: 68px; border: 3px solid #fff; border-radius: 50%; transition: 0.3s; }
.video-wrapper::after { content: ""; position: absolute; top: 50%; left: 50%; z-index: 99; transform: translate(-33%, -50%); height: 0; border-style: solid; border-width: 15px 0 15px 25px; border-color: transparent transparent transparent #ffffff; z-index: 999; }
.video-wrapper:hover::before { background: var(--secondary); cursor: pointer; transition: 0.3s; }
.video-wrapper:hover { cursor: pointer; }
.video-wrapper .video-title { position: absolute; z-index: 9; color: #fff; text-align: center; top: 55%; left: 15px; right: 15px; font-size: 24px; font-weight: 600; }
@media (max-width:500px) {
  .video-wrapper .video-title { font-size: 18px; }
}


/* Utilities - Helper Classes
============================================================================= */

/* Adjust size of padding between columns */
@media (min-width:1200px) {
	.pr-xl-6, .px-xl-6 { padding-right: 6rem!important; }
	.pl-xl-6, .px-xl-6 { padding-left: 6rem!important; }
}
@media (min-width:992px) {
	.row--gutters-lg { }
	.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; }
.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) {
	.lazy-fade, .lazy-fade-in, .lazy-fade-l, .lazy-fade-d, .lazy-fade-u, .lazy-text-u, .lazy-text > *:not(.zoomIn) { opacity: 0; }
}
@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; }

/* Cookie Disclaimer */
#cookie-disclaimer { position: fixed; bottom: 10px; right: 10px; background: var(--gray); padding: 20px; z-index: 99999; border-radius: 4px; display: flex; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 2px 4px rgba(0, 0, 0, 0.23); align-items: center; }
#cookie-disclaimer p { margin: 0; }
#cookie-disclaimer a { text-decoration: underline; }
#cookie-disclaimer button { border: 0; border: 1px solid var(--primary); background: var(--primary); color: #fff; padding: 10px 25px; margin-left: 15px; transition: 0.4s; }
#cookie-disclaimer button:hover { background: #fff; color: var(--primary); }

/* ==========================================================================
   Header
============================================================================= */
#header { height: 149px; 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: 1600px; margin: 0 auto; }
#header .logo { position: absolute; top: 50%; left: 15px; transform: translateY(-50%); }
/* #header .logo img { height: 125px; } */
@media (min-width: 1092px) and (max-width:1299px) {
	#header .logo img {max-width: 600px}
}
#header .phone { color: var(--gray-dark); font-size: 36px; position: absolute; right: 250px; top: 20px; }
#header .phone a { color: var(--gray-dark); }
#header .logins { position: absolute; top: 25px; right: 15px; background: #000;  }
#header .logins .dropdown-toggle { background: var(--primary); border: 1px solid var(--primary); color: #fff; height: 40px; line-height: 40px; width: 214px; font-size: 17px; font-weight: bold; text-transform: uppercase; display: block; text-align: center; }
#header .logins .dropdown-toggle::after { margin-left: .5em; position: relative; top: 1px; }
#header .logins .dropdown-toggle:hover { color: var(--primary); background: #fff; }
#header .logins .dropdown-menu { margin: 0; border-radius: 0; background: transparent; overflow: hidden; border: 0; display: block; z-index: -1; padding: 0; left: auto!important; right: 0; transition: 0.5s; }
#header .logins .dropdown-menu.show { z-index: 2; transition: 0.5s; }
#header .logins .dropdown-menu .dropdown-item { transform: translateY(-300%); transition: 0.5s ease-out; }
#header .logins .dropdown-menu.show .dropdown-item { transform: translateY(0); transition: 0.5s ease-out; }
#header .logins .dropdown-menu .dropdown-item + .dropdown-item { position: relative; top: -1px; }
#header .logins .dropdown-menu a { font-weight: bold; color:#fff; background: var(--dark); }
#header .logins .dropdown-menu a:hover {background: var(--primary); color:#fff;}
#header .logins .dropdown-menu a:focus { background: var(--primary); color: #fff; }
#header .social { position: absolute; top: 70px; right: 15px; }
#header .nav { position: absolute; bottom: 10px; right: 0; }
#header .launch-menu-button { display: none; position: absolute; bottom: 0px; right: 15px; text-align: right; line-height: 50px; color: inherit; transition: bottom 0s; }

@media (max-width:1091px) {
	#header .launch-menu-button { display: block; }
	#header .nav,
	#header .logins { display: none; }
	#header .phone { right: 15px; font-size: 20px; }
}
@media (max-width:991px) {
	#header .logo img { max-width: 450px; width: 100%;}
}
@media (max-width:600px) {
	#header .phone { display: none; }
	/* #header .logo img { height: 80px; } */
}

@media (max-width:500px) {
	#header .logo img { max-width: 400px;}
}

@media (max-width:425px) {
	#header .logo { text-align: center; right: 15px; top: 40%; }
	#header .launch-menu-button { bottom: 0; left: 0; 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 .logins { display: none; }
#header.affix .logo { left: 15px; right: auto; top: 50%; }
#header.affix .logo img { height: 40px; }
#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: bold; }
#header .nav__item { position: relative; padding: 0 15px; line-height: 34px; }
#header .nav__item a { color: #303030; }
#header .nav__item > a::after { content: ''; height: 6px; width: 14px; background-color: var(--primary); display: block; margin: 0 auto; transform: scaleX(0); transition: 0.3s ease-in; }
#header .nav__item:hover > a::after, #header .nav__item.active > a::after { transform: scaleX(1); transition: 0.3s ease-out; }
#header .nav__dropdown { display: none; list-style: none; padding: 0; margin: 0; position: absolute; top: 100%; left: 15px; }
#header .nav__dropdown.end {top:100%; right: 15px; left:auto;}
#header .nav__dropdown > li { white-space: nowrap; line-height: 35px; padding: 0 20px; background-color: #303030; }
#header .nav__dropdown > li > a { color: #fff; }
#header .nav__dropdown > li:hover { background-color: var(--primary); }
#header .nav__item:not(.dropdown):hover .nav__dropdown { display: block; }
@media (max-width:1425px) {
	#header .nav__item:last-child .nav__dropdown  { left: auto; right: 15px; }
}

/* 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(--primary); color: #fff; transition: color 0s; }
.launch-menu .nav__dropdown { display: none; list-style: none; padding: 0; margin: 0; background: var(--primary); -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(--primary); }
.launch-menu .links { margin: 0 auto 20px; }
.launch-menu .links .btn { width: 70%; min-width: unset; margin-bottom: 10px; }
.launch-menu .social { margin-top: 35px; }



/* ==========================================================================
   #Footer
============================================================================= */
.footer { padding: 55px 0; text-align: center; }
.footer .container-fluid { max-width: 1700px; }
.footer h3 { font-size: 24px; text-transform: uppercase; margin: 0 0 20px; }
.footer a { color: inherit; }
.footer a:hover { opacity:0.7; }
.footer .social a { border: 1px solid rgba(255, 255, 255, .65); background: transparent; }
.footer .social a:hover { color: #fff; background: var(--primary); }
.footer__copy { margin-top: 70px; font-size: 14px; }
.footer__address .street-address { display: block; }
.footer__affil { margin: 20px -5px 0; }
.footer__affil img, .footer__affil svg { padding: 5px; }
.footer__affil svg { height: 60px; width: 60px; }
.footer__ada { text-align: center; padding: 20px 0; border-top: 1px solid #818285; border-bottom: 1px solid #818285; font-size: 14px; margin: 20px 0 0; }
@media (min-width:992px) {
	.footer__address, .footer__contact { text-align: left; }
	.footer__connect { text-align: right; }
}
@media (max-width:991px) {
	.footer__contact h3, .footer__connect h3 { 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: #fff; fill: currentColor; display: inline-block; }
@media (max-width:991px) {
	.footer-cta__text { text-align: center; }
}

/* ==========================================================================
   Forms
============================================================================= */
.form-container { border: 0; background-color: var(--dark); color: #fff; padding: 55px 25px 80px; }
.form-container h2 { color: inherit; font-size: 30px; font-family: var(--secondary-font); text-transform: none; text-align: center; margin: 0 0 20px; }
.form-container .ion-form-group { margin-bottom: 20px; }
.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; }
.form-container .ion-form-group ::-webkit-input-placeholder, .form-container .ion-form-group select:invalid { color: #000; font-size: 16px; }
.form-container .ion-form-group select { padding-left: 5px;  border: 0; }
.form-container .ion-form-group-break h3 { color: inherit; font-size: 14px; margin: 0; text-transform: uppercase; 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: #fff; display: block; transition: 0.3s; }
.form-container .ion-form-group-radio span::after, .form-container .ion-form-group-checkbox span::after { content: '\f00c'; color: #fff; 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 { color: rgba(255, 255, 255, 0.4); transition: 0.3s; }
.form-container .ion-form-group-radio input:checked ~ span::after, .form-container .ion-form-group-checkbox input:checked ~ span::after { color: var(--primary); 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: #fff; border-color: #fff; color: var(--primary);height: 36px; width: 163px; margin-left: auto; font-size: 17px; font-weight: bold; text-transform: uppercase; padding: 0; display: block; }
.form-container .ion-btn:hover { color: #fff !important;background-color:var(--primary) }

/* 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: 0px; }
	.form-container form > div:last-of-type { padding: 0 10px; }
	.form-container form > div:last-of-type > div { margin-left: auto; }
}

/* 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: #fff; 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: 85px 0 90px; text-align: center; }
.areas { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; font-family: var(--secondary-font); color: var(--primary); font-size: 17px; max-width: 940px; margin: 0 auto; padding-left: 0; }
.areas li { padding: 5px; flex: 0 0 185px; letter-spacing: .1em; }

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

/* Home Banner
============================================================================= */
#home-banner { position: relative; height: 100vh; min-height: 645px; overflow: hidden; background-color: #000; background-size: cover; background-position: center; }

/* #home-banner::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.3); } */
#home-banner .container { position: relative; z-index: 9; height: 100%; }

/* Home Banner Prompt */
#home-banner .prompt { color: #fff; position: relative; flex: 1 1 100%; padding: 55px 0 60px; text-align: center; }
#home-banner .prompt::before { content: ''; position: absolute; top: 0; right: 0; height: 100%; width: 100%; background: rgba(0, 0, 0, .7); z-index: -1; transform: scaleX(3); }
#home-banner .prompt .lead { font-size: 48px; margin: 0; letter-spacing: .1em; }
#home-banner .prompt .sub { font-size: 24px; font-family: var(--secondary-font); margin: 0 0 30px; text-transform: none; }
#home-banner .prompt hr { border-color: #fff; width: 223px; margin: 30px 0 25px; display: inline-block; }
@media (min-width:992px) {
	#home-banner .prompt { flex: 0 1 58%; padding: 55px 30px 60px 0; text-align: left; }
	#home-banner .prompt::before { transform-origin: right; }
}
@media (max-width:500px) {
	#home-banner { background-image: url('/images/banner-6-sm.jpg'); }
	#home-banner .prompt .lead { font-size: 36px; }
}

/* 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 welcome
============================================================================= */
#home-welcome {padding:85px 0 0;}
#home-welcome h3 { text-transform: lowercase; }
@media(max-width:991px){
	#home-welcome .btn-list {display:block;}
}

/* Home CTAs
============================================================================= */
#home-ctas { padding: 85px 0 90px; }

/* CTAs */
.ctas { }
.ctas .cta { color: inherit; display: block; width: 100%; max-width: 334px; margin: 0 auto 30px; }
.cta__image { position: relative; overflow: hidden; height: 0; padding-top: 116%; width: 100%; }
.cta__image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transition: 0.5s; }
.cta__title { font-size: 30px; font-family: var(--secondary-font); margin: 25px 0 15px; text-transform: uppercase; transition: 0.5s; }
.cta__description { }
.cta__link { font-family: var(--secondary-font); color: var(--primary); text-transform: uppercase; font-size: 18px; font-weight: bold; margin: 0; }
.ctas .cta:hover img { transform: scale(1.05); transition: 0.8s; }
.ctas .cta:hover .cta__title { color: var(--primary); transition: 0.5s; }


/* Home CTA Banner
============================================================================= */
#cta-banner {padding:50px 0;}
#cta-banner h3 {font-size:26px; margin:0;text-transform: uppercase;color:#000;font-family:var(--secondary-font);}
#cta-banner h3::after { content: '\f061'; font-family: "Font Awesome 6 Pro"; font-style: normal; font-weight: 600; -webkit-font-smoothing: antialiased; padding-left: 15px; position: relative; top: -3px; font-size: .75em; transition:all 0.5s;}
#cta-banner h3:hover {color:#000;}
#cta-banner h3:hover::after {margin-left:10px;}


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

#home-testimonials-1 { padding: 30 0 30px; }
#home-testimonials-1 .icon-feedback { height: 100px; width: 100px; }
@media (min-width: 600px) {
	#home-testimonials-1 .carousel { max-width: 85%; margin: 0 auto; }
}
@media (max-width: 600px) {
	#home-testimonials-1 .carousel { text-align: center; }
}

/* Testimonial Carousel */
#testimonial-carousel { font-family: var(--secondary-font); }
#testimonial-carousel .carousel-inner { min-height: 150px; margin-bottom: 50px; }
#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); }


/* Home Why
============================================================================= */
#home-why { padding: 90px 0 100px; text-align: center; }
#home-why h3.cta-text { font-family: var(--secondary-font); margin: 45px 0 25px; }
#home-why hr.primary, #home-why header hr {border-color: #fff;}
#home-why .icon-list__title {text-transform: none;}
/* Small devices (landscape phones, 576px and up) */
@media (min-width:576px) and (max-width:767.98px) {
#home-why {background-image: none!important;}
}

/* Home Services
============================================================================= */
#home-services { text-align: center; }
#home-services p.lead { font-size: 20px; }
#home-services header { margin-bottom: 60px; }
.services { font-size: 17px; max-width: 1160px; margin: 0 auto; }
.service-item { margin-bottom: 55px; }
.service-item__icon { color: var(--secondary); margin-bottom: 15px; }
.service-item__title { font-size: 24px; font-weight: 400; font-family: var(--secondary-font); margin: 0 0 10px; letter-spacing: 0.1em; }
@media (min-width:425px) {
	.service-item { position: relative; text-align: left; padding-left: 50px; }
	.service-item__icon { position: absolute; top: 0; left: 0; }
}

/* Home Rentals
============================================================================= */
#home-rentals { padding: 85px 0 55px; }
#home-rentals .prop-tabs { margin: 0; }
#home-rentals .prop-result-panel { margin-top: 0; margin-bottom: 30px; }

/* Home Blog
============================================================================= */
#home-blog { padding: 0 0 85px; }
@media (max-width:991px) {
	#home-blog .d-flex { display: block!important; text-align: center; }
	#home-blog .post-featured { margin-bottom: 30px; }
}

/* ==========================================================================
  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 { padding-left: 50%; position: relative; max-width: 100%; margin-bottom: 50px; }
.side-content .cta__image { border: 1px solid #f2f2f2; position: absolute; top: 0; left: 0; width: 45%; padding-top: 0; height: 116px; }
.side-content .cta__title { font-size: 22px; margin-top: 0; }
.side-content .cta__description { display: none; }


/* Secondary Banner
============================================================================= */

/* No Hero Image */
main.no-hero { margin-top: 149px; border-top: 29px solid var(--dark); }

/* ==========================================================================
  About Page
============================================================================= */
.bios { padding: 45px 0; }
.bios .bio:first-child { border-top: solid 1px #ccc; }
.bios .bio { border-bottom: solid 1px #ccc; padding: 20px 0; }
.bio__name { font-size: 24px; line-height: 1.25em; margin: 0 0 10px; text-transform: uppercase; }
.bio__title { display: block; color: var(--primary); font-size: 18px; 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__image img.temp-bio {object-fit: contain;}
.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; }
}

/* 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; }

/* Bio with pop up */
.bios-new {display: grid;grid-template-columns: repeat( auto-fit, minmax(350px, 1fr) );}
.bios-new .bio {display: flex; flex-direction: column; justify-content: center; align-items: center; border: none !important;}
.bios-new .bio .bio__content {text-align: center; width: 100%; margin-top: 25px;}
.bios-new .bio .bio__content p {display: none;}
.bios-new .bio div[role='button'] {cursor: pointer; text-decoration: underline;}
.bio-popup .bio__content div[role="button"]{display: none;}
.bios-new .bio .bio__image {width: 100%; max-width: 200px; margin-right: 0; margin-bottom: auto;}

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

/* Main Template */
.blog-container { }
.blog-container .main-panel { }
.blog-container .side-panel { float: none; width: unset; }
.blog-container .index { display: block; margin: 30px 0; text-transform: uppercase; 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 300px; 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(--primary)!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(--primary); border: 1px solid var(--primary); 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(--primary); transition: 0.4s; }

/* Side Panel
============================================================================= */
.blog-container .side-panel section { margin: 0 0 45px; }
.blog-container .side-panel section h4 { font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; 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-name { font-size: 13px; letter-spacing: 0.025em; text-transform: uppercase; }
.blog-author-list li a:hover .author-image img { transform: scale(1.1); transition: 0.7s; }

/* Post
============================================================================= */
.blog-post { background: var(--gray); border: 1px solid var(--border-color); }
.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 35px 25px; text-transform: uppercase; border: 0; margin: 0; }
.blog-post .post-header .post-title { font-size: 24px; margin: 0 0 5px; padding: 0; border: 0; font-family: var(--secondary-font); text-transform: none; color: var(--primary); }
.blog-post .post-header .post-date { font-size: 14px; color: #545655; line-height: 1.1; }
.blog-post .post-body { padding: 25px 35px 0; font-size: 17px; margin: 0; }
.blog-post .post-footer { padding: 20px 35px 35px; }
.blog-post .post-footer h4 { font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 20px; }
.blog-post .post-footer-share { text-align: right; }
.blog-post .read-more { margin-top: 30px; display: block; text-transform: uppercase; font-size: 14px; font-weight: bold; }

/* 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; letter-spacing: 0.1em; text-transform: uppercase; margin: 0; }
.blog-post .post-footer-author .author-details .author-title { font-size: 14px; color: #545655; line-height: 1.1; text-transform: uppercase; 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: #545655; 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: #545655; letter-spacing: 0.025em; text-transform: uppercase; }
@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 35px 35px; font-size: 15px; color: #545655; line-height: 1.1; }
.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 { }
#blog-inline .blog-post { background: none; border: 0; }
#blog-inline .blog-post .post-image { flex: 1 0 334px; }
#blog-inline .blog-post .post-featured { padding-top: 56.25%; }
#blog-inline .blog-post .post-header { padding: 0; margin: 0 0 10px; }
#blog-inline .blog-post .post-body { padding: 0; margin: 0; }
#blog-inline .blog-post .post-body .post-content { }
@media (min-width:992px) {
	#blog-inline .blog-post .post-body { padding-left: 55px; }
}

/* ==========================================================================
  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: 80px 0 90px; letter-spacing: 0.025em; }
#pricing header {}
#pricing header h1 { margin: 0; }
#pricing header p { font-size: 24px; line-height: 1.5em; margin-bottom: 40px; }
#pricing header p > strong { font-family: var(--secondary-font); }
#pricing .tier__title {font-size: 22px;}
#pricing .tier__property, #pricing .tier__pricing__title {font-size: 14px; font-weight: 200;}
#pricing .tier__pricing, #pricing .tier__units {text-transform: uppercase; font-weight: bold; font-size: 18px;}
#pricing .pricing__breakdown {margin: 40px 0px;}
#pricing .row .video-wrapper { max-width: 725px; }
#pricing .row p { line-height: 1.6em; margin-bottom: 30px; }
#pricing .row a { font-weight: 600; }
#pricing table { width: 100%; margin: 25px 0 80px; }
#pricing table > thead > tr > th { padding: 40px 60px 30px; text-align: center; color: #fff; font-family: var(--secondary-font); font-size: 30px; font-weight: 400; line-height: 1em; border-radius: 25px 25px 0 0; }
#pricing table > thead > tr > th:nth-of-type(2) { background-color: #4185ec; }
#pricing table > thead > tr > th:nth-of-type(3) { background-color: #2f60aa; }
#pricing table > thead > tr > th:nth-of-type(4) { background-color: var(--primary); }
#pricing table > tbody > tr:nth-of-type(odd) { background-color: #e7e6e6; }
#pricing table > tbody > tr:nth-of-type(even) { background-color: #f2f1f1; }
#pricing table > tbody > tr > th { color: #243642; font-weight: 400; }
#pricing table > tbody > tr > td { color: #243642; line-height: 1.2em; padding: 25px 15px 20px; }
#pricing table > tbody > tr > td > i { font-size: 24px; }
#pricing table > tbody > tr > td:nth-of-type(1) > i { color: #4185ec; }
#pricing table > tbody > tr > td:nth-of-type(2) > i { color: #2f60aa; }
#pricing table > tbody > tr > td:nth-of-type(3) > i { color: var(--primary); }
#pricing table > tbody > tr.stripe > td { background-color: var(--primary); color: #fff; font-weight: 500; }
#pricing .pricing__footer { margin: 0 auto; }
#pricing .pricing__footer h2 { color: var(--primary); font-family: var(--secondary-font); font-size: 30px; font-weight: 500; text-transform: none; margin: 0 0 30px; }
#pricing .pricing__footer p { line-height: 1.75em; letter-spacing: 0.0236em; }
#pricing .pricing__footer strong { font-size: 20px; }
@media (min-width: 992px) {
	#pricing { max-width: 1450px; width: 95%; margin: 0 auto; }
	#pricing table { max-width: 1373px; }
	#pricing table > thead > tr > th:nth-of-type(1) { max-width: 475px; width: 34.6%; }
	#pricing table > thead > tr > th:nth-of-type(2) { max-width: 295px; width: 21.49%; }
	#pricing table > thead > tr > th:nth-of-type(3) { max-width: 295px; width: 21.49%; }
	#pricing table > thead > tr > th:nth-of-type(4) { max-width: 310px; }
	#pricing table > tbody > tr > th { text-align: left; max-width: 475px; width: 34.6%; padding: 20px 50px 20px 30px; }
	#pricing table > tbody > tr > td { text-align: center; }
	#pricing table > tbody > tr > td:nth-of-type(1) { max-width: 295px; width: 21.49%; }
	#pricing table > tbody > tr > td:nth-of-type(2) { max-width: 295px; width: 21.49%; }
	#pricing table > tbody > tr > td:nth-of-type(3) { max-width: 310px; }
	#pricing .info {color: #fff; font-size: 16px; margin-left: 5px; font-family: var(--secondary-font); line-height: 24px;  height: 24px; width: 24px; border-radius: 50%; background: #000; display: inline-block; -webkit-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; text-align: center; }
	#pricing .info:hover { cursor: pointer; opacity: 0.7; -webkit-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; }
	#pricing .pricing__footer { max-width: 875px; }
}
@media (max-width: 991px) {
	#pricing header h1 { font-size: 2em; }
	#pricing .row { text-align: center; }
	#pricing .row .video-wrapper { margin: 0 auto; }
	#pricing table > thead { display: none; }
	#pricing table > tbody > tr { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }
	#pricing table > tbody > tr > th { text-align: center; padding: 25px 25px 20px; width: 100%; background-color: #000; color: #fff; }
	#pricing table > tbody > tr.stripe > td { width: 100%; }
	#pricing table > tbody > tr:not(.stripe) > td { float: right; text-align: right; width: 100%; border-bottom: 1px solid #fff; padding: 25px 25px 20px; }
	#pricing table > tbody > tr:not(.stripe) > td:nth-of-type(1):before { content: 'Tenant Placement Only'; width: 45%; padding-right: 15px; float: left; text-align: left; }
	#pricing table > tbody > tr > td:nth-of-type(2):before { content: 'Full Service Management'; width: 45%; padding-right: 15px; float: left; text-align: left; }
	#pricing table > tbody > tr > td:nth-of-type(3):before { content: 'Premium Service Management'; width: 45%; padding-right: 15px; float: left; text-align: left;}
	#pricing table .info { float: none; margin: 0 5px; color: #fff; font-size: 0; background: transparent; display: block; height: auto; width: auto; margin: 5px 0 0; line-height: normal; }
	#pricing table .info::after { content: attr(data-original-title); font-size: 14px; line-height: 1.2em; font-style: normal; font-family: var(--primary); font-weight: 400; }
	#pricing .pricing__footer { padding: 0 25px; }
}



/* ==========================================================================
  #Services Page(s)
============================================================================= */
.intro { padding: 85px 0; font-size: 17px; overflow: hidden; }
.intro p > a:not(.btn), .intro li > a:not(.btn) { font-weight: bold; }
.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 { position: relative; padding: 0 0 50px 0; font-family: var(--secondary-font); font-size: 24px; font-weight: 600; line-height: 1.2;  }
.form-cta__arrow { position: absolute; right: -60px; bottom: -10px; transform: scaleX(-1) rotate(87deg); transform-origin: left; z-index: 2; }
.form-cta__arrow svg { fill: var(--secondary); max-width: 100px; }
@media (min-width: 992px){
	.form-cta { padding: 0 90px 0 0; }
	.form-cta__arrow { bottom: -15px; transform: rotate(-8deg); }
	.form-cta__arrow svg { max-width: 151px; }
}


/* AMP
============================================================================= */
.amp { text-align: center; padding-top: 40px; }
.amp a { color: inherit; }
.amp a:hover { color: var(--secondary); }
.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 .frs-widget { display: flex; }
.amp__form .frs-widget label { display: none; }
.amp__form .frs-widget input { border: 0; height: 50px; padding: 0 15px; }
.amp__form .frs-widget button { white-space: nowrap; opacity: 1!important; text-transform: uppercase; }
@media (max-width: 600px){
	.amp__lead { font-size: 34px; }
	.amp__sub { font-size: 20px; }
	.amp__form .frs-widget { flex-wrap: wrap; }
	.amp__form .frs-widget button { width: 100%; }
}

.amp .btn--white {color: #fff !important;}
.amp .btn--white:hover {color: var(--primary) !important;}

/* Cluster Content
============================================================================= */
#pm-cluster { position: relative; margin-top: 40px; }
#pm-cluster > .container { position: relative; padding-top: 67px; }

/* Sub Nav */
#sub-nav { position: absolute; top: 0; left: 15px; right: 15px; height: 67px; color: #fff; text-transform: uppercase; letter-spacing: .025em; }
#sub-nav::before { content: ''; background-color: var(--dark); position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 1285px; 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: inherit; 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: 98; }
#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 CTAs */
#pm-ctas { padding: 0 0 40px; }
.info-box { font-size: 17px; text-align: center; padding: 55px 15px; height: 100%; background: var(--gray); border: 1px solid var(--border-color); }
.info-box__pre-title { margin: 0 0 10px; font-size: 20px; font-family: var(--secondary-font); text-transform: none; }
.info-box__title { margin: 0 0 20px; font-size: 26px; text-transform: uppercase; letter-spacing: .025em; }
.info-box .btn { margin-top: 10px; }
@media (min-width:501px) {
	.info-box { padding: 55px 50px; }
}

/* PM Guarantees */
#pm-guarantees { padding: 0 0 100px; }
#pm-guarantees .banner { padding: 105px 15px; }
#pm-guarantees .guarantee { font-size: 20px; }
#pm-guarantees .guarantee svg[class*='icon'] { height: 117px; width: 103px; }
#pm-guarantees .guarantee__title { font-size: 30px; font-weight: 400; margin: 20px 0 15px; font-family: var(--secondary-font); }
#pm-guarantees .guarantee p { min-height: 150px; }
@media (max-width:575.98px) {
	#pm-guarantees, #pm-guarantees .container { padding: 0; }
}

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

/* Pm Discover */
@media (min-width:992px) {
	#pm-discover { padding: 115px 0 15px; }
	#pm-discover h2 { font-size: 60px; }
}

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

/* Guarantees
================================================== */
#guarantees {}
#guarantees h3 {font-size:24px;font-style:normal;font-weight:bold;text-transform: uppercase;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(--primary); border: 1px solid var(--primary); transition: 0.5s; }
.frs-widget .frs-btn:hover, .frs-widget .prop-tabs .prop-tab-nav ul li a:hover { background: #fff; color: var(--primary); 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(--primary); color: var(--primary); text-decoration: none; font-weight: bold; font-size: 0.9em; }
.frs-paging-btn a:hover, .frs-paging-btn.active a { background: var(--primary); color: #ffffff; text-decoration: none; }




/* Agents Custom Page
============================================================================= */
.agents-page {font-size:22px; }
.agents-page .display-1 {color:var(--primary);}
#secondary-banner { position: relative; height:445px; margin-top: -30px; overflow: hidden; background-color: #000; background-size: cover; background-position: center left;background-repeat:no-repeat; }
#secondary-banner .image-list { display: none !important; }

#secondary-banner .container, #secondary-banner .container-fluid { position: relative; z-index: 9; margin: auto; }
#secondary-banner .prompt { color: var(--primary); text-align: left;font-size:22px;padding:115px 0; }
#secondary-banner .prompt .lead { font-size: 50px; margin: 0; font-weight: 400; margin: 0; line-height: 1.25em; }
#secondary-banner .prompt .sub { font-size: 30px; margin: 20px auto 0; max-width: 965px; line-height: 1.35em;  }
#secondary-banner .prompt p { font-size: 27px; margin: 25px 0 0; }
#secondary-banner .prompt p a { color: #fff; }
#secondary-banner .prompt .btn { margin-top: 25px; }

#secondary-banner.agents {height:100vh;padding-top:149px;min-height:1146px;margin-top:0;}
#secondary-banner.agents .prompt {max-width:550px;color:#000;}
#secondary-banner.agents .prompt .lead {color:var(--primary);}
#secondary-banner.agents .prompt ul li {margin-bottom:30px;}
#secondary-banner.agents .prompt p {margin-bottom:35px;}
#secondary-banner.agents .prompt .btn {display:block;max-width:300px;}
@media (min-width: 2001px) {
	#secondary-banner { background-size: cover; }
}
@media (max-width: 991px) {
	#secondary-banner { background-size: cover; background-attachment: scroll; }
	#secondary-banner.agents {background-position:center center;}
	#secondary-banner.agents::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(212, 212, 212, .6); }
}
@media (max-width: 500px) {
	#secondary-banner .prompt { padding: 75px 0; }
	#secondary-banner .prompt .lead { font-size: 36px; }
	#secondary-banner .prompt .sub { font-size: 22px;  }
}

.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-1200 { width: 1200px; 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-1500 { width: 1500px; 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; }
.mw-1850 { width: 1850px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }

.bg-light-blue {background:#b3c6d1;}
.bg-dark-blue {background:#09213c;}
.agents-banner {padding:20px 15px;text-align: center;}
.agents-banner h2 {font-size:50px;text-align: center;text-transform: uppercase;color:#fff;margin:0;}
.banner-gray-blue {background:#96a6af;}
.banner-darker-blue {background:#0c2d51;}

@media(max-width:991px){
	.agents-banner h2 {font-size:40px;}
}

#agent-program {}
#agent-program .box {background:#bed2de;border:0;padding:45px 15px;border-radius:10px;display:flex;justify-content: center;align-items: center;height:100%;}
#agent-program h4 {margin:0;}
#agent-program [class*='col-'] {margin-bottom:50px;}

#associate-agent-program {color:#fff;}
#associate-agent-program h3 {color:#fff;}
#associate-agent-program h4 {font-size:24px;margin-bottom:20px;}
#associate-agent-program .row {margin-top:50px; }

#associate-agent-program [class*='icon-'], #how-it-works [class*='icon-'] {background:#a3a0d9;height:100px;width:100px;border-radius:50%;justify-content: center;align-items: center;display:flex;}
#associate-agent-program [class*='icon-'] svg, #how-it-works [class*='icon-'] svg {height:50px;width:50px;}

#how-it-works {color:#fff;background:#172f52;}
#how-it-works h3 {color:#fff;margin-bottom:75px;}
#how-it-works h4 {font-size:24px;margin-bottom:20px;}
#how-it-works .item {margin-bottom:75px;}

@media(max-width:991px){
	#associate-agent-program [class*='icon-'], #how-it-works [class*='icon-'] {margin:0 auto 30px;}
}

#earn {color:#fff;}
#earn h3 {color:#fff;}
.text-purple {color:#a3a0d9;}
#earn > .row {justify-content: flex-end;align-items: flex-end;}
#earn .num {font-size:35px;color:var(--primary);position:absolute;text-align: center;top:10px;left:50%;transform:translateX(-50%);}
#earn .col-lg {position:relative;text-align: center;align-self: flex-end;}
#earn p {margin-top:20px;}
#earn .btn-white {transition:all 0.5s;}
#earn .assoc-agent-form {display:none;}
.bio-popup .btn-white {display:none;}

.btn-white {background-color: #fff; color: var(--primary) !important; border: 1px solid #fff; height: 40px; line-height: 40px; border-radius: 0; padding: 0 20px; font-size: 16px; font-weight: bold; text-transform: uppercase; display: inline-flex; align-items: center; justify-content: center; min-width: 271px; overflow: hidden; z-index: 3; white-space: nowrap;}
.btn-white:hover{background-color:transparent;color:#fff !important;}


/* AMP Step 1
============================================================================= */
.amp { text-align: center; }
.amp a { color: inherit; }
.amp a:hover { color: #CCC; }
.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 .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: #fff; border: 1px solid var(--primary); color: #172f53; font-weight: bold; white-space: nowrap; opacity: 1!important; text-transform: uppercase; flex: 0 1 150px;  }
.amp__form .ion-amp-form button:hover { border: 2px solid #fff; background: transparent; color: #fff; }
@media(min-width:601px){
	.amp__form .ion-amp-form { display: flex; justify-content:center; align-items:center; }
	.amp__form .ion-amp-form button {margin-left:15px;}
}
@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%; }
}

/* Set Design Standards & Colors Here */
#reviewstream { padding: 20px; }
#reviewstream-container, #reviewstream-page-stream {display: flex;flex-wrap: wrap;gap: 17px;overflow: visible; }
#reviewstream .review { padding: 20px 20px 0; display: flex; flex-direction: column; margin: 0; border: 0; border-radius: 20px;box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.08);}
#reviewstream .review-meta { padding-left: 42px; margin: 0; position: relative; display: flex; flex-wrap: wrap; flex-direction: column; height: 100%; }
#reviewstream .review-date { display: none;}
#reviewstream .review-rating { order: 3;}
#reviewstream .review-text { order: 4; padding-bottom: 45px; }
#reviewstream .review-attribution { order: 1; padding-bottom: 0; }
#reviewstream .review-source { position: absolute; top: 10px; left: 0; height: 32px; width: 32px; background: #f2f2f2; border-radius: 50%; display: flex; justify-content: center; align-items: center; }
#reviewstream .review-link { position: absolute; bottom: 10px; right: 0; }
#reviewstream .footer { flex: 100%; padding-top: 20px; text-align: right; }
#reviewstream-pager { display: none; }

@media (min-width:768px) {
	#reviewstream .review { flex: 1 1 0; }
}
@media (max-width:767px) {
  #reviewstream .review { width: 100%; }
}

/* Utilities - Helper Classes
============================================================================= */
.mw-450 { width: 450px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }
.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-1200 { width: 1200px; 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; }
.mw-1800 { width: 1800px; 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 */

@media (min-width:2001px) {
	.pw-1000 { width: 1000px; max-width: 100%; margin-left: auto; margin-right: auto; }
	.pw-1400 { width: 1400px; max-width: 100%; margin-left: auto; margin-right: auto; }
	.pw-1500 { width: 1500px; max-width: 100%; margin-left: auto; margin-right: auto; }
	.pw-1600 { width: 1600px; max-width: 100%; margin-left: auto; margin-right: auto; }
	.pw-1700 { width: 1700px; max-width: 100%; margin-left: auto; margin-right: auto; }
	.pw-1800 { width: 1800px; max-width: 100%; margin-left: auto; margin-right: auto; }
}
@media (max-width:2000px) {
	.pw-1000 { padding-left: max(25vw, 15px); padding-right: max(25vw, 15px); }
	.pw-1400 { padding-left: max(16vw, 15px); padding-right: max(16vw, 15px); }
	.pw-1500 { padding-left: max(12.5vw, 15px); padding-right: max(12.5vw, 15px); }
	.pw-1600 { padding-left: max(10vw, 15px); padding-right: max(10vw, 15px); }
	.pw-1700 { padding-left: max(8vw, 15px); padding-right: max(8vw, 15px); }
	.pw-1800 { padding-left: max(5vw, 15px); padding-right: max(5vw, 15px); }
}


/* 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: uppercase;}
#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: uppercase;font-size:30px;font-weight:bold;}

@media(min-width:1250px){
	#hoa-services .box {border:0;padding:60px 200px;}
}
/* Disabled state for submit button */
button.recaptcha-disabled,
.calc-form__btn.recaptcha-disabled { opacity: 0.6; cursor: not-allowed; pointer-events: none; }
.recaptcha-required-notice { margin-top: 8px; }
.recaptcha-error { color: #dc3545; font-size: 14px; margin-top: 8px; }
