@charset "UTF-8";
/* Base - site-specific settings */
/*Theme colors*/
/* General colors */
/*General typography*/
/*Error*/
/*Color options*/
.color-black {
  color: #293033;
}

.color-white {
  color: #FFF;
}

.color-gray-medium {
  color: #E3E4E4;
}

/*Background colors options*/
.bg-black {
  background-color: #293033;
  color: #FFF;
}

.bg-white {
  background-color: #FFF;
}

.bg-gray-dark {
  background: #3C4245 url(../images/backgrounds/bg-noise-dark.jpg) center center/cover no-repeat;
}
.bg-gray-dark p {
  color: #FFF;
}

.bg-paper-dark {
  background: #3C4245 url(../images/backgrounds/bg-paper-dark.jpg) center center/cover no-repeat;
  color: #FFF;
}
.bg-paper-dark p {
  color: #FFF;
}

.bg-paper-light {
  background: #3C4245 url(../images/backgrounds/bg-paper-light.jpg) center center/cover no-repeat;
}

/*Global Options*/
/*Typography*/
/*Grid*/
/*Gutters*/
/*Used to set the padding on .container-fluid, per breakpoint*/
/*Container max width*/
/*Breakpoints*/
/*Container Widths*/
/*Transition settings*/
/*Modals*/
:root {
  --header-height: 20rem;
  --header-background: transparent;
  --site-logo: url(../images/branding/logo.svg);
  --color-navbar-toggle: #293033;
  --color-navbar-links: #293033;
}

