/* _master.scss */
/* ============ LIBRARIES ============ */
/* _flexbox-grid.scss */
@import url("../../global/CSS/global.css");
@import url("https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900,900i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Libre+Baskerville:700&display=swap");
.flex-container,
.flex-container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.flex-row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.flex-row.reverse {
  flex-direction: row-reverse;
}

.flex-col.reverse {
  flex-direction: column-reverse;
}

.flex-col-xs,
.flex-col-xs-1,
.flex-col-xs-2,
.flex-col-xs-3,
.flex-col-xs-4,
.flex-col-xs-5,
.flex-col-xs-6,
.flex-col-xs-7,
.flex-col-xs-8,
.flex-col-xs-9,
.flex-col-xs-10,
.flex-col-xs-11,
.flex-col-xs-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.flex-col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.flex-col-xs-1 {
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.flex-col-xs-2 {
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.flex-col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.flex-col-xs-4 {
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.flex-col-xs-5 {
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.flex-col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.flex-col-xs-7 {
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.flex-col-xs-8 {
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.flex-col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.flex-col-xs-10 {
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.flex-col-xs-11 {
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.flex-col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.flex-col-xs-offset-1 {
  margin-left: 8.333%;
}

.flex-col-xs-offset-2 {
  margin-left: 16.667%;
}

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

.flex-col-xs-offset-4 {
  margin-left: 33.333%;
}

.flex-col-xs-offset-5 {
  margin-left: 41.667%;
}

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

.flex-col-xs-offset-7 {
  margin-left: 58.333%;
}

.flex-col-xs-offset-8 {
  margin-left: 66.667%;
}

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

.flex-col-xs-offset-10 {
  margin-left: 83.333%;
}

.flex-col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  justify-content: center;
  text-align: center;
}

.end-xs {
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  align-items: flex-start;
}

.middle-xs {
  align-items: center;
}

.bottom-xs {
  align-items: flex-end;
}

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 768px) {
  .flex-container {
    width: 750px;
  }
  .flex-col-sm,
.flex-col-sm-1,
.flex-col-sm-2,
.flex-col-sm-3,
.flex-col-sm-4,
.flex-col-sm-5,
.flex-col-sm-6,
.flex-col-sm-7,
.flex-col-sm-8,
.flex-col-sm-9,
.flex-col-sm-10,
.flex-col-sm-11,
.flex-col-sm-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .flex-col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .flex-col-sm-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .flex-col-sm-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .flex-col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .flex-col-sm-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex-col-sm-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .flex-col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex-col-sm-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .flex-col-sm-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .flex-col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .flex-col-sm-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .flex-col-sm-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .flex-col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .flex-col-sm-offset-0 {
    margin-left: 0;
  }
  .flex-col-sm-offset-1 {
    margin-left: 8.333%;
  }
  .flex-col-sm-offset-2 {
    margin-left: 16.667%;
  }
  .flex-col-sm-offset-3 {
    margin-left: 25%;
  }
  .flex-col-sm-offset-4 {
    margin-left: 33.333%;
  }
  .flex-col-sm-offset-5 {
    margin-left: 41.667%;
  }
  .flex-col-sm-offset-6 {
    margin-left: 50%;
  }
  .flex-col-sm-offset-7 {
    margin-left: 58.333%;
  }
  .flex-col-sm-offset-8 {
    margin-left: 66.667%;
  }
  .flex-col-sm-offset-9 {
    margin-left: 75%;
  }
  .flex-col-sm-offset-10 {
    margin-left: 83.333%;
  }
  .flex-col-sm-offset-11 {
    margin-left: 91.667%;
  }
  .start-sm {
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    align-items: flex-start;
  }
  .middle-sm {
    align-items: center;
  }
  .bottom-sm {
    align-items: flex-end;
  }
  .around-sm {
    justify-content: space-around;
  }
  .between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .flex-container {
    width: 970px;
  }
  .flex-col-md,
.flex-col-md-1,
.flex-col-md-2,
.flex-col-md-3,
.flex-col-md-4,
.flex-col-md-5,
.flex-col-md-6,
.flex-col-md-7,
.flex-col-md-8,
.flex-col-md-9,
.flex-col-md-10,
.flex-col-md-11,
.flex-col-md-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .flex-col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .flex-col-md-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .flex-col-md-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .flex-col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .flex-col-md-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex-col-md-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .flex-col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex-col-md-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .flex-col-md-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .flex-col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .flex-col-md-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .flex-col-md-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .flex-col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .flex-col-md-offset-0 {
    margin-left: 0;
  }
  .flex-col-md-offset-1 {
    margin-left: 8.333%;
  }
  .flex-col-md-offset-2 {
    margin-left: 16.667%;
  }
  .flex-col-md-offset-3 {
    margin-left: 25%;
  }
  .flex-col-md-offset-4 {
    margin-left: 33.333%;
  }
  .flex-col-md-offset-5 {
    margin-left: 41.667%;
  }
  .flex-col-md-offset-6 {
    margin-left: 50%;
  }
  .flex-col-md-offset-7 {
    margin-left: 58.333%;
  }
  .flex-col-md-offset-8 {
    margin-left: 66.667%;
  }
  .flex-col-md-offset-9 {
    margin-left: 75%;
  }
  .flex-col-md-offset-10 {
    margin-left: 83.333%;
  }
  .flex-col-md-offset-11 {
    margin-left: 91.667%;
  }
  .start-md {
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    justify-content: center;
    text-align: center;
  }
  .end-md {
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    align-items: flex-start;
  }
  .middle-md {
    align-items: center;
  }
  .bottom-md {
    align-items: flex-end;
  }
  .around-md {
    justify-content: space-around;
  }
  .between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 1440px) {
  .flex-container {
    width: 1240px;
  }
  .flex-col-lg,
.flex-col-lg-1,
.flex-col-lg-2,
.flex-col-lg-3,
.flex-col-lg-4,
.flex-col-lg-5,
.flex-col-lg-6,
.flex-col-lg-7,
.flex-col-lg-8,
.flex-col-lg-9,
.flex-col-lg-10,
.flex-col-lg-11,
.flex-col-lg-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .flex-col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .flex-col-lg-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .flex-col-lg-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .flex-col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .flex-col-lg-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex-col-lg-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .flex-col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex-col-lg-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .flex-col-lg-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .flex-col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .flex-col-lg-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .flex-col-lg-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .flex-col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .flex-col-lg-offset-0 {
    margin-left: 0;
  }
  .flex-col-lg-offset-1 {
    margin-left: 8.333%;
  }
  .flex-col-lg-offset-2 {
    margin-left: 16.667%;
  }
  .flex-col-lg-offset-3 {
    margin-left: 25%;
  }
  .flex-col-lg-offset-4 {
    margin-left: 33.333%;
  }
  .flex-col-lg-offset-5 {
    margin-left: 41.667%;
  }
  .flex-col-lg-offset-6 {
    margin-left: 50%;
  }
  .flex-col-lg-offset-7 {
    margin-left: 58.333%;
  }
  .flex-col-lg-offset-8 {
    margin-left: 66.667%;
  }
  .flex-col-lg-offset-9 {
    margin-left: 75%;
  }
  .flex-col-lg-offset-10 {
    margin-left: 83.333%;
  }
  .flex-col-lg-offset-11 {
    margin-left: 91.667%;
  }
  .start-lg {
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    align-items: flex-start;
  }
  .middle-lg {
    align-items: center;
  }
  .bottom-lg {
    align-items: flex-end;
  }
  .around-lg {
    justify-content: space-around;
  }
  .between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
/* ============ BASE ============ */
/* _variables.scss */
/* ============ Colors ============ */
/* ============ Fonts ============ */
/* ============ Breakpoints ============ */
/*
.example {
  width: 100%;

  @include bp-sm {
    width: 50%;
  }
}
*/
.green-color {
  color: #b5be34 !important;
}

.teal-color {
  color: #15667f !important;
}

.black-color {
  color: black !important;
}

.sky-blue-color {
  color: #5fb2cb !important;
}

.navy-color {
  color: #0d3d4c !important;
}

/* _typography.scss */
/* ============ FONTS ============ */
/* ============ TAGS ============ */
body,
p,
ul,
ol {
  color: #0d3d4c;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  line-height: 32px;
}

p {
  margin: 0 0 24px 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0 0 20px 0;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Libre Baskerville", serif;
}

h1 {
  font-size: 35px;
  line-height: 45px;
}
@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 45px;
    line-height: 55px;
  }
}

h2 {
  font-size: 30px;
  line-height: 40px;
}
@media only screen and (min-width: 1024px) {
  h2 {
    font-size: 35px;
    line-height: 45px;
  }
}

h3 {
  font-size: 25px;
  line-height: 35px;
  color: #15667f;
}
@media only screen and (min-width: 1024px) {
  h3 {
    font-size: 25px;
    line-height: 35px;
  }
}

h4 {
  font-size: 17px;
  line-height: 27px;
  color: #15667f;
}
@media only screen and (min-width: 1024px) {
  h4 {
    font-size: 18px;
    line-height: 28px;
  }
}

h5 {
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (min-width: 1024px) {
  h5 {
    font-size: 17px;
    line-height: 27px;
  }
}

h6 {
  font-size: 15px;
  line-height: 24px;
}
@media only screen and (min-width: 1024px) {
  h6 {
    font-size: 16px;
    line-height: 24px;
  }
}

a {
  outline: none;
  text-decoration: none;
  transition: all 300ms;
  color: #5fb2cb;
}

a.slanted-button {
  display: block;
  position: relative;
  color: #0d3d4c;
  padding: 0.5em 1.5em;
  font-size: 1.4rem;
  box-sizing: border-box;
  text-align: center;
  max-width: 100%;
}
a.slanted-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #b5be34;
  transform: skew(-10deg);
  transform-origin: center;
}

a img {
  border: 0;
}

b,
strong {
  font-weight: normal;
}

em,
i {
  font-style: normal;
}

strong,
b,
.strong {
  font-weight: 700;
}

em,
i,
.em {
  font-style: italic;
}

b em,
b i,
strong em,
strong i,
em b,
em strong,
i b,
i strong {
  font-style: italic;
  font-weight: 700;
}

.subheader {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  font-family: "Libre Baskerville", serif;
  color: #b5be34;
  margin: 0 0 30px !important;
}
@media (min-width: 778px) {
  .subheader {
    font-size: 27px;
  }
}

body.news h1 {
  color: #0d3d4c;
  font-size: 35px;
  word-break: break-word;
}
@media only screen and (min-width: 768px) {
  body.news h1 {
    font-size: 45px;
  }
}

.templatecontent h2,
.matrix-content h2 {
  color: #b5be34;
}
.templatecontent h3,
.templatecontent h4,
.matrix-content h3,
.matrix-content h4 {
  color: #15667f;
}

.templatecontent {
  margin: 20px;
}
@media only screen and (min-width: 1024px) {
  .templatecontent {
    margin: 50px;
  }
}

/* _buttons.scss */
/* ============ SITEWRENCH ============ */
/* _alert.scss */ /* _forms.scss */
.formmodule {
  display: block;
  position: relative;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-6px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(6px);
  }
}
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage {
  animation: tada 1s ease-out 0.3s normal 1;
  background: #4EB75E;
  border-radius: 2px;
  border: 1px solid #419c4f;
  color: #fff !important;
  font-size: 1.6rem;
  margin: 0 0 30px 0;
  overflow: hidden;
  padding-left: 45px !important;
  padding: 8px;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage {
    padding: 12px;
  }
}
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage::before, .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage::after,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage::before,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage::after {
  background: #fff;
  border-radius: 1px;
  content: "";
  display: block;
  left: 24px;
  position: absolute;
  top: 50%;
}
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage::before,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage::before {
  height: 20px;
  margin: -10px 0 0 0px;
  transform: rotate(42deg);
  width: 4px;
}
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage::after,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage::after {
  height: 10px;
  margin: -1px 0 0 -8px;
  transform: rotate(-47deg);
  width: 4px;
}
.formmodule h3:first-of-type:empty {
  display: none;
}
.formmodule .formmodule-form table, .formmodule .formmodule-form tbody, .formmodule .formmodule-form tr, .formmodule .formmodule-form td {
  display: inline-block;
  width: 100%;
}
.formmodule .formmodule-form table tbody tr.formmodule-row, .formmodule .formmodule-form table tbody tr.formmodule-altrow {
  margin: 0 0 10px 0;
}
@media only screen and (min-width: 1024px) {
  .formmodule .formmodule-form table tbody tr.formmodule-row, .formmodule .formmodule-form table tbody tr.formmodule-altrow {
    margin: 0 0 15px 0;
  }
}
.formmodule .formmodule-form table tbody tr td {
  padding: 0;
}
.formmodule .formmodule-form table tbody tr td span, .formmodule .formmodule-form table tbody tr td label {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: normal;
}
.formmodule .formmodule-form table tbody tr td input[type=text],
.formmodule .formmodule-form table tbody tr td input[type=file],
.formmodule .formmodule-form table tbody tr td textarea {
  background: #fff;
  border-radius: 2px;
  border: 1px solid #dcdcdc;
  color: #222;
  font-size: 1.6rem;
  padding: 4px 8px;
  width: 100%;
}
.formmodule .formmodule-form table tbody tr td input[type=text]:-moz-placeholder, .formmodule .formmodule-form table tbody tr td input[type=text]::-moz-placeholder, .formmodule .formmodule-form table tbody tr td input[type=text]:-ms-input-placeholder, .formmodule .formmodule-form table tbody tr td input[type=text]::-webkit-input-placeholder,
.formmodule .formmodule-form table tbody tr td input[type=file]:-moz-placeholder,
.formmodule .formmodule-form table tbody tr td input[type=file]::-moz-placeholder,
.formmodule .formmodule-form table tbody tr td input[type=file]:-ms-input-placeholder,
.formmodule .formmodule-form table tbody tr td input[type=file]::-webkit-input-placeholder,
.formmodule .formmodule-form table tbody tr td textarea:-moz-placeholder,
.formmodule .formmodule-form table tbody tr td textarea::-moz-placeholder,
.formmodule .formmodule-form table tbody tr td textarea:-ms-input-placeholder,
.formmodule .formmodule-form table tbody tr td textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
@media only screen and (min-width: 1024px) {
  .formmodule .formmodule-form table tbody tr td input[type=text],
.formmodule .formmodule-form table tbody tr td input[type=file],
.formmodule .formmodule-form table tbody tr td textarea {
    padding: 8px 12px;
  }
}
.formmodule .formmodule-form table tbody tr td input.formmodule-phone {
  margin: 0 2% 0 0;
  text-align: center;
  width: 32%;
}
.formmodule .formmodule-form table tbody tr td input.formmodule-phone:nth-of-type(3) {
  margin-right: 0;
}
.formmodule .formmodule-form table tbody tr td select,
.formmodule .formmodule-form table tbody tr td input[type=file] {
  clear: both;
  display: block;
}
.formmodule .formmodule-form table tbody tr td input[type=file] {
  background: #f7f7f7;
}
.formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td input[type=checkbox],
.formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td input[type=radio],
.formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td input[type=checkbox],
.formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td input[type=radio] {
  margin: 2px 0;
}
.formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td label,
.formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td label {
  font-size: 1.4rem;
  margin: 0 0 0 6px;
  padding: 4px 0;
}
.formmodule .formmodule-form table tbody tr td.formmodule-column1 {
  margin: 0;
}
.formmodule .formmodule-form table tbody tr td.formmodule-column2 span[style*="color: red;"] {
  background: #E63A3A;
  border-radius: 2px;
  border: 1px solid #ce2233;
  color: #fff !important;
  font-size: 1.3rem;
  padding: 5px 8px;
  position: relative;
}
.formmodule .formmodule-form table tbody tr td.formmodule-column2 span[style*="color: red;"]::before {
  background: #E63A3A;
  border-left: 1px solid #ce2233;
  border-top-left-radius: 2px;
  border-top: 1px solid #ce2233;
  content: "";
  display: block;
  height: 10px;
  left: 8px;
  position: absolute;
  top: -6px;
  transform: rotate(45deg);
  width: 10px;
}
.formmodule .form-bot-stopper {
  margin: 0 0 15px 0;
}
.formmodule .form-bot-stopper .form-bot-stopper-info {
  font-size: 1.4rem;
}
.formmodule .form-bot-stopper .form-bot-stopper-question {
  font-size: 1.4rem;
}
.formmodule .form-bot-stopper .form-bot-stopper-question input.form-bot-stopper-value {
  background: #fff;
  border-radius: 2px;
  border: 1px solid #dcdcdc;
  color: #222;
  font-size: 1.6rem;
  height: 32px;
  padding: 4px;
  text-align: center;
  width: 40px !important;
}
.formmodule .formmodule-errors {
  margin: 15px 0 0 0;
}
.formmodule .formmodule-errors div {
  animation: shake 1s ease-out 0.3s normal 1;
  background: #e63a3a;
  border-radius: 2px;
  border: 1px solid #ce2233;
  color: #fff !important;
  font-size: 1.4rem;
  padding-left: 38px !important;
  padding: 8px;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .formmodule .formmodule-errors div {
    padding: 12px;
  }
}
.formmodule .formmodule-errors div::before, .formmodule .formmodule-errors div::after {
  background: #fff;
  border-radius: 1px;
  content: "";
  display: block;
  height: 18px;
  left: 18px;
  margin: -9px 0 0 -2px;
  position: absolute;
  top: 50%;
  width: 4px;
}
.formmodule .formmodule-errors div::before {
  transform: rotate(-45deg);
}
.formmodule .formmodule-errors div::after {
  transform: rotate(45deg);
}

.ctct-form-container .ctct-form-defaults {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ctct-form-container .ctct-form-defaults .ctct-form-header {
  text-align: center;
  display: none;
}
.ctct-form-container .ctct-form-defaults .ctct-form-success {
  flex: 100%;
}
.ctct-form-container .ctct-form-defaults .ctct-form-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  margin: 0 10px;
}
.ctct-form-container .ctct-form-defaults .ctct-form-field .ctct-form-label {
  display: block;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.15rem;
}
.ctct-form-container .ctct-form-defaults .ctct-form-field input.ctct-form-element {
  margin: 0.375em 0 0 0;
  display: inline-block;
  font-size: 1em;
  padding: 0.375em;
  border: 1px solid rgba(34, 36, 38, 0.15);
  box-shadow: 0 0 0 0 transparent inset;
  transition: color 0.1s ease, border-color 0.1s ease;
}
.ctct-form-container .ctct-form-defaults #gdpr_text {
  margin-top: 20px;
}
.ctct-form-container .ctct-form-defaults button.ctct-form-button {
  background-color: transparent;
  color: #FFF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5em 5em 0.5em 5em;
  border: none;
  position: relative;
  cursor: pointer;
  z-index: 1;
  margin-top: 15px;
}
.ctct-form-container .ctct-form-defaults button.ctct-form-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d3d4c;
  transform: skew(-10deg);
  transform-origin: center;
  z-index: -1;
}

.swformfield--checkbox label.swformfield__label, .swformfield--radio label.swformfield__label {
  display: inline-block;
  margin-bottom: 0 !important;
}

/* _photo-gallery.scss */
#lightbox-container-image-box {
  height: auto !important;
  max-width: 90vw;
  min-height: 30vw;
}
#lightbox-container-image-box #lightbox-container-image {
  max-height: 90vh;
}

#lightbox-container-image-data-box {
  max-width: 90vw;
  width: 100% !important;
}
#lightbox-container-image-data-box #lightbox-container-image-data #lightbox-image-details #lightbox-image-details-caption {
  word-break: break-word;
}

/* _tabbed-content.scss */
.nav-tabs-bottom ul.nav-tabs {
  border: 0 none;
  border-top: 1px solid #ddd;
}
.nav-tabs-bottom ul.nav-tabs > li > a {
  border-radius: 0 0 4px 4px;
  margin-top: -1px;
}
.nav-tabs-bottom ul.nav-tabs > li.active > a {
  border: 1px solid #ddd;
  border-top-color: transparent;
}

@media only screen and (min-width: 1440px) {
  .nav-tabs-left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .nav-tabs-left ul.nav-tabs {
    border-right: 1px solid #ddd;
    border: 0 none;
    display: flex;
    flex-direction: column;
    margin-right: 2%;
    width: 25%;
  }
  .nav-tabs-left ul.nav-tabs > li {
    float: none;
    margin: 0;
  }
  .nav-tabs-left ul.nav-tabs > li > a {
    border-radius: 4px 0 0 4px;
    margin: 0 -1px 0 0;
  }
  .nav-tabs-left ul.nav-tabs > li.active > a {
    border: 1px solid #ddd;
    border-right: transparent;
  }
  .nav-tabs-left div.tab-content {
    width: 70%;
  }
}

@media only screen and (min-width: 1440px) {
  .nav-tabs-right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .nav-tabs-right ul.nav-tabs {
    border-left: 1px solid #ddd;
    border: 0 none;
    display: flex;
    flex-direction: column;
    margin-left: 2%;
    width: 25%;
  }
  .nav-tabs-right ul.nav-tabs > li {
    float: none;
    margin: 0;
  }
  .nav-tabs-right ul.nav-tabs > li > a {
    border-radius: 0 4px 4px 0;
    margin: 0 0 0 -1px;
  }
  .nav-tabs-right ul.nav-tabs > li.active > a {
    border: 1px solid #ddd;
    border-left: transparent;
  }
  .nav-tabs-right div.tab-content {
    width: 70%;
  }
}

.sw-accordion h3.ui-accordion-header {
  background: #eee;
  border-bottom: 2px solid #eee;
  border-radius: 2px !important;
  color: #e01212;
  cursor: pointer;
  display: block;
  font-size: 1.8rem;
  margin: 13px 0 0 0;
  outline: 0;
  padding: 16px 48px 16px 16px;
  position: relative;
  transition: all 0.2s ease-out;
}
@media only screen and (min-width: 1024px) {
  .sw-accordion h3.ui-accordion-header {
    font-size: 2rem;
    margin: 16px 0 0 0;
  }
}
@media only screen and (min-width: 1440px) {
  .sw-accordion h3.ui-accordion-header {
    font-size: 2.2rem;
    margin: 18px 0 0 0;
  }
}
.sw-accordion h3.ui-accordion-header:hover {
  border-color: #ccc;
}
.sw-accordion h3.ui-accordion-header .ui-icon {
  background-image: none;
  cursor: pointer;
  display: block;
  height: 32px;
  left: unset;
  margin: -18px 0 0 0;
  position: absolute;
  right: 16px;
  top: 50%;
  transition: all 0.2s ease-out;
  width: 32px;
  z-index: 10;
}
.sw-accordion h3.ui-accordion-header .ui-icon::before, .sw-accordion h3.ui-accordion-header .ui-icon::after {
  background: #333;
  border-radius: 4px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin: -7px 0 0 -1px;
  position: absolute;
  top: 50%;
  transform-origin: center;
  width: 2px;
}
.sw-accordion h3.ui-accordion-header .ui-icon::after {
  transform: rotate(90deg);
}
.sw-accordion h3.ui-accordion-header::after {
  bottom: -2px;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 0.4s ease-out;
  width: 0;
}
.sw-accordion h3.ui-accordion-header.ui-state-active .ui-icon {
  transform: rotate(-135deg);
}
.sw-accordion h3.ui-accordion-header.ui-state-active::after {
  width: 100%;
}
.sw-accordion .ui-accordion-content {
  background: #fbfbfb;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 1px solid #eee;
  border-top: none;
  display: block;
  padding: 8px;
  width: 100% !important;
}
@media only screen and (min-width: 1024px) {
  .sw-accordion .ui-accordion-content {
    padding: 16px;
  }
}

/* ============ COMPONENTS ============ */
/* _header.scss */
header {
  word-break: initial;
}
header .utility-nav #cpn-login-page {
  position: relative;
  display: block;
  padding: 0;
  margin: 0 -9px 0 2px;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 1.15rem;
  color: #FFF;
}
header .utility-nav #cpn-login-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 10px);
  transform: skew(18deg);
  transform-origin: bottom left;
  background: #5fb2cb;
}
header .utility-nav #cpn-login-page > a.sw-menucode-item__link {
  padding: 13px 2.5rem 6px 1.5rem;
}
header .utility-nav #cpn-login-page:hover ul.sw-menucode-list {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #5fb2cb;
  padding-bottom: 15px;
}
header .utility-nav #cpn-login-page:hover ul.sw-menucode-list a {
  padding: 0.5rem 1rem;
  text-align: center;
  text-transform: none;
  font-size: 1rem;
}

/* _flex-nav.scss */
nav.flex-nav {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0;
}
nav.flex-nav ul#mainnav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.flex-nav ul#mainnav li {
  flex: 0 1 auto;
}
nav.flex-nav ul#mainnav li a {
  display: flex;
}
nav.flex-nav ul#mainnav li a:hover {
  background: #ddd;
}
nav.flex-nav ul#mainnav li > a.current {
  background: #ddd;
}
nav.flex-nav ul#mainnav li ul {
  display: none;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 2000;
}
nav.flex-nav ul#mainnav li ul > li {
  display: block;
  position: relative;
  white-space: nowrap;
  z-index: 999;
}
nav.flex-nav ul#mainnav li ul > li a {
  background: #eee;
  display: block;
  padding: 8px 12px;
  width: 100%;
}
nav.flex-nav ul#mainnav li ul > li ul {
  left: 100%;
  top: 0;
}
nav.flex-nav ul#mainnav a {
  text-decoration: none;
}
nav.flex-nav ul#mainnav > li:hover > ul,
nav.flex-nav ul#mainnav > li > ul > li:hover > ul {
  display: flex;
}

/* _footer.scss */
.page-alert-wrapper {
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 1;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.page-alert-message {
  width: 80%;
  max-width: 500px;
  max-height: 500px;
  overflow: hidden auto;
  padding: 40px;
  border: unset;
  font-size: 16px;
  line-height: 26px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: unset;
  box-sizing: border-box;
  border-radius: unset;
}
.page-alert-message .controls {
  margin: unset;
}
.page-alert-message .controls input#page-alert-dismiss {
  cursor: pointer;
  margin: 30px 0 0 0;
  display: block;
  width: 100%;
  border: unset;
  color: #0d3d4c;
  padding: 0.5em 1.5em;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  background: #b5be34;
}

/* ============ HELPERS ============ */
/* _mixins.scss */
/* ============ Pseudo Element Overlay ============ */
.shade {
  position: relative;
}
.shade::before {
  background: black;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  transition: opacity 0.25s ease;
  width: 100%;
  z-index: 0;
}

