@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, main, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  overflow-y: -moz-scrollbars-vertical;
  overflow-y: scroll;
}

body * {
  outline: none;
  box-sizing: border-box;
}

.wrapper--base {
  max-width: 72em;
  width: 80%;
  margin: 0 auto;
}
.wrapper--wide {
  max-width: 84em;
  width: 90%;
  margin: 0 auto;
}
.wrapper--right {
  width: 85%;
  max-width: 72em;
  margin: 0 auto;
  position: relative;
}
.wrapper--left {
  width: 85%;
  max-width: 72em;
  margin: 0 auto;
  position: relative;
}

body {
  overflow-x: hidden;
}

.content-block {
  padding: var(--spacer-md) 0;
  position: relative;
}
.content-block:last-of-type {
  padding-bottom: var(--spacer-xxl);
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-VariableFont_wght.ttf") format("truetype");
}
.grid__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 68rem) {
  .grid__row {
    display: block;
  }
}
.grid__item {
  margin: 1em 0;
}
.grid__item--full {
  width: 100%;
}
.grid__item--half {
  width: 48%;
}
@media only screen and (max-width: 68rem) {
  .grid__item--half {
    width: 100%;
    padding: var(--spacer-sm) 0;
  }
}
.grid__item--half__short-description {
  font-size: var(--font-button) !important;
  padding-bottom: var(--spacer-sm);
  text-align: left;
  max-width: 100%;
  word-wrap: normal;
}
.grid__item--onethird {
  width: 32%;
}
@media only screen and (max-width: 68rem) {
  .grid__item--onethird {
    width: 100%;
    padding: var(--spacer-sm) 0;
  }
}
.grid__item--twothirds {
  width: 66%;
}
@media only screen and (max-width: 68rem) {
  .grid__item--twothirds {
    width: 100%;
    padding: var(--spacer-sm) 0;
  }
}
.grid__item--onefourth {
  width: 23.5%;
}
@media only screen and (max-width: 68rem) {
  .grid__item--onefourth {
    width: 100%;
    padding: var(--spacer-sm) 0;
  }
}
.grid__item--threefourth {
  width: 65.5%;
}
@media only screen and (max-width: 68rem) {
  .grid__item--threefourth {
    width: 100%;
    padding: 0;
  }
}

:root {
  --max-width: 1620px;
  --font-size: 20px;
  --font-weight: 400;
  --line-height: 1.65;
  --color-text: #000;
  --transition: 250ms ease-out;
  --font-step-1: 35px;
  --font-step-2: 26px;
  --font-step-3: 22px;
  --font-step-4: 18px;
  --font-step-5: 16px;
  --spacer-xs: calc(5px + (5 - 5) * ((100vw - 320px) / (1620 - 320)));
  --spacer-sm: calc(10px + (20 - 10) * ((100vw - 320px) / (1620 - 320)));
  --spacer-md: calc(20px + (40 - 20) * ((100vw - 320px) / (1620 - 320)));
  --spacer-lg: calc(40px + (60 - 40) * ((100vw - 320px) / (1620 - 320)));
  --spacer-xl: calc(60px + (80 - 60) * ((100vw - 320px) / (1620 - 320)));
  --spacer-xxl: calc(80px + (100 - 80) * ((100vw - 320px) / (1620 - 320)));
}

/*!
 * baguetteBox.js
 * @author  feimosi
 * @version %%INJECT_VERSION%%
 * @url https://github.com/feimosi/baguetteBox.js
 */
#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.5s ease;
}
#baguetteBox-overlay.visible {
  opacity: 1;
}
#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}
#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: sans-serif;
}
#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  transition: left 0.4s ease, transform 0.4s ease;
}
#baguetteBox-slider.bounce-from-right {
  animation: bounceFromRight 0.4s ease-out;
}
#baguetteBox-slider.bounce-from-left {
  animation: bounceFromLeft 0.4s ease-out;
}

@keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
.baguetteBox-button#previous-button, .baguetteBox-button#next-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  transition: background-color 0.4s ease;
}
.baguetteBox-button:focus, .baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}
.baguetteBox-button#next-button {
  right: 2%;
}
.baguetteBox-button#previous-button {
  left: 2%;
}
.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}
.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}

/*
    Preloader
    Borrowed from http://tobiasahlin.com/spinkit/
*/
.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: bounce 2s infinite ease-in-out;
}

.baguetteBox-double-bounce2 {
  animation-delay: -1s;
}

@keyframes bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
html {
  font-family: "Jost", sans-serif;
  font-weight: var(--font-weight);
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--color-text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1 {
  font-size: var(--font-step-1);
  padding-bottom: 0.75em;
}
@media only screen and (max-width: 68rem) {
  h1 {
    line-height: 1.25;
  }
}

h2 {
  font-size: var(--font-step-3);
  padding-bottom: var(--spacer-sm);
  max-width: 35em;
  opacity: 0.55;
}
@media only screen and (max-width: 68rem) {
  h2 {
    font-size: 1em;
  }
}

h3 {
  font-size: var(--font-step-2);
  padding-bottom: var(--spacer-sm);
  color: #43506E;
  line-height: 1.25;
}
@media only screen and (max-width: 42rem) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: var(--font-step-2);
}

p {
  padding-bottom: 1rem;
}

