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


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

/* Set Design Standards & Colors Here */
:root {
	--primary: #2c5d76;
	--primary-rgb: 44,93,118;
	--secondary: #6d7883;
	--dark: #11242e;
	--light: #edeef4;
	--gray: #edeef4;
	--gray-alt: #ededed;
	--gray-dark: #222;
	--gray-darker: #111111;
	--border-color: #c2c2c2;
	--muted: #c2c2c2;
	--body-text: #0e2c37;
	--text-dark: #000;
	--primary-font: 'Nunito', sans-serif;
	--secondary-font: 'IBM Plex Sans', sans-serif;
	--cursive-font: 'Pacifico', 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);font-size: 17px;color: var(--text-dark);line-height: 1.5em;letter-spacing: .05em;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-rendering: optimizeLegibility;}
main { overflow: hidden; }
@media (min-width: 1700px) {
	body { font-size: 20px; }
}

/* Font Styles
============================================================================= */
h1, h2, .display-1 { font-size: 2rem; margin: 0 0 45px; font-weight: 600; font-family: var(--secondary-font); line-height: 1; text-transform: uppercase; }
.display-1--sm { font-size: 2rem; }
h1 + h2, h2 + h3, .display-2 {font-family: var(--secondary-font);font-size: 1.5rem;font-style: italic;margin: -35px 0 35px;font-weight: 600;line-height: 1.5em;letter-spacing: .05em;text-transform: none;}
h3, .display-3 { font-size: 1.25rem; margin: 40px 0 8px; font-weight: bold; line-height: 1.2; letter-spacing: .05em; }
h4, .display-4 { font-size: 1rem; margin: 25px 0 5px; font-weight: bold; line-height: 1.2; }
.display-3-lg { font-size: 1.5rem; }
p { margin-bottom: 25px; }
a { color: var(--secondary); text-decoration: none; -webkit-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; }
a:hover, a:active { color: var(--primary); text-decoration: none; }
.pre { font-family: var(--primary-font); font-size: 1.5rem; text-transform: uppercase; letter-spacing: .05em; }
@media (min-width:992px) {
	h1, h2, .display-1 { font-size: 3rem; }
}
@media (max-width:575.98px) {
	h1, h2, .display-1 { font-size: 2rem; }
	h1 + h2, h2 + h3, .display-2 { font-size: 1rem; }
	h3, .display-3 { font-size: 1rem; }
}