/*Custom fonts*/
@font-face {
  font-family: "AkzidenzGroteskBE-Bold";
  src: local("Berthold Akzidenz Grotesk Bold"), local("AkzidenzGroteskBE-Bold"), url("../fonts/AkzidenzGroteskBE-Bold.woff2") format("woff2"), url("../fonts/AkzidenzGroteskBE-Bold.woff") format("woff"), url("../fonts/AkzidenzGroteskBE-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AkzidenzGroteskBE-Md";
  src: local("Berthold Akzidenz Grotesk Medium"), local("AkzidenzGroteskBE-Md"), url("../fonts/AkzidenzGroteskBE-Md.woff2") format("woff2"), url("../fonts/AkzidenzGroteskBE-Md.woff") format("woff"), url("../fonts/AkzidenzGroteskBE-Md.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AkzidenzGroteskBE-Regular";
  src: local("Berthold Akzidenz Grotesk Regular"), local("AkzidenzGroteskBE-Regular"), url("../fonts/AkzidenzGroteskBE-Regular.woff2") format("woff2"), url("../fonts/AkzidenzGroteskBE-Regular.woff") format("woff"), url("../fonts/AkzidenzGroteskBE-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FoundationSans-Roman";
  src: local("Foundation Sans Roman"), local("FoundationSans-Roman"), url("../fonts/FoundationSans-Roman.woff2") format("woff2"), url("../fonts/FoundationSans-Roman.woff") format("woff"), url("../fonts/FoundationSans-Roman.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*font mixins*/
/* Vendor - unedited vendor base styles */
/*Bootstrap grid/reset*/
/*!
 * Bootstrap Grid v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 5px);
  padding-left: var(--bs-gutter-x, 5px);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
   .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
   .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
   .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
   .container {
    max-width: 1140px;
  }
}
@media (min-width: 1500px) {
   .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.g-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2 {
  --bs-gutter-y: 0.5rem;
}

@media (min-width: 400px) {

  .col-ms-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-ms-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-ms-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-ms-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-ms-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}
@media (min-width: 576px) {

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 768px) {

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }
}
@media (min-width: 992px) {

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }
}
@media (min-width: 1200px) {

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
}
@media (min-width: 1500px) {

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
}
@media (min-width: 1600px) {

  .col-xxxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-center {
  align-items: center !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

@media (min-width: 400px) {

  .mt-ms-0 {
    margin-top: 0 !important;
  }

  .mt-ms-1 {
    margin-top: 0.25rem !important;
  }

  .mt-ms-2 {
    margin-top: 0.5rem !important;
  }

  .mt-ms-3 {
    margin-top: 1rem !important;
  }

  .mt-ms-4 {
    margin-top: 1.5rem !important;
  }

  .mt-ms-5 {
    margin-top: 3rem !important;
  }

  .mt-ms-auto {
    margin-top: auto !important;
  }

  .mb-ms-0 {
    margin-bottom: 0 !important;
  }

  .mb-ms-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-ms-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-ms-3 {
    margin-bottom: 1rem !important;
  }

  .mb-ms-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-ms-5 {
    margin-bottom: 3rem !important;
  }

  .mb-ms-auto {
    margin-bottom: auto !important;
  }

  .pt-ms-0 {
    padding-top: 0 !important;
  }

  .pt-ms-1 {
    padding-top: 0.25rem !important;
  }

  .pt-ms-2 {
    padding-top: 0.5rem !important;
  }

  .pt-ms-3 {
    padding-top: 1rem !important;
  }

  .pt-ms-4 {
    padding-top: 1.5rem !important;
  }

  .pt-ms-5 {
    padding-top: 3rem !important;
  }

  .pb-ms-0 {
    padding-bottom: 0 !important;
  }

  .pb-ms-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-ms-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-ms-3 {
    padding-bottom: 1rem !important;
  }

  .pb-ms-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-ms-5 {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 576px) {

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 768px) {

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 992px) {

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 1200px) {

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 1500px) {

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 1600px) {

  .mt-xxxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxxl-auto {
    margin-top: auto !important;
  }

  .mb-xxxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }

  .pt-xxxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxxl-5 {
    padding-top: 3rem !important;
  }

  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxxl-5 {
    padding-bottom: 3rem !important;
  }
}
/*!
 * Bootstrap Reboot v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: calc(1.305rem + 0.66vw);
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px) {
  body {
    font-size: 1.8rem;
  }
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 4.5rem;
  }
}

h2 {
  font-size: calc(1.485rem + 2.82vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 3.6rem;
  }
}

h3 {
  font-size: calc(1.44rem + 2.28vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 3.15rem;
  }
}

h4 {
  font-size: calc(1.395rem + 1.74vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 2.7rem;
  }
}

h5 {
  font-size: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  h5 {
    font-size: 2.25rem;
  }
}

h6 {
  font-size: calc(1.305rem + 0.66vw);
}
@media (min-width: 1200px) {
  h6 {
    font-size: 1.8rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

/*!
 * Bootstrap Utilities v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.position-relative {
  position: relative !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-center {
  align-items: center !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

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

/* rtl:begin:remove */

/* rtl:end:remove */

.bg-primary {
  background-color: #0d6efd !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #198754 !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.bg-body {
  background-color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 400px) {

  .mt-ms-0 {
    margin-top: 0 !important;
  }

  .mt-ms-1 {
    margin-top: 0.25rem !important;
  }

  .mt-ms-2 {
    margin-top: 0.5rem !important;
  }

  .mt-ms-3 {
    margin-top: 1rem !important;
  }

  .mt-ms-4 {
    margin-top: 1.5rem !important;
  }

  .mt-ms-5 {
    margin-top: 3rem !important;
  }

  .mt-ms-auto {
    margin-top: auto !important;
  }

  .mb-ms-0 {
    margin-bottom: 0 !important;
  }

  .mb-ms-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-ms-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-ms-3 {
    margin-bottom: 1rem !important;
  }

  .mb-ms-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-ms-5 {
    margin-bottom: 3rem !important;
  }

  .mb-ms-auto {
    margin-bottom: auto !important;
  }

  .pt-ms-0 {
    padding-top: 0 !important;
  }

  .pt-ms-1 {
    padding-top: 0.25rem !important;
  }

  .pt-ms-2 {
    padding-top: 0.5rem !important;
  }

  .pt-ms-3 {
    padding-top: 1rem !important;
  }

  .pt-ms-4 {
    padding-top: 1.5rem !important;
  }

  .pt-ms-5 {
    padding-top: 3rem !important;
  }

  .pb-ms-0 {
    padding-bottom: 0 !important;
  }

  .pb-ms-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-ms-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-ms-3 {
    padding-bottom: 1rem !important;
  }

  .pb-ms-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-ms-5 {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 576px) {

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 768px) {

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 992px) {

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 1200px) {

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 1500px) {

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 1600px) {

  .mt-xxxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxxl-auto {
    margin-top: auto !important;
  }

  .mb-xxxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }

  .pt-xxxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxxl-5 {
    padding-top: 3rem !important;
  }

  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxxl-5 {
    padding-bottom: 3rem !important;
  }
}
/*Optional components*/
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: calc(1.305rem + 0.66vw);
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
@media (min-width: 1200px) {
  .dropdown-menu {
    font-size: 1.8rem;
  }
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #293033;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 1;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 800px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 470px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 55%;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 100%;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
@media (max-width: 399.98px) {
  .modal-fullscreen-ms-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-ms-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-ms-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1499.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1599.98px) {
  .modal-fullscreen-xxxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxxl-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-xxxl-down .modal-body {
    overflow-y: auto;
  }
}
/*Global*/
/*Theme colors*/
/* General colors */
/*General typography*/
/*Error*/
/*Color options*/
.color-black {
  color: #293033;
}

.color-white {
  color: #FFF;
}

.color-gray-medium {
  color: #E3E4E4;
}

/*Background colors options*/
.bg-black {
  background-color: #293033;
  color: #FFF;
}

.bg-white {
  background-color: #FFF;
}

.bg-gray-dark {
  background: #3C4245 url(../images/backgrounds/bg-noise-dark.jpg) center center/cover no-repeat;
}
.bg-gray-dark p {
  color: #FFF;
}

.bg-paper-dark {
  background: #3C4245 url(../images/backgrounds/bg-paper-dark.jpg) center center/cover no-repeat;
  color: #FFF;
}
.bg-paper-dark p {
  color: #FFF;
}

.bg-paper-light {
  background: #3C4245 url(../images/backgrounds/bg-paper-light.jpg) center center/cover no-repeat;
}

/*Container max width setup*/
/*Columns*/
/*List reset*/
/*Button reset*/
/*Field reset*/
/*Global hamburger toggle animation*/
@keyframes hamburgerToggle {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
  }
}
/*Container options*/
.container-large {
  position: relative;
}
@media (max-width: 767.98px) {
  .container-large {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .container-large {
    margin-left: auto;
    margin-right: auto;
    max-width: 2095px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .container-large {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .container-large {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}
@media (min-width: 1500px) {
  .container-large {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

.container-offset {
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .container-offset {
    margin-left: auto;
    margin-right: auto;
    max-width: 2095px;
  }
}
@media (max-width: 767.98px) {
  .container-offset {
    padding-left: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .container-offset {
    padding-left: 5vw;
  }
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .container-offset {
    padding-left: 10vw;
  }
}
@media (min-width: 1500px) {
  .container-offset {
    padding-left: 6vw;
  }
}

.container-body {
  position: relative;
}

/*Removes gutters on any bootstrap row*/
/*Column gutter options*/
.g-small {
  margin: -5px;
}
.g-small > .col,
.g-small > [class*=col-] {
  padding: 5px;
}

@media (max-width: 991.98px) {
  .g-large {
    margin: -20px;
  }
}
@media (min-width: 992px) {
  .g-large {
    margin: -50px;
  }
}
@media (max-width: 991.98px) {
  .g-large > .col,
.g-large > [class*=col-] {
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .g-large > .col,
.g-large > [class*=col-] {
    padding: 50px;
  }
}

/*Adds padding between columns (X axis)*/

.gx-medium {
  margin-left: -20px;
  margin-right: -20px;
}
.gx-medium > .col,
.gx-medium > [class*=col-] {
  padding-left: 20px;
  padding-right: 20px;
}

/*Adds padding between columns (Y axis)*/
.gy-large {
  margin-bottom: -3.5em;
}
.gy-large > .col,
.gy-large > [class*=col-] {
  padding-bottom: 3.5em;
}

.gy-medium {
  margin-bottom: -2em;
}
.gy-medium > .col,
.gy-medium > [class*=col-] {
  padding-bottom: 2em;
}

@media (max-width: 767.98px) {
  .gy-medium-md {
    margin-bottom: -1em;
  }
}
@media (min-width: 768px) {
  .gy-medium-md {
    margin-bottom: -2em;
  }
}
@media (max-width: 767.98px) {
  .gy-medium-md > .col,
.gy-medium-md > [class*=col-] {
    padding-bottom: 1em;
  }
}
@media (min-width: 768px) {
  .gy-medium-md > .col,
.gy-medium-md > [class*=col-] {
    padding-bottom: 2em;
  }
}

@media (min-width: 1200px) {
  .col-xl-20 {
    flex: 0 0 auto;
    width: 20%;
  }
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  html {
    scroll-padding-top: 80px;
  }
}
@media (min-width: 1500px) {
  html {
    scroll-padding-top: 115px;
  }
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "AkzidenzGroteskBE-Regular";
  font-weight: normal;
  font-style: normal;
  background: #FEFEFE url(../images/backgrounds/bg-paper-light.jpg) top left/cover no-repeat;
  color: #293033;
  counter-reset: blockCounter;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  margin: 0;
  position: relative;
  text-align: left;
  /*Prevents body from scrolling*/
}
@media (max-width: 1199.98px) {
  body {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  body {
    font-size: 1.7rem;
  }
}
@media (min-width: 1500px) {
  body {
    font-size: 1.8rem;
  }
}
body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  height: auto;
}

picture {
  display: block;
}

address {
  margin-bottom: 0;
}

/*Utilities*/
/*Responsive image options*/
.img-responsive {
  height: auto;
  width: 100%;
}

.img-fluid {
  height: auto;
  max-width: 100%;
}

/*Object cover*/
.img-cover {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.cover-tl {
  -o-object-position: top left;
     object-position: top left;
}

/*Container for small lottie icons*/
.img-lottie {
  height: 80px;
  width: 80px;
}

/*Force all icons in each column to equal height*/
.icon-container {
  align-items: center;
  display: flex;
  height: 80px;
}

/*Office animation (we are here page)*/
.office-container {
  height: auto;
  width: 100%;
  z-index: 10;
}
@media (max-width: 991.98px) {
  .office-container {
    margin-top: 50px;
    position: relative;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .office-container {
    margin-top: 80px;
  }
}
@media (min-width: 992px) {
  .office-container {
    max-width: clamp(300px, 45vw, 1120px);
    position: absolute;
    right: 0;
    top: 0;
  }
}
.office-container:after {
  background: center center/contain no-repeat;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 2.5s;
}
.office-container:after {
  background-image: url("../images/office/office-image.png");
  z-index: -1;
}
.office-container.in-view:after {
  opacity: 1;
}
.office-container.in-view .office-title {
  opacity: 1;
  transition-delay: 0.5s;
}
.office-container.in-view .office-lines {
  opacity: 1;
  transition-delay: 0.8s;
}
.office-container.in-view .office-dot {
  opacity: 1;
  transition-delay: 1.1s;
}
.office-container.in-view .office-marker {
  opacity: 0.5;
  transition-delay: 1.4s;
}

.office-title,
.office-lines,
.office-dot,
.office-marker {
  opacity: 0;
  transition: 1s;
}

/*Used to apply top/bottom padding to any block*/
@media (max-width: 767.98px) {
  .pb-xlarge {
    padding-bottom: 90px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pb-xlarge {
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .pb-xlarge {
    padding-bottom: 150px;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .pb-xlarge {
    padding-bottom: 185px;
  }
}
@media (min-width: 1600px) {
  .pb-xlarge {
    padding-bottom: 230px;
  }
}

@media (max-width: 767.98px) {
  .pt-xlarge {
    padding-top: 90px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pt-xlarge {
    padding-top: 120px;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .pt-xlarge {
    padding-top: 150px;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .pt-xlarge {
    padding-top: 185px;
  }
}
@media (min-width: 1600px) {
  .pt-xlarge {
    padding-top: 230px;
  }
}

@media (max-width: 767.98px) {
  .pb-large {
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pb-large {
    padding-bottom: 110px;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .pb-large {
    padding-bottom: 140px;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .pb-large {
    padding-bottom: 170px;
  }
}
@media (min-width: 1600px) {
  .pb-large {
    padding-bottom: 200px;
  }
}

@media (max-width: 767.98px) {
  .pt-large {
    padding-top: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pt-large {
    padding-top: 110px;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .pt-large {
    padding-top: 140px;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .pt-large {
    padding-top: 170px;
  }
}
@media (min-width: 1600px) {
  .pt-large {
    padding-top: 200px;
  }
}

@media (max-width: 767.98px) {
  .pb-medium {
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pb-medium {
    padding-bottom: 85px;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .pb-medium {
    padding-bottom: 100px;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .pb-medium {
    padding-bottom: 120px;
  }
}
@media (min-width: 1600px) {
  .pb-medium {
    padding-bottom: 140px;
  }
}

@media (max-width: 767.98px) {
  .pt-medium {
    padding-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pt-medium {
    padding-top: 85px;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .pt-medium {
    padding-top: 100px;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .pt-medium {
    padding-top: 120px;
  }
}
@media (min-width: 1600px) {
  .pt-medium {
    padding-top: 140px;
  }
}

@media (max-width: 991.98px) {
  .pb-small {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .pb-small {
    padding-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .pb-small {
    padding-bottom: 70px;
  }
}

@media (max-width: 991.98px) {
  .pt-small {
    padding-top: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .pt-small {
    padding-top: 60px;
  }
}
@media (min-width: 1200px) {
  .pt-small {
    padding-top: 70px;
  }
}

@media (max-width: 1499.98px) {
  .pb-xsmall {
    padding-bottom: 8px;
  }
}
@media (min-width: 1500px) {
  .pb-xsmall {
    padding-bottom: 12px;
  }
}

@media (max-width: 1499.98px) {
  .pt-xsmall {
    padding-top: 8px;
  }
}
@media (min-width: 1500px) {
  .pt-xsmall {
    padding-top: 12px;
  }
}

.pr-small {
  padding-right: 20px;
}

@media (max-width: 767.98px) {
  .py-medium {
    padding-block: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .py-medium {
    padding-block: 85px;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .py-medium {
    padding-block: 100px;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .py-medium {
    padding-block: 120px;
  }
}
@media (min-width: 1600px) {
  .py-medium {
    padding-block: 140px;
  }
}

/*Used to apply top/bottom margin to any block*/
@media (max-width: 1499.98px) {
  .mb-large {
    margin-bottom: 80px;
  }
}
@media (min-width: 1500px) {
  .mb-large {
    margin-bottom: 100px;
  }
}

@media (max-width: 1499.98px) {
  .mt-large {
    margin-top: 80px;
  }
}
@media (min-width: 1500px) {
  .mt-large {
    margin-top: 100px;
  }
}

@media (max-width: 991.98px) {
  .mb-medium {
    margin-bottom: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .mb-medium {
    margin-bottom: 40px;
  }
}
@media (min-width: 1500px) {
  .mb-medium {
    margin-bottom: 50px;
  }
}

@media (max-width: 991.98px) {
  .mt-medium {
    margin-top: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .mt-medium {
    margin-top: 40px;
  }
}
@media (min-width: 1500px) {
  .mt-medium {
    margin-top: 50px;
  }
}

@media (max-width: 1499.98px) {
  .mb-small {
    margin-bottom: 15px;
  }
}
@media (min-width: 1500px) {
  .mb-small {
    margin-bottom: 20px;
  }
}

@media (max-width: 1499.98px) {
  .mt-small {
    margin-top: 15px;
  }
}
@media (min-width: 1500px) {
  .mt-small {
    margin-top: 20px;
  }
}

.mb-xsmall {
  margin-bottom: 5px;
}

.mt-xsmall {
  margin-top: 5px;
}

.mb-20 {
  margin-bottom: 20px;
}

@media (max-width: 575.98px) {
  .mt-15-xs {
    margin-top: 15px;
  }
}
/*Center align element using margin auto*/
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .mx-auto-lg {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 576px) {

  .mw-60-sm {
    max-width: 60%;
  }

  .mw-70-sm {
    max-width: 70%;
  }
}
@media (min-width: 1500px) {

  .mw-50-xxl {
    max-width: 50%;
  }
}
@media (min-width: 1600px) {

  .mw-45-xxxl {
    max-width: 45%;
  }

  .mw-80-xxxl {
    max-width: 80%;
  }
}
/* Text sizing options */

/*Text alignment options*/
.text-center {
  text-align: center;
}

/*Reponsive text alignment options*/
/*Text transform options*/

/*Fades text 80%*/

/*Used for larger paragraph text*/

/*Global paragraph styles*/
p:not(:last-child) {
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
p strong {
  letter-spacing: 0.01em;
}
p a {
  color: inherit;
  text-decoration: underline;
}
p a:hover {
  color: #B24036;
  text-decoration: underline;
}

/*Global anchor styles*/
a {
  color: inherit;
  transition: 0.3s;
}
a:hover {
  color: #B24036;
}

/*Adds underline to anchors within this element*/

/*Link color options*/

/*Small text*/
small {
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

/*Formats telephone element*/

.project-stat-value {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  font-size: clamp(4rem, 4vw, 10rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-wrap: balance;
  transform: translateY(-0.2em);
}
.project-stat-value.is-icon-increase {
  align-items: center;
  display: flex;
  gap: 1rem;
}
.project-stat-value.is-icon-increase::after {
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2268%22%20height%3D%2273%22%20viewBox%3D%220%200%2068%2073%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M30.308%2015.7298L6.51459%2039.5147L0.828612%2033.8308L34.3286%200.342772L67.8286%2033.8308L62.1426%2039.5147L38.3492%2015.7298L38.3492%2072.3428L30.308%2072.3428L30.308%2015.7298Z%22%20fill%3D%22%2381B236%22%2F%3E%3C%2Fsvg%3E") center center/contain no-repeat;
  content: "";
  display: block;
  height: 6.6rem;
  min-width: clamp(3rem, 3vw, 6.1rem);
}

/*Splits paragraph content into 2 columns*/
/*Adds styled Horizontal Rule*/

/*Adds small divider above element*/
.element-divider:before {
  content: "";
  display: block;
  height: 2px;
  margin: 0.6em 0;
  width: 30px;
}

.divider-light:before {
  background: #FFF;
}

/*Heading mixin options*/
/*Heading options*/
.page-title {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  font-size: clamp(3.5rem, 5vw, 10rem);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 3rem;
  text-wrap: balance;
  display: block;
}

.heading-xlarge {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.1;
  transform: translateY(-0.2em);
  text-wrap: balance;
  display: block;
}
@media (max-width: 767.98px) {
  .heading-xlarge {
    font-size: 3.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .heading-xlarge {
    font-size: 3.8rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .heading-xlarge {
    font-size: 4.3rem;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .heading-xlarge {
    font-size: 5.1rem;
  }
}
@media (min-width: 1600px) {
  .heading-xlarge {
    font-size: 6rem;
  }
}

.heading-large {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-wrap: balance;
  display: block;
}
@media (max-width: 767.98px) {
  .heading-large {
    font-size: 2.3rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .heading-large {
    font-size: 2.6rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .heading-large {
    font-size: 2.9rem;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .heading-large {
    font-size: 3.4rem;
  }
}
@media (min-width: 1600px) {
  .heading-large {
    font-size: 4rem;
  }
}

.heading-medium {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.6;
  text-wrap: balance;
  display: block;
}
@media (max-width: 767.98px) {
  .heading-medium {
    font-size: 2.1rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .heading-medium {
    font-size: 2.3rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .heading-medium {
    font-size: 2.6rem;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .heading-medium {
    font-size: 3rem;
  }
}
@media (min-width: 1600px) {
  .heading-medium {
    font-size: 3.6rem;
  }
}

.heading-small {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.6;
  text-wrap: balance;
  display: block;
}

.heading-feature {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.6;
  margin-bottom: 0;
  text-wrap: balance;
  display: block;
}
@media (max-width: 767.98px) {
  .heading-feature {
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .heading-feature {
    font-size: 2.6rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .heading-feature {
    font-size: 2.8rem;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .heading-feature {
    font-size: 3rem;
  }
}
@media (min-width: 1600px) {
  .heading-feature {
    font-size: 3.2rem;
  }
}

.heading-block {
  font-family: "AkzidenzGroteskBE-Regular";
  font-weight: normal;
  font-style: normal;
  align-items: center;
  counter-increment: blockCounter;
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  z-index: 10;
}
@media (max-width: 991.98px) {
  .heading-block {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .heading-block {
    position: absolute;
    top: 0;
    transform-origin: left top;
    transform: rotate(90deg);
  }
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .heading-block {
    left: 7vw;
  }
}
@media (max-width: 1199.98px) {
  .heading-block {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .heading-block {
    font-size: 1.7rem;
  }
}
@media (min-width: 1500px) {
  .heading-block {
    font-size: 1.8rem;
    left: 5vw;
  }
}
.heading-block:before {
  content: counter(blockCounter, decimal-leading-zero);
  display: block;
  text-transform: uppercase;
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .heading-block.logo-offset {
    margin-top: 4em;
  }
}
@media (min-width: 1500px) {
  .heading-block.logo-offset {
    margin-top: 5em;
  }
}
.heading-block .heading-label {
  display: flex;
  font: inherit;
  position: relative;
  width: 100%;
}
.heading-block .heading-label:before, .heading-block .heading-label:after {
  background: #293033;
  content: "";
  display: block;
  position: absolute;
}
.heading-block .heading-label:before {
  height: 2px;
  left: 1.6em;
  top: -0.7em;
  width: 35px;
}
.heading-block .heading-label:after {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  left: 4em;
  top: -0.75em;
}

.heading-light {
  color: #FFF;
}
.heading-light .heading-label:before, .heading-light .heading-label:after {
  background: #FFF;
}

.heading-dark {
  color: #293033;
}
.heading-dark .heading-label:before, .heading-dark .heading-label:after {
  background: #293033;
}

/*Adds divider below heading*/
.heading-divider:after {
  content: "";
  display: block;
  height: 2px;
  margin: 15px 0;
  width: 30px;
}
.heading-divider.color-black:after {
  background: #293033;
}
.heading-divider.color-white:after {
  background: #FFF;
}

/*Fixed gray header block*/
.section-header {
  background: #3C4245;
  z-index: 100;
}
@media (max-width: 575.98px) {
  .section-header {
    padding: 30px 20px;
  }
}
@media (min-width: 576px) and (max-width: 1199.98px) {
  .section-header {
    padding: 40px 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .section-header {
    padding: 3em 2.5em;
  }
}
@media (min-width: 768px) {
  .section-header {
    left: 0;
    position: absolute;
    top: 5px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .section-header {
    max-width: 240px;
    width: 35vw;
  }
}
@media (min-width: 1200px) {
  .section-header {
    max-width: 440px;
    width: 25vw;
  }
}
@media (min-width: 1500px) {
  .section-header {
    padding: 3em 3.5em;
  }
}
.section-header p {
  color: #CCCCCC;
}
.section-header strong {
  color: #FFF;
}

/* Text sizing options */

/*Text alignment options*/
.text-center {
  text-align: center;
}

/*Reponsive text alignment options*/
/*Text transform options*/

/*Fades text 80%*/

/*Used for larger paragraph text*/

/*Global paragraph styles*/
p:not(:last-child) {
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
p strong {
  letter-spacing: 0.01em;
}
p a {
  color: inherit;
  text-decoration: underline;
}
p a:hover {
  color: #B24036;
  text-decoration: underline;
}

/*Global anchor styles*/
a {
  color: inherit;
  transition: 0.3s;
}
a:hover {
  color: #B24036;
}

/*Adds underline to anchors within this element*/

/*Link color options*/

/*Small text*/
small {
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

/*Formats telephone element*/

.project-stat-value {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  font-size: clamp(4rem, 4vw, 10rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-wrap: balance;
  transform: translateY(-0.2em);
}
.project-stat-value.is-icon-increase {
  align-items: center;
  display: flex;
  gap: 1rem;
}
.project-stat-value.is-icon-increase::after {
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2268%22%20height%3D%2273%22%20viewBox%3D%220%200%2068%2073%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M30.308%2015.7298L6.51459%2039.5147L0.828612%2033.8308L34.3286%200.342772L67.8286%2033.8308L62.1426%2039.5147L38.3492%2015.7298L38.3492%2072.3428L30.308%2072.3428L30.308%2015.7298Z%22%20fill%3D%22%2381B236%22%2F%3E%3C%2Fsvg%3E") center center/contain no-repeat;
  content: "";
  display: block;
  height: 6.6rem;
  min-width: clamp(3rem, 3vw, 6.1rem);
}

/*Used to style Gutenberg blocks that do not contain classes direclty on elements*/
.cms-styles {
  /*Typography*/
  /*Headings*/
  /*Combined list styles*/
  /*Unordered list*/
  /*Ordered list*/
  /*Images*/
  /*Alignment options*/
}
.cms-styles h1 {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.1;
  transform: translateY(-0.2em);
  text-wrap: balance;
}
@media (max-width: 767.98px) {
  .cms-styles h1 {
    font-size: 3.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .cms-styles h1 {
    font-size: 3.8rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .cms-styles h1 {
    font-size: 4.3rem;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .cms-styles h1 {
    font-size: 5.1rem;
  }
}
@media (min-width: 1600px) {
  .cms-styles h1 {
    font-size: 6rem;
  }
}
.cms-styles h2 {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-wrap: balance;
  clear: both;
  margin-bottom: 20px;
  margin-top: 50px;
}
@media (max-width: 767.98px) {
  .cms-styles h2 {
    font-size: 2.3rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .cms-styles h2 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .cms-styles h2 {
    font-size: 2.9rem;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .cms-styles h2 {
    font-size: 3.4rem;
  }
}
@media (min-width: 1600px) {
  .cms-styles h2 {
    font-size: 4rem;
  }
}
.cms-styles h2:not(.color-white) {
  color: #293033;
}
.cms-styles h3 {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.6;
  text-wrap: balance;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .cms-styles h3 {
    font-size: 2.1rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .cms-styles h3 {
    font-size: 2.3rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .cms-styles h3 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .cms-styles h3 {
    font-size: 3rem;
  }
}
@media (min-width: 1600px) {
  .cms-styles h3 {
    font-size: 3.6rem;
  }
}
.cms-styles h3:not(.color-white) {
  color: #293033;
}
.cms-styles h4,
.cms-styles h5 {
  clear: both;
  margin-bottom: 20px;
}
.cms-styles .figure {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cms-styles .alignleft {
    margin-left: -150px;
    margin-right: 50px;
  }
}
@media (min-width: 992px) {
  .cms-styles .alignright {
    margin-right: -150px;
    margin-left: 50px;
  }
}

/*Elements*/
/*Heading mixin options*/
/*Heading options*/
.page-title {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  font-size: clamp(3.5rem, 5vw, 10rem);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 3rem;
  text-wrap: balance;
  display: block;
}

.heading-xlarge {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.1;
  transform: translateY(-0.2em);
  text-wrap: balance;
  display: block;
}
@media (max-width: 767.98px) {
  .heading-xlarge {
    font-size: 3.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .heading-xlarge {
    font-size: 3.8rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .heading-xlarge {
    font-size: 4.3rem;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .heading-xlarge {
    font-size: 5.1rem;
  }
}
@media (min-width: 1600px) {
  .heading-xlarge {
    font-size: 6rem;
  }
}

.heading-large {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-wrap: balance;
  display: block;
}
@media (max-width: 767.98px) {
  .heading-large {
    font-size: 2.3rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .heading-large {
    font-size: 2.6rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .heading-large {
    font-size: 2.9rem;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .heading-large {
    font-size: 3.4rem;
  }
}
@media (min-width: 1600px) {
  .heading-large {
    font-size: 4rem;
  }
}

.heading-medium {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.6;
  text-wrap: balance;
  display: block;
}
@media (max-width: 767.98px) {
  .heading-medium {
    font-size: 2.1rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .heading-medium {
    font-size: 2.3rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .heading-medium {
    font-size: 2.6rem;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .heading-medium {
    font-size: 3rem;
  }
}
@media (min-width: 1600px) {
  .heading-medium {
    font-size: 3.6rem;
  }
}

.heading-small {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.6;
  text-wrap: balance;
  display: block;
}

.heading-feature {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.6;
  margin-bottom: 0;
  text-wrap: balance;
  display: block;
}
@media (max-width: 767.98px) {
  .heading-feature {
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .heading-feature {
    font-size: 2.6rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .heading-feature {
    font-size: 2.8rem;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .heading-feature {
    font-size: 3rem;
  }
}
@media (min-width: 1600px) {
  .heading-feature {
    font-size: 3.2rem;
  }
}

.heading-block {
  font-family: "AkzidenzGroteskBE-Regular";
  font-weight: normal;
  font-style: normal;
  align-items: center;
  counter-increment: blockCounter;
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  z-index: 10;
}
@media (max-width: 991.98px) {
  .heading-block {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .heading-block {
    position: absolute;
    top: 0;
    transform-origin: left top;
    transform: rotate(90deg);
  }
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .heading-block {
    left: 7vw;
  }
}
@media (max-width: 1199.98px) {
  .heading-block {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .heading-block {
    font-size: 1.7rem;
  }
}
@media (min-width: 1500px) {
  .heading-block {
    font-size: 1.8rem;
    left: 5vw;
  }
}
.heading-block:before {
  content: counter(blockCounter, decimal-leading-zero);
  display: block;
  text-transform: uppercase;
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .heading-block.logo-offset {
    margin-top: 4em;
  }
}
@media (min-width: 1500px) {
  .heading-block.logo-offset {
    margin-top: 5em;
  }
}
.heading-block .heading-label {
  display: flex;
  font: inherit;
  position: relative;
  width: 100%;
}
.heading-block .heading-label:before, .heading-block .heading-label:after {
  background: #293033;
  content: "";
  display: block;
  position: absolute;
}
.heading-block .heading-label:before {
  height: 2px;
  left: 1.6em;
  top: -0.7em;
  width: 35px;
}
.heading-block .heading-label:after {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  left: 4em;
  top: -0.75em;
}

.heading-light {
  color: #FFF;
}
.heading-light .heading-label:before, .heading-light .heading-label:after {
  background: #FFF;
}

.heading-dark {
  color: #293033;
}
.heading-dark .heading-label:before, .heading-dark .heading-label:after {
  background: #293033;
}

/*Adds divider below heading*/
.heading-divider:after {
  content: "";
  display: block;
  height: 2px;
  margin: 15px 0;
  width: 30px;
}
.heading-divider.color-black:after {
  background: #293033;
}
.heading-divider.color-white:after {
  background: #FFF;
}

/*Fixed gray header block*/
.section-header {
  background: #3C4245;
  z-index: 100;
}
@media (max-width: 575.98px) {
  .section-header {
    padding: 30px 20px;
  }
}
@media (min-width: 576px) and (max-width: 1199.98px) {
  .section-header {
    padding: 40px 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .section-header {
    padding: 3em 2.5em;
  }
}
@media (min-width: 768px) {
  .section-header {
    left: 0;
    position: absolute;
    top: 5px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .section-header {
    max-width: 240px;
    width: 35vw;
  }
}
@media (min-width: 1200px) {
  .section-header {
    max-width: 440px;
    width: 25vw;
  }
}
@media (min-width: 1500px) {
  .section-header {
    padding: 3em 3.5em;
  }
}
.section-header p {
  color: #CCCCCC;
}
.section-header strong {
  color: #FFF;
}

.blockquote {
  margin-bottom: 0;
}
.blockquote p {
  margin-bottom: 0;
  position: relative;
}
.blockquote p:before, .blockquote p:after {
  line-height: 1;
}
.blockquote p:before {
  content: open-quote;
  letter-spacing: -0.2em;
  margin-left: -0.5em;
}
.blockquote p:after {
  content: close-quote;
  display: inline-block;
}

.bq-large {
  height: 100%;
}
@media (max-width: 767.98px) {
  .bq-large {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.bq-large p {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-wrap: balance;
}
@media (max-width: 767.98px) {
  .bq-large p {
    font-size: 2.3rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .bq-large p {
    font-size: 2.6rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .bq-large p {
    font-size: 2.9rem;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .bq-large p {
    font-size: 3.4rem;
  }
}
@media (min-width: 1600px) {
  .bq-large p {
    font-size: 4rem;
  }
}
@media (max-width: 575.98px) {
  .bq-large p {
    max-width: 90%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .bq-large p {
    max-width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .bq-large p {
    max-width: 50%;
  }
}
.bq-large p:before {
  position: absolute;
  right: calc(100% + 8px);
  top: 2px;
}
.bq-large footer {
  font-family: "AkzidenzGroteskBE-Bold";
  font-weight: normal;
  font-style: normal;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 1199.98px) {
  .bq-large footer {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .bq-large footer {
    font-size: 1.7rem;
  }
}
@media (min-width: 1500px) {
  .bq-large footer {
    font-size: 1.8rem;
  }
}
@media (max-width: 767.98px) {
  .bq-large footer {
    margin-bottom: 1em;
    margin-top: 1em;
  }
}
@media (min-width: 768px) {
  .bq-large footer {
    border-top: solid 1px #293033;
    margin-top: 1.7em;
    padding-top: 0.625em;
  }
}
@media (min-width: 768px) {
  .bq-large footer:after {
    background: #293033;
    border-radius: 50%;
    content: "";
    display: block;
    height: 4px;
    position: absolute;
    right: -8px;
    top: -2px;
    width: 4px;
  }
}
.bq-large cite {
  font-family: "AkzidenzGroteskBE-Regular";
  font-weight: normal;
  font-style: normal;
}

/*General button setup*/
.btn, .form-contact input.button {
  -webkit-appearance: none;
  align-items: center;
  display: inline-flex;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

/*Primary button option with solid background*/
.btn-primary {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  border: none;
  border: solid 2px;
  padding: 0;
  position: relative;
}
@media (max-width: 575.98px) {
  .btn-primary {
    font-size: 1.5rem;
  }
}
@media (min-width: 576px) and (max-width: 1199.98px) {
  .btn-primary {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .btn-primary {
    font-size: 1.7rem;
  }
}
@media (min-width: 1500px) {
  .btn-primary {
    font-size: 1.8rem;
  }
}
.btn-primary:before {
  border-radius: 50%;
  content: "";
  display: block;
  height: 4px;
  opacity: 0;
  position: absolute;
  right: -2px;
  top: -2px;
  transition-delay: 0s;
  transition: all 0.3s;
  visibility: hidden;
  width: 4px;
  z-index: 1;
}
.btn-primary span {
  align-items: center;
  display: inline-flex;
  height: 100%;
  justify-content: center;
  min-height: 2.6em;
  position: relative;
  width: 100%;
  z-index: 10;
}
@media (max-width: 575.98px) {
  .btn-primary span {
    padding: 0 13px;
  }
}
@media (min-width: 576px) {
  .btn-primary span {
    padding: 0 15px;
  }
}
.btn-primary span:before, .btn-primary span:after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: 10;
}
.btn-primary span:before {
  height: 2px;
  left: -2px;
  right: calc(100% + 2px);
  top: -2px;
}
.btn-primary span:after {
  bottom: -2px;
  right: -2px;
  top: calc(100% + 2px);
  width: 2px;
}
.btn-primary:hover:not(:disabled):before {
  opacity: 1;
  transition-delay: 0.3s;
  visibility: visible;
}
.btn-primary:hover:not(:disabled) span:before {
  right: 6px;
}
.btn-primary:hover:not(:disabled) span:after {
  top: 6px;
}

.btn-black {
  background: transparent;
  border-color: #293033;
  color: #293033;
}
.btn-black:hover:not(:disabled) {
  border-color: #B24036;
  border-right-color: transparent;
  border-top-color: transparent;
  color: #B24036;
}
.btn-black:hover:not(:disabled):before {
  background: #B24036;
}
.btn-black:hover:not(:disabled) span:before, .btn-black:hover:not(:disabled) span:after {
  background: #B24036;
}

.btn-white {
  background: transparent;
  border-color: #FFF;
  color: #FFF;
}
.btn-white:hover:not(:disabled) {
  border-color: #ED5F53;
  border-right-color: transparent;
  border-top-color: transparent;
  color: #ED5F53;
}
.btn-white:hover:not(:disabled):before {
  background: #ED5F53;
}
.btn-white:hover:not(:disabled) span:before, .btn-white:hover:not(:disabled) span:after {
  background: #ED5F53;
}

/*Down arrow button*/
.btn-arrow {
  height: 22px;
  position: relative;
  transform-origin: bottom;
  transform: rotate(45deg);
  width: 22px;
}
.btn-arrow:after {
  border: solid #293033;
  border-width: 0 2px 2px 0;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}

/*Close button with X icon*/
.btn-close {
  align-items: center;
  background: transparent;
  border: none;
  display: flex;
  height: 50px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 50px;
}
.btn-close svg {
  transition: 0.3s;
}
.btn-close:hover svg {
  transform: rotate(90deg);
}

.btn-light:before, .btn-light:after {
  background: #FFF;
}

/*Display buttons in single row*/
.btn-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 399.98px) {
  .btn-row {
    flex-direction: column;
  }
}
@media (min-width: 400px) {
  .btn-row {
    margin: -5px;
  }
}
@media (min-width: 400px) {
  .btn-row .btn, .btn-row .form-contact input.button, .form-contact .btn-row input.button {
    margin: 5px;
  }
}
@media (max-width: 399.98px) {
  .btn-row .btn:not(:last-child), .btn-row .form-contact input.button:not(:last-child), .form-contact .btn-row input.button:not(:last-child) {
    margin-bottom: 10px;
  }
}

.google-partners {
  display: inline-block;
  margin: 21px 0 0 -4px;
}
.google-partners a {
  display: block;
  max-width: 100%;
}

.btn-blue {
  background-color: #007F9F;
  border-color: transparent;
  color: #FFF;
}
.btn-blue:hover:not(:disabled) {
  background-color: transparent;
  border-color: #FFF;
  border-right-color: transparent;
  border-top-color: transparent;
  color: #FFF;
}
.btn-blue:hover:not(:disabled):before {
  background: #FFF;
}
.btn-blue:hover:not(:disabled) span:before, .btn-blue:hover:not(:disabled) span:after {
  background: #FFF;
}

.figure {
  margin-bottom: 0;
}

.figure-default {
  position: relative;
}
.figure-default .figcaption {
  background: #3C4245;
  color: #FFF;
  padding: 0.5em 1em;
  z-index: 1;
}

.figure-logo {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
}
.figure-logo .figcaption {
  font-family: "AkzidenzGroteskBE-Regular";
  font-weight: normal;
  font-style: normal;
  color: rgba(41, 48, 51, 0.5);
  flex: 1 0 25%;
  font-size: 1.5rem;
}
.figure-logo strong {
  font-family: "FoundationSans-Roman";
  font-weight: normal;
  font-style: normal;
  color: #293033;
  display: block;
  font-size: 1.8rem;
}

.logo-container {
  align-items: center;
  display: flex;
  flex: 1 0 75%;
  justify-content: center;
  max-width: clamp(100px, 9vw, 180px);
}


.ginput_container {
  padding: 10px 0;
}

.form-control, .form-contact .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.form-contact .gform_wrapper textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  border: none;
  box-shadow: none;
  color: #FFF;
  transition: 0.3s;
  width: 100%;
}
.form-control:not(textarea), .form-contact .gform_wrapper input:not(textarea):not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.form-contact .gform_wrapper textarea:not(textarea) {
  height: 50px;
  padding: 0 15px;
}
.form-control:focus, .form-contact .gform_wrapper input:focus:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.form-contact .gform_wrapper textarea:focus {
  outline: none;
}
.form-control:focus-visible, .form-contact .gform_wrapper input:focus-visible:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.form-contact .gform_wrapper textarea:focus-visible {
  background-color: rgba(255, 255, 255, 0.2);
}

textarea {
  padding: 10px 15px;
}

/*Global contact form styles (gravity forms)*/
.form-contact input.button {
  -webkit-appearance: none;
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  background: transparent;
  border-radius: 0;
  border: solid 2px #FFF;
  color: #FFF;
  justify-content: center;
  min-height: 2.6em;
  padding: 0 15px;
  position: relative;
  width: auto !important;
}
.form-contact input.button:hover {
  border-color: #ED5F53;
  color: #ED5F53;
}
.form-contact .gform_wrapper {
  margin: 0;
}
.form-contact .gform_wrapper ul.gform_fields li.gfield {
  margin-top: 0;
  padding-right: 0;
  position: relative;
}
.form-contact .gform_wrapper ul li.gfield:not(:last-child) {
  margin-bottom: 10px;
}
.form-contact .gform_wrapper .gfield--has-description .gfield_label {
  display: inline-block;
  margin-right: 0.5em;
}
.form-contact .gform_wrapper .label.gfield_label {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  left: 15px;
  position: absolute;
  top: 25px;
  transition: 0.3s ease-in-out;
}
.form-contact .gform_wrapper .gform_footer {
  margin-top: 20px;
  padding-top: 0;
}
.form-contact .gform_wrapper.gravity-theme .gfield_required {
  display: none;
}
.form-contact .gform_wrapper.gravity-theme .gfield_description {
  font-family: "AkzidenzGroteskBE-Regular";
  font-weight: normal;
  font-style: normal;
  background: transparent;
  border: none;
  color: #CCCCCC;
  display: inline-block;
  font-size: inherit;
  margin-top: 15px;
  padding: 0;
  width: auto;
}
.form-contact .ginput_container {
  padding: 0;
}

/* Components - specific elements that make up a page */
.accordion-service .accordion-item {
  background: #3C4245 url(../images/backgrounds/bg-noise-dark.jpg) center center/cover no-repeat;
  position: relative;
}
.accordion-service .accordion-item:not(:last-child) {
  margin-bottom: 10px;
}
.accordion-service .accordion-toggle {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-wrap: balance;
  background: transparent;
  border: none;
  color: #FFF;
  display: flex;
  justify-content: space-between;
  position: relative;
  text-align: left;
  transition: 0.1s;
  width: 100%;
}
@media (max-width: 767.98px) {
  .accordion-service .accordion-toggle {
    font-size: 2.3rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .accordion-service .accordion-toggle {
    font-size: 2.6rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .accordion-service .accordion-toggle {
    font-size: 2.9rem;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .accordion-service .accordion-toggle {
    font-size: 3.4rem;
  }
}
@media (min-width: 1600px) {
  .accordion-service .accordion-toggle {
    font-size: 4rem;
  }
}
@media (max-width: 767.98px) {
  .accordion-service .accordion-toggle {
    padding: 35px 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .accordion-service .accordion-toggle {
    padding: 35px 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .accordion-service .accordion-toggle {
    padding: 35px 70px;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .accordion-service .accordion-toggle {
    padding: 35px 85px;
  }
}
@media (min-width: 1600px) {
  .accordion-service .accordion-toggle {
    padding: 40px 100px;
  }
}
.accordion-service .accordion-toggle:after {
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  content: "";
  display: block;
  height: 0.6em;
  margin-top: 0.3em;
  transform-origin: center;
  transform: rotate(-135deg);
  transition: 0.3s;
  width: 0.6em;
}
.accordion-service .accordion-toggle.collapsed {
  background: #F2F2F2;
  color: #293033;
}
.accordion-service .accordion-toggle.collapsed:after {
  border-color: #293033;
  margin-top: 0;
  transform: rotate(45deg);
}
.accordion-service .accordion-body {
  opacity: 0;
  position: relative;
  transform: translateY(0);
  transition: opacity 0.3s;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .accordion-service .accordion-body {
    padding: 0 30px 35px 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .accordion-service .accordion-body {
    padding: 0 50px 45px 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .accordion-service .accordion-body {
    padding: 0 70px 50px 70px;
  }
}
@media (min-width: 1500px) and (max-width: 1599.98px) {
  .accordion-service .accordion-body {
    padding: 0 85px 50px 85px;
  }
}
@media (min-width: 1600px) {
  .accordion-service .accordion-body {
    padding: 0 100px 50px 100px;
  }
}
.accordion-service .accordion-collapse.show .accordion-body {
  opacity: 1;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-title {
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  display: block;
  padding-top: 2em;
}

.card-figure {
  height: 100%;
}

.card-team {
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
.card-team:hover .team-front {
  transform: rotateY(-180deg);
}
.card-team:hover .team-back {
  transform: rotateY(0);
}

.team-front,
.team-back {
  backface-visibility: hidden;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.3s;
}

.team-back {
  overflow: hidden;
  transform: rotateY(-180deg);
}

ol {
  margin-bottom: 30px;
  padding: 0 0 0 20px;
}
ol li:not(:last-child) {
  margin-bottom: 15px;
}

/*General unstyled list*/
.list-unstyled,
.list-unstyled ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.list-unstyled li:not(:last-child),
.list-unstyled ul li:not(:last-child) {
  margin-bottom: 2px;
}
.list-unstyled a,
.list-unstyled ul a {
  text-decoration: none;
}
.list-unstyled a:hover,
.list-unstyled ul a:hover {
  text-decoration: underline;
}
@media (max-width: 991.98px) {
  .list-unstyled.element-divider,
.list-unstyled ul.element-divider {
    padding-top: 1.5em;
  }
}
@media (min-width: 992px) {
  .list-unstyled.element-divider,
.list-unstyled ul.element-divider {
    padding-top: 4em;
  }
}

/*List color options*/

/*Global modal setup*/
.modal {
  /*close button*/
}
.modal .modal-content {
  border: none;
  border-radius: 0;
}
.modal .modal-body {
  padding: 0;
}
.modal.fade .modal-dialog {
  transform: translate(0, 50px);
}

.modal.show .modal-dialog {
  transform: none;
}

.modal-backdrop {
  background: #3C4245 url(../images/backgrounds/bg-paper-dark.jpg) top center/cover no-repeat;
}

@media (max-width: 1199.98px) {
  .dialog-full {
    max-width: none;
  }
}
@media (min-width: 1200px) {
  .dialog-full {
    max-width: 1200px;
  }
}

.dialog-contact {
  max-width: 100%;
}

/*Styles specific to a full screen modal*/
.modal-full {
  color: #FFF;
}
@media (max-width: 991.98px) {
  .modal-full {
    padding-bottom: 85px;
    padding-top: 85px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .modal-full {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .modal-full {
    padding-bottom: 120px;
    padding-top: 120px;
  }
}
.modal-full .container-large {
  width: 100%;
}
.modal-full .element-divider {
  padding-top: 2.5em;
}
.modal-full a {
  color: #FFF;
  text-decoration: none;
}
.modal-full a:hover {
  text-decoration: underline;
}
.modal-full .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #FFF;
  padding: 20px;
}
.modal-full .btn-close {
  position: absolute;
}
@media (max-width: 575.98px) {
  .modal-full .btn-close {
    right: 20px;
    top: 20px;
  }
}
@media (min-width: 576px) {
  .modal-full .btn-close {
    right: 2em;
    top: 2em;
  }
}

/*Feature "work" slider*/
.slider-feature {
  position: relative;
  /*Arrow styles*/
}
.slider-feature .swiper-slide {
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .slider-feature .swiper-slide {
    max-width: calc(100% - 30px);
  }
}
@media (min-width: 768px) {
  .slider-feature .swiper-slide {
    max-width: 80%;
  }
}
.slider-feature .swiper-slide-active .feature-content {
  pointer-events: all;
  transform: translateY(0);
}
.slider-feature [data-toggle=feature] {
  cursor: pointer;
}
.slider-feature .slider-arrows {
  align-items: center;
  background: #FFF;
  display: flex;
  height: 7.5em;
  justify-content: center;
  max-height: 120px;
  max-width: 120px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .slider-feature .slider-arrows {
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .slider-feature .slider-arrows {
    height: 5em;
    width: 5em;
  }
}
@media (min-width: 1500px) {
  .slider-feature .slider-arrows {
    height: 7em;
    width: 7em;
  }
}
.slider-feature .slider-arrows:before {
  background: url(../images/elements/arrow-black.svg) center center/contain no-repeat;
  content: "";
  display: block;
}
@media (max-width: 991.98px) {
  .slider-feature .slider-arrows:before {
    height: 1.5em;
    width: 1.5em;
  }
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .slider-feature .slider-arrows:before {
    height: 2.25em;
    width: 2.25em;
  }
}
@media (min-width: 1500px) {
  .slider-feature .slider-arrows:before {
    height: 3em;
    width: 3em;
  }
}
.slider-feature .slider-prev {
  left: 0;
}
.slider-feature .slider-prev:before {
  transform: rotate(180deg);
}
.slider-feature .slider-next {
  right: 0;
}
.slider-feature .swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.slider-feature .feature-content {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  pointer-events: none;
  position: absolute;
  transform: translateY(100%);
  transition: transform 0.3s;
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .slider-feature .feature-content {
    max-width: 85%;
  }
}
@media (min-width: 1500px) {
  .slider-feature .feature-content {
    max-width: 65%;
  }
}
@media (max-width: 575.98px) {
  .slider-feature .feature-content span {
    display: none;
  }
}
.slider-feature .figcaption {
  cursor: pointer;
}
.slider-feature .btn-close {
  position: absolute;
  right: 0;
  top: 0;
}

/*Tools of the trade slider*/
.slider-tools {
  margin: 2px;
}
.slider-tools .swiper-wrapper {
  transition-timing-function: linear;
}
.slider-tools .swiper-slide {
  background: #F2F2F2;
  height: auto;
  padding: 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .slider-tools .swiper-slide {
    height: calc((100% - 2px) / 2);
  }
}

.pin-spacer {
  pointer-events: none;
}

/*Swap cursor to red dot when hovering over element*/
@media (min-width: 992px) {
  .jsHover {
    cursor: none;
  }
  .jsHover .cursor {
    font-size: 0;
    height: 1px;
    line-height: 1;
    position: absolute;
    width: 1px;
    will-change: top, left;
    z-index: 1;
    pointer-events: none;
    z-index: 10;
  }
  .jsHover .cursor.hide:before {
    background: transparent;
    height: 0;
    width: 0;
  }
  .jsHover .cursor:before {
    background: rgba(178, 64, 54, 0.9);
    border-radius: 100%;
    content: "";
    height: 50px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s all;
    width: 50px;
  }
}
/*Layout*/
/*Global site header*/
.site-header {
  background-color: var(--header-background);
  position: relative;
  transform: translateZ(0);
  transition: background 0.2s, box-shadow 0.2s;
  will-change: transform;
  z-index: 100;
}
@media (max-width: 991.98px) {
  .site-header {
    height: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .site-header {
    height: 80px;
  }
}
@media (min-width: 1500px) {
  .site-header {
    height: 115px;
  }
}
@media (min-width: 992px) {
  .site-header:hover .current-menu-item:after {
    background: #E3E4E4;
  }
  .site-header:hover .current-menu-item a,
.site-header:hover .current-menu-item button {
    color: #293033;
  }
  .site-header:hover .current-menu-item a:before, .site-header:hover .current-menu-item a:after,
.site-header:hover .current-menu-item button:before,
.site-header:hover .current-menu-item button:after {
    background: #E3E4E4;
  }
}
.site-header.header-fixed {
  background: #FBFBFB;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
}
@media (min-width: 992px) {
  .site-header.header-fixed {
    height: 80px;
  }
}
.site-header.header-overlay {
  background: transparent;
  box-shadow: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.site-header.header-overlay.header-fixed {
  background: #FBFBFB;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
.site-header.is-measuring {
  pointer-events: none !important;
  position: fixed !important;
  visibility: hidden !important;
  z-index: -1 !important;
}

.header-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 2095px;
}
@media (max-width: 991.98px) {
  .header-container {
    padding-left: 20px;
    padding-right: 20px;
    padding-block: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .header-container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .header-container {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}
@media (min-width: 1500px) {
  .header-container {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

/*Adds navigation toggle button on mobile*/
.navbar-toggle {
  background: transparent;
  border: none;
  padding: 0;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}
@media (min-width: 992px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-toggle span {
  background-color: var(--color-navbar-toggle);
  display: block;
  height: 2px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  width: 25px;
}
.navbar-toggle.is-expanded {
  animation: hamburgerToggle 0.6s forwards;
}
.navbar-toggle.is-expanded span {
  transition-delay: 0.2s;
}
.navbar-toggle.is-expanded span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggle.is-expanded span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.is-expanded span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/*Site logo*/
.site-branding {
  -webkit-backface-visibility: hidden;
  position: relative;
  transform: translateY(2px);
  z-index: 1000;
}
.site-branding.is-animated .logo span:nth-child(1) {
  width: calc(22% - .35em);
}
.site-branding.is-animated .logo span:nth-child(2) {
  transition-delay: 0.2s;
  width: calc(28% - .35em);
}
.site-branding.is-animated .logo span:nth-child(3) {
  transition-delay: 0.6s;
  width: 50%;
}
@media (max-width: 991.98px) {
  .site-branding.is-animated .site-logo:before {
    background-position: center right 0;
    opacity: 1;
    transition-delay: 1s;
  }
}
.site-branding.is-animated:not(.is-loaded) .logo:after {
  opacity: 1;
  visibility: visible;
}
@media (hover: hover) {
  .site-branding.is-animated:hover .logo:after {
    opacity: 0;
    visibility: hidden;
  }
}
.site-branding.is-loaded .site-logo:before {
  background-position: center right 0;
  opacity: 1;
  transition-delay: 1s;
}
.site-branding.is-loaded .logo:after {
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .site-branding:hover .site-logo:before {
    background-position: center right 0;
    opacity: 1;
  }
}

.site-logo:before {
  -webkit-backface-visibility: hidden;
  background: var(--site-logo) center right 50px/contain no-repeat;
  content: "";
  display: block;
  margin-bottom: 1px;
  opacity: 0;
  transition: 0.3s ease-out;
}
@media (max-width: 991.98px) {
  .site-logo:before {
    height: 25px;
    margin-left: 67px;
    width: 164px;
  }
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .site-logo:before {
    height: 33px;
    margin-left: 84px;
    width: 220px;
  }
}
@media (min-width: 1500px) {
  .site-logo:before {
    height: 43px;
    margin-left: 109px;
    width: 291px;
  }
}

.logo {
  -webkit-backface-visibility: hidden;
  display: flex;
  left: 0;
  position: absolute;
  top: 0;
}
@media (max-width: 991.98px) {
  .logo {
    bottom: 5px;
    width: 67px;
  }
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .logo {
    bottom: 7px;
    width: 84px;
  }
}
@media (min-width: 1500px) {
  .logo {
    bottom: 8px;
    width: 109px;
  }
}
@media (min-width: 992px) {
  .logo:after {
    background: var(--site-logo-trademark) center center/contain no-repeat;
    content: "";
    display: block;
    height: 1rem;
    height: 3.6rem;
    left: calc(100% + 3px);
    opacity: 0;
    position: absolute;
    top: 0;
    transform-origin: top left;
    transform: scale(0.25);
    transition: 0.2s transform ease-in-out;
    visibility: hidden;
    width: 3.6rem;
  }
  .logo:after:hover {
    transform: scale(1);
  }
}
.logo span {
  background: #B24036;
  display: block;
  height: 100%;
  transition: 0.6s;
  width: 0;
}
@media (max-width: 991.98px) {
  .logo span:not(:last-child) {
    margin-right: 0.2em;
  }
}
@media (min-width: 992px) {
  .logo span:not(:last-child) {
    margin-right: 0.35em;
  }
}

/*Primary navigation*/
.navbar-primary {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}
@media (max-width: 991.98px) {
  .navbar-primary {
    flex-direction: column;
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .navbar-primary {
    margin-top: -1.2em;
  }
}
.navbar-primary .menu-item {
  flex: 1;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}
@media (max-width: 991.98px) {
  .navbar-primary .menu-item {
    opacity: 0;
    transform: translateY(5px);
  }
}
@media (max-width: 991.98px) {
  .navbar-primary .menu-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .navbar-primary .menu-item:not(:last-child) {
    margin-right: 10px;
  }
}
.navbar-primary .menu-item:after {
  background: #E3E4E4;
  bottom: 1px;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  right: 6px;
  transition: 0.2s;
  z-index: 1;
}
.navbar-primary a,
.navbar-primary button {
  align-items: center;
  background: transparent;
  border: none;
  color: var(--color-navbar-links);
  display: flex;
  padding: 15px 0;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
}
@media (min-width: 992px) {
  .navbar-primary a,
.navbar-primary button {
    width: 7.6em;
  }
}
.navbar-primary a:before, .navbar-primary a:after,
.navbar-primary button:before,
.navbar-primary button:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
}
.navbar-primary a:before,
.navbar-primary button:before {
  background: #B24036;
  bottom: 1px;
  height: 2px;
  left: 0;
  right: 6px;
  transform: translateX(calc(-100% - 1px));
  transition-duration: 0.2s;
}
.navbar-primary a:after,
.navbar-primary button:after {
  background: #B24036;
  border-radius: 50%;
  bottom: 0;
  height: 4px;
  opacity: 0;
  right: 0;
  transition-delay: 0s;
  transition: 0.3s;
  visibility: hidden;
  width: 4px;
}
@media (min-width: 992px) {
  .navbar-primary a:hover,
.navbar-primary button:hover {
    color: #B24036;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .navbar-primary a:hover:before,
.navbar-primary button:hover:before {
    transform: translateX(0);
  }
  .navbar-primary a:hover:after,
.navbar-primary button:hover:after {
    opacity: 1;
    transition-delay: 0.2s;
    visibility: visible;
  }
}
.navbar-primary .current-menu-item {
  pointer-events: none;
}
.navbar-primary .current-menu-item a {
  color: #B24036;
}
.navbar-primary .current-menu-item a:before {
  background: #B24036;
}
.navbar-primary .current-menu-item a:after {
  opacity: 1;
  visibility: visible;
}
.navbar-primary .current-menu-item:after {
  background: #B24036;
}

/*Position primary navigation off screen on mobile*/
@media (max-width: 991.98px) {
  .navigation-collapse {
    background: #3C4245 url(../images/backgrounds/bg-paper-light.jpg) center center/cover no-repeat;
    bottom: 0;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
    left: 0;
    opacity: 0;
    overflow: hidden;
    padding: 50px 0 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: 0.3s;
    visibility: hidden;
    z-index: 100;
  }
  .navigation-collapse.is-expanded {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
  .navigation-collapse.is-expanded .menu-item {
    opacity: 1;
    transform: translateY(0);
  }
  .navigation-collapse.is-expanded .menu-item:nth-child(1) {
    transition-delay: 0.3s;
  }
  .navigation-collapse.is-expanded .menu-item:nth-child(2) {
    transition-delay: 0.4s;
  }
  .navigation-collapse.is-expanded .menu-item:nth-child(3) {
    transition-delay: 0.5s;
  }
  .navigation-collapse.is-expanded .menu-item:nth-child(4) {
    transition-delay: 0.6s;
  }
}

/* Dark header options */
.header-dark:not(.header-fixed) {
  --site-logo: url("../images/branding/logo-light.svg");
  --site-logo-trademark: url("../images/branding/logo-trademark-light.svg");
  --header-background: #3E4346;
  --color-navbar-toggle: #fff;
}
@media (min-width: 992px) {
  .header-dark:not(.header-fixed) {
    --color-navbar-links: #fff;
  }
  .header-dark:not(.header-fixed) .navbar-primary .menu-item:after {
    opacity: 0.3;
  }
}
.header-dark.nav-open {
  --site-logo: url("../images/branding/logo.svg");
  --site-logo-trademark: url("../images/branding/logo-trademark.svg");
}

/*Global main content area*/
.article-paging {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/*Global site footer*/
.site-footer {
  color: #FFF;
}
@media (max-width: 991.98px) {
  .site-footer {
    padding-bottom: 85px;
    padding-top: 85px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-footer {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .site-footer {
    padding-bottom: 120px;
    padding-top: 120px;
  }
}
.site-footer .element-divider {
  padding-top: 2.5em;
}
.site-footer a {
  color: #FFF;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

.footer-social {
  align-items: center;
  display: flex;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.footer-social li:not(:last-child) {
  margin-right: 12px;
}
.footer-social a {
  align-items: center;
  color: #FFF;
  display: flex;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}
.footer-social a:hover {
  transform: scale(1.2);
}

/*BLocks*/
.landing-header {
  background: #3C4245 url("/assets/images/backgrounds/landing-header-bg.png") center bottom/cover no-repeat;
  color: #FFF;
  position: relative;
  text-align: center;
}
.landing-header .container-large {
  position: relative;
  z-index: 10;
}
.landing-header .header-text {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  font-size: clamp(2.3rem, 1.5vw, 3rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 auto 4rem auto;
  max-width: 900px;
}
.landing-header .header-testimonial {
  margin-top: 3.5rem;
}
.landing-header .header-testimonial blockquote {
  margin-bottom: 0.5rem;
}
.landing-header .header-testimonial p {
  font-weight: 600;
}
.landing-header .header-testimonial figcaption {
  font-size: 1.6rem;
}
.landing-header .btn-primary {
  min-width: clamp(20rem, 14.5vw, 29rem);
}

.landing-body {
  align-items: flex-start;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: row dense;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1499.98px) {
  .landing-body {
    padding-right: 0;
  }
}
.landing-body .body-testimonial {
  border-top: solid 1px #CCCCCC;
  margin-top: 4rem;
  padding-top: 4rem;
}
.landing-body .body-testimonial blockquote {
  margin-bottom: 0.5rem;
}
.landing-body .body-testimonial p {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  color: #B24036;
  font-size: 2.4rem;
  letter-spacing: -0.01em;
  line-height: 1.6;
}
.landing-body .body-testimonial figcaption {
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  position: relative;
}
.landing-body .body-testimonial figcaption::before {
  background: #293033;
  content: "";
  display: block;
  height: 0.2rem;
  margin: 1em 0 0.6em 0;
  width: 3rem;
}
.landing-body .body-testimonial .author {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  font-size: 1.8rem;
}
.landing-body .body-content {
  grid-column: span 12;
  padding-block: calc(clamp(10rem, 7.5vw, 15rem) - 5rem);
}
@media (min-width: 992px) {
  .landing-body .body-content {
    grid-column: 1/span 6;
    grid-row: 1;
  }
}
.landing-body .body-content ul {
  display: grid;
  gap: 0.9rem;
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
}
.landing-body .body-content ul li {
  padding-left: 3.2rem;
  position: relative;
}
.landing-body .body-content ul li::before {
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2217%22%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22%23B34036%22%20d%3D%22M8.61%2013.883%201.978%207.25.563%208.665l6.623%206.621-.002.002.7.713.703.712%2015.226-15L22.407.289%208.61%2013.883Z%22%2F%3E%3C%2Fsvg%3E") center bottom/cover no-repeat;
  content: "";
  display: inline-block;
  height: 1.6rem;
  left: 0;
  position: absolute;
  top: 0.5rem;
  width: 2.4rem;
}
.landing-body .body-content ul strong {
  letter-spacing: 0.035em;
}
.landing-body .body-sidebar {
  background: #3c4245 url("../images/backgrounds/bg-paper-dark.jpg") 50%/cover no-repeat;
  color: #FFF;
  grid-column: span 12;
  margin-top: -3rem;
  padding: clamp(10rem, 7.5vw, 15rem) clamp(3rem, 3vw, 8rem);
}
@media (min-width: 992px) {
  .landing-body .body-sidebar {
    grid-column: 8/span 5;
    grid-row: 1;
    margin-top: -5rem;
    margin-left: -5rem;
    position: sticky;
    top: 8rem;
  }
}
@media (min-width: 1200px) {
  .landing-body .body-sidebar {
    margin-left: 0;
  }
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme {
  /* field wrapper that opts-in to floating labels */
  /* reduce motion */
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield:not(.is-float-label) .gfield_label {
  margin-bottom: 1rem;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label {
  position: relative;
  /* place label “inside” the control */
  /* keep input styling from your theme; we only add top padding for clearance */
  /* stay floated when filled (pure CSS; needs placeholder present + :has support) */
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label .gfield_label {
  font-family: "AkzidenzGroteskBE-Regular";
  font-weight: normal;
  font-style: normal;
  background: transparent;
  color: #FFF;
  font-size: 1.8rem;
  left: 1.2rem;
  line-height: 1;
  margin: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 1.6rem;
  transform-origin: left top;
  transition: 0.2s;
  z-index: 1;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label .ginput_container input,
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label .ginput_container textarea {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  border: none;
  color: #FFF;
  height: 5rem;
  padding: 2rem 1.2rem 1rem 1.2rem;
  outline: none;
  /* Hide focus ring on mouse click but show on keyboard tab */
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label .ginput_container input:focus,
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label .ginput_container textarea:focus {
  outline: none;
  border-radius: 0;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label .ginput_container input:focus-visible,
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label .ginput_container textarea:focus-visible {
  background-color: rgba(255, 255, 255, 0.2);
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label:has(input:not(:-moz-placeholder-shown)) .gfield_label, .landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label:has(textarea:not(:-moz-placeholder-shown)) .gfield_label {
  color: #A7A9AB;
  font-size: 1.4rem;
  top: 0.5rem;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label:has(input:not(:-ms-input-placeholder)) .gfield_label, .landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label:has(textarea:not(:-ms-input-placeholder)) .gfield_label {
  color: #A7A9AB;
  font-size: 1.4rem;
  top: 0.5rem;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label:focus-within .gfield_label, .landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label:has(input:not(:placeholder-shown)) .gfield_label, .landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label:has(textarea:not(:placeholder-shown)) .gfield_label {
  color: #A7A9AB;
  font-size: 1.4rem;
  top: 0.5rem;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .ginput_container textarea {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  transition: 0.2s;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .ginput_container textarea:focus {
  outline: none;
  border-radius: 0;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .ginput_container textarea:focus-visible {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFF;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .ginput_container {
  padding: 0;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield_description {
  color: #CCCCCC;
  font-size: 1.8rem;
  padding-top: 0;
}
@media (min-width: 1200px) {
  .landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield_description {
    display: inline;
    margin-right: 0.5em;
  }
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield_required {
  display: none;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield .gfield_label {
  font-size: 1.8rem;
  margin-bottom: 0;
  margin-right: 1rem;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gform_button button {
  background-color: #007F9F;
  margin: 0;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gform-footer {
  align-items: center;
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  text-align: center;
}
@media (min-width: 576px) {
  .landing-body .body-sidebar .gform_wrapper.gravity-theme .gform-footer {
    justify-content: center;
  }
}
@media (min-width: 1500px) {
  .landing-body .body-sidebar .gform_wrapper.gravity-theme .gform-footer {
    grid-template-columns: repeat(2, 1fr);
    justify-content: flex-start;
    text-align: left;
  }
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gform-footer a {
  text-decoration: none;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gform-footer a:hover {
  color: inherit;
  text-decoration: underline;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .validation_message {
  background: transparent;
  border: none;
  color: red;
  display: flex;
  font-size: 1.6rem;
  padding: 0;
  width: 100%;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gform_validation_errors {
  border-radius: 0;
  border: none;
}
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield_error input,
.landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield_error textarea {
  border: solid 1px #B24036 !important;
}
@media (prefers-reduced-motion: reduce) {
  .landing-body .body-sidebar .gform_wrapper.gravity-theme .gfield.is-float-label .gfield_label {
    transition: none;
  }
}

.landing-logos {
  grid-column: span 12;
  text-align: center;
}
.landing-logos h2 {
  font-family: "AkzidenzGroteskBE-Md";
  font-weight: normal;
  font-style: normal;
  font-size: clamp(2.2rem, 1.2vw, 2.4rem);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 4rem;
}
.landing-logos ul {
  align-items: center;
  display: flex;
  gap: clamp(2rem, 4.5vw, 9rem);
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 575.98px) {
  .landing-logos ul {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .landing-logos ul li {
    display: flex;
    flex: 0 1 calc(50% - 2rem);
    justify-content: center;
  }
  .landing-logos ul img {
    max-width: 10rem;
  }
}

/* Animated (twinkle) location indicators */
.twinkle-wrap {
  bottom: 1rem;
  inset-inline: 2rem;
  position: absolute;
}
@media (min-width: 992px) {
  .twinkle-wrap {
    bottom: 5rem;
    inset-inline: 10rem;
  }
}


.twinkle-wrap svg .twinkle,
.twinkle-wrap svg path {
  transform-origin: center;
  will-change: opacity, transform;
  pointer-events: none;
}

/* accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .twinkle-wrap svg * {
    animation: none !important;
    transition: none !important;
  }
}
