@charset "UTF-8";
/* SCSS HEX */
/* SCSS HSL */
/* SCSS RGB */
/* SCSS Gradient */
h1 {
  font-size: var(--s4);
  font-family: "Josefin Sans", sans-serif;
  line-height: var(--s4);
  margin: 0;
  margin-left: 0;
}

h2 {
  font-size: var(--s3);
  font-family: "Josefin Sans", sans-serif;
  line-height: var(--s4);
  margin: 0;
  margin-left: 0;
}

.alt-h2 {
  font-size: var(--s1);
  font-family: "Josefin Sans", sans-serif;
  line-height: var(--s2);
}

h3 {
  font-size: var(--s2);
  font-family: "Josefin Sans", sans-serif;
  line-height: var(--s3);
  margin: 0;
  margin-left: 0;
  font-weight: 400;
}

.alt-h3, .alt-h3 > h3 {
  font-size: var(--s0);
  font-family: "Josefin Sans", sans-serif;
  line-height: var(--s1);
}

h4 {
  font-size: var(--s1);
  font-family: "Josefin Sans", sans-serif;
  line-height: var(--s2);
  margin: 0;
  margin-left: 0;
}

h5 {
  font-size: var(--s0);
  font-family: "Josefin Sans", sans-serif;
  line-height: var(--s1);
  margin: 0;
  margin-left: 0;
}

h6 {
  font-size: var(--s-1);
  font-family: "Josefin Sans", sans-serif;
  line-height: var(--s1);
  margin: 0;
  margin-left: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #003A66;
}

h2, h3, h4, h5, h6 {
  font-family: "Cormorant", serif;
  font-weight: 400;
}

span, p, li {
  font-size: var(--s0);
  line-height: var(--s1);
  margin: 0;
  margin-top: var(--s-1);
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
}

a {
  font-family: "Josefin Sans", sans-serif;
  color: black;
  font-weight: 300;
}

li {
  list-style: none;
}

ul {
  padding: 0;
}

:root {
  --measure: 60ch;
  --ratio: 1.35;
  --s-5: calc(var(--s-4) / var(--ratio));
  --s-4: calc(var(--s-3) / var(--ratio));
  --s-3: calc(var(--s-2) / var(--ratio));
  --s-2: calc(var(--s-1) / var(--ratio));
  --s-1: calc(var(--s0) / var(--ratio));
  --s0: 1rem;
  --s1: calc(var(--s0) * var(--ratio));
  --s2: calc(var(--s1) * var(--ratio));
  --s3: calc(var(--s2) * var(--ratio));
  --s4: calc(var(--s3) * var(--ratio));
  --s5: calc(var(--s4) * var(--ratio));
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
figcaption {
  max-width: var(--measure);
}

* {
  font-family: "Josefin Sans", sans-serif;
}

#navbar {
  position: fixed;
  width: 100vw;
  z-index: 200;
  top: 0;
}

nav {
  background-color: #0F64A5;
  color: white;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
nav a {
  color: inherit;
  height: 3rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
nav a:hover {
  background-color: rgba(152, 190, 218, 0.8823529412);
}
nav img {
  width: 4rem;
  padding: 0.5rem;
}
nav a:last-child {
  flex-grow: 2;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.4745098039);
}

footer {
  padding-top: 1rem;
  background: hsl(0, 0%, 77%);
  position: relative;
  bottom: 0;
  width: 100%;
}
footer img {
  max-width: 5rem;
}
footer input[type=text] {
  min-width: 8rem;
}
footer h3 {
  font-size: var(--s1);
  font-family: "Josefin Sans", sans-serif;
  line-height: var(--s2);
}
footer a {
  display: inline-block;
  border-left: solid 1px rgb(78, 80, 82);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 0.5rem;
  white-space: nowrap;
  color: rgb(78, 80, 82);
}
footer stack-l a:first-child {
  border: none;
}
footer .footer-locations {
  padding-top: 1rem;
  padding-left: 2em;
  padding-right: 2em;
}

@media (max-width: 1100px) {
  .footer-pages, .footer-services, .footer-contact, .footer-locations {
    padding-top: 1em;
    padding-left: 2em;
    padding-right: 2em;
  }
}
#sub-box {
  background: #E1E7EB;
  padding: 2rem;
}
#sub-box h2 {
  width: 80%;
}

.form-cluster {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1em;
}
.form-cluster #name, .form-cluster #email, .form-cluster #company, .form-cluster #phone {
  min-width: 10rem;
}

@media (max-width: 300px) {
  .form-cluster {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
#image-modal .modal {
  z-index: 100;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  position: fixed;
  display: flex;
  background: hsla(210, 2%, 31%, 0.25);
  overflow: hidden;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
#image-modal .content {
  display: flex;
  max-height: 80vh;
  max-width: 60vw;
  border: 1px rgb(176, 178, 180) solid;
}
#image-modal .content img {
  width: 100%;
  height: 100%;
}

