@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;700&family=Inter&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

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

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] {
  -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.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

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

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

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: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

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: var(--bs-secondary-color);
  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]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

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;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

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;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

:root {
  --blue: #007bff;
  --red: #dc3545;
  --yellow: #ffc107;
  --green: #28a745;
  --vontier-black: #231f20;
  --white: #fff;
  --black: #000;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --primary: #19988b;
  --secondary: #28a745;
  --text-color: #212529;
}

html,
body {
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  color: #231f20;
}

.modal-backdrop.fade {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.75);
}

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  font-size: 62.5%;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

.section-container {
  margin: 0 auto;
  max-width: 114.8rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 768px) {
  .section-container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.layout-container {
  margin: 0 auto;
}

.content-container {
  padding-top: 4.3rem;
}
@media screen and (min-width: 1220px) {
  .content-container {
    padding-top: 11rem;
  }
}

/**
 * Basic styles for headings
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Archivo";
}

h1,
.h1,
.heading-1 {
  font-size: 6.8rem;
}

h2,
.h2,
.heading-2 {
  font-size: 5.1rem;
}
@media only screen and (max-width: 768px) {
  h2,
  .h2,
  .heading-2 {
    font-size: 3.6rem;
  }
}

h3,
.h3,
.heading-3 {
  font-size: 2.2rem;
  font-weight: bold;
}

h4,
.h4,
.heading-4 {
  font-size: 2.2rem;
}

h5,
.h5,
.heading-5 {
  font-size: 2.2rem;
}

h6,
.h6,
.heading-6 {
  font-size: 2.2rem;
}

p {
  margin: 0;
  font-family: "Archivo";
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  p {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}

a {
  font-family: "Archivo";
  font-size: 1.8rem;
}

li {
  font-family: "Archivo";
}

@media screen and (min-width: 768px) {
  h1,
  .h1,
  .heading-1 {
    font-size: 6.8rem;
  }
  h2,
  .h2,
  .heading-2 {
    font-size: 5.1rem;
  }
  h3,
  .h3,
  .heading-3 {
    font-size: 2.2rem;
  }
  h4,
  .h4,
  .heading-4 {
    font-size: 2rem;
  }
  h5,
  .h5,
  .heading-5 {
    font-size: 1.8rem;
  }
  h6,
  .h6,
  .heading-6 {
    font-size: 1.2rem;
  }
}
a {
  text-decoration: underline;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Bootstrap visually-hidden mixin
 */
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  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;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-header: 1220px;
  --bs-breakpoint-xl: 1440px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

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

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

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

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

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .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-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .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-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1220px) {
  .col-header {
    flex: 1 0 0%;
  }
  .row-cols-header-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-header-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-header-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-header-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-header-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-header-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-header-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-header-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-header-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-header-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-header-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-header-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-header-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-header-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-header-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-header-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-header-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-header-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-header-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-header-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-header-0 {
    margin-left: 0;
  }
  .offset-header-1 {
    margin-left: 8.33333333%;
  }
  .offset-header-2 {
    margin-left: 16.66666667%;
  }
  .offset-header-3 {
    margin-left: 25%;
  }
  .offset-header-4 {
    margin-left: 33.33333333%;
  }
  .offset-header-5 {
    margin-left: 41.66666667%;
  }
  .offset-header-6 {
    margin-left: 50%;
  }
  .offset-header-7 {
    margin-left: 58.33333333%;
  }
  .offset-header-8 {
    margin-left: 66.66666667%;
  }
  .offset-header-9 {
    margin-left: 75%;
  }
  .offset-header-10 {
    margin-left: 83.33333333%;
  }
  .offset-header-11 {
    margin-left: 91.66666667%;
  }
  .g-header-0,
  .gx-header-0 {
    --bs-gutter-x: 0;
  }
  .g-header-0,
  .gy-header-0 {
    --bs-gutter-y: 0;
  }
  .g-header-1,
  .gx-header-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-header-1,
  .gy-header-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-header-2,
  .gx-header-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-header-2,
  .gy-header-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-header-3,
  .gx-header-3 {
    --bs-gutter-x: 1rem;
  }
  .g-header-3,
  .gy-header-3 {
    --bs-gutter-y: 1rem;
  }
  .g-header-4,
  .gx-header-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-header-4,
  .gy-header-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-header-5,
  .gx-header-5 {
    --bs-gutter-x: 3rem;
  }
  .g-header-5,
  .gy-header-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1440px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
header {
  position: fixed;
  z-index: 3;
  width: 100%;
  background: #fff;
}
@media only screen and (min-width: 576px) {
  header {
    background: linear-gradient(to right, #fff 0%, #fff 60%, #19988b 60%, #19988b 100%);
  }
}
@media only screen and (min-width: 1220px) {
  header {
    background: linear-gradient(to right, #fff 0%, #fff 50%, #19988b 50%, #19988b 100%);
  }
}
header .layout-container {
  display: flex;
  align-items: center;
  padding: 0 0 0 2rem;
}
header .menu-container {
  display: flex;
  height: 4.3rem;
  align-items: center;
}
header .menu {
  gap: 2rem;
}
header .menu--main .menu {
  display: none;
}
header nav {
  height: 100%;
}
header .site-logo {
  width: 13.8rem;
}
header .site-logo img {
  width: 100%;
}
header .menu-item {
  position: relative;
  z-index: 1;
  align-items: flex-start;
  flex-direction: column;
  display: flex;
  height: 100%;
  padding-top: 0;
  list-style-type: none;
  list-style-image: none;
}
header .menu-item--expanded .menu {
  margin-top: 1.7rem;
  gap: 0;
}
header .menu-item--expanded .menu a {
  font-family: "Archivo";
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.4rem;
  text-transform: none;
  padding: 6px 5px;
}
header .menu-item a {
  align-items: center;
  display: flex;
  height: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: normal;
}
header .menu-item a.is-active {
  color: #fff;
}
header .menu-item a:hover, header .menu-item a:focus {
  color: #fff;
  text-decoration: none;
}
header .menu-item .menu .is-active {
  color: #231f20;
}
header a {
  text-decoration: none;
}
header .header__mobile-nav {
  position: fixed;
  height: 100vh;
  width: 100%;
  padding-top: 2rem;
  padding-left: 2rem;
  background-color: #fff;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
}
header .header__mobile-nav.open-nav {
  transform: translateX(0);
}
header .header__mobile-nav .menu {
  display: flex;
  flex-direction: column;
  margin-left: 0;
}
header .header__mobile-nav .menu a.is-active {
  color: #005762;
  text-decoration: underline;
}
header .header__mobile-nav .menu a:hover,
header .header__mobile-nav .menu a:focus {
  color: #005762;
  text-decoration: underline;
}
@media only screen and (min-width: 1220px) {
  header .menu-item--expanded .menu {
    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;
  }
  header .menu-item--expanded .menu:not(caption) {
    position: absolute !important;
  }
  header .menu-item:hover .menu, header .menu-item:focus .menu {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
    top: 10rem;
    left: 0;
    display: flex;
    padding: 1.2rem !important;
    width: 15rem !important;
    height: auto !important;
    text-align: left;
    overflow: visible !important;
    clip: unset !important;
    background-color: #fff;
  }
  header .menu-item:hover .menu::before, header .menu-item:focus .menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 35%;
    transform: translate(-50%, -50%) rotate(45deg);
    display: block;
    width: 3rem;
    height: 3rem;
    background-color: white;
  }
  header .menu-item:hover .menu a, header .menu-item:focus .menu a {
    text-wrap: wrap;
    font-family: "Archivo";
    font-size: 1.8rem;
    font-weight: 400;
    line-height: normal;
    white-space: normal;
  }
  header .menu-item:hover .menu a:hover, header .menu-item:hover .menu a:focus, header .menu-item:focus .menu a:hover, header .menu-item:focus .menu a:focus {
    color: #005762;
  }
  header .menu--main .menu {
    align-items: center;
    display: flex;
    height: 100%;
    margin: 0;
  }
  header .header__mobile-nav {
    display: none;
  }
  header .site-logo {
    width: 30rem;
  }
  header .site-logo img {
    width: 100%;
    height: auto;
  }
  header .menu-container {
    height: 11rem;
  }
  header .button__icon {
    display: none;
  }
}

.region-primary-menu {
  position: relative;
  display: flex;
  width: 100%;
}
.region-primary-menu:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 5.7rem;
  border-right: 0rem solid transparent;
  border-left: 4.3rem solid transparent;
  border-top: 4.3rem solid #19988b;
}
@media only screen and (min-width: 1220px) {
  .region-primary-menu:before {
    left: 5.4rem;
    border-left: 11rem solid transparent;
    border-top: 11rem solid #19988b;
  }
}
.region-primary-menu:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0rem;
  left: 3.5rem;
  width: 2.5rem;
  height: 4.3rem;
  background-color: #19988b;
  transform: skew(45deg, 0deg);
}
@media only screen and (min-width: 1220px) {
  .region-primary-menu:after {
    left: 5.5rem;
    height: 11rem;
  }
}
@media only screen and (min-width: 1220px) {
  .region-primary-menu .menu-bg-spacer {
    width: 19rem;
  }
}
.region-primary-menu .menu-container {
  display: flex;
  width: 100%;
  margin-left: 10rem;
  background-color: #19988b;
}
@media only screen and (min-width: 1220px) {
  .region-primary-menu .menu-container {
    margin-left: 16.4rem;
  }
}

.overlay {
  opacity: 0;
}

#block-vontier-mainnavigation {
  background-color: #19988b;
}
#block-vontier-mainnavigation .navbar-we-mega-menu {
  margin-bottom: 0;
  background-color: #fff;
}
@media only screen and (min-width: 1220px) {
  #block-vontier-mainnavigation .navbar-we-mega-menu {
    background-color: transparent;
  }
}
#block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li {
  border: none;
}
#block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li > a, #block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li > span {
  transition: opacity 0.25s ease-in-out;
  background-color: transparent;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 1.2rem;
  color: #231f20;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) {
  #block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li > a, #block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li > span {
    font-size: 1.3rem;
  }
}
#block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li.active > a, #block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li.active > span {
  color: #231f20 !important;
}
@media only screen and (min-width: 1220px) {
  #block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li {
    padding: 3.5rem 0;
  }
  #block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li:first-child {
    display: none;
  }
  #block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li:hover, #block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li:focus {
    cursor: pointer;
  }
  #block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li:hover > a, #block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li:hover > span, #block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li:focus > a, #block-vontier-mainnavigation .navbar-we-mega-menu .we-mega-menu-ul > .we-mega-menu-li:focus > span {
    color: #fff;
  }
}

.we-mega-menu-ul .dropdown-menu > a, .we-mega-menu-ul .dropdown-menu > span {
  padding: 0 1rem;
}
.we-mega-menu-ul .dropdown-menu > a:before, .we-mega-menu-ul .dropdown-menu > a:after, .we-mega-menu-ul .dropdown-menu > span:before, .we-mega-menu-ul .dropdown-menu > span:after {
  background-image: none;
}