/* ============ BG Images ============ */
.bg-image,
.bg-image-js {
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ============ Paddding Adjustments ============ */
.no-border {
  border: 0;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.cushion-sm {
  padding: 2%;
}

.cushion-md {
  padding: 5%;
}

.cushion-lg {
  padding: 10%;
}

.cushion-v-sm {
  padding: 2% 0;
}

.cushion-v-md {
  padding: 5% 0;
}

.cushion-v-lg {
  padding: 10% 0;
}

.cushion-h-sm {
  padding: 0 2%;
}

.cushion-h-md {
  padding: 0 5%;
}

.cushion-h-lg {
  padding: 0 10%;
}

.white {
  color: white !important;
}

/* ============ Alignment ============ */
.center {
  text-align: center;
}

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

.v-centered {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.h-centered {
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.flex-center {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-spread {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* ============ Transitions ============ */
.transition-cubic {
  transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.transition-fast {
  transition: all 0.2s ease;
}

.transition {
  transition: all 0.5s ease;
}

.transition-slow {
  transition: all 1s ease;
}

.transition-bounce {
  transition: all 0.3s cubic-bezier(0.33, 2, 0.8, 1);
}

.easeInOutBack {
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============ Animation delays ============ */
.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.delay-6 {
  animation-delay: 0.6s;
}

/* _helpers.scss */
/* ============ Responsive Embed Wrapper ============ */
.embed-container {
  height: 0;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  border: none;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/*!
 * animate.css - https://animate.style/
 * Version - 4.0.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1 ;
}

.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

@keyframes subtleShake {
  0%, 100% {
    bottom: 0;
    left: 0;
  }
  50% {
    left: -3px;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes subtleBG {
  0%, 100% {
    background-position: 40% center;
  }
  50% {
    background-position: 60% center;
  }
}
@keyframes sidebarh2grow {
  0% {
    width: 0;
  }
  100% {
    width: 40%;
  }
}
@keyframes subtleTick {
  0%, 100% {
    left: 6px;
  }
  50% {
    left: 8px;
  }
}
@keyframes scrollDown {
  0% {
    top: 20%;
    background: rgb(255, 255, 255);
  }
  50% {
    background: rgb(255, 255, 255);
  }
  100% {
    top: 80%;
    background: rgba(255, 255, 255, 0.05);
  }
}
@keyframes growToSize {
  0% {
    width: 0;
  }
  100% {
    width: 130px;
  }
}
/* ============ PAGES ============ */
/* _home.scss */
body.home .newsletter-stripe {
  position: relative;
}
body.home .newsletter-stripe .newsletter-signup-form {
  background: #b5be34;
  display: flex;
  margin-top: 140px;
  padding-top: 100px;
  margin-bottom: 50px;
}
body.home .newsletter-stripe .newsletter-signup-form .ctct-wrap {
  width: 70%;
  margin: 0 auto 50px;
  max-width: 90vw;
}
body.home .newsletter-stripe .newsletter-signup-form .ctct-wrap .swformsection__header {
  text-transform: uppercase;
  margin: 0 6.25vw;
  font-family: "Libre Baskerville", serif;
  font-size: 35px;
  background-image: linear-gradient(90deg, rgba(13, 61, 76, 0.9) 0%, rgba(13, 61, 76, 0.9) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  color: #fff;
  line-height: 1.35em;
  display: inline;
  padding: 0 0.5em;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 50px;
  width: 65%;
  transform: skew(-10deg);
}
@media (max-width: 767px) {
  body.home .newsletter-stripe .newsletter-signup-form .ctct-wrap .swformsection__header {
    font-size: 2rem;
    width: 80%;
    top: 105px;
  }
}
@media only screen and (min-width: 1024px) {
  body.home .newsletter-stripe .newsletter-signup-form .ctct-wrap .swformsection__header {
    font-size: 54px;
  }
}
@media only screen and (min-width: 1440px) {
  body.home .newsletter-stripe .newsletter-signup-form .ctct-wrap .swformsection__header {
    top: 76px;
  }
}
body.home .newsletter-stripe .newsletter-signup-form .ctct-wrap .swformsection__header > div {
  transform: skew(10deg);
}
body.home .newsletter-stripe .newsletter-signup-form .ctct-wrap .ctct-form-defaults {
  background: transparent;
}

.slanted-promos .slanted-promos__desktop .slanted-promos__header {
  margin-left: auto !important;
  margin-right: auto !important;
  width: 80% !important;
}
@media only screen and (min-width: 1200px) {
  .slanted-promos .slanted-promos__desktop .slanted-promos__header {
    font-size: 50px;
  }
}

.home-news {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 50px 0 0;
  padding: 0 0 20px 0;
}
@media screen and (max-width: 964px) {
  .home-news {
    margin: 0;
  }
}
.home-news__heading, .home-news__description {
  text-align: center;
}
.home-news__heading {
  margin: 0 0 20px 0 !important;
}
.home-news__description {
  margin: 0 0 20px 0;
}
.home-news__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
.home-news__arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-news__arrows div {
  width: 40px;
  height: 40px;
  background-color: #b5be34;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-news__arrows div::after {
  content: "";
  display: block;
  width: 9px;
  height: 17px;
  background-image: url("/sitefiles/2767/images/news-slider-arrow-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.home-news__arrows div.btn-prev::after {
  transform: scaleX(-1);
}
.home-news__arrows div[aria-disabled=true] {
  background-color: #eeeeee;
  cursor: not-allowed;
}
.home-news__arrows div[aria-disabled=true]::after {
  background-image: url("/sitefiles/2767/images/news-slider-arrow-gray.svg");
}
.home-news__grid {
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}
.home-news__grid .tns-visually-hidden {
  display: none;
}
.home-news__grid-menu {
  padding: unset;
  margin: unset;
  list-style-type: none;
  display: flex;
}
.home-news__grid.active {
  opacity: 1;
}
.home-news__item {
  display: block;
  width: 100%;
}
.home-news__item:not(:last-of-type) {
  padding: 0 25px 0 0;
}
.home-news__item:last-of-type {
  padding: unset;
}
.home-news__item-inner {
  display: block;
  width: 100%;
  height: fit-content;
  margin: 0 auto;
}
.home-news__item-image {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}
.home-news__item-meta {
  padding: 20px;
  word-break: break-word;
  background-color: #eeeeee;
  height: 260px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 500px) {
  .home-news__item-meta {
    height: 390px;
  }
}
.home-news__item-date, .home-news__item-title, .home-news__item-description {
  color: #000000 !important;
}
.home-news__item-date, .home-news__item-button {
  font-size: 14px !important;
}
.home-news__item-date {
  margin: 0 0 10px 0 !important;
}
.home-news__item-title {
  margin: 0 0 10px 0;
  text-transform: none !important;
  line-height: 1.3 !important;
}
.home-news__item-description {
  font-size: 16px;
}
.home-news__item-button {
  margin: unset;
  color: #15667f;
  margin: auto 0 0 0;
}
@media only screen and (min-width: 850px) {
  .home-news__heading, .home-news__description {
    text-align: left;
  }
  .home-news__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  .home-news__content::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -50vw;
    width: calc(100% + 53vw);
    height: 100%;
    z-index: -1;
    background-color: #ffffff;
  }
  .home-news__grid {
    width: 0;
  }
}

.home-columns {
  margin: 100px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #e4a11b;
  word-break: break-word;
  overflow-wrap: break-word;
}
.home-columns__heading {
  color: #0d3d4c !important;
  margin: 0 auto 30px auto !important;
  word-break: normal;
  text-align: center;
}
.home-columns__heading span {
  font-size: 24px;
}
@media only screen and (min-width: 1024px) {
  .home-columns__heading span {
    font-size: 35px;
  }
}
.home-columns__info {
  height: 100%;
}
.home-columns__image {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.home-columns__container {
  display: flex;
  flex-direction: column;
  gap: 30px 60px;
  align-items: center;
  padding: 20px;
}
.home-columns__content p:first-of-type {
  margin-top: unset;
}
.home-columns__content p:last-of-type {
  margin-bottom: unset;
}
@media only screen and (min-width: 768px) {
  .home-columns {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
  }
  .home-columns__image {
    width: 100%;
    margin: 0 auto;
  }
}

/* _default.scss */
aside.sidebar .sidebar-column ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
}
aside.sidebar .sidebar-column ul li {
  position: relative;
}
aside.sidebar .sidebar-column ul li:first-child a {
  color: #B5BE34;
  font-size: 30px;
}
aside.sidebar .sidebar-column ul li:nth-child(2) {
  margin-top: 20px;
}
aside.sidebar .sidebar-column ul li a {
  display: block;
  position: relative;
  padding: 20px 50px;
  font-size: 24px;
  color: #0D3D4C;
  line-height: 1.4em;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 700;
}
aside.sidebar .sidebar-column ul li a.current {
  color: white;
  font-style: italic;
  background: transparent;
}
aside.sidebar .sidebar-column ul li a.current:before {
  content: "";
  position: absolute;
  width: calc(100% + 100px);
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(21, 102, 127, 0.9);
  transform: skew(-10deg);
  transform-origin: top;
  z-index: -1;
}

aside.sidebar .sidebar-column #cpn-home {
  display: none;
}
aside.sidebar .sidebar-column li > ul {
  display: none;
}

.accordion-wrapper {
  margin: 20px;
}
@media only screen and (min-width: 1024px) {
  .accordion-wrapper {
    margin: 50px;
  }
}

/* _sitemap.scss */
.sitemap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap ul li {
  display: block;
}
.sitemap ul > li {
  font: bold 2.4rem serif;
  margin-top: 12px;
}
.sitemap ul > li > ul {
  padding-left: 16px;
}
.sitemap ul > li > ul > li {
  font: bold 2rem sans-serif;
  margin-top: 8px;
}
.sitemap ul > li > ul > li > ul {
  padding-left: 16px;
}
.sitemap ul > li > ul > li > ul > li {
  font: normal 1.6rem sans-serif;
  margin-top: 4px;
}

/* _404.scss */ /* _styleguide.scss */
body.styleguide hr {
  margin: 50px 0 20px;
}

.swatch {
  background: var(--color);
  border-radius: 8px;
  display: inline-block;
  height: 80px;
  margin: 0 8px 8px 0;
  text-align: center;
  width: 80px;
}
.swatch::after {
  content: attr(color);
  display: block;
  font: normal 16px monospace;
  margin-bottom: 16px;
  position: relative;
  top: calc(100% + 4px);
}

html {
  height: 100%;
}

article,
aside,
details,
dialog,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary,
time {
  display: block;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

a[href^=tel] {
  color: #5fb2cb;
  text-decoration: none;
}

input[type=text],
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

input:-moz-placeholder,
input::-moz-placeholder {
  opacity: 1;
}

b em,
b i,
strong em,
strong i,
em b,
em strong,
i b,
i strong {
  font-weight: normal;
  font-style: normal;
}

#cms_header_navbar,
#cms_header_subbar {
  overflow: hidden;
}

body {
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #000;
  height: 100%;
}

.serif {
  font-family: "Libre Baskerville", serif;
}

.extra-strong {
  font-weight: 900;
}

.light {
  font-weight: 300;
}

.uppercase {
  text-transform: uppercase;
}

.no-ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.textarea-content p {
  line-height: 1.4em;
  margin-bottom: 1.5rem;
}

.textarea-content ul,
.textarea-content ol {
  line-height: 1.7em;
  padding-left: 20px;
}

.textarea-content ul li,
.textarea-content ol li {
  margin: 0.5rem 0;
}

.textarea-content a {
  color: #5fb2cb;
  padding-bottom: 0.3em;
  background-image: linear-gradient(90deg, currentColor 0%, currentColor 100%);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 80%;
  transition: 0.3s;
}

.textarea-content a:hover,
.textarea-content a:focus {
  background-size: 100% 2px;
}

.slanted-header__wrapper {
  position: relative;
  color: #fff;
}

.slanted-header__wrapper .text {
  display: inline;
  padding: 0 0.5em;
  box-sizing: border-box;
  line-height: 1.35em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.slanted-header__wrapper .slanted-header {
  position: relative;
}

.slanted-header__wrapper .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: skew(-10deg);
}

.slanted-header__wrapper .shadow-text {
  background-image: linear-gradient(90deg, rgba(95, 178, 203, 0.9) 0%, rgba(95, 178, 203, 0.9) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  color: transparent;
  line-height: 1.35em;
}

.slanted-header__wrapper .shadow-text.teal {
  background-image: linear-gradient(90deg, rgba(13, 61, 76, 0.9) 0%, rgba(13, 61, 76, 0.9) 100%);
}

.slanted-header__wrapper .shadow-text.green {
  background-image: linear-gradient(90deg, rgba(181, 190, 52, 0.9) 0%, rgba(181, 190, 52, 0.9) 100%);
}

.clearfix:after,
.clearfix:before,
.clearfixiest:after,
.clearfixiest:before {
  display: block;
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
  content: " ";
}

.clearfix:after,
.clearfixiest:after {
  clear: both;
}

.clearfix,
.clearfixiest {
  zoom: 1;
}

.clear {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  width: 0;
  height: 0;
}

.visuallyhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0;
}

.homepage-edit-box.cms_editable {
  background: rgba(50, 0, 0, 0);
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 1000;
  transition: 0.2s;
  cursor: pointer;
  word-break: normal;
}

.homepage-edit-box.cms_editable:before {
  display: none;
  overflow: hidden;
  content: attr(alt);
  padding: 0.5em 1.5em;
  background-color: #f2f2f2;
  color: #15667f;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 2px 0 #15667f;
  outline: none;
}

.homepage-edit-box.cms_editable .cms_edit_box-js {
  display: none !important;
}

.rf-paragraph .cms_editable_hover {
  background: none;
  position: relative;
  z-index: 3;
}

.rf-paragraph .cms_edit_box-js {
  width: 100%;
  text-align: left;
}

.rf-paragraph .cms_edit_box-js .title-js {
  font-size: 20px;
  padding: 0.5em 1.5em;
  font-weight: 700;
  cursor: pointer;
  color: #15667f;
  background: #f2f2f2;
  box-shadow: 0 0 2px 0 #15667f;
  float: right;
  text-transform: uppercase;
}

.rf-paragraph .cms_edit_box-js .title-js:hover {
  cursor: pointer;
  color: #fff;
  background: #15667f;
  box-shadow: 0 0 2px 0 #15667f;
}

.cms-hover-to-edit {
  position: relative;
}

.cms-hover-to-edit:hover .homepage-edit-box.cms_editable:before {
  display: block;
}

.homepage-edit-box.cms_editable_hover {
  outline: none;
}

.homepage-edit-box.cms_editable_hover:before {
  box-shadow: 0 0 2px 0 #000;
  color: #fff;
  background: #15667f;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer,
.fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url("../jscripts/vendors/fancybox/fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../jscripts/vendors/fancybox/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../jscripts/vendors/fancybox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../jscripts/vendors/fancybox/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #fff;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
    background-image: url("../jscripts/vendors/fancybox/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
  #fancybox-loading div {
    background-image: url("../jscripts/vendors/fancybox/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
#fancybox-thumbs {
  position: fixed;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 8050;
}

#fancybox-thumbs.bottom {
  bottom: 2px;
}

#fancybox-thumbs.top {
  top: 2px;
}

#fancybox-thumbs ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

#fancybox-thumbs ul li {
  float: left;
  padding: 1px;
  opacity: 0.5;
}

#fancybox-thumbs ul li.active {
  opacity: 0.75;
  padding: 0;
  border: 1px solid #fff;
}

#fancybox-thumbs ul li:hover {
  opacity: 1;
}

#fancybox-thumbs ul li a {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid #222;
  background: #111;
  outline: none;
}

#fancybox-thumbs ul li img {
  display: block;
  position: relative;
  border: 0;
  padding: 0;
  max-width: none;
}

body {
  font-size: 100%;
}

.container {
  width: 950px;
  position: relative;
  z-index: 0;
  margin: 0 auto;
  padding: 0;
}

.container .column,
.container .columns {
  display: inline;
  float: left;
  margin: 0 10px 0 0;
}

.container .column.last,
.container .columns.last {
  margin-right: 0;
}

.container .col1.columns,
.container .col1.column {
  width: 30px;
}

.container .col2.columns {
  width: 70px;
}

.container .col3.columns {
  width: 110px;
}

.container .col4.columns {
  width: 150px;
}

.container .col5.columns {
  width: 190px;
}

.container .col6.columns {
  width: 230px;
}

.container .col7.columns {
  width: 270px;
}

.container .col8.columns {
  width: 310px;
}

.container .col9.columns {
  width: 350px;
}

.container .col10.columns {
  width: 390px;
}

.container .col11.columns {
  width: 430px;
}

.container .col12.columns {
  width: 470px;
}

.container .col13.columns {
  width: 510px;
}

.container .col14.columns {
  width: 550px;
}

.container .col15.columns {
  width: 590px;
}

.container .col16.columns {
  width: 630px;
}

.container .col17.columns {
  width: 670px;
}

.container .col18.columns {
  width: 710px;
}

.container .col19.columns {
  width: 750px;
}

.container .col20.columns {
  width: 790px;
}

.container .col21.columns {
  width: 830px;
}

.container .col22.columns {
  width: 870px;
}

.container .col23.columns {
  width: 910px;
}

.container .col24.columns {
  width: 950px;
}

.row {
  margin-bottom: 20px;
}

.row:after,
.row:before {
  display: block;
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
  content: " ";
}

.row:after {
  clear: both;
}

.row {
  zoom: 1;
}

.row.reverse > .column,
.row.reverse > .columns {
  float: right;
}

.row.reverse > .column.first,
.row.reverse > .columns.first {
  margin-right: 0;
}

.row.reverse > .column.last,
.row.reverse > .columns.last {
  margin: 0 10px 0 0;
}

.append-1 {
  padding-right: 40px;
}

.append-2 {
  padding-right: 80px;
}

.append-3 {
  padding-right: 120px;
}

.append-4 {
  padding-right: 160px;
}

.append-5 {
  padding-right: 200px;
}

.append-6 {
  padding-right: 240px;
}

.append-7 {
  padding-right: 280px;
}

.append-8 {
  padding-right: 320px;
}

.append-9 {
  padding-right: 360px;
}

.append-10 {
  padding-right: 400px;
}

.append-11 {
  padding-right: 440px;
}

.append-12 {
  padding-right: 480px;
}

.append-13 {
  padding-right: 520px;
}

.append-14 {
  padding-right: 560px;
}

.append-15 {
  padding-right: 600px;
}

.append-16 {
  padding-right: 640px;
}

.append-17 {
  padding-right: 680px;
}

.append-18 {
  padding-right: 720px;
}

.append-19 {
  padding-right: 760px;
}

.append-20 {
  padding-right: 800px;
}

.append-21 {
  padding-right: 840px;
}

.append-22 {
  padding-right: 880px;
}

.append-23 {
  padding-right: 920px;
}

.prepend-1 {
  padding-left: 40px;
}

.prepend-2 {
  padding-left: 80px;
}

.prepend-3 {
  padding-left: 120px;
}

.prepend-4 {
  padding-left: 160px;
}

.prepend-5 {
  padding-left: 200px;
}

.prepend-6 {
  padding-left: 240px;
}

.prepend-7 {
  padding-left: 280px;
}

.prepend-8 {
  padding-left: 320px;
}

.prepend-9 {
  padding-left: 360px;
}

.prepend-10 {
  padding-left: 400px;
}

.prepend-11 {
  padding-left: 440px;
}

.prepend-12 {
  padding-left: 480px;
}

.prepend-13 {
  padding-left: 520px;
}

.prepend-14 {
  padding-left: 560px;
}

.prepend-15 {
  padding-left: 600px;
}

.prepend-16 {
  padding-left: 640px;
}

.prepend-17 {
  padding-left: 680px;
}

.prepend-18 {
  padding-left: 720px;
}

.prepend-19 {
  padding-left: 760px;
}

.prepend-20 {
  padding-left: 800px;
}

.prepend-21 {
  padding-left: 840px;
}

.prepend-22 {
  padding-left: 880px;
}

.prepend-23 {
  padding-left: 920px;
}

.pull-1 {
  margin-left: -40px;
}

.pull-2 {
  margin-left: -80px;
}

.pull-3 {
  margin-left: -120px;
}

.pull-4 {
  margin-left: -160px;
}

.pull-5 {
  margin-left: -200px;
}

.pull-6 {
  margin-left: -240px;
}

.pull-7 {
  margin-left: -280px;
}

.pull-8 {
  margin-left: -320px;
}

.pull-9 {
  margin-left: -360px;
}

.pull-10 {
  margin-left: -400px;
}

.pull-11 {
  margin-left: -440px;
}

.pull-12 {
  margin-left: -480px;
}

.pull-13 {
  margin-left: -520px;
}

.pull-14 {
  margin-left: -560px;
}

.pull-15 {
  margin-left: -600px;
}

.pull-16 {
  margin-left: -640px;
}

.pull-17 {
  margin-left: -680px;
}

.pull-18 {
  margin-left: -720px;
}

.pull-19 {
  margin-left: -760px;
}

.pull-20 {
  margin-left: -800px;
}

.pull-21 {
  margin-left: -840px;
}

.pull-22 {
  margin-left: -880px;
}

.pull-23 {
  margin-left: -920px;
}

.pull-24 {
  margin-left: -960px;
}

.mobile-nav {
  display: none;
}

nav#sidecar .mobile-nav-body .utility-nav .slanted-button.orange::before {
  background: #e4a11b;
}

nav#sidecar .mobile-nav-body .utility-nav .slanted-button.orange .inner-text {
  color: #0d3d4c;
}

nav#sidecar .mobile-nav-body .utility-nav .slanted-button.orange:hover::before {
  background: #e7aa32;
}

nav#sidecar .mobile-nav-body .utility-nav .slanted-button.blue::before {
  background: #5fb2cb;
  cursor: pointer;
}

nav#sidecar .mobile-nav-body .utility-nav .slanted-button.blue .inner-text {
  color: #fff;
}

nav#sidecar .mobile-nav-body .utility-nav .slanted-button.blue:hover::before {
  background: #5fb2cb;
}

nav#sidecar .mobile-nav-body .utility-nav .mobile-nav__list-1 {
  display: none;
  margin-top: -15px;
}

nav#sidecar .mobile-nav-body .utility-nav .mobile-nav__item1 {
  background-color: rgba(21, 102, 127, 0.85);
  font-weight: 400;
}

nav#sidecar .mobile-nav-body .utility-nav .mobile-nav__item1:first-child {
  padding-top: 2rem;
}

nav#sidecar .mobile-nav-body .utility-nav .mobile-nav__item1:last-child {
  padding-bottom: 1rem;
}

nav#sidecar .mobile-nav-body .utility-nav .mobile-nav__item1 .mobile-nav__link {
  color: #fff;
  text-align: center;
}

.site-header {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.site-header .utility-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  min-height: 40px;
  text-align: center;
  color: #fff;
}

.site-header .utility-nav a {
  display: block;
  color: #fff;
}

.site-header .utility-nav ul#childpagenav-200864 {
  display: flex;
  margin-right: 10px;
  margin-bottom: 0;
}

.site-header .utility-nav .sw-menucode-item {
  margin: 0 5px;
  display: flex;
  text-transform: uppercase;
  position: relative;
}

.site-header .utility-nav .sw-menucode-item a {
  font-size: 16px;
  line-height: 30px;
  padding: 10px 23px 10px 16px;
  box-sizing: border-box;
  color: #fff;
  position: relative;
}

/* .site-header .utility-nav .sw-menucode-item > a.current {
background: #0d3d4c;
} */
.site-header .utility-nav .sw-menucode-item:hover {
  /* background: #0d3d4c; */
}

.site-header .utility-nav .sw-menucode-item ul.sw-menucode-list {
  display: none;
}

.site-header .utility-nav .sw-menucode-item:hover ul.sw-menucode-list {
  display: block;
  position: absolute;
  top: 41px;
  list-style: none;
  padding-left: 0;
  background: #0d3d4c;
  width: 100%;
}

.utility-nav > ul > li:hover > a::before {
  content: "";
  height: 100%;
  width: 100%;
  background: #0d3d4c;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: skew(18deg);
  transform-origin: bottom left;
}

.utility-nav > ul > li > a.current::before {
  content: "";
  height: 100%;
  width: 100%;
  background: #0d3d4c;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: skew(18deg);
  transform-origin: bottom left;
}

.site-header .utility-nav .sw-menucode-item:hover ul.sw-menucode-list li a {
  font-size: 0.875rem;
}

.site-header .utility-nav .sw-menucode-item:hover ul.sw-menucode-list li a:hover {
  font-weight: 700;
}

.site-header .utility-nav .nav__link .flyout {
  padding: 10px 0 20px;
}

.site-header .utility-nav .nav__link .flyout__link a {
  font-size: 0.875rem;
  padding: 5px 20px;
  margin: 5px 0;
}

.site-header .utility-nav__dropdown {
  display: flex;
  position: relative;
  margin: 0 3px 0 5px;
}

.site-header .utility-nav__dropdown .utility-nav__button {
  margin: 0;
}

.site-header .utility-nav__dropdown:hover .utility-nav__dropdown-menu {
  display: block;
}

.site-header .utility-nav__dropdown:focus-within .utility-nav__dropdown-menu {
  display: block;
}

.site-header .utility-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  display: none;
  background: #5fb2cb;
  padding-bottom: 15px;
}

.site-header .utility-nav__dropdown-menu a {
  padding: 0.5rem 1rem;
  text-align: center;
}

.site-header .utility-nav__dropdown-menu a:hover,
.site-header .utility-nav__dropdown-menu a:focus {
  font-weight: 700;
}

.site-header .utility-nav__dropdown-menu .logout {
  display: block;
  background: transparent;
  border: 0;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: center;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  cursor: pointer;
}

.site-header .utility-nav__dropdown-menu .logout:hover,
.site-header .utility-nav__dropdown-menu .logout:focus {
  font-weight: 700;
  outline: 0;
}

.site-header .utility-nav__button {
  position: relative;
  display: block;
  padding: 13px 2.5rem 6px 1.5rem;
  margin: 0 2px;
  font-size: 1.15rem;
  box-sizing: border-box;
}

.site-header .utility-nav__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 10px);
  transform: skew(18deg);
  transform-origin: bottom left;
}

.site-header .utility-nav__button.blue::before {
  background: #5fb2cb;
}

.site-header .utility-nav__button.green {
  color: #0d3d4c;
}

.site-header .utility-nav__button.green::before {
  background: #b5be34;
}

.site-header .utility-nav__button.green:hover::before,
.site-header .utility-nav__button.green:focus::before {
  background: #c2cb41;
}

.site-header .utility-nav__button.orange {
  margin-right: -5px;
}

.site-header .utility-nav__button.orange .inner-text {
  color: #0d3d4c;
}

.site-header .utility-nav__button.orange::before {
  background: #e4a11b;
}

.site-header .utility-nav__button.orange::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 10px);
  background: #e4a11b;
}

.site-header .utility-nav__button.orange:hover::before,
.site-header .utility-nav__button.orange:hover::after,
.site-header .utility-nav__button.orange:focus::before,
.site-header .utility-nav__button.orange:focus::after {
  background: #e7aa32;
}

.site-header .utility-nav__button .inner-text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

@media screen and (max-width: 1400px) {
  .site-header .utility-nav__button {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1200px) {
  .site-header .utility-nav {
    display: none;
  }
}
.site-header .main-nav {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.site-header .main-nav::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #15667f;
  z-index: -1;
}

.site-header .main-nav .logo-wrapper {
  display: block;
  margin: -25px 45px 0;
}

@media screen and (max-width: 1350px) {
  .site-header .main-nav .logo-wrapper {
    margin: 0 45px 0 20px;
  }
}
@media screen and (min-width: 1350px) {
  .site-header .main-nav .logo-wrapper {
    margin: -25px 45px 0 20px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1279px) {
  .site-header .main-nav .logo-wrapper {
    margin: 5px 45px 0 20px;
  }
}
@media screen and (max-width: 1200px) {
  .site-header .main-nav .logo-wrapper {
    margin: -20px 45px 0 20px;
  }
}
@media screen and (max-width: 375px) {
  .site-header .main-nav .logo-wrapper {
    display: none;
  }
}
.site-header .main-nav .logo {
  width: 25vw;
  max-width: 400px;
  min-width: 280px;
  height: auto;
}

.site-header .main-nav .mobile-logo-wrapper {
  display: none;
  margin: -20px 45px 0 10px;
}

@media screen and (max-width: 375px) {
  .site-header .main-nav .mobile-logo-wrapper {
    display: block;
  }
}
.site-header .main-nav .mobile-logo-wrapper .mobile-logo {
  width: 96px;
  height: auto;
}

.site-header .main-nav ul#mainnav li#mn-home {
  display: none;
}

.site-header .main-nav #mainnav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-evenly;
  margin-bottom: 0px;
  list-style: none;
  text-transform: uppercase;
}

