@page { size:8.5in 11in;}
/*font options: regular: proxima-nova fira-sans condensed: oswald anton*/

/*BASE CSS*/
.animated { animation-duration: var(--animate-duration); animation-fill-mode: both; }
.animated.infinite { animation-iteration-count: infinite; }
.animated.repeat-1 { animation-iteration-count: var(--animate-repeat); }
.animated.repeat-2 { animation-iteration-count: calc(var(--animate-repeat) * 2); }
.animated.repeat-3 { animation-iteration-count: calc(var(--animate-repeat) * 3); }
.animated.delay-1s { animation-delay: var(--animate-delay); }
.animated.delay-2s { animation-delay: calc(var(--animate-delay) * 2); }
.animated.delay-3s { animation-delay: calc(var(--animate-delay) * 3); }
.animated.delay-4s { animation-delay: calc(var(--animate-delay) * 4); }
.animated.delay-5s { animation-delay: calc(var(--animate-delay) * 5); }
.animated.faster { animation-duration: calc(var(--animate-duration) / 2);
}
.animated.fast { animation-duration: calc(var(--animate-duration) * 0.8); }
.animated.slow { animation-duration: calc(var(--animate-duration) * 2); }
.animated.slower { animation-duration: calc(var(--animate-duration) * 3); }
@media print, (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .animated[class*='Out'] {
    opacity: 0;
  }
}
/*VARS CSS*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
/*FADEINUP CSS*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp { animation-name: fadeInUp; }
/*HOVER CSS*/

/*BOOTSTRAP OVERRIDES*/
body { font-family: "proxima-nova", "fira-sans", -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; }
.container { max-width:1200px !important; }
strong, .font-weight-bold, .fw-bold { font-weight:600 !important; }
a:hover, a:focus { text-decoration:underline; }
tbody tr, tbody td, thead tr, thead td { height:unset !important; }
.row, .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 { margin:0; padding:0; }
.lh-lg { line-height:1.8 !important; }