a {
  color: #000;
  background-color: #F1F5FF;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
  background-color: #bed1ff;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

small {
  font-size: var(--font-step-5);
}

.page__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.75em 0;
  background: #FFF;
  z-index: 2;
}
@media only screen and (max-width: 1305px) {
  .page__header {
    width: 98%;
  }
}
@media only screen and (max-width: 68rem) {
  .page__header {
    width: 100%;
  }
}
@media only screen and (max-width: 42rem) {
  .page__header {
    padding: 0;
  }
}
.page__header a {
  background: none;
}
.page__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media only screen and (max-width: 68rem) {
  .page__logo {
    margin-left: 1em;
  }
}
.page__logo:hover, .page__logo:focus {
  background: none;
}
.page__logo img {
  float: left;
  margin-right: 1em;
  max-width: 92px;
}
@media only screen and (max-width: 1305px) {
  .page__logo img {
    max-width: 92px;
  }
}
@media only screen and (max-width: 42rem) {
  .page__logo img {
    padding-top: 0.75em;
  }
}
.page__logo div {
  display: block;
  overflow: hidden;
  float: left;
}
@media only screen and (max-width: 42rem) {
  .page__logo div {
    display: none;
  }
}
.page__logo div h1, .page__logo div p {
  font-size: var(--font-step-3);
  font-weight: 600;
  padding: 0;
  margin: 0.35em auto 0;
  max-width: 20em;
  line-height: 1.25;
}
@media only screen and (max-width: 68rem) {
  .page__logo div h1, .page__logo div p {
    font-size: 1em;
  }
}
.page__logo small {
  color: #7C7C7C;
}
@media only screen and (max-width: 68rem) {
  .page__logo small {
    font-size: 0.75em;
  }
}
.page__footer--main {
  color: #FFF;
  padding: var(--spacer-lg) 0;
}
.page__footer--main a {
  color: #FFF;
  background: none;
  transition: all 0.8s;
}
.page__footer--main a:hover, .page__footer--main a:focus {
  background-color: #56678e;
  text-decoration: underline;
}
.page__footer--main .btn {
  margin-top: 1em;
  display: inline-block;
}
.page__footer--main .btn:hover, .page__footer--main .btn:focus {
  text-decoration: none;
}
.page__footer--meta {
  display: flex;
  justify-content: space-between;
  color: #7C7C7C;
  padding: var(--spacer-sm) 0;
}
.page__footer--meta p {
  font-size: var(--font-step-5) !important;
  line-height: 2.5;
}
@media only screen and (max-width: 68rem) {
  .page__footer--meta p {
    display: none;
  }
}
.page__footer--meta ul li {
  display: inline-block;
}
.page__footer--meta ul li a {
  font-size: var(--font-step-5);
  color: #7C7C7C;
  background: none;
  text-decoration: none;
}
.page__footer--meta ul li a:hover, .page__footer--meta ul li a:focus {
  background: none;
  text-decoration: underline;
}
.page__footer p, .page__footer a {
  font-size: var(--font-step-4);
  padding-bottom: 0;
}
.page__footer h3 {
  font-size: 26px;
  padding-bottom: var(--spacer-sm);
  color: #FFF;
}
@media only screen and (max-width: 68rem) {
  .page__nav {
    width: 100%;
    display: block;
    background: #43506E;
    margin-top: 1em;
  }
}
.page__nav--main {
  margin-top: 1.5em;
}
@media only screen and (max-width: 68rem) {
  .page__nav--main {
    display: none;
    margin-top: 1em;
    margin-bottom: 1em;
  }
}
.page__nav ul li {
  display: inline-block;
  /*
  				&:last-of-type{
  					a{
  						background: $highlightBlue;
  						color: #FFF;
  						text-decoration: none;
  						padding: .35em var(--spacer-sm);

  						&:hover,
  						&:focus{
  							background: darken($highlightBlue,5%);
  						}

  						@media only screen and (max-width: $firstBP){
  						background: $darkBlue;
  						color: #FFF;
  						}
  					}

  */
}
@media only screen and (max-width: 68rem) {
  .page__nav ul li {
    display: block;
  }
}
.page__nav ul li a {
  margin-left: var(--spacer-md);
  text-decoration: none;
}
@media only screen and (max-width: 1305px) {
  .page__nav ul li a {
    margin-left: 0.5em;
  }
}
@media only screen and (max-width: 68rem) {
  .page__nav ul li a {
    margin-right: var(--spacer-md);
  }
}
@media only screen and (max-width: 68rem) {
  .page__nav ul li a {
    padding: 0.5em 0;
    display: block;
    color: #FFF;
  }
}
.page__nav ul li:hover > ul {
  display: block;
}
.page__nav ul li:last-of-type > ul {
  margin-left: -8.75em;
}
@media only screen and (max-width: 68rem) {
  .page__nav ul li:last-of-type > ul {
    margin-left: 1.25em;
  }
}
.page__nav ul li ul {
  position: absolute;
  display: none;
  z-index: 1;
  padding-top: 2.6em;
  min-width: 280px;
}
@media only screen and (max-width: 68rem) {
  .page__nav ul li ul {
    display: block;
    width: 100%;
    font-size: 0.85em;
    margin-left: 1em;
    position: relative;
    padding-top: 0;
    margin-bottom: 1em;
  }
}
.page__nav ul li ul li {
  display: block;
}
.page__nav ul li ul li a {
  margin-left: 0;
  text-decoration: none;
  background: #FFF;
  padding: 0.5em 1em;
  display: block;
}
.page__nav ul li ul li a:hover, .page__nav ul li ul li a:focus {
  background: #CDDBFD;
}
@media only screen and (max-width: 68rem) {
  .page__nav ul li ul li a {
    background: #43506E;
    color: #FFF;
  }
  .page__nav ul li ul li a:hover, .page__nav ul li ul li a:focus {
    background: #43506E;
  }
}
.page__nav ul li ul li:last-of-type a {
  background: #FFF;
  color: #000;
  padding: 0.5em 1em;
}
.page__nav ul li ul li:last-of-type a:hover, .page__nav ul li ul li:last-of-type a:focus {
  background: #D5E0FD;
}
@media only screen and (max-width: 68rem) {
  .page__nav ul li ul li:last-of-type a {
    background: #43506E;
    color: #FFF;
  }
  .page__nav ul li ul li:last-of-type a:hover, .page__nav ul li ul li:last-of-type a:focus {
    background: #43506E;
  }
}
.page__nav input[type=checkbox] {
  display: none;
}
.page__nav input[type=checkbox]:checked ~ #menu {
  display: block;
}
.page__nav input[type=checkbox]:checked + label {
  position: absolute;
}
.page__nav input[type=checkbox]:checked + label .page__nav__trigger__barset .top {
  transform: translateY(8px) rotateZ(45deg);
}
.page__nav input[type=checkbox]:checked + label .page__nav__trigger__barset .middle {
  display: none;
}
.page__nav input[type=checkbox]:checked + label .page__nav__trigger__barset .bottom {
  transform: translateY(-5px) rotateZ(-45deg);
}
.page__nav__trigger {
  position: absolute;
  top: var(--spacer-lg);
  right: var(--spacer-lg);
  z-index: 12;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 68rem) {
  .page__nav__trigger {
    right: var(--spacer-sm);
  }
}
.page__nav__trigger--menu {
  font-size: 0.75em;
  margin-top: 0em;
  display: block;
  margin-left: -4em;
  position: absolute;
  letter-spacing: 1px;
}
.page__nav__trigger__barset {
  cursor: pointer;
  display: inline-block;
  width: auto;
  margin: 0 auto 0;
}
@media only screen and (max-width: 68rem) {
  .page__nav__trigger__barset {
    margin: -0.75em auto 0;
  }
}
.page__nav__trigger__bar {
  display: block;
  height: 1px;
  width: 50px;
  background: #000000;
  margin: 12px auto;
  transition: all 0.8s ease;
}
.page__nav__trigger, .page__nav__checkbox {
  display: none;
}
@media only screen and (max-width: 68rem) {
  .page__nav__trigger, .page__nav__checkbox {
    display: block;
  }
}