.site-header .main-nav ul#mainnav li {
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .site-header .main-nav ul#mainnav li {
    display: none;
  }
}
.site-header .main-nav ul#mainnav > li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: -5px;
  width: calc(100% + 15px);
  background: #0d3d4c;
  text-align: center;
  padding-bottom: 1rem;
  list-style: none;
}

.site-header .main-nav ul#mainnav li ul > li {
  position: relative;
  margin: 0;
  padding: 1rem 2rem 1rem 1.5rem;
}

.site-header .main-nav ul#mainnav li:hover ul {
  display: block;
  padding: 0;
}

.site-header .main-nav ul#mainnav > li:hover ul li > ul {
  display: none;
}

.site-header .main-nav ul#mainnav > li ul > li a {
  font-size: 1rem;
  font-weight: normal;
  padding: 0;
  color: #fff;
}

.site-header .main-nav ul#mainnav > li ul > li a:hover {
  font-weight: 700;
  background: none;
}

.site-header .main-nav #mainnav > li:hover a {
  /* background: #0d3d4c; */
  color: #fff;
}

.site-header .main-nav #mainnav a.current {
  /* background: #0d3d4c; */
  color: #fff;
}

.site-header .main-nav ul#mainnav a {
  color: #0d3d4c;
  padding: 1rem 2rem 1rem 1.5rem;
  display: block;
}

.site-header .main-nav #mainnav li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  width: calc(100% + 15px);
  height: 100%;
  transform: skew(18deg);
  transform-origin: bottom left;
}

.site-header .main-nav #mainnav li > a.current::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  width: calc(100% + 15px);
  height: 100%;
  transform: skew(18deg);
  transform-origin: bottom left;
  background: #0d3d4c;
  z-index: -1;
}

.site-header .main-nav #mainnav > li:hover > a::before {
  background-color: #0d3d4c;
  z-index: -1;
  color: #fff;
}

.site-header .main-nav .nav {
  display: flex;
  flex-grow: 1;
  justify-content: space-around;
  margin-right: 1.5rem;
}

.site-header .main-nav .nav__link {
  font-size: 1.25rem;
  font-weight: 700;
}

.site-header .main-nav .nav__link a {
  color: #0d3d4c;
}

.site-header .main-nav .flyout {
  padding-bottom: 1rem;
}

@media only screen and (max-width: 1200px) {
  .site-header .main-nav {
    margin-top: 30px;
  }
  .site-header .main-nav::before {
    height: 30px;
  }
  .site-header .main-nav .nav {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .site-header .main-nav .logo-wrapper {
    margin-left: 10px;
  }
}
.site-header .nav__link {
  position: relative;
}

.site-header .nav__link a {
  display: block;
  padding: 1rem;
}

.site-header .nav__link > a {
  position: relative;
  transition: 0s;
  padding: 1rem 2rem 1rem 1.5rem;
}

.site-header .nav__link > a span {
  position: relative;
  z-index: 1;
}

.site-header .nav__link > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  width: calc(100% + 15px);
  height: 100%;
  transform: skew(18deg);
  transform-origin: bottom left;
}

.site-header .nav__link > a.active {
  color: #fff;
}

.site-header .nav__link > a.active::before {
  background: #0d3d4c;
}

.site-header .nav__link .flyout {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: -5px;
  width: calc(100% + 15px);
  background: #0d3d4c;
  text-align: center;
}

.site-header .nav__link .flyout a {
  color: #fff;
  font-size: 1rem;
}

.site-header .nav__link .flyout a:hover,
.site-header .nav__link .flyout a:focus {
  font-weight: 700;
}

.site-header .nav__link:hover > a {
  color: #fff;
}

.site-header .nav__link:hover > a::before {
  background: #0d3d4c;
}

.site-header .nav__link:hover .flyout {
  display: block;
}

.site-header .nav__link:focus-within > a {
  color: #fff;
}

.site-header .nav__link:focus-within > a::before {
  background: #0d3d4c;
}

.site-header .nav__link:focus-within .flyout {
  display: block;
}

.banner {
  background: #b5be34;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 300px;
  color: #fff;
}

.banner__header {
  margin: -45px 10vw 60px;
}

@media only screen and (max-width: 767px) {
  .banner__header {
    margin-top: -25px;
  }
}
@media only screen and (max-width: 480px) {
  .banner__header {
    margin-bottom: 50px;
  }
}
.mobile-nav-wrap .utility-nav {
  font-size: 18px;
  text-align: center;
}

.mobile-nav-wrap .utility-nav .slanted-button {
  width: 85%;
  max-width: 350px;
  margin: 4px auto;
}

.mobile-nav-wrap .utility-nav .slanted-button.orange::before {
  background: #e4a11b;
}

.mobile-nav-wrap .utility-nav .slanted-button.orange .inner-text {
  color: #0d3d4c;
}

.mobile-nav-wrap .utility-nav .slanted-button.orange:hover::before {
  background: #e7aa32;
}

.mobile-nav-wrap .utility-nav .slanted-button.green::before {
  background: #b5be34;
}

.mobile-nav-wrap .utility-nav .slanted-button.green:hover::before {
  background: #c2cb41;
}

.mobile-nav-wrap .utility-nav .slanted-button.blue {
  position: relative;
  z-index: 1;
  margin: 0 auto -1.5rem;
  cursor: pointer;
}

.mobile-nav-wrap .utility-nav .slanted-button.blue::before {
  background: #5fb2cb;
}

.mobile-nav-wrap .utility-nav .slanted-button.blue .inner-text {
  color: #fff;
}

.mobile-nav-wrap .utility-nav .slanted-button.blue:hover::before {
  background: #72bbd1;
}

.mobile-nav-wrap .utility-nav .mobile-nav__list-1 {
  display: none;
}

.mobile-nav-wrap .utility-nav .mobile-nav__item1 {
  background-color: rgba(21, 102, 127, 0.85);
  font-weight: 400;
}

.mobile-nav-wrap .utility-nav .mobile-nav__item1:first-child {
  padding-top: 2rem;
}

.mobile-nav-wrap .utility-nav .mobile-nav__item1:last-child {
  padding-bottom: 1rem;
}

.mobile-nav-wrap .utility-nav .mobile-nav__item1 .mobile-nav__link {
  color: #fff;
}

.mobile-nav-wrap .utility-nav .mobile-nav__item1 .mobile-nav__link:hover {
  font-weight: 700;
}

.mobile-nav-wrap .socials {
  margin-top: 50px;
}

.mobile-nav-wrap .socials svg {
  width: 35px;
  height: 35px;
}

.site-footer .footer__nav-row {
  display: flex;
  align-items: center;
}

.site-footer .footer__nav-row ul {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.site-footer .footer__nav-row ul a {
  display: flex;
  color: #fff;
  padding: 0.8em;
}

.site-footer .footer__nav-row ul:first-child {
  background: #0d3d4c;
}

.site-footer .footer__nav-row ul:nth-child(2) {
  position: relative;
  background: #15667f;
}

.site-footer .footer__nav-row ul:nth-child(2)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: skew(10deg);
  transform-origin: bottom;
  background: #15667f;
}

.site-footer .footer__nav-row ul:nth-child(2) li {
  position: relative;
}

.site-footer .footer__nav-row ul:nth-child(2) a {
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1em;
}

.site-footer .footer__contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-size: 1.25rem;
  padding: 25px 0 45px;
}

.site-footer .footer__contact-row-item {
  display: block;
  flex: 1 0 33%;
}

.site-footer .footer__contact-row .logo {
  display: block;
  width: 400px;
  max-width: calc(100% - 90px);
  height: auto;
  margin: 0 45px;
}

.site-footer .footer__contact-row .logo-wrapper {
  box-sizing: border-box;
}

.site-footer .footer__contact-row .accreditations {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 45px;
  box-sizing: border-box;
}

.site-footer .footer__contact-row .accreditations__item {
  display: block;
  width: 90px;
  height: 90px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 1279px) {
  .site-footer .footer__nav-row {
    flex-direction: column-reverse;
  }
  .site-footer .footer__nav-row ul {
    width: 100%;
    padding: 0 100px;
    box-sizing: border-box;
  }
  .site-footer .footer__contact-row .accreditations {
    display: none;
  }
}
@media only screen and (max-width: 964px) {
  .site-footer .footer__nav-row {
    background: #0d3d4c;
    padding: 10px 0;
  }
  .site-footer .footer__nav-row ul {
    display: none;
  }
  .site-footer .footer__contact-row {
    flex-direction: column;
  }
  .site-footer .footer__contact-row-item {
    flex: 0 1 auto;
  }
  .site-footer .footer__contact-row .logo-wrapper {
    margin-bottom: 30px;
  }
  .site-footer .footer__contact-row .socials {
    display: none;
  }
  .site-footer .footer__contact-row .contact-info {
    padding: 0 45px;
  }
}
@media only screen and (max-width: 480px) {
  .site-footer .footer__contact-row {
    font-size: 1rem;
  }
  .site-footer .footer__contact-row .contact-info {
    padding: 0 25px;
  }
}
.socials__container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.socials__anchor {
  display: block;
  margin: 15px;
}

.socials__anchor:hover svg {
  fill: #0d3d4c;
}

.socials svg {
  width: 25px;
  height: 25px;
  fill: #15667f;
}

.copyright-row {
  background: #0d3d4c;
  color: #fff;
  text-align: center;
  padding: 0.6rem;
  line-height: 1.5em;
}

.copyright-row.timeline {
  position: relative;
  background: #15667f;
  margin-top: 20vw;
}

.copyright-row.timeline svg {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: auto;
}

.copyright-row.timeline svg .st0 {
  fill: #b6bf00;
}

.copyright-row.timeline svg .st1 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: none;
  stroke: #ffffff;
  stroke-width: 17;
  stroke-miterlimit: 10;
}

.copyright-row.timeline svg .st2 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 17;
  stroke-miterlimit: 10;
}

.copyright-row.timeline svg .st3 {
  fill: #ffffff;
}

.copyright-row.timeline svg .st4 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: none;
  stroke: #ffffff;
  stroke-width: 15;
  stroke-miterlimit: 10;
}

.copyright-row.timeline svg .st5 {
  fill: none;
}

.copyright-row.timeline svg .st6 {
  fill: #16667f;
}

.copyright-row.timeline svg .st7 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 15;
  stroke-miterlimit: 10;
}

.copyright-row.timeline svg .st8 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: none;
  stroke: #ffffff;
  stroke-width: 13;
  stroke-miterlimit: 10;
}

.copyright-row.timeline svg .st9 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 13;
  stroke-miterlimit: 10;
}

.copyright-row.timeline svg .st10 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 14;
  stroke-miterlimit: 10;
}

.copyright-row a {
  color: inherit;
}

@media only screen and (max-width: 480px) {
  .copyright-row {
    font-size: 14px;
  }
}
.footer-promo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  width: 100%;
}

.footer-promo__image {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex: 0 0 auto;
  width: calc(100% - 695px);
  padding-top: calc((100% - 695px) * 0.8);
  margin-right: -180px;
}

.footer-promo__image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-promo__image.mobile-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .footer-promo__image {
    display: none;
  }
  .footer-promo__image.mobile-only {
    display: block;
    padding-top: 0;
  }
}
.footer-promo__content {
  flex-grow: 1;
  flex: 1 1 680px;
  padding: 50px 100px 45px 100px;
  color: #fff;
  transform: skew(-10deg);
  transform-origin: top;
  box-sizing: border-box;
}

.footer-promo__content-wrapper {
  flex: 0 0 875px;
  background: #0d3d4c;
  transform: skew(10deg);
  transform-origin: top;
  overflow: hidden;
}

.footer-promo__header {
  position: relative;
  margin-bottom: 55px;
  color: #FFFFFF !important;
}

.footer-promo__header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  top: calc(100% + 27px);
  right: calc(100% - 80px);
  background: #b5be34;
}

.footer-promo__description {
  font-size: 1.15rem;
  line-height: 1.4em;
  margin-bottom: 55px;
  color: #FFFFFF;
}

.footer-promo .slanted-button {
  font-size: 1.15rem;
  min-width: 250px;
  margin-right: -115px;
  padding-right: 2rem;
}

.footer-promo .slanted-button__row {
  justify-content: flex-end;
}

@media screen and (min-width: 1345px) {
  .footer-promo__image {
    width: 650px;
    padding-top: 520px;
  }
  .footer-promo__content-wrapper {
    flex-grow: 1;
  }
}
@media screen and (max-width: 1300px) {
  .footer-promo__image {
    width: calc(100% - 595px);
    padding-top: calc((100% - 595px) * 0.8);
  }
  .footer-promo__content-wrapper {
    flex: 0 0 775px;
  }
}
@media only screen and (max-width: 1200px) {
  .footer-promo {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-promo__image {
    width: 650px;
    padding-top: 520px;
    margin-right: 0;
  }
  .footer-promo__content-wrapper {
    max-width: 90%;
    align-self: flex-end;
    margin-top: -50px;
    flex-basis: auto;
  }
}
@media only screen and (max-width: 767px) {
  .footer-promo {
    margin-top: 50px;
  }
  .footer-promo__image {
    max-width: 100%;
    width: 100%;
  }
  .footer-promo__content-wrapper {
    max-width: 100%;
    margin-top: -5px;
    transform: inherit;
  }
  .footer-promo__content {
    transform: inherit;
    padding: 30px 10vw;
  }
  .footer-promo .slanted-button {
    margin-right: -12vw;
  }
}
.sidebar + .page-body .footer-promo__image {
  width: 650px;
  padding-top: 520px;
  margin-right: -210px;
}

@media only screen and (max-width: 767px) {
  .sidebar + .page-body .footer-promo__image.mobile-only {
    padding-top: 0;
  }
}
.sidebar + .page-body .footer-promo__content-wrapper {
  flex: 1 0 680px;
}

@media screen and (max-width: 1600px) {
  .sidebar + .page-body .footer-promo {
    flex-direction: column;
    align-items: flex-start;
  }
  .sidebar + .page-body .footer-promo__image {
    margin-right: 0;
  }
  .sidebar + .page-body .footer-promo__content-wrapper {
    max-width: 90%;
    align-self: flex-end;
    margin-top: -50px;
    flex-basis: auto;
  }
}
@media only screen and (max-width: 767px) {
  .sidebar + .page-body .footer-promo {
    margin-top: 50px;
  }
  .sidebar + .page-body .footer-promo__image {
    max-width: 100%;
    width: 100%;
  }
  .sidebar + .page-body .footer-promo__content-wrapper {
    max-width: 100%;
    margin-top: -5px;
    transform: inherit;
  }
  .sidebar + .page-body .footer-promo__content {
    transform: inherit;
    padding: 30px 10vw;
  }
  .sidebar + .page-body .footer-promo .slanted-button {
    margin-right: -12vw;
  }
}
.site-main-nav {
  display: flex;
}

.site-main-nav__pages {
  flex-grow: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style-type: none;
}

.site-main-nav__pages .site-main-nav__page {
  position: relative;
}

.site-main-nav__pages .site-main-nav__page:hover .site-main-nav__sub-pages {
  display: block;
}

.site-main-nav__pages .site-main-nav__sub-pages {
  display: none;
  position: absolute;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 767px) and (max-width: 964px) {
  .container {
    width: 688px;
  }
  .container .column,
.container .columns {
    margin: 0 8px 0 0;
  }
  .container .column.col1,
.container .column.col1 .container .column,
.container .columns.col1,
.container .column.col1 .container .columns,
.container .columns.col1 .container .column,
.container .columns.col1 .container .columns {
    width: 21px;
  }
  .container .column.col2,
.container .columns.col2 {
    width: 50px;
  }
  .container .column.col3,
.container .columns.col3 {
    width: 79px;
  }
  .container .column.col4,
.container .columns.col4 {
    width: 108px;
  }
  .container .column.col5,
.container .columns.col5 {
    width: 137px;
  }
  .container .column.col6,
.container .columns.col6 {
    width: 166px;
  }
  .container .column.col7,
.container .columns.col7 {
    width: 195px;
  }
  .container .column.col8,
.container .columns.col8 {
    width: 224px;
  }
  .container .column.col9,
.container .columns.col9 {
    width: 253px;
  }
  .container .column.col10,
.container .columns.col10 {
    width: 282px;
  }
  .container .column.col11,
.container .columns.col11 {
    width: 311px;
  }
  .container .column.col12,
.container .columns.col12 {
    width: 340px;
  }
  .container .column.col13,
.container .columns.col13 {
    width: 369px;
  }
  .container .column.col14,
.container .columns.col14 {
    width: 398px;
  }
  .container .column.col15,
.container .columns.col15 {
    width: 427px;
  }
  .container .column.col16,
.container .columns.col16 {
    width: 456px;
  }
  .container .column.col17,
.container .columns.col17 {
    width: 485px;
  }
  .container .column.col18,
.container .columns.col18 {
    width: 514px;
  }
  .container .column.col19,
.container .columns.col19 {
    width: 543px;
  }
  .container .column.col20,
.container .columns.col20 {
    width: 572px;
  }
  .container .column.col21,
.container .columns.col21 {
    width: 601px;
  }
  .container .column.col22,
.container .columns.col22 {
    width: 630px;
  }
  .container .column.col23,
.container .columns.col23 {
    width: 659px;
  }
  .container .column.col24,
.container .columns.col24 {
    width: 688px;
  }
  .span-1 {
    width: 21px;
  }
  .span-2 {
    width: 50px;
  }
  .span-3 {
    width: 79px;
  }
  .span-4 {
    width: 108px;
  }
  .span-5 {
    width: 137px;
  }
  .span-6 {
    width: 166px;
  }
  .span-7 {
    width: 195px;
  }
  .span-8 {
    width: 224px;
  }
  .span-9 {
    width: 253px;
  }
  .span-10 {
    width: 282px;
  }
  .span-11 {
    width: 311px;
  }
  .span-12 {
    width: 340px;
  }
  .span-13 {
    width: 369px;
  }
  .span-14 {
    width: 398px;
  }
  .span-15 {
    width: 427px;
  }
  .span-16 {
    width: 456px;
  }
  .span-17 {
    width: 485px;
  }
  .span-18 {
    width: 514px;
  }
  .span-19 {
    width: 543px;
  }
  .span-20 {
    width: 572px;
  }
  .span-21 {
    width: 601px;
  }
  .span-22 {
    width: 630px;
  }
  .span-23 {
    width: 659px;
  }
  .span-24 {
    width: 688px;
  }
  .append-1 {
    padding-right: 29px;
  }
  .append-2 {
    padding-right: 58px;
  }
  .append-3 {
    padding-right: 87px;
  }
  .append-4 {
    padding-right: 116px;
  }
  .append-5 {
    padding-right: 145px;
  }
  .append-6 {
    padding-right: 174px;
  }
  .append-7 {
    padding-right: 203px;
  }
  .append-8 {
    padding-right: 232px;
  }
  .append-9 {
    padding-right: 261px;
  }
  .append-10 {
    padding-right: 290px;
  }
  .append-11 {
    padding-right: 319px;
  }
  .append-12 {
    padding-right: 348px;
  }
  .append-13 {
    padding-right: 377px;
  }
  .append-14 {
    padding-right: 406px;
  }
  .append-15 {
    padding-right: 435px;
  }
  .append-16 {
    padding-right: 464px;
  }
  .append-17 {
    padding-right: 493px;
  }
  .append-18 {
    padding-right: 522px;
  }
  .append-19 {
    padding-right: 551px;
  }
  .append-20 {
    padding-right: 580px;
  }
  .append-21 {
    padding-right: 609px;
  }
  .append-22 {
    padding-right: 638px;
  }
  .append-23 {
    padding-right: 667px;
  }
  .prepend-1 {
    padding-left: 29px;
  }
  .prepend-2 {
    padding-left: 58px;
  }
  .prepend-3 {
    padding-left: 87px;
  }
  .prepend-4 {
    padding-left: 116px;
  }
  .prepend-5 {
    padding-left: 145px;
  }
  .prepend-6 {
    padding-left: 174px;
  }
  .prepend-7 {
    padding-left: 203px;
  }
  .prepend-8 {
    padding-left: 232px;
  }
  .prepend-9 {
    padding-left: 261px;
  }
  .prepend-10 {
    padding-left: 290px;
  }
  .prepend-11 {
    padding-left: 319px;
  }
  .prepend-12 {
    padding-left: 348px;
  }
  .prepend-13 {
    padding-left: 377px;
  }
  .prepend-14 {
    padding-left: 406px;
  }
  .prepend-15 {
    padding-left: 435px;
  }
  .prepend-16 {
    padding-left: 464px;
  }
  .prepend-17 {
    padding-left: 493px;
  }
  .prepend-18 {
    padding-left: 522px;
  }
  .prepend-19 {
    padding-left: 551px;
  }
  .prepend-20 {
    padding-left: 580px;
  }
  .prepend-21 {
    padding-left: 609px;
  }
  .prepend-22 {
    padding-left: 638px;
  }
  .prepend-23 {
    padding-left: 667px;
  }
  .pull-1 {
    margin-left: -29px;
  }
  .pull-2 {
    margin-left: -58px;
  }
  .pull-3 {
    margin-left: -87px;
  }
  .pull-4 {
    margin-left: -116px;
  }
  .pull-5 {
    margin-left: -145px;
  }
  .pull-6 {
    margin-left: -174px;
  }
  .pull-7 {
    margin-left: -203px;
  }
  .pull-8 {
    margin-left: -232px;
  }
  .pull-9 {
    margin-left: -261px;
  }
  .pull-10 {
    margin-left: -290px;
  }
  .pull-11 {
    margin-left: -319px;
  }
  .pull-12 {
    margin-left: -348px;
  }
  .pull-13 {
    margin-left: -377px;
  }
  .pull-14 {
    margin-left: -406px;
  }
  .pull-15 {
    margin-left: -435px;
  }
  .pull-16 {
    margin-left: -464px;
  }
  .pull-17 {
    margin-left: -493px;
  }
  .pull-18 {
    margin-left: -522px;
  }
  .pull-19 {
    margin-left: -551px;
  }
  .pull-20 {
    margin-left: -580px;
  }
  .pull-21 {
    margin-left: -609px;
  }
  .pull-22 {
    margin-left: -638px;
  }
  .pull-23 {
    margin-left: -667px;
  }
  .pull-24 {
    margin-left: -696px;
  }
  .row.reverse > .column.last {
    margin: 0 8px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 90%;
  }
  .container.columns,
.container.column,
.container .columns,
.container .column {
    margin: 0 0 20px 0;
    padding: 0;
  }
  .container .column[class*=col],
.container .columns[class*=col] {
    width: 100%;
  }
  .row.reverse > .column.last .row.reverse > .columns.last {
    margin: 0 10px 0 0;
  }
  .mobile-nav {
    display: block;
  }
  .main-nav {
    display: none;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 90%;
  }
  .container .column,
.container .columns {
    margin: 0 0 20px 0;
  }
  .container .column[class*=col],
.container .columns[class*=col] {
    width: 100%;
  }
  .mobile-nav {
    display: block;
  }
  .main-nav {
    display: none;
  }
  .scale-width-grid {
    max-width: 100%;
    height: auto;
  }
  .scale-width-grid-full {
    width: 100%;
    height: auto;
  }
}
.container:after,
.container:before {
  display: block;
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
  content: " ";
}

.container:after {
  clear: both;
}

.container {
  zoom: 1;
}

.slanted-button {
  display: block;
  position: relative;
  color: #0d3d4c;
  padding: 0.5em 1.5em;
  font-size: 1.2rem;
  box-sizing: border-box;
  text-align: center;
  max-width: 100%;
  transition: all 0.33s ease-in-out;
}
.slanted-button:hover {
  background: #c2cb41;
}
.slanted-button:hover:before {
  background: #c2cb41;
}

.slanted-button::before {
  content: "";
  position: absolute;
  transition: all 0.33s ease-in-out;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #b5be34;
  transform: skew(-10deg);
  transform-origin: center;
}

.slanted-button span {
  position: relative;
}

.slanted-button__row {
  display: flex;
}

@media only screen and (max-width: 767px) {
  .slanted-button {
    font-size: 1.15rem;
  }
}
.mobile-nav__item0 {
  font-weight: 700;
}

.mobile-nav__item0:first-child {
  border-top: 0;
}

.mobile-nav__item0:last-child {
  position: relative;
  margin-bottom: 10px;
}

.mobile-nav__item0:last-child > .link_wrap > .mobile-nav__link {
  padding-bottom: 1em;
}

.mobile-nav__item0 .mobile-nav__link:hover {
  font-weight: 900;
}

.mobile-nav__item0.active > .link_wrap > a {
  background: #0d3d4c;
  color: #fff;
}

.mobile-nav__item1 {
  background-color: rgba(21, 102, 127, 0.85);
  font-weight: 400;
}

.mobile-nav__item1 .mobile-nav__link {
  color: #fff;
}

.mobile-nav__item1 .mobile-nav__link:hover {
  font-weight: 700;
}

.mobile-nav__item1.active > .link_wrap > a {
  background: #0d3d4c;
}

.mobile-nav__item2 {
  background-color: rgba(14, 67, 83, 0.85);
  font-weight: 400;
}

.mobile-nav__item2 .mobile-nav__link {
  color: #fff;
}

.mobile-nav__item2 .mobile-nav__link:hover {
  font-weight: 700;
}

.mobile-nav__item2.active > .link_wrap > a {
  background: #0d3d4c;
}

.mobile-nav__item3 {
  background-color: rgba(7, 32, 39, 0.85);
  font-weight: 400;
}

.mobile-nav__item3 .mobile-nav__link {
  color: #fff;
}

.mobile-nav__item3 .mobile-nav__link:hover {
  font-weight: 700;
}

.mobile-nav__item3.active > .link_wrap > a {
  background: #0d3d4c;
}

.mobile-nav__item4 {
  background-color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
}

.mobile-nav__item4 .mobile-nav__link {
  color: #fff;
}

.mobile-nav__item4 .mobile-nav__link:hover {
  font-weight: 700;
}

.mobile-nav__item4.active > .link_wrap > a {
  background: #0d3d4c;
}

.mobile-nav__item5 {
  background-color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
}

.mobile-nav__item5 .mobile-nav__link {
  color: #fff;
}

.mobile-nav__item5 .mobile-nav__link:hover {
  font-weight: 700;
}

.mobile-nav__item5.active > .link_wrap > a {
  background: #0d3d4c;
}

.mobile-nav__item6 {
  background-color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
}

.mobile-nav__item6 .mobile-nav__link {
  color: #fff;
}

.mobile-nav__item6 .mobile-nav__link:hover {
  font-weight: 700;
}

.mobile-nav__item6.active > .link_wrap > a {
  background: #0d3d4c;
}

.mobile-nav__item7 {
  background-color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
}

.mobile-nav__item7 .mobile-nav__link {
  color: #fff;
}

.mobile-nav__item7 .mobile-nav__link:hover {
  font-weight: 700;
}

.mobile-nav__item7.active > .link_wrap > a {
  background: #0d3d4c;
}

.mobile-nav__item8 {
  background-color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
}

.mobile-nav__item8 .mobile-nav__link {
  color: #fff;
}

.mobile-nav__item8 .mobile-nav__link:hover {
  font-weight: 700;
}

.mobile-nav__item8.active > .link_wrap > a {
  background: #0d3d4c;
}

.mobile-nav__item9 {
  background-color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
}

.mobile-nav__item9 .mobile-nav__link {
  color: #fff;
}

.mobile-nav__item9 .mobile-nav__link:hover {
  font-weight: 700;
}

.mobile-nav__item9.active > .link_wrap > a {
  background: #0d3d4c;
}

.mobile-nav__item10 {
  background-color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
}

.mobile-nav__item10 .mobile-nav__link {
  color: #fff;
}

.mobile-nav__item10 .mobile-nav__link:hover {
  font-weight: 700;
}

.mobile-nav__item10.active > .link_wrap > a {
  background: #0d3d4c;
}

.mobile-nav__item.has-subs {
  padding-bottom: 1rem;
}

body {
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
}

.site-wrap {
  position: relative;
  z-index: 50;
  overflow-x: hidden;
  overflow-y: hidden;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media only screen and (max-width: 1200px) {
  .site-wrap.inactive {
    height: 100vh;
    overflow: hidden;
  }
  .site-wrap.inactive .site-header,
.site-wrap.inactive .background-container {
    filter: blur(5px);
  }
}
.background-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-content {
  flex-grow: 1;
}

.mobile_overlay {
  position: absolute;
  top: 0;
  z-index: -99;
  opacity: 0;
  transition: opacity 0.15s, z-index 0s 0.15s;
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .mobile_overlay.overlay_active {
    opacity: 1;
    background-color: transparent;
    z-index: 90;
    transition: opacity 0.15s, 0s z-index;
  }
}
.mobile-nav__link {
  display: block;
  padding: 1rem;
  color: #0d3d4c;
}

.mobile-nav {
  flex-shrink: 0;
  text-align: center;
}

.mobile-nav__selector {
  cursor: pointer;
  position: absolute;
  top: calc(100% - 20px);
  left: calc(50% - 20px);
  width: 24px;
  height: 24px;
  z-index: 1;
  padding: 10px;
}

.mobile-nav__selector .selector {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  transition: 0.15s;
  background: #fff;
  border: 2px solid #15667f;
  border-radius: 20px;
}

.mobile-nav__selector .selector::before,
.mobile-nav__selector .selector::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 5px);
  width: 10px;
  height: 2px;
  background: #15667f;
  transition: 0.15s;
}

