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

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

/* Set Design Standards & Colors Here */
:root {
	--primary: #001329;
	--primary-rgb: 0, 19, 41;
	--secondary: #eeb72d;
	--secondary-rgb: 238, 183, 45;
	--dark: var(--primary);
	--dark-rgb: var(--primary-rgb);
	--light: var(--secondary);
	--gray: #f1f1f1;
	--gray-md: #cfcfce;
	--gray-dark: #7a7a7a;
	--gray-darker: #000;
	--border-color: #ccc;
	--muted: var(--border-color);
	--body-text: #222;
	--text-dark: #000;
	--primary-font: 'Inter', sans-serif;
	--secondary-font: 'Anek Latin', sans-serif;
	--alt-font: 'Nunito Sans', sans-serif;
	--font-awesome: 'Font Awesome 6 Pro';
	--box-shadow: 0px 4px 71.2px 0px rgba(0, 0, 0, 0.15);
	--nhw-border-radius: 20px;
	--nhw-border-radius-lg: 35px;
}
html { }
body { font-family: var(--primary-font); color: var(--body-text); line-height: 2; font-weight: 400; letter-spacing: 0.25px; }
main { overflow: hidden; }
main > h1 { padding: 300px 15px 150px; text-align: center; }
* { scroll-behavior: auto!important; }

/* Font Styles
============================================================================= */
h1, h2, .display-1, .lead { font-size: 36px; margin: 0 0 31px; font-weight: 600; font-family: var(--secondary-font); text-transform: uppercase; letter-spacing: 2.6px; line-height: 0.93em; }
.display-1--sm { font-size: 24px; }
.display-1__sm { font-size: .4615em; font-weight: 400; letter-spacing: 0.18em; display: block; margin: 0; }
h1 + h2, h2 + h3, .display-2 { font-size: 24px; margin: -19px 0 25px; font-family: var(--secondary-font); font-weight: 400; letter-spacing: 0.18em; line-height: 1; text-transform: uppercase; }
h3, .display-3 { font-size: 24px; margin: 40px 0 8px; color: var(--dark); font-family: var(--primary-font); font-weight: 600; line-height: 1; letter-spacing: .05em; }
h4, .display-4 { font-size: 22px; margin: 17px 0 11px; font-family: var(--secondary-font); line-height: 1; font-weight: 600; text-transform: capitalize; }
h5 { font-size: 20px; font-family: var(--secondary-font); line-height: 1; font-weight: 600; text-transform: capitalize; }
hr { border-top: 3px solid var(--secondary); opacity: 1; margin: 0 0 13px; }
div:has(hr.vertical) { position: relative; }
*:is(.text-center) hr { margin-left: auto; margin-right: auto; }
p:not(:last-of-type) { margin-bottom: 30px; }
u { border-bottom: 3px solid var(--secondary); text-decoration: none; }
a { color: var(--primary); text-decoration: none; transition: all 0.5s; }
a:hover, a:active, a:focus-visible { text-decoration: none; }
main a { border-bottom: 2px solid transparent; }
main a:hover, main a:active, main a:focus-visible { border-bottom: 2px solid var(--secondary); text-decoration: none; }

@media (min-width: 992px) {
	h1, .display-1, .lead { font-size: 52px; }
	hr.vertical { border-top: none; border-right: 5px solid var(--secondary); height: 100%; position: absolute; right: 0; top: 0; }
	*:is([class*="lg-start"]) hr { margin-left: 0; }
	*:is([class*="lg-end"]) hr { margin-right: 0; }
}

@media (min-width: 1200px) {
	*:is([class*="xl-start"]) hr { margin-left: 0; }
	*:is([class*="xl-end"]) hr { margin-right: 0; }
}

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

/* Font Styles */
.font--alt { font-family: var(--alt-font); }
.fs-52 { font-size: 36px; }
.fs-60 { font-size: 36px; }
@media (min-width: 992px) {
	.fs-52 { font-size: 52px; }
	.fs-60 { font-size: 60px; }
}

/* Buttons
============================================================================= */
.btn { --btn-color: var(--dark); --btn-bg: var(--secondary); --btn-transition: #fff; position: relative; background-color: var(--btn-bg); color: var(--btn-color)!important; border: 1px solid var(--btn-bg)!important; height: 46px; padding: 14px 30px; font-family: var(--secondary-font); font-size: 20px; font-weight: 500; letter-spacing: 0.8px; line-height: 1; text-transform: none; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; min-width: 185px; overflow: hidden; z-index: 3; white-space: nowrap; }
.btn::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: calc(200% + 1px); z-index: -1; transform: translateY(0); transition: transform 0.27s ease-out; transform-origin: bottom; background: rgb(255, 255, 255); background: -moz-linear-gradient(bottom, var(--btn-transition) 0%, var(--btn-transition) 50%, var(--btn-bg) 50%, var(--btn-bg) 100%); background: -webkit-linear-gradient(bottom, var(--btn-transition) 0%, var(--btn-transition) 50%, var(--btn-bg) 50%, var(--btn-bg) 100%); background: linear-gradient(to top, var(--btn-transition) 0%, var(--btn-transition) 50%, var(--btn-bg) 50%, var(--btn-bg) 100%); }
.btn:hover, .btn:focus-visible { --btn-color: var(--primary)!important; }
.btn:hover::before, .btn:focus-visible::before { transform: translateY(-50%); transition: transform 0.27s ease-out; }