.main__content.columns {
  column-count: 2;
  column-gap: var(--spacer-lg);
}
@media only screen and (max-width: 68rem) {
  .main__content.columns {
    column-count: 1;
  }
}
.main__content.columns p {
  break-inside: avoid;
}
.main__content p {
  padding-bottom: var(--spacer-sm);
}
.main__content a {
  background-color: #F1F5FF;
}
.main__content a:hover, .main__content a:focus {
  background-color: #d8e3ff;
}
.main__content ul {
  margin-left: 1em;
  list-style-type: circle;
}
.main__content ul li:last-child {
  padding-bottom: var(--spacer-sm);
}
.main__content h3 {
  padding-top: var(--spacer-md);
}

.bg-color--light {
  background-color: #F1F5FF;
}
.bg-color--dark {
  background-color: #43506E;
}

.badge--emergency {
  background-color: #FF6767;
  color: #FFF;
  position: fixed;
  z-index: 1;
  right: -3em;
  top: 40%;
  transform: rotate(-90deg);
  padding: 0 1em;
  text-decoration: none;
}
@media only screen and (max-width: 68rem) {
  .badge--emergency {
    top: 50%;
    position: absolute;
  }
}
.badge--emergency:hover, .badge--emergency:focus {
  background-color: #ff3434;
}

.btn {
  background: #7593B7 !important;
  color: #FFF;
  text-decoration: none;
  padding: 0.5em var(--spacer-sm);
  transition: all 0.8s;
  display: inline-block;
}
.btn:hover, .btn:focus {
  background: #6486ae !important;
}

.cmnstr, .cmnstr-button {
  font-size: 0.75rem !important;
}

.cmstr {
  background: rgba(255, 255, 255, 0.9) !important;
}

.cmnstr-table {
  font-size: 0.75em;
}
.cmnstr-table td {
  padding: 0.5em 1em !important;
}

dialog {
  width: 50%;
  position: fixed;
  z-index: 200;
  margin: 3rem auto;
  border: 1px solid #E0E0E0;
  box-shadow: 0 0 10px 1px #43506E;
  padding: 3rem;
}
@media only screen and (max-width: 68rem) {
  dialog {
    width: 90%;
    padding: 2rem;
  }
}
@media only screen and (max-width: 42rem) {
  dialog {
    margin: 0rem auto;
  }
  dialog h3 {
    margin-top: 2rem;
  }
}
dialog form .close_dialog {
  position: absolute;
  right: 2rem;
  top: 2rem;
  cursor: pointer;
  border-style: none;
  background-color: #7593B7;
}
dialog form .close_dialog svg {
  transform: rotate(45deg);
}
dialog form .close_dialog:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 68rem) {
  dialog form .close_dialog {
    right: 1rem;
    top: 1rem;
  }
}