.mobile-nav__selector .selector::after {
  transform: rotate(90deg);
  transform-origin: center;
}

.mobile-nav__selector .selector.active::after {
  transform: rotate(0deg);
}

.mobile-nav .link_wrap {
  display: block;
  position: relative;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 21px;
}

.mobile-nav ul ul {
  display: none;
  font-size: 18px;
}

.mobile-nav ul ul .mobile-nav__item:first-child {
  padding-top: 1rem;
}

.mobile-nav ul ul .mobile-nav__item:last-child {
  padding-bottom: 1rem;
}

@media only screen and (max-width: 1200px) {
  .mobile-nav {
    display: block;
  }
}
.mobile-nav-wrap {
  width: 100%;
  opacity: 0;
  position: absolute;
  right: 0;
  padding-top: 93px;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  box-sizing: border-box;
  transition: 0.15s opacity, 0s z-index 0.15s;
  z-index: -99;
  border-top: 30px solid #15667f;
}

@media only screen and (max-width: 1200px) {
  .mobile-nav-wrap {
    display: flex;
    flex-direction: column;
  }
  .mobile-nav-wrap.open {
    opacity: 1;
    z-index: 99;
    transition: 0.15s opacity, 0s z-index;
  }
  .mobile-nav-wrap.open + .site_contents {
    right: 100%;
  }
}
.mobile-nav-wrap .logo {
  flex-grow: 1;
  flex-shrink: 0;
}

.mobile-nav-wrap .logo img {
  display: block;
  height: auto;
  width: 280px;
  padding: 1.8rem 0;
  margin: 0 auto 50px;
}

.mobile-nav-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  max-height: calc(100vh - 93px);
}

.navicon-wrap {
  top: 15px;
  right: 20px;
  height: 50px;
  width: 50px;
  position: absolute;
  z-index: 400;
  box-sizing: border-box;
  display: none;
  transition: 0.15s;
  cursor: pointer;
  transform: skew(-18deg);
}

@media only screen and (max-width: 1200px) {
  .navicon-wrap {
    display: block;
  }
}
.navicon-wrap .navicon {
  width: 45px;
  height: 4px;
  background: #b5be34;
  margin: 0 auto;
  top: 43.5%;
  position: relative;
  transition: 0.15s;
  border-radius: 1px;
}

.navicon-wrap .navicon:before,
.navicon-wrap .navicon:after {
  display: block;
  content: "";
  width: 45px;
  height: 4px;
  background: #b5be34;
  position: absolute;
  z-index: 30;
  transition: 0.225s;
  border-radius: 1px;
  transform-origin: right bottom;
}

.navicon-wrap .navicon:before {
  top: -14px;
}

.navicon-wrap .navicon:after {
  top: 14px;
}

.navicon-wrap.open {
  transform: inherit;
  z-index: 100000;
}

.navicon-wrap.open .navicon {
  transform: rotate(45deg);
}

.navicon-wrap.open .navicon:before {
  transform: translate(-25px, 35px) rotate(90deg);
}

.navicon-wrap.open .navicon:after {
  transition: 0.1s;
  opacity: 0;
}

.rf-paragraph {
  margin: 0 0 18px 0;
  /* IMPORTANT: Do not change .no_border class name or remove the definition.
    This class is added to paragraph images by the CMS when a user
    chooses to disable the border on the image.
  */
}

.rf-paragraph .rf-content-wrap {
  font-size: 1.25rem;
  line-height: 1.4em;
}

.rf-paragraph .rf-content-wrap p,
.rf-paragraph .rf-content-wrap ul,
.rf-paragraph .rf-content-wrap ol {
  line-height: 1.4em;
  margin-bottom: 1.5rem;
}

.rf-paragraph .rf-content-wrap p a,
.rf-paragraph .rf-content-wrap ul a,
.rf-paragraph .rf-content-wrap ol a {
  color: #5fb2cb;
  padding-bottom: 0.3em;
  background-image: linear-gradient(90deg, currentColor 0%, currentColor 100%);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 80%;
  transition: 0.3s;
}

.rf-paragraph .rf-content-wrap p a:hover,
.rf-paragraph .rf-content-wrap p a:focus,
.rf-paragraph .rf-content-wrap ul a:hover,
.rf-paragraph .rf-content-wrap ul a:focus,
.rf-paragraph .rf-content-wrap ol a:hover,
.rf-paragraph .rf-content-wrap ol a:focus {
  background-size: 100% 2px;
}

.rf-paragraph .rf-content-wrap ul,
.rf-paragraph .rf-content-wrap ol {
  padding-left: 30px;
}

.rf-paragraph .rf-content-wrap ul li,
.rf-paragraph .rf-content-wrap ol li {
  margin: 1.5rem 0;
}

.rf-paragraph .rf-content-wrap ul li:last-child,
.rf-paragraph .rf-content-wrap ol li:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 480px) {
  .rf-paragraph .rf-content-wrap {
    font-size: 1.15rem;
  }
}
.rf-paragraph .paragraph_photoset {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.rf-paragraph .paragraph_photoset img {
  margin: 0 3px;
}

.rf-paragraph .photoset img {
  float: left;
  margin: 0 15px 15px 0;
}

.rf-paragraph .image {
  margin-bottom: 40px;
  text-align: center;
}

.rf-paragraph .image img {
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .rf-paragraph .image {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .rf-paragraph .image.rf-left,
.rf-paragraph .image.rf-right {
    max-width: 60%;
  }
}
.rf-paragraph .image.rf-left {
  float: left;
  margin: 0 45px 30px -45px;
}

@media only screen and (max-width: 767px) {
  .rf-paragraph .image.rf-left {
    float: none;
    margin: 0 0 30px 0;
  }
}
.rf-paragraph .image.rf-right {
  float: right;
  margin: 0 -45px 30px 45px;
}

@media only screen and (max-width: 767px) {
  .rf-paragraph .image.rf-right {
    float: none;
    margin: 0 0 30px 0;
  }
}
.rf-paragraph img {
  border: none;
  max-width: 100%;
  height: auto;
}

.rf-paragraph .no_border img {
  border: none;
}

.rf-paragraph iframe {
  width: 100%;
}

.rf-paragraph .rf-slideshow {
  margin-bottom: 30px;
  text-align: center;
}

.rf-paragraph .rf-slideshow img {
  left: 0px;
  right: 0px;
  margin: 0 auto;
}

.rf-paragraph blockquote {
  font-size: 20px;
  position: relative;
  padding-bottom: 30px;
  font-weight: bold;
  font-style: italic;
}

.rf-paragraph blockquote:before {
  content: open-quote;
}

.rf-paragraph blockquote:after {
  content: close-quote;
}

.rf-paragraph blockquote cite {
  font-size: 14px;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}

.rf-paragraph blockquote cite:before {
  content: "- ";
}

.contact-container {
  width: 900px;
  max-width: 90vw;
  margin: 0 auto 70px;
}

@media only screen and (max-width: 767px) {
  .contact-container {
    margin-bottom: 50px;
  }
}
.success-message {
  display: none;
  font-size: 1.4rem;
  padding: 1.5rem;
  background: #b5be34;
  border-radius: 5px;
  font-weight: 700;
}

.error-message {
  display: none;
  font-size: 1.4rem;
  padding: 1.5rem;
  background: #b5be34;
  border-radius: 5px;
  font-weight: 700;
}

.contact-form {
  margin: 0 -10px;
}

.contact-form .form__note {
  color: #0d3d4c;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  font-style: normal;
  margin: 15px;
}

.contact-form .contact-field {
  width: 50vw;
}

.contact-form .input-group {
  display: flex;
}

@media only screen and (max-width: 480px) {
  .contact-form .input-group {
    display: block;
  }
}
.contact-form .input-item {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  margin: 10px;
}

.contact-form .input-item.hidden {
  margin: 0;
}

.contact-form .input-item > button {
  cursor: pointer;
  margin: 0 auto;
  font-size: 1.4em;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  flex-grow: 1;
  max-width: 350px;
  overflow: visible;
}

.contact-form .input-item > button:focus {
  outline: none;
}

.contact-form .input-item > select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
}

.contact-form .input-item select::-ms-expand {
  display: none;
}

.contact-form .input-item .field-selector {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 8px 0 8px;
  border-color: #0d3d4c transparent transparent transparent;
}

.contact-form .input-item > input,
.contact-form .input-item select,
.contact-form .input-item textarea {
  width: 100%;
  border: 2px solid #5fb2cb;
  background-color: #fff;
  color: #5fb2cb;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  font-style: normal;
  padding: 0.5em;
  box-sizing: border-box;
  border-radius: 0px;
}

.contact-form .input-item > input:focus,
.contact-form .input-item select:focus,
.contact-form .input-item textarea:focus {
  outline-offset: -2px;
  outline: #5fb2cb auto 5px;
}

.contact-form .input-item > input::placeholder,
.contact-form .input-item select::placeholder,
.contact-form .input-item textarea::placeholder {
  color: #5fb2cb;
}

.contact-form .input-item > textarea {
  resize: vertical;
}

.contact-form .input-item > textarea::-moz-placeholder {
  opacity: 1;
}

.contact-form .input-item .recaptcha-field-wrap {
  margin: 0 auto;
}

.contact-form-success-message {
  display: none;
  margin: 80px 10px;
  color: #0d3d4c;
  font-size: 1.5rem;
  text-align: center;
  padding: 0.5em;
  background: #fff;
}

.contact-form-success-message > p {
  margin: 0;
}

.grid-filter .filters-row {
  width: 1000px;
  max-width: 90vw;
  margin: 0 auto 110px auto;
  display: flex;
  flex-direction: column;
}

.grid-filter .filters-row section.search {
  width: 100%;
  order: 2;
}

.grid-filter .filters-row .search-wrapper {
  display: flex;
  border: 2px solid #5fb2cb;
  transform: skew(-10deg);
}

.grid-filter .filters-row .search-wrapper .search-icon {
  width: 25px;
  background-image: url("/sitefiles/2767/images/search.svg");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  transform: skew(10deg);
  margin: 0 0px 0 25px;
}

.grid-filter .filters-row .search-wrapper:focus-within {
  border: 4px solid #5fb2cb;
}

.grid-filter .filters-row .search-wrapper input {
  width: 100%;
  border: 0;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 1.15rem;
  padding: 1.2rem 1.5rem 1.2rem 1rem;
  box-sizing: border-box;
  border-radius: 0px;
  color: #5fb2cb;
  text-transform: uppercase;
  background: transparent;
}

.grid-filter .filters-row .search-wrapper input::placeholder {
  color: #5fb2cb;
}

.grid-filter .filters-row .search-wrapper input:focus-within {
  outline: 0;
}

.grid-filter .filters-row .button-row {
  display: flex;
  order: 1;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 50px;
}

.grid-filter .filters-row .button-row a {
  display: block;
  position: relative;
  color: #0d3d4c;
  font-size: 1.4rem;
  padding: 10px 30px;
  transition: 0s;
  margin: 0 30px 10px;
  text-align: center;
}

.grid-filter .filters-row .button-row a span {
  position: relative;
  z-index: 1;
}

.grid-filter .filters-row .button-row a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skew(-10deg);
  background: #fff;
}

.grid-filter .filters-row .button-row a:hover,
.grid-filter .filters-row .button-row a:focus,
.grid-filter .filters-row .button-row a.active {
  color: #fff;
}

.grid-filter .filters-row .button-row a:hover::before,
.grid-filter .filters-row .button-row a:focus::before,
.grid-filter .filters-row .button-row a.active::before {
  background: rgba(13, 61, 76, 0.9);
}

@media only screen and (max-width: 767px) {
  .grid-filter .filters-row {
    margin-bottom: 50px;
  }
  .grid-filter .filters-row .button-row a {
    font-size: 1.15rem;
  }
}
@media screen and (max-width: 600px) {
  .grid-filter .filters-row .button-row {
    flex-direction: column;
    align-items: center;
  }
}
.grid-filter .entity-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 30px 40px;
}

.grid-filter .entity-list__wrapper {
  max-width: 1500px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .grid-filter .entity-list {
    justify-content: center;
    margin: 0;
  }
}
.grid-filter .no-results {
  text-align: center;
  font-size: 1.4rem;
  margin: 0 40px 100px;
}

.grid-filter .grid-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: #b5be34;
  margin: 0 30px 115px;
  flex: 0 0 calc(33.33% - 60px);
  max-width: calc(33.33% - 60px);
  overflow: hidden;
}

.grid-filter .grid-item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  transition: 0.3s;
  transform: skewY(6deg);
  transform-origin: right;
}

.grid-filter .grid-item__image {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 2px solid #b5be34;
}

.grid-filter .grid-item__title {
  position: relative;
  margin-bottom: 32px;
  width: 100%;
}

.grid-filter .grid-item__title::before {
  content: "";
  position: absolute;
  top: calc(100% + 15px);
  left: -3rem;
  width: 145px;
  height: 2px;
  background: #fff;
}

.grid-filter .grid-item__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-grow: 1;
  padding: 1.5rem 3rem;
  box-sizing: border-box;
}
.grid-filter .grid-item__content h3 {
  line-height: 45px;
}

.grid-filter .grid-item__description {
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
}

.grid-filter .grid-item .slanted-button {
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  margin-top: 1rem;
  flex-grow: 0;
  transform: translateX(100%) translateX(4rem);
  transition: transform 0.3s 0s;
}

.grid-filter .grid-item .slanted-button::before {
  background: #15667f;
}

.grid-filter .grid-item .slanted-button__row {
  position: relative;
  width: 100%;
  min-height: 65px;
}

.grid-filter .grid-item .slanted-button__row::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 110px;
  height: 50px;
  background-image: url("/sitefiles/2767/images/arrow.svg");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  transition: 0.3s 0.2s;
}

.grid-filter .grid-item .slanted-button__row.no-button::before {
  display: none;
}

.grid-filter .grid-item:hover::before {
  transform: skewY(0deg);
}

.grid-filter .grid-item:hover .slanted-button__row::before {
  opacity: 0;
  transition: 0.3s 0s;
}

.grid-filter .grid-item:hover .slanted-button__row .slanted-button {
  transform: translateX(0);
  transition: transform 0.3s 0.2s;
}