.we-mega-menu-submenu {
  top: 11rem;
  min-width: 15rem;
  display: block;
  left: 50%;
  filter: drop-shadow(0 0.4rem 0.6rem rgba(0, 0, 0, 0.25));
}
@media only screen and (min-width: 1220px) {
  .we-mega-menu-submenu {
    transform: translate(-50%);
  }
}
@media only screen and (min-width: 1220px) {
  .we-mega-menu-submenu:before {
    content: "";
    position: absolute;
    top: -2.5rem;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 5rem solid transparent;
    border-right: 5rem solid transparent;
    border-bottom: 5rem solid #fff;
    transform: translateX(-50%);
  }
}
.we-mega-menu-submenu li.we-mega-menu-li a {
  border-bottom: none;
  color: #231f20;
  font-size: 1.2rem;
  font-weight: 400;
}
@media only screen and (min-width: 1220px) {
  .we-mega-menu-submenu li.we-mega-menu-li a {
    font-size: 1.3rem;
  }
}
.we-mega-menu-submenu li.we-mega-menu-li:hover a {
  color: #005762;
}

.region-we-mega-menu {
  margin-bottom: 0;
  background: none;
}
.region-we-mega-menu .navbar-toggle {
  position: relative;
  display: inline-block;
  height: 1.7rem;
  width: 2.6rem;
}
.region-we-mega-menu .navbar-toggle .icon-bar {
  position: absolute;
  width: 100%;
  height: 0.3rem;
  opacity: 1;
  transition: all 0.25s ease-in-out;
  transform-origin: left;
  margin-top: 0 !important;
  background-color: #000;
}
.region-we-mega-menu .navbar-toggle .icon-bar:first-child {
  top: 0;
}
.region-we-mega-menu .navbar-toggle .icon-bar:nth-child(2) {
  top: 0.7rem;
  right: 0;
}
.region-we-mega-menu .navbar-toggle .icon-bar:last-child {
  top: 1.4rem;
}
.region-we-mega-menu .navbar-toggle.active .icon-bar {
  background-color: #000;
}
.region-we-mega-menu .navbar-toggle.active .icon-bar:first-child {
  top: -0.3rem;
  width: 2.7rem;
  transform: rotate(45deg);
}
.region-we-mega-menu .navbar-toggle.active .icon-bar:nth-child(2) {
  opacity: 0;
  right: -1.5rem;
}
.region-we-mega-menu .navbar-toggle.active .icon-bar:last-child {
  top: 1.6rem;
  width: 2.7rem;
  transform: rotate(-45deg);
}
.region-we-mega-menu .navbar-toggle:focus .icon-bar, .region-we-mega-menu .navbar-toggle:hover .icon-bar {
  background-color: #000;
}
@media only screen and (min-width: 1220px) {
  .region-we-mega-menu .navbar-toggle {
    display: none;
  }
}
.region-we-mega-menu .mobile-main-menu .we-mega-menu-ul {
  padding: 3rem 2rem;
}
.region-we-mega-menu .mobile-main-menu .we-mega-menu-ul.nav > li > a {
  border-top: none;
  font-size: 1.6rem;
  box-shadow: none;
  text-shadow: none;
}
.region-we-mega-menu .mobile-main-menu .we-mega-menu-ul.nav > li.dropdown-menu {
  margin-left: 1.5rem;
  position: relative;
}
.region-we-mega-menu .mobile-main-menu .we-mega-menu-ul.nav > li.dropdown-menu:before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0.9rem;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  font-size: 1.6rem;
  color: #231f20;
}
.region-we-mega-menu .mobile-main-menu .we-mega-menu-ul.nav > li.dropdown-menu > a:after {
  display: none;
}
.region-we-mega-menu .mobile-main-menu .we-mega-menu-ul.nav > li.open > a {
  color: #231f20 !important;
  border-top: none;
}
.region-we-mega-menu .mobile-main-menu .we-mega-menu-ul.nav > li.dropdown-menu.open:before {
  content: "-";
}

body.toggled {
  right: 0;
}
body.toggled .btn-close {
  display: none !important;
}
body.toggled .overlay {
  pointer-events: none;
}

.navbar-we-mega-menu.navbar {
  top: 4.2rem;
  width: 100%;
  background: #fff;
}
@media only screen and (min-width: 1220px) {
  .navbar-we-mega-menu.navbar {
    top: 0;
  }
  .navbar-we-mega-menu.navbar .nav-tabs > li.active > a {
    color: #231f20 !important;
  }
  .navbar-we-mega-menu.navbar .nav-tabs > li.active > a:focus, .navbar-we-mega-menu.navbar .nav-tabs > li.active > a:hover {
    border-top: none;
    color: #231f20 !important;
  }
}

.user-logged-in .navbar-we-mega-menu.navbar {
  top: 9.1rem;
}
@media only screen and (min-width: 1220px) {
  .user-logged-in .navbar-we-mega-menu.navbar {
    top: 0;
  }
}

.footer {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  background-color: #19988b;
}
.footer__wrap {
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  display: flex;
}
.footer__col {
  flex: 1;
  text-align: center;
}
.footer__col .menu {
  text-align: center;
}
.footer__col .menu-item:not(:last-child) {
  margin-bottom: 2rem;
}
.footer__col .cmp-revoke-consent {
  position: relative;
  left: 0;
  bottom: 0;
  padding: 0;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: normal;
}
.footer__col h2 {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.2rem;
}
.footer__col a, .footer__col p {
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.footer__col a:hover,
.footer__col a:focus,
.footer__col span:hover {
  text-decoration: none;
  color: #fff;
}
.footer__col ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.footer__col .block-vontier-footersocialmedia ul {
  justify-content: center;
  gap: 1rem;
  display: flex;
}
.footer__col__last {
  flex: 2;
  padding-top: 0.6rem;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .footer {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .footer__wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer .cmp-revoke-consent {
    font-size: 1.8rem;
  }
  .footer__col {
    text-align: left;
  }
  .footer__col .menu {
    text-align: left;
  }
  .footer__col h2 {
    margin-bottom: 2rem;
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
  .footer__col a, .footer__col p {
    font-size: 1.8rem;
  }
  .footer__col .block-vontier-footersocialmedia ul {
    justify-content: flex-start;
  }
  .footer__col__last {
    text-align: center;
  }
}

.button__primary {
  position: relative;
  display: inline-block;
  margin: 0;
  overflow: hidden;
  font-size: 1.6rem;
  line-height: normal;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  cursor: pointer;
}
.button__primary__left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  transform: skew(45deg);
  transform-origin: 0 0;
  width: 1.5rem;
  height: auto;
  background-color: #19988b;
  transition: all 0.25s ease-in-out;
}
.button__primary__shape {
  display: block;
  padding: 1.1rem 1.5rem 1.1rem 7rem;
  background-color: #19988b;
  transition: all 0.25s ease-in-out;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .button__primary__shape {
    font-size: 1.3rem;
  }
}
.button__primary__shape::before {
  content: "";
  position: absolute;
  top: 0;
  left: -7rem;
  bottom: 0;
  display: block;
  transform: skew(45deg);
  transform-origin: 0 0;
  width: 10rem;
  height: auto;
  background-color: #fff;
}
.button__primary:hover, .button__primary:focus {
  text-decoration: none;
}
.button__primary:hover .button__primary__left,
.button__primary:hover .button__primary__shape, .button__primary:focus .button__primary__left,
.button__primary:focus .button__primary__shape {
  background-color: #000;
  color: #fff;
}
.button__primary.dark:hover .button__primary__left,
.button__primary.dark:hover .button__primary__shape, .button__primary.dark:focus .button__primary__left,
.button__primary.dark:focus .button__primary__shape {
  background-color: #fff;
  color: #000;
}

.video__wrap {
  position: relative;
}
.video .button__icon--play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  border: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  background-color: transparent;
  color: #19988b;
}
.video .vjs-big-play-button {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .video .button__icon--play-button svg {
    height: 4.8rem;
    width: 4.8rem;
  }
}

.hero__video .video__container {
  position: relative;
}
.hero__video .video-toggle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 20px;
}

.accordion-wrapper {
  padding: 0 0 2rem;
}
.accordion-wrapper .accordion-item:hover {
  cursor: pointer;
}
.accordion-wrapper .accordion-item__btn {
  position: relative;
  display: flex;
  padding: 4.9rem 0 1.3rem;
  border: none;
  width: 100%;
  background-color: transparent;
  font-size: 2.4rem;
  font-family: "Archivo";
  line-height: 3.2rem;
  text-align: left;
  color: #005762;
}
.accordion-wrapper .accordion-item__btn:after {
  content: "+";
  font-size: 2.8rem;
  text-align: center;
  color: #005762;
}
.accordion-wrapper .accordion-item__btn.toggle-icon:after {
  content: "–";
}
.accordion-wrapper .accordion-item__btn span {
  display: block;
  width: calc(100% - 2.5rem);
}
.accordion-wrapper .accordion-item .accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.accordion-wrapper .accordion-item .accordion-panel.expanded {
  max-height: 99.9rem;
}
@media only screen and (min-width: 768px) {
  .accordion-wrapper .accordion-item__btn {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) {
  .accordion-wrapper .accordion-item__btn {
    font-size: 3.2rem;
    line-height: normal;
  }
}

.modal__partnerships {
  position: fixed;
  top: 0;
  left: 0;
  right: unset;
  bottom: unset;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 31, 32, 0.5);
  z-index: 999;
}
.modal__partnerships.show {
  display: block;
}
.modal__partnerships__dialog {
  width: 100%;
  background-color: #fff;
}
.modal__partnerships__modal-content-inner {
  border: 2.5rem solid #fff;
}
.modal__partnerships__modal-body {
  padding-top: 5rem;
}
.modal__partnerships__modal-header {
  position: fixed;
  top: 0;
  justify-content: flex-end;
  display: flex;
  width: calc(100% - 5rem);
  background-color: #fff;
  border-bottom: none;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}