.breadcrumb {
  margin-top: 1.45em;
  padding: 0.75em 0;
}
.breadcrumb ol {
  display: flex;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item:last-of-type > a {
  text-decoration: underline;
}
.breadcrumb__item:nth-last-child(2) {
  display: flex;
}
.breadcrumb__item:nth-last-child(2):before {
  content: "";
  display: none;
}
.breadcrumb__item:not(:last-child):after {
  content: "›";
  color: #FFF;
  margin: 0 0.5em;
}
.breadcrumb__item a {
  text-decoration: none;
  font-size: 15px;
  color: #FFF;
  background: none;
  display: block;
  max-width: 150px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.listing__accordion {
  padding: var(--spacer-xs) 0;
  position: relative;
  max-width: 45em;
}
.listing__accordion h2 {
  font-size: var(--font-step-1);
  font-weight: 400;
  color: #43506E;
  padding-bottom: var(--spacer-sm);
  padding-top: var(--spacer-lg);
  max-width: 100%;
  opacity: 1;
}
@media only screen and (max-width: 68rem) {
  .listing__accordion h2 {
    font-size: 1.35em;
  }
}
.listing__accordion .subtitle {
  margin-bottom: var(--spacer-md);
}
.listing__accordion h3 {
  margin-bottom: var(--spacer-md);
}
.listing__accordion--wrapper {
  display: block;
  overflow: hidden;
}
.listing__accordion--wrapper:last-of-type .listing__accordion--item {
  border-bottom: none;
}
.listing__accordion--item {
  border-bottom: 1px solid #E0E0E0;
  padding: var(--spacer-sm) 0;
}
.listing__accordion--label {
  justify-content: space-between;
  cursor: pointer;
  font-size: var(--font-step-3);
  font-weight: 400;
}
@media only screen and (max-width: 68rem) {
  .listing__accordion--label {
    font-size: 0.85em;
  }
}
.listing__accordion--label svg {
  float: right;
  transition: all 0.8s;
}
.listing__accordion input:checked ~ .listing__accordion--content {
  max-height: 100%;
}
.listing__accordion input:checked ~ .listing__accordion--content article {
  padding: var(--spacer-sm) 0 0;
  border-top: 1px solid #E0E0E0;
  margin-top: 1em;
}
.listing__accordion__color-bg {
  background: #F1F5FF;
  width: 45%;
  height: 20em;
  position: absolute;
  right: 0;
  top: 20%;
  z-index: -1;
}
@media only screen and (max-width: 68rem) {
  .listing__accordion__color-bg {
    display: none;
  }
}
.listing__accordion__graphic img {
  width: 80%;
  margin-top: 18%;
}
@media only screen and (max-width: 68rem) {
  .listing__accordion__graphic img {
    width: 100% !important;
    margin-top: 0;
  }
}
.listing__accordion input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.listing__accordion--content {
  overflow: hidden;
  max-height: 0;
  font-size: var(--font-step-4);
}
.listing__accordion--content a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #6ebde7;
  width: 0%;
  display: block;
  background: rgba(128, 225, 183, 0.5);
  height: 1.25em;
  z-index: -1;
  border-bottom: none;
}
.listing__accordion--content a:hover, .listing__accordion--content a:focus {
  color: black;
}
.listing__accordion--content a:hover:after, .listing__accordion--content a:focus:after {
  width: 100%;
}

.change-order .listing__accordion:first-of-type {
  order: 2;
}
.change-order .listing__accordion__color-bg {
  left: 0;
  right: auto;
}

.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}
.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}
.tns-t-ct {
  width: 2333.3333333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}
.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714286%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

.tns-nav > [aria-controls] {
  width: 9px;
  height: 9px;
  padding: 0;
  margin: 0 5px;
  border-radius: 50%;
  background: #ddd;
  border: 0;
}

.tns-nav > .tns-nav-active {
  background: #999;
}

.tns-outer {
  position: relative;
}