@media screen and (max-width: 1400px) {
  .grid-filter .grid-item {
    margin: 0 15px 115px;
    flex: 0 0 calc(33.33% - 30px);
    max-width: calc(33.33% - 30px);
  }
}
@media only screen and (max-width: 1200px) {
  .grid-filter .grid-item {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
  .grid-filter .grid-item::before {
    transform: skewY(0deg);
  }
  .grid-filter .grid-item .slanted-button__row {
    min-height: 0;
  }
  .grid-filter .grid-item .slanted-button__row::before {
    opacity: 0;
  }
  .grid-filter .grid-item .slanted-button__row .slanted-button {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 767px) {
  .grid-filter .grid-item {
    flex: 0 0 400px;
    max-width: 100%;
    margin: 0 0 50px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-filter .grid-item__content {
    padding: 1.5rem 2rem;
  }
  .grid-filter .grid-item .slanted-button__row::before {
    right: -10px;
  }
}
[v-cloak] {
  display: none;
}

.grid-header {
  width: 990px;
  max-width: 90vw;
  margin: 0 auto;
}

.grid-header__subheader {
  color: #b5be34;
  font-size: 35px;
  font-size: 4.5vw;
  margin-bottom: 0.8em;
}

@media (max-width: 577.7777777778px) {
  .grid-header__subheader {
    font-size: 26px;
  }
}
@media (min-width: 777.7777777778px) {
  .grid-header__subheader {
    font-size: 35px;
  }
}
.grid-header .textarea-content {
  font-size: 1.25rem;
}

@media only screen and (max-width: 767px) {
  .grid-header {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-header .textarea-content {
    font-size: 1.15rem;
  }
}
.underline-header {
  color: #5fb2cb;
  font-size: 35px;
  font-size: 4.5vw;
  border-bottom: 5px solid currentColor;
  padding: 0.5rem 0;
  margin-bottom: 30px;
}

@media (max-width: 577.7777777778px) {
  .underline-header {
    font-size: 26px;
  }
}
@media (min-width: 777.7777777778px) {
  .underline-header {
    font-size: 35px;
  }
}
.underline-header.category-header {
  margin: 0 30px 30px;
  flex-basis: 100%;
}

@media only screen and (max-width: 1200px) {
  .underline-header.category-header {
    margin: 0 15px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .underline-header.category-header {
    margin: 0 0 30px;
  }
}
.grid-main {
  width: 1400px;
  margin: 0 auto 75px;
  max-width: 90vw;
}

.committees-grid-main {
  width: 100% !important;
}

.grid-main .grid-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -30px;
}

.grid-main .grid-item {
  flex: 0 0 calc(33.33% - 60px);
  width: calc(33.33% - 60px);
  min-width: 320px;
  margin: 0 30px 50px;
  display: flex;
  flex-direction: column;
}

.grid-main .grid-item__content {
  position: relative;
  flex-grow: 1;
  background: #15667f;
  color: #fff;
  padding: 1.4rem;
  font-size: 1.4rem;
}

.grid-main .grid-item__content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #15667f;
  transform: skewY(5deg);
  transform-origin: bottom right;
}

.grid-main .grid-item__content > * {
  position: relative;
}

.grid-main .grid-item__content a {
  display: block;
  color: inherit;
  margin-bottom: 12px;
}

.grid-main .grid-item__content a.email {
  color: #b5be34;
}

.grid-main .grid-item__content a.email:hover {
  color: #c8d055;
}

.grid-main .grid-item img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  .grid-main .grid-list {
    margin: 0 -15px;
  }
  .grid-main .grid-item {
    flex: 0 0 calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .grid-main {
    margin-bottom: 20px;
  }
  .grid-main .grid-list {
    margin: 0;
    justify-content: center;
  }
  .grid-main .grid-item {
    flex: 0 0 350px;
    max-width: 100%;
    min-width: 0;
    margin: 0 0 30px;
  }
  .grid-main .grid-item__content {
    font-size: 1.15rem;
  }
}
.list-main {
  width: 1400px;
  margin: 0 auto 100px;
  max-width: 90vw;
}

.list-main__subheader {
  font-size: 1.25rem;
  max-width: 1000px;
}

.list-main__list.textarea-content {
  margin-top: 50px;
  column-width: 300px;
  column-gap: 100px;
}

.list-main__list.textarea-content p {
  min-height: 1px;
}

.list-main__list.textarea-content > * {
  font-size: 1.4rem;
  line-height: 1.8em;
}

@media only screen and (max-width: 767px) {
  .list-main {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .list-main__list.textarea-content {
    margin-top: 30px;
  }
  .list-main__list.textarea-content > * {
    font-size: 1.25rem;
  }
}
.annual-report {
  margin-top: 100px;
}

.annual-report__header-row {
  display: flex;
  justify-content: flex-end;
  position: relative;
  transform: translateY(40px);
  z-index: 1;
}

.annual-report__header-row svg {
  position: absolute;
  bottom: -25px;
  left: calc(23vw - 175px);
  width: 16vw;
  max-width: 175px;
  height: 16vw;
  max-height: 175px;
  flex-shrink: 0;
}

.annual-report__header {
  margin: 0 6.25vw;
  flex-basis: 67.5vw;
  text-align: right;
}

.annual-report__content-row {
  display: flex;
  align-items: flex-start;
}

.annual-report__content-row .image-wrapper {
  flex: 1 1 auto;
}

.annual-report__content-row img {
  width: 100%;
  height: auto;
}

.annual-report__content {
  font-size: 1.25rem;
  margin: 75px 150px 150px 50px;
  width: 350px;
  flex-shrink: 0;
}

.annual-report__content .slanted-button {
  width: 100%;
  margin-top: 30px;
}

.annual-report__content.mobile-only {
  display: none;
}

.annual-report__ribbon {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 6.5vw 1.5rem 3.75vw;
  box-sizing: border-box;
  width: 1020px;
  max-width: 90vw;
  margin-top: -100px;
  margin-left: calc(100vw - 1020px);
}

.annual-report__ribbon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: skew(-10deg);
  transform-origin: bottom;
  background: rgba(181, 190, 52, 0.9);
}

.annual-report__ribbon-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 200px;
}

.annual-report__ribbon-item span {
  display: block;
  max-width: 100%;
}

.annual-report__ribbon-item.grants .small-text {
  margin: 5px 25px 0;
}

.annual-report__ribbon-item.funds .large-number {
  margin-bottom: 10px;
}

.annual-report__ribbon .large-text {
  font-family: "Libre Baskerville", serif;
  font-size: 35px;
  font-size: 35px;
  font-size: 4vw;
  color: #fff;
}

@media (max-width: 500px) {
  .annual-report__ribbon .large-text {
    font-size: 20px;
  }
}
@media (min-width: 875px) {
  .annual-report__ribbon .large-text {
    font-size: 35px;
  }
}
.annual-report__ribbon .large-text .large-number {
  display: flex;
  justify-content: center;
  font-size: 40px;
  font-size: 6.5vw;
  line-height: 1em;
}

@media (max-width: 492.3076923077px) {
  .annual-report__ribbon .large-text .large-number {
    font-size: 32px;
  }
}
@media (min-width: 923.0769230769px) {
  .annual-report__ribbon .large-text .large-number {
    font-size: 60px;
  }
}
.annual-report__ribbon .large-text .dollar-sign {
  font-size: 35px;
  font-size: 4vw;
  margin-top: -0.25em;
}

@media (max-width: 500px) {
  .annual-report__ribbon .large-text .dollar-sign {
    font-size: 20px;
  }
}
@media (min-width: 875px) {
  .annual-report__ribbon .large-text .dollar-sign {
    font-size: 35px;
  }
}
.annual-report__ribbon .large-text .plus-sign {
  font-size: 40px;
  font-size: 4.3vw;
  margin-top: -0.25em;
}

@media (max-width: 604.6511627907px) {
  .annual-report__ribbon .large-text .plus-sign {
    font-size: 26px;
  }
}
@media (min-width: 930.2325581395px) {
  .annual-report__ribbon .large-text .plus-sign {
    font-size: 40px;
  }
}
.annual-report__ribbon .small-text {
  position: relative;
  font-size: 18px;
  text-align: right;
  margin-top: 5px;
  padding-top: 3px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.annual-report__ribbon .small-text::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0d3d4c;
}

@media only screen and (max-width: 1200px) {
  .annual-report__header-row svg {
    left: calc(23vw - 150px);
  }
  .annual-report__header {
    margin-right: 5px;
  }
  .annual-report__header .slanted-header__wrapper .shadow-text {
    box-shadow: 25px 0 0 rgba(95, 178, 203, 0.9);
  }
  .annual-report__footer-row {
    display: flex;
    align-items: flex-start;
  }
  .annual-report__content-row {
    flex-direction: column;
  }
  .annual-report__content-row .image-wrapper {
    width: 100%;
  }
  .annual-report__content {
    margin: 50px 50px 50px 100px;
    width: calc(100vw - 500px);
  }
  .annual-report__content .slanted-button {
    width: auto;
    min-width: 300px;
  }
  .annual-report__content .slanted-button__row {
    justify-content: center;
  }
  .annual-report__content.mobile-only {
    display: block;
  }
  .annual-report__content.desktop-only {
    display: none;
  }
  .annual-report__ribbon {
    flex-direction: column;
    width: 350px;
    margin-top: -150px;
    transform: inherit;
    margin-left: 0;
    padding: 1.5rem 90px 1.5rem 65px;
  }
  .annual-report__ribbon::before {
    transform: skew(5deg);
  }
  .annual-report__ribbon .small-text {
    font-size: 1.15rem;
  }
}
@media only screen and (max-width: 964px) {
  .annual-report {
    margin-top: 50px;
  }
  .annual-report__header-row svg {
    display: none;
  }
  .annual-report__header {
    flex-grow: 1;
  }
  .annual-report__content {
    margin: 50px 50px 50px 50px;
    width: calc(100vw - 450px);
  }
  .annual-report__ribbon {
    padding-left: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .annual-report__footer-row {
    flex-direction: column;
    align-items: center;
  }
  .annual-report__ribbon {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 15px;
    margin-top: -80px;
  }
  .annual-report__ribbon-item {
    flex: 0 1 auto;
    margin: 0 15px;
  }
  .annual-report__ribbon-item.grants .small-text {
    margin: 5px 10px 0;
  }
  .annual-report__ribbon::before {
    transform: inherit;
  }
  .annual-report__ribbon .small-text {
    font-size: 1rem;
  }
  .annual-report__content {
    width: auto;
  }
  .annual-report__content .slanted-button__row {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 480px) {
  .annual-report__header-row {
    transform: translateY(25px);
  }
  .annual-report__content {
    margin: 25px auto;
    width: 90vw;
    font-size: 1.15rem;
  }
  .annual-report__content .slanted-button {
    min-width: 0;
    width: 100%;
    margin-top: 20px;
  }
  .annual-report__content .slanted-button-row {
    justify-content: center;
  }
  .annual-report__footer-row {
    align-items: flex-start;
  }
  .annual-report__ribbon {
    flex-direction: column;
    padding: 15px 30px 15px 15px;
    align-items: flex-start;
    width: auto;
  }
  .annual-report__ribbon::before {
    transform: skew(5deg);
  }
  .annual-report__ribbon-item {
    margin: 15px;
    width: 180px;
  }
}
.homepage-header {
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 964px) {
  .homepage-header {
    flex-direction: column-reverse;
  }
}
.banner-row {
  display: flex;
}

.banner-row .sw-public-page-part {
  width: 100%;
}

.banner-row .sw-public-page-part .matrix-content {
  display: flex;
}

@media only screen and (max-width: 550px) {
  .banner-row .sw-public-page-part .matrix-content {
    flex-direction: column;
  }
}
.banner-row__item {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
  flex-grow: 1;
  margin: 0 10px 20px;
  overflow: hidden;
}

@media screen and (min-width: 965px) {
  .banner-row__item:hover .sliding-content {
    margin-bottom: 0;
  }
  .banner-row__item:focus-within .sliding-content {
    margin-bottom: 0;
  }
  .banner-row__item:first-child {
    margin-left: 0;
  }
  .banner-row__item:last-child {
    margin-right: 0;
  }
  @supports ((-webkit-clip-path: polygon(0 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 0 100%)) or (clip-path: polygon(0 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 0 100%))) {
    .banner-row__item .banner-row__content {
      padding-left: 100px;
    }
    .banner-row__item:first-child {
      margin: 0 -70px 20px 0;
      -webkit-clip-path: polygon(0 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 0 100%);
              clip-path: polygon(0 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 0 100%);
    }
    .banner-row__item:first-child .banner-row__content {
      padding-left: 50px;
    }
    .banner-row__item:nth-child(3n-1) {
      margin: 0 0 20px;
      padding: 0 30px;
      -webkit-clip-path: polygon(80px 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 10px 100%);
              clip-path: polygon(80px 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 10px 100%);
    }
    .banner-row__item:last-child {
      margin: 0 0 20px -70px;
      -webkit-clip-path: polygon(80px 0, 100% 0, 100% 100%, 10px 100%);
              clip-path: polygon(80px 0, 100% 0, 100% 100%, 10px 100%);
    }
  }
}
@media screen and (min-width: 965px) and (max-width: 1280px) {
  .banner-row__item:last-child .sliding-content .slanted-button {
    margin-right: -10px;
  }
}
.banner-row__content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 1.5rem 0 0 50px;
  width: 29vw;
  box-sizing: border-box;
}

.banner-row__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 101%;
  background: rgba(95, 178, 203, 0.9);
}

.banner-row__content h3 {
  position: relative;
  font-size: 1.4rem;
  margin: 0 1rem 1.4rem 0;
}

.banner-row__content .sliding-content {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 250px;
  margin-bottom: -250px;
  overflow: hidden;
  transition: margin 0.5s;
}

.banner-row__content .sliding-content p {
  flex-grow: 1;
  line-height: 1.25em;
  margin: 0 80px 1rem 0;
}

.banner-row__content .sliding-content .slanted-button {
  display: block;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  flex: 0 0 auto;
  align-self: flex-end;
  width: auto;
  font-size: 1.15rem;
  padding-right: 2rem;
}

.banner-row__content .sliding-content .slanted-button__row {
  justify-content: flex-end;
  margin-left: 85px;
}

@media screen and (min-width: 1280px) {
  .banner-row__content {
    transform: skew(-10deg);
    transform-origin: top right;
  }
  .banner-row__content h3,
.banner-row__content p {
    transform: skew(10deg);
    transform-origin: top left;
  }
  .banner-row__content h3 {
    transform-origin: bottom left;
    margin-left: -5px;
  }
  .banner-row__content .slanted-button {
    transform: skew(10deg);
    transform-origin: top right;
  }
}
@media screen and (min-width: 965px) and (max-width: 1280px) {
  .banner-row__content {
    width: 100%;
  }
  .banner-row__content::before {
    transform: inherit;
  }
  .banner-row__content h3 {
    margin-right: 100px;
  }
  .banner-row__content .sliding-content .slanted-button {
    margin-right: 70px;
  }
}
.banner-row__image {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 964px) {
  .banner-row__image {
    display: block;
  }
}
.banner-row .overlay-link {
  display: none;
}

@media screen and (min-width: 965px) {
  @supports ((-webkit-clip-path: polygon(0 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 0 100%)) or (clip-path: polygon(0 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 0 100%))) {
    .banner-row.double .banner-row__item:first-child {
      margin: 0 -35px 20px 0;
      -webkit-clip-path: polygon(0 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 0 100%);
              clip-path: polygon(0 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 0 100%);
    }
    .banner-row.double .banner-row__item:last-child {
      margin: 0 0 20px -35px;
      padding: 0;
      -webkit-clip-path: polygon(80px 0, 100% 0, 100% 100%, 10px 100%);
              clip-path: polygon(80px 0, 100% 0, 100% 100%, 10px 100%);
    }
  }
}
@media only screen and (max-width: 964px) {
  .banner-row {
    flex-direction: column;
    margin-top: 65px;
  }
  .banner-row .banner-row__item {
    margin: 0 0 1rem 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 964px) {
  .banner-row .banner-row__item {
    display: flex;
  }
  .banner-row .banner-row__item:nth-child(2) {
    flex-direction: row-reverse;
  }
  .banner-row .banner-row__item:nth-child(2) .banner-row__content {
    padding: 1.5rem 50px 0 80px;
    -webkit-clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
  }
  .banner-row .banner-row__item:nth-child(2) .banner-row__content .slanted-button {
    margin-right: -55px;
  }
  .banner-row .banner-row__item:nth-child(2) .banner-row__image {
    margin: 0 -50px 0 0;
  }
  .banner-row .banner-row__content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 400px;
    padding: 1.5rem 60px 0 50px;
    -webkit-clip-path: polygon(0 0, 100% 0, 350px 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 350px 100%, 0 100%);
  }
  .banner-row .banner-row__content::before {
    transform: inherit;
    background: #5fb2cb;
  }
  .banner-row .banner-row__content h3 {
    margin-right: 0;
  }
  .banner-row .banner-row__content .sliding-content {
    flex-grow: 1;
    overflow: visible;
    margin: 0;
  }
  .banner-row .banner-row__content .sliding-content p {
    margin-right: 0;
  }
  .banner-row .banner-row__content .sliding-content .slanted-button {
    margin-right: -25px;
  }
  .banner-row .banner-row__content .sliding-content .slanted-button__row {
    margin-left: 0;
  }
  .banner-row .banner-row__image {
    flex-grow: 1;
    background-position: center;
    background-size: cover;
    margin-left: -50px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-row .banner-row__item {
    height: 53vw;
    min-height: 250px;
    width: 100% !important;
  }
  .banner-row .banner-row__item:nth-child(2) .banner-row__content {
    left: inherit;
    right: 0;
    padding-left: 2.5rem;
  }
  .banner-row .banner-row__item:nth-child(2) .banner-row__content::before {
    transform-origin: bottom right;
  }
  .banner-row .banner-row__content {
    padding: 1rem 0 0 6.5vw;
    width: 85%;
  }
  .banner-row .banner-row__content::before {
    transform: skew(-10deg);
    transform-origin: top left;
  }
  .banner-row .banner-row__content h3 {
    position: relative;
    font-size: 1.15rem;
    margin-bottom: 1.1rem;
  }
  .banner-row .banner-row__content h3::after {
    content: ">>";
    margin-left: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
  }
  .banner-row .banner-row__content .sliding-content {
    display: none;
  }
  .banner-row .overlay-link {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.homepage-banner__background {
  width: 100vw;
  height: auto;
}

.homepage-banner__content {
  width: 1300px;
  max-width: 90vw;
  margin: 0 auto;
}

.homepage-banner__header {
  transform: translateY(-40px);
  margin-bottom: 0;
}

.homepage-banner__subheader {
  margin: 0 auto;
  width: 968px;
  max-width: 80vw;
  font-size: 1.4rem;
}

.homepage-banner .slanted-button {
  margin-top: 10px;
  min-width: 350px;
  transition: all 0.33s ease-in-out;
}
.homepage-banner .slanted-button:hover {
  background: #c2cb41;
}

.homepage-banner .slanted-button__row {
  justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
  .homepage-banner__header {
    transform: translateY(-30px);
  }
  .homepage-banner__subheader {
    font-size: 1.15rem;
  }
  .homepage-banner .slanted-button__row {
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .homepage-banner .slanted-button {
    min-width: 0;
    width: 100%;
  }
}
.mobile-homepage-buttons {
  display: none;
}

.mobile-homepage-buttons a {
  display: block;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 1.15rem;
  text-align: center;
  background: #15667f;
}

.mobile-homepage-buttons a:first-child {
  background: #197895;
}

@media only screen and (max-width: 767px) {
  .mobile-homepage-buttons a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 964px) {
  .mobile-homepage-buttons {
    display: block;
  }
}
.mobile-homepage-buttons.tablet-homepage-buttons {
  display: none;
}

@media screen and (max-width: 1200px) and (min-width: 965px) {
  .mobile-homepage-buttons.tablet-homepage-buttons {
    display: block;
  }
}
section.banner-row div.banner-row__item {
  padding: 10px;
  border-right: 15px solid white;
}

section.banner-row div.banner-row__item:last-child {
  border-right: none;
}

.news-section {
  margin: 150px 0 95px;
}

.news-section__row {
  display: flex;
  align-items: flex-end;
}

.news-section .header {
  position: relative;
  z-index: 2;
  font-size: 40px;
  font-size: 6.5vw;
  color: #458294;
  margin: 0 2rem 1.5rem 50px;
}

@media (max-width: 492.3076923077px) {
  .news-section .header {
    font-size: 32px;
  }
}
@media (min-width: 923.0769230769px) {
  .news-section .header {
    font-size: 60px;
  }
}
.news-section__left {
  position: relative;
  z-index: 2;
  flex: 1 0 auto;
  width: calc(50vw + 25px);
  max-width: 75vw;
  margin-right: -25px;
}

.news-section__right {
  display: flex;
  align-items: flex-end;
  position: relative;
  flex: 1 0 auto;
  width: calc(50vw + 50px);
  margin: 0 0 55px -50px;
  min-height: 600px;
}

.news-section__right::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: skew(-10deg);
  transform-origin: bottom;
  z-index: 1;
}

.news-section__right img {
  width: 100%;
  height: auto;
}

.news-section__news .news-item {
  color: #fff;
  flex: 0 1 100%;
}

.news-section__news .news-item h3 {
  position: relative;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.news-section__news .news-item h3::before {
  content: "";
  position: absolute;
  top: calc(100% + 16px);
  left: -70px;
  height: 2px;
  width: 143px;
  background: #b5be34;
}

.news-section__news .news-item:first-child {
  display: flex;
  margin-right: -20px;
}

.news-section__news .news-item:first-child .news-item__content {
  background: #5fb2cb;
  box-sizing: border-box;
  max-width: 60%;
}

.news-section__news .news-item:first-child .news-item__content::before,
.news-section__news .news-item:first-child .news-item__content::after {
  background: #5fb2cb;
}

.news-section__news .news-item:first-child .news-item__content::after {
  left: 25px;
}

.news-section__news .news-item:first-child .news-item__content .slanted-button__row {
  margin-right: -65px;
}

.news-section__news .news-item:nth-child(2) {
  background: #15667f;
  margin-right: 110px;
}

.news-section__news .news-item:nth-child(2) h3::before {
  left: -45px;
}

.news-section__news .news-item:nth-child(2) .news-item__content {
  display: flex;
  flex-direction: column;
  padding-left: 45px;
  box-sizing: border-box;
  min-height: 400px;
}

.news-section__news .news-item:nth-child(2) .news-item__content-description {
  flex-grow: 1;
}

.news-section__news .news-item:nth-child(2) .news-item__content::before,
.news-section__news .news-item:nth-child(2) .news-item__content::after {
  background: #15667f;
}

.news-section__news .news-item__content {
  position: relative;
  padding: 2rem 40px 1.5rem 2rem;
}

.news-section__news .news-item__content::before,
.news-section__news .news-item__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% + 1px);
  width: 100%;
  transform: skew(-10deg);
  transform-origin: top;
}

.news-section__news .news-item__content::after {
  transform-origin: bottom;
}

.news-section__news .news-item__content-description {
  margin-bottom: 25px;
}

.news-section__news .news-item__content .slanted-button {
  font-size: 1.15rem;
  min-width: 250px;
  transform: skew(10deg);
  transform-origin: top;
}

.news-section__news .news-item__content .slanted-button__row {
  justify-content: flex-end;
  transform: skew(-10deg);
  margin: 0 -41px 0 -32px;
  transform-origin: bottom;
}

.news-section__news .news-item__content > * {
  position: relative;
  z-index: 1;
}

.news-section__news .news-item__image {
  flex: 0 0 40%;
  background-size: cover;
  background-position: center;
}

.news-section .homepage-footer-promo__content {
  overflow: visible !important;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem 75px 2rem 100px;
  overflow: hidden;
  width: 100%;
  max-height: 350px;
  box-sizing: border-box;
  background: rgba(181, 190, 52, 0.9);
}

.news-section .homepage-footer-promo__content .promo-header {
  position: relative;
  font-size: 35px;
  font-size: 35px;
  font-size: 4.5vw;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 577.7777777778px) {
  .news-section .homepage-footer-promo__content .promo-header {
    font-size: 26px;
  }
}
@media (min-width: 777.7777777778px) {
  .news-section .homepage-footer-promo__content .promo-header {
    font-size: 35px;
  }
}
.news-section .homepage-footer-promo__content p {
  position: relative;
  z-index: 1;
  margin: 25px 0 30px;
}

.news-section .homepage-footer-promo__content .slanted-button {
  color: #fff;
  margin-right: -75px;
}

.news-section .homepage-footer-promo__content .slanted-button::before {
  background: #15667f;
  transform-origin: bottom;
}

.news-section .homepage-footer-promo__content .slanted-button__row {
  justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
  .news-section {
    margin-top: 95px;
  }
  .news-section__row {
    flex-direction: column;
  }
  .news-section__left {
    width: auto;
    max-width: calc(100% - 50px);
    margin-right: 50px;
  }
  .news-section__right {
    width: calc(100% - 50px);
    max-width: 964px;
    margin: 10px 0 0 50px;
  }
  .news-section__right .homepage-footer-promo__content {
    max-height: inherit;
  }
  .news-section__news .news-item:first-child {
    margin-right: 55px;
  }
  .news-section__news .news-item:first-child .news-item__content::after {
    left: 0;
  }
  .news-section__news .news-item:first-child .news-item__content .slanted-button__row {
    margin-right: -40px;
  }
  .news-section__news .news-item:nth-child(2) {
    margin-right: 160px;
  }
  .news-section__news .news-item:nth-child(2) .news-item__content {
    min-height: inherit;
  }
}
@media only screen and (max-width: 964px) {
  .news-section {
    margin-top: 50px;
    margin-bottom: 10px;
  }
  .news-section .header {
    margin: 0 2rem 1.5rem;
  }
  .news-section__left {
    margin-right: 0;
    max-width: 100%;
  }
  .news-section__right {
    width: 100%;
    margin: 0;
    flex-direction: column;
    min-height: 0;
  }
  .news-section__right .homepage-footer-promo__content {
    position: relative;
    background: #b5be34;
    padding: 2rem 40px;
    max-height: inherit;
  }
  .news-section__right .homepage-footer-promo__content .slanted-button {
    margin-right: -40px;
  }
  .news-section__right::before {
    display: none;
  }
  .news-section__news .news-item {
    margin-bottom: 10px;
  }
  .news-section__news .news-item:first-child {
    margin-right: 0;
  }
  .news-section__news .news-item:first-child .news-item__content {
    padding: 2rem 2rem 1.5rem;
  }
  .news-section__news .news-item:nth-child(2) {
    margin-right: 0;
  }
  .news-section__news .news-item:nth-child(2) .news-item__content {
    padding: 2rem 2rem 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .news-section__news .news-item {
    flex-direction: column;
  }
  .news-section__news .news-item__image {
    height: 70vw;
  }
  .news-section__news .news-item:first-child .news-item__content {
    max-width: 100%;
  }
  .news-section .homepage-footer-promo__content .slanted-button {
    margin: 0;
    width: 100%;
    max-width: 350px;
  }
  .news-section .homepage-footer-promo__content .slanted-button__row {
    justify-content: center;
  }
}
.slanted-promos {
  margin-top: 20px;
}

.slanted-promos__header {
  color: #458294;
  margin: 0 20px 30px 60px;
}

@media screen and (min-width: 1201px) {
  .slanted-promos__header-mobile {
    display: none;
  }
}
.slanted-promos__header-mobile .slanted-promos__header {
  margin: 0 auto 25px;
  width: 90vw;
}

.slanted-promos__header-mobile .slanted-promos__subheader {
  margin: 0 auto 40px auto;
  width: 80vw;
}

@media only screen and (max-width: 767px) {
  .slanted-promos__header-mobile .slanted-promos__subheader {
    width: 90vw;
    font-size: 1.15rem;
  }
}
.slanted-promos__subheader {
  font-size: 1.25rem;
  margin: 45px 45px 20px 45px;
  min-height: 100px;
  max-width: calc(100% - 90px);
}

.slanted-promos .promo-preview {
  position: relative;
}

.slanted-promos .promo-preview__background {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5fb2cb;
  background-size: cover;
  background-position: center;
}

.slanted-promos .promo-preview__background.orange {
  background: #e47425;
}

.slanted-promos .promo-preview__background.blue {
  background: #5fb2cb;
}

.slanted-promos .promo-preview__background.green {
  background: #b5be34;
}

.slanted-promos .promo-preview__background.teal {
  background: #15667f;
}

.slanted-promos .promo-preview__background.pointer {
  cursor: pointer;
}

.slanted-promos .promo-preview__background:hover .promo-preview__title {
  flex-grow: 1;
}

.slanted-promos .promo-preview__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: rgba(21, 102, 127, 0.75);
  color: #fff;
  text-align: center;
  transition: flex-grow 0.3s, font-size 0.3s;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
}

.slanted-promos .promo-preview__title span {
  display: block;
  flex: 0 1 auto;
  max-width: 100%;
}

.slanted-promos .promo-preview.active .promo-preview__title {
  flex-grow: 1;
}

.slanted-promos .promo-content {
  background: #15667f;
  color: #fff;
  box-sizing: border-box;
}

.slanted-promos .promo-content__title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.slanted-promos .promo-content__description {
  font-size: 1.25rem;
}

.slanted-promos .promo-content .slanted-button {
  margin-top: 1rem;
  font-size: 1.25rem;
  min-width: 250px;
}

.slanted-promos .promo-content .slanted-button__row {
  justify-content: flex-end;
}

.slanted-promos .active-promo {
  display: none;
}

.slanted-promos .slanted-rectangle__image {
  display: none;
}

@media only screen and (max-width: 767px) {
  .slanted-promos {
    margin-top: 55px;
  }
}
.slanted-promos__desktop {
  display: flex;
}

.slanted-promos__desktop .slanted-promos__left {
  position: relative;
  z-index: 1;
  flex: 0 0 675px;
}

.slanted-promos__desktop .slanted-promos__right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100vw - 675px);
  -webkit-clip-path: polygon(22px 0, 100% 0, 100% 100%, -100px 100%);
          clip-path: polygon(22px 0, 100% 0, 100% 100%, -100px 100%);
}

.slanted-promos__desktop .slanted-promos__right svg {
  display: block;
  align-self: flex-end;
  width: 100%;
  height: 64%;
}

.slanted-promos__desktop .slanted-promos__right .active-promo__container {
  flex-grow: 1;
  width: 100%;
}

.slanted-promos__desktop .slanted-promos__grid {
  display: flex;
  flex-wrap: wrap;
}

.slanted-promos__desktop .promo-preview {
  flex: 0 0 45%;
  height: 275px;
  margin: 0 20px 20px 0;
}

.slanted-promos__desktop .promo-preview__title {
  font-size: 1.35rem;
}

.slanted-promos__desktop .promo-preview.active .promo-preview__title {
  font-size: 1.65rem;
}

.slanted-promos__desktop .promo-preview__background:hover .promo-preview__title {
  font-size: 1.65rem;
}

.slanted-promos__desktop .promo-content {
  min-height: 340px;
  width: 990px;
  margin-left: 0;
  margin-right: -640px;
  max-width: calc(100vw - 300px);
  padding: 2rem 80px;
}

@supports ((-webkit-clip-path: polygon(0 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 0 100%)) or (clip-path: polygon(0 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 0 100%))) {
  .slanted-promos__desktop .promo-preview:nth-child(1) {
    flex-basis: 355px;
    margin-right: -35px;
  }
  .slanted-promos__desktop .promo-preview:nth-child(1) .promo-preview__background {
    -webkit-clip-path: polygon(0 0, 345px 0, 313px 100%, 0 100%);
            clip-path: polygon(0 0, 345px 0, 313px 100%, 0 100%);
  }
  .slanted-promos__desktop .promo-preview:nth-child(1) .promo-preview__title {
    padding-right: 55px;
  }
  .slanted-promos__desktop .promo-preview:nth-child(2) {
    flex-basis: 355px;
    margin-right: 0;
  }
  .slanted-promos__desktop .promo-preview:nth-child(2) .promo-preview__background {
    -webkit-clip-path: polygon(45px 0, 345px 0, 313px 100%, 13px 100%);
            clip-path: polygon(45px 0, 345px 0, 313px 100%, 13px 100%);
  }
  .slanted-promos__desktop .promo-preview:nth-child(2) .promo-preview__title {
    padding: 0.75rem 55px 0.75rem 45px;
  }
  .slanted-promos__desktop .promo-preview:nth-child(3) {
    flex-basis: 311px;
  }
  .slanted-promos__desktop .promo-preview:nth-child(3) .promo-preview__background {
    -webkit-clip-path: polygon(0 0, 311px 0, 279px 100%, 0 100%);
            clip-path: polygon(0 0, 311px 0, 279px 100%, 0 100%);
  }
  .slanted-promos__desktop .promo-preview:nth-child(3) .promo-preview__title {
    padding-right: 55px;
  }
  .slanted-promos__desktop .promo-preview:nth-child(4) {
    flex-basis: 336px;
    margin-left: -36px;
  }
  .slanted-promos__desktop .promo-preview:nth-child(4) .promo-preview__background {
    -webkit-clip-path: polygon(36px 0, 336px 0, 304px 100%, 4px 100%);
            clip-path: polygon(36px 0, 336px 0, 304px 100%, 4px 100%);
  }
  .slanted-promos__desktop .promo-preview:nth-child(4) .promo-preview__title {
    padding: 0.75rem 45px;
  }
  .slanted-promos__desktop .promo-preview:nth-child(5) {
    flex-basis: 280px;
  }
  .slanted-promos__desktop .promo-preview:nth-child(5) .promo-preview__background {
    -webkit-clip-path: polygon(0 0, 277px 0, 246px 100%, 0 100%);
            clip-path: polygon(0 0, 277px 0, 246px 100%, 0 100%);
  }
  .slanted-promos__desktop .promo-preview:nth-child(5) .promo-preview__title {
    padding-right: 45px;
  }
  .slanted-promos__desktop .promo-content {
    margin-left: -40px;
    margin-right: -575px;
    -webkit-clip-path: polygon(38px 0, 100% 0, calc(100% - 38px) 100%, 0px 100%);
            clip-path: polygon(38px 0, 100% 0, calc(100% - 38px) 100%, 0px 100%);
  }
  .slanted-promos__desktop .promo-content .slanted-button {
    margin-right: -50px;
  }
  .slanted-promos__desktop .slanted-promos__right .slanted-rectangle__image {
    margin-left: -4.5vw;
    width: calc(100% + 4.5vw);
    height: auto;
  }
}
@media screen and (max-width: 1200px) {
  .slanted-promos__desktop {
    display: none;
  }
}
.slanted-promos__tablet {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .slanted-promos__tablet {
    display: block;
  }
}
.slanted-promos__tablet .slanted-promos__container {
  display: flex;
  min-height: 800px;
}

.slanted-promos__tablet .slanted-promos__grid {
  display: flex;
  flex-direction: column;
  flex: 0 0 371px;
  max-width: 38vw;
  margin: 0 10px -10px 0;
}

.slanted-promos__tablet .slanted-promos__grid .promo-content {
  display: none;
}

.slanted-promos__tablet .promo-preview {
  min-height: 150px;
  flex-grow: 1;
  margin-bottom: 10px;
}

.slanted-promos__tablet .promo-preview.inactive {
  display: none;
}

.slanted-promos__tablet .promo-preview__title {
  font-size: 1.25rem;
}

@media only screen and (max-width: 964px) {
  .slanted-promos__tablet .promo-preview__title {
    font-size: 1.15rem;
  }
}
.slanted-promos__tablet .active-promo {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.slanted-promos__tablet .active-promo__image {
  background: #b5be34;
  flex-grow: 1;
  min-height: 40vw;
  background-size: cover;
  background-position: center;
}

.slanted-promos__tablet .active-promo__container {
  flex-grow: 1;
  width: calc(100vw - 371px);
  min-width: 62vw;
}

.slanted-promos__tablet .promo-content {
  padding: 2rem;
}

.slanted-promos__tablet .promo-content-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.slanted-promos__tablet .promo-content-description {
  font-size: 1.15rem;
}

.slanted-promos__tablet .promo-content .slanted-button {
  margin-right: -40px;
}

@supports ((-webkit-clip-path: polygon(0 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 0 100%)) or (clip-path: polygon(0 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 0 100%))) {
  .slanted-promos__tablet .slanted-promos__grid {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 75px) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 75px) 100%, 0 100%);
  }
  .slanted-promos__tablet .promo-preview__title {
    padding-right: 85px;
  }
  .slanted-promos__tablet .active-promo__container {
    margin-left: -75px;
    -webkit-clip-path: polygon(75px 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(75px 0, 100% 0, 100% 100%, 0 100%);
  }
  .slanted-promos__tablet .promo-content {
    padding-left: 65px;
  }
}
@media screen and (min-width: 768px) {
  .slanted-promos__mobile {
    display: none;
  }
}
.slanted-promos__mobile .promo-preview {
  margin-bottom: 5px;
}

.slanted-promos__mobile .promo-preview .promo__image {
  height: 0;
  transition: height 0.3s;
  background-size: cover;
  background-position: center;
}

.slanted-promos__mobile .promo-preview__background {
  position: relative;
}

.slanted-promos__mobile .promo-preview__background .circle-selector {
  position: absolute;
  top: calc(50% - 14px);
  right: 20px;
  width: 20px;
  height: 20px;
  transition: 0.3s;
  border: 2px solid #fff;
  border-radius: 20px;
}

.slanted-promos__mobile .promo-preview__background .circle-selector::before,
.slanted-promos__mobile .promo-preview__background .circle-selector::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 5px);
  width: 10px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.slanted-promos__mobile .promo-preview__background .circle-selector::after {
  transform: rotate(90deg);
  transform-origin: center;
}

.slanted-promos__mobile .promo-preview__title {
  text-align: left;
  font-size: 1.25rem;
  font-size: 18px;
  font-size: 4.4vw;
  padding: 1.5rem 60px 1.5rem 1.5rem;
  justify-content: flex-start;
  align-items: flex-start;
}

@media (max-width: 409.0909090909px) {
  .slanted-promos__mobile .promo-preview__title {
    font-size: 18px;
  }
}
@media (min-width: 500px) {
  .slanted-promos__mobile .promo-preview__title {
    font-size: 22px;
  }
}
.slanted-promos__mobile .promo-preview .promo-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
}