/* Button Colors */
.btn--dark, .btn--alt, .btn--primary { --secondary: var(--primary); --btn-color: #fff; }

/*  */
.btn--white { --btn-bg: #fff; --btn-transition: var(--secondary); --btn-color: var(--primary) !important; }
.btn--white:hover, .btn--white:focus-visible { border-color: var(--btn-transition); }

/*  */

/*  */
.btn--arrow { padding-right: 12px; }
.btn--arrow::after { content: '\f061'; font-family: "Font Awesome 6 Pro"; font-style: normal; font-weight: 600; margin-bottom: -0.15em; -webkit-font-smoothing: antialiased; padding-left: 15px; font-size: 1.3em; }
.btn--arrow:hover::after {
	-webkit-animation-name: nudgeRight;
  animation-name: nudgeRight;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(.33,.4,.43,1.15);
}

/* Inverted Buttons - Outline Only */
[class*='btn--outline'], .btn--outline-primary { --btn-bg: rgba(255, 255, 255, 0); border-color: var(--primary)!important; color: var(--primary)!important; border-width: 2px!important; }
[class*='btn--outline']:hover, .btn--outline-primary:hover { color: var(--dark)!important; }
.btn--outline-white { --primary: #fff; }
.btn--outline-white:hover { }
.btn--outline-secondary { --primary: var(--secondary); }
.btn--outline-secondary:hover { }

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

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

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

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

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


/* Backgrounds
============================================================================= */
.bg-primary { background-color: var(--primary)!important; }
.bg-secondary { background-color: var(--secondary)!important; }
.bg-light { background-color: var(--light)!important; }
.bg-dark { background: var(--dark)!important; color: #fff; }
.bg-gray { background: var(--gray)!important; }
.bg-gray-md { background: var(--gray-md)!important; }
.bg-gray-dark { background: var(--gray-dark)!important; }
.bg-gray-darker { background: var(--gray-darker)!important; color: #fff; }
.bg-image { position: relative; background-repeat: no-repeat; background-size: cover; background-position: center center; color: #fff; background-color: rgba(var(--dark-rgb), 0.4); background-blend-mode: darken; }
.bg-image .container { position: relative; z-index: 2; }
.bg-image--transparent { color: var(--body-text); background-color: var(--gray); }
.bg-image--transparent::before { display: none; }
[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, .banner--lg, .banner--md { padding: 85px 0; }
@media (min-width: 992px) {
	.banner--md { padding: 120px 0; }
	.banner--lg { padding: 140px 0; }
}

/* Social Media Icons
============================================================================= */
.social { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; gap: 5px; }
.social a { text-align: center; color: var(--secondary); background: transparent; height: 35px; width: 35px; line-height: 35px; border-radius: 50%; font-size: 18px; border: 0; }
.social a:hover, .social a:focus-visible { background-color: var(--primary); color: #fff; }

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

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


/* Numbered List with styled numbers */
ol.bubble { --size: 58px; text-align: left; counter-reset: counter; list-style: none; padding-left: 0; margin-bottom:40px; display: flex; flex-direction: column; gap: var(--size); }
ol.bubble > li { counter-increment: counter; position: relative; padding-left: calc(var(--size) * 1.72); }
ol.bubble > li::before { content: counter(counter); font-family: var(--secondary-font); color: inherit; font-size: calc(var(--size) / 2); position: absolute; left: 0; line-height:0; display: flex; align-items: center; justify-content: center; width: var(--size); height: var(--size); top: 0; border:2px solid var(--primary); border-radius: 50%; text-align: center; }
ol.bubble > li > h4, ol.bubble li > h3 { margin-top: calc(var(--size) * .14); }
ol.bubble > li > p:last-of-type { margin: 0; }

ol.bubble--sm { --size: 35px;  }

@media (max-width:500px) {
	ol.bubble { --size: 35px; }
}


/* Ordered List with parentheses */
ol.parantheses { counter-reset: list; }
ol.parantheses > li { list-style: none; }
ol.parantheses > li:before { content: counter(list) ") "; counter-increment: list; }

/* List with Checks instead of bullets */
.checks { list-style: none; padding: 0; margin: 30px 0; }
.checks li { position: relative; padding-left: 38px; margin-bottom: 30px; }
.checks li::before { content: ''; background: url('/images/check-square-icon.svg') no-repeat; position: absolute; top: 0; left: 0; width: 24px; height: 24px; }

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

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

/* List with Primary colored Dots */
.dots { list-style: none; padding: 0; padding-left: 35px; margin: 5px 0 25px; }
.dots li { padding-left: 20px; position: relative; margin: 0 0 .3em; }
.dots li::before { content: ""; height: 5px; width: 5px; border-radius: 50%; background: var(--primary); position: absolute; top: .5em; left: 0; transform: translateY(33.3%); }
.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 {}
.icon-list__item { font-size: 18px; }
.icon-list__icon { height: 69px; width: 69px; border-radius: 50%; background: var(--gray); display: flex; align-items: center; justify-content: center; }
.icon-list__icon img { max-height: 55px; position: relative; left: 3px; top: 3px; }
.icon-list__heading { color: var(--primary); font-size: 24px; margin: 20px 0 15px; }

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

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

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

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

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

/* borders */
.border-primary { border: 2px solid var(--primary)!important; }
.border-gray { border: 2px solid var(--gray)!important; }
.border-gradient { position: relative; }
.border-gradient::before { content: ""; position: absolute; background: linear-gradient(to right, var(--primary), var(--secondary)); top: -2px; left: -2px; right: -2px; bottom: -2px; z-index: -2; border-radius: inherit; }
.border-gradient::after { content: ""; position: absolute; background: #fff; top: 2px; left: 2px; right: 2px; bottom: 2px; z-index: -1; border-radius: inherit; }


/* Misc */
*:focus { outline-color: var(--primary); }
a:focus-visible, .nav-link:focus-visible, button:focus-visible, a:focus:focus-visible { outline: none; -moz-outline-style: none; outline-offset: 10px; box-shadow: 0 0 2px 2px rgba(var(--primary-rgb),.7)!important; transition: .2s; }
.no-outline:focus { outline: none; }
button::-moz-focus-inner { border: 0; }
address [class*='street-address'] { list-style: none; padding: 0; display: block; }
address { line-height: 2; }
.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'; }
.round-box { border-radius: 24px; overflow: hidden; }
.round-box--md { border-radius: 28px; }
.border-outline { border: 5px solid var(--primary); }
.border-outline--secondary { border: 5px solid var(--secondary); }
a[href*="mailto"] { word-break: break-word; }
@media (min-width:1300px) {
	.container { max-width: 1285px; }
}
@media (min-width:992px) {
	[data-animation]:not(.animated):not(.animated-fast):not(.animated-slow), [data-stagger]:not(.visible) { animation-fill-mode: backwards; animation-play-state: paused; opacity: 0; transition: opacity .2s; }
}
@media (max-width:991px) {
	.form-direction:after, .form-direction-l:after { content: 'Below'; }
}

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


/* ==========================================================================
   Header
============================================================================= */
:root { --header-height: 224px; --header-top-bar: 40px; }
#header { height: var(--header-height); color: #fff; font-family: var(--secondary-font); font-weight: 400; background-color: rgba(var(--primary-rgb), 0); transition: background-color 0.4s ease-out, box-shadow 0.2s ease-out; position: absolute; top: 0; left: 0; width: 100%; z-index: 99; }
#header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 40px; background-color: var(--dark); }
#header .container-fluid { position: relative; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px 30px; }
#header .icon {  }
#header .icon img {  }
#header .links { position: absolute; top: 0; left: 0; width: 100%; height: var(--header-top-bar); }
#header .links > ul { gap: 0 70px; }
#header .logo img {  }
#header .phone { font-size: 16px; display: inline-flex; align-items: center; justify-content: flex-end; gap: 9px; height: 40px; }
#header .launch-menu-button { display: none; color: inherit; white-space: nowrap; }
#header a { color: inherit; }
#header a:hover { color: var(--light); }

@media (min-width: 992px) {
	#header .logo { max-width: 25%; }
	#header .phone { font-size: min(1.5vw, 24px); }
}

@media (max-width:991px) {
	:root { --header-height: 150px; }
	#header .launch-menu-button { display: block; }
	#header .nav, #header .links { display: none; }
}

@media (min-width: 576px) and (max-width: 991px) {
	#header .phone { width: calc(100% - 30px); position: absolute; top: 0; }
}

@media (max-width: 575px) {
	#header:not(.affix) .container-fluid { flex-direction: column;  }
	#header .phone { justify-content: center; }
}

/* Header Affix */
#header.affix { height: 50px; background-color: rgba(var(--primary-rgb), 1); transition: background-color 0.4s ease-in, box-shadow 0.2s ease-in; box-shadow: var(--box-shadow); }
#header.affix .contact { display: none; }
#header.affix .logo {  }
#header.affix .logo img { max-height: 30px; }
#header.affix .launch-menu-button { display: block; }
#header.affix .phone, #header.affix .links, #header.affix .nav { display: none; }


/* ==========================================================================
   #Nav
============================================================================= */
#header .nav { list-style: none; padding: 0; margin: 0; text-transform: capitalize; justify-content: center; gap: 25px 53px; }
#header .nav__item { position: relative; padding: 0 15px; line-height: 29px; }
#header .nav > .nav__item { padding: 0; }
#header .nav__item.launch-only { display:none; }
#header .nav__item a {  }
#header .nav__item > a::after { content: ''; height: 30px; width: calc(100% + 25px); background-color: var(--dark); border-radius: 14px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scaleX(0); transition: 0.3s ease-in; z-index: -1; }
#header .nav__item:has(.nav__dropdown) > a::after { border-bottom-left-radius: 0; border-bottom-right-radius: 0; transform: translate(-50%, 0) scaleY(0); }
#header .nav__item.active:has(.nav__dropdown) > a::after { border-radius: 14px; }
#header .nav__item.active:has(.nav__dropdown):hover > a::after { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
#header .nav__item:hover > a::after, #header .nav__item.active > a::after, #header .nav__item:focus-visible > a::after { transform: translate(-50%,-50%) scale(1); transition: 0.3s ease-out; }
#header .nav__dropdown { display: none; list-style: none; padding: 0; margin: 0; position: absolute; top: 100%; background-color: var(--dark); left: -13px; border-radius: 0 0 14px 14px; overflow: hidden; box-shadow: 0px 17px 32px 0px rgba(187, 187, 187, 0.3); }
#header .nav__dropdown > li { white-space: nowrap; line-height: 35px; padding: 0 20px; }
#header .nav__dropdown > li > a { color: #fff; transition: 0s; }
#header .nav__dropdown > li:hover { background-color: var(--secondary); }
#header .nav__dropdown > li:hover > a { color: var(--body-text); transition: 0s;}
#header .nav__item:not(.dropdown):hover .nav__dropdown { display: block; }
#header .nav__dropdown--lg { --col-num: 1; --max-width: 1050px; width:calc(var(--max-width) * var(--col-num)/4); padding: 30px 10px; }
#header .nav__dropdown--lg:has(.col:nth-child(2)) { --col-num: 2; }
#header .nav__dropdown--lg:has(.col:nth-child(3)) { --col-num: 3; }
#header .nav__dropdown--lg:has(.col:nth-child(4)) { --col-num: 4; }
#header .nav__dropdown--lg ul { list-style: none; padding: 0; margin: 0; }
#header .nav__dropdown--lg .nav__item, #header .nav__dropdown--lg li { margin: 0 0 15px!important; }
#header .nav__dropdown--lg .nav__item a { display: block; line-height: 1.3; padding: 0 15px; position: relative; z-index: 2; overflow: hidden; }
#header .nav__dropdown--lg .nav__item a::before { content: ''; width: 100%; position: absolute; top: 0; left: 0; height: 100%; background-color: rgba(255,255,255,0.4); transform: translateX(-105%); transition: 0.7s; }
#header .nav__dropdown--lg .nav__item li:hover a, #header .nav__dropdown--lg .nav__item li:focus-visible a { color: var(--light); }
#header .nav__dropdown--lg .nav__item li:hover a::before, #header .nav__dropdown--lg .nav__item li:focus-visible a::before { transform: translateX(0); }
#header .nav__dropdown--lg .nav__item > ul { padding: 0 15px; }
#header .nav__dropdown--lg .nav__item.service-title > a { margin-bottom:15px; }
#header .nav__dropdown--lg .nav__item ul > li > a { font-weight:400; }
#header .nav__dropdown--lg [class*="col-"]:not(:last-of-type) { border-right:1px solid var(--primary); }
@media (max-width:1583px) {
	#header .nav__item:last-child .nav__dropdown  { left: auto; right: -15px; }
}
@media (max-width: 1350px){
	#header .nav { gap: 25px 20px; }
	#header .nav__dropdown--lg { --max-width: 950px; }
}

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


/* ==========================================================================
  #Footer
============================================================================= */
.footer { background-color: var(--dark); color: #fff; overflow: hidden; padding: 0 0 96px; font-weight: 400; }
.footer .container-fluid { padding: 95px 0; }
.footer h3 { color: inherit; font-family: var(--secondary-font); font-size: 25px; font-weight: 500; text-transform: uppercase; margin: 0 0 6px; }
.footer hr { width: 109px; }
.footer a { color: inherit; }
.footer a:hover, .footer a:focus-visible { color: var(--light); }
.footer .list-unstyled {  }
.footer .footer__links { line-height: 2.08; }
.footer .city-silhouette { position: relative; }
.footer .city-silhouette::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 99%; background-color: #fff; }
.footer .lottie-player svg { display: none; }
.footer__logo { display: block; margin-bottom: 15px; }
.footer__logo img {}
.footer__logins li { text-wrap: nowrap; }
.footer__address .street-address { display: block; }
.footer__hours { text-align: left; margin: 0 auto; }
.footer__social { margin-bottom: 20px; }
.footer__social a { color: var(--light); }
.footer__social a:hover { color: var(--primary); background-color: var(--secondary); }
.footer__affil { margin: 20px -5px 0; }
.footer__affil img, .footer__affil svg { margin: 5px; }
.footer__affil img { max-height: 60px; }
.footer__affil svg { height: 60px; width: 60px; }
.footer__contact { word-break: break-word; }
.footer__ada-copy { padding-top: 104px; line-height: 1.53; font-family: var(--secondary-font); }
.footer__ada {  }

@media (min-width: 992px) {
	/* .footer .city-silhouette { margin-top: -42px; } */
	.footer .lottie-player svg { display: block; }
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.footer__contact { width: 355px; }
}

/* ==========================================================================
  Forms
============================================================================= */
.form-container { position: relative; border: 0; background-color: #fff; box-shadow: var(--box-shadow); padding: 51px min(3vw, 53px); font-family: var(--alt-font); }
.form-container h2, .form-container__header, .form-container__lead { color: var(--body-text); font-size: 20px!important; font-weight:700; letter-spacing: normal; line-height: 1.03; text-transform: uppercase; text-align: center; margin: 0 0 38px; }
.form-container .ion-form-group {margin-bottom: 8px;}
.form-container:not(.form-container-inline) .ion-form-group input, .form-container .ion-form-group textarea { border: 0 !important; border-radius: 0 !important; background: var(--gray); }
.form-container .ion-form-group input, .form-container .ion-form-group select {height: 34px;}
.form-container .ion-form-group textarea { height: 112px; }
.form-container .ion-form-group ::-webkit-input-placeholder, .form-container .ion-form-group select:invalid { color: var(--body-text); font-size: 17px; }
.form-container .ion-form-group-dropdown { background: var(--gray); }
.form-container .ion-form-group-dropdown select { padding-left: 20px; border: 0; background: transparent; border-radius: 0; }
.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: 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; transition: 0.3s; }
.form-container .ion-form-group-radio span::after, .form-container .ion-form-group-checkbox span::after { content: '\f00c'; color: var(--primary); font-family: var(--font-awesome); font-style: normal; font-weight: 600; line-height: 23px; opacity: 0; position: absolute; left: 3px; top: 2px; -webkit-font-smoothing: antialiased; -webkit-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; 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; transition: 0.3s; }
.form-container .ion-form .ion-form-group label, .ion-form .ion-form-group legend { color: var(--body-text); font-weight: 500; }
.form-container iframe { margin: -10px 0 10px; }
.form-container form > div:last-of-type > div { margin-left: auto; transform: scale(0.97) translateX(-5px); -webkit-transform: scale(0.97) translateX(-5px); }
.form-container .ion-btn { background-color: #000; border-color: #000; width: 109px; height: 37px; border-radius: 30px; margin: 0 0 0 auto; padding: 7.5px 25px; display: -webkit-box; display: flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; font-size: 17px; font-weight: 500; letter-spacing: 0.514px; text-transform: capitalize; transition: 0.4s; }
.form-container .ion-btn:hover { background-color: var(--light); border-color: var(--light); color: var(--primary); }
.form-container-arrow .ion-btn { width: 45px!important; height: 45px!important; font-size: 20px; line-height: 42px; margin: 0; transition: 0.4s; }

@media (min-width:992px) {
	.form-container { max-width: 100%; width: 400px; margin-left: auto; }
}
/* Form Container Stacked on small screens */
@media (min-width:600px) and (max-width:991px) {
	.form-container form { display: -webkit-box; display: flex; flex-wrap: wrap; -webkit-box-pack: justify; justify-content: space-between; margin: 0; gap: 20px; }
	.form-container form .ion-form-group { flex-basis: calc(50% - 20px); -webkit-box-flex: 1; flex-grow: 1; margin: 0; }
	.form-container form .ion-form-group.ion-form-group-textarea, .form-container form .ion-form-group.ion-form-group-break, .form-container form .ion-form-group.ion-form-group-checkbox, .form-container form .ion-form-group.ion-form-group-radio, .form-container form > div:last-of-type { flex-basis: 100%; }
	.form-container form > 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: flex; flex-wrap: wrap; -webkit-box-pack: justify; justify-content: space-between; -webkit-box-align: center; align-items: center; margin: 0; gap: 20px; }
	.form-container--stacked form .ion-form-group { flex-basis: calc(50% - 20px); -webkit-box-flex: 1; flex-grow: 1; margin: 0; }
	.form-container--stacked form .ion-form-group.ion-form-group-textarea, .form-container--stacked form .ion-form-group.ion-form-group-break, .form-container--stacked form .ion-form-group.ion-form-group-checkbox, .form-container--stacked form .ion-form-group.ion-form-group-radio, .form-container--stacked form > div:not(.ion-form-group):last-of-type { flex-basis: 100%; }
	.form-container--stacked form .ion-form-group.ion-form-group-textarea { margin-bottom: 5px; }
	.form-container--stacked form > 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; }
}

/* Floating Form Labels */
/* .form-container .ion-form .ion-form-group { position: relative; }
.form-container .ion-form .ion-form-group:not(.ion-form-group-checkbox):not(.ion-form-group-radio) label { z-index: 2; padding: 0; margin: 0; position: absolute; top: calc(60% - 2px); left: 20px; height: 100%; overflow: hidden; font-size: 16px; font-family: var(--alt-font); font-weight: 400; text-align: start; text-overflow: ellipsis; -webkit-text-overflow: ellipsis; white-space: nowrap; pointer-events: none; border: var(--bs-border-width) solid transparent; -webkit-transform: translateY(-50%); transform: translateY(-50%); -webkit-transform-origin: 0 0; transform-origin: 0 0; -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out; transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out; transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out; }
.form-container .ion-form-group ::-webkit-input-placeholder { opacity: 0; }
.form-container .ion-form-group ::-webkit-input-placeholder, .form-container .ion-form-group select:invalid, .form-container .ion-form-group label:not(.float-label) + select:not(:focus), .form-container .ion-form-group ::placeholder { opacity: 0; }
.form-container .ion-form .ion-form-group:not(.ion-form-group-checkbox):not(.ion-form-group-radio):has(input:focus) label, .form-container .ion-form .ion-form-group:has(textarea:focus) label, .form-container .ion-form .ion-form-group:has(select:focus) label, .form-container .float-label, .float-label { -webkit-transform: translate(-0.75em, -1.25em) scale(.5) !important; transform: translate(-0.75em, -1.25em) scale(.5) !important; opacity: .7;
}.form-container .ion-form-group-dropdown:has(.float-label) select:not(:focus), .float-label + select { color: var(--body-text)!important; }
.form-container .ion-form .ion-form-group:has(textarea:focus) label, .ion-form-group-textarea .float-label { top: 10%!important; } */
.form-container .ion-form .ion-form-group { position: relative; }
.form-container .ion-form .ion-form-group:not(.ion-form-group-checkbox):not(.ion-form-group-radio) label { font-weight: 400; margin: 0; position: absolute; font-size: 16px; bottom: 10px; left: .5em!important; z-index: 2; height: 100%; padding: 0.6em 0em 0; overflow: hidden; text-align: start; -o-text-overflow: ellipsis; text-overflow: ellipsis; -webkit-text-overflow: ellipsis; white-space: nowrap; pointer-events: none; border: var(--bs-border-width) solid transparent; -webkit-transform-origin: 0 0; -ms-transform-origin: 0 0; transform-origin: 0 0; -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out; transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out; -o-transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out; }
.form-container .ion-form-group ::-webkit-input-placeholder, .form-container .ion-form-group select:invalid, .form-container .ion-form-group label:not(.float-label) + select:not(:focus), .form-container .ion-form-group ::placeholder { color: transparent!important; }
.form-container .ion-form .ion-form-group:not(.ion-form-group-checkbox):not(.ion-form-group-radio):has(input:focus) label, .form-container .ion-form .ion-form-group:has(textarea:focus) label, .form-container .ion-form .ion-form-group:has(select:focus) label, .form-container .float-label { -webkit-transform: translateY(-.45em) scale(.5); -ms-transform: translateY(-.45em) scale(.5); -moz-transform: translateY(-.45em) scale(.5); transform: translateY(-.45em) scale(.5); opacity: .7; }
.form-container .ion-form-group-dropdown:has(.float-label) select:not(:focus), .float-label + select { color: var(--body-text)!important; }
.form-container .ion-form-group-dropdown label { left: -1px!important; }
.float-label { -webkit-transform: translateY(-.45em) scale(.5); -ms-transform: translateY(-.45em) scale(.5); -moz-transform: translateY(-.45em) scale(.5); transform: translateY(-.45em) scale(.5); opacity: .7; }


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

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

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


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


/* ==========================================================================
   Areas
============================================================================= */
#areas { padding: 137px 0; text-align: center; }
#areas h3 { margin-bottom: 36px; }
.areas { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 15px 16px; justify-content: center; color: var(--body-text); font-size: 20px; letter-spacing: .05em; text-transform: capitalize; }
.areas span.btn:hover { cursor: auto; }
.areas span.btn:hover::before { transform: none; }
.areas .btn { width: 185px; }

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

/* Home Banner
============================================================================= */
#home-banner { position: relative; min-height: 100vh; height: auto; padding-top: calc(var(--header-height) + 51px); overflow: hidden; color: #fff; background: var(--dark); }
#home-banner .container { position: relative; z-index: 9; height: 100%; display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; }

/* Home Banner Prompt */
#home-banner .prompt { position: relative; padding: 0; text-align: center; }
#home-banner .prompt .lead { letter-spacing: 3.1px; margin: 0 0 9px; }
#home-banner .prompt .sub { font-weight: 400; letter-spacing: normal; line-height: 1.11; text-transform: none; margin: 0 0 43px; padding: 0 10px; position: relative; }
@media (min-width: 992px){
	#home-banner { min-height: 1080px; max-height: 100vh; }
	#home-banner .prompt .lead { font-size: 3.25em; }
	#home-banner .prompt .sub { font-size: 1.875em; }
}

/* Home Banner Carousel */
#home-banner-carousel { position: absolute; top: 0; left: 0; height: 100%; width: 100%; opacity: 0.4; }
#home-banner-carousel .carousel-inner, #home-banner-carousel .carousel-item { height: 100%; }

@media(max-width:991px) {
	#home-banner {height: 100%; padding: 150px 0; min-height: 100%;}
}

@media (max-width: 500px) {
	/* #home-banner { background: rgba(var(--dark-rgb),0.6) url('/images/banner-1-sm.webp') no-repeat center/cover; background-blend-mode: darken; } */
	/* #home-banner-carousel { display: none; } */
}


/* Home CTAs
============================================================================= */
#home-cta { padding: min(4.9vw, 98px) 0 min(4.85vw, 97px); }

/* CTAs */
.ctas { font-family: var(--secondary-font); font-size: 18px; list-style: none; padding: 0; margin: 0; display: grid; justify-content: space-evenly; grid-template-columns: repeat(auto-fit, minmax(250px, 295px)); gap: 35px; }
.ctas .cta { color: var(--dark); position: relative; display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; -webkit-box-pack: start; justify-content: flex-start; }
.ctas .cta__title { color: inherit; font-family: inherit; font-size: 25px; font-weight: 600; letter-spacing: normal; line-height: 100%; text-transform: uppercase; width: 100%; margin: 0 0 6px; }
.ctas .cta__link { color: inherit; line-height: 1.82; position: relative; border: none; }
.ctas .cta__link::after { content: '\f061'; font-family: var(--font-awesome); font-size: 20px; color: var(--primary); position: absolute; top: 50%; right: 0; -webkit-transform: translateY(-50%); transform: translateY(-50%); transition: 0.3s; }
.ctas .cta__link:hover::after {  color: var(--secondary); opacity: 1; -webkit-transform: translate(0, -50%); transform: translate(0, -50%); }
@media (min-width: 992px) {
	#home-cta { padding-top: calc(min(4.9vw, 98px) - 25px); }
	.ctas { grid-template-columns: repeat(auto-fit, min(20vw, 335px)); }
	.ctas .cta__title { height: 2em; display: flex; align-items: flex-end; }
	.ctas .cta__link::after { opacity: 0; -webkit-transform: translate(-25px, -50%); transform: translate(-25px, -50%); }
}

/* Home Welcome
============================================================================= */
#home-welcome { padding: min(15vw, 152px) 0 min(15vw, 144px); }
#home-welcome .col-content .text-secondary { font-size: 22px; font-family: var(--secondary-font); line-height: 1.33; }
#home-welcome .col-media { padding-bottom: 85px; }

@media (min-width: 1850px) {
	#home-welcome .col-media { flex: 0 0 min(56vw, 853px); }
	#home-welcome .col-content { flex: 0 0 min(42.5vw, 650px); }
}

/* Home Services
============================================================================= */
[id*='-services'] { color: var(--body-text);  }
[id*='-services'] .container-fluid { position: relative; }
[id*='-services'] header { text-align: center; }
@media (min-width: 1200px) {
	#home-services { padding: 175px 0; }
	#pm-services { padding: 145px 0; }
}

.services { margin-top: 100px; }
.service-item { position: relative; display: block; color: inherit; font-size: 16px; font-weight: 400; width: min(100%, 411px); }
.service-item p:last-child { margin: 0; }
.service-item a { font-weight: 600; text-transform: capitalize; }
.service-item__icon { display: -webkit-box; display: flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; -webkit-transition: .4s; transition: .4s; width: 91px; height: 91px; background-color: var(--secondary); border-radius: 50%; }
.service-item__title { color: var(--primary); }
.services + .carousel-controls { position: relative; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); width: 119px; height: 100px; }
.services + .carousel-controls [class*='carousel-control-'] { bottom: auto; background-color: rgba(var(--primary-rgb), 0.1); width: 53px; height: 53px; border: 0; border-radius: 50%; -webkit-transition: 0.4s; transition: 0.4s; margin-top: 25px; opacity: 1; }
.services + .carousel-controls [class*='carousel-control-']:hover { background-color: rgba(var(--primary-rgb), 1); }
[id*='-services']:not(.bg-dark) .service-item:has(a:hover) .service-item__icon { background-color: var(--dark); }
[id*='-services']:not(.bg-dark) .service-item:has(a:hover) .service-item__icon img { filter: invert(1) grayscale(1) brightness(10); }
/* Service Dark Mode */
[id*='-services'].bg-dark { color: #fff; }
[id*='-services'].bg-dark :is(.services, h3, .service-item__title) { color: inherit; }
[id*='-services'].bg-dark .service-item a { color: var(--light); }
[id*='-services'].bg-dark .services + .carousel-controls [class*='carousel-control-'] { background-color: rgba(255, 255, 255, 0.1); color: inherit; }
[id*='-services'].bg-dark .services + .carousel-controls [class*='carousel-control-']:hover { background-color: rgba(255, 255, 255, 1); color: var(--dark); }
[id*='-services'].bg-dark .service-item:has(a:hover) .service-item__icon { background-color: #fff; }

@media (min-width: 1200px){
	.service-item { min-height: 381px; }
}

@media (min-width: 1500px) {
	.services + .carousel-controls { position: absolute; right: max(5vw, 15px);left: auto;-webkit-transform: none;-ms-transform: none;transform: none;top: 0; transform: translateY(-12%); margin-right: 55px;}
	.services + .carousel-controls [class*='carousel-control-'] { margin-top: 0; }
}

@media (max-width: 616px) {
	.services { text-align: center; }
	.service-item, .service-item__icon { margin-left: auto!important; margin-right: auto!important; }
}

/* Multi-Item Carousel */
.multi-item-carousel { --shown-items: 1; --shown-percent: calc(100% / var(--shown-items)); --shown-percent-prev: calc(-100% / var(--shown-items)); }
.multi-item-carousel .carousel-item { justify-content: space-between; -webkit-transition: -webkit-transform .6s cubic-bezier(0.18, 0.42, 1, 1); transition: -webkit-transform .6s cubic-bezier(0.18, 0.42, 1, 1); transition: transform .6s cubic-bezier(0.18, 0.42, 1, 1); transition: transform .6s cubic-bezier(0.18, 0.42, 1, 1), -webkit-transform .6s cubic-bezier(0.18, 0.42, 1, 1); padding: 0 15px; }
.multi-item-carousel .carousel-item > * { margin: 0 -15px; }
.multi-item-carousel .carousel-item.active, .multi-item-carousel .carousel-item-next, .multi-item-carousel .carousel-item-prev { display: grid; gap: 30px; grid-template-columns: repeat(var(--shown-items), 1fr); }
.multi-item-carousel .carousel-item-next:not(.carousel-item-start), .multi-item-carousel .active.carousel-item-end { -webkit-transform: translateX(var(--shown-percent)); transform: translateX(var(--shown-percent)); }
.multi-item-carousel .carousel-item-prev:not(.carousel-item-end), .multi-item-carousel .active.carousel-item-start { -webkit-transform: translateX(var(--shown-percent-prev)); transform: translateX(var(--shown-percent-prev)); }
.multi-item-carousel [class*='lazy'], .multi-item-carousel svg { opacity: 1; }


/* CTA Banner
============================================================================= */
#cta-banner .round-box { padding: 45px min(7.25vw, 145px); font-size: 20px; }
#cta-banner.pm { padding: 149px 0 144px; }
#cta-banner.pm .round-box { padding: 96px 77px 81px; }
#cta-banner.pm p { margin: 38px 0; }
.cta-arrow img { width: 150px; transform: rotate(76deg); position: absolute; left: 0; z-index: 10; display: none; }
@media (min-width: 1250px) {
	.cta-arrow img { display: block; }
}
@media (min-width: 1250px) and (max-width: 1499px) {
	.cta-arrow img { transform: rotate(103deg); left: -15px; }
}

/* Home Commitment
============================================================================= */
#home-commitment .col-content ul, #home-commitment .col-content li:last-child, #home-commitment .col-content p { margin-bottom: 0; }
#home-commitment .col-content li { margin-bottom: 53px; }

@media (min-width: 1200px) {
	#home-commitment { padding: 198px 0; }
	#home-commitment .col-media { flex: 0 0 clamp(54%, 41.5vw, 830px); }
	#home-commitment .col-content { flex: 0 0 clamp(46%, 35vw, 700px); }
}



/* Home Testimonials
============================================================================= */
#testimonials .row { padding-bottom: 70px; }

@media (min-width: 1200px) {
	#testimonials .col-header { flex: 0 0 clamp(35%, 29.3vw, 586px); }
	#testimonials .col-content { flex: 0 0 clamp(39%, 33vw, 660px); }
	#testimonials .col-btn { flex: 0 0 183px; }
}

/* Testimonial Scroller */
.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: 240px!important;margin: 0!important;}
.simply-scroll + .simply-scroll { margin-top: 32px!Important; }
.simply-scroll .simply-scroll-clip {width: 100%!important;height: 240px!important;}
.simply-scroll .simply-scroll-list li { float: left;  width: 439px!important; height: 329px!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 Blog
============================================================================= */
#home-blog { padding: 165px 0 170px; }
#home-blog header { margin-bottom: 71px; }

#blog-inline {}
#blog-inline .blog-inline__list { display: flex; gap: 32px; flex-wrap: wrap; }
#blog-inline .post-image { width: 100% }
#blog-inline .blog-post { background: transparent; display: -webkit-box; display: inline-flex; gap: 38px; flex: 1 0 min(370px, 100%); }
#blog-inline .blog-post:nth-child(even) { display: block; }
#blog-inline .post-body { padding: 54px 52px 47px; height: 100%; background: #fff; color: var(--body-text); display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; -webkit-box-pack: center; justify-content: space-between; border-radius: 27px; -webkit-transition: 0.4s; transition: 0.4s; position: relative; }
#blog-inline .post-body:hover { background-color: var(--light); -webkit-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; }
#blog-inline .post-body .post-title { margin: 0 0 32px; color: inherit; font-size: 24px; font-weight: 500; line-height: 1; text-transform: uppercase; height: 75px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; text-overflow: ellipsis; }
#blog-inline .blog-post .post-featured { padding: 0; height: 209px; margin-bottom: 27px }
#blog-inline .read-more { background-color: #000; color: #fff; font-size: 24px; width: 49px; height: 49px; display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; border-radius: 50%; margin-left: auto; }

@media(min-width: 1314px) {
  /* #blog-inline .blog-inline__list { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); } */
  #blog-inline .blog-post { position: relative; }
  #blog-inline .post-body { -ms-flex-item-align: stretch; -ms-grid-row-align: stretch; align-self: stretch; -webkit-box-flex: 1; -ms-flex: 1 1 100%; flex: 1 1 100%; height: 100% }
}

@media (max-width: 991px) {
  #blog-inline .blog-post { -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 15px; }
  #blog-inline .blog-post .post-featured { margin-bottom: 30px }
  #blog-inline .blog-post:nth-child(even) .post-image, #blog-inline .blog-post:nth-child(odd) .post-content { display: none; }
}

@media(max-width: 450px) {
  #blog-inline .post-body {
    padding: 40px 20px;
  }
}


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

/* Split CTAs */
.side-content { }
.side-content .ctas { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
@media (min-width: 992px) {
	.side-content .ctas { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}
@media (min-width: 992px) and (max-width: 1199px){
	.side-content .ctas .cta { font-size: 18px; }
}

/* Secondary Banner
================================================== */
#secondary-banner { position: relative; min-height: 645px; height: auto; padding-top: calc(var(--header-height) + 51px); overflow: hidden; color: #fff; background-color: rgba(var(--dark-rgb), 0.6); background-repeat: no-repeat; background-position: center; background-size: cover; background-blend-mode: darken; }
#secondary-banner .image-list { display: none !important; }
#secondary-banner .container { position: relative; z-index: 9; height: 100%; display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; }

/* Secondary Banner Prompt */
#secondary-banner .prompt { position: relative; padding: 0; text-align: center; }
#secondary-banner .prompt .hero__lead { letter-spacing: 3.1px; margin: 0 0 9px; }
#secondary-banner .prompt .hero__sub { color: inherit; font-weight: 400; letter-spacing: normal; line-height: 1.11; text-transform: none; margin: 0 0 43px; padding: 0 10px; position: relative; }
@media (min-width: 992px){
	#secondary-banner .prompt .hero__lead { font-size: 3.25em; }
	#secondary-banner .prompt .hero__sub { font-size: 1.875em; }
}


/* No Hero Image */
body.no-hero #secondary-banner { display: none; }
main.no-hero, body.no-hero main { margin-top: var(--header-height); }
body.no-hero, body:has(main.no-hero) { --header-height: 165px; }
body.no-hero #header, body:has(main.no-hero) #header { background-color: var(--dark); }
body.no-hero #header:not(.affix) .container-fluid, body:has(main.no-hero) #header:not(.affix) .container-fluid { padding-top: var(--header-top-bar); }

/* ==========================================================================
  About Page
============================================================================= */

/* Team */
.team { margin: 70px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 300px)); justify-content: center; grid-gap: 75px 5vw; }
.team-member { text-align: center; color: var(--text-dark); }
.team-member__name { font-size: 22px; color: var(--text-dark); line-height: 1.25em; margin: 0; font-weight: 600;   }
.team-member__title { color: var(--primary); font-size: 16px; font-style: italic; font-weight: 400; text-transform: none; margin: 2px 0 0;  font-weight: normal; }
.team-member__title::after { content: ''; height: 5px; width: 109px; margin: 17px auto 8px; display: block; background: var(--secondary); }
.team-member__image .circle-img { position: relative; height: 0; width: 100%; padding-top: 100%; border-radius: 50%; overflow: hidden; }
.team-member__image img { position: absolute; top: 0; left: 0; height: 100%; width: 100%; -o-object-position: top; object-position: top; border-radius: 50%; }
.team-member__image .img-top { opacity: 0; transition: .5s; z-index: 2; }
.team-member__image:hover .img-top { opacity: 1; }
.team-member__bio { display: none; font-size: 16px; }
.team-member__content p { margin-bottom: 20px; }
.team-member__contact { margin: 15px 0 0; padding: 0; list-style: none; }
.team-member__contact-item { margin: 0; }
.team-member__contact-item i { color: var(--secondary); padding-right: 8px; }
.team-member__btn { border: none; padding: 5px 20px; color: #fff; background: var(--secondary); border: 1px solid var(--secondary); font-size: 15px; border-radius: 20px; margin-top: 12px; outline: none!important; transition: .5s; }
.team-member__btn:hover { background: #fff; color: var(--secondary); }
.team-member:not(.bio-popup) .team-member__contact { box-shadow: none; width: 100%; padding: 0; margin: 10px 0 0; display: flex; gap: 0 20px; justify-content: center; flex-direction: column; }
.team-member .team-member__contact i { padding-right: 8px; }
.team-member:not(.bio-popup) .team-member__image { margin-bottom: 25px; }
/* .team-member:not(.bio-popup) .team-member__image:hover { cursor: pointer; } */
.team-member:not(.bio-popup) .team-member__image:hover .circle-img::after { opacity: 1; }

.team--sm { grid-template-columns: repeat(auto-fit, minmax(200px, 220px)); }

/* Bio Popups */
#bioModal .modal-content { border-radius: 16px;  }
#bioModal .modal-close { position: relative; padding: 24px 16px; box-shadow: 0px 2px 12px 0px rgba(33, 61, 113, 0.25); }
#bioModal .btn-close { border: none; outline: none; }
#bioModal .modal-close button { position: relative; top: 0; right: 0; width: 34px; height: 24px; font-size: 16px; font-weight: 400; line-height: 150%; color: var(--dark); background: none!important; opacity: 1; transition: .5s; }
#bioModal .modal-close button:hover { color: var(--dark)!important; }
#bioModal .modal-body { padding: 0; }
#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 { display: flex; padding: 0; animation-name: none; opacity: 1; overflow: hidden; animation: none!important; }
.bio-popup .team-member__bio, .bio-popup .team-member__bio > *:not(.team-member__contact) { display: block; }
.bio-popup .team-member__btn { display: none; }
.bio-popup .team-member__image { margin: 0;  animation: none!important; }
.bio-popup .team-member__image .circle-img { position: relative; width: 100%; height: 100%; padding: 0; border-radius: 0; }
.bio-popup .team-member__image img { border-radius: 0; }
.bio-popup .team-member__name { font-size: 24px; }
.bio-popup .team-member__title { color: var(--gray-dark); margin-bottom: 24px; }

.bio-popup .team-member__bio { text-align: left; }
.bio-popup .team-member__contact { display: none; }
.bio-popup .team-member__contact:has(a) { display: flex; }
.bio-popup .team-member__contact { flex-direction: column; position: absolute; align-items: center; justify-content: center; gap: 0 20px; z-index: 3; }
.bio-popup .team-member__contact::before { display: none; }
@media (min-width: 992px) {
	#bioModal .modal-xl { --bs-modal-width: 90vw; max-width: var(--bs-modal-width); }
	#bioModal .modal-content { height: 564px; flex-direction: row; max-height: 80vh; }
  .bio-popup { height: 100%; }
	.bio-popup .team-member__content { text-align: left; overflow: scroll; padding: 72px 60px 100px; }
	.bio-popup .team-member__image { width: 33.33%; flex: 0 0 33.33%; }
  .bio-popup .team-member__title::after { margin-left: 0; }
	.team-member__contact { bottom: 40px; left: 40px; width: calc(33.33% - 80px); padding: 16px 24px; background: #fff; border-radius: 10000px; box-shadow: 0px 2px 12px 0px rgba(33, 61, 113, 0.25); }
}
@media (min-width: 1200px) {
	#bioModal .modal-xl { --bs-modal-width: 1024px; }
}
@media (max-width: 991px) {
  .team { grid-gap: 55px 5vw; }
	#bioModal { --bs-modal-margin: 24px; }
	#bioModal .modal-body { overflow: scroll; position: unset; }
	#bioModal .modal-close { text-align: right; }
	.bio-popup { flex-direction: column; position: unset; }
  .bio-popup .team-member__image { width: 300px; max-width: 100%; margin: 30px auto 0; padding: 0 15px; }
	.bio-popup .team-member__image .circle-img { padding-top: 100%; height: 0; width: 100%; border-radius: 50%; overflow: hidden; }
	.bio-popup .team-member__content { padding: 32px 32px 100px; }
	.bio-popup .team-member__contact { bottom: 0; left: 0; right: 0; padding: 16px 24px; background: #fff; box-shadow: 0px 2px 12px 0px rgba(33, 61, 113, 0.25); flex-direction: row; gap: 0 20px; flex-wrap: wrap; }
}



/* ==========================================================================
  Blog Page
============================================================================= */
.blog-header { margin-bottom: 50px; }
.blog-header h1 a { color: var(--primary); }
.blog-header h1 a:hover { color: var(--light); }
.blog-header .breadcrumb { background: none; padding: 40px 0 15px; margin: 0; position: relative; font-size: 15px; transform: translateY(-60px); font-family: var(--primary-font); letter-spacing: .05em; }

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

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

/* Side Panel
============================================================================= */
.blog-container .side-panel { background: #fff; padding: 40px; box-shadow: 0px 33px 79px 0px rgba(0, 0, 0, 0.08); }
.blog-container .side-panel section { margin: 0 0 45px; }
.blog-container .side-panel section h4 { font-size: 15px; text-transform: uppercase; padding-bottom: 15px; margin: 0 0 20px; border-bottom: 1px solid #cccccc; letter-spacing: .1em; }
.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 { color: var(--dark); }
.blog-container .side-panel section .social a:hover { color: var(--light); }

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

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

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

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


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

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

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

/* Post Author */
.blog-post .post-footer-author { margin-top: 30px; padding-top: 30px; border-top: 1px solid #ccc; }
.blog-post .post-footer-author .author-image { position: relative; height: 130px; width: 130px; overflow: hidden; margin: 0 auto 30px; border-radius: 50%; }
.blog-post .post-footer-author .author-image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.blog-post .post-footer-author .author-details { text-align: center; }
.blog-post .post-footer-author .author-details .author-name { font-size: 18px; color: #333333; text-transform: 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: 18px; color: var(--body-text); line-height: 1.5; }
.blog-post-list .blog-post .post-featured .default svg { position: absolute; top: 50%; left: 50%; max-width: 70%; transform: translate(-50%, -50%); }
.blog-post-list .blog-post .post-featured .default #logo-text * { fill: #fff; }


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




/* ==========================================================================
  Pricing Page
============================================================================= */
#pricing { padding-bottom: 50px; }
#pricing table { width: 100%; }

/* Table Header */
#pricing thead {  }
#pricing thead th { background-color: #fff; font-size: 18px; font-weight: 400; color: var(--primary); padding: 30px 25px 15px; vertical-align: middle; font-family: var(--secondary-font); border-top-left-radius: 20px; border-top-right-radius: 20px; position: relative; }
#pricing thead th::before { content: ''; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: var(--box-shadow); position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
#pricing thead th p { margin: 0; }

/* Table Body */
#pricing tbody { background-color: #fff; border-top: 15px solid #fff; border-bottom: 15px solid #fff; box-shadow: var(--box-shadow); }
#pricing tbody td { padding: 12px 25px; font-size: 16px; font-weight: 300; height: 52px; vertical-align: middle; overflow: auto; }
#pricing tbody td i { font-size: 24px; margin-right: 10px; color: var(--secondary); vertical-align: middle; }

/* Buttons */
#pricing tbody .table-footer { }
#pricing tbody .table-footer td {  }
#pricing tbody .table-footer td .btn { min-width: 0; width: 100%; height: 51px; line-height: 51px; }



/* ==========================================================================
  #Services Page(s)
============================================================================= */
.intro { padding-top:85px; padding-bottom: 115px; overflow: hidden; }

.intro .box { text-align: center; border: 0; background: var(--gray); font-size: 18px; padding: 50px 2.5vw; }
.intro h3 { font-size: 20px; font-weight: 500; }
.intro__lead { color: var(--primary); }
.intro__sub { color: var(--primary); font-family: var(--secondary-font); font-size: 22px; line-height: 1.33; letter-spacing: 0.44px; text-transform: capitalize; }

#real-results, #why-choose {padding:40px 0px;}

.image-wrapper { position: relative; height: 0; width: 100%; padding-top: 42.39%; overflow: hidden; margin-bottom: 35px; }
.image-wrapper img { position: absolute; top: 0; left: 0; height: 100%; width: 100%; }

.form-cta { position: relative; font-family: var(--primary-font); font-size: 22px; margin-top: 40px; font-weight: 500; }
.form-cta p { line-height: 1.6!important; }
.form-cta__arrow { position: absolute; right: -60px; bottom: -10px; transform: scaleX(-1) rotate(120deg); transform-origin: left; z-index: 2; }
.form-cta__arrow svg { fill: var(--primary); max-width: 131px; height: 50px; }
@media (min-width: 992px){
	.form-cta__arrow { bottom: 0; transform: rotate(0deg); }
	.form-cta__arrow svg { max-width: 131px; }
	.intro .checks[class*='-flex'] li { margin-bottom: 0; }
}
@media (max-width: 991px){
	.form-cta { margin-bottom: 60px; }
}

/* AMP
============================================================================= */
.amp { text-align: center; padding-top: 5px; }
.amp a { color: inherit; }
.amp a:hover { color: var(--primary); }
.amp__lead { font-size: 42px; font-family: var(--primary-font); line-height: 1; margin-top: 15px; }
.amp__sub { font-size: 20px; line-height: 1.5; margin-top: 15px; }
.amp__form { max-width: 937px; min-height: 50px; margin: 0 auto; }
.amp__form .ion-form {display: flex;justify-content: center;align-items: center;gap: 16px;}
.amp__form .ion-form .ion-form-group { width:100%; max-width:100%; margin-bottom:0; }
.amp__form .ion-form label { display: none; }
.amp__form .ion-form input { width: 100%; height: 46px; padding: 0 23px!important; background: #fff; display: block; border-color: #000!important; }
.amp__form .ion-form input::-webkit-input-placeholder { color: var(--body-text); font-family: 'Archivo', sans-serif; font-weight: 400; }
.amp__form .ion-form button { height: 46px; max-width: 250px; border: 1px solid var(--secondary); background: var(--secondary); border-radius: 11px; white-space: nowrap; color: var(--dark) !important; font-family: var(--secondary-font); font-size: 20px; font-weight: 500; letter-spacing: 0.8px; line-height: 22px; text-transform: capitalize; transition: 0.4s; }
.amp__form .ion-form button:hover { background: var(--primary); color: var(--secondary) !important; border: 1px solid var(--primary); }
.amp__form .ion-form .ion-form-group input[type='text']  { border-radius: 0; }
.amp__form-btn-arrow .ion-form button { border: 1px solid var(--primary); background: var(--primary); border-radius: 50%; white-space: nowrap; font-weight: 500; color: #fff !important; height: 56px; width: 56px; font-size: 25px; display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; flex: 0 0 auto; }
.amp__form-btn-arrow .ion-form button:hover { background-color:var(--light) !important; border-color: var(--light); }
@media (min-width: 768px){
	.amp__form .ion-form .ion-form-group { max-width: 671px; }
}
@media (max-width: 767px){
	.amp__lead { font-size: 34px; }
	.amp__sub { font-size: 20px; }
	.amp__form .ion-form { flex-wrap: wrap; }
}


/* Cluster Content
============================================================================= */
:root { --subNavHeight: 40px; }
#hero { position: relative; padding-bottom: var(--subNavHeight); }

/* Sub Nav */
#sub-nav { position: absolute; bottom: 0; left: 0px; right: 0px; height: var(--subNavHeight); color: var(--primary); text-transform: capitalize; background-color: var(--secondary); }
#sub-nav .nav {height: 100%;}
#sub-nav .nav-item { display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; }
#sub-nav .nav-link { color: inherit; padding: 0 26.5px; font-weight: 500; border: 0!important; }
#sub-nav .nav-item:hover, #sub-nav .nav-item.active { background-color: #fff; -webkit-transition: background-color 0.3s; transition: background-color 0.3s; border: 0; }
#sub-nav.affix { position: fixed; line-height: 1; top: 50px; left: 0; right: 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: 501px) {
	#sub-nav .nav-link { font-size: 16px; }
}
@media (min-width:1200px) and (max-width:1699px) {
	#sub-nav { font-size: 15px; }
}
@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: var(--font-awesome); 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: var(--font-awesome); 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; display: block; }
	#sub-nav .nav-item.next .nav-link::after { content: 'Next'; font-size: 16px; display: block; }
	#sub-nav .nav-item.prev::before, #sub-nav .nav-item.next::after { display: none; }
	#sub-nav .nav-item.active, #sub-nav .nav-item.next:nth-child(2)::before  { display: none; }
}

/* PM Services */
#pm-services { padding: 100px 0 175px; }

/* Pm Discover */
#pm-discover .area-info { color: var(--body-text); background-color: #fff; border-radius: 30px; padding: min(4.5vw, 103px) min(6vw, 120px); }
@media (min-width: 1600px) {
	#pm-discover { padding: 219px 0; }
}

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

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


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

/* Guarantees
================================================== */
.guarantees { display: flex; flex-wrap: wrap; gap: 25px; justify-content: center; margin: 45px 0; }
.guarantees__item { flex: 0 1 min(33%, 330px); }
.guarantees__item p { margin: 0; }
.guarantees__title { color: var(--primary); font-family: var(--secondary-font); font-size: 25px; font-weight: bold; letter-spacing: -0.75px; text-align: center; text-transform: uppercase; display: flex; align-items: center; justify-content: center; flex-direction: column; margin: 0 auto 15px; height: 262px; width: 330px; background-image: url('/images/guarantee-badge.svg'); background-size: contain; }
.guarantees__title small { display: block; font-size: 16px; letter-spacing: .1em; padding-bottom: 20px; }
#pm-guarantees.bg-dark .guarantees__title { background-image: url('/images/guarantee-badge--white.svg'); }
@media(min-width:1550px){
	#pm-guarantees { padding: 146px 0; }
}

/* ==========================================================================
   Widget Color Overrides
============================================================================= */


/* Review Widget */
.r4e-widget .review { margin: 20px 0px; }
.r4e-widget .stars-container i { color:gold; }
.r4e-widget .summary, .r4e-widget .icon { display: inline-block; padding: 5px; }
.r4e-widget .comment { font-style: italic; }
.r4e-widget .rating, .r4e-widget .date, .r4e-widget .info { display: inline-block; }

/* Listing */
#rentals {padding-top:70px !important;}
.nhw-details__form-container .btn-list .btn { width: 270px; }
.nhw-header h1 { font-weight: 600; }

@media (min-width: 1451px) {
	.nhw-header .display-1 { width: auto!important; }
	.nhw-header { padding-top: 0!important; text-align: left!important; }
}

@media (min-width: 992px){
	.nhw-header h1 { font-size: 50px; }
}

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

/* Padding Relative to Screen Width on containers */
/* Math: (2000px (design width) - 1000px (content width) / 2 (sides)) / 2000px (design width) * 100 = VW */

@media (min-width:2001px) {
	[class*='pw-'] { --width: 1000px; width: var(--width); max-width: 100%; margin-left: auto; margin-right: auto; }
	.pw-1000 { --width: 1000px; }
	.pw-1400 { --width: 1400px; }
	.pw-1500 { --width: 1500px; }
	.pw-1600 { --width: 1600px; }
	.pw-1700 { --width: 1700px; }
	.pw-1800 { --width: 1800px; }
}
@media (min-width: 992px) and (max-width:2000px) {
	[class*='pw-'] { --max-vw: 5vw; padding-left: max(var(--max-vw), 15px); padding-right: max(var(--max-vw), 15px); }
	.pw-1000 { --max-vw: 25vw; }
	.pw-1400 { --max-vw: 16vw; }
	.pw-1500 { --max-vw: 12.5vw; }
	.pw-1600 { --max-vw: 10vw; }
	.pw-1700 { --max-vw: 8vw; }
	.pw-1800 { --max-vw: 5vw; }
}
@media (min-width: 992px) and (max-width:1100px) {
	[class*='pw-'] { --max-vw: 2.5vw; }
}

/* Responsive Padding */
.px-5vw { padding-right: 5vw!important; padding-left: 5vw!important; }
.px-6vw { padding-right: 6vw!important; padding-left: 6vw!important; }
.px-7vw { padding-right: 7vw!important; padding-left: 7vw!important; }
.px-8vw { padding-right: 8vw!important; padding-left: 8vw!important; }
.px-9vw { padding-right: 9vw!important; padding-left: 9vw!important; }
.ps-5vw { padding-left: 5vw!important; }
.ps-6vw { padding-left: 6vw!important; }
.ps-7vw { padding-left: 7vw!important; }
.ps-8vw { padding-left: 8vw!important; }
.ps-9vw { padding-left: 9vw!important; }
.pe-5vw { padding-right: 5vw!important; }
.pe-6vw { padding-right: 6vw!important; }
.pe-7vw { padding-right: 7vw!important; }
.pe-8vw { padding-right: 8vw!important; }
.pe-9vw { padding-right: 9vw!important; }

/* BS5 Gutter Extensions */
.g-6, .gx-6 { --bs-gutter-x: 6rem; }
.g-6, .gy-6 { --bs-gutter-y: 6rem; }
.g-7, .gx-7 { --bs-gutter-x: 9rem; }
.g-7, .gy-7 { --bs-gutter-y: 9rem; }

/* BS5 Padding Extensions */
.p-6 { padding: 6rem !important; }
.p-7 { padding: 9rem !important; }
.px-6 { padding-right: 6rem !important; padding-left: 6rem !important; }
.px-7 { padding-right: 9rem !important; padding-left: 9rem !important; }
.py-6 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.py-7 { padding-top: 9rem !important; padding-bottom: 9rem !important; }
.pt-6 { padding-top: 6rem !important; }
.pt-7 { padding-top: 9rem !important; }
.pe-6 { padding-right: 6rem !important; }
.pe-7 { padding-right: 9rem !important; }
.pb-6 { padding-bottom: 6rem !important; }
.pb-7 { padding-bottom: 9rem !important; }
.ps-6 { padding-left: 6rem !important; }
.ps-7 { padding-left: 9rem !important; }

/* BS5 Margin Extensions */
.m-6 { margin: 6rem !important; }
.m-7 { margin: 9rem !important; }
.mx-6 { margin-right: 6rem !important; margin-left: 6rem !important; }
.mx-7 { margin-right: 9rem !important; margin-left: 9rem !important; }
.my-6 { margin-top: 6rem !important; margin-bottom: 6rem !important; }
.my-7 { margin-top: 9rem !important; margin-bottom: 9rem !important; }
.mt-6 { margin-top: 6rem !important; }
.mt-7 { margin-top: 9rem !important; }
.me-6 { margin-right: 6rem !important; }
.me-7 { margin-right: 9rem !important; }
.mb-6 { margin-bottom: 6rem !important; }
.mb-7 { margin-bottom: 9rem !important; }
.ms-6 { margin-left: 6rem !important; }
.ms-7 { margin-left: 9rem !important; }

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	/* Gutters */
  .g-sm-6, .gx-sm-6 { --bs-gutter-x: 6rem; }
  .g-sm-6, .gy-sm-6 { --bs-gutter-y: 6rem; }
  .g-sm-7, .gx-sm-7 { --bs-gutter-x: 9rem; }
  .g-sm-7, .gy-sm-7 { --bs-gutter-y: 9rem; }
	/* Padding */
  .p-sm-6 { padding: 6rem !important; }
  .p-sm-7 { padding: 9rem !important; }
  .px-sm-6 { padding-right: 6rem !important; padding-left: 6rem !important; }
  .px-sm-7 { padding-right: 9rem !important; padding-left: 9rem !important; }
  .py-sm-6 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
  .py-sm-7 { padding-top: 9rem !important; padding-bottom: 9rem !important; }
  .pt-sm-6 { padding-top: 6rem !important; }
  .pt-sm-7 { padding-top: 9rem !important; }
  .pe-sm-6 { padding-right: 6rem !important; }
  .pe-sm-7 { padding-right: 9rem !important; }
  .pb-sm-6 { padding-bottom: 6rem !important; }
  .pb-sm-7 { padding-bottom: 9rem !important; }
  .ps-sm-6 { padding-left: 6rem !important; }
  .ps-sm-7 { padding-left: 9rem !important; }
	/* Margin */
  .m-sm-6 { margin: 6rem !important; }
  .m-sm-7 { margin: 9rem !important; }
  .mx-sm-6 { margin-right: 6rem !important; margin-left: 6rem !important; }
  .mx-sm-7 { margin-right: 9rem !important; margin-left: 9rem !important; }
  .my-sm-6 { margin-top: 6rem !important; margin-bottom: 6rem !important; }
  .my-sm-7 { margin-top: 9rem !important; margin-bottom: 9rem !important; }
  .mt-sm-6 { margin-top: 6rem !important; }
  .mt-sm-7 { margin-top: 9rem !important; }
  .me-sm-6 { margin-right: 6rem !important; }
  .me-sm-7 { margin-right: 9rem !important; }
  .mb-sm-6 { margin-bottom: 6rem !important; }
  .mb-sm-7 { margin-bottom: 9rem !important; }
  .ms-sm-6 { margin-left: 6rem !important; }
  .ms-sm-7 { margin-left: 9rem !important; }
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	/* Gutters */
  .g-md-6, .gx-md-6 { --bs-gutter-x: 6rem; }
  .g-md-6, .gy-md-6 { --bs-gutter-y: 6rem; }
  .g-md-7, .gx-md-7 { --bs-gutter-x: 9rem; }
  .g-md-7, .gy-md-7 { --bs-gutter-y: 9rem; }
	/* Padding */
  .p-md-6 { padding: 6rem !important; }
  .p-md-7 { padding: 9rem !important; }
  .px-md-6 { padding-right: 6rem !important; padding-left: 6rem !important; }
  .px-md-7 { padding-right: 9rem !important; padding-left: 9rem !important; }
  .py-md-6 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
  .py-md-7 { padding-top: 9rem !important; padding-bottom: 9rem !important; }
  .pt-md-6 { padding-top: 6rem !important; }
  .pt-md-7 { padding-top: 9rem !important; }
  .pe-md-6 { padding-right: 6rem !important; }
  .pe-md-7 { padding-right: 9rem !important; }
  .pb-md-6 { padding-bottom: 6rem !important; }
  .pb-md-7 { padding-bottom: 9rem !important; }
  .ps-md-6 { padding-left: 6rem !important; }
  .ps-md-7 { padding-left: 9rem !important; }
	/* Margin */
  .m-md-6 { margin: 6rem !important; }
  .m-md-7 { margin: 9rem !important; }
  .mx-md-6 { margin-right: 6rem !important; margin-left: 6rem !important; }
  .mx-md-7 { margin-right: 9rem !important; margin-left: 9rem !important; }
  .my-md-6 { margin-top: 6rem !important; margin-bottom: 6rem !important; }
  .my-md-7 { margin-top: 9rem !important; margin-bottom: 9rem !important; }
  .mt-md-6 { margin-top: 6rem !important; }
  .mt-md-7 { margin-top: 9rem !important; }
  .me-md-6 { margin-right: 6rem !important; }
  .me-md-7 { margin-right: 9rem !important; }
  .mb-md-6 { margin-bottom: 6rem !important; }
  .mb-md-7 { margin-bottom: 9rem !important; }
  .ms-md-6 { margin-left: 6rem !important; }
  .ms-md-7 { margin-left: 9rem !important; }
	/* Responsive Padding */
  .px-md-5vw { padding-right: 5vw!important; padding-left: 5vw!important; }
  .px-md-6vw { padding-right: 6vw!important; padding-left: 6vw!important; }
  .px-md-7vw { padding-right: 7vw!important; padding-left: 7vw!important; }
  .px-md-8vw { padding-right: 8vw!important; padding-left: 8vw!important; }
  .px-md-9vw { padding-right: 9vw!important; padding-left: 9vw!important; }
  .ps-md-5vw { padding-left: 5vw!important; }
  .ps-md-6vw { padding-left: 6vw!important; }
  .ps-md-7vw { padding-left: 7vw!important; }
  .ps-md-8vw { padding-left: 8vw!important; }
  .ps-md-9vw { padding-left: 9vw!important; }
  .pe-md-5vw { padding-right: 5vw!important; }
  .pe-md-6vw { padding-right: 6vw!important; }
  .pe-md-7vw { padding-right: 7vw!important; }
  .pe-md-8vw { padding-right: 8vw!important; }
  .pe-md-9vw { padding-right: 9vw!important; }
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	/* Gutters */
  .g-lg-6, .gx-lg-6 { --bs-gutter-x: 6rem; }
  .g-lg-6, .gy-lg-6 { --bs-gutter-y: 6rem; }
  .g-lg-7, .gx-lg-7 { --bs-gutter-x: 9rem; }
  .g-lg-7, .gy-lg-7 { --bs-gutter-y: 9rem; }
	/* Padding */
  .p-lg-6 { padding: 6rem !important; }
  .p-lg-7 { padding: 9rem !important; }
  .px-lg-6 { padding-right: 6rem !important; padding-left: 6rem !important; }
  .px-lg-7 { padding-right: 9rem !important; padding-left: 9rem !important; }
  .py-lg-6 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
  .py-lg-7 { padding-top: 9rem !important; padding-bottom: 9rem !important; }
  .pt-lg-6 { padding-top: 6rem !important; }
  .pt-lg-7 { padding-top: 9rem !important; }
  .pe-lg-6 { padding-right: 6rem !important; }
  .pe-lg-7 { padding-right: 9rem !important; }
  .pb-lg-6 { padding-bottom: 6rem !important; }
  .pb-lg-7 { padding-bottom: 9rem !important; }
  .ps-lg-6 { padding-left: 6rem !important; }
  .ps-lg-7 { padding-left: 9rem !important; }
	/* Margin */
  .m-lg-6 { margin: 6rem !important; }
  .m-lg-7 { margin: 9rem !important; }
  .mx-lg-6 { margin-right: 6rem !important; margin-left: 6rem !important; }
  .mx-lg-7 { margin-right: 9rem !important; margin-left: 9rem !important; }
  .my-lg-6 { margin-top: 6rem !important; margin-bottom: 6rem !important; }
  .my-lg-7 { margin-top: 9rem !important; margin-bottom: 9rem !important; }
  .mt-lg-6 { margin-top: 6rem !important; }
  .mt-lg-7 { margin-top: 9rem !important; }
  .me-lg-6 { margin-right: 6rem !important; }
  .me-lg-7 { margin-right: 9rem !important; }
  .mb-lg-6 { margin-bottom: 6rem !important; }
  .mb-lg-7 { margin-bottom: 9rem !important; }
  .ms-lg-6 { margin-left: 6rem !important; }
  .ms-lg-7 { margin-left: 9rem !important; }
	/* Responsive Padding */
  .px-lg-5vw { padding-right: 5vw!important; padding-left: 5vw!important; }
  .px-lg-6vw { padding-right: 6vw!important; padding-left: 6vw!important; }
  .px-lg-7vw { padding-right: 7vw!important; padding-left: 7vw!important; }
  .px-lg-8vw { padding-right: 8vw!important; padding-left: 8vw!important; }
  .px-lg-9vw { padding-right: 9vw!important; padding-left: 9vw!important; }
  .ps-lg-5vw { padding-left: 5vw!important; }
  .ps-lg-6vw { padding-left: 6vw!important; }
  .ps-lg-7vw { padding-left: 7vw!important; }
  .ps-lg-8vw { padding-left: 8vw!important; }
  .ps-lg-9vw { padding-left: 9vw!important; }
  .pe-lg-5vw { padding-right: 5vw!important; }
  .pe-lg-6vw { padding-right: 6vw!important; }
  .pe-lg-7vw { padding-right: 7vw!important; }
  .pe-lg-8vw { padding-right: 8vw!important; }
  .pe-lg-9vw { padding-right: 9vw!important; }
}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	/* Gutters */
  .g-xl-6, .gx-xl-6 { --bs-gutter-x: 6rem; }
  .g-xl-6, .gy-xl-6 { --bs-gutter-y: 6rem; }
  .g-xl-7, .gx-xl-7 { --bs-gutter-x: 9rem; }
  .g-xl-7, .gy-xl-7 { --bs-gutter-y: 9rem; }
	/* Padding */
  .p-xl-6 { padding: 6rem !important; }
  .p-xl-7 { padding: 9rem !important; }
  .px-xl-6 { padding-right: 6rem !important; padding-left: 6rem !important; }
  .px-xl-7 { padding-right: 9rem !important; padding-left: 9rem !important; }
  .py-xl-6 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
  .py-xl-7 { padding-top: 9rem !important; padding-bottom: 9rem !important; }
  .pt-xl-6 { padding-top: 6rem !important; }
  .pt-xl-7 { padding-top: 9rem !important; }
  .pe-xl-6 { padding-right: 6rem !important; }
  .pe-xl-7 { padding-right: 9rem !important; }
  .pb-xl-6 { padding-bottom: 6rem !important; }
  .pb-xl-7 { padding-bottom: 9rem !important; }
  .ps-xl-6 { padding-left: 6rem !important; }
  .ps-xl-7 { padding-left: 9rem !important; }
	/* Margin */
  .m-xl-6 { margin: 6rem !important; }
  .m-xl-7 { margin: 9rem !important; }
  .mx-xl-6 { margin-right: 6rem !important; margin-left: 6rem !important; }
  .mx-xl-7 { margin-right: 9rem !important; margin-left: 9rem !important; }
  .my-xl-6 { margin-top: 6rem !important; margin-bottom: 6rem !important; }
  .my-xl-7 { margin-top: 9rem !important; margin-bottom: 9rem !important; }
  .mt-xl-6 { margin-top: 6rem !important; }
  .mt-xl-7 { margin-top: 9rem !important; }
  .me-xl-6 { margin-right: 6rem !important; }
  .me-xl-7 { margin-right: 9rem !important; }
  .mb-xl-6 { margin-bottom: 6rem !important; }
  .mb-xl-7 { margin-bottom: 9rem !important; }
  .ms-xl-6 { margin-left: 6rem !important; }
  .ms-xl-7 { margin-left: 9rem !important; }
	/* Responsive Padding */
  .px-xl-5vw { padding-right: 5vw!important; padding-left: 5vw!important; }
  .px-xl-6vw { padding-right: 6vw!important; padding-left: 6vw!important; }
  .px-xl-7vw { padding-right: 7vw!important; padding-left: 7vw!important; }
  .px-xl-8vw { padding-right: 8vw!important; padding-left: 8vw!important; }
  .px-xl-9vw { padding-right: 9vw!important; padding-left: 9vw!important; }
  .ps-xl-5vw { padding-left: 5vw!important; }
  .ps-xl-6vw { padding-left: 6vw!important; }
  .ps-xl-7vw { padding-left: 7vw!important; }
  .ps-xl-8vw { padding-left: 8vw!important; }
  .ps-xl-9vw { padding-left: 9vw!important; }
  .pe-xl-5vw { padding-right: 5vw!important; }
  .pe-xl-6vw { padding-right: 6vw!important; }
  .pe-xl-7vw { padding-right: 7vw!important; }
  .pe-xl-8vw { padding-right: 8vw!important; }
  .pe-xl-9vw { padding-right: 9vw!important; }
}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
	/* Gutters */
  .g-xxl-6, .gx-xxl-6 { --bs-gutter-x: 6rem; }
  .g-xxl-6, .gy-xxl-6 { --bs-gutter-y: 6rem; }
  .g-xxl-7, .gx-xxl-7 { --bs-gutter-x: 9rem; }
  .g-xxl-7, .gy-xxl-7 { --bs-gutter-y: 9rem; }
	/* Padding */
  .p-xxl-6 { padding: 6rem !important; }
  .p-xxl-7 { padding: 9rem !important; }
  .px-xxl-6 { padding-right: 6rem !important; padding-left: 6rem !important; }
  .px-xxl-7 { padding-right: 9rem !important; padding-left: 9rem !important; }
  .py-xxl-6 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
  .py-xxl-7 { padding-top: 9rem !important; padding-bottom: 9rem !important; }
  .pt-xxl-6 { padding-top: 6rem !important; }
  .pt-xxl-7 { padding-top: 9rem !important; }
  .pe-xxl-6 { padding-right: 6rem !important; }
  .pe-xxl-7 { padding-right: 9rem !important; }
  .pb-xxl-6 { padding-bottom: 6rem !important; }
  .pb-xxl-7 { padding-bottom: 9rem !important; }
  .ps-xxl-6 { padding-left: 6rem !important; }
  .ps-xxl-7 { padding-left: 9rem !important; }
	/* Margin */
  .m-xxl-6 { margin: 6rem !important; }
  .m-xxl-7 { margin: 9rem !important; }
  .mx-xxl-6 { margin-right: 6rem !important; margin-left: 6rem !important; }
  .mx-xxl-7 { margin-right: 9rem !important; margin-left: 9rem !important; }
  .my-xxl-6 { margin-top: 6rem !important; margin-bottom: 6rem !important; }
  .my-xxl-7 { margin-top: 9rem !important; margin-bottom: 9rem !important; }
  .mt-xxl-6 { margin-top: 6rem !important; }
  .mt-xxl-7 { margin-top: 9rem !important; }
  .me-xxl-6 { margin-right: 6rem !important; }
  .me-xxl-7 { margin-right: 9rem !important; }
  .mb-xxl-6 { margin-bottom: 6rem !important; }
  .mb-xxl-7 { margin-bottom: 9rem !important; }
  .ms-xxl-6 { margin-left: 6rem !important; }
  .ms-xxl-7 { margin-left: 9rem !important; }
	/* Responsive Padding */
  .px-xxl-5vw { padding-right: 5vw!important; padding-left: 5vw!important; }
  .px-xxl-6vw { padding-right: 6vw!important; padding-left: 6vw!important; }
  .px-xxl-7vw { padding-right: 7vw!important; padding-left: 7vw!important; }
  .px-xxl-8vw { padding-right: 8vw!important; padding-left: 8vw!important; }
  .px-xxl-9vw { padding-right: 9vw!important; padding-left: 9vw!important; }
  .ps-xxl-5vw { padding-left: 5vw!important; }
  .ps-xxl-6vw { padding-left: 6vw!important; }
  .ps-xxl-7vw { padding-left: 7vw!important; }
  .ps-xxl-8vw { padding-left: 8vw!important; }
  .ps-xxl-9vw { padding-left: 9vw!important; }
  .pe-xxl-5vw { padding-right: 5vw!important; }
  .pe-xxl-6vw { padding-right: 6vw!important; }
  .pe-xxl-7vw { padding-right: 7vw!important; }
  .pe-xxl-8vw { padding-right: 8vw!important; }
  .pe-xxl-9vw { padding-right: 9vw!important; }
}