.text-primary, .text-primary * { color:#14518F !important } /**BLUE 20,81,143**/
.text-secondary, .text-secondary * { color:#187BA5 !important } /**LT BLUE 24,123,165**/
.text-success { color:#7F9C3A !important; } /**GREEN 127,156,58**/
.text-warning { color:#C77F0A !important; } /**YELLOW 199,127,10**/
.text-dark { color:#3a3a3a !important; }
.text-white, .text-white * { color:#fff !important; }
.text-larger { font-size:1.1rem; }
.text-shadow { text-shadow:0 0 8px rgba(0,0,0,.5); }

.bg-primary { background:#14518F !important; }
.bg-secondary { background:#187BA5 !important; }
.bg-info { background:#06778E !important; }
.bg-success { background:#198754 !important; }
.bg-warning { background:#F69220 !important; } /*was ffc107*/
.bg-danger { background:#dc3545 !important; }
.bg-muted { background:#DBDBDB !important; }
.bg-light { background:#EDEDED !important; }
.bg-white { background:#fff !important; }
.bg-dark { background:rgba(0,0,0) !important; }
.bg-grey { background-color:#737373; }
.bg-light-faded { background:rgba(255,255,255,.8); }
.bg-dark-faded { background:rgba(0,0,0,.8); }
.bg-muted.lighter { background:#E8E8E8 !important; }
.bg-orange { background:#AB5F07; }
.bg-white-gradient {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,1+75,0+100 */
background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 75%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.border-primary { border-color:#14518F !important; }
.border-secondary { border-color:#187BA5 !important; }
.border-success { border-color:#198754 !important; }
.border-info { border-color:#06778E !important; }
.border-warning { border-color:#f59220 !important; }
.border-danger { border-color:#dc3545 !important; }
.border-light { border-color:#ccc !important; }
.border-muted { border-color:#d1d1d1 !important; }

.container { max-width:1300px !important; }
.container.xl-wrapper { max-width:1332px !important; }

body { font-family: "proxima-nova", "fira-sans", sans-serif; }

h1, h2, h3, .h1, .h2, .h3 { font-family: "oswald", sans-serif; color: #14518f; }
h4, h5, h6, .h4, .h5, .h6 { font-family: "proxima-nova", sans-serif; }
.h1, h1 { font-size: 2rem; }
.h2, h2 { font-size: 1.75rem; }
.h3, h3 { font-size: 1.5rem; }
.h4, h4 { font-size: 1.25rem; }
.h5, h5 { font-size: 1.1rem; }
.h6, h6 { font-size: 1rem; }

p, li { font-size: 1.125rem; font-weight: 300; }
#emergency-message-wrapper p:last-of-type { margin-bottom:0px; }

blockquote { background:#faf9f7; padding:15px 30px; margin:10px 0px; border-radius:10px; font-style:italic; color:#686868; font-weight:500; }
blockquote, blockquote p { font-size:1.25rem; }
blockquote p:last-of-type { margin-bottom:0px; }
.text-white .leaflet-container * { color:#000 !important; }
.leaflet-popup-content p { font-size: 1rem; }
.text-white blockquote { background:#187EAA; }

a { color:#0051A8; }
a#admin_button { display:inline-block; font-size:12px; padding:5px 10px; border-radius:8px; background:#a7a7a7; color:#fff !important; text-decoration:none !important; position:absolute; top:-30px; left:13px; opacity:0.3; }
a#admin_button:hover { opacity:1; }
a.no-line, button.no-line, .no-line a, a.btn { text-decoration:none; }
a.no-line:hover, a.no-line:focus, button.no-line:hover, button.no-line:focus, .no-line a:hover, .no-line a:focus { text-decoration:underline; }
a.button { display:inline-block; padding:10px 15px 10px 15px; line-height:1; background:#064a76 !important; color:#fff !important; border:#064a76 solid 1px; text-decoration:none !important; border-radius:12px; font-weight:600; text-transform:uppercase; text-decoration:none !important; }
a.button:hover, a.button:focus { background:#fff !important; color:#064a76 !important; text-decoration:none !important; }

/*
.text-white a.button { background:#f59220 !important; color:#000 !important; border:#f59220 solid 1px; }
.text-white a.button:hover, .text-white a.button:focus { background:#ffb560 !important; color:#000 !important; text-decoration:none !important; }
*/
.text-white a.button, a.button.warning { background:#AC6206 !important; color:#fff !important; border:#AC6206 solid 1px; }
.text-white a.button:hover, .text-white a.button:focus, a.button.warning:hover, a.button.warning:focus { background:#f59220 !important; color:#fff !important; text-decoration:none !important; }
.text-white .nav-tabs .nav-link.active, .text-white .nav-pills .nav-link.active { color:#14518F !important; }
.text-white .nav-pills .nav-link.active, .nav-pills .show > .nav-link { background-color: #fff; }

a.button.info { background:#187EAA !important; color:#fff !important; border:#187EAA solid 1px; }
a.button.info:hover, a.button.info:focus { background:#073140 !important; color:#fff !important; text-decoration:none !important; }


/*BUTTONS*/
.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #f59220;
  --bs-btn-border-color: #f59220;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffb560;
  --bs-btn-hover-border-color: #ffb560;
  --bs-btn-focus-shadow-rgb: 217,164,6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffb560;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

#skip-button { position:absolute; top:0px; left:0px; z-index:999; }
#skip-button a { position:relative; height:1px; width:1px; overflow:hidden; display:inline-block; font:normal 18px/1 'fira-sans', sans-serif; color:#494949;  border-radius:10px; transition:left 0.5s ease; color:#000; }
#skip-button a:focus { margin-top:30px; margin-left:30px; text-decoration:none; display:inline-block; height:auto; width:auto; background:#fff; padding:10px 20px; border:#494949; }
.err-wrap { display:none !important; }
.photo-left { float:left; margin:6px 25px 25px 0px; }
.photo-right { float:right; margin:6px 0px 25px 25px; }
.clear { clear:both; }
.hide { display:none; }
.top-0 { top:0; }
.right-0 { right:0; }
.bottom-0 { bottom:0; }
.left-0 { left:0; }
.z-index-1 { z-index:1; }
.z-index-2 { z-index:2; }
.z-index-3 { z-index:3; }
.fill-area { position:absolute; top:0; right:0; bottom:0; left:0; }
.negative-edges { margin-left:-2px !important; margin-right:-2px !important; }
.w-max-50 { max-width:50% !important; }
.semitransparent { opacity:.5; }
.semitransparent2 { opacity:.2; }
.semitransparent3 { opacity:.8; }
.grayscale { filter:grayscale(1); }
.box-shadow { box-shadow:0px 0px 15px rgba(0,0,0,.3); }
.tilted { transform: rotate(-0.04turn); }
.font-condensed { font-family: "oswald", sans-serif; }
.negative-bottom { bottom:-20px; }
.image-fill { width:100%; height:100% !important; object-fit:cover; object-position:center; }
.image-fit { width:100%; height:100% !important; object-fit:contain; object-position:center; }

/*SEARCH FORM MODAL*/
.bg-search-bar { background:#fff; }
input.button { display:inline-block; line-height:1; padding:8px 16px; background:#587E5D !important; color:#fff !important; border:#587E5D; solid 1px;  }
input.button:hover, input.button:focus { background:#fff !important; color:#587E5D !important; text-decoration:none !important; }
input.button.large { font:bold 1.375rem/1 "fira-sans",sans-serif; padding:8px 40px; position:relative; margin:2px 0px; }
input.button.large:after { content: "\f061"; display:inline-block; padding-left:15px; position:relative; font:900 2.0rem/1 "Font Awesome 6 Pro"; bottom:-3px; color:#67050b; }
input.stylized { -webkit-appearance: none; -moz-appearance: none; appearance: none; border-radius: 50%; width: 18px; height: 18px; border: 2px solid #fff; transition: 0.2s all linear; margin-right: 5px;  position: relative; top: 4px; background:#999; }
input.stylized:checked { background: #587E5D; }

/*.btn { min-height: 44px; }*/
.bg-brandBlue { background-color: #14518f; }
.btn-primary { background-color: #14518f !important; border-color: #14518f; }
.btn-secondary { background-color: #ffffff; border-color: #ffffff; color: #14518f; }
.btn-secondary:hover, .btn-secondary:focus { background-color: #1a6abc !important; cursor: pointer !important; border: 1px solid white !important; }

.bg-opacity-85 { --bs-bg-opacity: 0.85; }
.btn-primary:hover, .btn-primary:focus { background-color: #1a6abc !important; cursor: pointer !important; }

.subHeader { background-color: #14518f; font-weight: 300; font-size: 1rem; }
.subHeader a { color: white; }

.socialIcons { font-size: 1.5rem; }
. i:hover, .socialIcons i:focus { color: #f69220 !important; cursor: pointer; }
.socialIcons svg { height:27px; width:auto; fill:#fff; transition:.3s ease; }
.socialIcons a:hover svg, .socialIcons a:focus svg { fill:#f69220; }

/*HOME PAGE*/
#video-bkg-wrapper video {  width: 100vw !important; height: auto   !important; }

.hero { border: 2px solid #14518f; border-width: 2px 0 2px 0; /*min-height: 500px; background-image: url("/images/interface/heroBG.jpg"); background-position: center; background-size: cover; background-repeat: no-repeat;*/ }
.secondaryLayout .hero { min-height: 350px; }
.hero-header-content { background: rgb(2, 0, 36); background: linear-gradient( 90deg, rgba(2, 0, 36, 0) 0%, rgba(0, 0, 0, 0.5004595588235294) 50%, rgba(0, 0, 0, 1) 100% ); }
.hero .accent { background-image: url("/images/interface/heroAccent.png"); background-repeat: no-repeat; background-size: 100%; height: 21px; width: 400px; }
.hero .accent.top { left: -20%; transform: rotate(180deg); }
.hero .accent.bottom { right: -20%; }

.strategicLocation { min-height: 500px; border-bottom: 2px solid #14518f; background-repeat: no-repeat; background-size: auto; background-position: right; }

.videoCarousel .slick-slide { margin: 0; }
.videoCarousel .slick-list { margin: 0; }
.videoTestimonials .videoCarousel .slick-slide { margin: 0; }
.videoTestimonials .videoCarousel .slick-list { margin: 0; }
.videoTestimonials .videoCarousel .slick-slide[data-slick-index="0"] { background-image: url("/images/interface/ScottFry.jpg"); }
.videoTestimonials .videoCarousel .slick-slide[data-slick-index="1"] { background-image: url("/images/interface/DanSullivan.jpg"); background-repeat: no-repeat; background-size: cover; background-position: unset !important; }
.videoTestimonials .videoCarousel .slick-slide[data-slick-index="2"] { background-image: url("/images/interface/DianeKelley.jpg"); }
.videoTestimonials .videoCarousel .slick-slide[data-slick-index="3"] { background-image: url("/images/interface/ScottFry.jpg"); }
.videoTestimonials .videoCarousel .slick-slide { background-repeat: no-repeat; background-size: cover; background-position: center; position: relative; }
.videoTestimonials .videoCarousel .slick-slide::before { content: ""; position: absolute; top: 1rem; left: 1rem; }
.video-logo { left: 1.5rem; top: 1.5rem; }
.videoCarousel .slick-prev { left: 2rem; z-index: 999; height:unset; width:unset; }
.videoCarousel .slick-next { right: 2rem; height:unset; width:unset; }

.testimonial-link-spacer { height: 333px !important; }
.testimonial-link-wrapper a { text-decoration: none; }
.testimonial-link-wrapper a > div.row { min-height: 115px; position: relative; /*border-color: #1a6abc; border-width: 1px 0 1px 1px; border-style: solid;*/ }
.testimonial-link-wrapper h3 { font-size: 1.375rem; }

/*
.video { min-height: 450px !important; }
.video a { text-decoration: none; }
.video a > div { height: 115px; position: relative; border-color: #1a6abc; border-width: 1px 0 1px 1px; border-style: solid; }
.video h3 { font-size: 1.375rem; }
*/

.keyIndustryCarousel { padding: 0 4rem; }
.keyIndustryCarousel .slick-dots { left: 0; }
.keyIndustryItem { margin: 1rem; }
.keyIndustryItem img { width: 100%; }
.keyIndustryCarousel .slick-prev { height: 44px; width: 44px; left: 2rem; z-index: 999; }
.keyIndustryCarousel .slick-next { height: 44px; width: 44px; right: 2rem; z-index: 999; }
.keyIndustryCarousel .slick-prev::before,
.keyIndustryCarousel .slick-next::before,
.videoCarousel .slick-prev::before,
.videoCarousel .slick-next::before { z-index: 999; height: 44px; width: 44px; display: inline-block; content: "" !important; background-repeat: no-repeat; background-size: 100%; }
.keyIndustryCarousel .slick-prev::before,
.videoCarousel .slick-prev::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2314518f' class='bi bi-arrow-left-circle' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-4.5-.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5z'/%3E%3C/svg%3E"); }
.keyIndustryCarousel .slick-next::before,
.videoCarousel .slick-next::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2314518f' class='bi bi-arrow-right-circle' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/%3E%3C/svg%3E"); }
.videoCarousel .slick-prev::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-arrow-left-circle' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-4.5-.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5z'/%3E%3C/svg%3E"); }
.videoCarousel .slick-next::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-arrow-right-circle' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/%3E%3C/svg%3E"); }

.keyIndustryCarousel .slick-track { display: flex !important; align-items: center; }
.keyIndustryCarousel .slick-dots li button::before { font-size: 0.875rem; }
.keyIndustryCarousel .slick-dots li.slick-active button:before { color: #23a8e0; }
.keyIndustryCarousel .slick-dots li button:focus:before,
.keyIndustryCarousel .slick-dots li button:hover:before { opacity: 1; color: #23a8e0; }

.megasite { min-height: 500px; background-repeat: no-repeat; background-size: cover; background-position: center; background-attachment: fixed; }

.keyIndustries { border-style: solid; border-color: #f69220; border-width: 3px 0 3px 0; }

.compAdvantages { background-image: url("/images/interface/compAdvantageBG.jpg"); background-color:#000; background-repeat: no-repeat; background-size: cover; background-position: center; background-attachment: fixed; }
.compAdvantageItem { opacity: 0; }
.compAdvantages::before { content: ""; background-color: rgba(20, 81, 143, 0.95); width: 100%; height: 100%; position: absolute; z-index: 0; }
.compAdvantageHeading { font-size: 50px; }
.qualOfLife-content { min-height: 500px; background-repeat: no-repeat; background-size: 70%; background-position: left; }
.airport-content { min-height: 500px; background-repeat: no-repeat; background-size: 70%; background-position: right; }
.announcements { /*background-color: #14518f;*/ background-color:#187EAA; }
.announcementImg { border: 1px solid rgba(255, 255, 255, 0.75); width: 100%; height: 200px; object-fit: cover; object-position: bottom; }
.announcementItems h4 { font-size: 1.25rem; font-weight: 400; }

/*CAROUSEL PAGERS*/
.carousel-indicators { bottom:-50px; }
.carousel-indicators [data-bs-target] { height:15px; width:15px; opacity:1; background:#fff !important; border:#8a9797 solid 2px; border-radius:50%; }
.carousel-indicators .active { background:#8a9797 !important; }

/*STATIC*/
#static-wrapper img { max-width:100%; height:auto; }
.static-header.has-image { min-height:100px; transition:.5s ease; }
.header-triangle-wrapper { background:url('/images/interface/gpx_header-triangle.svg') left bottom / cover no-repeat; }
.header-image-padding { padding:150% 3rem 1rem 3rem; }
.header-image { max-width:400px !important; }

.contact-map { height:100%; min-height:450px; }
ul.gas-list, ul.gas-list li { list-style:none; margin:0; padding:0; }
ul.gas-list li { position:relative; padding:4px 0px 30px 67px; font-size:2.1rem; }
ul.gas-list li:before { content:url('/images/interface/gpx_icon-gas-pump.svg'); position:absolute; left:0; top:0; }

/*ACCORDION CUSTOMIZATION*/
.accordion-item { margin-bottom:15px; border:0px; }
.accordion-button { text-transform:uppercase; font:normal 1.4rem/1 "oswald",sans-serif; color:#000; border-radius:0px !important; box-shadow:none; border:hidden; padding:20px 30px; }
.accordion-button.collapsed { border-bottom:#e5e5e5 solid 1px; }
.accordion-button:not(.collapsed) { color:#fff; background:#000; }
.accordion-button:after { margin-left:20px; }
.accordion-button.collapsed:after { transform: rotate(-90deg) !important; }
.accordion-button:not(.collapsed):after { transform: rotate(0deg) !important; filter: brightness(30); }
.accordion-body { margin-top:15px; padding:20px 30px; border:#e5e5e5 solid 1px; }

.text-white .accordion-button { color:#14518F; }
.text-white .accordion .card { border:none !important; }
.text-white .accordion-button.collapsed { border-bottom:#187EAA solid 1px; color:#14518F !important }
.text-white .accordion-button:not(.collapsed) { color:#fff; background:#187EAA; }
.text-white .card-body * { color:#000 !important; }

/*CUSTOM HERO WRAPPER*/
.custom-hero-wrapper p { font-size:1.4rem; }
.custom-hero-wrapper p.h1 { font-size:1.8rem; }

/*Nice Table*/
.nice-table th, .nice-table td { padding:5px 9px; }
.nice-table th, .nice-table th p { color:#fff !important; font-family:"fira-sans", sans-serif; font-weight:500; text-transform:uppercase; }
.nice-table th { background:#005499; vertical-align:top; }
.nice-table td { color:#000; vertical-align:top; }
.nice-table th p { padding-bottom:6px !important; }
.nice-table th p:last-of-type, .nice-table td p:last-of-type { padding-bottom:0px !important; margin-bottom:0px !important; }
.nice-table tr:nth-child(even) { background:#f3f3f3; }
.nice-table { margin-bottom:15px; width:100%; }

.bg-primary .nice-table th { background:#062037; }
.bg-primary .nice-table tr:nth-child(even) { background:rgba(255,255,255,.1); }

/*REPORT GENERATOR*/
#iframe-holder { position:absolute; width:20px; height:20px; top:-20px; left:-20px; overflow:hidden; }
#report-bar-wrapper-outer { position:relative; background:#d9d9d9; }
#report-caption p { color:#575757; font-style:italic; font-size:1rem; }
#report-bar-wrapper { background:#ebebeb; }
#report-bar-wrapper, #report-bar-wrapper a { font:normal 15px/15px 'Barlow',sans-serif; }
#report-bar-wrapper a { cursor:pointer; color:#7f7f7f; text-decoration:none; }
#report-bar-wrapper ul, #report-bar-wrapper li { margin:0; padding:0; list-style:none; display:inline-block; }
#report-bar-wrapper ul { width:100%; }
#report-bar-wrapper li { padding:10px 11px; }
#report-bar-wrapper a:hover .fa, #report-bar-wrapper a:focus .fa { color:#35316b; }

a.report-button  { color:#165992; text-decoration:none; }
a.report-button:hover, a.report-button:focus { text-decoration:underline; }
a.report-button.add-button i { color:#60ad00 }
a.report-button.remove-button i { color:#d62434; }

/*INTERACTIVE MAP*/
#map-wrapper-outer { position:relative; overflow:hidden; }
#map-wrapper { display:block; width:100% position:relative; }
#map-wrapper::before { content:""; display:block; padding-top:65%; }
#map-wrapper iframe { border:none; position:absolute; top:0; right:0; bottom:0; left:0; }
#mapNav { background: #e1e1e1; }
#mapNav a { display:block; min-height:44px; text-decoration:none; color:#fff; padding:10px; background:#22447D; text-align:center; text-transform:uppercase; }
#mapNav a.active { background:#158040; color:#fff; }
#resize-frame { width:1300px; height: 800px;
-ms-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-o-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}

/*INTERACTIVE MAPS - LEAFLET*/
#map-base { width:100%; height:calc(100vh - 100px); }
.main-nav-link { text-decoration:none !important; background:#000; color:#fff !important; transition:.5s ease; }
.main-nav-link.active { background:#757575; }
.mapSubNav { background:#757575; padding:10px; }
.mapSubNav label { user-select: none; }
label.custom-checkbox  { color:#fff; padding:10px; }
/*.custom-checkbox input[type=checkbox]:focus {  outline: 1px solid rgba(0, 0, 0, 0.2); }*/
.custom-checkbox input[type=checkbox] { background-color: #fff; border:#fff solid 3px; border-radius: 50%; appearance: none; -webkit-appearance: none; -moz-appearance: none; width: 17px; height: 17px; cursor: pointer; position: relative; top: 3px; }
.custom-checkbox input[type=checkbox]:checked { background-color: #409fd6; }
#right-col-list { height:336px; overflow:auto; }

/*CONTENT GROUP*/
.content-group .nav-tabs { border-bottom:0px !important; }
.content-group-button { background:#fff !important; color:#000 !important; font-size:1.5rem; font-size:1.2rem; padding:1rem 1.5rem; border-bottom:#e5e5e5 solid 1px !important; }
.content-group-button i { color:#347ea3 !important; }
.content-group-button.active { background:#347ea3 !important; color:#fff !important; border-bottom:#347ea3 solid 1px !important; }
.content-group-button.active i { color:#fff !important; }
.content-group-text { font-size:1.2rem; }
.content-group-text i { font-size:60px; }
.content-group-background { opacity:.15; filter: grayscale(100%); background:#757575; }

/*LOGO GRID*/
.logo-grid-container { border:#dedede solid 2px; padding:10px 10px 30px 10px; }
/*.logo-grid-container:hover, .logo-grid-container:focus {  border:#747474 solid 2px; }*/
.logo-grid-item { background-repeat:no-repeat; background-position:center; background-size: contain; min-height:150px; }

/*COMPANY LOGOS*/
.company-logo-link { -webkit-filter: grayscale(100%);  filter: grayscale(100%); transition:.5s ease; }
.company-logo-link:hover, .company-logo-link:focus { -webkit-filter: grayscale(0%);  filter: grayscale(0%); }
.company-logo-link img { max-width:170px !important; }
.company-logo-link img.logo-adjust { background-size:auto 97% !important; }

/*PHOTO GRID*/
.photo-grid-wrapper { height:456px; transition:height .5s ease; }
.photo-grid-wrapper.count-1, .photo-grid-wrapper.count-2 { height:285px; }
.photo-1 { width:100%; height:100%; }
.grid-2.photo-1, .grid-3.photo-1, .grid-4.photo-1 { width:50%; float:left; border-right:#fff solid 1px; }
.grid-4.photo-1 { height:50%; }
.photo-2, .photo-3, .photo-4 { width:50%; height:50%; border-left:#fff solid 1px; }
.grid-2.photo-2 { width:50%; height:100%; }
.grid-2.photo-2, .grid-2.photo-3, .grid-3.photo-2, .grid-3.photo-3, .grid-4.photo-2, .grid-4.photo-4 { float:right; }
.grid-4.photo-3 { float:left; border-left:none; border-right:#fff solid 1px;  }
.grid-3.photo-2, .grid-4.photo-1, .grid-4.photo-2  { border-bottom:#fff solid 1px; }
.grid-3.photo-3 { border-top:#fff solid 1px; }
/*
a.grid-link { transition:.2s ease; transform:scale(100%); }
a.grid-link:hover, a.grid-link:focus { transform:scale(120%); }
*/

/*YOUTUBE SET*/
.play-button-icon:before { content: "\f144"; display:block; position:absolute; width:100%; height:80px; top:100px; left:0; text-align:center; font:900 5rem/1 "Font Awesome 6 Pro"; color:#fff; opacity:.2; z-index:1; }
.play-button-icon:hover:before, .play-button-icon:focus:before { opacity:.8; }
.video-button i { font-size:4.5rem; opacity:.5; transition:.5s ease; }
.video-button:hover i, .video-button:focus i { opacity:.9; }

/*Video Wrapper*/
.video-wrapper { width:100%; position:relative; }
.video-wrapper:before { content:''; display:block; padding-top: 56.25%; /*width divided by height*/ }
.video-wrapper iframe { border:none; width:100%; height:100%; position:absolute; top:0; left:0; }

/*ASIDE*/
.secondaryLeftNav h2 { font-family: "fira-sans", sans-serif; font-weight: bold; font-size: 1.5rem; }
.aside-nav ul, .aside-nav li { list-style:none; margin:0; padding:0; }
.aside-nav a { display:inline-block; padding-left: 1rem; margin-bottom: .5rem; background-color: transparent; border: none; font-size: 1.125rem; color: #14518f; border-left: 3px solid transparent; text-decoration:none; }
.aside-nav li.here a { font-weight: 700; color: #14518f; border-left: 3px solid #f69220; }
.aside-nav li a:hover, .aside-nav li a:focus { border-left: 3px solid #f69220; cursor: pointer; }

.secondaryLeftNav .list-group-item { background-color: transparent; border: none; font-size: 1.125rem; color: #14518f; border-left: 3px solid transparent; }
.secondaryLeftNav .list-group-item.active { font-weight: 700; color: #14518f; border-left: 3px solid #f69220; }
.secondaryLeftNav .list-group-item:hover, .secondaryLeftNav .list-group-item:focus { border-left: 3px solid #f69220; cursor: pointer; }

/*FOOTER*/
footer { color: #14518f; }
.footerContact i:hover, .footerContact i:focus { color: #F7921C !important; cursor: pointer; }
footer .address { margin-left: 2.5rem; }
.footer-icons svg { height:32px; width:auto; fill:#14518f; transition:.3s ease; }
.footer-icons a:hover svg, .footer-icons a:focus svg { fill:#F7921C; }

/*NAV*/
.nav-link { padding-left: 0.75rem !important; padding-right: 0.75rem !important; border-bottom: 2px solid transparent; font-size: 1rem; color:#fff !important; }
.nav-item:hover .nav-link, .nav-item .nav-link:hover, .nav-item .nav-link:focus { background-color: rgb(20, 81, 143) !important; border-bottom: 2px solid #f69220; color: white !important; cursor: pointer; text-decoration:none !important; }
.nav-link.active { border-bottom: 2px solid #f69220; background-color: #14518f; color: white !important; }
.navbar-toggler { height: 44px; width: 44px; background-color: #14518f; }
.navbar-toggler:hover, .navbar-toggler:focus { background-color: #1a6abc; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler i { color: white; }
.navbar-toggler:focus::before { content: ""; position: absolute; border: 1px solid #14518f; width: 50px; height: 50px; left: -4px; top: -4px; padding: 1rem; border-radius: 0.5rem; }

.dropdown-toggle::after { border-top:transparent .3em solid; } /**Keeps dropdown arrow invisible until hovered**/
.dropdown-toggle:hover::after, .dropdown-toggle:focus::after { border-top:#23A8E0 .3em solid; } /**set dropdown arrow color when hovered**/

/* Icon Forward */
/*
.hvr-icon-forward { display: inline-block; vertical-align: middle; -webkit-transform: perspective(1px) translateZ(0); transform: perspective(1px) translateZ(0); box-shadow: 0 0 1px rgba(0, 0, 0, 0); -webkit-transition-duration: 0.1s; transition-duration: 0.1s; }
.hvr-icon-forward .hvr-icon::before { -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-transition-duration: 0.1s; transition-duration: 0.1s; -webkit-transition-property: transform; transition-property: transform; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; }
.hvr-icon-forward:hover .hvr-icon::before,
.hvr-icon-forward:focus .hvr-icon::before,
.hvr-icon-forward:active .hvr-icon::before { -webkit-transform: translateX(4px); transform: translateX(4px); }
*/

.hvr-icon-forward, .hvr-icon-forward .hvr-icon { transition:.4s ease; }
.hvr-icon-forward:hover .hvr-icon, .hvr-icon-forward:focus .hvr-icon { margin-left:4px; }

@media (min-width: 768px) { 
  .offset-md-1 { margin-left: 8.33333333%% !important; }
  .offset-md-2 { margin-left: 16.66666667% !important; }
  .offset-md-3 { margin-left: 25% !important; }
  .offset-md-4 { margin-left: 33.33333333% !important; }
  .offset-md-5 { margin-left: 41.66666667% !important; }
  .offset-md-6 { margin-left: 50% !important; }
  .offset-md-7 { margin-left: 58.33333333% !important; }
  .offset-md-8 { margin-left: 66.66666667% !important; }
  .offset-md-9 { margin-left: 75% !important; }
  .offset-md-10 { margin-left: 83.33333333% !important; }
  .offset-md-11 { margin-left: 91.66666667% !important; }
  .bg-md-none { background:none !important; }
  .hero .accent.top { left: 0; }
  .hero .accent.bottom { right: 0; }
  .strategicLocation { background-image: url("/images/interface/strategicLocation.jpg"); background-position: 30vw center; }
  .megasite { background-image: url("/images/interface/megasite.jpg"); }
  .qualOfLife-content { background-image: url("/images/interface/qualOfLifePhoto.jpg"); }
  .airport-content { background-image: url("/images/interface/airportBG.jpg"); }
  /* .secondaryLeftNav { height: 100vh; } */
  .play-button-icon:before { top:70px; }
  .photo-bg-left { left:0px; width:100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dbdbdb+0,dbdbdb+100&1+25,0+100 */
  background: linear-gradient(to right, rgba(219,219,219,1) 0%,rgba(219,219,219,1) 25%,rgba(219,219,219,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
  .photo-bg-right { right:0px; width:100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dbdbdb+0,dbdbdb+100&0+0,1+75 */
  background: linear-gradient(to right, rgba(219,219,219,0) 0%,rgba(219,219,219,1) 75%,rgba(219,219,219,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}

@media (min-width: 992px) {
  .h1, h1 { font-size: 2.5rem; }
  .h2, h2 { font-size: 2rem; }
  .h3, h3 { font-size: 1.75rem; }
  .h4, h4 { font-size: 1.5rem; }
  .h5, h5 { font-size: 1.25rem; }
  .h6, h6 { font-size: 1rem; }
  .custom-hero-wrapper p.h1 { font-size:2.0rem; }
  /*.hero-header { height: fit-content; }*/
  .offset-lg-1 { margin-left: 8.33333333%% !important; }
  .offset-lg-2 { margin-left: 16.66666667% !important; }
  .offset-lg-3 { margin-left: 25% !important; }
  .offset-lg-4 { margin-left: 33.33333333% !important; }
  .offset-lg-5 { margin-left: 41.66666667% !important; }
  .offset-lg-6 { margin-left: 50% !important; }
  .offset-lg-7 { margin-left: 58.33333333% !important; }
  .offset-lg-8 { margin-left: 66.66666667% !important; }
  .offset-lg-9 { margin-left: 75% !important; }
  .offset-lg-10 { margin-left: 83.33333333% !important; }
  .offset-lg-11 { margin-left: 91.66666667% !important; }
  .strategicLocation { background-position: 40vw center; }
  .bg-lg-none { background:none !important; }
  .bg-offset-left { background-position: right !important; background-size:auto 100% !important; }
  .bg-offset-right { background-position: left !important; background-size:auto 100% !important; }
  .parallax-effect { background-attachment:fixed !important; }
  .hero-spacer { height:500px; transition:.5s ease; }
  .content-group-text { font-size:1.8rem; font-size:1.5rem; }
  .content-group-text i { font-size:90px; font-size:70px; }
  .photo-grid-wrapper.count-1, .photo-grid-wrapper.count-2 { height:485px; }
  .photo-grid-wrapper { height:456px; }
  #aside-content { max-width:500px; }
  #static-content { max-width:1200px; }
  .secondary-one-col { max-width:1700px; }
  .secondary-one-col #static-content { max-width:1700px; margin:0 auto; }
  .two-col-bkg.bg-primary { border-right:#000 solid 1px; }
  .two-col-bkg.bg-primary .border-lg-right { border-right:#fff solid 1px; }
}
@media screen and (max-width: 1024px) {
  table.responsive, table.responsive tr, table.responsive tbody, table.responsive td { display:block; width:100% !important; height:auto; }
  table.responsive thead, table.responsive thead td, table.responsive th, table.responsive td.hidden-column { display:none; }
  table.responsive tr { clear:both; }
  .table-wrapper { width:100%; overflow:auto; }
}
@media screen and (min-width: 1200px) {
  .offset-xl-1 { margin-left: 8.33333333%% !important; }
  .offset-xl-2 { margin-left: 16.66666667% !important; }
  .offset-xl-3 { margin-left: 25% !important; }
  .offset-xl-4 { margin-left: 33.33333333% !important; }
  .offset-xl-5 { margin-left: 41.66666667% !important; }
  .offset-xl-6 { margin-left: 50% !important; }
  .offset-xl-7 { margin-left: 58.33333333% !important; }
  .offset-xl-8 { margin-left: 66.66666667% !important; }
  .offset-xl-9 { margin-left: 75% !important; }
  .offset-xl-10 { margin-left: 83.33333333% !important; }
  .offset-xl-11 { margin-left: 91.66666667% !important; }
  .bg-offset-left { background-position: right !important; background-size:70% !important; }
  .bg-offset-right { background-position: left !important; background-size:70% !important; }
  .photo-bg-left { left:30%; width:50%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dbdbdb+0,dbdbdb+100&1+0,0+100 */
  background: linear-gradient(to right, rgba(219,219,219,1) 0%,rgba(219,219,219,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
  .photo-bg-right { right:30%; width:50%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dbdbdb+0,dbdbdb+100&0+0,1+100 */
  background: linear-gradient(to right, rgba(219,219,219,0) 0%,rgba(219,219,219,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
  .nav-item:last-child .dropdown-menu { left:auto !important; right:0 !important; }
  #header-spacer.sticky { height:131px; }
  #header.sticky { position:fixed; top:0px; right:0px; left:0px; border-bottom:#747474 solid 1px; z-index:99; background:#fff; }
  #header.sticky #top-nav { display:none; }
  .top-xl-auto { top:auto !important; }
  .hero-spacer.tall { height:685px; }
  .nav-link { font-size:1.0rem; }
  /*CHANGE NAV TO HOVER*/
  .dropdown:hover .dropdown-menu { display: block; }
}
@media screen and (min-width: 1400px) {
  .offset-xxl-1 { margin-left: 8.33333333%% !important; }
  .offset-xxl-2 { margin-left: 16.66666667% !important; }
  .offset-xxl-3 { margin-left: 25% !important; }
  .offset-xxl-4 { margin-left: 33.33333333% !important; }
  .offset-xxl-5 { margin-left: 41.66666667% !important; }
  .offset-xxl-6 { margin-left: 50% !important; }
  .offset-xxl-7 { margin-left: 58.33333333% !important; }
  .offset-xxl-8 { margin-left: 66.66666667% !important; }
  .offset-xxl-9 { margin-left: 75% !important; }
  .offset-xxl-10 { margin-left: 83.33333333% !important; }
  .offset-xxl-11 { margin-left: 91.66666667% !important; }
  .nav-link { font-size:1.15rem; }
}
@media screen and (min-width: 1600px) {
  /*.nav-item:last-child .dropdown-menu { left:0 !important; right:auto !important; }*/
  .d-xxxl-inline-block { display:inline-block !important; }
}
@media screen and (min-width: 2000px) {
  .nav-link { font-size:1.25rem; }
}
@media print {
  html, body, #main, #static-wrapper, section, article, #printHeader { display:block !important; width:100% !important; float:none !important; padding:0 !important; margin:0 !important; }
  *.d-print-none, .button { display:none !important; }
  .d-screen-only, a.button, a.learn-more-button { display:none !important; }
  .print-no-style, .print-no-style * { background:#fff !important; color:#000 !important; border:none !important; }
  .print-no-padding { padding:0 !important; }
  .print-no-margin { margin:0 !important; }
  .border-primary, .border-secondary, .border-success { border:none !important; }
  .bg-primary { background:#fff !important; }
  .text-white, .text-white * { color:#000 !important; }
  .text-shadow { text-shadow:none !important; }
  #print-header { display:block; padding-bottom:20px; font:normal 14px/15px "fira-sans", sans-serif; color:#000; }
  #print-header table { width:100%; }
  #print-header td{ vertical-align:middle !important;}
  #print-header table td:first-child { width:230px; }
  #print-header table img { max-width:250px !important; }
  .compAdvantages::before { display:none !important; }
}