.slanted-promos__mobile .promo-preview .promo-content__description {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.slanted-promos__mobile .promo-preview .promo-content .slanted-button {
  font-size: 1.15rem;
  margin: 0 -35px 1.5rem 0;
}

.slanted-promos__mobile .promo-preview.active .promo__image {
  height: 55vw;
}

.slanted-promos__mobile .promo-preview.active .promo-preview__title {
  background: #15667f;
}

.slanted-promos__mobile .promo-preview.active .promo-content {
  max-height: 1000px;
}

.slanted-promos__mobile .promo-preview.active .circle-selector::after {
  transform: rotate(0deg);
}

section.banner-row {
  display: flex;
}

section.banner-row div.banner-row__item {
  width: 33.333%;
  -webkit-clip-path: none;
          clip-path: none;
  background-position: center;
  margin: 0;
}

section.banner-row div.banner-row__item .banner-row__content {
  transform: skew(0deg);
  width: 100%;
}

section.banner-row div.banner-row__item .banner-row__content h3 {
  transform: skew(0deg);
}

section.banner-row div.banner-row__item .banner-row__content div.sliding-content p {
  transform: skew(0deg);
}

section.banner-row div.banner-row__item .banner-row__content div.sliding-content a {
  transform: skew(0deg);
}

section.banner-row div.banner-row__item .banner-row__content div.sliding-content a:before {
  transform: skew(0deg);
}

.paragraphs-container {
  display: flex;
  justify-content: space-between;
}

.paragraphs-container .sidebar {
  display: flex;
  flex-direction: column;
  flex: 0 0 400px;
  margin-bottom: -10px;
  margin-top: 5%;
}

.paragraphs-container .sidebar .sidebar-column div#ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu {
  margin-top: -19%;
}

.paragraphs-container .sw-menucode-child__link {
  display: block;
  text-align: center;
  color: #b5be34;
  font-size: 35px;
  font-size: 4vw;
  padding: 0 1rem;
  line-height: 0.9em;
  font-family: "Libre Baskerville", serif;
  text-transform: uppercase;
  font-weight: 900;
}

@media (max-width: 500px) {
  .paragraphs-container .sw-menucode-child__link {
    font-size: 20px;
  }
}
@media (min-width: 875px) {
  .paragraphs-container .sw-menucode-child__link {
    font-size: 33px;
  }
}
.paragraphs-container .sidebar-column {
  background: #bcc448;
  background-image: url("/sitefiles/2767/images/sidebar-pattern.png");
  flex-grow: 1;
}

.paragraphs-container .sidebar-column .mobile-title {
  display: none;
}

.paragraphs-container .sidebar-column > div#ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu > ul#subnav {
  position: relative;
  margin-bottom: 480px;
}

.paragraphs-container .sidebar-column > div#ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu > ul#subnav::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  min-height: calc(100% + 200px);
  background: linear-gradient(#b5be34 70%, rgba(181, 190, 52, 0));
}

.paragraphs-container .sidebar ul#subnav {
  background: #b5be34;
  padding: 1.5rem 0;
  list-style: none;
}

.paragraphs-container .sidebar-column > ul#subnav {
  position: relative;
  margin-bottom: 480px;
  min-height: 150px;
}

.paragraphs-container .sidebar ul#subnav li.sw-menucode-item {
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.paragraphs-container .sidebar ul#subnav li.sw-menucode-item a.sw-menucode-item__link {
  position: relative;
  display: block;
  max-width: calc(100% - 80px);
  color: #0d3d4c;
  padding: 0.75em 3.15rem;
  font-weight: 700;
  font-size: 1.5rem;
  box-sizing: border-box;
  flex-grow: 1;
  transition: all 0.33s ease-in-out;
}

.paragraphs-container .sidebar ul#subnav li.sw-menucode-item a.sw-menucode-item__link:hover,
.paragraphs-container .sidebar ul#subnav li.sw-menucode-item a.sw-menucode-item__link:focus {
  font-weight: 900;
}

.paragraphs-container .sidebar .recursive-nav__item.open > .recursive-nav {
  display: block;
}

.paragraphs-container .sidebar .recursive-nav__row {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.paragraphs-container .sidebar ul#subnav li.sw-menucode-item a.sw-menucode-item__link.current::before {
  content: "";
  position: absolute;
  width: calc(100% + 115px);
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(21, 102, 127, 0.9);
  transform: skew(-10deg);
  transform-origin: top;
  z-index: -1;
}

.paragraphs-container .sidebar ul#subnav li.sw-menucode-item a.sw-menucode-item__link.current {
  color: #fff;
  font-style: italic;
  font-weight: 700;
  z-index: 1;
}

.paragraphs-container .sidebar .recursive-nav__row.active .recursive-nav__sub-toggle .selector {
  background: #fff;
}

.paragraphs-container .sidebar .recursive-nav__row.active .recursive-nav__sub-toggle .selector::before {
  background: #fff;
}

.paragraphs-container .sidebar .recursive-nav__sub-toggle {
  position: relative;
  width: 40px;
  height: 15px;
  flex-shrink: 0;
  margin: 18px 18px 20px;
}

.paragraphs-container .sidebar .recursive-nav__sub-toggle .selector {
  position: absolute;
  bottom: 6px;
  left: 12px;
  width: 15px;
  height: 3px;
  background: #0d3d4c;
}

.paragraphs-container .sidebar .recursive-nav__sub-toggle .selector::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
  transform-origin: center;
  transition: transform 0.3s;
  background: #0d3d4c;
}

.paragraphs-container .sidebar .recursive-nav__sub-toggle .selector.active::before {
  transform: rotate(0deg);
}

.paragraphs-container .sidebar .recursive-nav .recursive-nav {
  display: none;
  padding: 0 0 10px;
}

.paragraphs-container .sidebar .recursive-nav .recursive-nav a {
  font-size: 1.25rem;
  font-weight: 400;
  padding: 0.75em 4.7rem;
}

.paragraphs-container .sidebar .recursive-nav .recursive-nav a:hover,
.paragraphs-container .sidebar .recursive-nav .recursive-nav a:focus {
  font-weight: 700;
}

.paragraphs-container .sidebar .recursive-nav .recursive-nav__row.active a {
  font-weight: 700;
}

.paragraphs-container .sidebar + .page-body .paragraphs-wrapper {
  width: auto;
  margin: 0 100px 0 150px;
}

.paragraphs-container .sidebar + .page-body .accordion-wrapper {
  width: auto;
  margin: 50px 100px 0 150px;
}

.paragraphs-container .page-body {
  flex-grow: 1;
  width: calc(100vw - 400px);
  padding-bottom: 100px;
}

.paragraphs-container .page-body .paragraphs-wrapper {
  width: 1200px;
  max-width: 80vw;
  margin: 0 auto;
}

.paragraphs-container .page-body .accordion-wrapper {
  width: 1200px;
  max-width: 80vw;
  margin: 50px auto 0;
}

.paragraphs-container .page-body .accordion-wrapper .rf-paragraph {
  border-top: 3px solid #b5be34;
  margin-bottom: 0;
}

.paragraphs-container .page-body .accordion-wrapper .rf-paragraph .rf-paragraph-header {
  position: relative;
  padding: 1.5rem 75px 1.5rem 2rem;
  cursor: pointer;
}

.paragraphs-container .page-body .accordion-wrapper .rf-paragraph .rf-paragraph-header h2 {
  font-size: 1.5rem;
  font-size: 24px;
  font-size: 3vw;
  margin: 0;
}

@media (max-width: 666.6666666667px) {
  .paragraphs-container .page-body .accordion-wrapper .rf-paragraph .rf-paragraph-header h2 {
    font-size: 20px;
  }
}
@media (min-width: 800px) {
  .paragraphs-container .page-body .accordion-wrapper .rf-paragraph .rf-paragraph-header h2 {
    font-size: 24px;
  }
}
.paragraphs-container .page-body .accordion-wrapper .rf-paragraph .rf-paragraph-header::before,
.paragraphs-container .page-body .accordion-wrapper .rf-paragraph .rf-paragraph-header::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 35px;
  width: 20px;
  height: 4px;
  background: currentColor;
  transition: 0.3s;
}

.paragraphs-container .page-body .accordion-wrapper .rf-paragraph .rf-paragraph-header::after {
  transform: rotate(90deg);
  transform-origin: center;
}

.paragraphs-container .page-body .accordion-wrapper .rf-paragraph .rf-content-wrap {
  display: none;
  padding: 0 2rem 1rem;
}

.paragraphs-container .page-body .accordion-wrapper .rf-paragraph .image.rf-right {
  margin-right: 0;
}

.paragraphs-container .page-body .accordion-wrapper .rf-paragraph .image.rf-left {
  margin-left: 0;
}

.paragraphs-container .page-body .accordion-wrapper .rf-paragraph:nth-child(odd) .rf-paragraph-header {
  color: #5fb2cb;
}

.paragraphs-container .page-body .accordion-wrapper .rf-paragraph:nth-child(even) .rf-paragraph-header {
  color: #0d3d4c;
}

.paragraphs-container .page-body .accordion-wrapper .rf-paragraph:last-child {
  border-bottom: 3px solid #b5be34;
}

.paragraphs-container .page-body .accordion-wrapper .rf-paragraph.active .rf-paragraph-header::after {
  transform: rotate(0);
}

@media only screen and (max-width: 480px) {
  .paragraphs-container .page-body .accordion-wrapper .rf-paragraph .rf-paragraph-header {
    padding: 1.5rem 59px 1.5rem 1rem;
  }
  .paragraphs-container .page-body .accordion-wrapper .rf-paragraph .rf-paragraph-header::before,
.paragraphs-container .page-body .accordion-wrapper .rf-paragraph .rf-paragraph-header::after {
    right: 19px;
  }
  .paragraphs-container .page-body .accordion-wrapper .rf-paragraph .rf-content-wrap {
    padding: 0 1rem 1rem;
  }
}
@media only screen and (max-width: 1200px) {
  .paragraphs-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .paragraphs-container .sidebar {
    display: none;
  }
  .paragraphs-container .sidebar.protected-sidebar {
    display: flex;
    margin-bottom: 75px;
    max-width: 90%;
  }
  .paragraphs-container .sidebar.protected-sidebar h3 {
    display: none;
  }
  .paragraphs-container .sidebar.protected-sidebar .sidebar-column .mobile-title {
    display: block;
  }
  .paragraphs-container .sidebar.protected-sidebar .sidebar-column .mobile-title span {
    position: relative;
    display: block;
    background: #b5be34;
    padding: 0.75em 3.15rem;
    font-weight: 700;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .paragraphs-container .sidebar.protected-sidebar .sidebar-column .mobile-title .selector {
    position: absolute;
    top: 50%;
    right: 3rem;
    width: 15px;
    height: 3px;
    background: #0d3d4c;
  }
  .paragraphs-container .sidebar.protected-sidebar .sidebar-column .mobile-title .selector::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(90deg);
    transform-origin: center;
    transition: transform 0.3s;
    background: #0d3d4c;
  }
  .paragraphs-container .sidebar.protected-sidebar .sidebar-column .mobile-title .selector.active::before {
    transform: rotate(0deg);
  }
  .paragraphs-container .sidebar.protected-sidebar .sidebar-column > .recursive-nav {
    display: none;
    margin-bottom: 0;
    padding-top: 0;
  }
  .paragraphs-container .sidebar.protected-sidebar .sidebar-column > .recursive-nav::before {
    display: none;
  }
  .paragraphs-container .sidebar.protected-sidebar .recursive-nav__row.active::before {
    width: 100%;
    transform: inherit;
  }
  .paragraphs-container .sidebar + .page-body {
    flex-basis: 100%;
  }
  .paragraphs-container .sidebar + .page-body .paragraphs-wrapper,
.paragraphs-container .sidebar + .page-body .accordion-wrapper {
    margin-left: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .paragraphs-container .page-body,
.paragraphs-container .sidebar + .page-body {
    padding-bottom: 50px;
  }
  .paragraphs-container .page-body .paragraphs-wrapper,
.paragraphs-container .sidebar + .page-body .paragraphs-wrapper {
    margin: 0 10vw 0;
  }
  .paragraphs-container .page-body .accordion-wrapper,
.paragraphs-container .sidebar + .page-body .accordion-wrapper {
    margin: 30px 0 0;
    max-width: 100vw;
  }
  .paragraphs-container .page-body .accordion-wrapper .rf-paragraph-header,
.paragraphs-container .sidebar + .page-body .accordion-wrapper .rf-paragraph-header {
    padding: 1.5rem 10vw;
  }
  .paragraphs-container .page-body .accordion-wrapper .rf-content-wrap,
.paragraphs-container .sidebar + .page-body .accordion-wrapper .rf-content-wrap {
    padding: 0 10vw 1rem;
  }
}
.error-container {
  margin: 100px auto;
  width: 90vw;
  max-width: 900px;
  text-align: center;
}

.error-container h1 {
  font-size: 40px;
  font-size: 6.5vw;
  font-weight: 700;
}

@media (max-width: 492.3076923077px) {
  .error-container h1 {
    font-size: 32px;
  }
}
@media (min-width: 692.3076923077px) {
  .error-container h1 {
    font-size: 45px;
  }
}
.error-container p {
  font-size: 1.15rem;
  margin-top: 30px;
}

.error-container .slanted-button__row {
  justify-content: center;
  margin-top: 50px;
}

.landing-page__stripe {
  margin-top: 0px;
}

.landing-page__stripe.footer-promo {
  margin-top: 0;
}

.landing-page__stripe:last-child {
  margin-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .landing-page__stripe {
    margin-top: 10px;
  }
  .landing-page__stripe:last-child {
    margin-bottom: 10px;
  }
}
.stripes__header-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.stripes__header-row-content {
  /* flex: 1 0 62.5vw; */
  position: relative;
}

.stripes__header-row-content .banner__header {
  margin: -45px 9.25vw 50px;
  flex: 1 0 44vw;
}

.stripes__header-row-content .slanted-header__wrapper {
  max-width: 90%;
}

.stripes__header-row-content .textarea-content {
  width: 90vw;
  max-width: 900px;
  font-size: 1.25rem;
  margin: 0 auto;
  margin: 0 6.25vw;
}
@media only screen and (min-width: 1200px) {
  .stripes__header-row-content .textarea-content {
    width: 60vw;
  }
}
@media only screen and (min-width: 1440px) {
  .stripes__header-row-content .textarea-content {
    width: 90vw;
  }
}

.stripes__sidebar {
  position: absolute;
  background: #0d3d4c;
  padding: 1rem 100px 1rem 40px;
  flex: 0 0 33.5vw;
  box-sizing: border-box;
  width: 34%;
  transform: skew(-10deg);
  transform-origin: bottom;
  overflow: hidden;
  right: 0;
  top: 165px;
}

@media only screen and (max-width: 1200px) {
  .stripes__sidebar {
    display: none;
  }
}
.stripes__sidebar h2 {
  display: none;
}

.stripes__sidebar ul {
  position: relative;
  transform: skew(10deg);
  transform-origin: top;
  list-style: none;
  padding: 0;
}

.stripes__sidebar ul li {
  position: relative;
  margin: 10px 0;
}

.stripes__sidebar ul li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: calc(100% + 4px);
  right: calc(100% - 185px);
  background: #5fb2cb;
}

.stripes__sidebar ul li:last-child::before {
  display: none;
}

.stripes__sidebar ul li > ul.sw-menucode-list {
  display: none;
}

.stripes__sidebar a {
  display: block;
  color: #b5be34;
  font-weight: 700;
  transition: all 0.33s ease-in-out;
  font-size: 1.5rem;
  padding: 10px 1rem;
}
.stripes__sidebar a:hover {
  color: white;
}