/* Text Colors */
.text-default { color: var(--body-text)!important; }
.text-primary, .text--primary { color: var(--primary)!important; }
.text-light { color: var(--light)!important; }
.text-secondary, .text--secondary { color: var(--secondary)!important; }
.text-dark, .text--dark { color: var(--gray-dark)!important; }
.text-white, .text--white { color: #fff!important; }
.text-yellow, .text--yellow { color: #efa21b!important; }
.text-new-yellow { color: #FFC008!important; }
a.text-white:hover { opacity: 0.7; }

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

/* Buttons
============================================================================= */
.btn {position: relative;background-color: transparent;color: #fff;border: 1px solid var(--primary);height: 43px;line-height: 43px;border-radius: 21.5px;padding: 0 20px;font-size: 1rem;font-weight: 600;letter-spacing: .05em;text-transform: lowercase;display: -webkit-inline-box;display: -ms-inline-flexbox;display: inline-flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: center;-ms-flex-pack: 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; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); -webkit-transition: -webkit-transform 0.4s ease-out; transition: -webkit-transform 0.4s ease-out; -o-transition: transform 0.4s ease-out; transition: transform 0.4s ease-out; transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out; -webkit-transform-origin: left; -ms-transform-origin: left; transform-origin: left; background: rgb(255, 255, 255); background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, var(--primary) 50%, var(--primary) 100%); background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(50%, var(--primary)), to(var(--primary))); 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(--gray-dark) !important; }
.btn:hover::before { -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); -webkit-transform-origin: left; -ms-transform-origin: left; transform-origin: left; -webkit-transition: -webkit-transform 0.4s ease-out; transition: -webkit-transform 0.4s ease-out; -o-transition: transform 0.4s ease-out; transition: transform 0.4s ease-out; transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out; }
/* .btn.focus, .btn:focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb),.25); } */


@media (max-width: 460px) {
  .btn { white-space: normal; height: auto; padding: 10px 20px; line-height: 1.2; }
}

/* 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: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, var(--secondary) 50%, var(--secondary) 100%); background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(50%, var(--secondary)), to(var(--secondary))); background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, var(--secondary) 50%, var(--secondary) 100%); }

/*  */
.btn--white { background-color: #fff; color: var(--dark) !important; border: 1px solid #fff; }
.btn--white::before { background: rgb(255, 255, 255); }
.btn--white:hover { background-color: var(--primary)!important; color: #fff !important; border: 1px solid var(--primary); }
.btn--white:hover::before { background: var(--primary)!important; }

.btn--yellow { background-color: #f0a31a; color: var(--dark); border-color: #f0a31a; text-transform: uppercase; -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
.btn--yellow::before { background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, #f0a31a 50%, #fff 100%); background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, #f0a31a 50%, #f0a31a 100%); background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(50%, #f0a31a), to(#f0a31a)); background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, #f0a31a 50%, #f0a31a 100%); }
.btn--yellow:hover { color: #fff!important; border-color: var(--primary); }
.btn--yellow:hover::before { background: -o-linear-gradient(left, var(--primary) 0%, var(--primary) 50%, #fff 50%, #fff 100%); background: -webkit-gradient(linear, left top, right top, from(var(--primary)), color-stop(50%, var(--primary)), color-stop(50%, #fff), to(#fff)); background: linear-gradient(to right, var(--primary) 0%, var(--primary) 50%, #fff 50%, #fff 100%); }



.btn--alt--yellow { background-color: #f0a31a; color: var(--dark); border-color: #f0a31a; text-transform: uppercase; transition: 0.4s; position: relative; z-index: 1; }
.btn--alt--yellow::before { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 200%; transform: translateX(-50%); transform-origin: left; transition: transform 0.4s ease-out; background: linear-gradient( to right, #fff 0%, #fff 50%, #f0a31a 50%, #f0a31a 100% ); z-index: -1; }
.btn--alt--yellow:hover::before { transform: translateX(0); }
.btn--alt--yellow:hover { color: var(--dark) !important; border-color: #fff; }




/*  */
.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;
	-webkit-animation-timing-function: cubic-bezier(.33,.4,.43,1.15);
	        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: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0 -8px 15px; }
.btn-list .btn { margin: 0 8px 15px; }

/* Download Link */
.download-link { font-weight: 500; margin: 55px auto; text-align: center; }
.download-link h3 { margin: 0 0 25px; }
.download-link .btn { line-height: 1.3em; height: auto; padding: 13px 20px; white-space: normal; font-size: 1rem; display: inline-block; }

/* Images
============================================================================= */
img { max-width: 100%; height: auto; }
img.cover { -o-object-fit: 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; -webkit-transition: opacity 300ms; -o-transition: opacity 300ms; transition: opacity 300ms; }


/* Backgrounds
============================================================================= */
.bg-primary { background-color: var(--primary)!important; color: #fff; }
.bg-secondary { background-color: var(--secondary)!important; color: #fff; }
.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(--gray-dark); opacity: .9; }
.bg-image .container { position: relative; z-index: 2; }
.bg-gradient { color: #fff; background:rgb(17,36,46); background: -ms-linear-gradient( 0deg, rgb(17,36,46) 0%, rgb(44,93,118) 100%); }
.bg-gradient-reverse { color: #fff; background: rgb(44,93,118); -ms-linear-gradient( 0deg, rgb(44,93,118) 0%, rgb(17,36,46) 100%); }

[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; }

/* Box Items */
.image-box { position: relative; height: 0; padding-top: 100%; overflow: hidden; margin-top: 30px; }
.image-box::before { content: ''; height: 100%; width: 100%; position: absolute; top: 0; left: 0; background: rgba(0,0,0,0.5); z-index: 1; }
.image-box img { height: 100%; width: 100%; position: absolute; top: 0; left: 0; z-index: 0; -webkit-transition: .8s; -o-transition: .8s; transition: .8s; }
.image-box__title { color: #fff; text-transform: uppercase; font-size: 1.5rem; margin: 0; position: absolute; top: 50%; left: 50%; text-align: center; -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%); z-index: 3; transition: all 0.3s ease-in-out;}
.image-box__title::after { content: ''; height: 2px; width: 130px; background: #fff; margin: 10px auto 0; display: block; -webkit-transform: scaleX(0); -ms-transform: scaleX(0); transform: scaleX(0); -webkit-transition: .8s; -o-transition: .8s; transition: .8s; }
.image-box:hover img { -webkit-transform: scale(1.05); -ms-transform: scale(1.05); transform: scale(1.05); -webkit-transition: .8s; -o-transition: .8s; transition: .8s; }
.image-box:hover .image-box__title::after { -webkit-transform: scaleX(1); -ms-transform: scaleX(1); transform: scaleX(1); -webkit-transition: .8s; -o-transition: .8s; transition: .8s; }

.image-box-cta {position: relative; display: block;}
.image-box-cta .image-box__description {position: absolute;z-index: 1;top: 50%;left: 50%;transform: translate(-50%, -50%);width: 100%;color: #fff;padding: 0 15px;font-size: 18px; opacity: 0; visibility: hidden; transition: all 0.3s ease-in-out;}
.image-box-cta:hover .image-box__description {visibility: visible; opacity: 1;}
.image-box-cta:hover .image-box__title {opacity: 0; visibility: hidden;}
.image-box-cta:hover img {filter: blur(5px);}
/* Social Media Icons
============================================================================= */
.social { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; }
.social a { text-align: center; border: 1px solid var(--primary); color: var(--light); background: var(--primary); height: 35px; width: 35px; line-height: 35px; border-radius: 50%; font-size: 1rem; }
.social a ~ a { margin-left: 5px; }
.social a:hover { color: #fff; background: var(--gray-dark); border: 1px solid var(--gray-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; }

/* 3-column List */
.list--col-3 { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-bottom: 15px; }
.list--col-3 li { -webkit-box-flex: 0; -ms-flex: 0 1 33%; flex: 0 1 33%; }

/* 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: 1.2rem; text-align: left; counter-increment: item-counter; }
.numbers li::before { content: counter(item-counter) "."; position: absolute; left: 0; top: 2px; font-size: 1.2rem; 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: 1.5rem; font-weight: bold; text-transform: uppercase; margin: 0 0 15px; }
@media (max-width:375px) {
	.numbers li { padding-left: 65px; font-size: 1rem; }
	.numbers li::before { height: 48px; width: 48px; font-size: 1rem; line-height: 45px; }
	.numbers li h3 { font-size: 1rem; }
}

/* 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: 1rem; }
.checks li::before { color: var(--primary); content: '\f00c'; font-size: 1.25rem; 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: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-bottom: 15px; }
.checks--cols li { -webkit-box-flex: 0; -ms-flex: 0 1 235px; 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: 1rem; 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: 1rem; 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: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.icon-list:before { display: none; }
.icon-list__item { -webkit-box-flex: 0; -ms-flex: 0 0 255px; 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: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-shadow: 0px 1.1rem 42.57px 0.43px rgba(0, 0, 0, 0.1); box-shadow: 0px 1.1rem 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: 1rem; font-weight: 400; margin: 25px 0 10px; text-transform: uppercase; }
.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%; }

@media (min-width: 992px) {
	.icon-list--col-3 { margin: 0 -25px; }
	.icon-list--col-3 .icon-list__item { padding: 0 25px; margin: 0 auto 50px; -webkit-box-flex: 0; -ms-flex: 0 0 33.33%; flex: 0 0 33.33%; }
}

/* Image List */
.image-list { list-style: none; padding: 0; margin: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.image-list__item { -webkit-box-flex: 1; -ms-flex: 1 0 271px; 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; -webkit-transition: 0.8s; -o-transition: 0.8s; transition: 0.8s; }
.image-list__item a:hover img { -webkit-transform: scale(1.08); -ms-transform: scale(1.08); transform: scale(1.08); -webkit-transition: 0.8s; -o-transition: 0.8s; transition: 0.8s; }
.image-list__title { position: relative; font-size: 1rem; 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; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }
@media (min-width:992px) {
	/* .image-list { margin: 0 -15px; } */
	.image-list__item { -webkit-box-flex: 0; -ms-flex: 0 0 25%; 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; -webkit-box-flex: 0; -ms-flex: 0 0 50%; 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; -webkit-box-flex: 0; -ms-flex: 0 0 33.33%; 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-1100 { width: 1100px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }
.mw-1150 { width: 1150px; max-width: 100%; margin-left: auto!important; margin-right: auto!important; }
.mw-1250 { width: 1250px; 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-1500 { padding-left: 12.5vw; padding-right: 12.5vw; }
.pw-1600 { padding-left: 10vw; padding-right: 10vw; }
.pw-1700 { padding-left: 8vw; padding-right: 8vw; }
.pw-1800 { padding-left: 5vw; padding-right: 5vw; }

/* Adjust size of padding between columns */
.g-3 { margin: -15px; }
.g-3 > [class*='col-'] { padding: 15px; }
.g-4 { margin: -1.1rem; }
.g-4 > [class*='col-'] { padding: 1.1rem; }
.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; }
	.pl-xl-7 { padding-left: 7rem!important; }
	.px-lg-7 { padding-left: 7rem!important; padding-right: 7rem!important; }
	.px-xl-12 { padding-left: 12rem!important; padding-right: 12rem!important; }
	.g-xl-4 { margin: -1.1rem; }
	.g-xl-4 > [class*='col-'] { padding: 1.1rem; }
	.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: -1.1rem; }
	.g-lg-4 > [class*='col-'] { padding: 1.1rem; }
	.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; }
	[class*='mw-'].mr-lg-0 { margin-right: 0!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); -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; -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); -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; }
.video-wrapper video, .video-wrapper img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }

/* 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) {
	/* [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) { -webkit-animation-fill-mode: backwards; animation-fill-mode: backwards; -webkit-animation-play-state: paused; animation-play-state: paused; opacity: 0; -webkit-transition: opacity .2s; -o-transition: opacity .2s; 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: 181px; }
#header { height: var(--header-height); background-color: transparent; -webkit-transition: background-color 0.4s ease-out, -webkit-box-shadow 0.2s ease-out; transition: background-color 0.4s ease-out, -webkit-box-shadow 0.2s ease-out; -o-transition: background-color 0.4s ease-out, box-shadow 0.2s ease-out; transition: background-color 0.4s ease-out, box-shadow 0.2s ease-out; transition: background-color 0.4s ease-out, box-shadow 0.2s ease-out, -webkit-box-shadow 0.2s ease-out; position: absolute; top: 0; left: 0; width: 100%; z-index: 99; color: #fff; }
#header .container-fluid { position: relative; height: 100%; max-width: 1950px; margin: 0 auto; }
#header .logo {position: absolute;top: 42%;left: 15px;max-width: 60vw;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%); z-index: 2;}
#header .logo img {max-height: 125px;max-width: 200px;-webkit-filter: grayscale(1) invert(1) brightness(10);filter: grayscale(1) invert(1) brightness(10);}
#header .btn-links { position: absolute; top: 15px; right: 15px; }
#header .phone {color: inherit;font-family: 'Plus Jakarta Sans', sans-serif;font-size: 1.3rem;position: absolute;top: 50%;right: 15px;width: 200px;text-align: center;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%); z-index: 2; }
#header .phone a { color: inherit; font-weight: 600; -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
#header .phone a:hover { opacity: 0.7; -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
#header .social {position: absolute;top: 60%;right: 15px;width: 200px;-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center; }
#header .social a:not(:hover) { border-color: transparent; background: transparent; }
#header .links { font-size: 16px; font-weight: 600; list-style: none; padding: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; position: absolute; top: 15%; left: 50%; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); letter-spacing: .05em; text-transform: uppercase; }
#header .links li { padding: 0 10px; }
#header .links li:first-child::after { content: '|'; margin-left: 20px; }
#header .links a { color: inherit; }
#header .links i { color: var(--secondary); height: 32px; width: 32px; line-height: 32px; text-align: center; border-radius: 50%; background: #fff; -webkit-box-shadow: 0px 17px 32px 0px rgba(100, 100, 100, 0.3); box-shadow: 0px 17px 32px 0px rgba(100, 100, 100, 0.3); margin-right: 10px; -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
#header .links a:hover { color: var(--primary); }
#header .links a:hover i { background: var(--primary); color: #fff; -webkit-transition: .4s; -o-transition: .4s; transition: .4s; }
#header .nav {position: absolute;top: 52%;left: 50%;-webkit-transform: translate(-50%,-50%);-ms-transform: translate(-50%,-50%);transform: translate(-50%,-50%);width: 100%;max-width: 1600px; z-index: 1;}
#header .launch-menu-button { display: none; position: absolute; bottom: 0; right: 50px; text-align: right; line-height: 50px; color: inherit; -webkit-transition: bottom 0s; -o-transition: bottom 0s; transition: bottom 0s; }
@media (max-width: 1425px) {
	#header .social { z-index: 2; }
}
@media (max-width:1313px) {
	#header .phone { font-size: 1rem; }
}
@media (min-width: 992px) and (max-width:1199px) {
	#header .phone { width: 150px; top: 22%; }
	#header .social { width: 150px; top: 10px;right:auto;left:15px; }
	#header .logo img { max-width: 150px; }
	#header .nav { top: 50%; }
	#header .launch-menu-button {bottom:auto;top:50%;transform:translateY(-50%);}
}
@media (max-width: 1199px) {
	#header .logo { top: 50%; }
	#header .nav { display: none; }
	#header .launch-menu-button { display: block; }
}
@media (max-width:991px) {
	:root { --header-height: 135px; }
	#header .launch-menu-button { display: block; }
	#header .nav,
	#header .links,
	#header .social,
	#header .btn-links	{ display: none; }
	#header .logo img { max-width: 100%; }
	#header .launch-menu-button { right: 15px; bottom:auto;top:50%; }
	#header .phone { width: auto; top: 25%; right: 15px; font-size: 1rem; }
}
@media (max-width:600px) {
	#header .launch-menu-button {bottom:auto;top:50%;}
}
/* @media (max-width:425px) {
	#header .logo { text-align: center; right: 15px; left: 15px; top: 40%; margin: 0 auto; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }
	#header .launch-menu-button { bottom: 0; left: 0; top: auto; -webkit-transform: none; -ms-transform: none; transform: none; text-align: center; }
} */

/* Header Affix */
#header.affix { height: 50px; background-color: rgba(17, 36, 46, 1); -webkit-transition: background-color 0.4s ease-in, -webkit-box-shadow 0.2s ease-in; transition: background-color 0.4s ease-in, -webkit-box-shadow 0.2s ease-in; -o-transition: background-color 0.4s ease-in, box-shadow 0.2s ease-in; transition: background-color 0.4s ease-in, box-shadow 0.2s ease-in; transition: background-color 0.4s ease-in, box-shadow 0.2s ease-in, -webkit-box-shadow 0.2s ease-in; -webkit-box-shadow: var(--box-shadow); box-shadow: var(--box-shadow); }
#header.affix .phone, #header.affix .links,
#header.affix .social, #header.affix .btn-links { display: none; }
#header.affix .logo { left: 15px; right: auto; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }
#header.affix .logo img { max-height: 30px; }
#header.affix .nav { bottom: auto; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-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; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }
#header.affix .nav { display: none; }


/* ==========================================================================
   #Nav
============================================================================= */
#header .nav {list-style: none;padding: 0;margin: 0;font-weight: 600;font-size: 1rem;letter-spacing: .05em;text-transform: uppercase;-ms-flex-pack: distribute;-webkit-box-pack: center;justify-content: center;}
#header .nav__item {position: relative;padding: 10px 1vw;line-height: 29px;}
#header .nav__item a { color: #fff; }
#header .nav__item > a::after { content: ''; height: 29px; width: 100%; border-radius: 14px; background-color: var(--light); position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%,-50%) scale(0); -ms-transform: translate(-50%,-50%) scale(0); transform: translate(-50%,-50%) scale(0); -webkit-transition: 0.3s ease-in; -o-transition: 0.3s ease-in; transition: 0.3s ease-in;z-index: -1; -webkit-box-shadow: 0px 17px 32px 0px rgba(187, 187, 187, 0.3); box-shadow: 0px 17px 32px 0px rgba(187, 187, 187, 0.3); }
#header .nav__item:hover a, #header .nav__item.active a { color: var(--primary); }
#header .nav__item:hover > a::after, #header .nav__item.active > a::after { -webkit-transform: translate(-50%,-50%) scale(1); -ms-transform: translate(-50%,-50%) scale(1); transform: translate(-50%,-50%) scale(1); -webkit-transition: 0.3s ease-out; -o-transition: 0.3s ease-out; transition: 0.3s ease-out; }
#header .nav__item:first-child { display: none; }
#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; -webkit-box-shadow: 0px 17px 32px 0px rgba(187, 187, 187, 0.3); box-shadow: 0px 17px 32px 0px rgba(187, 187, 187, 0.3); z-index: 3; }
#header .nav__dropdown > li { white-space: nowrap; line-height: 35px; padding: 0 20px; }
#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; }
@media (min-width: 2001px) {
	#header .nav__item { padding: 0 20px; }
}
@media (max-width:1699px) {
	#header .nav__item:nth-last-child(2) .nav__dropdown  { left: auto; right: 0; }
}
@media (max-width: 1656px) {
	#header .nav { font-size: 16px; }
	#header .nav__item { padding-left: 0.75vw; padding-right: 0.75vw; }
}
@media (max-width:1425px) {
	#header .nav__item:last-child .nav__dropdown  { left: auto; right: 15px; }
}
@media (max-width: 1399px) {
	#header .nav { font-size: 15px; }
	#header .nav__item { padding: 2px 0.65vw; }
}

/* Launch Menu
============================================================================= */
.launch-menu { position:fixed; top:0; bottom:0; right:0; width:300px; background:#fff; padding-bottom: 50px; z-index:9999; -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); -webkit-transition: 0.5s ease-out; -o-transition: 0.5s ease-out; transition: 0.5s ease-out; text-align: center; overflow-y: scroll; -webkit-box-shadow: var(--box-shadow); box-shadow: var(--box-shadow); }
.launch-menu.open { -webkit-transform: translateX(0%); -ms-transform: translateX(0%); transform: translateX(0%); -webkit-transition: 0.5s ease; -o-transition: 0.5s ease; 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: 1.5rem; display: block; background: transparent; border: 0; -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; outline: none!important; }
.launch-menu-close:hover { opacity: 0.8; -webkit-transition: 0.4s; -o-transition: 0.4s; 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); 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; -webkit-transition: color 0s; -o-transition: color 0s; 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); 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); 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: 1.2rem; margin: 20px 0; color: var(--secondary); }
.launch-menu .btn-links { margin: 0 auto 20px; }
.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; }



/* ==========================================================================
   #Footer
============================================================================= */
.footer { color: #fff; font-size: 1rem; overflow: hidden; }
.footer section { padding: 75px 0; }
.footer .container-fluid { max-width: 1700px; }
.footer h3 { margin: 0 0 25px; color: var(--secondary); font-family: var(--cursive-font); font-size: 1.8rem; font-style: italic; font-weight: 500; }
.footer a { color: inherit; }
.footer a:hover { color: var(--primary); }
.footer__logo img { -webkit-filter: brightness(0) invert(1); filter: brightness(0) invert(1); margin-bottom: 25px; max-width: 200px; }
.footer__address .street-address { display: block; }
.footer__phone { margin: 30px 0; }
.footer__hours { text-align: left; }
.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__copy { font-size: 1rem; text-align: center; max-width: 1435px; margin: 70px auto 0; }
.footer__ada { text-align: center; max-width: 1435px; margin: 35px auto 0; }
.footer__affil img, .footer__affil svg { padding: 5px; }
.footer__affil svg { height: 60px; width: 60px; fill: #fff; }
@media (min-width:992px) {
	.footer .tenant-col { padding-left: 4.5vw; }
}
@media (max-width:991px) {
	.footer { text-align: center; }
	.footer__links { margin-top: 50px; }
}

.footer .footer-disclaimer { background-color: #2E5876; color: #fff; padding: 58px 0; text-align: center; }



/* Footer CTA
============================================================================= */
.footer-cta { padding: 35px 0; }
.footer-cta h3 { font-size: 3rem; 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: var(--light); padding: 65px 25px; border-radius: 30px; }
.form-container h2 { color: #000; font-size: 1.8rem; font-family: var(--secondary-font); text-transform: uppercase; 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: #fff; }
.form-container .ion-form-group input, .form-container .ion-form-group select { height: 50px; }
.form-container .ion-form-group textarea { height: 175px; }
.form-container .ion-form-group ::-webkit-input-placeholder, .form-container .ion-form-group select:invalid { color: #000; font-size: 16px; text-transform: uppercase; letter-spacing: .1em; }
.form-container .ion-form-group select { padding-left: 5px;  border: 0; background: #fff; }
.form-container .ion-form-group-break h3 { color: inherit; font-size: 15px; 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: -webkit-box; display: -ms-flexbox; 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; -webkit-transition: 0.3s; -o-transition: 0.3s; 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; -webkit-transition: 0.3s; -o-transition: 0.3s; 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; -webkit-transition: 0.3s; -o-transition: 0.3s; 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; -webkit-transition: 0.3s; -o-transition: 0.3s; 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: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.form-container .ion-btn::after { content: '\f061'; width: 53px; height: 53px; line-height: 57px; border-radius: 50%; font-size: 1.4rem; 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); }
.form-container .ion-form-success { color: var(--dark); }
.form-container [data-name*='vendor'] .ion-form-group:first-child { display: none; }
.form-container .ion-form-group-checkbox input[type="checkbox"] {height: 30px; width: 30px;}
@media (min-width:992px) {
	.form-container { max-width: 100%; width: 539px; margin-left: auto; padding-left: 55px; padding-right: 55px; }
	.form-container h2 { padding: 0 15px;}
}
/* Form Container Stacked on small screens */
@media (min-width:600px) and (max-width:991px) {
	.form-container form { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin: 0 -10px; }
	.form-container form .ion-form-group { -ms-flex-preferred-size: calc(50% - 20px); flex-basis: calc(50% - 20px); -webkit-box-flex: 1; -ms-flex-positive: 1; 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 { -ms-flex-preferred-size: 100%; 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: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin: 0 -10px; }
	.form-container--stacked form .ion-form-group { -ms-flex-preferred-size: calc(50% - 20px); flex-basis: calc(50% - 20px); -webkit-box-flex: 1; -ms-flex-positive: 1; 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 { -ms-flex-preferred-size: 100%; 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 { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.form-container-inline > div { width: 100%; max-width: 100%; overflow: hidden; }
.form-container-inline form { position: relative; overflow: hidden; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin: 0 -15px; }
.form-container-inline label { font-weight: 400!important; text-transform: lowercase; margin-bottom: 15px!important; }
.form-container-inline input { font-size: 1rem; border: 0!important; height: 29px; padding: 0 15px!important; border-radius: 14.5px!important; background: var(--gray-alt); color: var(--secondary); }
.form-container-inline button { width: 153px; height: 53px; line-height: 53px; border-radius:0; background: var(--primary); border-color: var(--primary); text-transform: uppercase; 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; -webkit-box-flex: 1; -ms-flex: 1 1 auto; 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: lowercase; }
.form-container-inline--btn-arrow button { background-color: var(--primary); border-color: var(--primary); font-size: 0; width: 53px; height: 53px; line-height: 53px; border-radius: 50%; margin: 30px 15px 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: 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: 1.4rem; 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 { -webkit-box-flex: 1; -ms-flex: 1 1 33.33%; flex: 1 1 33.33%; }
	.form-container-inline--last-grow .ion-form-group:last-of-type { -webkit-box-flex: 2!important; -ms-flex: 2 0 100%!important; 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: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; 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; -webkit-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; }
.form-swap .nav a::after { content: "\f00c"; color: var(--primary); font-size: 1rem; position: absolute; left: 1px; top: 2px; opacity: 0; font-family: "Font Awesome 5 Pro"; font-style: normal; font-weight: 400; line-height: 1; -webkit-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; }
.form-swap .nav a:hover::after { opacity: .5; -webkit-transition: 0.3s; -o-transition: 0.3s; 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: 1rem; 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.agents h4 { background-color: var(--primary); color: #fff; }
.launch-accordion.agents > li div { color: var(--body-text); }
.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; text-align: left;}
.launch-accordion.faqs h4::before { content: 'Q:'; color: var(--primary); font-size: 1.5rem; position: absolute; top: 45%; left: 30px; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); 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: 1rem; }
.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); color: var(--light); }
.areas { list-style: none; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; font-family: var(--secondary-font); color: var(--light); font-size: 1.5rem; letter-spacing: .1em; margin: -15px; padding-left: 0; }
.areas li { padding: 15px; -webkit-box-flex: 0; -ms-flex: 0 1 245px; flex: 0 1 245px; }
.areas a { color: inherit; }
.areas a:hover { color: var(--secondary); }
@media (min-width: 1199px) {
	#areas { text-align: left; }
	#areas h2 { padding: 0 6.5vw; text-align: right; margin: 0; }
}
@media (max-width: 1200px) {
	.areas { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
}

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

/* Home Banner
============================================================================= */
#home-banner { position: relative; padding-top: var(--header-height); overflow: hidden; background-color: #000; background-size: cover; background-position: top center; height: calc(100vh - 125px); min-height: 670px; }
#home-banner .container { position: relative; z-index: 9; height: 100%; }
#home-banner .home-banner-image::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); z-index: 1; }
#home-banner .home-banner-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; }
#home-banner .home-banner-image img { width: 100%; }

/* Home Banner Prompt */
#home-banner .prompt { font-size: 3.5rem; color: #fff; position: relative; padding: 30px 0 55px; text-align: center; width: 1200px; max-width: 100%; margin: 0 auto; letter-spacing: .05em; }
#home-banner .prompt .lead { font-size: inherit; font-family: var(--secondary-font); font-weight: 500; color: inherit; line-height: 1; text-transform: uppercase; margin: 0; }
#home-banner .prompt .sub { font-size: 0.5em; font-family: var(--primary-font); font-weight: 600; color: inherit; text-transform: uppercase; letter-spacing: .05em; margin: 1.16em 0 0; }
#home-banner .prompt p { font-size: 0.5em; margin: 1.15em 0 0; font-family: var(--secondary-font); color: inherit; text-transform: none; letter-spacing: .05em; }
#home-banner .prompt .fra { padding-top: 45px; }

@media (max-width:991px) {
	#home-banner .prompt .lead { padding-top: 0px; }
	#home-banner .prompt { padding-top: 45px; }
}
@media (max-width:500px) {
	#home-banner .prompt { font-size: 2rem; }
}


/* 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: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-wrap: wrap; flex-wrap: wrap; color: var(--gray-dark); }
.stats__item { padding: 0 30px 30px; letter-spacing: .05em; }
.stats__number { font-size: 5rem; font-family: var(--secondary-font); }
.stats__description { font-size: 1.1rem; display: block; }
@media (max-width:1345px) {
	.stats__number { font-size: 3.5rem; }
	.stats__description { font-size: 1rem; }
}
@media (min-width:930px) and (max-width:1199px) {
	.stats__item { padding: 0 20px 30px; }
	.stats__number { font-size: 2.25rem; }
	.stats__description { font-size: 16px; }
}
@media (max-width:500px) {
	.stats { display: block; }
	.stats__number { font-size: 2.25rem; }
	.stats__description { font-size: 16px; }
}

/* Home CTAs
============================================================================= */
#home-ctas { padding: 0 0 10px;}
#home-ctas i { display: none; }
@media (min-width: 501px) {
	#home-ctas .cta__links li:nth-child(even) { border-left: 2px solid var(--primary); border-right: 2px solid var(--primary); padding: 0 5vw; }
}
@media (min-width: 1200px) {
	#home-ctas .row { -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; }
	#home-ctas .cta { min-height: 481px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
	#home-ctas .cta__links { min-height: 50px; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
	#home-ctas .cta__links li:nth-child(1) { padding: 0 1.5vw 0 0; }
	#home-ctas .cta__links li:nth-child(3) { padding: 0 0 0 1.5vw; }
	#home-ctas .cta__links li:nth-child(even) { padding: 0 1.5vw; }
}
@media (min-width: 1330px) {
	#home-ctas .cta__links li:nth-child(even) { padding: 0 1vw; }
}
@media (min-width: 1525px) {
	#home-ctas .cta__links li:nth-child(even) { padding: 0 2.5vw; }
}

/* CTAs */
.ctas { }
.cta {position: relative;width: 593px;max-width: 100%;margin: 30px auto;padding: 65px 30px;z-index: 2;text-align: center; transition: 0.5s ease; }
.cta::before { content: ''; position: absolute; top: 0; left: 0; -webkit-transform: scale(.9); -ms-transform: scale(.9); transform: scale(.9); opacity: 0; -webkit-box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); height: 100%; width: 100%; background: #fff; border-radius: 60px; -webkit-transition: .5s; -o-transition: .5s; transition: .5s; }
.cta__icon { height: 116px; width: 116px; border-radius: 50%; background-color: var(--gray); display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; position: relative; z-index: 2; }
.cta__icon img { max-width: 95px; max-height: 95px; }
.cta__title {font-size: 1.5rem;font-family: var(--secondary-font);font-weight: 400;color: var(--gray-dark);line-height: 1.3em;margin: 25px 0 40px;-webkit-transition: 0.5s;-o-transition: 0.5s;transition: 0.5s;position: relative;z-index: 3;}
.cta__links { font-size: 1rem; line-height: 1.25em; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -ms-flex-pack: distribute; justify-content: space-around; list-style: none; margin: 0 -10px; padding: 0; width: 100%; text-transform: lowercase; position: relative; z-index: 3; }
.cta__links i { display: block; margin-top: 10px; font-size: 1.3rem; color: #b7b7b7; opacity: 0; -webkit-transition: .5s; -o-transition: .5s; transition: .5s; }
.cta__links a { color: var(--primary); }
.cta__links a:hover { color: #000; -webkit-transition: .5s; -o-transition: .5s; transition: .5s; }
.cta:hover::before { -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); opacity: 1; -webkit-transition: .5s; -o-transition: .5s; transition: .5s; }
.cta:hover .cta__links i { opacity: 1; -webkit-transition: .5s; -o-transition: .5s; transition: .5s; }
@media (max-width:991px) {
	.cta { top: 0; }
	.cta::before { -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); opacity: 1; }
	.cta .cta__links i { opacity: 1; }
	.cta .cta__links li br { display: none; }
}
@media (max-width:500px) {
	.cta__links { display: block; }
	.cta__links a { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; padding: 12px 0; }
	.cta .cta__links i { display: inline-block; padding-left: 10px; margin: 0; }
}

/* Home Welcome
============================================================================= */
#home-welcome { color: #fff; background: var(--secondary); padding: 90px 0 0; }
#home-welcome h2 + h3 { color: inherit; }
#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(--secondary); color: #fff; text-align: center; }
#home-management-types h2 span { position: relative; top: 45px; line-height: 1.2em; }
.clouds { margin-bottom: 0; -webkit-filter: brightness(10); filter: brightness(10); }
.property-type { position: relative; display: block; }

.property-type__image img { -webkit-transform-origin: bottom; -ms-transform-origin: bottom; transform-origin: bottom; -webkit-transition: .5s; -o-transition: .5s; transition: .5s; }
.property-type__image--residential img { margin-bottom: -12px; }
.property-type__title {font-size: 1.1rem;color: #fff;font-weight: 400;text-transform: uppercase;-webkit-transition: .4s;-o-transition: .4s;transition: .4s;}
@media (min-width: 992px) {
	#home-management-types { padding: 0; margin-bottom: 250px; }
	.property-type__title {position: absolute;top: 100%;left: 0;right: 0;color: #000;}
	.property-type:hover .property-type__image img { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); -webkit-transition: .5s cubic-bezier(.07,.66,.53,1); -o-transition: .5s cubic-bezier(.07,.66,.53,1); transition: .5s cubic-bezier(.07,.66,.53,1); }
	.property-type:hover .property-type__title { color: var(--primary);  -webkit-transition: .4s;  -o-transition: .4s;  transition: .4s; }
}
@media (min-width: 1199px) {
	.property-type__title {font-size: 1.25rem;}
}
@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; -webkit-box-shadow: 0px 33px 79px 0px rgb(0 0 0 / 8%); box-shadow: 0px 33px 79px 0px rgb(0 0 0 / 8%); overflow: hidden; }
}



/* Home Analysis
============================================================================= */
#analysis-banner {padding-top: 0;position: relative;top: -100px;}
#analysis-banner h2 { line-height: 1.25em; max-width: 600px; margin-top: 30px; }
#analysis-banner li { line-height: 2.25em; }
#analysis-banner.pm { padding: 130px 0; }
@media (min-width: 1300px) {
	#analysis-banner .container { max-width: 1500px; }
	#analysis-banner ul { padding-left: 20px; }
}
@media (min-width: 1400px) {
	#analysis-banner .container {max-width: 1350px;}
}
@media (min-width: 1715px) and (max-width: 1865px) {
	#analysis-banner .container { margin-right: 30px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
	#analysis-banner { top: auto; padding-top: 100px; }
}
@media (max-width: 991px) {
	#analysis-banner { padding-bottom: 50px; }
	#analysis-banner .form-container-inline { margin-bottom: 50px; }
}

/* Home Rentals
============================================================================= */
#home-rentals .btn { min-width: 275px; }

@media (min-width: 992px) {
	#home-rentals .content { max-width: 740px; }
	#home-rentals .image { max-width: 865px; }
}
/* @media (min-width: 1765px) {
	#home-rentals { position: relative; top: -155px; margin-bottom: auto; }
} */
@media (min-width: 992px) and (max-width: 1475px) {
	#home-rentals { padding-top: 95px; }
}
@media (max-width: 1764px) {
	#home-services { padding-top: 95px; }
}




/* Home Rentals
============================================================================= */
#wolfnest-difference { padding: 130px 0; }
#wolfnest-difference header { margin-bottom: 35px; }
.box-item { border-radius: 30px; -webkit-box-shadow: 0px 12px 38px 0px rgba(100, 100, 100, 0.3); box-shadow: 0px 12px 38px 0px rgba(100, 100, 100, 0.3); padding: 50px 2.5vw; margin-bottom: 35px; container: box-item / inline-size; }
.box-item__header { display: flex; flex-direction: column; flex-wrap: wrap; justify-content: center; align-items: center; padding-bottom: 40px; gap: 15px; }
.box-item__header img { max-width: 90px; }
.box-item__header h3 { text-transform: uppercase; margin-top: 0; text-align: center; }
.box-item a { text-transform: uppercase; font-weight: bold; }
#wolfnest-difference .form-container { width: 100%; }
.difference__item { list-style-type: none; display: flex; flex-wrap: wrap; padding-left: 0; }
.difference__item li { margin-bottom: 25px; padding: 0 15px; }
.difference__item li .number { font-family: var(--primary-font); font-size: 2rem; color: var(--primary); }
.difference__item li h4 { font-size: 1.4rem; font-weight: 600; color: #000; text-transform: uppercase; margin-bottom: 15px; }
@media (min-width: 768px) {
	.difference__item li { -webkit-box-flex: 0; -ms-flex: 0 0 45%; flex: 0 0 45%; }
	.box-item__header { flex-direction: row; }
}

@media (min-width: 992px) {
	#wolfnest-difference.home { padding: 0; }
	.box-item { height: calc(100% - 40px); }
}

@media (min-width: 1600px) {
	#wolfnest-difference .container-fluid { padding-right: 6rem; padding-left: 6rem; }
	#wolfnest-difference .col-lg-8 { -webkit-box-flex: 69.5%; -ms-flex: 69.5%; flex: 69.5%; max-width: 69.5%; }
	#wolfnest-difference .col-lg-4 { -webkit-box-flex: 28.5%; -ms-flex: 28.5%; flex: 28.5%; max-width: 28.5%; }
	#wolfnest-difference .form-container { max-width: 480px; }
	.difference__item li { margin-bottom: 50px; }
	.difference__item li .number { font-size: 3rem; }
	.box-item { padding-right: 2vw; }
	.box-item__header { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; }
}
@media (min-width: 1765px) {
	#wolfnest-difference { padding-top: 0; }
}
@media (min-width: 992px) and (max-width: 1714px) {
	#wolfnest-difference .form-container { margin-top: 5em; }
}
@media (min-width: 1715px) {
	#wolfnest-difference.home .container-fluid { padding-right: 7.25rem; padding-left: 7.25rem; }
	#wolfnest-difference.home .row { -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
	.difference__item li { -webkit-box-flex: 0; -ms-flex: 0 0 33%; flex: 0 0 33%; }
}
@media (min-width: 1715px) and (max-width: 2000px) {
	.difference__item li { max-width: 340px; }
}
@media (min-width: 2001px) {
	#wolfnest-difference .form-container { max-width: 25vw; }
}
@media (min-width: 768px) {
	.box-item__header h3 { padding-left: 2.5vw; max-width: 250px; text-align: left; }
}


/* Home Testimonials
============================================================================= */
#home-testimonials { padding: 0 0 35px; }
#home-testimonials h3{ color: #000; font-family: var(--secondary-font); font-size: 1.5rem; font-style: italic; text-transform: uppercase; }
#home-testimonials .r4e-widget { padding: 20px 0 45px; }
@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: 1.4rem; 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: 1rem; line-height: 1.5; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: 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(--gray-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(--gray-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(--gray-dark); }
	#testimonial-carousel .carousel-item .blockquote:nth-child(2) .blockquote-bubble { -webkit-filter: drop-shadow(0px 11px 62px rgb(0 0 0 / 0.22)); filter: drop-shadow(0px 11px 62px rgb(0 0 0 / 0.22)); -webkit-transition: .4s; -o-transition: .4s; transition: .4s; }
	#testimonial-carousel .carousel-item .blockquote:last-child, #testimonial-carousel .carousel-item.carousel-item-left .blockquote:first-child { opacity: 0; -webkit-transition: 0.6s ease; -o-transition: 0.6s ease; transition: 0.6s ease; -webkit-transform-origin: bottom; -ms-transform-origin: bottom; transform-origin: bottom; }
	#testimonial-carousel .carousel-item .blockquote:last-child { -webkit-transform: scale(.4) translateX(100%); -ms-transform: scale(.4) translateX(100%); transform: scale(.4) translateX(100%); }
	#testimonial-carousel .carousel-item.active .blockquote:last-child { opacity: 1; -webkit-transition: 0.6s; -o-transition: 0.6s; transition: 0.6s; -webkit-transform: scale(1) translateX(0); -ms-transform: scale(1) translateX(0); transform: scale(1) translateX(0); }
	#testimonial-carousel .blockquote p { font-size: 1vw; }
	.multi-item-carousel .blockquote { -webkit-box-flex: 0; -ms-flex: 0 0 33%; 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(--gray-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 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.multi-item-carousel .carousel-control {
  height: 87px;
  width: 87px;
  color: #fff;
  font-size: 2rem;
  background: var(--primary);
  opacity: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .multi-item-carousel .carousel-item-next:not(.carousel-item-left),
  .multi-item-carousel .active.carousel-item-right {
    -webkit-transform: translateX(33.33%);
    -ms-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%);
    -ms-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: 95px 0;}
#home-services header { text-align: center; margin-bottom: 100px; color: #000; }
.services { font-size: 1rem; 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; -webkit-transform: scale(.9); -ms-transform: scale(.9); transform: scale(.9); -webkit-box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); -webkit-transition: .5s; -o-transition: .5s; transition: .5s; z-index: -1; }
.service-item__icon {margin-bottom: 15px;}
.service-item__icon img { max-height: 50px; max-width: 50px; vertical-align: bottom; }
.service-item__title {font-size: 1.2rem;letter-spacing: .05em;font-weight: 700;color: var(--dark);font-family: var(--primary-font);text-transform: uppercase;margin: 0 0 25px;position: relative;z-index: 1;}
.service-item p { margin-bottom: 10px; }
.service-item:hover::before { opacity: 1; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); -webkit-transition: .5s cubic-bezier(.07,.66,.53,1); -o-transition: .5s cubic-bezier(.07,.66,.53,1); transition: .5s cubic-bezier(.07,.66,.53,1); }
.service-item::after {color: var(--secondary);display: block;text-align: right;content: '\f061';font-size: 1.3rem;line-height: 1;font-family: "Font Awesome 5 Pro";font-style: normal;font-weight: 600;-webkit-font-smoothing: antialiased;opacity: 0;-webkit-transform: translateX(-10px);-ms-transform: translateX(-10px);transform: translateX(-10px);-webkit-transition: .4s;-o-transition: .4s;transition: .4s;}
.service-item:hover::after { opacity: 1; -webkit-transition: .8s cubic-bezier(.07,.66,.53,1); -o-transition: .8s cubic-bezier(.07,.66,.53,1); transition: .8s cubic-bezier(.07,.66,.53,1); -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); -webkit-transition-delay: .3s; -o-transition-delay: .3s; transition-delay: .3s;  }
.service-item:hover { color: inherit; }
@media (min-width: 1200px) and (max-width: 1575px) {
	.service-item { width: 308px; max-width: 100%; margin: 0 auto; }
}
@media (max-width: 991px) {
	.service-item { width: 593px; max-width: 100%; margin: 0 auto; }
	.service-item::before { opacity: 1; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); }
	.service-item::after { opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }
}

/* Home Blog
============================================================================= */
#home-pm-cta { padding: 40px 0 35px; }
#home-pm-cta .home-pm-cta__text { font-size: 1.8rem; font-weight: 500; font-family: var(--primary-font); line-height: 1em; text-transform: uppercase; }

/* Home Blog
============================================================================= */
#home-blog { padding: 0 0 85px; }
#home-blog header { padding-top: 80px; }
#home-blog h2 { font-weight: 700; line-height: 1.2em; margin-bottom: 50px; }
#home-blog h3 { font-family: var(--primary-font); font-size: 1rem; font-style: normal; }
#home-blog .form-container-inline { width: 80%; }
#home-blog .read-more-toggle {color:#fff;}
@media (min-width: 992px) {
	#home-blog h3 { max-width: 300px; }
	#home-blog .form-container-inline { max-width: 275px; }
}
@media (min-width: 1200px) and (max-width: 1500px) {
	#home-blog h2 { font-size: 2.5rem; }
}
@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%; -webkit-box-flex: 1; -ms-flex: 1 1 100%; flex: 1 1 100%; max-width: 100%; padding: 0; }
.side-content .cta__icon { display: block; }
.side-content .cta__title { font-size: 1.1rem; margin-bottom: 15px; text-align: left; }
.side-content .cta__links { display: block; }
.side-content .cta__links a { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.side-content .cta__links a br { display: none; }
.side-content .cta__links a i { padding-left: 10px; position: relative; top: -2px; }

/* Secondary Banner
============================================================================= */
/* #secondary-banner { position: relative; height: 730px; overflow: hidden; background-color: #000; background-size: 2000px; background-attachment: fixed; background-position: center top; } */
#secondary-banner { position: relative; height: 570px; overflow: hidden; background-color: #000; background-size: 2000px; background-attachment: fixed; background-position: center top; }
#secondary-banner.custom-disclaimer, #secondary-banner.full-disclaimer {height:730px;}
#secondary-banner.no-hero { height: var(--header-height); }
body.banner-full #secondary-banner.no-hero { height: 730px; }
#secondary-banner::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 21, 27, .85);z-index: 2;}
#secondary-banner .image-list {position: absolute;z-index: 1;top: 0;left: 0;height: 100%;}
#secondary-banner .image-list img {max-width: none; height: 100%;width: 100%;object-fit: cover;}

#secondary-banner .container { position: relative; z-index: 9; margin: auto; padding-top: 125px; }
#secondary-banner .container-fluid { position: relative; z-index: 9; margin: auto; padding: 50px 15px;}
/* #secondary-banner .container-fluid.pricing { padding-top: 125px; } */
#secondary-banner .prompt { color: #fff; text-align: center; }
#secondary-banner .prompt .lead { font-family: var(--secondary-font); font-size: 3rem; text-transform: uppercase; font-weight: 500; margin: 0; line-height: 1em; }
#secondary-banner .prompt .sub { font-size: 1.5rem; font-weight: 600; text-transform: uppercase; margin: 20px auto 0; max-width: 965px; line-height: 1.35em;  }
#secondary-banner .prompt > p { font-size: 1rem; margin: 25px 0 0; }
#secondary-banner .prompt > p a { color: #fff; }
#secondary-banner .prompt .btn { margin-top: 25px; }
#secondary-banner .frs-widget.quick-lead { display: -webkit-box; display: -ms-flexbox; display: flex; max-width: 900px; margin: 10px auto 0; color: #000; }
#secondary-banner .frs-widget.quick-lead label { display: none; }
#secondary-banner .frs-widget.quick-lead input { border: 0; padding: 0 15px; height: 60px; }
#secondary-banner .frs-widget.quick-lead button { white-space: nowrap; }
#secondary-banner .frs-widget.quick-lead button:hover { opacity: 1; }

#secondary-banner[style*='about-banner.jpg']::before { background: rgba(0,0,0,0.5); }
#secondary-banner[style*='about-banner.jpg'] .container { padding-top: 25px; }
@media (min-width: 2001px) {
	#secondary-banner { background-size: cover; }
}
@media (max-width: 1450px){
	#secondary-banner.about-banner .image-list { display: none; }
}
@media(max-width: 1200px) {
	#secondary-banner { height: auto; }
	#secondary-banner.about-banner {height:500px !important;}
	/*#secondary-banner.about-banner .container {height:100%;display:flex;justify-content: center;align-items: center;} */
	#secondary-banner .prompt .lead { font-size: 2.8rem; }
	#secondary-banner .prompt .sub { font-size: 1.3rem;  }
}
@media (max-width: 991px) {
	#secondary-banner { background-size: cover; background-attachment: scroll; }
	/* #secondary-banner .container-fluid { padding-top: 200px; } */
}
@media (max-width: 500px) {
	#secondary-banner .prompt { padding: 50px 0; }
	#secondary-banner .prompt .lead { font-size: 1.8rem; }
	#secondary-banner .prompt .sub { font-size: 1.1rem;  }
	#secondary-banner .prompt .btn { white-space: normal; height: auto; margin-bottom: 20px; }
}





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

.hero { padding-top: calc(var(--header-height) + 65px); text-align: center; }
.hero h1, .hero .hero__lead, .hero__lead h1 {font-size: 3rem;margin-bottom: 50px;font-family: var(--secondary-font);line-height: 1em;}
.hero h2, .hero .hero__sub { font-size: 1.5rem; margin: -30px 0 50px; font-weight: 400; font-family: var(--primary-font);  }
@media (max-width:991px) {
	.hero h1, .hero .hero__lead { font-size: 2.4rem; }
	.hero h2, .hero .hero__sub { font-size: 1rem; }
}
@media (max-width:500px) {
	.hero h1, .hero .hero__lead { font-size: 2.15rem; }
	.hero h2, .hero .hero__sub { font-size: 1rem; }
}

/* 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 { padding: 55px 15px; }
.bio__name { font-size: 1.5rem; line-height: 1.25em; margin: 0; text-transform: uppercase; -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
.bio__title { display: block; color: var(--primary); font-size: 1.2rem; text-transform: none; -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
.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%; -o-object-position: top; object-position: top; border: 5px solid #fff; border-radius: 50%; -webkit-filter: grayscale(1); filter: grayscale(1); }
.bio__content { text-align: center; }
.bio__content p, .bio__contact { display: none; }
.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; }
.bios .bio:hover { cursor: pointer; }
.bios .bio .read-more { -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
.bios .bio:hover .read-more { color: var(--primary); -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
.bios .bio:hover .bio__name { color: var(--primary); font-size: 1.6rem; -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
body .bio .bio__image img[src='/images/logo.png'] {object-fit: contain;object-position: center;border-radius: 0;padding: 25px;}
@media (max-width:1199px) {
	.bio__image { -ms-flex-item-align: start; align-self: flex-start; }
}
@media (min-width:768px) {
	.bios .bio { width: 30%; }
	.bio__contact { width: 70%; margin: auto 0; }
	.bio__image { 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 .read-more { display: none; }
.bio-popup .bio__content p,.bio-popup  .bio__contact { display: block!important; }
.bio-popup .bio__name { margin: 0 0 30px; }
@media (min-width:768px) {
	.bio-popup { display: -webkit-box; display: -ms-flexbox; display: flex; }
	.bio-popup .bio__image { width: 25%; }
	.bio-popup .bio__content { width: 75%; display: block; text-align: left; }
}

#about__asset .asset__bg { position: absolute; top: 0; left: 0; z-index: 1; opacity: 0.2; }
#about__asset .asset__content { z-index: 2; }

/* Agents Page */
#agents__intro { padding: 100px 0; }
#agents__intro .agents__list { font-weight: bold; font-size: 1.2rem; line-height: 1.8em; padding-left: 25px; margin: 20px 0 35px; }

#agents__referral { }
#agents__referral .content .agents-yellow { color: #efa21b; font-size: 1.425em; font-weight: bold; }

#agents__benefits { padding: 130px 0 100px; }
#agents__benefits .row [class*='col-'] { padding-top: 80px; }
#agents__benefits .header img { max-height: 80px; }
#agents__benefits .header h4 { font-size: 1.25rem; text-transform: uppercase; margin: 35px 0 40px; }

#agents__join .content { padding: 130px 15px; }
/* ==========================================================================
  Blog Page
============================================================================= */

/* Main Template */
.blog-container { }
.blog-container .main-panel { }
.blog-container .side-panel { float: none; width: unset; -ms-flex-item-align: start; align-self: flex-start; }
.blog-container .index { display: block; margin: 30px 0; text-transform: uppercase; font-weight: bold; }
@media (min-width:992px) {
	.blog-container { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
	.blog-container .main-panel { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; margin-right: 105px; }
	.blog-container .side-panel { -webkit-box-flex: 0; -ms-flex: 0 0 380px; 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: 1.2rem; 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; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; border: 0; font-size: 16px; color: #000; }
#tipue_search_input::-webkit-input-placeholder {  }
.tipue_search_group { display: -webkit-box; display: -ms-flexbox; 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; -webkit-box-flex: 0; -ms-flex: 0 0 37px; flex: 0 0 37px; padding: 0 5px 0 0; -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; outline: none!important; }
.tipue_search_button:hover { background: #fff; color: var(--secondary); -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }

/* Side Panel
============================================================================= */
.blog-container .side-panel { background: #fff; border-radius: 40px; padding: 40px; -webkit-box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); 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: lowercase; 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: -webkit-box; display: -ms-flexbox; display: flex; }
.blog-container .side-panel .tipue_search_group input { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; background: #fff !important; padding: 10px !important; }
.blog-container .side-panel .tipue_search_group button { -webkit-box-flex: 0; -ms-flex: 0 0 46px; flex: 0 0 46px; }

/* Recent */
.blog-recent-posts { }
.blog-recent-posts li { margin-bottom: 25px; }
.blog-recent-posts li a { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
.blog-recent-posts .post-thumb { position: relative; -webkit-box-flex: 0; -ms-flex: 0 0 127px; flex: 0 0 127px; height: 85px; overflow: hidden; margin-right: 20px; background: var(--gray-dark); }
.blog-recent-posts .post-thumb img { position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 1; -webkit-transition: 0.7s; -o-transition: 0.7s; transition: 0.7s; }
.blog-recent-posts .post-thumb .video { color: var(--primary); text-align: center; line-height: 85px; font-size: 2.5rem; -webkit-transition: 0.7s; -o-transition: 0.7s; transition: 0.7s; }
.blog-recent-posts .post-thumb .default { max-height: 60%; width: auto; height: auto; max-width: 80%; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -webkit-transition: 0.7s; -o-transition: 0.7s; transition: 0.7s; -webkit-filter: brightness(0) invert(1); filter: brightness(0) invert(1); }
.blog-recent-posts .post-details { font-size: 14px; line-height: 1.2; -webkit-box-flex: 1; -ms-flex: 1 1 auto; 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 { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); -webkit-transition: 0.7s; -o-transition: 0.7s; transition: 0.7s; }
.blog-recent-posts li a:hover .post-thumb img.default { -webkit-transform: translate(-50%, -50%) scale(1.1); -ms-transform: translate(-50%, -50%) scale(1.1); transform: translate(-50%, -50%) scale(1.1); -webkit-transition: 0.7s; -o-transition: 0.7s; 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); -webkit-transition: 0.3s; -o-transition: 0.3s; 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 { -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.35); box-shadow: 1px 1px 5px rgba(0,0,0,0.35); -webkit-transform: scale(1.01); -ms-transform: scale(1.01); transform: scale(1.01); -webkit-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; background: var(--primary); }

/* Authors */
.blog-author-list { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; text-align: center; -ms-flex-pack: distribute; justify-content: space-around; }
.blog-author-list li { -webkit-box-flex: 0; -ms-flex: 0 0 80px; 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; -webkit-transition: 0.7s; -o-transition: 0.7s; transition: 0.7s; }
.blog-author-list .author-name { font-size: 13px; text-transform: uppercase; }
.blog-author-list li a:hover .author-image img { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); -webkit-transition: 0.7s; -o-transition: 0.7s; transition: 0.7s; }

/* 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(--gray-dark); }
.blog-post .post-featured img, .blog-post .post-featured iframe { position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 1; -webkit-transition: 0.7s linear; -o-transition: 0.7s linear; transition: 0.7s linear; }
.blog-post .post-featured img.default { max-width: 70%; height: auto; width: auto; margin: 0 auto; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -webkit-filter: brightness(0) invert(1); filter: brightness(0) invert(1); }
.blog-post .post-featured img:not(.default) { -webkit-transform: scale(1.01); -ms-transform: scale(1.01); transform: scale(1.01); }
.blog-post a.post-featured:hover img:not(.default) { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); -webkit-transition: 0.7s ease; -o-transition: 0.7s ease; transition: 0.7s ease; }
.blog-post .post-header { padding: 30px 0 25px; text-transform: lowercase; border: 0; margin: 0; }
.blog-post .post-header .post-title { font-size: 1.5rem; 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: 1rem; margin: 0; line-height: 1.5; }
.blog-post .post-body h1 + h2,
.blog-post .post-body h2 + h3,
.blog-post .post-body .display-2{margin: 0 0 35px;}
.blog-post .post-footer { padding: 20px 0 35px; }
.blog-post .post-footer h4 { font-size: 15px; text-transform: lowercase; margin: 0 0 20px; }
.blog-post .post-footer-share { text-align: right; }
.blog-post .read-more { margin-top: 30px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; text-transform: lowercase; 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: 1rem; color: #333333; text-transform: uppercase; margin: 0; }
.blog-post .post-footer-author .author-details .author-title { font-size: 14px; color: var(--body-text); 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: 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: 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 0 35px; font-size: 1rem; 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%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); 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: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }
#blog-inline .blog-item { padding: 27.5px; -webkit-box-flex: 0; -ms-flex: 0 1 50%; flex: 0 1 50%; }
#blog-inline .blog-post { position: relative; background: #fff; border: 0; border-radius: 60px; padding: 35px 3vw; -webkit-transition: .4s; -o-transition: .4s; transition: .4s; letter-spacing: .05em;}
#blog-inline .blog-post:hover { -webkit-box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); -webkit-transition: .4s; -o-transition: .4s; 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 { -webkit-box-flex: 0; -ms-flex: 0 0 88px; flex: 0 0 88px; -ms-flex-item-align: start; align-self: flex-start; }

#blog-inline .blog-post .post-link a { color: #000; }
#blog-inline .blog-post .post-link i { display: block; font-size: 1.3rem; color: #b7b7b7; margin-top: 10px; -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
#blog-inline .blog-post .post-link a:hover i { color: var(--primary); -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
#blog-inline .blog-post:hover .post-link { opacity: 1; -webkit-transition: .4s; -o-transition: .4s; 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-family: var(--primary-font); font-size: 1rem; margin: 0 0 25px; color: #000; text-align: left; text-transform: uppercase; line-height: 1.5em; }
#blog-inline .blog-post .post-body { padding: 0 2.5vw 0 0; margin: 0; font-size: 1rem; }
#blog-inline .blog-post .post-body .post-content { }
@media (min-width:992px) {
	#blog-inline .blog-post .post-link { opacity: 0; -webkit-transition: .4s; -o-transition: .4s; transition: .4s; }
}
@media (min-width:601px) {
	#blog-inline .blog-post .post-link { position: absolute; right: 55px; bottom: 35px; width: 73px; }
}
@media (min-width:1200px) and (max-width:1500px) {
	#blog-inline .blog-item { -webkit-box-flex: 0; -ms-flex: 0 1 100%; flex: 0 1 100%; }
}
@media (max-width:991px) {
	#blog-inline { margin-top: 50px; }
	#blog-inline .blog-item { -webkit-box-flex: 0; -ms-flex: 0 1 100%; flex: 0 1 100%; }
	#blog-inline .blog-post { -webkit-box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); 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 { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
	#blog-inline .blog-post .post-link { -ms-flex-item-align: end; align-self: flex-end; margin-top: 30px; }
	#blog-inline .blog-post .post-icon { -webkit-box-ordinal-group: 0; -ms-flex-order: -1; 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: 1.1rem; }
	#blog-inline .blog-post .post-body { font-size: 16px; }
}

/* Resources List */
#blog-inline.resources .blog-post .post-featured { display: block; }
#blog-inline.resources .blog-post .post-body { padding: 0; }
#blog-inline.resources .blog-post .post-header { margin-top: 30px; }
#blog-inline.resources .blog-post .post-link i { display: inline; }
@media (min-width: 601px) {
	#blog-inline.resources .blog-post .post-link { bottom: 15px; right: 25px; width: 135px; }
}
@media (min-width:1200px) and (max-width:1500px) {
	#blog-inline.resources .blog-item { -webkit-box-flex: 0; -ms-flex: 0 1 50%; flex: 0 1 50%; }
}

/* ==========================================================================
  Contact Page
============================================================================= */
.contact-info { list-style: none; padding-left: 15px; font-size: 1rem; 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: 1.25rem; }
.contact-info table { font-size: 16px; margin: 20px 0; width: auto; }
.map-container { margin-bottom: -8px; }




/* Pricing Page
================================================== */
#pricing { text-align: center; padding-bottom: 50px; }
#pricing header h3 { font-size: 1rem; font-style: italic; color: #000; font-weight: 500; margin: 30px 0 0; }
#pricing header p { margin: 0 0 5px; }
#pricing table { margin-top: 40px; }
#pricing .v-align-bottom { vertical-align: bottom!important; padding-bottom: 0; }
#pricing .btn { margin-top: 20px; font-weight: 500; }

#pricing #signup { padding-top: 50px; }
#pricing .form-container { background: var(--secondary); margin-top: 70px; text-align: left; color: #fff; border: 0; padding: 50px 60px; }
#pricing .form-container h2 { text-align: left; margin: 25px 0; }
#pricing .form-container p { font-style: italic; font-size: 1rem; }

@media (min-width: 992px){
	#pricing table { table-layout: fixed; width: 100%; }
}

/* Table Header */
#pricing table thead {  }
#pricing table thead th { font-size: 1.3rem; font-weight: 500; padding: 45px 15px 25px; color: #fff; background: #637683; text-align: center; height: 95px; min-width: 290px; vertical-align: middle; border: 0; border-radius: 40px 40px 0 0; line-height: 1em; }
#pricing table thead th small { display: block; font-size: 1rem; font-weight: 500; font-style: italic; line-height: 1.2em; margin-top: 15px; }
#pricing table thead th:nth-child(1) { width: 293px; color: #fff; border: 0; opacity: 0; }
#pricing table thead th:nth-child(2) { position: relative; background: transparent; vertical-align: bottom; padding-bottom: 25px; }
/* #pricing table thead th:nth-child(2) small { margin-top: 25px; } */
#pricing table thead th:nth-child(2)::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; background: #637683; height: 150px; border-radius: 40px 40px 0 0; z-index: -1; }
#pricing table thead th:nth-child(3) { background: #414e57; position: relative; overflow: hidden; }
#pricing table thead th:nth-child(4) { background: var(--dark); }
#pricing table thead th .checks-alt { text-align: left; display: inline-block; margin: 45px 0 0; }
#pricing table thead th .checks-alt li { font-size: 16px; margin: 0; padding-left: 25px; }
#pricing table thead th .checks-alt li::before { color: #0ad418; font-size: 1rem; }





#pricing table thead th:nth-child(3)::before { content: "20% OFF*"; position: absolute; right: 0; top: 0; background-color: #FFC008; border-top-left-radius: 44.5px; border-bottom-left-radius: 44.5px; color: #000; padding: 15px 11px; font-size: 16px; letter-spacing: -.05em; font-weight: 700; font-family: var(--secondary-font); }
#pricing table thead th:nth-child(3) .crossed svg { top: 60%; }
#pricing table thead th:nth-child(3) .crossed::after { font-size: 1.6rem; transform: rotate(-11.94deg); top: -10px; left: -85px; font-style: normal; }
@media (max-width: 425px) {
	#pricing table thead th:nth-child(3) .crossed::after { font-size: 1.2rem; top: -10px; left: -65px; }
	#pricing table thead th:nth-child(3)::before { font-size: 14px; }
}






/* Table Body */
#pricing table tbody { background: #fff; color: #637683; font-size: 14px; border-bottom: 1px solid #919ca3; }
#pricing table tbody th { color: #000; position: relative; padding: 8px 40px 8px 15px; min-width: 285px; height: 62px; line-height: 1.3; font-weight: 500; border-left: 1px solid #919ca3; border-right: 1px solid #919ca3; }
#pricing table tbody th .video-link { color: #000; font-size: 1rem; font-weight: 400;  }
#pricing table tbody td { padding: 8px 15px; text-align: center; font-weight: 500; height: 62px; line-height: 1.3; vertical-align: middle; overflow: auto; border-right: 1px solid #919ca3; }
#pricing table tbody td:first-child { text-align: left; }
#pricing table tbody tr.fees th { font-size: 16px; height: 90px; font-weight: 500; }
#pricing table tbody tr.fees td { font-size: 16px; }
#pricing table tbody tr.fees small { display: block; }
#pricing table tbody tr.title-row td { background-color: var(--secondary); color: #fff; font-size: 1.1rem; font-weight: 500; font-style: italic; text-transform: uppercase; height: 63px; }
#pricing table tbody tr:nth-child(even) { background: #f2f2f2; }


/* Most Ribbons */
#pricing .most-popular { position: relative; vertical-align: top; }
#pricing .most-popular::before { content: ''; display: block; position: absolute; left: -1px; top: -50px; right: -1px; height: 50px; background-color: var(--dark); border-top: 1px solid var(--dark); border-left: 1px solid var(--dark); border-right: 1px solid var(--dark); background-image: url('/images/most-popular.png'); background-position: right top; background-repeat: no-repeat; background-size: contain; }


/* Buttons */
#pricing table tbody .footer td .btn { color: #fff!important; min-width: 0; width: 100%; max-width: 148px; height: 51px; line-height: 51px; margin: 50px auto 65px; border: 0; }
#pricing table tbody .footer td .btn:hover { -webkit-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); }
#pricing table tbody .footer td:nth-child(2) .btn, #pricing table.accordion tbody div:nth-child(2) .btn { background-color: #ebebeb; }
#pricing table tbody .footer td:nth-child(3) .btn, #pricing table.accordion tbody div:nth-child(3) .btn { background-color: var(--secondary); }
#pricing table tbody .footer td:nth-child(4) .btn, #pricing table.accordion tbody div:nth-child(4) .btn { background-color: var(--secondary); }

@media (min-width: 992px){
	#pricing table tbody th .video-link { position: absolute; right: 10px; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }
}

/* Mobile Table v2 */
@media (min-width: 992px) and (max-width: 1199px){
	#pricing thead tr th { font-size: 1.1rem; }
}
@media (max-width: 991px){
	#pricing table, #pricing thead, #pricing tbody, #pricing th, #pricing td, #pricing tr { display: block; border: 0!important; }
	#pricing thead tr { display: -webkit-box; display: -ms-flexbox; display: flex; }
	#pricing thead tr th:first-child { display: none; }
	#pricing thead tr th:nth-child(2) { border-left: 1px solid #8c8b8b!important; border-right: 1px solid #8c8b8b!important;}
	#pricing thead tr th { -webkit-box-flex: 1; -ms-flex: 1 1 33.33%; flex: 1 1 33.33%; min-width: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; border-right: 1px solid #8c8b8b!important; border-top: 1px solid #8c8b8b!important; padding: 30px 8px 15px; height: auto; }
	#pricing table thead th:nth-child(2)::before { height: 100%; }
	#pricing table thead th .checks-alt { margin-top: 15px; }
	#pricing table tbody td { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; font-size: 15px; overflow: visible; padding: 15px 8px; height: auto; }
	#pricing table tbody .fees th { text-align: center; height: auto!important; padding: 15px 8px; font-size: 15px; }
	#pricing table tbody .fees small { font-size: 14px; font-weight: 400; }
	#pricing table tbody .fees span { line-height: 1.1; }
	#pricing table tbody td::before { text-align: left; min-width: 50%; font-size: 15px; }
	#pricing table tbody td:first-child { font-size: 1rem; font-weight: 500; padding: 15px 8px; margin: 30px 0 0; text-align: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; background: #fff; }
	#pricing table tbody td:nth-child(2) { background: #637683; color: #fff; }
	#pricing table tbody td:nth-child(3) { background: #414e57; color: #fff; }
	#pricing table tbody td:nth-child(4) { background: var(--dark); color: #fff; }
	#pricing table tbody td.not-included::after, #pricing table tbody .footer td .btn { margin: 0; }
	#pricing table tbody tr { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; border: 1px solid #8c8b8b!important; border-bottom: 0!important; }
	#pricing table tbody td { -webkit-box-flex: 1; -ms-flex: 1 1 33.33%; flex: 1 1 33.33%; margin: 0; }
	#pricing table tbody td:first-child { -webkit-box-flex: 1; -ms-flex: 1 0 100%; flex: 1 0 100%; margin: 0; }
	#pricing table tbody td:nth-child(3) { border-left: 1px solid #8c8b8b!important; border-right: 1px solid #8c8b8b!important;}
	#pricing table tfoot, #pricing table tfoot td, #pricing table tfoot th { display: block; }
	#pricing table tfoot td ~ td { display: none; }
	#pricing .form-container h2, #pricing .form-container p { text-align: center; margin-top: 0; }
	#pricing .v-align-bottom { padding-bottom: 15px; }
	#pricing table tbody tr.title-row { border: 0!important; border-top: 1px solid #8c8b8b!important; background: #fff; }
	#pricing table tbody tr.title-row td {  -webkit-box-orient: vertical;  -webkit-box-direction: normal;  -ms-flex-direction: column;  flex-direction: column; height: auto; margin-top: 0; border-top: 1px solid #fff!important; }
	#pricing table tbody tr.title-row td small { font-size: 16px; }
	#pricing table tbody tr:last-child { border-bottom: 1px solid #8c8b8b!important; }
	#pricing table tbody th { text-align: center; -webkit-box-flex: 1; -ms-flex: 1 1 100%; flex: 1 1 100%; padding: 15px 8px; border-bottom: 1px solid #8c8b8b!important; font-size: 1rem; height: auto; }
	#pricing table tbody th small, #pricing table tbody td small { font-size: 1rem; }
	#pricing table tbody th .video-link { margin-left: 15px; }
}
@media (max-width: 767px){
	#pricing thead tr th { font-size: 1rem; }
	#pricing thead tr th small, #pricing thead tr th .checks-alt li { font-size: 15px; }
}
@media (max-width: 485px){
	#pricing table tbody td:first-child, #pricing table tbody th small, #pricing table tbody td small { font-size: 1rem; }
	#pricing table tbody td, #pricing thead tr th, #pricing table tbody tr.title-row td small { font-size: 14px; line-height: 1.1; }
	#pricing table thead th .checks-alt { padding-left: 15px; }
	#pricing table thead th .checks-alt li { padding-left: 0; }
}




/* Pricing new */
#secondary-banner .prompt .pricing.sub { font-weight: 400; letter-spacing: 0; }
#secondary-banner .prompt .limited-offer { background-color: #414e57; padding: 31px 26px 66px; border-radius: 28px; max-width: 655px; text-align: center; letter-spacing: 0; font-family: var(--secondary-font); }
#secondary-banner .prompt .limited-offer .percent-off { font-size: 40px; font-weight: 700; text-transform: uppercase; color: #FFC008; position: relative; margin: 0 20px 8px; }
#secondary-banner .prompt .limited-offer .premium { font-size: 40px; font-weight: 700; text-transform: uppercase; margin: 0; letter-spacing: inherit; }
#secondary-banner .prompt .limited-offer .fee { font-size: 25px; font-weight: 300; margin: 11px 0 0; }
.off__sm { font-size: 16px; font-weight: 300; font-style: italic; display: block; color: #fff; line-height: 20px; position:relative; }
#secondary-banner .prompt .limited-offer .border-line { flex: 1; height: 2px; background-color: #FFC008; }
#secondary-banner .prompt .limited-offer .sm-asterisk { font-size: 16px; position: absolute; }
.crossed { position: relative; }
.crossed svg { position: absolute; left: 50%; top: 85%; transform: translate(-50%, -50%); width: 100%; height: 100%; }
.crossed::after { position: absolute; content: "6.39%"; font-family: var(--cursive-font); font-weight: 400; font-size: 33px; color: #FFC008; bottom:-35px; right: -20px; transform: rotate(-9.26deg); letter-spacing: 0; }
#secondary-banner.custom-disclaimer .container-fluid, #secondary-banner.full-disclaimer .container-fluid { padding-top: 170px; }

@media (max-width: 1400px){
	#secondary-banner .prompt .limited-offer .percent-off { font-size: 30px; }
  #secondary-banner .prompt .limited-offer .premium { font-size: 30px; }
  #secondary-banner .prompt .limited-offer .fee { font-size: 20px; }
  .crossed::after { font-size: 26px; }
}
@media(max-width:1199px){
	#secondary-banner.full-disclaimer {height:auto !important;}
}
@media (max-width: 575.98px) {
	#secondary-banner.custom-disclaimer .container-fluid { padding-top: 130px; }

  #secondary-banner .prompt .limited-offer .percent-off { font-size: 26px; margin: 0 0 8px; }
  #secondary-banner .prompt .limited-offer .premium { font-size: 24px; }
  #secondary-banner .prompt .limited-offer .fee { font-size: 18px; white-space: nowrap;}

	.off__sm { font-size: 14px; }
  .crossed::after { font-size: 24px; bottom: -30px; right: -14px; }
}














/* PREMIUM MANAGEMENT PLAN */
#secondary-banner .prompt .banner-offer .border-line { flex: 1; height: 4px; background-color: #FFC008; }
#secondary-banner .prompt .banner-offer .percent-off { font-size: 80px; font-weight: 700; margin: 0 35px 15px; line-height: 1.2; color: #FFC008; position: relative; letter-spacing: 0; }
#secondary-banner .prompt .banner-offer .off__sm { font-size: 32px; }
#secondary-banner .prompt .banner-offer .sm-asterisk { position: absolute; font-size: 32px; }


#secondary-banner .prompt .lead.pmp { font-size: 79px; font-weight: 700; line-height: 1.2; letter-spacing: 0; }
#secondary-banner .prompt .sub.pmp { font-size: 50px; font-style: normal; font-weight: 300; line-height: 1.2; letter-spacing: 0; }
#secondary-banner .prompt .sub.pmp .crossed::after { font-size: 65px; font-weight: 400; bottom: -70px; right: -36px; }


@media(max-width: 1200px) {
	#secondary-banner .prompt .banner-offer .off__sm { font-size: 20px; }
	#secondary-banner .prompt .banner-offer .percent-off { font-size: 50px; }
	#secondary-banner .prompt .lead.pmp { font-size: 2.8rem; }
	#secondary-banner .prompt .sub.pmp { font-size: 1.3rem;  }
	#secondary-banner .prompt .sub.pmp .crossed::after { font-size: 1.6rem; bottom: -30px; right: -14px; }
}
@media (max-width: 991px) {
	/* #secondary-banner { background-size: cover; background-attachment: scroll; } */
	/* #secondary-banner .container-fluid { padding-top: 200px; } */
}
@media (max-width: 500px) {
	#secondary-banner .prompt .banner-offer .off__sm { font-size: 16px; }
	#secondary-banner .prompt .banner-offer .percent-off { font-size: 1.8rem; margin: 0 15px 15px; }
	#secondary-banner .prompt .lead.pmp { font-size: 1.8rem; }
	#secondary-banner .prompt .sub.pmp { font-size: 1.1rem; white-space: nowrap; }
	/* #secondary-banner .prompt .sub.pmp .crossed::after { font-size: 1.1rem; } */
}







#pmp-plan { padding: 185px 0; }
#pmp-plan header h4 { font-weight: 400; letter-spacing: 0.02em; margin-bottom: 20px; }
#pmp-plan p { letter-spacing: 0.02em; line-height: 2em; }

#pmp-leased { padding: 185px 0; }
#pmp-leased header h4 { font-weight: 400; letter-spacing: 0.02em; margin-bottom: 20px; }
#pmp-leased header p { letter-spacing: 0.02em; line-height: 2em; }


@media(max-width: 992px) {
	#pmp-plan, #pmp-leased { padding: 90px 0; }
}


/* #leased.ctas .cta { display: flex; flex-direction: column; align-items: center; padding: 56px 27px 31px; }
#leased.ctas .cta:hover { transform: translateY(-20px); } */


/* #leased.ctas .col-xl { flex: 0 0 20%; max-width: 20%; } */
#leased.ctas .cta__header { position: relative; text-align: left; max-width: 240px; }
#leased.ctas .cta__title { font-size: 19px; letter-spacing: .02em; text-transform: uppercase; margin: 0 0 24px; }
#leased.ctas .cta__header p { font-size: 16px; line-height: 1.5em; letter-spacing: .02em; }
#leased.ctas .cta__icon { height: 196px; width: 196px; justify-content: center; align-items: center; align-self: start; margin-top: 20px; }
#leased.ctas .cta__icon img { max-width: unset; max-height: unset; }

#leased.ctas { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; justify-items: center; padding: 40px 20px; }
#leased.ctas .cta { position: relative; width: 100%; max-width: 593px; margin: 0 auto; padding: 56px 37px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; z-index: 2; transition: transform 0.5s ease; }
#leased.ctas .cta:hover { transform: translateY(-20px); }

@media(max-width:1200px){
	#leased.ctas .cta::before { -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); opacity: 1; }
}
@media(max-width:992px){
	#leased.ctas .cta__icon { align-self: center; }
}





#pmp-screening { font-size: 16px; }
#pmp-screening header h4 { font-weight: 400; letter-spacing: 0.02em; margin: 14px 0 24px; }
#pmp-screening .row { background-color: #2E5C76; color: #fff; }

.bullets > h4 { font-size:16px; text-transform: capitalize; font-style: italic; margin: 0; line-height: 2; }
.bullets > p { margin: 0; }
@media(min-width:1200px){
  #pmp-screening .col-xl-5 { flex: 0 0 44.3%; max-width: 44.3%; }
}
@media(max-width:550px){
	/* #pmp-screening { text-align: center; } */
}



#pmp-collection { padding: 185px 0; line-height: 2; }
#pmp-collection header h4 { font-weight: 400; letter-spacing: 0.02em; margin: 21px 0; }

.rc-ctas { display: grid; grid-template-columns: repeat(2, 1fr); font-size: 18px; }
.rc-ctas .cta { display: flex; width: 100%; text-align: left; padding: 41px 40px; justify-content: space-between; align-items: center; gap: 2.5vw; }
.rc-ctas .cta__header { position: relative; }
.rc-ctas .cta__header p { font-size: 16px; line-height: 1.5em; }
.rc-ctas .cta__title { font-size: 19px; text-transform: uppercase; margin: 0 0 9px; }
.rc-ctas .cta__img { position: relative; z-index: 2;}
.rc-ctas .cta__img img { max-width: 107px; }

@media (max-width: 992px) {
	#pmp-collection { padding: 90px 0; }

  .rc-ctas { grid-template-columns: 1fr; }
	.rc.ctas .cta::before { opacity: 1; }
}

@media(max-width: 425px) {
	.rc-ctas .cta { flex-wrap: wrap; justify-content: center; }
}


#pmp-maintenance { padding: 195px 0; }
#pmp-maintenance header h4 { font-weight: 400; letter-spacing: 0.02em; margin: 14px 0 20px; }

.maintenance-services { font-size: 16px; }
.maintenance-item { position: relative; display: flex; flex-direction: column; padding: 0 45px; }
.maintenance-item__title { font-size: 19px; text-transform: uppercase; }
.maintenance-item__icon { height: 82px; width: 82px; border-radius: 50%; background-color: #fff; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; justify-content: center; position: relative; z-index: 2; }
.maintenance-item__top { font-size: 64px; font-weight: 700; line-height: 1.3; letter-spacing: 0.02em; color: #2E5C76; }

@media(max-width: 992px) {
	#pmp-maintenance { padding: 90px 0 150px;  }

	.maintenance-item { align-items: center; text-align: center; padding: 0 35px }
}


#pmp-banner .cta-banner { margin-top: unset;  }


#pmp-compliant { padding: 185px 0; line-height: 2; }
#pmp-compliant header h4 { font-weight: 400; letter-spacing: 0.02em; margin: 14px 0 20px; }
#pmp-compliant #leased.ctas .cta__icon { margin-top: auto; }

@media(max-width:992px) {
	#pmp-compliant { padding: 90px 0; }
}


#pmp-accounting { background-color: var(--dark); color: #fff; font-size: 16px; }
#pmp-accounting header h3 { line-height: 1.3; }
#pmp-accounting header h4 { font-weight: 400; letter-spacing: 0.02em; margin: 14px 0 24px; }

@media(min-width:1200px){
	#pmp-accounting .banner { max-width: 554px; }
  #pmp-accounting .col-xl-5 { flex: 0 0 44.3%; max-width: 44.3%; }
}


.investment-item { display: flex; flex-direction: column; max-width: 487px; min-height: 602px; background: #fff; border-radius: 30px; box-shadow: 4px 4px 31.5px 0px #0000001F; margin-right: 45px!important; color: var(--gray-dark); padding: 40px 35px; flex-wrap: wrap; text-align: center; justify-content: center; }
.investment-item:first-child { max-width: 487px; }
/* .investment-item.is-active, .investment-item:hover { background: #e5f5ec; } */
/* .investment-item:hover { color: var(--gray-dark); } */
.investment-item__title { font-size: 20px; font-weight: 600; text-transform: uppercase; line-height: 1.3; margin: 14px 0 19px; letter-spacing: .02em; }
.investment-item__img { max-width: 426px; max-height: 367px; margin-top: auto; }
.investment-item__icon svg { height: 56px; }
.investment-item p { font-size: 18px; font-weight: 400; line-height: 155%; padding-left: 2vw; padding-right: 2vw; }
.investment .splide__track { width: auto; overflow: visible !important; }
.investment .splide__pagination { display: none; }
.investment .splide__pagination__page { height: 32px; width: 32px; background: #E5F5EC; opacity: 1; margin: 3px 14px; }
.investment .splide__pagination__page.is-active { background: var(--primary); transform: none; }
.investment .splide__arrows { width: 160px; display: flex; justify-content: space-between; position: absolute; top: 0; right: 0; }
.investment .splide__arrow { transform: none; position: relative; background: transparent; opacity: 1; transition: 0.5s; }
.investment .splide__arrow svg { display: none; }
.investment .splide__arrow:focus:not(:focus-visible) { outline: none; box-shadow: none; }
.investment .splide__arrow--next::after, .investment .splide__arrow--prev::after { content: '\f061'; font-family: "Font Awesome 5 Pro"; font-size: 20px; color: #fff; }
.investment .splide__arrow--prev::after { transform: rotate(180deg); }
.investment .splide__arrow--next::before, .investment .splide__arrow--prev::before { content: ""; height: 67px; width: 67px; border-radius: 50%; background-color: #2E5C76; display: block; position: absolute; z-index: -1; }

@media (max-width: 768px) {
	.investment-item { min-height: 500px; }
	.investment .splide__pagination { justify-content: center; padding: 0; }
	.investment .splide__pagination__page { height: 20px; width: 20px; margin: 3px 5px; }
	.investment .splide__arrows { right: 50%; transform: translateX(50%); top: 20px; }
}

#pmp-investment { padding: 185px 0; }
#pmp-investment header h4 { font-weight: 400; letter-spacing: 0.02em; margin: 14px 0 24px; }
#pmp-investment .investment { padding-top: 98px; }

@media(max-width:992px){
	#pmp-investment { padding: 90px 0; }
	#pmp-pricing { padding: 90px 0; }
	#pmp-peace { padding: 90px 0; }
}

#pmp-pricing { padding: 185px 0; }
#pmp-pricing header h4 { font-weight: 400; letter-spacing: 0.02em; margin: 14px 0 20px; }

/* #pmp-pricing .maintenance-item { padding: 0 15px; } */

#pmp-peace { padding: 185px 0; }
#pmp-peace p { line-height: 2; }


@media(max-width:992px){
	#pmp-pricing { padding: 90px 0; }
	#pmp-peace { padding: 90px 0; }
}







/* Popup homepage */
#pmplanPopUp .modal-dialog { max-width: 400px; width: 100%; margin: auto; }
#pmplanPopUp .modal-content { background-color: #11252E; color: #fff; border: none; font-family: var(--secondary-font); overflow: hidden; }
#pmplanPopUp .modal-header { border: none; }
#pmplanPopUp .modal-header .close { color: #BCBCBC; opacity: 1; text-shadow: none; }
#pmplanPopUp .modal-body .percent-off { font-size: 50.4px; letter-spacing: 0; text-transform: uppercase; font-weight: 700; color: #FFC008; margin: 0 0 8px; }
#pmplanPopUp .modal-body .off__sm { margin-bottom: 5px; }
#pmplanPopUp .modal-body .sm-asterisk { font-size: 18px; position: absolute; }
#pmplanPopUp .modal-body .title { font-size: 24px; letter-spacing: 0; text-transform: uppercase; margin: 0; padding: 0 0 7px; position: relative; }
#pmplanPopUp .modal-body .title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); height: 2px; width: 95%; background-color: #FFC008; }
#pmplanPopUp .modal-body .fee { font-size: 20px; font-weight: 300; letter-spacing: 0; }
#pmplanPopUp .modal-body .footer__text { font-size: 10px; line-height: 1.2; font-family: var(--primary-font); letter-spacing: 0; max-width: 205px; margin: 0 auto; }
.modal-art { display: flex; gap: 13px; justify-content: space-between; align-items: flex-end; margin: 73px -63px 23px; }
.modal-art img { max-width: none; width: auto; height: auto; display: block; }

@media(max-width:425px) {
	#pmplanPopUp .modal-dialog { max-width: 330px; }
	#pmplanPopUp .modal-body .percent-off { font-size: 45px; }
	#pmplanPopUp .modal-body .title { font-size: 18px; }
	#pmplanPopUp .modal-body .fee { font-size: 16px; }

	.modal-art { margin: 63px -50px 23px; }
}


/* ==========================================================================
  #Services Page(s)
============================================================================= */
.intro { padding-bottom: 85px; font-size: 1rem; 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%; }
.intro .image-list li { padding: 15px 20px; }

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

/* 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: -webkit-box; display: -ms-flexbox; display: flex; }
.amp__form .ion-amp-form .ion-form-group { margin: 0; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto;  }
.amp__form .ion-amp-form label { display: none; }
.amp__form .ion-amp-form input { border: 1px solid var(--border-color)!important; height: 50px; padding: 0 15px; border-radius: 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: uppercase; -webkit-box-flex: 0; -ms-flex: 0 1 150px; 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 { -ms-flex-wrap: wrap; flex-wrap: wrap; }
	.amp__form .ion-amp-form button { width: 100%; }
}

/* Set Design Standards & Colors Here */
.amp-step-2 {
	--primary: #0b2c75;
	--secondary: #f4ac00;
	--dark: #0b2c75;
	--light: #51b4cf;
	--gray: #f3f3f3;
	--body-text: #000;
	--primary-font: 'darkmode-off', sans-serif;
	--secondary-font: 'depot-new-web', sans-serif;
	--header-height: 149px;
}

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(--gray-dark); color: #fff; font-weight: 500; letter-spacing: .05em; }
.amp-step-2__header h1 { font-size: 3rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: inherit; margin: 0 0 20px; }
.amp-step-2__header p { font-size: 1.1rem; 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; -webkit-transform: rotate(-25.84deg); -ms-transform: rotate(-25.84deg); transform: rotate(-25.84deg); height: 40px; -webkit-transform-origin: left; -ms-transform-origin: left; 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; -webkit-box-shadow: 0px 6px 43px 0px rgba(0, 0, 0, 0.17); box-shadow: 0px 6px 43px 0px rgba(0, 0, 0, 0.17); -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); z-index: 2; }
.amp-step-2__form .ion-form-group-break h3 { font-size: 1.1rem; text-transform: uppercase; 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: 1rem; 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: 1rem; 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: uppercase; 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: 1rem; }
.amp-step-2__form .ion-btn:hover { border-color: var(--secondary); color: var(--secondary); }

.amp-step-2__footer { font-size: 1rem; padding: 50px 15px 70px; width: 1072px; max-width: 95vw; margin: 0 auto; line-height: 1.66em; }
.amp-step-2__footer h2 { font-size: 3rem; 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: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.amp-step-2__footer .amp-step-2__phone { font-size: 1.1rem; 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: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: -10px; }
	.amp-step-2__form .ion-form-group { -webkit-box-flex: 1; -ms-flex: 1 1 190px; 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) { -webkit-box-flex: 2; -ms-flex: 2 1 339px; flex: 2 1 339px; }
	.amp-step-2__form .ion-form-group:nth-child(10) { -webkit-box-flex: 1; -ms-flex: 1 1 100%; flex: 1 1 100%; }
	.amp-step-2__form .ion-form-group:last-of-type { -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; }
	.amp-step-2__form .ion-form-group-break, .amp-step-2__form .ion-form-group-textarea { -webkit-box-flex: 1; -ms-flex: 1 1 100%; 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: 2rem; }
	.amp-step-2__form { padding: 50px 25px; }
	.amp-step-2__footer h2 { font-size: 1.8rem; }
}


/* Cluster Content
============================================================================= */
#pm-cluster { position: relative; z-index: 2; }
#pm-cluster h1 { font-size: 2rem; font-style: normal;}
#pm-cluster h1 + h2 { font-size: 1.4rem; }
#pm-cluster > .container-fluid { position: relative; padding-top: 59px; }


/* Sub Nav */
#sub-nav {position: absolute;top: 0;left: 0;right: 0;height: 56px;color: #fff;text-transform: uppercase; font-size: 16px;}
#sub-nav::before { content: ''; background-color: var(--primary); position: absolute; top: 0; bottom: 0; left: 50%; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); width: 100%; max-width: 100%; z-index: -1; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; }
#sub-nav .nav { height: 100%; }
#sub-nav .nav-item { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: 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); -webkit-transition: text-shadow 0.3s; -o-transition: text-shadow 0.3s; 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 { -webkit-transform: translateX(-50%) scaleX(1.5); -ms-transform: translateX(-50%) scaleX(1.5); transform: translateX(-50%) scaleX(1.5); -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; -webkit-box-shadow: var(--box-shadow); box-shadow: var(--box-shadow); }
@media (min-width:1200px) and (max-width: 1425px) {
	#sub-nav { font-size: 15px; }
	#sub-nav .nav-link { padding: .5rem; }
}
@media (min-width:1200px) and (max-width: 1310px) {
	#sub-nav .nav-link { padding: .25rem; }
}
@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 Difference */

@media (min-width:768px) {
	#pm-difference li { -webkit-box-flex: 25%; -ms-flex: 25%; flex: 25%; }
}

@media (min-width:992px) {
	#pm-difference { padding-top: 160px; }
}

/* PM Advantage */
#pm-advantage header h3 { font-family: var(--cursive-font); font-size: 1.8rem; color: var(--primary); }
#pm-advantage .icon-list__item { -webkit-box-flex: 0; -ms-flex: 0 0 283px; flex: 0 0 283px; }
#pm-advantage .icon-list__icon, #pm-features .icon-list__icon { border-radius: none; background: transparent; -webkit-box-shadow: none; box-shadow: none; height: auto; width: auto; }
#pm-advantage .icon-list__icon svg, #pm-features .icon-list__icon svg { fill: var(--secondary); height: 65px; width: auto; max-width: 100%; }
#pm-advantage .icon-list__title, #pm-features .icon-list__title { font-size: 1.1rem; font-weight: 500; margin-bottom: 25px; }
#pm-advantage .icons li, #pm-features .icons li { padding-left: 0; margin-bottom: 55px; text-align: center; }
#pm-advantage .icons svg, #pm-features .icons svg { fill: var(--secondary); height: 65px; width: 65px; }
#pm-advantage .icons h3, #pm-features .icons h3 { color: var(--dark); font-size: 1.1rem; font-weight: 500px; margin-bottom: 25px; text-transform: uppercase; }

@media (min-width: 992px) {
	#pm-features.banner { padding-top: 100px; }
	#pm-features .icon-list--col-4 li { -webkit-box-flex: 0; -ms-flex: 0 0 45%; flex: 0 0 45%; }
	#pm-advantage .icons li, #pm-features .icons li { padding-left: 105px; text-align: left; }
}
@media (max-width: 991px) {
	#pm-advantage .icons li .icon, #pm-features .icons li .icon { position: relative; }
}

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


/* PM Guarantees */
#pm-guarantees { background: var(--gray-dark); color: #fff; }
#pm-guarantees h2 { margin: 0 0 100px; }
#pm-guarantees .guarantees-container { padding: 150px 5.2vw; }
#pm-guarantees .guarantee { font-size: 1rem; }
#pm-guarantees .guarantee__title { font-size: 1.5rem; 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: 1.3rem; 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-testimonials { padding: 150px 0 100px; }

/* Pm FAQs */
#pm-faqs {text-align: center; padding: 100px 0 150px;}
#pm-faqs .launch-accordion.faqs> li> div {text-align: left;}
#pm-faqs .launch-accordion.faqs {max-width: 1300px; margin: 0 auto;}

/* Pm Discover */
#pm-discover { background: var(--gray-dark); color: #fff; text-align: center; }
#pm-discover .read-more {color:#fff;transition:all 0.2s;}
#pm-discover .read-more:hover {text-decoration: underline;}
#pm-discover h2 { margin-bottom: 45px; }
.area-info { padding: 100px 4.5vw 70px; }
.area-info p, li { font-size: 15px;}
.separator-bar { position: relative; }
.separator-bar::before { content: ''; height: 15px; width: 277px; background: var(--light); position: absolute; left: 50%; top: 100%; -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%); }
@media (min-width:1200px) {
	#pm-discover { text-align: right; }
	#pm-discover h2 { font-size: 3rem; }
	.separator-bar::before { content: ''; height: 277px; width: 15px; background: var(--light); position: absolute; left: 0; top: 85px; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); 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: 1.1rem; 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: 1rem; 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-footer-form { padding-bottom:  100px; }
#pm-footer-form h2 { font-size: 2.5rem; }
#pm-footer-form .form-container { padding: 20px 0 0; -webkit-box-shadow: none; 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; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); margin: 0; }
}
@media (max-width:600px) {
	#pm-footer-form h2 { font-size: 1.75rem; margin-bottom: 0; }
}

/* ==========================================================================
  Tenants Page
============================================================================= */
#resident-resources .box-item h3 { font-family: var(--secondary-font); font-size: 1.65rem; margin: 20px auto 10px; }
#resident-resources .box-item ul { list-style: none; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; padding-left: 0; }
#resident-resources .box-item ul li { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; padding: 60px 0 0; }
#resident-resources .box-item a { color: #000; font-size: 1.1em; text-transform: none; }
#resident-resources .box-item a:hover { color: var(--primary); }
#resident-resources .box-item .icon { display: block; margin: 0 auto 15px; max-height: 85px; -webkit-transition: 0.2s; -o-transition: 0.2s; transition: 0.2s; }
#resident-resources .box-item a:hover .icon { -webkit-transform: scale(1.05); -ms-transform: scale(1.05); transform: scale(1.05); -webkit-transition: 0.2s; -o-transition: 0.2s; transition: 0.2s; }

@media (min-width: 768px) {
	#resident-resources .box-item {max-width: 700px;margin: 30px auto;}
	#resident-resources .box-item ul li { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; padding-left: 2.5vw; padding-right: 2.5vw; }
}

/* Guarantees
================================================== */
#guarantees {}
#guarantees h3 {font-size:1.2rem;font-style:normal;font-weight:bold;text-transform: none; font-family: var(--secondary-font); letter-spacing: .1em; margin-bottom:5px;}
#guarantees .row {display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;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(--gray-dark);}
@media(max-width:991px){
	#guarantees {text-align: center;}
}

#guarantees-page { padding: 100px 0 30px; text-align: center; }
#guarantees-page .row > [class*='col-'] > .row { padding: 40px 0; }
#guarantees-page .row > [class*='col-'] > .row:nth-child(even) { background-color: var(--light); }
#guarantees-page .guarantees__badge img { position: relative; }
#guarantees-page .guarantees__video a { color: var(--primary); font-size: 1.3rem; font-weight: bold; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; text-transform: uppercase; }
#guarantees-page .guarantees__video a:hover { color: var(--secondary); }
#guarantees-page .guarantees__video a > i { font-size: 50px; padding-right: 15px; }
#guarantees-page .guarantees__content { color: var(--text-dark); margin-top: 0; }
#guarantees-page .guarantees__content h3 { font-size: 1.4rem; color: var(--dark); margin-top: 0; margin-bottom: 30px; }
#guarantees-page .guarantees__content a { color: #545e67; font-weight: bold; cursor: pointer; }

.cta-banner { color: #fff; margin-top: 90px; padding: 75px 15px; background: -o-linear-gradient( left, rgb(44,93,118) 0%, rgb(17,36,46) 100%); background: -webkit-gradient( linear, left top, right top, from(rgb(44,93,118)), to(rgb(17,36,46))); background: linear-gradient( 90deg, rgb(44,93,118) 0%, rgb(17,36,46) 100%); }
.cta-banner h3 { font-family: var(--secondary-font); font-size: 1.8rem; font-weight: bold; text-transform: uppercase; margin: 0 50px 50px; }
.cta-banner img { margin-bottom: 40px; }
.cta-banner a:not(.btn) { color: #f0a31a; font-size: 1.4rem; font-weight: bold; }
.cta-banner a:not(.btn) i { font-size: 40px; }
.cta-banner a:not(.btn):hover { color: #fff; }
.cta-banner.pm { padding: 0 15px; }
.cta-banner.pm .container-fluid { position: relative; }
.cta-banner.pm .image { position: relative; top: 0; left: 50%; -webkit-transform: translate(-50%, -25%); -ms-transform: translate(-50%, -25%); transform: translate(-50%, -25%);}

@media (min-width: 992px) {
	.cta-banner h3.display-1 { font-size: 3rem; }
	.cta-banner.pm { padding: 120px 0 110px; }
	.cta-banner.pm .image { position: absolute; left: 2vw; -webkit-transform: translateY(-25%); -ms-transform: translateY(-25%); transform: translateY(-25%); }
}

@media (min-width: 1401px) {
	.cta-banner.pm .image { left: 75px; }
}

@media (min-width: 1641px) {
	.cta-banner.pm .image { -webkit-transform: translateY(-45%); -ms-transform: translateY(-45%); transform: translateY(-45%); top: 50%; }
	.cta-banner.pm .row { padding: 0 2vw;}
}

@media (min-width: 992px) and (max-width: 1640px) {
	.cta-banner.pm.pm-next-step { padding: 60px 0; -webkit-transform: translateY(-4%); -ms-transform: translateY(-4%); transform: translateY(-4%); }
}

@media (min-width: 1100px) and (max-width: 1280px) {
	.cta-banner.pm.pm-next-step .row [class*='col-'] { max-width: 50%; }
}

@media (min-width: 992px) and (max-width: 1099px) {
	.cta-banner.pm.pm-next-step .row [class*='col-'] { max-width: 45%; }
}

@media (max-width: 991px) {
	.cta-banner.pm .row { position: relative; top: -100px; }
}

@media (min-width: 992px) {
	#guarantees-page .row > [class*='col-'] > .row { max-width: 1060px; padding-right: 65px; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
	#guarantees-page .guarantees__content { text-align: left; }
}

/* Get More */
@media(max-width:991px){
	#get-more .btn-list { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: 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(--gray-dark); border: 1px solid var(--gray-dark); -webkit-transition: 0.5s; -o-transition: 0.5s; 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(--gray-dark); text-decoration: none; -webkit-transition: 0.5s; -o-transition: 0.5s; 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(--gray-dark); color: var(--gray-dark); text-decoration: none; font-weight: bold; font-size: 0.9em; }
.frs-paging-btn a:hover, .frs-paging-btn.active a { background: var(--gray-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!important; padding: 5px; }
.r4e-widget .comment {font-style: italic;}
.r4e-widget .date, .r4e-widget .info {display: inline-block; position: relative!important; right: auto; }
.r4e-widget .rating { display: none; }
.r4e-widget.reviews .review .summary .info { overflow: auto; display: inline; }
.r4e-widget.reviews .review .icon { float: none; margin-top: 0; padding-right: 10px; }


/* Clickable Map
================================================== */
.us-map { display: block; }
.us-map path { stroke: #fff!important; fill: var(--primary)!important; stroke-width:1.3px; stroke-linejoin: miter;  -o-transition: fill .5s ease;  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: var(--secondary)!important; cursor: pointer; -o-transition: fill .5s ease; 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: var(--gray)!important; }
.us-map #disabled-states path:hover { cursor: default; }

/* Preferred Map List */
.preferred-list__map { position: relative; overflow: hidden; margin: 50px 0; }
.preferred-list__map svg { width: 100%; max-width: 100%; }
.preferred-list__states { line-height: 1.7; font-size: 16px; }
.preferred-list__states h4 { font-size: 1rem; font-weight: 600; margin: 40px 0 0; text-transform: uppercase; border-bottom: 1px solid #ccc; border-top: 1px solid #ccc; padding: 10px 0 8px; }
.preferred-list__company { list-style: none; padding: 0; margin-top: 25px; }
.preferred-list__company .city { font-weight: 600; margin: 10px 0; font-size: 1rem; }
.preferred-list__company .company { font-size: 16px; }
.preferred-list__company .website { font-style: italic; }

/* Map Popovers
==================================================*/
#map-page { }
#map-page .popover { background: #050505; color: #fff; opacity: .9; border-radius: 10px; padding: 25px 20px; }

/* Bootstrap 4
================================================== */
#map-page .popover-header { margin: 0; background: none; color: #fff; border: 0; padding: 0; font-size: 16px; text-transform: uppercase; }
#map-page .popover-body { color: #fff; padding: 0; font-size: 14px; list-style: none; }
#map-page .popover-body a { color: #fff; }
#map-page .popover-body a:hover { opacity: .7; }
#map-page .popover-body .city { font-size: 16px; }
#map-page .bs-popover-left>.arrow::after { border-left-color: #050505; }
#map-page .bs-popover-right>.arrow::after { border-right-color: #050505; }

#owner-faqs .answer-box { border:solid 1px #dadada; padding:0px 20px 20px 20px; margin:20px; }
#owner-faqs .faq-video { margin:20px 0; }
#owner-faqs h4 { height:50px; }
#owner-faqs .faq-answer { height:300px; text-overflow:ellipsis; overflow:hidden; white-space: wrap; }
#owner-faqs .faq-btn { margin:20px 0; text-align:center; }

.blog-post-faq .btn--yellow {text-transform: lowercase;}
.post-content-faq {display:none;position:relative;font-size:18px;padding:55px 20px;}
.post-body {}
.post-body h1 + h2,
.post-body h2 + h3,
.post-body .display-2 {margin:0 0 35px;}
.post-content-fa .post-body::before { content: 'A:'; color: var(--dark); font-size: 34px; position: relative; top: 1px; left: 0; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }
.faq-post-image {position:relative;}
.video-overlay-info_inner {display:flex;justify-content: center;align-items: center;flex-direction:column;height:100%;}
.video-overlay-info {background:rgba(18,39,49,0.9);position:absolute;top:0;right:0;left:0;bottom:0;z-index:10;}
.blog-post-faq .post-title {color:#fff !important;font-size:35px;padding-left:10px;}
.blog-post-faq .post-title::before { content: 'Q: '; color: #fff; font-size: 34px; position: relative; top: 1px; left: 0; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }


/* Owner FAQ/Videos
================================================== */
#owner-faq {padding-bottom:132px;}
#owner-faq-welcome { padding: 95px 0 0; text-align: center; }
#owner-faq-welcome header { margin-bottom: 43px; }
#owner-faq-welcome header h1 {letter-spacing:0.05em;}
#owner-faq-welcome header h2 {font-family:var(--medium-font);}
#owner-faq-welcome .search-bar { padding: 25px 0 100px; width: 100%; max-width: 750px; margin: 0 auto; -ms-flex-pack: distribute; justify-content: space-around; }
#owner-faq-welcome .search-bar > div { -ms-flex-preferred-size: 100%; flex-basis: 100%; }
#owner-faq-welcome .search-bar h3 { font-size: 22px; font-weight: bold; text-align: center; margin: 0 0 15px; }
#owner-faq-welcome .search-bar input { border:none;color: #000000; font-size: 18px; padding: 0 20px; background: var(--gray); color: #000000; font-weight: 600; height: 45px; line-height: 1; border-radius: 0;margin-right:22px;}
#owner-faq-welcome .search-bar input:focus, #owner-faq-welcome .search-bar .form-group-select:focus { border-color: #66afe9; outline: 0; }
#owner-faq-welcome .search-bar input::-webkit-input-placeholder { color: #222222; font-size: 18px; font-weight: bold; }
#owner-faq-welcome .search-bar button {background:#000;color:#fff;height:42px;min-width:185px;border:1px solid #000;border-radius:21px;transition:all 0.5s;}
#owner-faq-welcome .search-bar button:hover {background:#fff;color:#000;}
#owner-faq-welcome .search-bar .search-keyword {}
#owner-faq-welcome .search-bar .search-dropdown {}
	@media (min-width: 768px){
		#owner-faq-welcome .search-bar { display: -webkit-box; display: -ms-flexbox; display: flex; }
	}
	@media (max-width: 767px){
		#owner-faq-welcome .search-bar input {margin-bottom:15px;}
	}

/*  */
#videos {}
#videos .row {max-width:1350px;margin:0 auto 95px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
#videos .btn--yellow {text-transform: lowercase;}
#videos .ion-form {display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
#videos .ion-form input {width:100%;height: 45px;font-size:18px;padding-left:20px;}
#videos .ion-form button {width:25%;height: 45px;line-height:1;background:#000;text-transform: uppercase;border-color:#000;}
#videos .ion-form button:hover {background:transparent;color:#000;}
#videos .ion-form .ion-form-group label {display:none;}
#videos .ion-form .ion-form-group input[type=email], #videos .ion-form .ion-form-group input[type=tel], #videos .ion-form .ion-form-group input[type=text] {background:var(--gray);border:1px solid #000;border-radius:0;}
#videos .ion-form .ion-form-group input::-webkit-input-placeholder {color:#222222;font-style:italic;font-size:18px;}
#videos .ion-form .ion-form-group {display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;margin:0 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
#videos .video-list li .vid-title h4::before { content: 'Q: '; color: #fff; font-size: 34px; position: relative; top: 1px; left: 0; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }
#videos .faq-content {display:block;}
#videos .faq-content__inner {display:none;padding:60px 30px;}
#videos .faq-content__inner::before { content: 'A:'; color: var(--dark); font-size: 34px; position: relative; top: 1px; left: 0; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }
#videos .play .video-wrapper:before {display:none;}
#videos select {border:none;padding-left:15px;width:100%;}

/*  */
/* #videos .video-wrapper::before {display:none;} */
#videos .video-wrapper::after {display:none;}
#videos .video-list { list-style: none; margin: 0; padding: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-pack: distribute; justify-content: space-around; }
#videos .video-list li { position:relative; border:21px solid #fff;position: relative; -ms-flex-preferred-size:50%; flex-basis:50%; margin-bottom:0px; display: -webkit-box; display: -ms-flexbox; display: flex; flex-direction:column; }
#videos .video-wrapper::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 2;background: var(--dark); opacity: 0.9; -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; border:0;border-radius:0;transform:none;}
/* #videos .video-list li .vid-title {position: absolute; top:50%; transform:translateY(-50%);padding: 15px 30px 30px; width: 100%; margin: auto; z-index: 3;text-align: center;} */
#videos .video-list li .vid-title {position: absolute;top:0;padding: 30px;width: 100%;margin: auto;z-index: 3;text-align: center;height: 100%;display: flex;justify-content: center;align-items: center;flex-direction: column;}
#videos .video-list li h4 { pointer-events: none;font-size: 35px; text-align: center;margin-bottom:42px; color:#fff;}
#videos .video-list li .video-wrapper { position: relative; z-index: 1; border: 0; width: 100%; background-position: center; background-size: cover; }
#videos .video-list li .video-wrapper #ytplayer { position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 999; -webkit-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; }
#videos .video-list li.play .video-wrapper { z-index: 99; }
#videos .video-list li:hover { cursor: pointer; }
#videos .video-list li:hover::before { opacity: 0.6; -webkit-transition: 0.4s; -o-transition: 0.4s; transition: 0.4s; }
#videos .load-videos { margin: 50px auto 60px; max-width: 245px; font-size: 25px;text-align: center;font-family:var(--bold-font); display: block; color: #000;font-style:italic; text-decoration: none; }
#videos .load-videos:hover { color: var(--primary); cursor: pointer; }
#videos .video-thumbnail {background-size:cover;background-position:center center;height: 100%;width: 100%;position: absolute;top: 0;left: 0;right: 0;bottom: 0;}
.video-list li:has(.play) .vid-title { opacity:0; }
.video-list li:has(.play) .video-wrapper::before, .video-list li:has(.play) .video-thumbnail  {display:none;}
.video-list li:has(.play) .video-wrapper {z-index:10 !important;}
.video-list li:has(.play) .video-wrapper.play::before {z-index:-1 !important;}
.video__info {position:relative;}
@media(max-width:1313px){
	#videos .video-list li h4 {font-size:20px;}
}
@media (max-width: 991px){
	#videos .video-list li { -ms-flex-preferred-size: 100%; flex-basis:100%; }
	#videos .video-list li h4 { font-size: 20px;margin-bottom:25px; }
}

@media (max-width: 767px){
	#videos .video-list li { -ms-flex-preferred-size: 100%; flex-basis: 100%; }
}
@media(max-width:500px){
	#videos .video-list li {border:0;margin-bottom:20px;}
	#videos .video-list li h4 {font-size:16px;}
	#videos .video-list li .vid-title h4::before {font-size:16px;}
	#videos .btn {min-width:125px;font-size:16px;}
}

#tipue_search_content > article > section.post-body > table > thead > tr:nth-child(1) > td > p {margin-bottom: auto !important;}

.text-start {text-align: start !important;}
.fw-bold {font-weight: bold !important;}

/* Testimonial Scroller */
#testimonial-scroller:has(.simply-scroll) {margin-top: 100px;}
.scroller { }
.scroller__item { background: #fff; padding: 40px 0; }
.scroller__item .blockquote {position: relative;height: 100%;letter-spacing: .05em;line-height: 1.5;font-size: 16px;-webkit-transition: .8s ease-out;-o-transition: .8s ease-out;transition: .8s ease-out;opacity: 1;text-align: left;}
.scroller__item .blockquote__rating, .blockquote__rating { color: #ffb11b; }
.scroller__item .blockquote-header {letter-spacing: .05em;font-size: 22px; margin: 0 0 23px; display: flex; gap: 25px;}
.scroller__item .blockquote__content { display: flex; flex-direction: column; }
.scroller__item .blockquote__content span { font-size: 22px; font-weight: 500; color: var(--primary); }
.scroller__item .blockquote__icon { margin-top: 7px; }
.scroller__item .blockquote p { margin: 0; }
.scroller__item .blockquote p ~ p { margin: 10px 0 0; }
/* .simply-scroll-list .scroller__item .blockquote p { overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; max-height: calc(6 * 1.5em); } */
.simply-scroll-container { position: relative; width: 100%; }
.simply-scroll-clip { position: relative; overflow: hidden; }
.simply-scroll-list { overflow: hidden; margin: 0; padding: 0; list-style: none; }
.simply-scroll-list li { padding: 0 min(3.125vw, 62.5px)!important; margin: 0; list-style: none; }
.simply-scroll-list li img { border: none; display: block; }
.simply-scroll {width: 100%!important;height: 100% !important;margin: 0!important;}
.simply-scroll + .simply-scroll { margin-top: 32px!Important; }
.simply-scroll .simply-scroll-clip {width: 100%!important;height: 100% !important;}
.simply-scroll .simply-scroll-list li { float: left;  width: 439px!important; height: 100% !important; }


body:has(#property-box-real-estate) .modal.show:has(.property-box-real-estate__description) .modal-dialog button {text-align: end; padding: 15px 15px 0 0;}
body:has(#property-box-real-estate) .modal.show .modal-dialog .modal-body .property-box-real-estate__description {color: #000;}
#property-box-real-estate {}
#property-box-real-estate .image-wrapper {padding-top: 100%; margin-bottom: 0;}
#property-box-real-estate .row div[class*='col-'] { padding: 0; margin: auto 20px;}

#property-box-real-estate .row div[class*='col-'] a {display: block;position: relative;}
#property-box-real-estate .row div[class*='col-'] a::after {content: '';height: 100%;width: 100%;position: absolute;top: 0;left: 0;background: rgba(0, 0, 0, 0.5);z-index: 1; overflow: hidden;}
#property-box-real-estate .row div[class*='col-'] img {transition: 0.8s ease-in-out;}
#property-box-real-estate .row div[class*='col-']:hover img {transform: scale(1.05);}
#property-box-real-estate .property-box-real-estate__description {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);color: #fff;width: 100%;z-index: 2;padding: 0 15px; text-align: center;}
#property-box-real-estate .property-box-real-estate__description h3 ~ p {display: none;}

@media(min-width:992px) {
	#property-box-real-estate .row div[class*='col-'] {flex: 0 0 30%;}
}

.skew-box {position: relative;padding: 20px 15px 15px 45px; margin-top: 50px; isolation: isolate; z-index: 2;}
.skew-box .skew-box__content {}
.skew-box .skew-box__container {border: 5px solid var(--primary);position: absolute;width: 100%;height: 100%;left: 0;top: 0;transform: skewX(-15deg); background: #fff; z-index: -1;}
.skew-box .skew-box__container_side::before {    content: "";position: absolute;left: -25px;top: -30px;width: 80%;height: 85%;background: var(--primary);z-index: -2;transform: skewX(-15deg);}
.skew-box .skew-box__container_side::after {content: "";position: absolute;right: -25px;bottom: -30px;width: 80%;height: 85%;background: var(--primary);z-index: -2;transform: skewX(-15deg);}

@media(max-width:991px) {
	.skew-box {margin: 75px auto;}
}
@media(max-width:500px) {
	.skew-box {padding: 15px;}
	.skew-box .skew-box__container {transform: unset;}
}

.row div[class*='col-']:has(.icon) {position: relative; padding-left: 35px;}
.row div[class*='col-']:has(.icon) .icon {position: absolute; left: 0; top: 0; font-size: 22px;}

.icon-list2 {}
.icon-list2__item {position: relative; text-align: start; padding-left: 50px; margin-bottom: 25px;}
.icon-list2 i {font-size: 32px;color: var(--primary);position: absolute;left: 0;top: 50%;transform: translate(0, -50%);}

@media(max-width:991px) {
	.align-mobile {padding: 0 15px;}
	.align-mobile :is(h2,h3, p),
	.icon-list2 :is(h2,h3) {text-align: center;}
	.align-mobile .btn-list {justify-content: center; width: 100%;}
}

#bios-real-estate {}
#bios-real-estate .bio {width: 50%;}
#bios-real-estate .bio__image {max-width: 330px; margin: 20px auto 0 auto;}
body:has(#bios-real-estate) .bio__image img { -webkit-filter: unset;filter: unset;}
body:has(#bios-real-estate) .bio.bio-popup > p {display: none;}
@media(max-width:991px){#bios-real-estate .bio {width: 100%;}
}

#real-estate .scroller {display: flex;list-style: none;gap: 15px;}
#real-estate .scroller__item {flex: 1;}
@media(max-width:991px) {
	#real-estate .scroller {flex-wrap: wrap;}
	#real-estate .scroller-item {padding: 0;}
}

#real-estate-blurb {}
#real-estate-blurb .row div[class*='col']{background: rgba(255, 255, 255, 0.8);}
#real-estate-blurb .row div[class*='col'] :is(h3,p) {color: var(--primary);}

div[data-bg] {background-repeat: no-repeat;background-size: cover;}
@media(min-width:992px){.bg-right {background-position: right !important;background-size: auto !important;}}

#real-estate .block-description {}
#real-estate .block-description i {color: var(--primary); font-size: 3rem;}
#real-estate .block-description ul {padding: 0;}
.checks.blue-checks li::before {    background: var(--primary); color: #fff; border-radius: 50%; aspect-ratio: 1; width: 20px; height: 20px; font-size: 1rem; display: flex; justify-content: center; align-items: center; padding: 5px 3px 3px;}


#secondary-banner .image-list img {max-width: none; height: auto !important;width: 100%;object-fit: cover;}


/* Podcast Page
============================================================================= */
.podcast-body .display-2 { font-size: 24px;font-style: italic;font-weight: 400;line-height: 147.9%; letter-spacing: 0.48px; }
.podcast-body p { line-height: 200%; letter-spacing: .4px; font-size: 20px; }

.podcast-body.no-hero main { margin-top: 0; }
#podcast-banner { height: 100vh; min-height: 670px; display: flex; align-items: center; justify-content: center; padding: var(--header-height) 15px 42px; background: linear-gradient(270deg, #09384E 0%, #0F4A66 24.76%, #0F4A66 48.56%, #0F4A66 75%, #09384E 100%); }

@media (max-width: 1100px) {
	#podcast-banner { background: #0f4a66; }
}

/* Podcast Welcome */
#podcast-welcome { padding: 185px 0; font-size: 20px; }
#podcast-welcome p { color: #000;  }
@media (max-width: 992px){
	#podcast-welcome { padding: 80px 0; }
}

/* Podcast Listen */
#podcast-listen { position: relative; background-size: cover; background-position: center; padding: 243px 0 252px; }
#podcast-listen > * { position: relative; z-index: 1; }
#podcast-listen::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: #11252F; opacity: .85; }
.podcast-links { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.podcast-link__item:hover { transform: scale(1.05);}

@media (max-width: 1200px){
	#podcast-listen { padding: 80px 0; }
}
@media (max-width: 768px){
	#podcast-listen { background-position: 20% 50%; }
}

/* Podcast Form */
#podcast-form { padding: 200px 0; }
#podcast-form .form-container-inline form { max-width: 100%; margin: 0; }
#podcast-form .form-container-inline label { display: none; }
#podcast-form .form-container-inline .ion-form-group { width: 639px; max-width: 100%; font-size: 20px; order: -1; padding-right: 0; }
#podcast-form .form-container-inline input { height: 55px; border-radius: 30px!important; }
#podcast-form .form-container-inline input::placeholder { text-transform: uppercase; font-size: 20px; }
#podcast-form .form-container-inline button { height: 55px; width: 297px; max-width: 100%; margin-left: 36px; order: -1; border-radius: 30px; background: #F0A218; color: var(--dark); margin-right: 0; }
#podcast-form .form-container-inline button:hover { background: #fff; color: #000; }
#podcast-form .form-container-inline form > div:last-of-type { flex: 0 1 100%; display: flex; justify-content: end; }
@media (max-width: 992px){
	#podcast-form .form-container-inline button { width: 170px; }
}
@media (max-width: 768px){
	#podcast-form .form-container-inline button { margin: 0 0 30px; }
	#podcast-form .form-container-inline .ion-form-group { padding-left: 0; max-width: 95%; }
	#podcast-form .form-container-inline form { flex-direction: column; }
}
/* Podcast CTA */
#podcast-cta { position: relative; background-size: cover; background-position: center; padding: 119px 0; }
#podcast-cta > * { position: relative; z-index: 1; }
#podcast-cta::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: #11252F; opacity: .85; }
#podcast-cta .display-1 { color: #fff; }
#podcast-cta .display-2 { font-size: 24px;font-style: italic;font-weight: 400;line-height: 147.9%; letter-spacing: 0.48px; color: #fff; margin: 0 0 64px; }
#podcast-cta .btn { margin-top: 75px; }

@media (max-width: 1200px){
	#podcast-cta { padding: 80px 0; background-position: 20% 50%; }
}