.tns-ovh {
  max-width: 90%;
  margin: 0 auto;
}
@media only screen and (max-width: 68rem) {
  .tns-ovh {
    max-width: 100%;
  }
}

[data-controls] {
  border: 0;
  padding: 0;
  position: absolute;
  top: 45%;
  z-index: 1;
  background: transparent;
}
@media only screen and (max-width: 68rem) {
  [data-controls] {
    top: 0;
    position: relative;
  }
  [data-controls] svg {
    width: 80px;
    height: 80px;
  }
}

[data-controls=prev] {
  left: -0.5em;
}

[data-controls=next] {
  right: -0.5em;
}

@media only screen and (max-width: 68rem) {
  .tns-controls {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

.hero {
  margin: 0 auto;
  padding: var(--spacer-md) 0;
}
@media only screen and (max-width: 42rem) {
  .hero {
    margin-bottom: 2em;
  }
}
.hero .tns-ovh {
  max-width: 100%;
}
.hero .tns-outer {
  position: relative;
}
.hero .tns-outer .tns-nav {
  position: absolute;
  bottom: -3em;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.hero .tns-outer .tns-nav > [aria-controls] {
  width: 40px;
  border-radius: 0;
  height: 4px;
  background: #B4BCD0;
  margin-right: var(--spacer-xs);
}
.hero .tns-outer .tns-nav > .tns-nav-active {
  background: #799FFF;
}
.hero .carousel {
  margin: 0 auto;
  display: block;
  text-align: center;
}
.hero__item {
  position: relative;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 68rem) {
  .hero__item {
    min-height: 0;
    height: 15em;
  }
}
.hero__item img, .hero__item picture {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media only screen and (max-width: 68rem) {
  .hero__item img, .hero__item picture {
    min-height: 0;
    height: 15em;
  }
}

.intro {
  padding: var(--spacer-md) 0 0;
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: var(--spacer-lg);
}
.intro__preamble {
  padding-top: var(--spacer-md);
  color: #43506E;
}
.intro__bg {
  position: absolute;
  width: 90%;
  top: -20%;
  opacity: 0.02;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.poc {
  position: relative;
  display: block;
  overflow: hidden;
}
.poc__item {
  z-index: 1;
  background: #FFF;
  padding: 0.45em;
  text-align: center;
}
.poc__item img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 0.5rem;
}
.poc__item a {
  background: none;
}
.poc__item a:hover, .poc__item a:focus {
  background: none;
}
.poc__item h3 {
  font-size: var(--font-step-3);
  padding-bottom: var(--spacer-xs);
  padding-top: var(--spacer-xs);
}
.poc__item small {
  display: block;
}
.poc__item .btn {
  font-size: 16px;
  margin-top: var(--spacer-sm);
  margin-bottom: var(--spacer-sm);
}
.poc--detail .listing__accordion__graphic img {
  padding-top: var(--spacer-lg);
  margin-top: 0;
}
@media only screen and (max-width: 68rem) {
  .poc--detail .listing__accordion__graphic img {
    max-width: 220px;
  }
}
.poc__bg {
  position: absolute;
  width: 90%;
  top: -20%;
  opacity: 0.02;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

iframe {
  max-width: 100%;
}
@media only screen and (max-width: 68rem) {
  iframe {
    height: 250px;
  }
}

@media only screen and (max-width: 68rem) {
  .gallery {
    width: 85%;
    position: relative;
  }
}
.gallery .tns-controls button {
  background-color: #7593B7;
}
.gallery .tns-controls [data-controls=prev] {
  left: -1rem;
}
.gallery .tns-controls [data-controls=next] {
  right: -1rem;
}
@media only screen and (max-width: 68rem) {
  .gallery .tns-controls [data-controls=prev],
.gallery .tns-controls [data-controls=next] {
    display: none;
  }
}
.gallery ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.gallery ul li {
  width: 33%;
}
.gallery ul li a {
  background-color: #fff;
}
.gallery ul li a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .tns-ovh {
  max-width: 100%;
}

/*# sourceMappingURL=main.css.map */