@media only screen and (max-width: 1200px) {
  .stripes__header-row .stripes__sidebar {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .stripes__header-row-content .banner__header {
    margin-top: -25px;
  }
}
@media only screen and (max-width: 480px) {
  .stripes__header-row-content .textarea-content {
    font-size: 1.15rem;
  }
}
.grid-stripe,
.right-sidebar-content {
  margin-right: 6.25vw;
  margin-left: 6.25vw;
}

.grid-stripe h2 {
  margin-bottom: 50px;
}

.grid-stripe .stripe-subheader {
  margin: 0 auto 50px auto;
  font-size: 1.15rem;
  width: 100%;
  max-width: 1000px;
}

.grid-stripe__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.grid-stripe__grid.two-col .grid-stripe__item {
  flex: 1 0 47%;
}
@media screen and (max-width: 767px) {
  .grid-stripe__grid.two-col .grid-stripe__item {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

.grid-stripe__item {
  margin: 0 1.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  flex: 1 0 30%;
}

.grid-stripe__item .svg-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100px;
}

.grid-stripe__item .svg-wrapper svg {
  width: 140px;
  height: auto;
  margin: 0 auto -45px;
}

@media only screen and (max-width: 1200px) {
  .grid-stripe__item {
    flex: 1 0 47%;
  }
}
@media only screen and (max-width: 767px) {
  .grid-stripe__item {
    flex: 1 0 97%;
  }
}
.grid-stripe__item-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  color: #fff;
  background: #15667f;
  text-align: center;
  padding: 75px 2rem 0;
  flex-grow: 1;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 90px;
}

.grid-stripe__item-content::before {
  content: "";
  position: absolute;
  width: 101%;
  height: 100%;
  top: 0;
  left: 0;
  transform: skewY(-6.5deg);
  transform-origin: bottom left;
  background: #15667f;
}

.grid-stripe__item-content > * {
  position: relative;
}

.grid-stripe__item-content h3 {
  position: relative;
  margin-bottom: 35px;
  min-height: 65px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.grid-stripe__item-content h3::before {
  content: "";
  position: absolute;
  width: 124px;
  height: 3px;
  top: calc(100% + 1rem);
  left: calc(50% - 62px);
  background: #b5be34;
}

.grid-stripe__item-content h4 {
  color: white;
}

.grid-stripe__item-content p {
  margin-bottom: 50px;
  flex-grow: 1;
  color: #FFFFFF;
}

.grid-stripe__item-content .slanted-button {
  flex-grow: 1;
  margin: 0 10px -25px;
}

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

.flow-chart-stripe {
  margin-right: 5vw;
  margin-left: 5vw;
}

.flow-chart__content {
  width: 41.25vw;
  margin: 0 auto 90px;
}

.flow-chart__chart {
  display: flex;
  justify-content: space-between;
}

.flow-chart__section {
  position: relative;
  flex: 0 0 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 -30px;
}

.flow-chart__section svg {
  width: 115px;
  height: 115px;
  margin-bottom: 30px;
}

.flow-chart__section h3,
.flow-chart__section p {
  font-weight: 900;
  max-width: 100%;
}

.flow-chart__section h3 {
  color: #15667f;
  font-size: 35px;
  font-size: 4.5vw;
  margin-bottom: 2rem;
}

@media (max-width: 577.7777777778px) {
  .flow-chart__section h3 {
    font-size: 26px;
  }
}
@media (min-width: 777.7777777778px) {
  .flow-chart__section h3 {
    font-size: 35px;
  }
}
.flow-chart__section p {
  font-size: 1.4rem;
  line-height: 1.4em;
  margin-bottom: 1.5rem;
}

.flow-chart__section .description-secondary {
  color: #5fb2cb;
}

.flow-chart__section .curved-arrow {
  position: absolute;
  top: calc(100% + 10px);
  height: 50%;
  width: 210px;
  background-image: url("/sitefiles/2767/images/curved-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.flow-chart__section.one,
.flow-chart__section.three {
  transform: translateY(-100%) translateY(75px);
}

.flow-chart__section.one .curved-arrow {
  background-position: top right;
  transform: rotate(60deg);
  top: calc(100% - 20px);
  left: calc(15vw - 70px);
}

.flow-chart__section.three .curved-arrow {
  background-position: top left;
  transform: rotate(6deg);
  right: calc(20vw - 70px);
}

.flow-chart h2 {
  color: #b5be34;
  margin-bottom: 55px;
  padding: 0 3rem;
}

.flow-chart .textarea-content {
  font-size: 1.15rem;
}

@media screen and (max-width: 1400px) {
  .flow-chart h2 {
    padding: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .flow-chart__content {
    width: auto;
  }
  .flow-chart__chart {
    padding-bottom: 180px;
  }
  .flow-chart__section {
    flex-basis: 25%;
  }
  .flow-chart__section .curved-arrow {
    width: 180px;
  }
  .flow-chart__section.two {
    transform: translateY(200px);
  }
  .flow-chart__section.one,
.flow-chart__section.three {
    transform: inherit;
  }
  .flow-chart__section.one .curved-arrow {
    left: calc(100% - 230px);
  }
  .flow-chart__section.three .curved-arrow {
    right: calc(100% - 150px);
  }
}
@media only screen and (max-width: 964px) {
  .flow-chart__chart {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .flow-chart__section {
    flex: 0 1 auto;
    max-width: 400px;
    margin: 0 0 50px;
  }
  .flow-chart__section.two {
    transform: inherit;
  }
  .flow-chart__section .curved-arrow {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .flow-chart__content {
    margin-bottom: 50px;
  }
  .flow-chart__content h2 {
    margin-bottom: 30px;
  }
  .flow-chart__section p {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 480px) {
  .flow-chart__section {
    margin-bottom: 30px;
  }
}
.annual-report-stripe h2 {
  position: relative;
  z-index: 1;
  text-align: right;
  margin: 0 6.25vw;
}

.annual-report-stripe .annual-report__main {
  display: flex;
  justify-content: space-between;
  margin-top: -45px;
  color: #fff;
}

.annual-report-stripe .annual-report__main img {
  width: calc(100% - 80px);
  height: auto;
}

.annual-report-stripe .annual-report__main h4 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.annual-report-stripe .annual-report__main .no-wrap {
  flex-wrap: nowrap;
}

@media only screen and (max-width: 767px) {
  .annual-report-stripe .annual-report__main .no-wrap {
    flex-wrap: wrap;
  }
}
.annual-report-stripe .annual-report__main .line {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
}

.annual-report-stripe .annual-report__main .right-align {
  justify-content: flex-end;
}

.annual-report-stripe .annual-report__main .end-align {
  align-items: flex-end;
}

.annual-report-stripe .annual-report__main .center-align {
  align-items: center;
}

.annual-report-stripe .annual-report__left {
  position: relative;
  flex: 0 0 48.5vw;
  z-index: 1;
  padding-right: 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 1500px) {
  .annual-report-stripe .annual-report__left {
    padding-right: 30px;
  }
}
.annual-report-stripe .annual-report__left h4 {
  max-width: 650px;
}

.annual-report-stripe .annual-report__left-content {
  background: #15667f;
  padding: 3rem 2rem 1px 6.25vw;
  position: relative;
}

.annual-report-stripe .annual-report__left-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: skew(-10deg);
  transform-origin: bottom;
  background: #15667f;
}

.annual-report-stripe .annual-report__left .image-wrapper {
  transform: skew(-10deg);
  transform-origin: top;
  margin-right: 80px;
  overflow: hidden;
}

.annual-report-stripe .annual-report__left img {
  display: block;
  width: 100%;
  height: auto;
  transform: skew(10deg);
  transform-origin: top;
}

.annual-report-stripe .annual-report__left h3 {
  color: #15667f;
  margin: 75px 0 12px 6.25vw;
}

.annual-report-stripe .annual-report__left .small-text {
  font-size: 18px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1400px) {
  .annual-report-stripe .annual-report__left .small-text {
    line-height: 35px;
  }
  #mainnav li ul li a.current::before {
    content: none !important;
  }
}
@media (max-width: 960px) {
  .annual-report-stripe .annual-report__left .small-text {
    line-height: 24px;
  }
}
.annual-report-stripe .annual-report__left .large-number {
  display: flex;
  justify-content: center;
  font-size: 2vw;
  line-height: 1.4em;
  color: #b5be34;
  font-family: "Libre Baskerville", serif;
  margin-right: 0.6rem;
}

@media (min-width: 1400px) {
  .annual-report-stripe .annual-report__left .large-number {
    font-size: 30px;
  }
}
@media (max-width: 1200px) {
  .annual-report-stripe .annual-report__left .large-number {
    font-size: 24px;
  }
}
.annual-report-stripe .annual-report__left .large-number:last-child {
  margin: 0;
}

.annual-report-stripe .annual-report__left .dollar-sign {
  font-size: 22px;
  font-size: 1.5vw;
  margin-top: -0.25em;
}

@media (max-width: 1000px) {
  .annual-report-stripe .annual-report__left .dollar-sign {
    font-size: 15px;
  }
}
@media (min-width: 1466.6666666667px) {
  .annual-report-stripe .annual-report__left .dollar-sign {
    font-size: 22px;
  }
}
.annual-report-stripe .annual-report__left .plus-sign {
  font-size: 24px;
  font-size: 2vw;
  margin-top: -0.25em;
}

@media (max-width: 850px) {
  .annual-report-stripe .annual-report__left .plus-sign {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .annual-report-stripe .annual-report__left .plus-sign {
    font-size: 24px;
  }
}
.annual-report-stripe .annual-report__right-content {
  background: #b5be34;
  padding: 4rem 4rem 2rem 6rem;
  position: relative;
}

.annual-report-stripe .annual-report__right-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -25px;
  transform: skew(-10deg);
  transform-origin: top;
  background: #b5be34;
}

.annual-report-stripe .annual-report__right .image-wrapper {
  transform: skew(-10deg);
  transform-origin: bottom;
  margin: 0 0 -1px 55px;
  overflow: hidden;
}

.annual-report-stripe .annual-report__right img {
  display: block;
  width: 100%;
  height: auto;
  transform: skew(10deg);
  transform-origin: bottom;
}

.annual-report-stripe .annual-report__right svg {
  display: block;
  width: 100px;
  height: auto;
  margin-right: 20px;
}

.annual-report-stripe .annual-report__right .line-svg {
  display: flex;
}

@media only screen and (max-width: 767px) {
  .annual-report-stripe .annual-report__right .line-svg {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
}
.annual-report-stripe .annual-report__right .small-text {
  font-size: 1.3rem;
  font-weight: 900;
  margin-right: 20px;
  line-height: 3.8vw;
}

@media (min-width: 1500px) {
  .annual-report-stripe .annual-report__right .small-text {
    line-height: 50px;
  }
}
@media (max-width: 800px) {
  .annual-report-stripe .annual-report__right .small-text {
    line-height: 32px;
  }
}
.annual-report-stripe .annual-report__right .small-text:last-child {
  margin-right: 0;
}

.annual-report-stripe .annual-report__right .large-number {
  display: flex;
  justify-content: center;
  font-size: 3.5vw;
  color: #15667f;
  font-family: "Libre Baskerville", serif;
  margin-right: 20px;
}

@media (min-width: 1500px) {
  .annual-report-stripe .annual-report__right .large-number {
    font-size: 60px;
  }
}
@media (max-width: 915px) {
  .annual-report-stripe .annual-report__right .large-number {
    font-size: 32px;
  }
}
.annual-report-stripe .annual-report__right .large-number:last-child {
  margin-right: 0;
}

.annual-report-stripe .annual-report__right .dollar-sign {
  font-size: 35px;
  font-size: 2.5vw;
  margin-top: 0.1em;
}

@media (max-width: 800px) {
  .annual-report-stripe .annual-report__right .dollar-sign {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .annual-report-stripe .annual-report__right .dollar-sign {
    font-size: 35px;
  }
}
.annual-report-stripe .annual-report__right .plus-sign {
  font-size: 40px;
  font-size: 3vw;
  margin-left: 0.5rem;
}

@media (max-width: 866.6666666667px) {
  .annual-report-stripe .annual-report__right .plus-sign {
    font-size: 26px;
  }
}
@media (min-width: 1333.3333333333px) {
  .annual-report-stripe .annual-report__right .plus-sign {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .annual-report-stripe .annual-report__main {
    flex-direction: column;
  }
  .annual-report-stripe .annual-report__left {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .annual-report-stripe .annual-report__left-content {
    width: 85vw;
    max-width: 700px;
    box-sizing: border-box;
    z-index: 1;
  }
  .annual-report-stripe .annual-report__left .image-wrapper {
    width: 600px;
    max-width: 90vw;
  }
  .annual-report-stripe .annual-report__right {
    width: 100%;
    flex: 0 1 auto;
    display: flex;
    flex-direction: column-reverse;
    margin-top: -30px;
    box-sizing: border-box;
    z-index: 1;
  }
  .annual-report-stripe .annual-report__right-content {
    width: 80vw;
    max-width: 800px;
    align-self: flex-end;
    box-sizing: border-box;
  }
  .annual-report-stripe .annual-report__right-content::before {
    left: 0;
  }
  .annual-report-stripe .annual-report__right .image-wrapper {
    width: 800px;
    max-width: 90vw;
    align-self: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  .annual-report-stripe .annual-report__main h4 {
    margin-bottom: 30px;
    justify-content: center;
    text-align: center;
  }
  .annual-report-stripe .annual-report__main .line {
    justify-content: center;
    text-align: center;
  }
  .annual-report-stripe .annual-report__left-content {
    width: 100%;
    max-width: 100%;
    padding: 3rem 10vw 1px;
  }
  .annual-report-stripe .annual-report__right {
    margin-top: 0;
  }
  .annual-report-stripe .annual-report__right-content {
    width: 100%;
    max-width: 100%;
    padding: 4rem 10vw 1rem;
  }
  .annual-report-stripe .annual-report__right .small-text,
.annual-report-stripe .annual-report__right .large-number {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .annual-report-stripe .annual-report__left-content {
    padding: 2rem 5vw 1px;
  }
  .annual-report-stripe .annual-report__left .image-wrapper {
    width: 100%;
    max-width: 100%;
    transform: inherit;
    margin: 10px 0;
  }
  .annual-report-stripe .annual-report__left .image-wrapper img {
    transform: inherit;
  }
  .annual-report-stripe .annual-report__right-content {
    padding: 3rem 5vw 1rem;
  }
  .annual-report-stripe .annual-report__right .image-wrapper {
    width: 100%;
    max-width: 100%;
    transform: inherit;
    margin: 10px 0;
  }
  .annual-report-stripe .annual-report__right .image-wrapper img {
    transform: inherit;
  }
}
.photo-grid-stripe {
  margin-right: 5vw;
  margin-left: 5vw;
}

.photo-grid-stripe h2 {
  position: relative;
  z-index: 1;
  text-align: left;
}

.photo-grid-stripe .stripe-subheader {
  margin: 50px 2.25vw 85px;
  font-size: 1.15rem;
}

@media screen and (min-width: 1201px) {
  .photo-grid-stripe .grid-stripe__item:first-child {
    max-width: 99.66%;
    flex-basis: 96.66%;
    flex-direction: row-reverse;
    align-items: stretch;
    margin-bottom: 40px;
  }
  .photo-grid-stripe .grid-stripe__item:first-child svg {
    top: calc(50% - 75px);
    left: calc(100% - 75px);
    transform: inherit;
  }
  .photo-grid-stripe .grid-stripe__item:first-child .grid-stripe__item-image {
    height: auto;
    width: 50%;
  }
  .photo-grid-stripe .grid-stripe__item:first-child .grid-stripe__item-content {
    width: 50%;
    padding: 100px 115px 60px;
    margin-bottom: 0;
  }
  .photo-grid-stripe .grid-stripe__item:first-child .grid-stripe__item-content .slanted-button {
    margin-bottom: 0;
    flex-grow: 0;
    min-width: 350px;
  }
  .photo-grid-stripe .grid-stripe__item:first-child .grid-stripe__item-content .slanted-button__row {
    justify-content: center;
  }
}
.photo-grid-stripe .grid-stripe__item svg {
  position: absolute;
  bottom: calc(100% - 45px);
  left: 50%;
  transform: translateX(-50%);
  height: 145px;
  width: 145px;
  z-index: 1;
}

.photo-grid-stripe .grid-stripe__item-image {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
}

.photo-grid-stripe .grid-stripe__item-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 75px 2.4rem 0;
  margin-bottom: 65px;
}

.photo-grid-stripe .grid-stripe__item-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: skewY(-6.5deg);
  transform-origin: bottom left;
  background: #15667f;
}

.photo-grid-stripe .grid-stripe__item-content > * {
  position: relative;
}

.photo-grid-stripe .grid-stripe__item-content h3 {
  margin-bottom: 35px;
  color: #fff;
}

.photo-grid-stripe .grid-stripe__item-content h3::before {
  content: "";
  position: absolute;
  width: 124px;
  height: 3px;
  top: calc(100% + 1rem);
  left: calc(50% - 62px);
  background: #5fb2cb;
}

.photo-grid-stripe .grid-stripe__item-content p {
  font-size: 1.35rem;
  line-height: 1.5em;
  margin-bottom: 50px;
}

.photo-grid-stripe .grid-stripe__item-content .slanted-button {
  flex-grow: 1;
  margin: 0 10px -25px;
}

@media only screen and (max-width: 1200px) {
  .photo-grid-stripe h2 {
    margin: 0 6.25vw;
  }
  .photo-grid-stripe .grid-stripe__item svg {
    top: calc(50% - 75px);
    left: calc(100% - 75px);
    transform: inherit;
    display: none;
  }
  .photo-grid-stripe .grid-stripe__item .grid-stripe__item-content {
    flex: 0 0 50%;
    padding: 60px;
    margin-bottom: 0;
  }
  .photo-grid-stripe .grid-stripe__item .grid-stripe__item-content::before {
    transform: skewX(-6.5deg);
  }
  .photo-grid-stripe .grid-stripe__item .grid-stripe__item-content .slanted-button {
    margin-bottom: 0;
    flex-grow: 0;
    min-width: 350px;
  }
  .photo-grid-stripe .grid-stripe__item .grid-stripe__item-content .slanted-button__row {
    justify-content: center;
  }
}
@media only screen and (max-width: 964px) {
  .photo-grid-stripe .grid-stripe__item svg {
    display: none;
  }
  .photo-grid-stripe .grid-stripe__item .grid-stripe__item-content {
    padding-right: 6.25vw;
  }
  .photo-grid-stripe .grid-stripe__item .grid-stripe__item-content .slanted-button {
    min-width: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .photo-grid-stripe .grid-stripe__grid {
    justify-content: center;
    margin-top: 20px;
    row-gap: 40px;
  }
  .photo-grid-stripe .grid-stripe__item {
    flex-direction: column;
    flex-basis: 450px;
    max-width: 100%;
  }
  .photo-grid-stripe .grid-stripe__item .grid-stripe__item-image {
    height: 200px;
  }
  .photo-grid-stripe .grid-stripe__item .grid-stripe__item-content {
    flex: 0 1 auto;
  }
  .photo-grid-stripe .grid-stripe__item .grid-stripe__item-content p {
    font-size: 1.15rem;
  }
}
.newsletter-stripe h2 {
  margin: 0 6.25vw;
}

.newsletter-stripe .subheader {
  text-align: center;
  font-size: 1.15rem;
}

.newsletter-stripe__content {
  margin-top: -45px;
  padding: 85px 15vw 45px 15vw;
  background: #b5be34;
}

.newsletter-stripe__content form {
  margin: 0;
}

@media only screen and (max-width: 964px) {
  .newsletter-stripe__content {
    padding: 85px 5vw 45px 5vw;
  }
}
.newsletter-stripe .input-group {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .newsletter-stripe .input-group {
    flex-wrap: wrap;
  }
}
.newsletter-stripe .input-item {
  flex: 1 1 50%;
  max-width: 400px;
  min-width: 250px;
  margin: 20px 25px 0;
}

.newsletter-stripe .input-item.submit {
  position: relative;
  flex-grow: 0;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.newsletter-stripe .input-item label {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.newsletter-stripe .input-item .slanted-button__row {
  justify-content: center;
}

.newsletter-stripe .input-item button {
  cursor: pointer;
  border: 0;
  font-family: "Lato", sans-serif;
  margin-top: 50px;
  overflow: visible;
}

.newsletter-stripe .input-item button:focus {
  outline: none;
}

.newsletter-stripe .input-item > input {
  width: 100%;
  background-color: #fff;
  color: #0d3d4c;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  font-style: normal;
  padding: 0.5em;
  box-sizing: border-box;
  border-radius: 0px;
  border: 0;
  margin-top: 5px;
}

.newsletter-stripe .input-item > input:focus {
  outline-offset: -2px;
  outline: #5fb2cb auto 5px;
}

.newsletter-stripe .newsletter-loading {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.newsletter-stripe .slanted-button {
  background: transparent;
  border: 0;
  color: #fff;
  width: 350px;
  max-width: 100%;
  font-weight: 900;
}

.newsletter-stripe .slanted-button::before {
  background: #0d3d4c;
}

.newsletter-stripe .newsletter-form-message {
  display: none;
  margin: 50px auto;
  color: #0d3d4c;
  font-size: 1.5rem;
  text-align: center;
  padding: 0.5em;
}

.problem-solving-stripe h2 {
  margin: 0 6.25vw;
  max-width: 1200px;
}

.problem-solving-stripe .stripe-subheader {
  font-size: 1.15rem;
  margin: 2rem 6.25vw 50px;
  max-width: 1000px;
}

.problem-solving-stripe .list__item {
  display: flex;
  margin: 0 5vw 65px;
  min-height: 300px;
}

.problem-solving-stripe .list__item:nth-child(odd) .list__item-content.left::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: skew(-10deg);
  transform-origin: bottom;
  background: #15667f;
}

.problem-solving-stripe .list__item:nth-child(even) .list__item-content.left::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: skew(10deg);
  transform-origin: top;
  background: #15667f;
}

.problem-solving-stripe .list__item:last-child {
  margin-bottom: 0;
}

.problem-solving-stripe .list__item-content {
  position: relative;
  color: #fff;
  flex: 0 0 50%;
  box-sizing: border-box;
  text-align: center;
}

.problem-solving-stripe .list__item-content.left {
  display: flex;
  align-items: center;
  position: relative;
  background: #15667f;
  z-index: 1;
  flex: 0 0 50%;
}

.problem-solving-stripe .list__item-content.left .list__item-content-interior {
  max-width: calc(100% - 6.25vw - 100px);
  padding: 60px 100px 35px 6.25vw;
}

.problem-solving-stripe .list__item-content.left .header::before {
  background: #b5be34;
}

.problem-solving-stripe .list__item-content.right {
  background: #b5be34;
  flex: 0 0 50%;
}

.problem-solving-stripe .list__item-content.right .list__item-content-interior {
  max-width: calc(100% - 6.25vw - 140px);
  padding: 60px 6.25vw 35px 140px;
}

.problem-solving-stripe .list__item-content.right .header::before {
  background: #15667f;
}

.problem-solving-stripe .list__item-content .header {
  position: relative;
  font-size: 35px;
  font-size: 4.5vw;
  margin-bottom: 35px;
}

@media (max-width: 577.7777777778px) {
  .problem-solving-stripe .list__item-content .header {
    font-size: 26px;
  }
}
@media (min-width: 777.7777777778px) {
  .problem-solving-stripe .list__item-content .header {
    font-size: 35px;
  }
}
.problem-solving-stripe .list__item-content .header::before {
  content: "";
  position: absolute;
  width: 124px;
  height: 3px;
  top: calc(100% + 1rem);
  left: calc(50% - 62px);
}

.problem-solving-stripe .list__item-content .textarea-content {
  position: relative;
  font-size: 1.35rem;
  line-height: 1.5em;
}

.problem-solving-stripe .list__item-content svg {
  position: absolute;
  top: 50%;
  left: 100%;
  width: auto;
  height: 145px;
  transform: translateY(-50%) translateX(-50%);
}

@media only screen and (max-width: 1200px) {
  .problem-solving-stripe .list__item {
    margin: 0 0 20px;
  }
}
@media only screen and (max-width: 964px) {
  .problem-solving-stripe .list__item-content.left {
    flex-basis: 46.75%;
  }
  .problem-solving-stripe .list__item-content.left .list__item-content-interior {
    max-width: calc(100% - 12.5vw);
    padding-right: 6.25vw;
  }
  .problem-solving-stripe .list__item-content.right {
    flex: 1;
  }
  .problem-solving-stripe .list__item-content.right .list__item-content-interior {
    max-width: calc(100% - 15.5vw);
    padding-left: 9.25vw;
  }
  .problem-solving-stripe .list__item-content svg {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .problem-solving-stripe .list__item {
    flex-direction: column;
    width: 450px;
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .problem-solving-stripe .list__item:nth-child(odd) .list__item-content.left::before {
    transform: skewY(-6.5deg);
    transform-origin: top right;
  }
  .problem-solving-stripe .list__item:nth-child(even) .list__item-content.left::before {
    transform: skewY(6.5deg);
    transform-origin: top left;
  }
  .problem-solving-stripe .list__item-content.left {
    flex: 0 1 auto;
  }
  .problem-solving-stripe .list__item-content.right {
    flex: 0 1 auto;
    padding-top: 40px;
  }
  .problem-solving-stripe .list__item-content.right .list__item-content-interior {
    max-width: calc(100% - 12.5vw);
    padding-left: 6.25vw;
  }
}
.paragraph-stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3.25vw;
}

.paragraph-stripe.right {
  flex-direction: row-reverse;
}

.paragraph-stripe__image {
  flex: 1 1 50%;
  max-width: 600px;
}

.paragraph-stripe img {
  display: block;
  margin: 0 3vw;
  width: calc(100% - 6vw);
  height: auto;
}

.paragraph-stripe .textarea-content {
  flex: 1 1 50%;
  margin: 45px 3vw;
  font-size: 1.15rem;
}

@media only screen and (max-width: 964px) {
  .paragraph-stripe {
    flex-wrap: wrap;
  }
}
.tabs-page {
  margin-bottom: 100px;
}

.tab-view {
  width: 90vw;
  max-width: 1400px;
  margin: 0 auto 100px;
}

@media only screen and (max-width: 964px) {
  .tab-view {
    width: 100vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-view {
    display: none;
  }
}
.tab-row {
  display: flex;
  align-items: flex-end;
}

.tab-row .tab-item {
  position: relative;
  display: block;
  flex: 1 1 auto;
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  color: #15667f;
  text-align: center;
}

.tab-row .tab-item span {
  position: relative;
  z-index: 1;
}

.tab-row .tab-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skew(-10deg);
  transform-origin: center;
}

.tab-row .tab-item::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 101%;
  width: 3px;
  height: 26px;
  transform: skew(-10deg);
  background: #0d3d4c;
  transform-origin: top;
}

.tab-row .tab-item:first-child::before,
.tab-row .tab-item:last-child::before {
  transform-origin: bottom;
}

.tab-row .tab-item:last-child::after {
  left: inherit;
  right: 0;
  transform-origin: bottom;
}

.tab-row .tab-item.active {
  color: #fff;
}

.tab-row .tab-item.active::before {
  background: #15667f;
}

.tab-row .tab-item.active::after {
  display: none;
}

.tab-row .tab-item.orange {
  color: #e47425;
}

.tab-row .tab-item.orange.active {
  color: #fff;
}

.tab-row .tab-item.orange.active::before {
  background: #e47425;
}

.tab-row .tab-item.blue {
  color: #5fb2cb;
}

.tab-row .tab-item.blue.active {
  color: #fff;
}

.tab-row .tab-item.blue.active::before {
  background: #5fb2cb;
}

.tab-row .tab-item.green {
  color: #b5be34;
}

.tab-row .tab-item.green.active {
  color: #fff;
}

.tab-row .tab-item.green.active::before {
  background: #b5be34;
}

.tab-row .tab-item.ocean {
  color: #72a7a2;
}

.tab-row .tab-item.ocean.active {
  color: #fff;
}

.tab-row .tab-item.ocean.active::before {
  background: #72a7a2;
}

@media only screen and (max-width: 964px) {
  .tab-row .tab-item {
    font-size: 1.15rem;
  }
  .tab-row .tab-item:last-child::after {
    display: none;
  }
}
.tab-content {
  padding: 6vw 12.5vw;
  border-top: 3px solid #15667f;
  background: rgba(21, 102, 127, 0.25);
}

.tab-content.orange {
  border-color: #e47425;
  background: rgba(228, 116, 37, 0.25);
}

.tab-content.orange .tab-content__block h3 {
  color: #e47425;
}

.tab-content.blue {
  border-color: #5fb2cb;
  background: rgba(95, 178, 203, 0.25);
}

.tab-content.blue .tab-content__block h3 {
  color: #5fb2cb;
}

.tab-content.green {
  border-color: #b5be34;
  background: rgba(181, 190, 52, 0.25);
}

.tab-content.green .tab-content__block h3 {
  color: #b5be34;
}

.tab-content.ocean {
  border-color: #72a7a2;
  background: rgba(114, 167, 162, 0.25);
}

.tab-content.ocean .tab-content__block h3 {
  color: #72a7a2;
}

.tab-content__block {
  margin-top: 60px;
}

.tab-content__block:first-child {
  margin-top: 0;
}

.tab-content__block h3 {
  margin-bottom: 0.8em;
  color: #15667f;
}

.tab-content__block .textarea-content a {
  color: #15667f;
  font-weight: 900;
}

.tab-content__block .textarea-content p {
  margin-bottom: 1.75rem;
  line-height: 1.5em;
}

.tab-content__block .textarea-content ul,
.tab-content__block .textarea-content ol {
  padding-left: 30px;
  margin-bottom: 1.75rem;
  line-height: 1.5em;
}

.tab-content__block .textarea-content ul li,
.tab-content__block .textarea-content ol li {
  margin: 1.5rem 0;
}

.tabs-page .tab-content {
  display: none;
}

.tabs-page .tab-content.active {
  display: block;
}

.accordion-view {
  display: none;
}

@media only screen and (max-width: 767px) {
  .accordion-view {
    display: block;
  }
}
.accordion-item__header {
  position: relative;
  padding: 1.5rem 75px 1.5rem 10vw;
  margin: 0;
  border-top: 3px solid #b5be34;
  cursor: pointer;
}

.accordion-item__header::before,
.accordion-item__header::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 35px;
  width: 20px;
  height: 4px;
  background: currentColor;
  transition: 0.3s;
}

.accordion-item__header::after {
  transform: rotate(90deg);
  transform-origin: center;
}

.accordion-item__content {
  display: none;
  padding: 2rem 10vw;
}

.accordion-item__content h4 {
  font-size: 24px;
  font-size: 3vw;
}

@media (max-width: 666.6666666667px) {
  .accordion-item__content h4 {
    font-size: 20px;
  }
}
@media (min-width: 800px) {
  .accordion-item__content h4 {
    font-size: 24px;
  }
}
.accordion-item__content .textarea-content {
  font-size: 1.15rem;
}

.accordion-item__content .textarea-content a {
  color: #15667f;
  font-weight: 900;
}

.accordion-item__content .textarea-content p {
  margin-bottom: 1.75rem;
  line-height: 1.5em;
}

.accordion-item__content .textarea-content ul,
.accordion-item__content .textarea-content ol {
  padding-left: 30px;
  margin-bottom: 1.75rem;
  line-height: 1.5em;
}

.accordion-item.blue .accordion-item__header {
  color: #5fb2cb;
}

.accordion-item.blue .accordion-item__content {
  background: rgba(95, 178, 203, 0.25);
}

.accordion-item.blue .accordion-item__content h4 {
  color: #5fb2cb;
}

.accordion-item.teal .accordion-item__header {
  color: #15667f;
}

.accordion-item.teal .accordion-item__content {
  background: rgba(21, 102, 127, 0.25);
}

.accordion-item.teal .accordion-item__content h4 {
  color: #15667f;
}

.accordion-item:last-child {
  border-bottom: 3px solid #b5be34;
}

.accordion-item.active .accordion-item__header::after {
  transform: rotate(0);
}

.timeline-page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  overflow: hidden;
}

.timeline-page .timeline-content {
  flex-grow: 1;
}

.timeline-banner {
  background: #b5be34;
}

.timeline-banner .banner-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 14.5vw;
}

.timeline-banner .banner-title h1 {
  width: 50vw;
  padding: 2rem 50px;
  font-size: 40px;
  font-size: 4.25vw;
  color: #fff;
  margin-bottom: 30px;
}

@media (max-width: 752.9411764706px) {
  .timeline-banner .banner-title h1 {
    font-size: 32px;
  }
}
@media (min-width: 1411.7647058824px) {
  .timeline-banner .banner-title h1 {
    font-size: 60px;
  }
}
.timeline-banner .banner-title .title-wrapper {
  flex-grow: 1;
}

.timeline-banner .banner-title .slanted-button {
  font-size: 1.25rem;
  padding: 1.15rem 50px 1.15rem 2rem;
  color: #fff;
}

.timeline-banner .banner-title .slanted-button::before {
  background: #15667f;
  transform: skew(10deg);
  transform-origin: top;
}

.timeline-banner .banner-title .slanted-button__row {
  max-width: 31.25%;
}

.timeline-banner .banner-title .slanted-button .bracket {
  position: absolute;
  width: 1em;
  height: 1em;
  top: calc(100% - 1em);
  left: calc(100% + 15px);
}

.timeline-banner .banner-title .slanted-button .bracket::before,
.timeline-banner .banner-title .slanted-button .bracket::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 10px;
  height: 3px;
  background: #fff;
}

.timeline-banner .banner-title .slanted-button .bracket::before {
  transform: rotate(45deg);
  transform-origin: right bottom;
}

.timeline-banner .banner-title .slanted-button .bracket::after {
  transform: rotate(-45deg);
  transform-origin: right top;
}

.timeline-banner .banner-title svg {
  position: absolute;
  bottom: 25px;
  right: -2.25vw;
  width: 81.5vw;
  height: 11.6vw;
}

.timeline-banner .banner-title svg .st0 {
  fill: #b6bf00;
}

.timeline-banner .banner-title svg .st1 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: none;
  stroke: #ffffff;
  stroke-width: 17;
  stroke-miterlimit: 10;
}

.timeline-banner .banner-title svg .st2 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 17;
  stroke-miterlimit: 10;
}

.timeline-banner .banner-title svg .st3 {
  fill: #ffffff;
}

.timeline-banner .banner-title svg .st4 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: none;
  stroke: #ffffff;
  stroke-width: 15;
  stroke-miterlimit: 10;
}

.timeline-banner .banner-title svg .st5 {
  fill: none;
}

.timeline-banner .banner-title svg .st6 {
  fill: #16667f;
}

.timeline-banner .banner-title svg .st7 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 15;
  stroke-miterlimit: 10;
}

.timeline-banner .banner-title svg .st8 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: none;
  stroke: #ffffff;
  stroke-width: 13;
  stroke-miterlimit: 10;
}

.timeline-banner .banner-title svg .st9 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 13;
  stroke-miterlimit: 10;
}

.timeline-banner .banner-title svg .st10 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 14;
  stroke-miterlimit: 10;
}

.timeline-banner .banner-title__subheader {
  width: 63%;
  font-size: 1.3rem;
  padding: 0 50px 70px;
  min-height: 45px;
}

.timeline-banner .banner-title__subheader a {
  color: #15667f;
}

@media only screen and (max-width: 1200px) {
  .timeline-banner .banner-title {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .timeline-banner .banner-title h1 {
    width: auto;
    text-align: center;
    margin-bottom: 10px;
  }
  .timeline-banner .banner-title .slanted-button__row {
    max-width: 100vw;
    justify-content: flex-end;
    width: 100vw;
  }
  .timeline-banner .banner-title svg {
    position: relative;
    width: 100vw;
    height: 14.25vw;
    right: 0;
  }
  .timeline-banner .banner-title__subheader {
    width: auto;
    padding-bottom: 30px;
    min-height: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .timeline-banner .banner-title .slanted-button {
    font-size: 1.15rem;
  }
  .timeline-banner .banner-title svg {
    width: 138vw;
    height: 19.7vw;
    right: 21vw;
  }
}
@media only screen and (max-width: 480px) {
  .timeline-banner .banner-title .slanted-button {
    width: 100vw;
    background: #15667f;
  }
  .timeline-banner .banner-title h1 {
    padding: 2rem;
    font-size: 25px;
  }
  .timeline-banner .banner-title__subheader {
    padding: 0 2rem 2rem;
  }
}
@media screen and (max-width: 360px) {
  .timeline-banner .banner-title h1 {
    font-size: 22px;
  }
}
.timeline-promos {
  display: flex;
  justify-content: space-between;
}

.timeline-promos__item {
  position: relative;
  background: #5fb2cb;
  overflow: hidden;
  transform: skew(-10deg);
}

.timeline-promos__item-interior {
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  transform-origin: top;
  transform: skew(10deg);
}

.timeline-promos__item-interior .slanted-button {
  min-width: 280px;
}

.timeline-promos__item-interior .slanted-button::before {
  transform-origin: bottom;
}

.timeline-promos .news-item__content {
  position: relative;
  width: calc(100% - 120px);
}

.timeline-promos .news-item__content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150%;
  height: 100%;
  background: rgba(21, 102, 127, 0.9);
  transform: skew(-10deg);
  transform-origin: bottom;
}

.timeline-promos .news-item__content h3 {
  position: relative;
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  margin: 0;
}

.timeline-promos .news-item__content .slanted-button {
  font-size: 1.15rem;
  font-weight: 700;
  margin-right: -50px;
}

.timeline-promos .news-item__content .slanted-button__row {
  justify-content: flex-end;
}

.timeline-promos .promo-item .timeline-promos__item-interior {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transform-origin: bottom;
}

.timeline-promos .promo-item h3 {
  width: 100%;
  box-sizing: border-box;
  font-size: 35px;
  font-size: 2.25vw;
  margin: 0;
}

@media (max-width: 1155.5555555556px) {
  .timeline-promos .promo-item h3 {
    font-size: 26px;
  }
}
@media (min-width: 1555.5555555556px) {
  .timeline-promos .promo-item h3 {
    font-size: 35px;
  }
}
.timeline-promos .promo-item p {
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.4em;
  flex-grow: 1;
}

.timeline-promos .promo-item p:last-child {
  margin-bottom: 65px;
}

.timeline-promos .promo-item .slanted-button:last-child {
  margin-bottom: 65px;
}

.timeline-promos .promo-item .slanted-button__row {
  align-self: flex-end;
}

@media screen and (min-width: 1201px) {
  .timeline-promos {
    margin-top: -115px;
  }
  .timeline-promos__item {
    flex: 0 1 34%;
    height: 470px;
    margin: 0 10px;
  }
  .timeline-promos__item:first-child {
    margin-left: 0;
    margin-right: -25px;
    transform-origin: top;
  }
  .timeline-promos__item.news-item:nth-child(2) .timeline-promos__item-interior {
    width: calc(100% + 75px);
    margin-left: -73px;
  }
  .timeline-promos__item:nth-child(2) .news-item__content h3 {
    padding-left: 3rem;
  }
  .timeline-promos__item:last-child {
    margin-right: 0;
    margin-left: -25px;
    transform-origin: bottom;
  }
  .timeline-promos .news-item {
    height: 400px;
    margin-top: 70px;
  }
  .timeline-promos .promo-item h3 {
    padding: 50px 25px 15px 130px;
  }
  .timeline-promos .promo-item p {
    padding: 0 25px 15px 130px;
    max-width: 360px;
  }
}
@media only screen and (max-width: 1200px) {
  .timeline-promos {
    flex-direction: column;
  }
  .timeline-promos__item {
    width: 600px;
    height: 400px;
    transform-origin: top;
    margin-top: 1rem;
  }
  .timeline-promos__item:nth-child(2) {
    align-self: flex-end;
    transform: skew(10deg);
  }
  .timeline-promos__item:nth-child(2) .timeline-promos__item-interior {
    transform: skew(-10deg);
  }
  .timeline-promos__item:nth-child(2) .timeline-promos__item-interior .news-item__content {
    margin-left: 60px;
  }
  .timeline-promos__item:nth-child(2) .timeline-promos__item-interior .news-item__content .slanted-button {
    margin-right: -60px;
  }
  .timeline-promos__item.promo-item:nth-child(2) .timeline-promos__item-interior {
    padding: 0 0 0 75px;
  }
  .timeline-promos__item:last-child .timeline-promos__item-interior {
    transform-origin: top;
  }
  .timeline-promos .news-item__content h3 {
    font-size: 1.3rem;
  }
  .timeline-promos .promo-item .timeline-promos__item-interior {
    padding-right: 50px;
    box-sizing: border-box;
  }
  .timeline-promos .promo-item h3 {
    padding: 30px;
  }
  .timeline-promos .promo-item p {
    flex-grow: 1;
    padding: 0 30px 30px 30px;
  }
}
@media screen and (max-width: 650px) {
  .timeline-promos__item {
    transform: inherit;
    width: 100%;
    height: auto;
  }
  .timeline-promos__item:nth-child(2) {
    align-self: flex-start;
    transform: inherit;
  }
  .timeline-promos__item:nth-child(2) .timeline-promos__item-interior {
    transform: inherit;
  }
  .timeline-promos__item:nth-child(2) .timeline-promos__item-interior .news-item__content {
    margin-left: 0;
  }
  .timeline-promos__item:nth-child(2) .timeline-promos__item-interior .news-item__content .slanted-button {
    margin-right: -50px;
  }
  .timeline-promos__item.promo-item:nth-child(2) .timeline-promos__item-interior {
    padding: 0;
  }
  .timeline-promos__item-interior {
    min-height: 66.7vw;
    transform: inherit;
  }
  .timeline-promos__item-interior .news-item__content {
    width: calc(100% - 50px);
  }
  .timeline-promos .promo-item .timeline-promos__item-interior {
    padding: 0;
    text-align: center;
    min-height: auto;
  }
  .timeline-promos .promo-item .timeline-promos__item-interior .slanted-button {
    margin-bottom: 35px;
  }
  .timeline-promos .promo-item .timeline-promos__item-interior .slanted-button__row {
    width: 100%;
    justify-content: center;
  }
}
.banner-subheader {
  display: flex;
  align-items: center;
  padding: 0 25px;
  margin-bottom: 20px;
}

.banner-subheader__image {
  flex: 1 0 45%;
}

.banner-subheader__image img {
  display: block;
  height: auto;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.banner-subheader h2 {
  color: #15667f;
  font-size: 35px;
  font-size: 4.5vw;
}

@media (max-width: 577.7777777778px) {
  .banner-subheader h2 {
    font-size: 26px;
  }
}
@media (min-width: 777.7777777778px) {
  .banner-subheader h2 {
    font-size: 35px;
  }
}
.banner-subheader__content {
  margin: 25px;
}

.banner-subheader__content .textarea-content {
  font-size: 1.25rem;
}

.banner-subheader.mobile-only {
  display: none;
  margin: 25px 0 0;
}

@media screen and (max-width: 1400px) {
  .banner-subheader {
    display: none;
  }
  .banner-subheader.mobile-only {
    display: flex;
  }
}
@media only screen and (max-width: 964px) {
  .banner-subheader {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .banner-subheader {
    padding: 0;
  }
}
.timeline-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100vw;
  margin-top: 50px;
}

.timeline-content__left {
  flex: 0 0 calc(100vw - 53.4vh);
  max-width: calc(100vw - 53.4vh);
  min-width: calc(100vw - 53.4vh);
  position: relative;
  z-index: 5;
}

.timeline-content .button-row {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 30px;
  z-index: 5;
  box-sizing: border-box;
  background: #fff;
  transition: 0.3s;
}

.timeline-content .button-row a {
  display: block;
  position: relative;
  font-size: 1rem;
  color: #0d3d4c;
  padding: 0.5rem 1rem;
  margin: 0 5px 10px;
  transition: 0s;
  text-align: center;
  cursor: pointer;
}

.timeline-content .button-row a span {
  position: relative;
}

.timeline-content .button-row a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: skew(-10deg);
}

.timeline-content .button-row a:hover,
.timeline-content .button-row a:focus,
.timeline-content .button-row a.active {
  color: #fff;
}

.timeline-content .button-row a:hover::before,
.timeline-content .button-row a:focus::before,
.timeline-content .button-row a.active::before {
  background: #0d3d4c;
}

.timeline-content .button-row a.blue:hover,
.timeline-content .button-row a.blue:focus,
.timeline-content .button-row a.active.blue {
  color: #fff;
}

.timeline-content .button-row a.blue:hover::before,
.timeline-content .button-row a.blue:focus::before,
.timeline-content .button-row a.active.blue::before {
  background: #5fb2cb;
}

.timeline-content .button-row a.orange:hover,
.timeline-content .button-row a.orange:focus,
.timeline-content .button-row a.active.orange {
  color: #fff;
}

.timeline-content .button-row a.orange:hover::before,
.timeline-content .button-row a.orange:focus::before,
.timeline-content .button-row a.active.orange::before {
  background: #e47425;
}

.timeline-content .button-row a.green:hover,
.timeline-content .button-row a.green:focus,
.timeline-content .button-row a.active.green {
  color: #fff;
}

.timeline-content .button-row a.green:hover::before,
.timeline-content .button-row a.green:focus::before,
.timeline-content .button-row a.active.green::before {
  background: #b5be34;
}

.timeline-content .button-row a.blue {
  color: #5fb2cb;
}

.timeline-content .button-row a.orange {
  color: #e47425;
}

.timeline-content .button-row a.green {
  color: #b5be34;
}

@media only screen and (max-width: 964px) {
  .timeline-content .button-row {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
  }
}
.timeline-content .filter-bar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
}

.timeline-content .filter-bar.fixed::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 15px;
  top: 100%;
  left: 0;
  background: linear-gradient(rgba(13, 61, 76, 0.28), rgba(13, 61, 76, 0) 75%);
}