.modal__partnerships__modal-header .modal__btn-close {
  border: none;
  background: transparent;
}
.modal__partnerships__modal-content {
  max-height: 100vh;
  max-height: 100dvh;
  overflow: auto;
  border-radius: 0;
}
.modal__partnerships__dialog {
  margin: 0 auto;
}
.modal__partnerships__information {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.modal__partnerships__company-information p:not(:last-child) {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  line-height: 2rem;
}
.modal__partnerships__col {
  flex: 1;
}
.modal__partnerships__col__about {
  border-bottom: 0.2rem solid #231f20;
  padding-bottom: 3.6rem;
  padding-right: 3rem;
}
.modal__partnerships__col__about img {
  width: 25%;
  display: block;
  margin: 0 auto;
  padding-bottom: 2rem;
  max-width: 100%;
  height: auto;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .modal__partnerships__col__about img {
    width: 100%;
  }
}
.modal__partnerships__col__contact-facts {
  padding-top: 3.6rem;
}
.modal__partnerships__address-wrap {
  padding-left: 0;
  padding-bottom: 3.6rem;
  border-bottom: 0.2rem solid #231f20;
}
.modal__partnerships__address {
  font-family: "Archivo";
}
.modal__partnerships__contact-title {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.modal__partnerships__facts {
  padding-top: 3.6rem;
  padding-left: 0;
}
.modal__partnerships__facts__title {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.modal__partnerships__facts__row {
  margin-bottom: 2.4rem;
}
.modal__partnerships__facts__row__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #005762;
}
.modal__partnerships__facts__row__data {
  font-family: "Archivo";
  font-size: 4.2rem;
  line-height: 5.2rem;
}
.modal__partnerships__quote {
  background-color: #19988b;
  padding: 4.8rem 2rem;
}
.modal__partnerships__quote-wrap {
  flex-direction: column;
  gap: 2.4rem;
  display: flex;
  margin: 0 auto;
}
.modal__partnerships__quote-text p {
  font-size: 2.4rem;
  line-height: 3.2rem;
}
.modal__partnerships__quote-icon {
  width: 5rem;
}
.modal__partnerships__quote-icon svg {
  width: 100%;
}
.modal__partnerships__quote-icon p {
  font-size: 2.4rem;
  line-height: 3.2rem;
}
.modal__partnerships__address {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.modal__partnerships__company-info a {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #005762;
}
.modal__partnerships__heading {
  margin-bottom: 3rem;
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: #005762;
}
.modal__partnerships__subheading {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.modal__partnerships__company-information p:not(:last-child) {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.modal__partnerships__author__name {
  margin-bottom: 0.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8rem;
}
.modal__partnerships__author__job-title {
  font-size: 1.3rem;
  line-height: 1.3rem;
}
.modal__partnerships__company-info a {
  display: block;
}
.modal__partnerships__secondary-company-info {
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .modal__partnerships {
    top: 50%;
    left: 50%;
    right: unset;
    bottom: unset;
    transform: translate(-50%, -50%);
    padding-left: 0;
  }
  .modal__partnerships__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    width: 80vw;
    max-width: 94.4rem;
  }
  .modal__partnerships__information {
    flex-direction: row;
    margin-bottom: 6rem;
  }
  .modal__partnerships__col__about {
    border-right: 0rem solid #231f20;
    border-bottom: unset;
    padding-left: 2.25rem;
    padding-right: 4.2rem;
  }
  .modal__partnerships__modal-header {
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
  }
  .modal__partnerships__facts {
    padding: 5rem 6.4rem;
  }
  .modal__partnerships__facts__title {
    margin-bottom: 4.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .modal__partnerships__facts__row {
    margin-bottom: 3rem;
  }
  .modal__partnerships__facts__row__title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    color: #005762;
  }
  .modal__partnerships__facts__row__data {
    font-family: "Archivo";
    font-size: 6.4rem;
    line-height: normal;
  }
  .modal__partnerships__heading {
    margin-bottom: 3rem;
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
  .modal__partnerships__modal-content {
    max-height: 80vh;
  }
  .modal__partnerships__subheading {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: normal;
  }
  .modal__partnerships__company-information p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .modal__partnerships__contact-title {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .modal__partnerships__address-wrap {
    padding-left: 6.4rem;
    padding-right: 6.4rem;
    padding-bottom: 5rem;
  }
  .modal__partnerships__address {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .modal__partnerships__quote-wrap {
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
    width: 75%;
  }
  .modal__partnerships__author__name {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 4.2rem;
  }
  .modal__partnerships__author__job-title {
    font-size: 1.8rem;
    line-height: 4.2rem;
  }
  .modal__partnerships__col__contact-facts {
    padding-top: 0;
  }
  .modal__partnerships__quote-text p {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
  .modal__partnerships__company-info a {
    font-size: 1.8rem;
    line-height: 2.8rem;
    color: #005762;
  }
}

.modal__people {
  position: fixed;
  top: 0;
  left: 0;
  right: unset;
  bottom: unset;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 31, 32, 0.5);
  z-index: 999;
}
.modal__people.show {
  display: block;
}
.modal__people__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  width: 80vw;
  max-width: 114.8rem;
  background-color: #fff;
}
.modal__people__modal-content {
  box-shadow: none;
  border: 0.1rem solid #231f20;
  border-radius: 0;
}
.modal__people__modal-content-inner {
  overflow: auto;
  border: 2.5rem solid #fff;
  max-height: 80vh;
  max-width: 80vw;
}
.modal__people__dialog {
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  display: flex;
  overflow: hidden;
  margin: 0 auto;
}
.modal__people__modal-header {
  position: fixed;
  top: 2.5rem;
  justify-content: flex-end;
  display: flex;
  border-bottom: none;
  width: calc(100% - 5rem);
  padding: 0 0 1.5rem 0;
  background: #fff;
}
.modal__people__modal-header .modal__btn-close {
  border: none;
  background: transparent;
}
.modal__people__modal-body {
  flex-direction: column;
  gap: 3rem;
  display: flex;
  overflow: scroll;
  padding-top: 5rem;
}
.modal__people__headshot img {
  max-width: 31.3rem;
  width: 100%;
  height: auto;
}
.modal__people__name {
  margin: 1.5rem 0 1rem;
  font-size: 2.2rem;
  font-weight: 700;
}
.modal__people__position {
  font-size: 1.8rem;
}
.modal__people__body {
  margin-top: 2rem;
}
.modal__people__body p {
  margin: 0 0 1.5rem;
}
.modal__people__body p,
.modal__people__body li,
.modal__people__body span,
.modal__people__body a {
  font-size: 1.8rem;
  font-style: normal;
  line-height: 2.4rem;
}
.modal__people__quote {
  padding: 4rem;
  background-color: #19988b;
  color: #fff;
}
.modal__people__quote-content {
  margin: 3rem 0 0;
  font-size: 2.8rem;
  line-height: 3.6rem;
}
@media only screen and (min-width: 768px) {
  .modal__people__modal-body {
    flex-direction: row;
  }
  .modal__people__col {
    width: 50%;
  }
}

.icon__close {
  color: #231f20;
}

.button__icon {
  position: relative;
  z-index: 2;
  display: block;
  margin: auto 0;
  border: none;
  cursor: pointer;
  background-color: transparent;
}
.button__icon--hamburger-icon {
  padding-right: 2rem;
  height: 4.3rem;
  background-color: #19988b;
}
.button__icon--hamburger-icon div {
  display: block;
  width: 3.2rem;
  height: 0.2rem;
  margin: 0.6rem 0;
  background-color: #231f20;
  transition: 0.4s;
}
.button__icon--hamburger-icon[aria-expanded=true] .bar1 {
  transform: rotate(-45deg) translate(-0.4rem, 0.7rem);
}
.button__icon--hamburger-icon[aria-expanded=true] .bar2 {
  opacity: 0;
}
.button__icon--hamburger-icon[aria-expanded=true] .bar3 {
  transform: rotate(45deg) translate(-0.4rem, -0.7rem);
}
@media only screen and (min-width: 768px) {
  .button__icon--hamburger-icon div {
    width: 3.7rem;
  }
}

.content-banner {
  position: relative;
  align-items: center;
  display: flex;
}
.content-banner__inner {
  flex-direction: column;
  display: flex;
  width: 100%;
}
.content-banner__image {
  position: relative;
  height: 30rem;
}
.content-banner__image.enable-overlay::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(0, 87, 98, 0.1);
}
.content-banner__image img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-banner__container {
  flex-direction: column;
  z-index: 1;
  display: flex;
  margin: 0 auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.content-banner__col {
  flex: 1;
}
.content-banner__col__card {
  background-color: #fff;
}
.content-banner__col__card__wrap {
  padding: 0;
}
.content-banner__col__card h3 {
  margin-bottom: 3rem;
  font-style: normal;
  line-height: normal;
}
.content-banner__col__card p {
  font-size: 2.4rem;
  font-weight: 400;
  font-style: normal;
  line-height: 3.2rem;
  color: #005762;
}
.content-banner__col__card__text {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 992px) {
  .content-banner.enable-overlay::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background-color: rgba(0, 87, 98, 0.7);
  }
  .content-banner__container {
    flex-direction: row;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .content-banner__container.card-right {
    flex-direction: row-reverse;
  }
  .content-banner__image {
    position: unset;
    height: auto;
  }
  .content-banner__col__card h2 {
    font-size: 1.8rem;
  }
  .content-banner__col__card p {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
  .content-banner__col__card__text {
    margin-bottom: 5rem;
  }
  .content-banner__col__card__wrap {
    padding: 4rem;
  }
}

.paragraph--type--press-release {
  padding: 90px 20px 87px;
}
@media only screen and (max-width: 768px) {
  .paragraph--type--press-release {
    padding: 60px 20px 57px;
  }
}
.paragraph--type--press-release .title-with-description__container {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .paragraph--type--press-release .title-with-description__container {
    padding-bottom: 10px;
  }
}
.paragraph--type--press-release .title-with-description__title {
  font-size: 6.4rem;
  color: #005762;
}
@media only screen and (max-width: 768px) {
  .paragraph--type--press-release .title-with-description__title {
    font-size: 4.2rem;
    line-height: 5rem;
    margin-bottom: 27px;
  }
}
.paragraph--type--press-release p {
  line-height: 28px;
}
.paragraph--type--press-release .press-release-list {
  margin-top: 20px;
}
.paragraph--type--press-release .press-release-list .press-release-item {
  padding: 32px 0 45px;
  border-bottom: 2px solid #231f20;
}
@media only screen and (max-width: 768px) {
  .paragraph--type--press-release .press-release-list .press-release-item {
    padding: 23px 0 26px;
  }
}
.paragraph--type--press-release .press-release-list .press-release-item .press-release-date {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: "Archivo";
}
@media only screen and (max-width: 768px) {
  .paragraph--type--press-release .press-release-list .press-release-item .press-release-date {
    margin-bottom: 14px;
  }
}
.paragraph--type--press-release .press-release-list .press-release-item .press-release-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .paragraph--type--press-release .press-release-list .press-release-item .press-release-row {
    display: block;
  }
}
.paragraph--type--press-release .press-release-list .press-release-item .press-release-row .press-release-title {
  font-size: 2.6rem;
  font-weight: 500;
  color: #005762;
}
@media only screen and (max-width: 768px) {
  .paragraph--type--press-release .press-release-list .press-release-item .press-release-row .press-release-title {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
.paragraph--type--press-release .press-release-list .press-release-item .press-release-row .press-release-title:hover {
  opacity: 0.8;
}
.paragraph--type--press-release .press-release-list .press-release-item .press-release-row .press-release-download {
  padding-left: 5px;
}
@media only screen and (max-width: 768px) {
  .paragraph--type--press-release .press-release-list .press-release-item .press-release-row .press-release-download {
    padding-top: 20px;
  }
}
.paragraph--type--press-release .press-release-list .press-release-item .press-release-row .press-release-download a {
  display: flex;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #005762;
  text-decoration: none;
}
.paragraph--type--press-release .press-release-list .press-release-item .press-release-row .press-release-download a .icon {
  width: 15px;
  height: 15px;
  background-image: url(../../images/icons/download.svg);
  background-size: cover;
  margin-right: 6px;
}
.paragraph--type--press-release .press-release-list .press-release-item .press-release-row .press-release-download a .icon:hover {
  opacity: 0.8;
}
.paragraph--type--press-release .press-release-list .press-release-item .press-release-row .press-release-download a:hover {
  opacity: 0.8;
}
.paragraph--type--press-release .press-release-read-more {
  padding-top: 77px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .paragraph--type--press-release .press-release-read-more {
    padding-top: 60px;
  }
}

.press-release__inner.section-container,
.news__inner.section-container {
  padding: 0px;
}

.title-with-description__description {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .title-with-description__description {
    line-height: 18px;
  }
}

.title-with-description__container {
  padding-bottom: 30px;
}

.paragraph--type--news {
  padding: 90px 20px 87px;
  /* Right column for small news cards */
}
@media only screen and (max-width: 768px) {
  .paragraph--type--news {
    padding: 60px 20px 57px;
  }
}
.paragraph--type--news .title-with-description__title {
  color: #005762;
  font-size: 6.4rem;
}
@media only screen and (max-width: 768px) {
  .paragraph--type--news .title-with-description__title {
    font-size: 4.2rem;
    line-height: 4.7rem;
    padding-bottom: 11px;
  }
}
.paragraph--type--news .news-listing-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin: 0 auto;
}
.paragraph--type--news .news-featured {
  grid-column: span 12;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
@media only screen and (min-width: 768px) {
  .paragraph--type--news .news-featured {
    grid-column: span 7;
  }
}
.paragraph--type--news .news-featured__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 1.1s;
}
.paragraph--type--news .news-featured__image img:hover {
  transform: scale(1.1);
}
.paragraph--type--news .news-featured__content {
  padding: 26px 26px 26px 26px;
}
@media only screen and (max-width: 768px) {
  .paragraph--type--news .news-featured__content {
    padding: 35px 20px 25px 20px;
  }
}
.paragraph--type--news .news-date {
  font-family: "Archivo";
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.paragraph--type--news .news-image-title {
  line-height: 0;
}
.paragraph--type--news .news-image-title a {
  font-size: 3.2rem;
  font-weight: 500;
  color: #005762;
  margin-bottom: 14px;
  line-height: 130%;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .paragraph--type--news .news-image-title a {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
.paragraph--type--news .news-image-title a:hover {
  opacity: 0.8;
}
.paragraph--type--news .news-body {
  padding-top: 5px;
}
.paragraph--type--news .news-body p {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.paragraph--type--news .press-release-read-more {
  padding-top: 1.9rem;
}
.paragraph--type--news .news-side {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  .paragraph--type--news .news-side {
    grid-column: span 5;
    gap: 24px;
  }
}
.paragraph--type--news .news-small {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  padding: 25px 30px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 195px;
}
@media only screen and (max-width: 768px) {
  .paragraph--type--news .news-small {
    padding: 25px 36px;
  }
}
.paragraph--type--news .news-small .news-title {
  line-height: 0;
}
.paragraph--type--news .news-small .news-title a {
  font-size: 2.4rem;
  font-weight: 500;
  color: #005762;
  line-height: 2.8rem;
  text-decoration: none;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .paragraph--type--news .news-small .news-title a {
    font-size: 2rem;
    line-height: 130%;
  }
}
.paragraph--type--news .news-small .news-title a:hover {
  opacity: 0.8;
}
.paragraph--type--news .news-small .press-release-read-more-cta {
  padding-top: 15px;
}
.paragraph--type--news .news-small .press-release-read-more-cta a {
  font-size: 16px;
  text-decoration: none;
  color: #005762;
  font-weight: bold;
  background-image: url(/themes/vontier/images/icons/read-more.svg);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  padding-right: 23px;
  background-size: contain;
}
.paragraph--type--news .news-small .press-release-read-more-cta a:hover {
  opacity: 0.8;
}

.reports {
  padding: 90px 20px 87px;
  /* Report Card */
}
@media only screen and (max-width: 768px) {
  .reports {
    padding: 55px 20px 65px;
  }
}
.reports__container {
  max-width: 118.6rem;
  margin: 0 auto;
  padding: 0 0rem;
}
.reports .title-with-description__container {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .reports .title-with-description__container {
    margin-bottom: 0rem;
  }
}
.reports .title-with-description__container .title-with-description__title {
  font-size: 6.4rem;
  color: #005762;
  padding: 0 1.3rem;
}
@media only screen and (max-width: 768px) {
  .reports .title-with-description__container .title-with-description__title {
    font-size: 4.2rem;
    line-height: 5rem;
    padding: 0rem;
  }
}
.reports .title-with-description__container .title-with-description__description {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .reports .title-with-description__container .title-with-description__description {
    line-height: 18px;
  }
}
.reports .slick-track {
  display: flex;
  gap: 26px;
}
@media only screen and (max-width: 768px) {
  .reports .slick-track {
    gap: 0px;
  }
}
.reports__list .slick-arrow {
  position: absolute;
  top: -87px;
  right: 14px;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .reports__list .slick-arrow {
    right: 0px;
  }
}
.reports__list .slick-arrow:before {
  content: unset;
}
@media only screen and (max-width: 768px) {
  .reports__list .slick-arrow {
    top: -55px;
  }
}
.reports__list .slick-arrow.slick-next {
  width: 56px;
  height: 40px;
  background-image: url(../../images/icons/right-arrow.svg);
  background-size: cover;
}
.reports__list .slick-arrow.slick-next:hover, .reports__list .slick-arrow.slick-next :focus {
  background-image: url(../../images/icons/right-arrow.svg);
  background-size: cover;
}
.reports__list .slick-arrow.slick-prev {
  left: auto;
  right: 54px;
  width: 56px;
  height: 40px;
  background-image: url(../../images/icons/left-arrow.svg);
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .reports__list .slick-arrow.slick-prev {
    right: 40px;
  }
}
.reports__list .slick-arrow.slick-prev:before {
  content: unset;
}
.reports__list .slick-arrow.slick-prev:hover, .reports__list .slick-arrow.slick-prev :focus {
  background-image: url(../../images/icons/left-arrow.svg);
  background-size: cover;
}
.reports__list .slick-arrow:hover, .reports__list .slick-arrow :focus {
  color: unset;
  outline: unset;
  background: unset;
  opacity: 0.8;
}
.reports .report-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}
.reports .report-card__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.1s;
}
@media only screen and (max-width: 768px) {
  .reports .report-card__image img {
    width: 100% !important;
    height: auto !important;
  }
}
.reports .report-card__image img:hover {
  transform: scale(1.1);
}
.reports .report-card__date {
  font-family: "Archivo";
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 17px 0px 10px;
}
.reports .report-card__title {
  color: #005762;
  font-size: 1.9rem;
  line-height: 130%;
  font-weight: 500;
  padding-bottom: 15px;
}
.reports .report-card__download a {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #005762;
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}
.reports .report-card__download a .icon {
  width: 15px;
  height: 15px;
  background-image: url(../../images/icons/download.svg);
  background-size: cover;
  margin-right: 6px;
}
.reports .report-card__download a .icon:hover {
  opacity: 0.8;
}
.reports .press-release-read-more {
  padding: 0px 2rem;
}
.reports .button__primary__shape:before {
  background-color: #E9E9E9;
}

.hero-slider {
  position: relative;
}
.hero-slider__slides {
  position: relative;
  overflow: hidden;
}
.hero-slider__nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.hero-slider__nav-item {
  margin: 0 15px;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .hero-slider__nav-item {
    margin: 0 5px;
  }
}

.heroslider {
  color: #fff;
}
.heroslider:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}
.heroslider__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 90px 40px;
}
@media only screen and (max-width: 768px) {
  .heroslider__wrapper {
    flex-direction: column;
    padding: 50px 20px;
  }
}
.heroslider__title {
  flex: 1;
  padding-right: 100px;
  font-weight: 500;
  margin-bottom: 15px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .heroslider__title {
    font-size: 4.2rem;
    line-height: 5.2rem;
  }
}
.heroslider__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.heroslider__date {
  font-family: "Archivo";
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 17px 0 10px;
}
.heroslider__description p {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .heroslider__description p {
    font-size: 24px;
    line-height: 28px;
  }
}

.slider-nav-thumbnails .slick-list {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.slider-nav-thumbnails .slick-list .slick-track {
  width: auto !important;
  opacity: 1 !important;
  transform: none !important;
}

.hero-slider__slide .slider-nav-thumbnails {
  position: absolute;
  bottom: 75px;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
  padding: 20px 10px;
}
@media only screen and (max-width: 576px) {
  .hero-slider__slide .slider-nav-thumbnails {
    padding: 20px;
  }
}

.hero-slider__nav-item {
  font-size: 2.4rem;
  line-height: 2.8rem;
  color: #fff;
  font-weight: bold;
  font-family: "Archivo";
  border-top: 6px solid rgba(255, 255, 255, 0.5);
  padding: 30px 60px 20px;
}
@media only screen and (max-width: 768px) {
  .hero-slider__nav-item {
    font-size: 1.7rem;
    line-height: 120%;
    width: 105px;
    color: #fff;
    font-weight: bold;
    border-top: 4px solid rgba(255, 255, 255, 0.5);
    padding: 8px 10px;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  .hero-slider__nav-item {
    font-size: 1.3rem;
    width: 90px;
  }
}

.hero-slider__nav-item.slick-current.slick-active {
  border-top: 10px solid #fff;
}
@media only screen and (max-width: 768px) {
  .hero-slider__nav-item.slick-current.slick-active {
    border-top: 6px solid #fff;
  }
}

.people__name,
p.people__position {
  color: #231f20;
  line-height: 24px;
}

@-moz-document url-prefix() {
  header .site-logo img {
    height: 71px;
  }
}
@media only screen and (max-width: 1220px) {
  header .site-logo img {
    height: 43px;
  }
}
@media only screen and (max-width: 768px) {
  .modal__people__quote-content {
    margin: 2rem 0 0;
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  .modal__people__quote {
    padding: 2rem;
  }
}
.split-cta-paragraph--teal-background {
  background-color: #19988b;
}
.split-cta-paragraph--teal-background .split-cta-paragraph__headline p {
  color: #231f20;
}
.split-cta-paragraph--teal-background .button__primary__left {
  background-color: #fff;
}
.split-cta-paragraph--teal-background .button__primary__shape {
  color: #005762;
  background-color: #fff;
}
.split-cta-paragraph--teal-background .button__primary__shape:before {
  background-color: #19988b;
}
.split-cta-paragraph--teal-background .button__primary:hover,
.split-cta-paragraph--teal-background .button__primary:focus {
  color: #fff;
}
.split-cta-paragraph--teal-background .button__primary:hover .button__primary__left,
.split-cta-paragraph--teal-background .button__primary:hover .button__primary__shape,
.split-cta-paragraph--teal-background .button__primary:focus .button__primary__left,
.split-cta-paragraph--teal-background .button__primary:focus .button__primary__shape {
  background-color: #005762;
}
.split-cta-paragraph--gray-background {
  background-color: #E9E9E9;
}
.split-cta-paragraph--gray-background .button__primary__shape:before {
  background-color: #E9E9E9;
}
.split-cta-paragraph__container {
  flex-direction: column;
  justify-content: center;
  display: flex;
  padding: 3rem;
}
@media only screen and (min-width: 768px) {
  .split-cta-paragraph__container {
    flex-direction: row;
    padding: 4rem 2rem;
  }
}
@media only screen and (min-width: 992px) {
  .split-cta-paragraph__container {
    padding: 8rem 0;
  }
}
.split-cta-paragraph__simple-cta {
  width: 100%;
  max-width: 58.5rem;
  padding: 4rem 0;
}
.split-cta-paragraph__simple-cta:first-of-type {
  border-top: 0.2rem solid #000;
  border-bottom: 0.2rem solid #000;
}
@media only screen and (min-width: 768px) {
  .split-cta-paragraph__simple-cta:first-of-type {
    border-top: none;
    border-bottom: none;
    border-right: 0.2rem solid #000;
  }
}
@media only screen and (min-width: 768px) {
  .split-cta-paragraph__simple-cta {
    padding: 3rem;
  }
}
@media only screen and (min-width: 992px) {
  .split-cta-paragraph__simple-cta {
    padding: 6rem;
  }
}
.split-cta-paragraph__heading p {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media only screen and (min-width: 768px) {
  .split-cta-paragraph__heading p {
    font-size: 1.8rem;
  }
}
.split-cta-paragraph__headline p {
  margin: 2rem 0 3rem;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  color: #005762;
  line-height: 3.2rem;
}
@media only screen and (min-width: 768px) {
  .split-cta-paragraph__headline p {
    margin: 3rem 0 5rem;
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
}

.split-bold-title-with-text {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.split-bold-title-with-text--teal-background {
  background-color: #19988b;
}
.split-bold-title-with-text--teal-background .split-bold-title-with-text__col--bold,
.split-bold-title-with-text--teal-background .split-bold-title-with-text__col--plain {
  color: #fff;
}
.split-bold-title-with-text--gray-background {
  background-color: #E9E9E9;
}
.split-bold-title-with-text__remove-bottom-padding {
  padding-bottom: 0;
}
.split-bold-title-with-text__container {
  flex-direction: column;
  gap: 3rem;
  display: flex;
}
.split-bold-title-with-text__col {
  flex: 1;
}
.split-bold-title-with-text__col--bold {
  font-style: normal;
  font-weight: 400;
  line-height: 3.2rem;
  color: #005762;
}
.split-bold-title-with-text__col--bold p,
.split-bold-title-with-text__col--bold a,
.split-bold-title-with-text__col--bold span,
.split-bold-title-with-text__col--bold li {
  font-size: 2.4rem;
}
.split-bold-title-with-text__col--plain {
  font-style: normal;
  font-weight: 400;
  line-height: 2.4rem;
}
.split-bold-title-with-text__col--plain p,
.split-bold-title-with-text__col--plain a,
.split-bold-title-with-text__col--plain span,
.split-bold-title-with-text__col--plain li {
  font-size: 1.8rem;
}
.split-bold-title-with-text__col p, .split-bold-title-with-text__col ol, .split-bold-title-with-text__col ul {
  margin-bottom: 2rem;
}
.split-bold-title-with-text__col p:last-child, .split-bold-title-with-text__col ol:last-child, .split-bold-title-with-text__col ul:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .split-bold-title-with-text {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .split-bold-title-with-text__remove-bottom-padding {
    padding-bottom: 0;
  }
  .split-bold-title-with-text__container {
    flex-direction: row;
    gap: 5rem;
  }
  .split-bold-title-with-text__container.bold-text-right {
    flex-direction: row-reverse;
  }
  .split-bold-title-with-text__container.bold-text-right .split-bold-title-with-text__col--bold {
    text-align: right;
  }
  .split-bold-title-with-text__col--bold {
    line-height: 4.2rem;
  }
  .split-bold-title-with-text__col--bold p,
  .split-bold-title-with-text__col--bold a,
  .split-bold-title-with-text__col--bold span,
  .split-bold-title-with-text__col--bold li {
    font-size: 3.2rem;
  }
  .split-bold-title-with-text__col--plain {
    line-height: 2.8rem;
  }
  .split-bold-title-with-text__col--plain p,
  .split-bold-title-with-text__col--plain a,
  .split-bold-title-with-text__col--plain span,
  .split-bold-title-with-text__col--plain li {
    font-size: 1.8rem;
  }
}

.hero__container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero__headline {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%);
  font-size: 4.2rem;
  color: #fff;
}
@media only screen and (min-width: 992px) {
  .hero__headline {
    font-size: 6.4rem;
    left: 50%;
    transform: translate(-75%, -50%);
    max-width: 53.5rem;
    line-height: normal;
  }
}
.hero__video {
  display: none;
  background-color: #19988b;
}
@media only screen and (min-width: 768px) {
  .hero__video {
    display: block;
  }
}
.hero__video .video__element {
  height: 60rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero__desktop_image, .hero__mobile_image {
  width: 100%;
  height: 100%;
  -o-object-fit: none;
     object-fit: none; /* Disable the default scaling */
  -o-object-position: center center;
     object-position: center center; /* Center the image or video */
}
.hero__desktop_image img, .hero__mobile_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center; /* Center the image */
}
.hero__desktop_image {
  display: none;
}
@media only screen and (min-width: 768px) {
  .hero__desktop_image {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .hero__mobile_image {
    display: none;
  }
}

.quote-section {
  position: relative;
  padding-top: 8.5rem;
  padding-bottom: 8.5rem;
}
.quote-section--teal-background {
  background-color: #19988b;
}
.quote-section--gray-background {
  background-color: #E9E9E9;
}
.quote-section__container {
  justify-content: center;
  flex-direction: column;
  display: flex;
}
.quote-section__container.align-card-left {
  justify-content: flex-start;
}
.quote-section__container.align-card-right {
  justify-content: flex-end;
}
.quote-section.background-teal {
  background-color: #19988b;
}
.quote-section.background-white {
  background-color: #fff;
}
.quote-section__wrap {
  flex-direction: column;
  gap: 2.4rem;
  z-index: 1;
  display: flex;
  padding: 3.6rem 5rem;
}
@media only screen and (max-width: 768px) {
  .quote-section__wrap {
    padding: 3.6rem 2rem;
  }
}
.quote-section__wrap--content-background-white .quote-section__quote p, .quote-section__wrap--content-background-gray .quote-section__quote p {
  color: #000;
}
.quote-section__wrap--content-background-white .quote-section__quote-icon svg, .quote-section__wrap--content-background-gray .quote-section__quote-icon svg {
  color: #005762;
}
.quote-section__wrap--content-background-white {
  background-color: #fff;
}
.quote-section__wrap--content-background-teal {
  background-color: #19988b;
}
.quote-section__wrap--content-background-gray {
  background-color: #E9E9E9;
}
.quote-section__image {
  position: relative;
  height: 30rem;
}
.quote-section__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quote-section__quote p {
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: #231f20;
}
@media only screen and (max-width: 768px) {
  .quote-section__quote p {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
.quote-section__quote p, .quote-section__quote ol, .quote-section__quote ul {
  margin-bottom: 2rem;
}
.quote-section__quote p:last-child, .quote-section__quote ol:last-child, .quote-section__quote ul:last-child {
  margin-bottom: 0;
}
.quote-section__quote-icon svg {
  width: 5.9rem;
}
.quote-section__author {
  color: #231f20;
}
.quote-section__author__name {
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 700;
}
.quote-section__author__job-title {
  font-size: 1.35rem;
  line-height: normal;
}
.quote-section.enable-background-image,
.quote-section .section-container {
  padding: 0;
}
.quote-section .quote-section__wrap {
  flex: 1;
}
.quote-section .quote-section__wrap:has(.field--name-field-right-side-image) {
  margin: 0;
}
.quote-section .quote-section__wrap:has(.field--name-field-right-side-image) .field--name-field-media-image {
  display: flex;
}
.quote-section .quote-section__wrap:has(.field--name-field-right-side-image) .field--name-field-media-image .field__item {
  margin: 0 auto 0 auto;
}
.quote-section .quote-section__wrap:has(.field--name-field-right-side-image) img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  width: 85%;
}
.quote-section .quote-section__wrap:has(.field--name-field-right-side-image) .field--name-field-text-long p {
  padding-top: 2rem;
  color: #000;
  font-size: 2.4rem;
  line-height: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .quote-section .quote-section__wrap:has(.field--name-field-right-side-image) .field--name-field-text-long p {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media screen and (min-width: 992px) {
  .quote-section .quote-section__wrap:has(.field--name-field-right-side-image) {
    margin: 0 0 0 2rem;
  }
  .quote-section .section-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .quote-section__quote p,
  .quote-section .quote-section__wrap:has(.field--name-field-right-side-image) .field--name-field-text-long p {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
}
@media screen and (min-width: 768px) {
  .quote-section__container {
    flex-direction: row;
  }
  .quote-section .quote-section__wrap:has(.field--name-field-right-side-image) {
    margin: 0 0 0 2rem;
  }
  .quote-section .quote-section__wrap:has(.field--name-field-right-side-image) img {
    width: 18rem;
  }
  .quote-section__wrap {
    max-width: 55rem;
  }
  .quote-section__quote-icon svg {
    width: auto;
  }
  .quote-section__image {
    position: unset;
    height: auto;
  }
  .quote-section__author__name {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
  .quote-section__author__job-title {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .quote-section.enable-background-image {
    padding-top: 8.5rem;
    padding-bottom: 8.5rem;
  }
}
@media screen and (max-width: 768px) {
  .quote-section__container {
    padding: 0;
  }
}

.quote-section__wrap--content-background-white.powered_powered-by-vontier {
  max-width: 85rem;
}
.quote-section__wrap--content-background-white.powered_powered-by-vontier p {
  font-size: 2rem;
  line-height: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .quote-section__wrap--content-background-white.powered_powered-by-vontier p {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}

.reports-and-policies--teal-background {
  background-color: #19988b;
}
.reports-and-policies--teal-background .documents__link {
  color: #231f20;
}
.reports-and-policies--gray-background {
  background-color: #E9E9E9;
}
.reports-and-policies__lists {
  justify-content: center;
  flex-direction: column;
  row-gap: 3rem;
  flex-wrap: wrap;
  display: flex;
  padding-top: 6.5rem;
  padding-bottom: 5rem;
}
@media only screen and (min-width: 768px) {
  .reports-and-policies {
    border-top: none;
    border-bottom: none;
    border-right: 0.2rem solid #000;
  }
  .reports-and-policies__lists {
    flex-wrap: nowrap;
    flex-direction: row;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    padding-top: 7.2rem;
    padding-bottom: 12rem;
  }
  .reports-and-policies__container {
    max-width: 100%;
  }
}

.facts-paragraph {
  position: relative;
  align-items: center;
  display: flex;
}
.facts-paragraph__inner {
  flex-direction: column;
  display: flex;
  width: 100%;
}
.facts-paragraph__image {
  display: none;
}
.facts-paragraph__container {
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 0 4rem;
  background-color: #19988b;
}
@media only screen and (max-width: 768px) {
  .facts-paragraph__container {
    padding: 4rem 2rem 4rem;
  }
}
.facts-paragraph__headline {
  margin: 0 0 2rem;
  font-weight: 700;
  font-family: "Archivo";
  text-align: center;
}
.facts-paragraph__text_long {
  padding: 0px 30px 50px;
  text-align: center;
}
.facts-paragraph__text_long p {
  line-height: 2.6rem;
}
.facts-paragraph__container_inner {
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 2.6rem;
  display: flex;
}
.facts-paragraph a {
  flex-direction: column;
  align-items: center;
  display: flex;
  background-color: #000;
  text-decoration: none;
}
.facts-paragraph__simple_fact {
  flex-direction: column;
  align-items: center;
  display: flex;
  margin: 0 auto;
  width: 100%;
  max-width: 31.5rem;
  padding: 3rem 3.2rem;
  background-color: #000;
  text-align: center;
}
.facts-paragraph__label {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.facts-paragraph__fact_content {
  margin-top: auto;
  font-size: 6.8rem;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .facts-paragraph__fact_content {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .facts-paragraph__container {
    max-width: 1180px;
    padding: 5rem 2rem;
    background-color: transparent;
  }
  .facts-paragraph__fact_content {
    font-size: 6.8rem;
  }
  .facts-paragraph__label {
    font-size: 2.2rem;
  }
  .facts-paragraph__headline {
    margin: 0 0 3rem;
    font-size: 2.4rem;
  }
  .facts-paragraph__container_inner {
    flex-direction: row;
    gap: 4rem;
  }
  .facts-paragraph__simple_fact {
    margin: 0;
    max-width: 30rem;
  }
  .facts-paragraph__image {
    position: unset;
    display: block;
    height: auto;
  }
  .facts-paragraph__image img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (min-width: 1440px) {
  .facts-paragraph__simple_fact {
    max-width: 38rem;
  }
}

.path-frontpage .facts-paragraph__simple_fact {
  max-width: 31.5rem;
}
.path-frontpage .facts-paragraph__fact_content {
  font-size: 1.8rem;
  margin-top: 15px;
  line-height: 2.2rem;
}

.facts-paragraph--black-background .facts-paragraph__headline {
  color: #fff;
}
.facts-paragraph--black-background .facts-paragraph__text_long {
  color: #fff;
}

.images-grid,
.linkable-image-grid {
  position: relative;
  align-items: center;
  display: flex;
}
.images-grid--teal-background,
.linkable-image-grid--teal-background {
  background-color: #19988b;
}
.images-grid--gray-background,
.linkable-image-grid--gray-background {
  background-color: #E9E9E9;
}
.images-grid__inner,
.linkable-image-grid__inner {
  flex-direction: column;
  display: flex;
  width: 100%;
}
.images-grid__header,
.linkable-image-grid__header {
  display: flex;
  justify-content: center;
  margin: 6rem 0 0;
}
.images-grid__header h2,
.linkable-image-grid__header h2 {
  font-family: "Archivo";
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.images-grid__container,
.linkable-image-grid__container {
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  width: 100%;
}
.images-grid__images,
.linkable-image-grid__images {
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 2.6rem;
  display: flex;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.images-grid__image,
.linkable-image-grid__image {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 0 auto;
  width: 100%;
  max-width: 31.5rem;
  box-shadow: 0.2rem 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.images-grid__image .modal-trigger,
.images-grid__image .logo-link,
.linkable-image-grid__image .modal-trigger,
.linkable-image-grid__image .logo-link {
  padding: 3rem 3.2rem;
  background-color: transparent;
  border: none;
}
.images-grid__image .modal-trigger img,
.images-grid__image .logo-link img,
.linkable-image-grid__image .modal-trigger img,
.linkable-image-grid__image .logo-link img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .images-grid__images,
  .linkable-image-grid__images {
    flex-direction: row;
    gap: 4rem;
    max-width: 1180px;
  }
}
@media only screen and (min-width: 1440px) {
  .images-grid__image,
  .linkable-image-grid__image {
    max-width: 31.5rem;
  }
}

.page-responsibility button.modal-trigger,
.page-node-type-what-we-do button.modal-trigger {
  cursor: auto;
}

.text-hero {
  padding-top: 4.3rem;
  padding-bottom: 6.6rem;
}
.text-hero--teal-background {
  background-color: #19988b;
}
.text-hero--teal-background .button__primary {
  color: #005762;
}
.text-hero--teal-background .button__primary__left, .text-hero--teal-background .button__primary__shape {
  background-color: #fff;
}
.text-hero--teal-background .button__primary__shape::before {
  background-color: #19988b;
}
.text-hero--teal-background .button__primary:hover, .text-hero--teal-background .button__primary:focus {
  color: #fff;
}
.text-hero--teal-background .button__primary:hover .button__primary__left,
.text-hero--teal-background .button__primary:hover .button__primary__shape, .text-hero--teal-background .button__primary:focus .button__primary__left,
.text-hero--teal-background .button__primary:focus .button__primary__shape {
  background-color: #005762;
}
.text-hero--gray-background {
  background-color: #E9E9E9;
}
.text-hero--gray-background .text-hero__headings h2 {
  color: #005762;
}
.text-hero--gray-background .button__primary__shape {
  color: #fff;
}
.text-hero--gray-background .button__primary .button__primary__shape::before {
  background-color: #E9E9E9;
}
.text-hero--white-background .text-hero__headings h2 {
  color: #005762;
}
.text-hero--white-background .button__primary__shape {
  color: #fff;
}
.text-hero--black-background .text-hero__hero-content span, .text-hero--black-background .text-hero__hero-content p, .text-hero--black-background .text-hero__sub-heading, .text-hero--black-background .text-hero__headings {
  color: #fff;
}
.text-hero__container {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}
.text-hero__headings {
  gap: 2rem;
  flex-direction: column;
  display: flex;
}
.text-hero__sub-heading {
  font-family: "Archivo";
  font-size: 1.8rem;
  font-weight: 700;
  line-height: normal;
}
.text-hero__heading {
  margin: 0;
  font-size: 6.8rem;
  font-family: "Archivo";
  line-height: 5.2rem;
}
@media only screen and (max-width: 768px) {
  .text-hero__heading {
    font-size: calc(1.575rem + 3.9vw);
    line-height: 3.5rem;
  }
}
.text-hero__hero-content {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.text-hero__hero-content p {
  line-height: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .text-hero__hero-content p {
    line-height: 2.6rem;
  }
}
.text-hero__hero-content p, .text-hero__hero-content ol, .text-hero__hero-content ul {
  margin-bottom: 2rem;
}
.text-hero__hero-content p:last-child, .text-hero__hero-content ol:last-child, .text-hero__hero-content ul:last-child {
  margin-bottom: 0;
}
.text-hero__hero-button {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .text-hero {
    padding-top: 9.4rem;
    padding-bottom: 9.4rem;
  }
  .text-hero__container {
    gap: 4rem;
  }
  .text-hero__container.enable-two-column-layout {
    flex-direction: row;
  }
  .text-hero__container.enable-two-column-layout .text-hero__headings {
    flex: 1;
    gap: 3rem;
  }
  .text-hero__container.enable-two-column-layout .text-hero__content {
    flex: 1;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    display: flex;
  }
  .text-hero__sub-heading {
    font-size: 2.1rem;
  }
  .text-hero__heading {
    max-width: 98.1rem;
    font-size: 6.8rem;
    line-height: normal;
  }
  .text-hero__hero-content {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .text-hero__hero-button {
    margin-top: 3rem;
  }
}

.video-section {
  padding-top: 4.5rem;
}
.video-section--white-background .video {
  background-color: #E9E9E9;
}
.video-section--teal-background {
  background-color: #19988b;
}
.video-section--gray-background {
  background-color: #E9E9E9;
}
.video-section__container {
  padding-left: 0;
  padding-right: 0;
}
.video-section__content-wrap {
  max-width: 100%;
  margin-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.video-section__content-wrap h3 {
  margin-bottom: 2.6rem;
  text-align: center;
  line-height: normal;
}
.video-section__content-wrap .video-section__title {
  margin-bottom: 1.8rem;
  font-size: 4.2rem;
  font-weight: 400;
  text-align: left;
  color: #005762;
  line-height: normal;
}
.video-section__content-wrap p,
.video-section__content-wrap li,
.video-section__content-wrap a,
.video-section__content-wrap span {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.video-section__content-wrap p, .video-section__content-wrap ol, .video-section__content-wrap ul {
  margin-bottom: 2rem;
}
.video-section__content-wrap p:last-child, .video-section__content-wrap ol:last-child, .video-section__content-wrap ul:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .video-section {
    padding-top: 11.7rem;
  }
  .video-section__container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .video-section__content-wrap {
    margin: 0 0 4.5rem;
  }
  .video-section__content-wrap h3 {
    margin-bottom: 2.9rem;
  }
  .video-section__content-wrap .video-section__title {
    margin-bottom: 2.4rem;
    font-size: 6.4rem;
    text-align: center;
  }
  .video-section__content-wrap .video-section__copy-container {
    max-width: 62rem;
    margin: 0 auto;
  }
  .video-section__content-wrap p,
  .video-section__content-wrap li,
  .video-section__content-wrap a,
  .video-section__content-wrap span {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

.video-row.enable-two-column-layout .video {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.video-row.enable-two-column-layout .field__items {
  flex-direction: column;
  display: flex;
}
.video-row.enable-two-column-layout .field__item {
  flex: 1;
}
.video-row.enable-two-column-layout .video__video-content {
  flex-direction: column;
  gap: 0;
}
.video-row.enable-two-column-layout .video__content {
  padding: 2.6rem 2rem;
}
.video-row.enable-two-column-layout .video__content h3 {
  line-height: 4.2rem;
}
.video-row.enable-two-column-layout .video__logo-wrap ul {
  gap: 1rem;
  padding: 4rem 2rem;
}
@media screen and (min-width: 768px) {
  .video-row.enable-two-column-layout .field__items {
    gap: 9.4%;
    flex-direction: row;
  }
  .video-row.enable-two-column-layout .video__logo-wrap ul {
    padding: 3rem 3.3rem;
  }
}
.video-row .video__content {
  padding: 2.6rem 2rem;
}
@media screen and (min-width: 768px) {
  .video-row {
    margin-bottom: 10rem;
  }
}

.video {
  background-color: #fff;
}
.video__video-content {
  gap: 4rem;
  flex-direction: column;
  display: flex;
}
.video__video {
  flex: 1;
}
.video__content {
  flex: 1;
  padding-top: 0;
  padding-right: 2rem;
  padding-left: 2rem;
}
.video__content h3 {
  margin-bottom: 3rem;
  font-size: 3.2rem;
  color: #005762;
}
.video__content p,
.video__content li,
.video__content span,
.video__content a {
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.video__content p, .video__content ol, .video__content ul {
  margin-bottom: 2rem;
}
.video__content p:last-child,
.video__content ol:last-child,
.video__content ul:last-child {
  margin-bottom: 0;
}
.video__logo-wrap {
  display: flex;
  flex-wrap: wrap;
}
.video__logo-wrap .modal-trigger {
  background-color: transparent;
  border: none;
}
.video__logo-wrap ul {
  gap: 1rem;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding: 4rem 3.3rem;
  list-style: none;
}
.video__logo-wrap li {
  max-width: 15rem;
}
.video__logo-wrap img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .video__video-content {
    flex-direction: row;
  }
  .video__video-content {
    gap: 9.4%;
  }
  .video__content {
    padding-top: 2.8rem;
    padding-right: 3.2rem;
  }
  .video__logo-wrap ul {
    gap: 5rem;
  }
}

.simple-text-area {
  padding-top: 8.9rem;
  padding-bottom: 8.9rem;
}
@media only screen and (max-width: 768px) {
  .simple-text-area {
    padding-top: 3.9rem;
    padding-bottom: 3.9rem;
  }
}
.simple-text-area--teal-background {
  background-color: #19988b;
}
.simple-text-area--teal-background .simple-text-area__headline {
  color: #231f20;
}
.simple-text-area--gray-background {
  background-color: #E9E9E9;
}
.simple-text-area--white-background .simple-text-area__headline {
  color: #000;
}
.simple-text-area--black-background .simple-text-area__headline {
  color: #fff;
}
.simple-text-area--black-background .simple-text-area__long-text p, .simple-text-area--black-background .simple-text-area__long-text span {
  color: #fff;
}
.simple-text-area--black-background .button__primary__shape::before,
.simple-text-area--black-background .button__primary__shape {
  background-color: #fff;
}
.simple-text-area--black-background .button__primary__left {
  background-color: #000;
}
.simple-text-area__remove-bottom-padding {
  padding-bottom: 0;
}
.simple-text-area__container {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  text-align: left;
}
.simple-text-area__heading {
  margin-bottom: 2.4rem;
  line-height: normal;
  text-align: left;
}
.simple-text-area__headline {
  margin-bottom: 1.8rem;
  font-size: 4.2rem;
  font-weight: 400;
  color: #005762;
}
@media only screen and (max-width: 768px) {
  .simple-text-area__headline {
    font-size: 3.2rem;
    line-height: 3.8rem;
    margin-bottom: 0rem;
  }
}
.simple-text-area__enable-smaller-headline .simple-text-area__headline {
  font-size: 2.2rem;
}
.simple-text-area__long-text {
  text-align: left;
}
.simple-text-area__long-text li,
.simple-text-area__long-text span,
.simple-text-area__long-text a {
  font-size: 1.8rem;
  font-style: normal;
  line-height: 2.4rem;
}
.simple-text-area__long-text span, .simple-text-area__long-text p {
  font-size: 2rem;
  line-height: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .simple-text-area__long-text span, .simple-text-area__long-text p {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
.simple-text-area__read-more {
  padding-top: 5rem;
}
@media only screen and (min-width: 768px) {
  .simple-text-area__heading {
    margin-bottom: 1.9rem;
  }
  .simple-text-area__headline {
    margin-bottom: 2.4rem;
    font-size: 6.8rem;
  }
  .simple-text-area__enable-smaller-headline .simple-text-area__headline {
    font-size: 6.4rem;
  }
  .simple-text-area__long-text p,
  .simple-text-area__long-text li,
  .simple-text-area__long-text span,
  .simple-text-area__long-text a {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .simple-text-area__long-text span, .simple-text-area__long-text p {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .simple-text-area__long-text p, .simple-text-area__long-text ol, .simple-text-area__long-text ul {
    margin-bottom: 2rem;
  }
  .simple-text-area__long-text p:last-child, .simple-text-area__long-text ol:last-child, .simple-text-area__long-text ul:last-child {
    margin-bottom: 0;
  }
}

.simple-text-area--center-alignment .simple-text-area__container {
  align-items: center;
  text-align: center;
}
.simple-text-area--center-alignment .simple-text-area__long-text {
  text-align: center;
}
.simple-text-area--left-alignment .section-container {
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .simple-text-area--left-alignment .section-container {
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .simple-text-area--left-alignment .section-container {
    padding: 0 2rem;
  }
}

.simple-text-area--teal-background .button__primary__shape:before {
  background-color: #19988b;
}
.simple-text-area--teal-background .button__primary__left,
.simple-text-area--teal-background .button__primary__shape {
  background-color: #fff;
}

.pillars-paragraph {
  justify-content: center;
  display: flex;
}
.pillars-paragraph--teal-background {
  background-color: #19988b;
}
.pillars-paragraph--teal-background .pillars-paragraph__count {
  background-color: #fff;
}
.pillars-paragraph--teal-background .pillars-paragraph__count:before {
  border-top: 13.5rem solid #fff;
}
.pillars-paragraph--teal-background .pillars-paragraph__count:after {
  background-color: #fff;
}
.pillars-paragraph--teal-background .pillars-paragraph__content_headline {
  color: #231f20;
}
.pillars-paragraph--gray-background {
  background-color: #E9E9E9;
}
.pillars-paragraph__headline {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 1.8rem;
  font-family: "Archivo";
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #231f20;
}
.pillars-paragraph__pillar_wrap {
  flex-direction: column;
  justify-content: center;
  gap: 2.8rem;
  display: flex;
  margin: 3.5rem auto;
  padding: 0 2rem;
  max-width: 1180px;
}
.pillars-paragraph__pillar_wrap--right {
  text-align: right;
}
.pillars-paragraph__pillar {
  flex-direction: column;
  display: flex;
  max-width: 33rem;
}
.pillars-paragraph__count {
  position: relative;
  margin-left: auto;
  padding: 1rem 3rem;
  background-color: #19988b;
  font-size: 10rem;
  color: #231f20;
}
.pillars-paragraph__count:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: -13.5rem;
  border-right: 0rem solid transparent;
  border-left: 13.5rem solid transparent;
  border-top: 13.5rem solid #19988b;
}
.pillars-paragraph__count:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0rem;
  left: -14.5rem;
  width: 4rem;
  height: 13.5rem;
  background-color: #19988b;
  transform: skew(45deg, 0deg);
}
.pillars-paragraph__content_headline {
  margin-top: 2.8rem;
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-family: "Archivo";
  color: #005762;
}
.pillars-paragraph__content_copy {
  margin-top: 2rem;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-family: "Archivo";
  color: #231f20;
}
.pillars-paragraph__content_copy p, .pillars-paragraph__content_copy ol, .pillars-paragraph__content_copy ul {
  margin-bottom: 2rem;
}
.pillars-paragraph__content_copy p:last-child, .pillars-paragraph__content_copy ol:last-child, .pillars-paragraph__content_copy ul:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .pillars-paragraph__pillar_wrap {
    gap: 5rem;
  }
  .pillars-paragraph__pillar {
    max-width: 60rem;
  }
  .pillars-paragraph__count {
    padding: 1rem 3rem 1rem 30rem;
  }
}
@media screen and (min-width: 1440px) {
  .pillars-paragraph__pillar_wrap {
    flex-direction: row;
    gap: 8rem;
  }
  .pillars-paragraph__pillar {
    max-width: 33rem;
  }
  .pillars-paragraph__count {
    padding: 1rem 3rem;
  }
  .pillars-paragraph__content_headline {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
}

.banner-image__image {
  position: relative;
  height: 30rem;
}
.banner-image__image img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .banner-image__image {
    height: 45rem;
  }
}
@media only screen and (min-width: 1440px) {
  .banner-image__image {
    height: 65rem;
  }
}

.video-columns--teal-background {
  background-color: #19988b;
}
.video-columns--teal-background .video-columns__headline h3 {
  color: #231f20;
}
.video-columns--gray-background {
  background-color: #E9E9E9;
}
.video-columns--adding-bottom-padding {
  padding-bottom: 6.5rem;
}
@media only screen and (max-width: 768px) {
  .video-columns--adding-bottom-padding {
    padding-bottom: 3.5rem;
  }
}
.video-columns__inner {
  flex-direction: column;
  gap: 3rem;
  display: flex;
  padding: 3rem 2rem;
}
.video-columns__video_card {
  width: 100%;
}
.video-columns__headline h3 {
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-size: 3.2rem;
  color: #005762;
}
.video-columns__content p,
.video-columns__content li,
.video-columns__content a,
.video-columns__content span {
  font-size: 2rem;
  line-height: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .video-columns__content p,
  .video-columns__content li,
  .video-columns__content a,
  .video-columns__content span {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
.video-columns__content p, .video-columns__content ol, .video-columns__content ul {
  margin-bottom: 2rem;
}
.video-columns__content p:last-child, .video-columns__content ol:last-child, .video-columns__content ul:last-child {
  margin-bottom: 0;
}
.video-columns__image img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .video-columns__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6rem;
  }
  .video-columns__video_card {
    width: 50%;
    max-width: 31.5rem;
  }
}
@media only screen and (min-width: 1440px) {
  .video-columns__inner {
    gap: 8rem;
  }
}

.path-frontpage .video-columns__headline h3 {
  min-height: 76px;
}
@media only screen and (max-width: 768px) {
  .path-frontpage .video-columns__headline h3 {
    min-height: auto;
  }
}

.goals-and-progress {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.goals-and-progress--teal-background {
  background-color: #19988b;
}
.goals-and-progress--teal-background .goals-and-progress__wrap {
  background-color: #fff;
}
.goals-and-progress--teal-background .goals-and-progress__wrap::after {
  border-color: transparent #19988b transparent transparent;
}
.goals-and-progress--gray-background {
  background-color: #E9E9E9;
}
.goals-and-progress--gray-background .goals-and-progress__wrap::after {
  border-color: transparent #E9E9E9 transparent transparent;
}
.goals-and-progress__wrap {
  position: relative;
  flex-direction: column;
  gap: 3rem;
  display: flex;
  padding: 5rem 2rem;
  background-color: #19988b;
}
.goals-and-progress__wrap .field {
  flex: 1;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.goals-and-progress__wrap .field p,
.goals-and-progress__wrap .field li,
.goals-and-progress__wrap .field span,
.goals-and-progress__wrap .field a {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.goals-and-progress__wrap .field p, .goals-and-progress__wrap .field ol, .goals-and-progress__wrap .field ul {
  margin-bottom: 2rem;
}
.goals-and-progress__wrap .field p:last-child, .goals-and-progress__wrap .field ol:last-child, .goals-and-progress__wrap .field ul:last-child {
  margin-bottom: 0;
}
.goals-and-progress__wrap .field:first-child {
  font-family: "Archivo";
  font-size: 2.4rem;
  line-height: 4.2rem;
}
.goals-and-progress__wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-180deg);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.5rem 6.5rem 0;
  border-color: transparent #fff transparent transparent;
}
@media screen and (min-width: 992px) {
  .goals-and-progress__wrap {
    flex-direction: row;
    gap: 2.4rem;
    padding: 6rem 8rem;
  }
  .goals-and-progress__wrap .field {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .goals-and-progress__wrap .field p,
  .goals-and-progress__wrap .field li,
  .goals-and-progress__wrap .field span,
  .goals-and-progress__wrap .field a {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .goals-and-progress__wrap .field:first-child {
    font-size: 3.2rem;
  }
}

.accordion {
  margin: 2rem auto;
}
.accordion--teal-background {
  background-color: #19988b;
}
.accordion--teal-background .accordion-wrapper .accordion-item__btn {
  color: #231f20;
}
.accordion--gray-background {
  background-color: #E9E9E9;
}
.accordion__header {
  margin: 0 auto;
  max-width: 45rem;
  text-align: center;
}
.accordion__header_heading p {
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 700;
}
.accordion__header_headline h2 {
  margin: 4rem auto 2rem;
  font-size: 4.2rem;
  color: #005762;
}
.accordion__header_copy {
  margin: 0 0 4rem;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.accordion .accordion-item {
  border-top: 0.2rem solid #231f20;
}
.accordion .accordion-item:first-of-type {
  border: none;
}
.accordion .accordion-item .accordion-panel {
  flex-direction: column;
  gap: 4rem;
  display: flex;
}
.accordion .accordion-item__text-area {
  margin: 0 0 2rem;
}
.accordion .accordion-item__text-area p,
.accordion .accordion-item__text-area li,
.accordion .accordion-item__text-area a,
.accordion .accordion-item__text-area span {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #231f20;
}
.accordion .accordion-item__text-area p, .accordion .accordion-item__text-area ol, .accordion .accordion-item__text-area ul {
  margin-bottom: 2rem;
}
.accordion .accordion-item__text-area p:last-child, .accordion .accordion-item__text-area ol:last-child, .accordion .accordion-item__text-area ul:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .accordion {
    margin: 4rem auto 0;
  }
  .accordion__header_headline h2 {
    margin: 6rem auto 4rem;
    font-size: 5.4rem;
  }
  .accordion__header_copy {
    margin: 0 0 6rem;
  }
  .accordion__header_copy p {
    line-height: 3.2rem;
  }
  .accordion .accordion-item__image {
    margin: 0 auto;
    min-width: 35rem;
  }
}
@media only screen and (min-width: 992px) {
  .accordion {
    margin: 8rem auto 0;
  }
  .accordion__header_heading p {
    font-size: 1.8rem;
  }
  .accordion__header_headline h2 {
    margin: 4rem auto;
    font-size: 6.4rem;
  }
  .accordion .accordion-item .accordion-panel {
    gap: 4rem;
    flex-direction: row;
    margin: 1.8rem 0;
  }
  .accordion .accordion-item .accordion-item__image {
    margin: 0;
  }
  .accordion .accordion-item .accordion-item__text-area {
    margin: 0;
    max-width: 75%;
  }
  .accordion .accordion-item .accordion-item__text-area.no-image {
    max-width: 100%;
  }
}

.full-width-video--teal-background {
  background-color: #19988b;
}
.full-width-video--gray-background {
  background-color: #E9E9E9;
}
.full-width-video__video {
  border-bottom: none;
  padding-bottom: 5rem;
}
.full-width-video__video-wrap {
  padding-top: 3.8rem;
  text-align: center;
}
.full-width-video__video-wrap .vjs-poster img {
  -o-object-fit: cover;
     object-fit: cover;
}
.full-width-video__video-wrap h2 {
  margin-bottom: 3.8rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .full-width-video__video {
    border-bottom: 0.2rem solid #231f20;
  }
  .full-width-video__video-wrap {
    padding-top: 4.8rem;
  }
  .full-width-video__video-wrap h2 {
    margin-bottom: 4.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: normal;
  }
}

.post-it-notes-paragraph {
  padding: 3rem 2rem;
}
.post-it-notes-paragraph--teal-background {
  background-color: #19988b;
}
.post-it-notes-paragraph--teal-background .post-it-notes-paragraph__post_it {
  background-color: #fff;
}
.post-it-notes-paragraph--teal-background .post-it-notes-paragraph__post_it:after {
  border-color: transparent #19988b transparent transparent;
}
.post-it-notes-paragraph__inner {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}
.post-it-notes-paragraph__post_it {
  position: relative;
  padding: 2rem 2rem 5rem;
  background-color: #19988b;
}
.post-it-notes-paragraph__post_it:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-180deg);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 3.5rem 3.5rem 0;
  border-color: transparent white transparent transparent;
}
.post-it-notes-paragraph__headline h3 {
  margin-bottom: 2.6rem;
  font-size: 3.2rem;
  line-height: normal;
}
.post-it-notes-paragraph__content {
  max-width: 100%;
}
.post-it-notes-paragraph__content p,
.post-it-notes-paragraph__content li,
.post-it-notes-paragraph__content a,
.post-it-notes-paragraph__content span {
  font-size: 2.2rem;
  line-height: 3rem;
}
@media screen and (min-width: 768px) {
  .post-it-notes-paragraph {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .post-it-notes-paragraph__inner {
    flex-direction: row;
    flex-flow: wrap;
    margin: 0 auto;
  }
  .post-it-notes-paragraph__post_it {
    width: calc(50% - 1rem);
    padding: 3rem 3rem 5rem;
  }
  .post-it-notes-paragraph__post_it:after {
    border-width: 0 5rem 5rem 0;
  }
  .post-it-notes-paragraph__headline h3 {
    font-size: 4.8rem;
  }
  .post-it-notes-paragraph__content p,
  .post-it-notes-paragraph__content li,
  .post-it-notes-paragraph__content a,
  .post-it-notes-paragraph__content span {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}
@media screen and (min-width: 992px) {
  .post-it-notes-paragraph__headline h3 {
    font-size: 6.4rem;
  }
  .post-it-notes-paragraph__content p,
  .post-it-notes-paragraph__content li,
  .post-it-notes-paragraph__content a,
  .post-it-notes-paragraph__content span {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
}

.goals-and-progress-rows {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.goals-and-progress-rows--teal-background {
  background-color: #19988b;
}
.goals-and-progress-rows--teal-background .three-column-row__title {
  color: #231f20;
}
.goals-and-progress-rows--gray-background {
  background-color: #E9E9E9;
}
.goals-and-progress-rows .field__item .three-column-row {
  border-bottom: 0.2rem solid #000;
}
.goals-and-progress-rows .field__item:last-child {
  border-bottom: none;
}
.goals-and-progress-rows .field__item:last-child .three-column-row {
  border-bottom: none;
}

.three-column-row {
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
}
.three-column-row__cols {
  gap: 1.8rem;
  flex-direction: column;
  display: flex;
}
.three-column-row__subtitle {
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
}
.three-column-row__title {
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: #005762;
}
.three-column-row__col {
  flex: 1;
  flex-direction: column;
  gap: 2.4rem;
  display: flex;
}
.three-column-row__col--2 *, .three-column-row__col--3 * {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.three-column-row__achievements {
  margin-top: 1.8rem;
}
.three-column-row__achievements * {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.three-column-row__icon {
  flex: 1;
  width: 4.2rem;
}
.three-column-row__icon img {
  width: 100%;
  height: auto;
}
.three-column-row__titles {
  flex: 5;
}
@media only screen and (min-width: 992px) {
  .three-column-row {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .three-column-row__cols {
    gap: 2.4rem;
    flex-direction: row;
  }
  .three-column-row__subtitle {
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
    line-height: normal;
  }
  .three-column-row__title {
    flex: 1;
    font-size: 3.2rem;
    line-height: normal;
  }
  .three-column-row__col {
    flex-direction: row;
  }
  .three-column-row__col--2 *, .three-column-row__col--3 * {
    flex-direction: column;
    display: flex;
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .three-column-row__achievements * {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .three-column-row__icon {
    width: 6.8rem;
  }
}

.text-with-graphic {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.text-with-graphic--teal-background {
  background-color: #19988b;
}
.text-with-graphic--teal-background .text-with-graphic__row__title {
  color: #231f20;
}
.text-with-graphic--gray-background {
  background-color: #E9E9E9;
}
.text-with-graphic__container {
  flex-direction: column-reverse;
  gap: 2rem;
  display: flex;
}
.text-with-graphic__content {
  flex: 1;
}
.text-with-graphic__row {
  margin-bottom: 2rem;
}
.text-with-graphic__row__title {
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: #005762;
}
.text-with-graphic__row__content p {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.text-with-graphic__row__content p, .text-with-graphic__row__content ol, .text-with-graphic__row__content ul {
  margin-bottom: 2rem;
}
.text-with-graphic__row__content p:last-child, .text-with-graphic__row__content ol:last-child, .text-with-graphic__row__content ul:last-child {
  margin-bottom: 0;
}
.text-with-graphic__graphic {
  flex: 1;
  align-items: center;
  display: flex;
}
.text-with-graphic__graphic .text-with-graphic__video,
.text-with-graphic__graphic img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .text-with-graphic__container {
    flex-direction: row;
  }
  .text-with-graphic__container--content-right {
    flex-direction: row-reverse;
  }
  .text-with-graphic__row {
    margin-bottom: 3.6rem;
  }
  .text-with-graphic__row__title {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
  }
  .text-with-graphic__row__content p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

.partnerships__container {
  gap: 3.6rem;
  flex-wrap: wrap;
  display: flex;
  margin-top: 7.2rem;
  margin-bottom: 7.2rem;
  width: 100%;
}
.partnerships__item {
  width: 100%;
}
.partnerships__item .modal-trigger {
  padding: 3.4rem 4.4rem;
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .partnerships__item {
    width: 47%;
  }
}
@media screen and (min-width: 992px) {
  .partnerships__item {
    width: 30%;
  }
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Login Page Styling */
.page-user-login main,
.page-user-password main {
  width: 450px;
  margin: 100px auto;
  padding: 55px 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 768px) {
  .page-user-login main,
  .page-user-password main {
    width: 90%;
    margin: 100px 20px;
  }
}
.page-user-login main .tabs > li,
.page-user-password main .tabs > li {
  display: inline-block;
  margin-right: 2.3em;
}
@media only screen and (max-width: 768px) {
  .page-user-login main .tabs > li,
  .page-user-password main .tabs > li {
    margin-right: 1.3em;
  }
}
.page-user-login main .tabs > li a,
.page-user-password main .tabs > li a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .page-user-login main .tabs > li a,
  .page-user-password main .tabs > li a {
    padding: 0.2em 0.5em;
  }
}
.page-user-login main form,
.page-user-password main form {
  padding: 15px 0;
}
.page-user-login main form label,
.page-user-password main form label {
  font-size: 20px;
  font-weight: bold;
  font-family: "Archivo";
}
.page-user-login main form input[type=text],
.page-user-login main form input[type=password],
.page-user-password main form input[type=text],
.page-user-password main form input[type=password] {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  margin-top: 10px;
  height: 40px;
  border-radius: 5px;
  font-size: 18px;
  font-family: "Archivo";
}
.page-user-login main form input[type=submit],
.page-user-password main form input[type=submit] {
  width: 100%;
  background: #19988b;
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Archivo";
  font-size: 20px;
}
.page-user-login main form input[type=submit]:hover,
.page-user-password main form input[type=submit]:hover {
  opacity: 0.8;
}
.page-user-login main form p,
.page-user-password main form p {
  font-size: 1.6rem;
}
.page-user-login main form #edit-actions,
.page-user-password main form #edit-actions {
  margin-top: 35px;
}

.people {
  flex-direction: column;
  align-items: center;
  display: flex;
  padding: 4.4rem 2rem;
  font-family: "Archivo";
  color: #231f20;
}
.people--teal-background {
  background-color: #19988b;
}
.people--gray-background {
  background-color: #E9E9E9;
}
.people__title {
  margin: 0 0 2rem 0;
  line-height: normal;
}
.people__header {
  margin: 0 0 4.4rem;
}
.people__header p {
  max-width: 47.5rem;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.8rem;
}
.people__people_container {
  flex-direction: column;
  gap: 2.9rem;
  display: flex;
  margin: 0 0 4.4rem 0;
  padding: 0 1rem;
}
.people__modal_card {
  flex-direction: column;
  align-items: center;
  display: flex;
  max-width: 31.3rem;
  border: none;
  padding: 0;
  background-color: transparent;
}
.people__headshot {
  margin: 0 0 2.1rem 0;
}
.people__name {
  font-size: 1.8rem;
  font-weight: 700;
}
.people__position {
  font-size: 1.8rem;
  padding: 0 1.5rem;
  max-width: 80%;
  text-align: center;
}
.people__headshot img {
  transition: transform 1.1s;
}
.people__headshot img:hover {
  transform: scale(1.1);
}
@media only screen and (min-width: 768px) {
  .people__people_container {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 67.6rem;
  }
}
@media only screen and (min-width: 992px) {
  .people {
    padding: 7.9rem 2rem 0;
  }
  .people__title {
    margin: 0 0 4rem 0;
  }
  .people__people_container {
    gap: 5rem;
    padding: 0;
  }
  .people__headshot {
    margin: 0 0 2.8rem;
  }
  .people__name {
    font-size: 1.8rem;
  }
  .people__position {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1440px) {
  .people__people_container {
    max-width: 1180px;
    padding: 0 7rem 4.5rem;
  }
}

.documents {
  font-family: "Archivo";
}
.documents__header {
  margin: 0 0 2.4rem 0;
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 700;
}
.documents__two_columns {
  -moz-column-count: 1;
       column-count: 1;
}
.documents__content_wrap {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  max-width: 100%;
  padding-bottom: 1.5rem;
}
.documents__link {
  display: block;
  margin-bottom: 0.4rem;
  text-decoration: underline;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8rem;
  color: #005762;
}
.documents__body {
  padding: 0 0 1.5rem 0;
}
.documents__body p {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .documents__link {
    line-height: 2.8rem;
    font-size: 1.8rem;
  }
  .documents__body p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .documents__header {
    font-size: 1.8rem;
  }
  .documents__two_columns {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    -moz-column-fill: balance;
         column-fill: balance;
  }
  .documents__content_wrap {
    max-width: 40rem;
  }
}
/*# sourceMappingURL=styles.css.map */