.jobreel {
  padding: 1rem;
  width: 80vw;
}
.jobreel box-l:last-child {
  background: #0F64A5;
  padding: 0;
}
.jobreel a {
  padding-left: 1rem;
  padding-right: 1rem;
  text-decoration: none;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.jobreel a h3 {
  color: white;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
}

html {
  background: white;
}

body {
  overflow: auto;
}

[x-cloak] {
  display: none !important;
}

cover-l:not(:defined), center-l:not(:defined), sidebar-l:not(:defined), cluster-l:not(:defined) {
  display: block;
  height: 100vh;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

cover-l, center-l, sidebar-l, cluster-l {
  transition: opacity 0.5s ease-in-out;
}

box-l {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
}

input[type=text] {
  min-width: 12rem;
}

figure {
  margin: 0;
}

.kg-card img {
  width: 100%;
  height: auto;
}

#map {
  height: 400px;
  /* The height is 400 pixels */
  width: 100%;
  /* The width is the width of the web page */
}

.logo-frame {
  padding-top: 2rem;
}

.banner {
  width: 100%;
}

#nav-offset {
  margin-top: 4rem;
  min-height: 100vh;
}

.bg-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(244, 240, 236);
  z-index: -1;
}

.gradient-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 120vh;
  height: 100%;
  background: #0F64A5;
}

.background {
  position: absolute;
  width: 120vh;
  height: 100%;
  top: 0;
  right: 0;
  background-image: url("../images/subtract.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.vector {
  opacity: 0.35;
  height: 100%;
  width: 120vh;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.vector svg {
  width: 100%;
  height: 100%;
}

.block-2 {
  background: rgb(244, 240, 236);
  margin-bottom: 2rem;
}

.serif {
  font-family: "Cormorant", serif;
  font-weight: normal;
}

.logo {
  color: #6C757D;
  margin: 0;
}
.logo .serif {
  margin-left: 1rem;
  margin-right: 1rem;
}
.logo .outline {
  position: absolute;
  left: -2px;
  top: -4px;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: black;
  color: rgba(0, 0, 0, 0);
  transition: all 0.5s;
}
.logo .outline:hover {
  left: 5px;
  top: 5px;
  transition: all 0.5s;
}

.subtitle {
  text-shadow: 1px 1px 2px rgb(244, 240, 236);
}

h1.logo {
  margin: 0 1rem;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
}
h1.logo > * {
  position: relative;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  cursor: pointer;
  padding: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: #0F64A5;
  color: white;
  box-shadow: 1px 1px 1px rgb(138, 138, 138);
  border-radius: 0px;
  transition: all 0.8s ease-in-out;
}
.button:hover {
  transition: all 0.5s ease-in-out;
  background: rgba(152, 190, 218, 0.8823529412);
}

.alt-button {
  display: inline-block;
  margin-top: 1rem;
  cursor: pointer;
  padding: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: white;
  color: #0F64A5;
  box-shadow: 1px 1px 1px rgb(138, 138, 138);
  border-radius: 0px;
  transition: all 0.8s ease-in-out;
}
.alt-button:hover {
  transition: all 0.5s ease-in-out;
  background: rgba(152, 190, 218, 0.8823529412);
}

a.button, a.alt-button {
  text-decoration: none;
}

button[type=submit] {
  border-radius: 0px;
}

.banner {
  background: #0F64A5;
  width: 100vw;
  display: flex;
  justify-content: center;
  color: #6C757D;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.banner h2 {
  max-width: 60%;
}

.text-center {
  text-align: center;
}

.cursor-pointer {
  cursor: pointer;
}

[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  right: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 0.5rem;
  width: 6rem;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  right: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  transform: translateX(12px);
}

a.jx-knightlab {
  visibility: hidden;
}

.location-h1 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.location-h2 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.location-h3 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

box-l {
  display: block;
  padding: var(--s1);
  border-width: var(--border-thin);
  /* ↓ For high contrast mode */
  outline: var(--border-thin) solid transparent;
  outline-offset: calc(var(--border-thin) * -1);
}

center-l {
  display: block;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--measure);
}

cluster-l > * {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: calc(var(--s1) / 2 * -1);
}

cluster-l > * > * {
  margin: calc(var(--s1) / 2);
}

cover-l {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: var(--s1);
  overflow: hidden;
}

frame-l {
  display: block;
  position: relative;
  padding-bottom: 66.6666666667%;
  overflow: hidden;
}

frame-l > * {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

frame-l > img,
frame-l > video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

grid-l {
  display: grid;
  grid-gap: var(--s1);
  align-content: start;
  grid-template-columns: 100%;
}

icon-l svg {
  height: 0.75em;
  height: 1cap;
  width: 0.75em;
  width: 1cap;
}

imposter-l {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

reel-l {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: var(--color-light) var(--color-dark);
}

reel-l > * {
  flex: 0 0 var(--item-width);
}

reel-l > img {
  height: 100%;
  flex-basis: auto;
  width: auto;
}

reel-l::-webkit-scrollbar {
  height: 1rem;
}

reel-l::-webkit-scrollbar-track {
  background-color: var(--color-dark);
}

reel-l::-webkit-scrollbar-thumb {
  background-color: var(--color-dark);
  background-image: linear-gradient(var(--color-dark) 0, var(--color-dark) 0.25rem, var(--color-light) 0.25rem, var(--color-light) 0.75rem, var(--color-dark) 0.75rem);
}

sidebar-l > * {
  display: flex;
  flex-wrap: wrap;
}

sidebar-l > * > * {
  flex-grow: 1;
}

stack-l {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

stack-l > * + * {
  margin-top: var(--s1);
}

switcher-l {
  display: block;
}

switcher-l > * {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

switcher-l > * > * {
  flex-basis: calc((var(--measure) - 100%) * 999);
  flex-grow: 1;
}

#home {
  background-image: linear-gradient(90deg, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 100%), url("../images/brick-bg.webp");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
#home img {
  width: 100%;
}
#home sidebar-l {
  margin-top: 3rem;
}
#home sidebar-l > * > * {
  padding: 2rem;
}
#home sidebar-l > * > *:last-child {
  padding-left: 6rem;
}

.listCycle h3 {
  font-size: var(--s4);
  line-height: var(--s4);
}
.listCycle h3 .mission {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  color: #003A66;
  font-family: "Cormorant", serif;
  font-size: var(--s4);
  line-height: var(--s4);
}
.listCycle h3 .mission .mission:hover {
  transform: scale(1.1);
}
.listCycle h3 .mission .mission:hover a {
  color: rgb(78, 80, 82);
}
.listCycle li h3:hover {
  transform: scale(1.1);
}
.listCycle li h3:hover a {
  color: rgb(78, 80, 82);
}

#elevator #slider {
  height: auto;
  max-width: 20rem;
}
#elevator img {
  width: 100%;
}
#elevator sidebar-l > *:first-child {
  justify-content: space-around;
}