.timeline-content .filter-bar__moveable {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: #fff;
}

.timeline-content .filter-bar__wrapper {
  position: relative;
  width: calc(100vw - 53.4vh);
  z-index: 6;
}

.timeline-content .filter-bar__wrapper.active .mobile-bar-title::after {
  transform: rotate(0);
}

.timeline-content .filter-bar__wrapper.active .button-row {
  max-height: 100vw;
  overflow: scroll;
  padding: 20px 30px;
}

.timeline-content .filter-bar .mobile-bar-title {
  position: relative;
  display: none;
  padding: 1.5rem 75px 1.5rem 2rem;
  font-size: 24px;
  font-size: 3vw;
}

@media (max-width: 666.6666666667px) {
  .timeline-content .filter-bar .mobile-bar-title {
    font-size: 20px;
  }
}
@media (min-width: 800px) {
  .timeline-content .filter-bar .mobile-bar-title {
    font-size: 24px;
  }
}
.timeline-content .filter-bar .mobile-bar-title::before,
.timeline-content .filter-bar .mobile-bar-title::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 35px;
  width: 20px;
  height: 4px;
  background: currentColor;
  transition: 0.3s;
}

.timeline-content .filter-bar .mobile-bar-title::after {
  transform: rotate(90deg);
  transform-origin: center;
}

.timeline-content__right {
  position: relative;
  flex: 0 0 53.4vh;
  overflow: hidden;
  z-index: 6;
}

.timeline-content__right svg {
  width: 100vh;
  height: 100vh;
}

@media screen and (max-width: 1400px) {
  .timeline-content {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .timeline-content {
    flex-wrap: wrap;
  }
  .timeline-content__left {
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
  }
  .timeline-content__right {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 75px);
    margin-top: 75px;
    opacity: 0.075;
    z-index: 1;
  }
  .timeline-content__right .timeline-tree {
    width: 100vh;
    height: 100vh;
    right: -46.6vh;
  }
  .timeline-content__right .timeline-tree.fixed {
    top: 0;
  }
  .timeline-content .filter-bar__wrapper {
    width: 100vw;
  }
}
@media only screen and (max-width: 964px) {
  .timeline-content .filter-bar .mobile-bar-title {
    display: block;
  }
}
.timeline-list {
  overflow: hidden;
  min-height: 100vh;
}

.timeline-list .decade-header {
  display: block;
  position: relative;
  width: 285px;
  padding: 0.75rem 50px;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.5rem;
}

.timeline-list .decade-header span {
  position: relative;
  z-index: 1;
}

.timeline-list .decade-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150%;
  height: 100%;
  background: #15667f;
  transform: skew(-10deg);
  transform-origin: bottom;
}

.timeline-list .decade-body {
  margin-left: 60px;
}

.timeline-list .year {
  width: 100%;
  max-width: 780px;
  box-sizing: border-box;
  padding: 1px 40px;
  border-left: 3px solid #15667f;
}

.timeline-list .year-header {
  font-size: 48px;
  font-size: 3.75vw;
  color: #15667f;
  margin-bottom: 15px;
}

@media (max-width: 933.3333333333px) {
  .timeline-list .year-header {
    font-size: 35px;
  }
}
@media (min-width: 1280px) {
  .timeline-list .year-header {
    font-size: 48px;
  }
}
.timeline-list .year:first-child .year-header {
  padding-top: 45px;
}

.timeline-list .year:last-child .event:last-child {
  padding-bottom: 75px;
}

.timeline-list .event {
  width: 100%;
  font-size: 1.15rem;
  padding-bottom: 45px;
  display: flex;
  flex-direction: column;
}

.timeline-list .event-description {
  width: 100%;
  position: relative;
  color: #15667f;
  max-width: 615px;
}

.timeline-list .event-description::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -53px;
  width: 25px;
  height: 25px;
  background: #15667f;
  border-radius: 25px;
}

.timeline-list .event-description a {
  color: #5fb2cb;
  font-weight: 700;
  padding-bottom: 0.3em;
  background-image: linear-gradient(90deg, currentColor 0%, currentColor 100%);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 80%;
  transition: 0.3s;
}

.timeline-list .event-description a:hover,
.timeline-list .event-description a:focus {
  background-size: 100% 2px;
}

.timeline-list .event-image {
  display: block;
  margin: 60px 0 25px 0px;
  width: 100%;
  max-width: 615px;
  height: auto;
}

.timeline-list .event.blue .event-description::before {
  background: #5fb2cb;
}

.timeline-list .event.blue .event-description a {
  color: #5fb2cb;
}

.timeline-list .event.orange .event-description::before {
  background: #e47425;
}

.timeline-list .event.orange .event-description a {
  color: #e47425;
}

.timeline-list .event.green .event-description::before {
  background: #b5be34;
}

.timeline-list .event.green .event-description a {
  color: #b5be34;
}

.timeline-list .stories-of-impact {
  position: relative;
  background: #5fb2cb;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.timeline-list .stories-of-impact::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  background: #fff;
  transform: skew(-10deg);
  transform-origin: top;
  z-index: 2;
}

.timeline-list .stories-of-impact__wrapper {
  position: relative;
  align-self: flex-end;
  width: 100%;
  max-width: 600px;
  height: 415px;
  margin: 60px 0 25px;
}

.timeline-list .stories-of-impact__header {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotate(-90deg);
  transform-origin: bottom left;
  font-size: 2.175rem;
  color: #15667f;
  margin: 0;
  line-height: 0.7em;
}

.timeline-list .stories-of-impact__image {
  display: none;
  width: 100%;
  height: auto;
}

.timeline-list .stories-of-impact__content {
  position: relative;
  width: calc(100% - 120px);
}

.timeline-list .stories-of-impact__content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150%;
  height: 100%;
  background: rgba(21, 102, 127, 0.9);
  transform: skew(-10deg);
  transform-origin: bottom;
}

.timeline-list .stories-of-impact__content h3 {
  position: relative;
  color: #fff;
  padding: 1rem 0 1rem 1.5rem;
  font-size: 1.5rem;
  margin: 0;
}

.timeline-list .stories-of-impact__content .slanted-button {
  font-size: 1.15rem;
  font-weight: 700;
}

.timeline-list .stories-of-impact__content .slanted-button__row {
  justify-content: flex-end;
  margin-right: -60px;
}

@media screen and (max-width: 1350px) {
  .timeline-list .stories-of-impact__wrapper {
    margin-left: 30px;
  }
}
.timeline-list .decade:last-child .year:last-child .event:last-child {
  position: relative;
  padding-bottom: 33vh;
}

.timeline-list .decade:last-child .year:last-child .event:last-child::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -44px;
  height: calc(100% + 115px);
  width: 5px;
  background: #fff;
}

@media only screen and (max-width: 1200px) {
  .timeline-list .decade:last-child .year:last-child .event:last-child {
    padding-bottom: 45px;
  }
}
@media only screen and (max-width: 1200px) {
  .timeline-list .stories-of-impact {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 75px) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 75px) 100%, 0 100%);
  }
  .timeline-list .stories-of-impact::before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .timeline-list .decade-body {
    margin-left: 0;
  }
  .timeline-list .year {
    max-width: 100%;
  }
  .timeline-list .event-image {
    margin: 40px auto 50px;
  }
  .timeline-list .stories-of-impact {
    -webkit-clip-path: inherit;
            clip-path: inherit;
  }
  .timeline-list .stories-of-impact__wrapper {
    width: 100%;
    height: auto;
    margin-left: 0;
    align-self: center;
  }
  .timeline-list .stories-of-impact__header {
    display: none;
  }
  .timeline-list .stories-of-impact__image {
    display: block;
  }
  .timeline-list .stories-of-impact__content {
    margin-top: 0;
    width: 100%;
    background: #15667f;
  }
  .timeline-list .stories-of-impact__content::before {
    display: none;
  }
  .timeline-list .stories-of-impact__content h3 {
    font-size: 1.3rem;
    text-align: center;
    padding: 2rem 5%;
  }
  .timeline-list .stories-of-impact__content .slanted-button {
    max-width: 90%;
  }
  .timeline-list .stories-of-impact__content .slanted-button__row {
    justify-content: center;
    margin: 0 0 30px 0;
  }
}
.timeline-tree {
  position: absolute;
  top: 0;
  right: -46.6vh;
}

.timeline-tree.fixed {
  position: fixed;
  top: 0;
}

.timeline-tree.bottomed-out {
  top: auto;
  bottom: 0;
}

.timeline-tree .st0 {
  fill: #0f414c;
}

.timeline-tree .st1 {
  fill: #ffffff;
}

.timeline-tree .st2 {
  fill: #e1e1e1;
}

.timeline-tree .st3 {
  fill: none;
  stroke: #e1e1e1;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

.timeline-tree .st4 {
  fill: #15667f;
}

.timeline-tree .st5 {
  fill: none;
  stroke: #15667f;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.timeline-tree .st6 {
  fill: #5fb2cb;
}

.timeline-tree .st7 {
  fill: #b5be34;
}

.timeline-tree .st8 {
  fill: #e47425;
}

.timeline-tree .active-event {
  transform: scale(1.5);
  transition: 0.5s;
}

.timeline-tree .inactive-event {
  transform: scale(1);
  transition: 0.5s;
}

.timeline-tree .tree-ring {
  cursor: pointer;
}

.timeline-tree .tree-ring .st6,
.timeline-tree .tree-ring .st7,
.timeline-tree .tree-ring .st8 {
  fill: #15667f;
  transition: fill 0.5s;
}

.timeline-tree .tree-ring.active .st6,
.timeline-tree .tree-ring:hover .st6 {
  fill: #5fb2cb;
}

.timeline-tree .tree-ring.active .st7,
.timeline-tree .tree-ring:hover .st7 {
  fill: #b5be34;
}

.timeline-tree .tree-ring.active .st8,
.timeline-tree .tree-ring:hover .st8 {
  fill: #e47425;
}

/*Newsletter Form*/
.newsletter-signup-form {
  background: #b5be34;
  display: flex;
  margin-top: 140px;
}

.newsletter-signup-form .swform {
  width: 70%;
  margin: 0 auto 50px;
}

.newsletter-signup-form .swformfield {
  width: 30%;
}

.newsletter-signup-form .swformfield .swformfield__control {
  display: flex;
  border: none;
  margin-left: 0;
}

.newsletter-signup-form .swformfield .swformfield__label {
  display: block;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.newsletter-signup-form .swform .swformsection:nth-child(1) .swformsection__header {
  text-transform: uppercase;
  margin: 0 6.25vw;
  font-family: "Libre Baskerville", serif;
  background-image: linear-gradient(90deg, rgba(13, 61, 76, 0.9) 0%, rgba(13, 61, 76, 0.9) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  color: #fff;
  line-height: 1.35em;
  display: inline;
  padding: 0 0.5em;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 65%;
  transform: skew(-10deg);
  margin-top: -50px;
}

@media only screen and (max-width: 767px) {
  .newsletter-signup-form .swform .swformsection:nth-child(1) .swformsection__header {
    width: 80%;
    margin-top: -80px;
  }
  .newsletter-signup-form .swformfield {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1389px) {
  .newsletter-signup-form .swform .swformsection:nth-child(1) .swformsection__header {
    width: 80%;
    margin-top: -110px;
  }
  .newsletter-signup-form .swformfield {
    width: 40%;
  }
}
@media only screen and (min-width: 1390px) {
  .newsletter-signup-form .swform .swformsection:nth-child(1) .swformsection__header {
    width: 85%;
    margin-top: -45px;
  }
}
.newsletter-signup-form .swform .swformsection:nth-child(1) .swformsection__header > div {
  transform: skew(10deg);
}

.newsletter-signup-form .swform .swformsection:nth-child(2) {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}

.newsletter-signup-form .swform .swformsection:nth-child(2) .swformsection__header {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.4em;
  margin-bottom: 1.5rem;
  padding-top: 5rem;
}

.newsletter-signup-form .swformsubmit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-top: 3.5rem;
}

.newsletter-signup-form .swformsubmit button.swformsubmit__btn {
  /* background-color: #0d3d4c; */
  color: rgba(255, 255, 255, 0.8);
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5em 5em 0.5em 5em;
  border: none;
  position: relative;
  cursor: pointer;
}

.newsletter-signup-form .swformsubmit button.swformsubmit__btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d3d4c;
  transform: skew(-10deg);
  transform-origin: center;
  z-index: -1;
}

/* Video */
.fluid-width-video-wrapper {
  width: 100%;
  position: relative;
  padding: 0;
}

.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper object,
.fluid-width-video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*Contact page - form*/
.formmodule {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  color: #0d3d4c;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  box-sizing: border-box;
  width: 100%;
}

.swform {
  width: 900px;
  max-width: 90vw;
  margin: 0 auto 100px;
}

.swformsection__header {
  font-size: 1rem;
  margin: 0 0 12px 8px;
  font-weight: normal;
}

.swformfield__control {
  width: 100%;
  border: 2px solid #15667f;
  background: #fff;
  color: #15667f;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  padding: 0.5rem;
  box-sizing: border-box;
  margin: 0.5rem;
}

.swformfield__control input {
  color: #15667f;
}


.swform__password-toggle-button {
  display: none !important;
}

.swformfield__label {
  display: none;
}

.swformsubmit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5em;
  margin-top: 5em;
}

.swformsubmit button.swformsubmit__btn {
  background-color: transparent;
  color: #0d3d4c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5em 5em 0.5em 5em;
  border: none;
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.swformsubmit button.swformsubmit__btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #b5be34;
  transform: skew(-10deg);
  transform-origin: center;
  z-index: -1;
}

/* _sidecar.scss */
#siteWrapper {
  background-color: white;
  min-height: 100vh;
  position: relative;
}

.body-overlay {
  background: black;
  cursor: col-resize;
  display: block;
  height: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition-delay: 0.44s !important;
  transition: opacity 0.55s ease;
  visibility: hidden;
  width: 0;
  z-index: -100;
}

.body-overlay.active {
  height: 100%;
  opacity: 0.6;
  transition-delay: 0.2s !important;
  transition: opacity 0.55s ease;
  visibility: visible;
  width: 100%;
  z-index: 100;
}

/* ============ Sidecar Drawer ============ */
#sidecar {
  background-color: white;
  opacity: 0.9;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  right: -300px;
  text-align: left;
  top: 0;
  transition: right 0.44s ease;
  width: 300px;
  z-index: 99999 !important;
}

#sidecar #close-sidecar {
  background: none;
  border: 2px solid #b5be34;
  border-radius: 4px;
  color: #b5be34;
  font: bold 1.6rem sans-serif;
  padding: 12px 48px 12px 24px;
  position: absolute;
  top: 16px;
  right: 16px;
}

#sidecar #close-sidecar::after {
  content: "";
  height: 16px;
  pointer-events: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
}

#sidecar ul#mainnav {
  right: 0px;
}

#sidecar.slide-right {
  left: inherit;
  opacity: 1;
  right: -300px;
  transition: transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
}

#sidecar.slide-right.active {
  box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  right: 0;
  transition: all 0.44s ease;
  width: 100%;
  border-top: 30px solid #15667f;
}

#sidecar.slide-right.active ul#mainnav li a,
#sidecar.slide-right.active ul#childpagenav-200864 li a {
  margin-left: 0px;
  margin: 0 auto;
  opacity: 1;
  color: #0d3d4c;
  padding: 0.7rem;
  font-family: "Lato";
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  display: block;
  /* width: 90%; */
  margin-bottom: 10px;
  margin-top: 15px;
}

#sidecar.slide-right.active ul#mainnav li > ul.active li a,
#sidecar.slide-right.active ul#childpagenav-200864 li > ul.active li a {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
}

#sidecar.slide-right.active ul#mainnav li > ul.active li a:hover,
#sidecar.slide-right.active ul#childpagenav-200864 li > ul.active li a:hover {
  font-weight: 700;
  background: transparent;
}

#sidecar.slide-right.active ul#mainnav li a:hover,
#sidecar.slide-right.active ul#childpagenav-200864 li a:hover {
  background-color: transparent;
  font-weight: 900;
}

/* ============ Sidecar Menu ============ */
nav#sidecar ul#mainnav {
  -webkit-padding-start: 0px;
  background: transparent;
  display: block;
  height: auto;
  margin: 100px 0 0;
  position: relative;
  width: 100%;
}

nav#sidecar ul#childpagenav-200864 {
  margin-top: -15px;
}

nav#sidecar ul#mainnav #mn-home {
  display: none;
}

nav#sidecar ul#mainnav li,
nav#sidecar ul#childpagenav-200864 li {
  background: transparent;
  display: block;
  float: none;
  height: auto;
  margin-bottom: 15px;
  padding-bottom: 2px;
  position: relative;
  text-align: left;
  width: 100%;
}

nav#sidecar ul#childpagenav-200864 li a {
  margin: 0 auto;
  opacity: 1;
  color: #0d3d4c;
  font-family: "Lato";
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  display: block;
  width: 90%;
  margin-bottom: 15px;
}

nav#sidecar ul#mainnav li > ul li {
  background: transparent;
  display: block;
  float: none;
  height: auto;
  margin-bottom: 15px;
  padding-bottom: 2px;
  position: relative;
  text-align: left;
  width: 100%;
}

nav#sidecar ul#mainnav li:nth-child(1) a {
  transition-delay: 0.05s !important;
}

nav#sidecar ul#mainnav li:nth-child(2) a {
  transition-delay: 0.1s !important;
}

nav#sidecar ul#mainnav li:nth-child(3) a {
  transition-delay: 0.15s !important;
}

nav#sidecar ul#mainnav li:nth-child(4) a {
  transition-delay: 0.2s !important;
}

nav#sidecar ul#mainnav li:nth-child(5) a {
  transition-delay: 0.25s !important;
}

nav#sidecar ul#mainnav li:nth-child(6) a {
  transition-delay: 0.3s !important;
}

nav#sidecar ul#mainnav li:nth-child(7) a {
  transition-delay: 0.35s !important;
}

nav#sidecar ul#mainnav li:nth-child(8) a {
  transition-delay: 0.4s !important;
}

nav#sidecar ul#mainnav li:nth-child(9) a {
  transition-delay: 0.45s !important;
}

nav#sidecar ul#mainnav li ul,
nav#sidecar ul#childpagenav-200864 li ul {
  background: rgba(21, 102, 127, 0.85);
  display: block;
  float: none;
  margin: 0;
  max-height: 0px;
  overflow: hidden;
  padding: 0 0 0 0px;
  position: relative;
  transition: max-height 0.25s ease-in;
}

nav#sidecar ul#mainnav li ul li a,
nav#sidecar ul#childpagenav-200864 li ul li a {
  border: none;
  font: normal 1.6rem sans-serif;
  padding: 8px 0px 8px 16px;
}

nav#sidecar ul#mainnav li ul.active,
nav#sidecar ul#childpagenav-200864 li ul.active {
  display: block;
  float: none;
  max-height: 500px;
  transition: max-height 0.44s ease-in;
}

nav#sidecar ul#mainnav li a.sw-menucode-item__link,
nav#sidecar ul#childpagenav-200864 li a.sw-menucode-item__link {
  color: black;
  display: inline-block;
  font: normal 2rem sans-serif;
  height: auto;
  opacity: 0;
  padding: 8px 16px;
  position: relative;
  transition: all 0.44s ease;
  width: 90%;
}

nav#sidecar ul#mainnav li a.expand,
nav#sidecar ul#childpagenav-200864 li a.expand {
  background-image: url("/sitefiles/2767/images/plus-sign.svg");
  cursor: pointer;
  display: block;
  height: 1px;
  padding: 16px;
  position: absolute;
  right: 0;
  top: 28px;
  width: 1px;
  left: 0%;
  border: 2px solid #15667f;
  border-radius: 50%;
  background-size: 60%;
  background-position: center;
  background-color: #fff;
  background-repeat: no-repeat;
}

nav#sidecar ul#mainnav li a.expand.active,
nav#sidecar ul#childpagenav-200864 li a.expand.active {
  background-image: url("/sitefiles/2767/images/minus-sign.svg");
}

nav#sidecar .slanted-button {
  margin-top: 0.5rem;
  margin-left: 2rem;
  margin-right: 2rem;
}

.socials__icon svg {
  height: 35px;
  width: 35px;
  fill: #15667f;
  margin-top: 2rem;
}

#sidecar img {
  width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
  margin-top: 2rem;
}

/*Login form*/
h1.sw-profile-login-title {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  font-size: 2rem;
  font-weight: bold;
}

#login-form {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

#login-form table {
  display: flex;
  justify-content: center;
  width: 100%;
}

#login-form table tbody {
  width: 100%;
  display: block;
  margin-left: 40%;
}

#login-form table tr td input {
  border: 3px solid #15667f;
  padding: 0.5rem;
  min-width: calc(100% + 100px);
}

@media (max-width: 492.3076923077px) {
  #login-form table tbody {
    width: 90%;
    margin-left: 0;
  }
  #login-form table tr td input {
    width: 100%;
  }
}
#login-form table tr td input#ctl00_cphPageBody_btnLogin {
  background: #b5be34;
  border: 3px solid #b5be34;
  color: #0d3d4c;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

@media only screen and (max-width: 1200px) {
  .banner-row .sw-public-page-part .matrix-content {
    display: flex;
    flex-direction: column;
  }
  section.banner-row div.banner-row__item {
    width: 100%;
  }
}
.paragraphs-wrapper ul#group-page-children {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.paragraphs-wrapper ul#group-page-children li.sw-access-restrictions-on {
  display: flex;
  width: 30%;
  text-align: center;
  border: 2px solid #5fb2cb;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.paragraphs-wrapper ul#group-page-children li.sw-access-restrictions-on:hover {
  background: #5fb2cb;
}

.paragraphs-wrapper ul#group-page-children li.sw-access-restrictions-on > a {
  padding: 1rem 0;
  color: #5fb2cb;
  font-size: 1.2rem;
}

.paragraphs-wrapper ul#group-page-children li.sw-access-restrictions-on > a:hover {
  color: #fff;
  font-weight: bold;
  font-size: calc(100% + 0.2rem);
}

@media only screen and (max-width: 767px) {
  .paragraphs-wrapper ul#group-page-children {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .paragraphs-wrapper ul#group-page-children li.sw-access-restrictions-on {
    width: 100%;
  }
}