#reviews {
  background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23c7c7c7' fill-opacity='0.2'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#reviews hr {
  width: 100%;
}
#reviews h2 {
  max-width: none;
}
#reviews h3, #reviews h5, #reviews h6 {
  font-family: "Josefin Sans", sans-serif;
}
#reviews .reviews {
  display: flex;
  flex-direction: column;
}
#reviews .review-panel {
  scroll-snap-align: center;
  background: white;
  border-top: 1px solid #0F64A5;
  border-bottom: 1px solid #0F64A5;
  margin-left: 0;
}
#reviews .review-panel > * {
  padding: 2rem;
}
#reviews .arrows {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#reviews .review-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 10rem;
  font-size: var(--s4);
  text-decoration: none;
}

reel-l {
  scroll-behavior: smooth;
  max-width: 100%;
  scroll-snap-type: x mandatory;
}

.reel-housing {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.vapor-overlay {
  position: absolute;
  width: 15%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 90%);
}

@media screen and (max-width: 500px) {
  #reviews .review-button {
    display: none;
  }
}
#services h2 {
  font-size: var(--s1);
  font-family: "Josefin Sans", sans-serif;
  line-height: var(--s2);
}
#services box-l {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
}
#services box-l stack-l {
  justify-content: space-between;
  height: 100%;
}

grid-l#services {
  max-width: 90vw;
}

#historical .info, #commercial .info, #residential .info {
  display: flex;
  align-items: center;
}
#historical .info img, #commercial .info img, #residential .info img {
  height: 1rem;
  padding-right: 1rem;
}
#historical .info a, #commercial .info a, #residential .info a {
  margin-left: auto;
}
#historical stack-l, #commercial stack-l, #residential stack-l {
  width: 90%;
}
#historical stack-l > *, #commercial stack-l > *, #residential stack-l > * {
  padding-left: 1rem;
}
#historical reel-l, #commercial reel-l, #residential reel-l {
  height: 20rem;
  width: 100%;
  padding: 0;
}
#historical reel-l > *, #commercial reel-l > *, #residential reel-l > * {
  margin-left: 0;
}
#historical .activePill, #commercial .activePill, #residential .activePill {
  background: red;
}
#historical .inactivePill, #commercial .inactivePill, #residential .inactivePill {
  background: blue;
}
#historical .content, #commercial .content, #residential .content {
  display: flex;
  height: 100%;
  width: 100%;
  border: 1px rgb(176, 178, 180) solid;
}
#historical .full-screen, #commercial .full-screen, #residential .full-screen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 201;
  position: fixed;
  display: flex;
  background: hsla(0, 0%, 54%, 0.5);
  overflow: hidden;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
#historical .full-screen .content, #commercial .full-screen .content, #residential .full-screen .content {
  width: 90%;
}
#historical .button-panel, #commercial .button-panel, #residential .button-panel {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
}
#historical .button-panel .arrow, #commercial .button-panel .arrow, #residential .button-panel .arrow {
  display: flex;
  align-items: center;
  padding: 0.5rem;
}

@media screen and (max-width: 500px) {
  * {
    font-size: 12px;
  }
  .tenetPanel:hover {
    height: 38rem;
  }
  .footer-pages center-l {
    margin-left: 0;
  }
}/*# sourceMappingURL=style.css.map */