@charset "UTF-8";
/*------------------------------------*\
    Partials
\*------------------------------------*/
/*------------------------------------*\
    Fonts
\*------------------------------------*/
/*------------------------------------*\
    Website Defaults
\*------------------------------------*/
/*------------------------------------*\
    Color Palette
\*------------------------------------*/
/*------------------------------------*\
    Assignments
\*------------------------------------*/
/*------------------------------------*\
    Grid
\*------------------------------------*/
/*------------------------------------*\
    Button
\*------------------------------------*/
/*------------------------------------*\
    Absolute Center
\*------------------------------------*/
/*------------------------------------*\
    Arrow css shape
\*------------------------------------*/
/*------------------------------------*\
    Breakpoints
\*------------------------------------*/
/*------------------------------------*\
    Default Styles
\*------------------------------------*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
* img, * iframe, * video {
  max-width: 100%;
}
* iframe, * video,
* aside img {
  width: 100%;
}
*::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, :before, :after {
  background-repeat: no-repeat;
}

html {
  font-size: 18px;
  font-size: clamp(10px, 1.2vw, 24px);
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: clamp(12px, 3.5vw, 18px);
  }
}

.row {
  width: 100%;
  max-width: 72.5rem;
  margin: 0 auto;
}

body {
  overflow-x: hidden;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.33;
  letter-spacing: 0.005em;
  font-family: "Montserrat", sans-serif;
  max-width: 2000px;
  margin: 0 auto;
}
body:not(.-sf-static) .extras, body:not(.-sf-static) .rates-source {
  display: none;
}

input[type=text],
input[type=email],
input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
}

input[type=text], input[type=tel], input[type=email], input[type=search], input[type=submit], input[type=number], input[type=date] {
  min-width: 100px;
  -webkit-appearance: none;
}
input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus, input[type=search]:focus, input[type=submit]:focus, input[type=number]:focus, input[type=date]:focus {
  outline: none;
  border-color: #1a468d;
}

input, button, select, textarea {
  font-family: "Montserrat", sans-serif;
}

select,
input[type=text],
input[type=url],
input[type=email],
input[type=tel],
input[type=password],
input[type=date],
input[type=number],
input[type=search],
textarea {
  margin: 0;
  padding: 0.25rem 0.33rem;
  width: 100%;
  font-size: 1rem;
  line-height: 1.2;
  border: 1px solid #949494;
  min-width: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 1.5rem;
}
select:focus,
input[type=text]:focus,
input[type=url]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=number]:focus,
input[type=search]:focus,
textarea:focus {
  outline: 0;
  border-color: #1a468d;
}
select::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}
select::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=search]::-moz-placeholder, textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}
select:-ms-input-placeholder, input[type=text]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
select::-ms-input-placeholder, input[type=text]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=date]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
select::placeholder,
input[type=text]::placeholder,
input[type=url]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=number]::placeholder,
input[type=search]::placeholder,
textarea::placeholder {
  color: inherit;
  opacity: 1;
}

textarea {
  resize: vertical;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button:hover, input[type=button]:hover,
input[type=submit]:hover {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

.disclaimer,
.tbl-rates-disclaimers {
  font-size: 0.8em;
  line-height: 1rem;
  display: block;
  font-style: italic;
  font-weight: 500;
}

.skip-nav {
  position: absolute;
  top: -1000px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  z-index: 99999;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.skip-nav > a {
  display: block;
  width: 25%;
  margin: 0 auto;
  padding: 5px;
  background: #1a468d;
  font-size: 1.4em;
  color: white;
  text-decoration: none;
}
.skip-nav.focus {
  top: 0;
}
@media all and (max-width: 1024px) {
  .skip-nav {
    display: none;
  }
}

a {
  color: #1a468d;
  text-decoration: underline;
}
a.contains-button {
  text-decoration: none;
}
a:hover {
  color: #1a468d;
  text-decoration: none;
  cursor: pointer;
}
a.button, a .button, .button a,
.banner-cta a,
input[type=submit],
input[type=button],
.inside-content button {
  background-color: #72a94e;
  color: #000000 !important;
  padding: 0.5em 1.33em;
  border: 1px solid #72a94e;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  line-height: 1.1;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
a.button:hover, a .button:hover, .button a:hover,
.banner-cta a:hover,
input[type=submit]:hover,
input[type=button]:hover,
.inside-content button:hover {
  background-color: #76aacc;
  border-color: #76aacc;
  color: #000000 !important;
  text-decoration: none;
}
a.button, a .button, .button a,
.banner-cta a,
input[type=submit],
input[type=button],
.inside-content button {
  min-width: 8rem;
}
@media screen and (max-width: 699px) {
  a.button, a .button, .button a,
  .banner-cta a,
  input[type=submit],
  input[type=button],
  .inside-content button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.banner-cta a,
.button-quicklink .button,
.banner-content a.button,
a.button-green {
  color: #000000 !important;
  border-color: #72a94e;
  background-color: #72a94e;
}
.banner-cta a:hover,
.button-quicklink .button:hover,
.banner-content a.button:hover,
a.button-green:hover {
  background-color: #76aacc;
  border-color: #76aacc;
  color: #000000 !important;
}

.banner-content a.button-red,
a.button-red {
  color: #ffffff !important;
  border-color: #cf4520;
  background-color: #cf4520;
}
.banner-content a.button-red:hover,
a.button-red:hover {
  background-color: #76aacc;
  border-color: #76aacc;
  color: #000000 !important;
}

a.button-blue,
a .button-blue,
.banner-content a.button-blue {
  color: #ffffff !important;
  border-color: #1a468d;
  background-color: #1a468d;
}
a.button-blue:hover,
a .button-blue:hover,
.banner-content a.button-blue:hover {
  background-color: #72a94e;
  border-color: #72a94e;
  color: #000000 !important;
}

.font-small {
  font-size: calc(18px - 4px);
  font-size: clamp(10px, 1vw, 18px);
}

.font-large {
  font-size: calc(18px + 4px);
  font-size: clamp(16px, 1.5vw, 30px);
}

.sr-only,
.visuallyhidden,
.v-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

::-moz-selection {
  background: #1a468d;
  color: #ffffff;
}

::selection {
  background: #1a468d;
  color: #ffffff;
}

blockquote::before {
  content: "“";
  display: inline-block;
  margin-right: -0.25em;
}
blockquote::after {
  content: "”";
  display: inline-block;
  margin-left: -0.25em;
}

.-sf-static .RadDock .rdCenter .rdCommands li::before {
  content: none;
}

.nolink {
  color: inherit !important;
  text-decoration: inherit !important;
}
.nolink:hover {
  color: inherit !important;
  text-decoration: inherit !important;
  cursor: default;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.invisible-outside-editor {
  display: none;
}
.-sf-static .invisible-outside-editor {
  display: block;
}

.posts-only {
  display: none;
}

.-sf-static .accordion > :nth-child(n+2) {
  display: block !important;
}
.-sf-static .inside-content .RadDockZone {
  margin: 20px auto;
  border: 1px dashed grey;
}
.-sf-static .posts-only {
  display: block;
}

svg .st1, svg .st2, svg .st3, svg .st4, svg .st0 {
  fill: currentColor;
}

sub, sup {
  line-height: 0;
  font-size: 0.5em;
}

@media screen and (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .mobile-only {
    display: none !important;
  }
}

.-sf-static .header-wrapper {
  position: unset;
  height: auto;
}

.-sf-static div[data-sfcontainer=Content] {
  padding: 2rem 0;
}
.-sf-static .header-image {
  display: block;
  width: 100%;
}
.-sf-static .header-image picture {
  display: block !important;
}
.-sf-static div[data-sfcontainer=PageHeaderImage] {
  width: 100%;
}

.slick-arrow, .inside-content .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  min-width: 0;
  font-size: 0;
  color: #1a468d !important;
  background-color: transparent;
  z-index: 988;
  border: none;
}
.slick-arrow::before, .slick-arrow::after, .inside-content .slick-arrow::before, .inside-content .slick-arrow::after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  width: 1rem;
  height: clamp(1px, 0.1rem, 3px);
  background-color: currentColor;
  border-radius: clamp(1px, 0.1rem, 3px);
}
.slick-arrow:hover::before, .slick-arrow:hover::after, .inside-content .slick-arrow:hover::before, .inside-content .slick-arrow:hover::after {
  background-color: currentColor;
}
.slick-arrow:hover, .inside-content .slick-arrow:hover {
  color: #72a94e !important;
  background-color: transparent;
}

.slick-prev {
  left: 0;
}
.slick-prev::before, .slick-prev::after {
  left: 0.5rem;
}
.slick-prev::before {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.slick-prev::after {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.slick-next {
  right: 0;
}
.slick-next::before, .slick-next::after {
  right: 0.5rem;
}
.slick-next::before {
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.slick-next::after {
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.slick-list {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 100%;
}

.rate-box {
  margin: auto;
  text-align: center;
}
.inside-content .rate-box {
  margin-bottom: 1rem;
}
.rate-box .teaser {
  font-size: 1.2rem;
  line-height: 1.25;
}
.inside-content .rate-box .teaser {
  font-size: 1.25rem;
}
.card .rate-box .teaser {
  font-size: 0.85rem;
  font-weight: 700;
}
.rate-box .teaser em {
  font-size: 1rem;
  display: block;
}
.page-feature-section .rate-box .teaser {
  /*  &::before {
        content: "";
        background-image: url(/ResourcePackages/Custom/assets/images/hat.svg);
        display: inline-block;
        font-size: 1.33rem;
        width: 1.5em;
        height: 1em;
        background-size: 1.1em 0.9em;
        margin-left: -1.5em;
        background-position: center;
        margin-bottom: -0.2rem;
    } */
}
.page-feature-section .rate-box .teaser .rates-desc {
  font-style: italic;
}
.rate-box .rates-desc {
  font-size: 0.9rem;
}
.inside-content .rate-box .rates-desc {
  font-size: 1rem;
}
.card .rate-box .rates-desc {
  font-size: 0.75rem;
  font-weight: 400;
  font-style: italic;
}
.rate-box .rate {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: #1a468d;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.inside-content .rate-box .rate {
  font-size: 2.2rem;
}
.card .rate-box .rate {
  font-size: 1.66rem;
  color: #1a468d;
}
.rate-box .rate em {
  font-style: normal;
  color: inherit;
}

.button-wrap {
  margin: 1.33rem auto;
}
.button-wrap.overlap-lower {
  margin-bottom: -1.25em;
  position: relative;
  z-index: 5;
}
.inside-content > .button-wrap.overlap-lower {
  margin-bottom: -1.66em;
}
.inside-content > .button-wrap.overlap-lower a.button {
  margin-bottom: 0.1em;
}
.testimonials + .button-wrap.overlap-upper li, .home .button-wrap li {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.testimonials + .button-wrap.overlap-upper a.button, .home .button-wrap a.button {
  max-width: 20rem;
}
.button-wrap.overlap-upper {
  margin-top: -1.25em;
  position: relative;
  z-index: 5;
}
.inside-content > .button-wrap.overlap-upper {
  margin-top: -1.66em;
}
.inside-content > .button-wrap.overlap-upper a.button {
  margin-top: 0.1em;
}

.inside-content .buttons a.button, .widgets .buttons a.button {
  margin-top: 0.33em;
  margin-bottom: 0.33em;
}
.buttons.ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.buttons.ctas.left-align {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.buttons.ctas a.button {
  width: 100%;
  min-width: 10rem;
}
.buttons.ctas > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 699px) {
  .buttons.ctas > li {
    width: 100%;
  }
}
.sf_colsOut[class*="4cols"] .buttons a.button, .sf_colsOut[class*="5cols"] .buttons a.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 5rem;
}

.inside .inside-contentarea ul.buttons {
  margin-bottom: 0;
}

.quicklinks {
  text-align: center;
  position: relative;
  margin: 3rem auto 2rem;
}
@media screen and (min-width: 1025px) {
  .quicklinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 2rem auto;
  }
  .quicklinks .slick-track {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.quicklinks .image, .quicklinks .link, .quicklinks .link-title {
  display: block;
}
.quicklinks a {
  text-decoration: none;
  color: #000000;
}
.quicklinks .ql-slider {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.quicklinks .quicklink {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 1rem;
}
.quicklinks .quicklink img {
  width: 4.5rem;
  height: 4.5rem;
}
.quicklinks .quicklink a {
  display: block;
  max-width: 8rem;
  margin: 0 auto;
  position: relative;
  top: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.quicklinks .quicklink a:hover {
  top: -1rem;
}
.quicklinks .button-quicklink {
  padding: 0.66rem 1rem;
}
.quicklinks .button-quicklink .link-title {
  font-size: 1.15rem;
  margin-bottom: 0.66rem;
}
@media screen and (max-width: 1024px) {
  .quicklinks .button-quicklink {
    max-width: 24rem;
    margin: 0 auto 1rem;
  }
  .quicklinks .button-quicklink .link-title {
    font-size: 1.33rem;
  }
}
.quicklinks .button-quicklink .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 1rem;
}
@media screen and (max-width: 1024px) {
  .quicklinks .button-quicklink .button {
    max-width: 20rem;
    margin: 0 auto;
  }
}
.quicklinks .button-quicklink:hover .hat-separator {
  color: #72a94e;
}
.quicklinks .button-quicklink:hover .button {
  background-color: #72a94e;
  border-color: #72a94e;
  color: #000000 !important;
}
.quicklinks .button-quicklink .hat-separator {
  margin: 0 auto;
}
.quicklinks.mixed-qls {
  text-align: center;
}
.quicklinks.mixed-qls .button-quicklink {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.5rem 2rem;
}
.quicklinks.mixed-qls .ql-slider {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.quicklinks.button-qls {
  padding: 0 2rem;
}

.ql-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  overflow: hidden;
}
.ql-slider.slick-initialized {
  display: block;
}

.sf-search-input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  height: 2.5rem;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
}
.sf-search-input-wrapper input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.9rem;
  border-radius: 0.25rem 0 0 0.25rem;
  border-right: 0;
  text-align: center;
  padding-left: 20px;
}
.header-search .sf-search-input-wrapper input {
  border-color: transparent;
}
.sf-search-input-wrapper input::-webkit-input-placeholder {
  color: #000000;
  opacity: 1;
  text-align: center;
}
.sf-search-input-wrapper input::-moz-placeholder {
  color: #000000;
  opacity: 1;
  text-align: center;
}
.sf-search-input-wrapper input:-ms-input-placeholder {
  color: #000000;
  opacity: 1;
  text-align: center;
}
.sf-search-input-wrapper input::-ms-input-placeholder {
  color: #000000;
  opacity: 1;
  text-align: center;
}
.sf-search-input-wrapper input::placeholder {
  color: #000000;
  opacity: 1;
  text-align: center;
}
.sf-search-input-wrapper button {
  min-width: 3.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  background-color: #1a468d;
  border-color: #1a468d;
  color: #ffffff !important;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 0 0.25rem 0.25rem 0;
}
.sf-search-input-wrapper button:hover {
  background-color: #cf4520;
  color: #ffffff !important;
  border-color: #cf4520;
}

.post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 3rem auto 5rem;
}
.post-list > li {
  max-width: 17rem;
  min-width: 12rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post-list > li a, .post-list .post-item a {
  text-decoration: none;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 3rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  line-height: 1.15;
  text-align: center;
  color: #000000;
}
.post-list > li a img, .post-list .post-item a img {
  width: 100%;
  aspect-ratio: 2/1.25;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-list > li .card-title, .post-list .post-item .card-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin: 0.75rem 0.5rem 0.5rem;
  color: #1a468d;
}
.post-list > li .summary, .post-list .post-item .summary {
  margin: 0 0.5rem 0.5rem;
  text-wrap: balance;
  font-size: 0.9rem;
}
.post-list > li .summary .title, .post-list .post-item .summary .title {
  display: block;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.post-list > li .fake-link, .post-list .post-item .fake-link {
  margin: auto auto 0.75rem;
  font-size: 0.85rem;
  font-style: italic;
  text-decoration: underline;
  padding: 0 0.5rem;
}
.post-list > li .fake-link:hover, .post-list .post-item .fake-link:hover {
  text-decoration: none;
  color: #1a468d;
}
.post-list > li .card-bar, .post-list .post-item .card-bar {
  background-color: #1a468d;
  color: #ffffff;
  padding: 0.33rem;
  font-size: 0.9rem;
}
.post-list > li .image, .post-list .post-item .image {
  margin-top: -1px;
}
.post-list.slick-initialized {
  display: block;
}
.post-list.slider-cards {
  margin: 1.5rem auto 3.5rem;
}
.post-list.slider-cards .post-item {
  padding: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post-list.slider-cards .post-item a {
  -webkit-box-shadow: 0 0 2rem -0.5rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 2rem -0.5rem rgba(0, 0, 0, 0.3);
}

.testimonials {
  margin: 5rem auto;
}
.testimonials + .button-wrap.overlap-upper {
  margin-top: -7.5em;
  margin-bottom: 4.5rem;
}
.testimonials .testimonial {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 3rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  -webkit-transition: all 0.66s;
  transition: all 0.66s;
  margin: 2rem auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 1.5rem 1.5fr;
  grid-template-columns: 1fr 1.5fr;
  padding: 2rem 2rem 3rem;
  font-size: 0.95rem;
  gap: 1rem 1.5rem;
}
@media screen and (min-width: 800px) {
  .testimonials .testimonial {
    -ms-grid-columns: 1fr 1.5rem 3fr;
    grid-template-columns: 1fr 3fr;
    gap: 0 1.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.testimonials .testimonial:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.testimonials .testimonial .testimonial-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 799px) {
  .testimonials .testimonial .testimonial-image {
    min-height: 30vw;
  }
}
@media screen and (min-width: 800px) {
  .testimonials .testimonial .testimonial-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
}
.testimonials .testimonial .testimonial-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.testimonials .testimonial .testimonial-content {
  -webkit-box-flex: 3.5;
      -ms-flex: 3.5;
          flex: 3.5;
}
@media screen and (max-width: 799px) {
  .testimonials .testimonial .testimonial-content {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
.testimonials .testimonial h2 {
  font-weight: 800;
  color: #1a468d;
  font-size: 1.5rem;
  margin: 0 0 0.33rem;
}
.testimonials .testimonial h3 {
  color: #1a468d;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
}
.testimonials .testimonial blockquote::before, .testimonials .testimonial blockquote::after {
  content: none;
}
.testimonials .testimonial blockquote {
  font-weight: 500;
  font-style: italic;
  font-size: 1rem;
}
.testimonials .testimonial .short-info + h3 {
  margin-top: 1.5rem;
  color: #000000;
}
.testimonials .testimonial .short-info {
  line-height: 1.5;
}
@media screen and (min-width: 800px) {
  .testimonials .testimonial .testimonial-name-group {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.testimonials .testimonial .testimonial-name-group a {
  color: #000000;
  text-align: right;
  font-size: 0.85rem;
}
.testimonials .testimonial .hat-separator {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-column: 1;
      grid-column-start: 1;
  margin: 0.5rem 0 0.5rem -0.4rem;
}
.testimonials .testimonial .hat-separator::before {
  content: none;
}

.single-testimonial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.testimonials.single-testimonial .testimonial-dots {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 3rem;
  display: none;
}
@media screen and (min-width: 800px) {
  .testimonials.single-testimonial .testimonial-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1025px) {
  .testimonials.single-testimonial .testimonial-dots {
    margin-left: -3rem;
  }
}
.testimonials.single-testimonial .testimonial-dots .testimonial-dot {
  padding: 0.3rem;
  width: 100%;
}
.testimonials.single-testimonial .testimonial-dots .t-dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background-color: #72a94e;
  display: block;
}
.testimonials.single-testimonial .testimonial-dots .t-dot:hover, .testimonials.single-testimonial .testimonial-dots .t-dot:focus {
  background-color: #cf4520;
  cursor: pointer;
}
.testimonials.single-testimonial .testimonial-dots .t-dot.active {
  background-color: #325a98;
}

.testimonial-slider {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.testimonial-slider .testimonial {
  max-height: 0;
  -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, 0);
          box-shadow: 0 0 3rem rgba(0, 0, 0, 0);
  -webkit-transition: all 0.66s;
  transition: all 0.66s;
  margin: 0 auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 0 2rem;
}
.testimonial-slider .testimonial:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.testimonial-slider .testimonial.active {
  max-height: 50rem;
  -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 3rem rgba(0, 0, 0, 0.2);
  margin: 1rem auto;
  -webkit-transition: all 1s;
  transition: all 1s;
  padding: 2rem 2rem 3rem;
}
@media screen and (min-width: 800px) {
  .testimonial-slider .testimonial.active {
    max-height: 30rem;
  }
}

.splash-testimonials.background-section {
  padding: 0;
}

.splash-testimonials .splash-testimonial {
  margin-top: 2rem;
}
@media screen and (min-width: 800px) {
  .splash-testimonials .splash-testimonial {
    display: -ms-grid;
    display: grid;
    margin-top: 3rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.splash-testimonials .splash-testimonial .testimonial-titlearea {
  margin: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  position: relative;
  min-height: 13rem;
}
.splash-testimonials .splash-testimonial .testimonial-titlearea img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.25;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.splash-testimonials .splash-testimonial .testimonial-titlearea h2 {
  max-width: 22rem;
  font-style: italic;
  color: #1a468d;
  position: relative;
  text-align: center;
  text-wrap: balance;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  .splash-testimonials .splash-testimonial .testimonial-titlearea h2 {
    font-size: 2rem;
  }
}
.splash-testimonials .splash-testimonial .testimonial-content {
  margin: 0 !important;
  padding: 4rem 5% 3rem;
  background-color: #bce0a4;
  position: relative;
  overflow: hidden;
  text-align: center;
  font-style: italic;
}
@media screen and (min-width: 800px) {
  .splash-testimonials .splash-testimonial .testimonial-content {
    font-size: 1.2rem;
    padding: 5rem 10%;
  }
}
.splash-testimonials .splash-testimonial .testimonial-content .quote {
  width: 6rem;
  height: 3rem;
  position: absolute;
}
@media screen and (min-width: 1025px) {
  .splash-testimonials .splash-testimonial .testimonial-content .quote {
    width: 8rem;
    height: 4rem;
  }
}
.splash-testimonials .splash-testimonial .testimonial-content .upper-quote {
  top: 0;
  left: 0;
}
.splash-testimonials .splash-testimonial .testimonial-content .lower-quote {
  bottom: 0;
  right: -1rem;
}
.splash-testimonials .splash-testimonial .testimonial-content svg .st0 {
  fill: #d7ecc8;
}
.splash-testimonials .splash-testimonial .testimonial-content blockquote::after, .splash-testimonials .splash-testimonial .testimonial-content blockquote::before {
  content: none;
}
.splash-testimonials .splash-testimonial .testimonial-content cite {
  display: block;
  margin-top: 1rem;
}
.splash-testimonials .splash-testimonial .testimonial-content cite::before {
  content: "-";
}

.cards {
  position: relative;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cards.slick-initialized {
  display: block;
  gap: 0;
}
@media screen and (min-width: 1025px) {
  .cards.slick-initialized .slick-next {
    right: -2rem;
  }
  .cards.slick-initialized .slick-prev {
    left: -2rem;
  }
}
.cards .slick-list {
  padding: 0 0.5rem;
  margin: 0 -0.5rem;
  width: calc(100% + 1rem);
  max-width: calc(100% + 1rem);
}
.cards .card {
  padding: 1rem 0.66rem;
}
.cards .card.slick-slide {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.cards .card.slick-slide.slick-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.cards .card:not(.slick-slide) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 16rem;
  max-width: 20rem;
}
.cards .card * {
  color: #000000;
}
.cards .card .card-inner {
  background-color: white;
  -webkit-box-shadow: 0 0 1.33rem -0.5rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 1.33rem -0.5rem rgba(0, 0, 0, 0.5);
  border-radius: 0.25rem;
  padding: 1rem 1rem 1px;
  text-align: center;
  font-size: 0.85rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto 1fr 2.1rem;
  grid-template-rows: auto auto 1fr 2.1rem;
  height: 100%;
}
.cards .card img {
  width: 100%;
  height: auto;
}
.cards .card .title {
  font-size: 1.33rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.5rem 0 1rem;
  min-height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1rem;
}
.cards .card .title > span {
  min-width: 100%;
  color: #1a468d;
}
.cards .card .subtitle {
  font-size: 1.05rem;
  font-style: italic;
}
@media screen and (max-width: 699px) {
  .cards .card a.button {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
  .cards + .hat-separator {
    margin: 2.5rem auto 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .cards {
    padding: 0 1.5rem;
  }
  .cards .card {
    padding: 1rem 1.33rem;
  }
}

.feature {
  background-color: #0c1422;
}
.feature a {
  text-decoration: none;
}
.feature .content-wrap .heading {
  font-size: 1.5rem;
}
.feature .content-wrap p {
  margin-bottom: 1rem;
}
.feature .content-wrap .bar {
  width: 10rem;
  height: 0.5rem;
  background-color: #72a94e;
  display: block;
  margin: 1.5rem 0;
}
.feature .content-wrap .large {
  font-size: 1.2em;
}
@media screen and (min-width: 700px) {
  .feature .feature-inner {
    width: 100%;
    height: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 9rem 1fr;
    grid-template-columns: 1fr 9rem 1fr;
  }
  .feature .image {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
    -ms-grid-row: 1;
    grid-row: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 100%;
    min-height: 25rem;
  }
  .feature .image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .feature .content-wrap {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    grid-row: 1;
    display: block;
    position: relative;
    z-index: 2;
    clip-path: polygon(0% 0%, 100% 0%, calc(100% - 9rem) 100%, 0% 100%);
    background-image: linear-gradient(110deg, rgba(12, 20, 34, 0.5), #002e5d 25%, #1a468d);
  }
  .feature .content-wrap .content {
    display: block;
    padding: 3rem 6rem 3rem 5%;
    text-wrap: balance;
  }
  .feature .content-wrap .content .text {
    padding-right: 6rem;
  }
}
@media screen and (max-width: 699px) {
  .feature .image img {
    display: block;
    width: 100%;
    height: 20rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .feature .content-wrap {
    margin-top: -2rem;
    clip-path: polygon(0% 0%, 100% 2rem, 100% 100%, 0% 100%);
    background-image: linear-gradient(110deg, #0c1422, #002e5d);
    padding: 3rem 5% 2rem;
    display: block;
  }
}

body:not(.loaded) * {
  -webkit-transition: none !important;
  transition: none !important;
}

/*------------------------------------*\
    Header Styles
\*------------------------------------*/
.header-wrapper {
  height: 0;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.sfPageEditor .header-wrapper {
  position: static;
  height: auto;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  padding: 0 5%;
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  header {
    padding: 0 2.5rem 0 5%;
  }
}
header {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0.3rem 0.5rem -0.15rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.3rem 0.5rem -0.15rem rgba(0, 0, 0, 0.15);
}
.sfPageEditor header {
  position: static;
}
header a {
  text-decoration: none;
}
header .header-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.scrolled header .middle-links {
  height: 0;
}
@media screen and (pointer: coarse), (pointer: none), (max-width: 1024px) {
  header .middle-links {
    display: none;
  }
}
header .middle-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  header .middle-links ul {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    margin-bottom: 1rem;
    margin-top: -0.5rem;
  }
  .scrolled header .middle-links ul {
    font-size: 0;
    margin: 0;
    opacity: 0;
  }
}
header .middle-links ul li a {
  text-decoration: underline;
}
header .middle-links ul li .hat-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  font-weight: 700;
}
header .middle-links ul li .hat-link svg, header .middle-links ul li .hat-link img {
  display: block;
  width: auto;
  height: 1.5rem;
}
header .middle-links ul li .hat-link svg {
  color: #72a94e;
}
header .middle-links ul li.obl-width {
  min-width: 14.5rem;
  text-align: center;
}
header .logo {
  padding: 1rem 0;
  max-width: 40%;
}
header .logo img {
  width: 13rem;
  height: 6rem;
  display: block;
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  header .logo img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .scrolled header .logo img {
    height: 3.75rem;
  }
}
@media screen and (pointer: coarse), (pointer: none), (max-width: 1024px) {
  header .logo img {
    margin: 0 auto;
  }
}
@media screen and (pointer: coarse), (pointer: none), (max-width: 1024px) {
  header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 0 0 1.5rem;
    -webkit-transition: all 0.5s 0.5s;
    transition: all 0.5s 0.5s;
  }
  header .mobile-links, header .desktop-links {
    opacity: 1;
    -webkit-transition: all 0.2s 1s;
    transition: all 0.2s 1s;
  }
  .scrolled header {
    padding: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .scrolled header .mobile-links, .scrolled header .desktop-links, .scrolled header .middle-links {
    font-size: 0;
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  header .logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 1rem 5% 0;
    background-color: transparent;
    -webkit-transition: all 0.5s 0.5s;
    transition: all 0.5s 0.5s;
    z-index: 1;
    margin: 0 auto;
    max-width: 100%;
  }
  header .logo img {
    -webkit-transition: all 0.5s 0.5s;
    transition: all 0.5s 0.5s;
  }
  .scrolled header .logo {
    margin-top: -4.33rem;
    position: relative;
    background-color: #ffffff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .scrolled header .logo .mobile-links {
    margin-top: 0;
  }
  .scrolled header .logo img {
    width: 6.25rem;
    height: 3.33rem;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}

.header-top a, .logo a {
  color: #000000;
}
.header-top ul, .logo ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-top ul li, .logo ul li {
  line-height: 1.15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-top ul li:nth-child(n+2)::before, .logo ul li:nth-child(n+2)::before {
  content: "|";
  margin: 0 1rem;
}

.mobile-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  .mobile-links {
    display: none;
  }
}

.header-top {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0;
  font-size: 0.85rem;
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  .header-top {
    min-height: 3.75rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding: 0.5rem 0 0;
    overflow: hidden;
  }
  .scrolled .header-top {
    min-height: 3rem;
    padding-bottom: 0.75rem;
  }
}
@media screen and (pointer: coarse), (pointer: none), (max-width: 1024px) {
  .header-top {
    position: relative;
  }
  .header-top::before {
    content: "";
    left: 1rem;
    right: 7rem;
    position: absolute;
    bottom: 0;
    border-bottom: 1px solid #72a94e;
  }
  .scrolled .header-top::before {
    border-bottom: 1px solid transparent;
  }
}
.header-top .desktop-links {
  display: none;
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  .header-top .desktop-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (pointer: coarse), (pointer: none), (max-width: 1024px) {
  .header-top .header-search ~ div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .header-top .search-trigger {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    margin-left: 1rem;
    margin-right: 2rem;
    margin-top: -0.5rem;
  }
}

.search-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 111111;
  height: 10rem;
  width: 100%;
  pointer-events: none;
}

.header-search {
  pointer-events: all;
  position: absolute;
  top: 0;
  right: 150%;
  width: 100%;
  background: #72a94e;
  padding: 1rem 3.5rem 1.25rem 1.5rem;
  border-radius: 0 0 0.25rem 0.25rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 99999999;
}
.header-search > * {
  visibility: hidden;
  -webkit-transition: visibility 0.65s;
  transition: visibility 0.65s;
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  .header-search {
    right: -150%;
  }
  .scrolled .header-search {
    padding: 0.5rem 3.5rem 1rem 1.5rem;
  }
  .header-search .form-inline {
    max-width: 50rem;
    margin: 0 auto;
  }
}
.header-search.active, .header-search:focus-within {
  right: 0;
}
.header-search.active > *, .header-search:focus-within > * {
  visibility: visible;
}
.header-search .search-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: transparent;
}
.header-search .search-close::before, .header-search .search-close::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 0.15rem;
  right: 0.15rem;
  height: 0.15rem;
  border-radius: 0.2rem;
  background-color: #000000;
}
.header-search .search-close::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header-search .search-close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.search-trigger {
  position: relative;
}
.search-trigger::before, .search-trigger::after {
  content: "";
  position: absolute;
}
.search-trigger::before {
  border-radius: 50%;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  top: 7px;
  left: 5px;
}
.search-trigger::after {
  border-radius: 2px;
  width: 9px;
  height: 3px;
  background: currentColor;
  -webkit-transform: rotate(49deg);
          transform: rotate(49deg);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  top: 21px;
  left: 15px;
}
.search-trigger:hover::before {
  border-color: currentColor;
}
.search-trigger:hover::after {
  background: currentColor;
}
.search-trigger {
  width: 30px;
  height: 30px;
  background-color: transparent;
  color: inherit;
  z-index: 3;
}
@media screen and (pointer: coarse), (pointer: none), (max-width: 1024px) {
  .search-trigger {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  .search-trigger {
    margin: -1.4rem 1rem 0;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .scrolled .search-trigger {
    margin-top: -0.4rem;
  }
}
.search-trigger:hover, .search-trigger:focus {
  color: #1a468d;
}

.obl-trigger {
  background-color: #1a468d;
  display: block;
  color: #ffffff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 700;
}
@media screen and (pointer: coarse), (pointer: none), (max-width: 1024px) {
  .obl-trigger {
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 0.8rem;
    padding: 0.66rem;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 6rem;
    z-index: 99999;
  }
  .scrolled .obl-trigger, .hamburger-close ~ .obl-trigger {
    font-size: 0;
    width: 3rem;
    padding: 0 1rem;
  }
  .obl-trigger .desktop-text {
    display: none;
  }
  .obl-trigger .lock {
    position: relative;
    color: #ffffff;
    width: 2em;
    height: 2.75em;
    margin-top: -0.5em;
    overflow: hidden;
    display: block;
    width: 1.5rem;
    font-size: 0.55rem;
  }
  .obl-trigger .lock::after, .obl-trigger .lock::before {
    content: "";
    position: absolute;
  }
  .obl-trigger .lock::before {
    border-radius: 1em;
    width: 1.5em;
    height: 2em;
    border: 0.4em solid currentColor;
    left: 0.15em;
    bottom: 0.55em;
  }
  .obl-trigger .lock::after {
    background-color: currentColor;
    border-radius: 0.25em;
    width: 1.8em;
    height: 1.5em;
    bottom: 0;
    left: 0;
  }
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  .obl-trigger {
    border-radius: 2rem;
    padding: 0.5rem 2rem 0.6rem;
    font-size: 0.9rem;
  }
  .obl-trigger:hover {
    background-color: #72a94e;
    color: #000000;
  }
  .obl-trigger .mobile-text {
    display: none;
  }
}

.obl-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100dvh;
  z-index: 999999;
}
@media screen and (pointer: coarse), (pointer: none), (max-width: 1024px) {
  .obl-wrapper {
    background-color: rgba(114, 169, 78, 0.6);
    overflow-y: auto;
  }
}
.sfTemplateEditor .obl-wrapper {
  position: static;
  display: block !important;
}

.obl {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #ffffff;
  -webkit-box-shadow: 0 0.15rem 0.75rem -0.15rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.15rem 0.75rem -0.15rem rgba(0, 0, 0, 0.3);
  padding: 3.5rem 5% 3.5rem;
  font-size: 0.85rem;
  text-align: center;
  background-color: #1a468d;
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  .obl {
    padding: 0.665rem 1.33rem 1rem;
    bottom: 0;
    background-color: rgba(12, 20, 34, 0.4);
    background-image: linear-gradient(45deg, rgba(0, 46, 93, 0.8), rgba(26, 70, 141, 0.95));
  }
}
.sfPageEditor .obl {
  position: static;
  display: block;
}
.obl, .obl a {
  color: #ffffff;
}
.obl input[type=text], .obl input[type=password] {
  border: none;
  border-bottom: 1px solid #000000;
  margin-bottom: 1rem;
  padding: 0.25rem 0.5rem;
  font-size: 1.2em;
  min-height: 2.2rem;
  border-radius: 0.25rem;
  grid-column: 1/-1;
}
.obl .obl-title, .obl .obl-title h2 {
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 0.3325rem;
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  .obl .obl-title, .obl .obl-title h2 {
    text-align: left;
  }
}
@media screen and (pointer: coarse), (pointer: none), (max-width: 1024px) {
  .obl .obl-logo {
    display: none;
  }
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  .obl .obl-logo {
    max-width: 39.3rem;
    margin: 2.5rem auto;
  }
  .obl .obl-logo img {
    height: 7.5rem;
    width: 16rem;
    display: block;
  }
}
.obl .obl-content {
  max-width: 30rem;
  margin: 0 auto;
}
.obl .obl-links {
  font-size: 0.9em;
}
@media screen and (pointer: coarse), (pointer: none), (max-width: 1024px) {
  .obl .obl-links {
    display: none;
  }
}
.obl ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.obl ul li {
  padding-bottom: 0.33rem;
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  .obl form {
    text-align: left;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.obl form input[type=submit],
.obl form input[type=button],
.obl form button {
  padding: 0.75em;
  border-radius: 0.25rem;
  margin: 0 auto;
  width: 12rem;
  font-weight: 700;
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  .obl form input[type=submit],
  .obl form input[type=button],
  .obl form button {
    margin-right: 0;
  }
}
.obl .obl-end-link {
  margin-top: 0.33rem;
  font-size: 0.9em;
}
.obl .hat-separator {
  max-width: 26rem;
  margin: 1.5rem auto;
  max-width: 80%;
}
.obl .obl-end-bar {
  position: absolute;
  background-color: #72a94e;
  left: 0;
  right: 0;
  bottom: 0;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 5%;
}
.obl .obl-end-bar .sep {
  display: inline-block;
  margin: 0 0.5em;
}
.obl .obl-end-bar *, .obl .obl-end-bar {
  color: #000000;
}
.obl .obl-close {
  position: relative;
  color: currentColor;
  width: 1.5rem;
  height: 1.5rem;
}
.obl .obl-close::before, .obl .obl-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 0.2rem solid currentColor;
  border-radius: 0.2rem;
}
.obl .obl-close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.obl .obl-close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.obl .obl-close {
  background-color: transparent;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
@media screen and (pointer: fine) and (min-width: 1025px) {
  .obl .obl-close {
    top: 3rem;
    left: 50%;
    margin-left: 14rem;
  }
}

nav li.dropdown > a .arrow::before, nav li.dropdown > a .arrow::after, .accordion > :first-child .arrow::before, .accordion > :first-child .arrow::after {
  content: "";
  position: absolute;
  height: 0.125rem;
  width: 0.55rem;
  background-color: currentColor;
  top: 60%;
}
nav li.dropdown > a .arrow::before, .accordion > :first-child .arrow::before {
  left: 51%;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
nav li.dropdown > a .arrow::after, .accordion > :first-child .arrow::after {
  right: 51%;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

/*------------------------------------*\
    Basic Styles
\*------------------------------------*/
.blue {
  color: #1a468d !important;
}

.green {
  color: #72a94e !important;
}

.red {
  color: #cf4520 !important;
}

.med {
  font-weight: 500 !important;
}

.bold {
  font-weight: 700 !important;
}

.reg {
  font-weight: 400 !important;
}

.large {
  font-size: 1.33em;
}

.small {
  font-size: 0.85em;
}

.header-top a {
  color: #000000;
}
.header-top a:hover {
  color: #1a468d;
  text-decoration: underline;
}

.banner-content *, .blue-bar *, footer *, .inside .page-banner *,
.blue-section *, .feature * {
  color: #ffffff;
}
.banner-content a:hover, .blue-bar a:hover, footer a:hover, .inside .page-banner a:hover,
.blue-section a:hover, .feature a:hover {
  color: #bce0a4;
}
.banner-content .hat-separator, .blue-bar .hat-separator, footer .hat-separator, .inside .page-banner .hat-separator,
.blue-section .hat-separator, .feature .hat-separator {
  color: #5076b4;
}
.banner-content hr, .blue-bar hr, footer hr, .inside .page-banner hr,
.blue-section hr, .feature hr {
  border-color: #5076b4;
}
.banner-content svg, .banner-content svg *, .blue-bar svg, .blue-bar svg *, footer svg, footer svg *, .inside .page-banner svg, .inside .page-banner svg *,
.blue-section svg,
.blue-section svg *, .feature svg, .feature svg * {
  color: inherit;
}
.banner-content .blue, .blue-bar .blue, footer .blue, .inside .page-banner .blue,
.blue-section .blue, .feature .blue {
  color: #a3d4ff !important;
}
.banner-content .green, .blue-bar .green, footer .green, .inside .page-banner .green,
.blue-section .green, .feature .green {
  color: #bce0a4 !important;
}
.banner-content a.button-blue, .blue-bar a.button-blue, footer a.button-blue, .inside .page-banner a.button-blue,
.blue-section a.button-blue, .feature a.button-blue {
  background-color: #a3d4ff;
  border-color: #a3d4ff;
  color: #000000 !important;
}
.banner-content a.button-green, .blue-bar a.button-green, footer a.button-green, .inside .page-banner a.button-green,
.blue-section a.button-green, .feature a.button-green {
  background-color: #bce0a4;
  border-color: #bce0a4;
}
.banner-content a.button-blue:hover, .banner-content a.button-green:hover, .blue-bar a.button-blue:hover, .blue-bar a.button-green:hover, footer a.button-blue:hover, footer a.button-green:hover, .inside .page-banner a.button-blue:hover, .inside .page-banner a.button-green:hover,
.blue-section a.button-blue:hover,
.blue-section a.button-green:hover, .feature a.button-blue:hover, .feature a.button-green:hover {
  background-color: #72a94e;
  border-color: #72a94e;
  color: #000000 !important;
}

.inside .page-banner ul > li:before, .inside-content .blue-bar ul > li:before {
  background-image: url(/images/hat-white.svg);
}
.inside .page-banner h2, .inside .page-banner h4, .inside .page-banner p.callout, .inside-content .blue-bar h2, .inside-content .blue-bar h4, .inside-content .blue-bar p.callout {
  color: #ffffff;
}

.inside-content .blue-section h2, .inside-content .blue-section h4, .inside-content .blue-section p.callout {
  color: #a3d4ff;
}
.inside-content .blue-section p.callout {
  border-color: #5076b4;
}

hr {
  width: 100%;
  margin: 1.33rem 0;
  border-bottom: clamp(1px, 0.1rem, 3px) solid #72a94e;
  display: block;
}

.hat-separator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #72a94e;
}
.hat-separator::before, .hat-separator::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: clamp(1px, 0.1rem, 3px) solid currentColor;
}
.hat-separator .hat {
  width: 2rem;
  height: 2rem;
}

.spacer {
  height: 1.33rem;
}

.large-spacer {
  height: 3rem;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
.socials svg[height="30"] {
  height: 1.66rem;
  width: auto;
  max-width: 3.33rem;
}

.main-content {
  min-height: 30vh;
}
.main-content > div > div, .main-content > form,
.main-content .background-section > div {
  max-width: 72.5rem;
  padding-left: 5%;
  padding-right: 5%;
  margin-left: auto;
  margin-right: auto;
}
.main-content .blue-bar {
  max-width: 100%;
}
.main-content > .background-section, .main-content > div .background-section, .main-content .background-section .splash-testimonial, .main-content .features-wrap {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.main-content .thin-content {
  max-width: 60rem;
}
.main-content .video-container-container {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
.main-content .section-divider, .main-content .wide-content, .main-content .cards-wrapper, .main-content .sidebar-layout {
  max-width: 80rem;
}
.main-content .quicklinks-wrapper {
  max-width: 76.33rem;
}
.main-content .content-box {
  padding: 1.5rem !important;
}
.main-content .content-box p:last-child {
  margin: 0;
}

.blue-bar {
  background-color: #1a468d;
  padding: 0.33rem 5%;
}

.grey-section {
  background-color: #bce0a4;
}

.lgreen-section {
  background-color: #f4f8f1;
}

.blue-section {
  background-color: #1a468d;
}

.hat-bg {
  background-image: url(/images/hat-white.svg);
  background-size: 15rem;
  background-position: top -3rem left -1rem;
}
@media screen and (min-width: 1025px) {
  .hat-bg {
    background-size: 16rem;
  }
  .home .hat-bg {
    background-size: 25rem;
    background-position: top -4.5rem left -1rem;
  }
}

.background-section {
  padding: 1px;
}
.background-section > div > :first-child {
  margin-top: 2rem;
}
.background-section > div > :last-child {
  margin-bottom: 2rem;
}
@media screen and (min-width: 800px) {
  .background-section > div > :last-child:has(.overlap-lower:last-child) {
    margin-bottom: -0.5rem;
  }
}
.background-section > div > .overlap-lower:last-child {
  margin-bottom: -1.66em;
}
.background-section > div > .overlap-upper:first-child {
  margin-top: -1.66em;
}

/*------------------------------------*\
    Footer Styles
\*------------------------------------*/
footer {
  background-color: #1a468d;
  padding: 2rem 5%;
  font-size: 0.85rem;
}
footer .main-links, footer .foot-left ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
footer .main-links li:nth-child(n+2)::before, footer .foot-left ul li:nth-child(n+2)::before {
  content: "|";
  margin: 0 1em;
  display: inline-block;
}
@media screen and (min-width: 700px) and (max-width: 1024px) {
  footer .foot-left ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 699px) {
  footer .foot-left ul {
    display: block;
  }
  footer .foot-left ul li {
    padding: 0.5rem 0;
  }
  footer .foot-left ul li:nth-child(n+2)::before {
    content: none;
  }
}
footer .main-links {
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}
@media screen and (min-width: 800px) {
  footer .main-links {
    font-size: 1.15rem;
  }
}
footer .hat-separator {
  margin: 1rem auto;
}
footer .feature-text {
  font-weight: 700;
  font-size: 1.66rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
footer .lower-footer {
  text-align: center;
}
@media screen and (min-width: 1025px) {
  footer .lower-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }
}
footer .foot-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
footer .foot-left a:hover {
  text-decoration: none;
}
footer .foot-right {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -ms-grid-column: 2;
  grid-column: 2;
}
footer .NCUA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .NCUA img {
  height: 2.5rem;
  width: auto;
}
@media screen and (min-width: 700px) {
  footer .NCUA img {
    height: 4rem;
    width: auto;
  }
}
@media screen and (min-width: 1025px) {
  footer .NCUA {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
footer .copyrights {
  margin-top: 1.33rem;
  font-size: 0.65rem;
}
footer .copyrights .sep {
  display: inline-block;
  margin: 0 1em;
}
@media screen and (max-width: 699px) {
  footer .copyrights .sep {
    display: block;
    font-size: 0;
    margin: 0.5rem auto;
  }
}
@media screen and (min-width: 1025px) {
  footer .copyrights, footer .foot-left {
    text-align: left;
  }
}

.banner-wrapper {
  position: relative;
  background-color: #000000;
  padding-top: 8rem;
}
@media screen and (max-width: 1024px) {
  .banner-wrapper {
    padding-top: 13.5rem;
  }
}

.main-content .dd-links-group {
  font-size: 1.1rem;
  padding: 0.5rem 0;
  font-family: "Comic Sans MS", "Comic Sans", Comic Sans MS, Comic Sans, "Comic Neue", Textile, sans-serif;
  font-style: italic;
  color: #bce0a4;
}
.main-content .dd-links-group #ddLinks {
  color: #bce0a4;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .main-content .dd-links-group {
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .main-content .dd-links-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main-content .links-dropdown {
  line-height: 1.2;
  height: 2.5rem;
  border-bottom: 0.125rem solid #a3d4ff;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .main-content .links-dropdown {
    min-width: 20rem;
    margin-left: 1rem;
  }
}
.main-content .links-dropdown .open-state-up, .main-content .links-dropdown .open-state-down {
  display: none;
  padding: 0.5rem 3rem;
  text-align: center;
}
.main-content .links-dropdown ul {
  max-height: 2.5rem;
  padding: 0 1.5rem 0.5rem;
  margin: 0 -1rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: transparent;
  border-radius: 0 0 0.5rem 0.5rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .main-content .links-dropdown ul {
    margin: 0 auto 0;
    max-height: 2rem;
    padding: 0 2rem 0.5rem 1rem;
  }
}
.main-content .links-dropdown ul li {
  padding: 0.5rem 0 1rem;
  max-width: 40rem;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .main-content .links-dropdown ul li {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1025px) {
  .main-content .links-dropdown ul:hover, .main-content .links-dropdown ul:focus, .main-content .links-dropdown ul:focus-within {
    max-height: 40rem;
    background-color: #1a468d;
  }
}
.main-content .links-dropdown a {
  text-decoration: none;
  color: #ffffff;
}
.main-content .links-dropdown a:hover {
  color: #a3d4ff;
}
.main-content .links-dropdown .arrow {
  width: 1.75rem;
  height: 1.6rem;
  display: inline-block;
}
.main-content .links-dropdown .arrow::before, .main-content .links-dropdown .arrow::after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  width: 1rem;
  height: clamp(1px, 0.1rem, 3px);
  background-color: currentColor;
  border-radius: clamp(1px, 0.1rem, 3px);
}
.main-content .links-dropdown .arrow:hover::before, .main-content .links-dropdown .arrow:hover::after {
  background-color: currentColor;
}
.main-content .links-dropdown .arrow::before, .main-content .links-dropdown .arrow::after {
  right: 0.5rem;
}
.main-content .links-dropdown .arrow::before {
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.main-content .links-dropdown .arrow::after {
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.main-content .links-dropdown .arrow {
  -webkit-transform: scale(0.8) rotate(90deg);
          transform: scale(0.8) rotate(90deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  top: 0.25rem;
  right: 0rem;
  color: #ffffff;
  z-index: 55;
}
@media screen and (min-width: 1025px) {
  .main-content .links-dropdown .arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media screen and (min-width: 1025px) {
  .main-content .links-dropdown {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .main-content .links-dropdown:hover, .main-content .links-dropdown:focus, .main-content .links-dropdown:focus-within {
    color: #ffffff;
  }
  .main-content .links-dropdown:hover .arrow, .main-content .links-dropdown:focus .arrow, .main-content .links-dropdown:focus-within .arrow {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
@media screen and (max-width: 1024px) {
  .main-content .links-dropdown .open-state-down {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 18;
    height: 2.5rem;
  }
  .main-content .links-dropdown.active .open-state-down {
    display: none;
  }
  .main-content .links-dropdown.active .open-state-up {
    display: block;
  }
  .main-content .links-dropdown.active ul {
    margin: 0.25rem -1rem 0;
    padding-top: 1rem;
    max-height: 40rem;
    background-color: #1a468d;
  }
  .main-content .links-dropdown.active .arrow {
    -webkit-transform: scale(0.8) rotate(-90deg);
            transform: scale(0.8) rotate(-90deg);
  }
}

.ts-rates.widget-00 {
  height: 8.5rem;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .ts-rates.widget-00 {
    padding: 0 1rem;
  }
}
.ts-rates.widget-00:has(.slick-initialized) {
  height: auto;
  overflow: initial;
}
.ts-rates.widget-00 h2 {
  display: none;
}
@media screen and (min-width: 1025px) {
  .ts-rates.widget-00:not(:has(.rate-box:nth-child(5))) .slick-track {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.post-list-wrapper:has(.post-item:nth-child(4)) {
  max-width: 100%;
}

.rates-widget {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .rates-widget {
    padding: 0 1rem;
  }
  .rates-widget .slick-prev {
    left: -2%;
  }
  .rates-widget .slick-next {
    right: -2%;
  }
}
@media screen and (max-width: 1024px) {
  .rates-widget {
    padding: 0 2rem;
  }
}
.rates-widget .rate-box {
  position: relative;
  margin: 0;
  padding: 0.5rem 0 1rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media screen and (min-width: 1025px) {
  .rates-widget .rate-box {
    padding: 0.5rem 0 0.5rem;
    /*     &:nth-last-child(n + 4) {
             &::before {
                 content: "";
                 display: block;
                 position: absolute;
                 bottom: 0;
                 height: $lineWidth;
                 width: 15rem;
                 left: 50%;
                 margin-left: -7.5rem;
                 background-color: $color2;
                 clip-path: polygon(0 0, calc(50% - 1rem) 0, calc(50% - 1rem) 100%, calc(50% + 1rem) 100%, calc(50% + 1rem) 0, 100% 0, 100% 100%, 0 100%);
             }
             &::after {
                 content: "";
                 display: block;
                 position: absolute;
                 left: 50%;
                 bottom: -0.75rem;
                 margin-left: -0.75rem;
                 width: 1.75rem;
                 height: 1.75rem;
                 background-image: url(/ResourcePackages/Custom/assets/images/hat.svg);
                 background-size: 1.7rem 1.7rem;
                 background-position: center;
                 background-repeat: no-repeat;
             }
         }
         */
  }
}
.rates-widget .cta-box {
  display: none;
}

.background-section.features-wrap {
  margin-top: 3rem;
  padding: 0 !important;
}

.features-wrap .feature, .home-rates {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.features-wrap .feature .feature-inner, .home-rates .feature-inner {
  margin-bottom: 0 !important;
}

.background-section div:has(.rates-widget) {
  max-width: 90rem;
}

@media screen and (min-width: 800px) {
  .sf_cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 2rem;
  }
  .sf_cols.centered {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sf_cols.end-align {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .sf_cols .sf_colsOut {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .sf_cols .sf_colsOut.sf_2cols_2_67, .sf_cols .sf_colsOut.sf_3cols_2_50, .sf_cols .sf_colsOut.sf_2cols_1_67 {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .sf_cols .sf_colsOut.sf_2cols_1_75, .sf_cols .sf_colsOut.sf_2cols_2_75 {
    -webkit-box-flex: 2.5;
        -ms-flex: 2.5;
            flex: 2.5;
  }
  .sf_cols .sf_colsOut.icon {
    max-width: 7.5rem;
    padding: 0;
  }
  .sf_cols .sf_colsOut.icon img {
    display: block;
    width: 100%;
  }
  .accordion > div:first-child .sf_cols .sf_colsOut.icon {
    max-width: 50px;
  }
}
@media screen and (min-width: 800px) and (-ms-high-contrast: none) {
  .sf_cols .sf_colsOut {
    -webkit-box-flex: 1;
        -ms-flex: 1 auto 0px;
            flex: 1 auto 0;
    padding: 0 20px;
  }
  .sf_cols .sf_colsOut.sf_2cols_2_67, .sf_cols .sf_colsOut.sf_3cols_2_50, .sf_cols .sf_colsOut.sf_2cols_1_67 {
    -webkit-box-flex: 2;
        -ms-flex: 2 auto 0px;
            flex: 2 auto 0;
  }
  .sf_cols .sf_colsOut.sf_2cols_1_75, .sf_cols .sf_colsOut.sf_2cols_2_75 {
    -webkit-box-flex: 2.5;
        -ms-flex: 2.5 auto 0px;
            flex: 2.5 auto 0;
  }
}
@media screen and (min-width: 800px) {
  .sf_cols.icon-pair {
    margin-top: 1.33rem;
    margin-bottom: 1.33rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sf_cols.icon-pair.reverse-pair .text {
    padding-left: 0;
    padding-right: 20px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (min-width: 800px) and (max-width: 1024px) {
  .sf_cols.icon-image-pair .icon {
    max-width: 5rem;
  }
}
@media screen and (max-width: 799px) {
  .sf_cols .sf_colsOut {
    padding: 0;
  }
  .sf_cols .sf_colsOut.icon {
    max-width: 7.5rem;
    margin: 20px auto 10px auto;
    text-align: center;
  }
  .sf_cols .sf_colsOut.image {
    text-align: center;
  }
  .sf_cols .sf_colsOut.image img {
    width: 100%;
  }
}

.flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.flex-grid.grid-3 > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 10rem;
          flex: 1 10rem;
  min-width: 27%;
}
@media screen and (min-width: 800px) {
  .flex-grid.grid-3 > div {
    max-width: 33%;
  }
}
.flex-grid.grid-4 > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 10rem;
          flex: 1 10rem;
  min-width: 21%;
}
@media screen and (min-width: 800px) {
  .flex-grid.grid-4 > div {
    max-width: 25%;
  }
}

section.row {
  background-color: var(--sf-backgrоund-color);
}
section.row > div {
  border-radius: 0.5rem;
  background-color: var(--sf-backgrоund-color);
}
section.row.icon-pair {
  margin-top: 1.33rem;
  margin-bottom: 1.33rem;
}
section.row.icon-pair .icon {
  max-width: 12rem;
}
section.row.icon-pair .icon img {
  display: block;
  width: 100%;
}
.accordion > div:first-child section.row.icon-pair .icon {
  max-width: 2rem;
}
section.row.icon-pair.small-icon .icon {
  max-width: 5rem;
}
section.row.icon-pair.wide-icon .icon {
  max-width: 20rem;
}
@media screen and (min-width: 800px) {
  section.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0 auto;
    gap: 2.5rem;
    border-radius: 0.5rem;
  }
  section.row > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
  }
  section.row > div.col-md-1 {
    -webkit-box-flex: 0.166;
        -ms-flex: 0.166;
            flex: 0.166;
  }
  section.row > div.col-md-15 {
    -webkit-box-flex: 0.25;
        -ms-flex: 0.25;
            flex: 0.25;
  }
  section.row > div.col-md-2 {
    -webkit-box-flex: 0.33;
        -ms-flex: 0.33;
            flex: 0.33;
  }
  section.row > div.col-md-3 {
    -webkit-box-flex: 0.5;
        -ms-flex: 0.5;
            flex: 0.5;
  }
  section.row > div.col-md-4 {
    -webkit-box-flex: 0.66;
        -ms-flex: 0.66;
            flex: 0.66;
  }
  section.row > div.col-md-5 {
    -webkit-box-flex: 0.83;
        -ms-flex: 0.83;
            flex: 0.83;
  }
  section.row > div.col-md-7 {
    -webkit-box-flex: 1.166;
        -ms-flex: 1.166;
            flex: 1.166;
  }
  section.row > div.col-md-8 {
    -webkit-box-flex: 1.33;
        -ms-flex: 1.33;
            flex: 1.33;
  }
  section.row > div.col-md-9 {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
  }
  section.row > div.col-md-10 {
    -webkit-box-flex: 1.66;
        -ms-flex: 1.66;
            flex: 1.66;
  }
  section.row > div.col-md-105 {
    -webkit-box-flex: 1.75;
        -ms-flex: 1.75;
            flex: 1.75;
  }
  section.row > div.col-md-11 {
    -webkit-box-flex: 1.85;
        -ms-flex: 1.85;
            flex: 1.85;
  }
  section.row.centered {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.row.icon-pair.reverse-pair .text {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (max-width: 799px) {
  section.row.icon-pair .icon {
    margin: 0 auto 1rem auto;
  }
  section.row > div[style*="--sf-backgrоund-color"] {
    margin: 1.5rem auto;
  }
}
@media screen and (max-width: 1024px) {
  section.row.break-early {
    display: block;
  }
}

.sf-section.-sc-image::before {
  content: "";
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.8)), color-stop(rgba(255, 255, 255, 0.9)), color-stop(rgba(255, 255, 255, 0.8)), to(transparent)), var(--sf-backgrоund-image);
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8), transparent), var(--sf-backgrоund-image);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sf-section.-sc-image section.row {
  position: relative;
  z-index: 2;
  margin: 3rem auto;
}

.sf-section.-sc-video .sc-video__wrapper, .sf-section.-sc-video .sc-video__wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
  display: block;
}
.sf-section.-sc-video section.row {
  margin: 3rem auto;
}
.sf-section.-sc-video section.row > div:nth-child(n+2) {
  position: relative;
  z-index: 2;
}
.sf-section.-sc-video section.row > div:nth-child(n+2):not([style*="--sf-backgrоund-color: #"]) {
  text-shadow: 0 0 0.5rem #ffffff, 0 0 1rem #ffffff, 0 0 0.25rem #ffffff, 0 0 0.5rem #ffffff, 0 0 2rem #ffffff, 0 0 2px #ffffff;
}

.sf-section.-sc-image, .sf-section.-sc-video {
  position: relative;
  padding: 1px 0;
  margin: 3rem auto 0;
}
.sf-section.-sc-image + *, .sf-section.-sc-video + * {
  margin-top: 3rem;
}
.sf-section.-sc-image + .bg-section, .sf-section.-sc-image + .sf-section.-sc-image, .sf-section.-sc-image + .sf-section.-sc-video, .sf-section.-sc-video + .bg-section, .sf-section.-sc-video + .sf-section.-sc-image, .sf-section.-sc-video + .sf-section.-sc-video {
  margin-top: 0;
}
.bg-section + .sf-section.-sc-image, .bg-section + .sf-section.-sc-video {
  margin-top: 0;
}
.sf-section.-sc-image + .sf-section.mt-3, .sf-section.-sc-video + .sf-section.mt-3 {
  margin-top: 0.33rem;
}
.sf-section.-sc-image + .sf-section.mt-4, .sf-section.-sc-video + .sf-section.mt-4 {
  margin-top: 1.33rem;
}
.sf-section.-sc-image + .sf-section.mt-5, .sf-section.-sc-video + .sf-section.mt-5 {
  margin-top: 2rem;
}

nav ul.mainnav, nav ul.mainnav li {
  list-style-type: none;
}

@media screen and (pointer: fine) and (min-width: 1025px) {
  .nav-control-bar, .mnav-header, .mnav-operators, .magic-hamburger {
    display: none;
  }
  header nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    list-style-type: none;
    height: 100%;
  }
  header nav > ul > li {
    padding-left: 5%;
  }
  header nav > ul > li > a {
    display: block;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    position: relative;
    z-index: 999;
  }
  header nav > ul > li.dropdown {
    text-align: center;
  }
  header nav > ul > li.dropdown > a .arrow {
    width: 1.4rem;
    position: absolute;
    height: 1.4rem;
    background: #72a94e;
    color: #ffffff;
    border-radius: 50%;
    bottom: -1.5rem;
    left: 50%;
    margin-left: -0.7rem;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  header nav > ul > li.dropdown .dropdown-wrap {
    position: absolute;
    max-height: 0;
    overflow: hidden;
    width: 100%;
    left: 18rem;
    line-height: 1;
    border-top: 0;
    z-index: 998;
    list-style-type: none;
    padding: 0 2rem;
    -webkit-transition: all 1s;
    transition: all 1s;
    max-width: 45rem;
  }
  header nav > ul > li.dropdown .dropdown-wrap a[href="#"] {
    pointer-events: none;
  }
  header nav > ul > li.dropdown .dropdown-wrap.wide-menu {
    left: 0;
    right: 0;
    max-width: 100%;
  }
  header nav > ul > li.dropdown .dropdown-wrap.wide-menu .dropdown-container > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header nav > ul > li.dropdown .dropdown-wrap.wide-menu .dropdown-container > ul > li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
    padding-bottom: 1rem;
  }
  header nav > ul > li.dropdown .dropdown-wrap.wide-menu.menu-2 {
    max-width: 65rem;
    left: auto;
  }
  header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-2col .dropdown-container > ul, header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-3col .dropdown-container > ul {
    display: block;
    position: relative;
  }
  header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-2col .dropdown-container > ul > li, header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-3col .dropdown-container > ul > li {
    border: none;
  }
  header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-2col .dropdown-container > ul::after, header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-2col .dropdown-container > ul::before, header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-3col .dropdown-container > ul::after, header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-3col .dropdown-container > ul::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
  }
  header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-2col {
    max-width: 65rem;
    left: auto;
  }
  header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-2col .dropdown-container > ul {
    -webkit-columns: 2 150px;
       -moz-columns: 2 150px;
            columns: 2 150px;
  }
  header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-2col .dropdown-container > ul::after {
    left: 50%;
    border-left: clamp(1px, 0.1rem, 3px) solid #72a94e;
  }
  header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-3col .dropdown-container > ul {
    display: block;
    -webkit-columns: 3 150px;
       -moz-columns: 3 150px;
            columns: 3 150px;
  }
  header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-3col .dropdown-container > ul::after {
    left: 33.3%;
    border-left: clamp(1px, 0.1rem, 3px) solid #72a94e;
  }
  header nav > ul > li.dropdown .dropdown-wrap.wide-menu.children-3col .dropdown-container > ul::before {
    left: 66.6%;
    border-left: clamp(1px, 0.1rem, 3px) solid #72a94e;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0 0.5rem 1.5rem -0.5rem rgba(0, 0, 0, 0.5);
            box-shadow: 0 0.5rem 1.5rem -0.5rem rgba(0, 0, 0, 0.5);
    border-radius: 0.25rem;
    background-color: #ffffff;
    padding: 1.5rem 2rem;
    text-align: left;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container > ul {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container > ul > li > a {
    font-size: 1.05rem;
    padding: 0.75rem 0;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container > ul > li > a:nth-last-child(n+2) {
    padding-bottom: 0.5rem;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container > ul > li ul li a {
    font-size: 0.8rem;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container > ul > li:first-child > a {
    padding-top: 0;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container > ul > li:last-child > a:last-child {
    padding-bottom: 0;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container > ul a {
    padding: 0.3rem 0;
    color: #000000;
    display: block;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container > ul a:hover {
    text-decoration: underline;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container > ul ul > li:last-child a {
    padding-bottom: 0.75rem;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container .nav-extra {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 17.5rem;
    padding: 0 0 0 2rem;
    font-size: 0.8rem;
    text-align: center;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container .nav-extra span {
    display: block;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container .nav-extra .hat svg {
    width: 3rem;
    height: 3rem;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container .nav-extra .hat svg .st0 {
    fill: #72a94e;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container .nav-extra .title {
    font-weight: 700;
    font-size: 1.4rem;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container .nav-extra .summary {
    font-weight: 500;
    margin: 1rem 0;
    line-height: 1.66;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container .nav-extra .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container .nav-extra .small-text {
    font-size: 1.2rem;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container .nav-extra .large-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-wrap: balance;
    text-transform: uppercase;
    margin: 0.5rem auto 1rem;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container .nav-extra .ql-list-navex {
    background: #d7ecc8;
    padding: 1rem 1.5rem;
    text-align: left;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container .nav-extra .ql-list-navex ul li {
    margin: 0.5rem 0;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container .nav-extra .ql-list-navex .navex-title {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    color: #1a468d;
    font-weight: 700;
  }
  header nav > ul > li.dropdown .dropdown-wrap .dropdown-container .nav-extra .ql-list-navex a:hover {
    -webkit-columns: #0c1422;
       -moz-columns: #0c1422;
            columns: #0c1422;
  }
  header nav > ul > li.dropdown .dropdown-wrap.no-ad .nav-extra {
    display: none !important;
  }
  header nav > ul > li.dropdown .dropdown-wrap.three-level-menu .dropdown-container > ul > li {
    border-left: clamp(1px, 0.1rem, 3px) solid #72a94e;
    padding-left: 3.66rem;
    position: relative;
  }
  header nav > ul > li.dropdown .dropdown-wrap.three-level-menu .dropdown-container > ul > li:first-child {
    border: none;
  }
  header nav > ul > li.dropdown .dropdown-wrap.three-level-menu .dropdown-container > ul > li .nav-icon {
    position: absolute;
    left: 0.6rem;
    top: 0;
  }
  header nav > ul > li.dropdown .dropdown-wrap.three-level-menu .dropdown-container > ul > li .nav-icon img {
    width: 2.6rem;
    height: 2.6rem;
  }
  header nav > ul > li.dropdown .dropdown-wrap.three-level-menu .dropdown-container > ul > li > a {
    text-transform: uppercase;
    font-weight: 700;
  }
  header nav > ul > li.dropdown .dropdown-wrap.three-level-menu .dropdown-container > ul > .mnav-operators + li {
    border: none;
  }
  header nav > ul > li.dropdown:hover .dropdown-wrap, header nav > ul > li.dropdown:focus .dropdown-wrap, header nav > ul > li.dropdown:focus-within .dropdown-wrap {
    display: block;
    max-height: 50rem;
    padding: 0.7rem 2rem 3rem;
  }
  header nav > ul > li.dropdown:hover > a .arrow, header nav > ul > li.dropdown:focus > a .arrow, header nav > ul > li.dropdown:focus-within > a .arrow {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  header nav > ul > li.dropdown:last-child .dropdown-wrap, header nav > ul > li.dropdown:nth-last-child(2) .dropdown-wrap, header nav > ul > li.dropdown:nth-last-child(3) .dropdown-wrap {
    right: 0;
    left: auto;
  }
}
@media screen and (pointer: coarse), (pointer: none), (max-width: 1024px) {
  .nav-extra {
    display: none;
  }
  .magic-hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.5rem;
    width: 3rem;
    height: 2rem;
    margin-left: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 99999;
    background-color: transparent;
    color: #1a468d;
    padding: 1rem;
    height: 3.5rem;
    width: 4rem;
  }
  .magic-hamburger:hover {
    cursor: pointer;
    cursor: hand;
  }
  .magic-hamburger span {
    width: 2rem;
    min-width: 2rem;
    height: 0.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 0.25rem;
    background-color: currentColor;
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .magic-hamburger span::before, .magic-hamburger span::after {
    content: " ";
    width: 2rem;
    height: 0.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 0.25rem;
    background-color: currentColor;
    position: absolute;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    left: 0;
  }
  .magic-hamburger span::before {
    top: -0.6rem;
  }
  .magic-hamburger span::after {
    top: 0.6rem;
  }
  .magic-hamburger.hamburger-close span {
    height: 1px;
    width: 1px;
    background-color: transparent;
  }
  .magic-hamburger.hamburger-close span::before, .magic-hamburger.hamburger-close span::after {
    top: -2px;
  }
  .magic-hamburger.hamburger-close span::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .magic-hamburger.hamburger-close span::before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .nav-control-bar {
    height: 2rem;
    position: relative;
    top: 0;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #ffffff;
  }
  .nav-extras {
    display: none;
  }
  .topnav {
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    color: #1a468d;
    background-clip: content-box;
    max-height: 100vh;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow-y: auto;
    width: 100%;
    margin-left: -110%;
    -webkit-transition: margin-left 1s;
    transition: margin-left 1s;
    height: 100dvh;
    line-height: 1.2;
  }
  .topnav.mobile-nav-open {
    margin-left: 0;
  }
  .topnav a {
    color: inherit;
  }
  .topnav nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .topnav nav > ul {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-top: 3rem;
  }
  .topnav nav > ul a {
    display: block;
    padding: 0.5rem 0;
    text-decoration: none;
    max-height: 10rem;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    position: relative;
  }
  .topnav nav > ul a .arrow {
    width: 3rem;
    height: 3rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .topnav nav > ul a .arrow::before, .topnav nav > ul a .arrow::after {
    width: 1rem;
  }
  .topnav nav > ul a .arrow::before {
    left: 1.5rem;
    -webkit-transform: rotate(-46deg);
            transform: rotate(-46deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  .topnav nav > ul a .arrow::after {
    left: 1.5rem;
    -webkit-transform: rotate(46deg);
            transform: rotate(46deg);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    margin-top: -1px;
  }
  .topnav nav > ul > li:first-child > a {
    padding-top: 1.5rem;
  }
  .topnav nav > ul > li > ul > .nav-return + li > a, .topnav nav > ul > li > ul > li.dropdown-menu-open > a {
    padding-top: 1.5rem;
  }
  .topnav nav > ul > li > a {
    font-size: 1.7rem;
    line-height: 2rem;
    padding: 1rem 0;
    text-transform: uppercase;
    font-weight: 700;
    color: #1a468d;
  }
}
@media screen and (pointer: coarse) and (max-width: 499px), screen and (pointer: none) and (max-width: 499px), screen and (max-width: 1024px) and (max-width: 499px) {
  .topnav nav > ul > li > a {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
}
@media screen and (pointer: coarse), (pointer: none), (max-width: 1024px) {
  .topnav nav > ul > li ul > li {
    color: #000000;
  }
  .topnav nav > ul > li ul > li > a {
    font-size: 1.333rem;
  }
  .topnav nav > ul > li ul > li ul li {
    color: #000000;
  }
  .topnav nav > ul > li ul > li ul li a {
    font-size: 1rem;
    font-weight: 400;
  }
  .topnav nav > ul .dropdown-submenu {
    padding-bottom: 14px;
  }
  .topnav nav > ul .dropdown-submenu:last-child {
    padding-bottom: 0;
  }
  .topnav nav > ul > li > ul, .topnav nav > ul > li .main-dropdown-menu {
    width: 100%;
    max-height: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
    margin: auto;
  }
  .topnav nav > ul > li > ul .nav-return, .topnav nav > ul > li .main-dropdown-menu .nav-return {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: fixed;
    top: 3px;
    right: 110%;
    -webkit-transition: all 1.2s;
    transition: all 1.2s;
    background-color: transparent;
    border: 3px solid #ffffff;
  }
  .topnav nav > ul > li > ul .nav-return::before, .topnav nav > ul > li > ul .nav-return::after, .topnav nav > ul > li .main-dropdown-menu .nav-return::before, .topnav nav > ul > li .main-dropdown-menu .nav-return::after {
    content: " ";
    display: block;
    position: absolute;
    top: 50%;
    width: 16px;
    height: 4px;
    background-color: #000000;
    border-radius: 4px;
  }
  .topnav nav > ul > li > ul .nav-return:hover::before, .topnav nav > ul > li > ul .nav-return:hover::after, .topnav nav > ul > li .main-dropdown-menu .nav-return:hover::before, .topnav nav > ul > li .main-dropdown-menu .nav-return:hover::after {
    background-color: #000000;
  }
  .topnav nav > ul > li > ul .nav-return::before, .topnav nav > ul > li > ul .nav-return::after, .topnav nav > ul > li .main-dropdown-menu .nav-return::before, .topnav nav > ul > li .main-dropdown-menu .nav-return::after {
    left: 10px;
  }
  .topnav nav > ul > li > ul .nav-return::before, .topnav nav > ul > li .main-dropdown-menu .nav-return::before {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .topnav nav > ul > li > ul .nav-return::after, .topnav nav > ul > li .main-dropdown-menu .nav-return::after {
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .topnav nav > ul.child-menu-open > li:not(.dropdown-menu-open) > a, .topnav nav > .child-child-menu-open > a {
    max-height: 0;
    padding: 0 !important;
    -webkit-transition: all 0.5s 0.2s;
    transition: all 0.5s 0.2s;
  }
  .topnav nav > ul > li.dropdown-menu-open .dropdown-container > ul, .topnav nav > ul > li.dropdown-menu-open .main-dropdown-menu {
    max-height: 2000px;
    -webkit-transition: all 1s 0.5s;
    transition: all 1s 0.5s;
  }
  .topnav nav > ul > li.dropdown-menu-open .dropdown-container > ul > .nav-return, .topnav nav > ul > li.dropdown-menu-open .main-dropdown-menu > .nav-return {
    right: 60px;
  }
  .topnav nav > .child-menu-open > .dropdown-menu-open > a .arrow {
    color: #cf4520;
  }
  .topnav nav > .child-menu-open > .dropdown-menu-open > a:hover .arrow {
    color: #72a94e;
  }
  .top-nav {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 40px 20px;
  }
  .mnav-title {
    display: none;
  }
  .mnav-extras {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 100%;
    color: #000000;
    margin-top: auto;
    text-align: center;
    padding: 20px 0;
    font-size: 1.33rem;
  }
  .mnav-extras a {
    color: #000000;
    text-decoration: none;
    display: inline-block;
  }
  .mnav-extras img {
    width: 1.33rem;
    height: 1.33rem;
    margin-right: 5px;
    margin-bottom: -2px;
  }
  .mnav-extras svg .st0, .mnav-extras svg .st1, .mnav-extras svg .st2, .mnav-extras svg .st3, .mnav-extras svg .st4 {
    fill: currentColor;
  }
  .mnav-extras ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .mnav-extras ul li {
    padding: 0 20px;
  }
  .mnav-extras ul.social-links li {
    padding: 0 10px;
  }
}
/*------------------------------------*\
    Fancybox
\*------------------------------------*/
.customfancybox-wrap,
.customfancybox-skin,
.customfancybox-outer,
.customfancybox-inner,
.customfancybox-image,
.customfancybox-wrap iframe,
.customfancybox-wrap object,
.customfancybox-nav,
.customfancybox-nav span,
.customfancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.customfancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.customfancybox-skin {
  position: relative;
  background: #fff;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.customfancybox-opened {
  z-index: 8030;
}

.customfancybox-opened .customfancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.customfancybox-outer, .customfancybox-inner {
  position: relative;
}

.customfancybox-inner {
  overflow: hidden;
}

.customfancybox-type-iframe .customfancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.customfancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.customfancybox-image, .customfancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.customfancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#customfancybox-loading, .customfancybox-close, .customfancybox-prev span, .customfancybox-next span {
  background-image: url("../images/fancybox_sprite.png");
}

#customfancybox-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;
}

#customfancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../images/fancybox_loading.gif") center center no-repeat;
}

.customfancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.customfancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../images/blank.gif");
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}

.customfancybox-prev {
  left: 0;
}

.customfancybox-next {
  right: 0;
}

.customfancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.customfancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.customfancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.customfancybox-nav:hover span {
  visibility: visible;
}

.customfancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

.customfancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.customfancybox-lock body {
  overflow: hidden !important;
}

.customfancybox-lock-test {
  overflow-y: hidden !important;
}

.customfancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 999999;
  background: url("../images/customfancybox_overlay.png");
}

.customfancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.customfancybox-lock .customfancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

.customfancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.customfancybox-opened .customfancybox-title {
  visibility: visible;
}

.customfancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.customfancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  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;
}

.customfancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.customfancybox-title-inside-wrap {
  padding-top: 10px;
}

.customfancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

@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) {
  #customfancybox-loading, .customfancybox-close, .customfancybox-prev span, .customfancybox-next span {
    background-image: url("../images/fancybox_sprite@2x.png");
    background-size: 44px 152px;
  }
  #customfancybox-loading div {
    background-image: url("../images/fancybox_loading@2x.gif");
    background-size: 24px 24px;
  }
}
/*------------------------------------*\
    Announcements
\*------------------------------------*/
.announcement-wrap {
  display: none;
  background-color: #e67e22;
  padding: 10px 0;
}
.announcement-wrap a {
  color: inherit;
}
.announcement-wrap .row {
  display: table;
}
.announcement-wrap .announcements {
  display: table-row;
}
.announcement-wrap .announcement-list {
  display: table-cell;
  width: 95%;
  vertical-align: middle;
  color: #fff;
  text-align: center;
}
.announcement-wrap .arrow {
  display: table-cell;
  width: 5%;
  text-align: right;
  vertical-align: middle;
  min-width: 20px;
  padding-right: 5px;
}
.announcement-wrap .arrow img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.announcement-wrap .arrow img:hover {
  cursor: pointer;
}

/*------------------------------------*\
    Polls
\*------------------------------------*/
.lk-poll,
.left-sidebar .lk-poll {
  margin: 20px 0;
}
.lk-poll h3, .lk-poll legend,
.left-sidebar .lk-poll h3,
.left-sidebar .lk-poll legend {
  margin: 0 0 10px 0;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #1a468d;
}
.lk-poll label,
.left-sidebar .lk-poll label {
  display: block;
  margin: 0 0 0.66rem 0;
  font-weight: 800;
  position: relative;
  border-bottom: 0.15rem solid #bad4e5;
  padding-bottom: 0.33rem;
}
.lk-poll label::before,
.left-sidebar .lk-poll label::before {
  content: "";
  width: 0;
  position: absolute;
  height: 0.15rem;
  bottom: -0.15rem;
  left: 0;
  background-color: #72a94e;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.lk-poll label:hover,
.left-sidebar .lk-poll label:hover {
  cursor: pointer;
}
.lk-poll label:hover::before,
.left-sidebar .lk-poll label:hover::before {
  width: 100%;
}
.lk-poll input[type=radio],
.left-sidebar .lk-poll input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  padding: 0.1rem;
  background-clip: content-box;
  border: clamp(1px, 0.1rem, 3px) solid #72a94e;
  border-radius: 50%;
  margin-right: 0.25rem;
}
.lk-poll input[type=radio]:hover, .lk-poll input[type=radio]:checked,
.left-sidebar .lk-poll input[type=radio]:hover,
.left-sidebar .lk-poll input[type=radio]:checked {
  background-color: #72a94e;
}
.lk-poll input[type=button],
.left-sidebar .lk-poll input[type=button] {
  display: block;
  color: #fff;
  border: 1px solid #1a468d;
  padding: 5px 12px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 16px;
  background-color: #1a468d;
  margin: 15px 0 0 0;
}
.lk-poll input[type=button]:hover,
.left-sidebar .lk-poll input[type=button]:hover {
  background-color: #1a468d;
  cursor: pointer;
}
.lk-poll .result-bar, .lk-poll .result-answer, .lk-poll .result-wrap,
.left-sidebar .lk-poll .result-bar,
.left-sidebar .lk-poll .result-answer,
.left-sidebar .lk-poll .result-wrap {
  padding: 0;
  margin: 0;
  line-height: normal;
}
.lk-poll .result-answer,
.left-sidebar .lk-poll .result-answer {
  margin: 0 0 3px 0;
}
.lk-poll .result-wrap,
.left-sidebar .lk-poll .result-wrap {
  background-color: #bce0a4;
  margin: 0 0 0.33rem 0;
}
.lk-poll .result-bar,
.left-sidebar .lk-poll .result-bar {
  background-color: #72a94e;
  height: 1.5rem;
}

/*------------------------------------*\
    Events
\*------------------------------------*/
/* --- List View --- */
.ts-event-list {
  font-size: 0.85rem;
}
.ts-event-list .event h2 {
  margin-top: 0;
}
.ts-event-list .event p {
  margin-bottom: 0;
}
.ts-event-list .event a {
  text-decoration: none;
}
.ts-event-list .event-dates {
  font-style: italic;
  margin: 0 0 0.66rem 0;
  font-weight: 500;
}

/* --- Event View --- */
.event-details {
  padding: 20px;
}
.event-details > div {
  margin: 15px 0;
}
.event-details > div span {
  font-weight: bold;
}
.event-details h3 {
  color: #1a468d;
  font-size: 30px;
  line-height: 30px;
  font-weight: 500;
}
.event-details .event-dates {
  font-style: italic;
}

/*------------------------------------*\
    External Links
\*------------------------------------*/
.ui-widget-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a468d;
  background: rgba(26, 70, 141, 0.9);
  position: fixed;
  z-index: 99999998;
  font-family: "Montserrat", sans-serif;
  display: none;
}

/* --- Dialog Box --- */
.external-dialog {
  position: absolute;
  padding: 0.2em;
  width: 300px;
  overflow: hidden;
  background-color: white;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 99999999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-size: 13px;
}
.external-dialog .ui-dialog-titlebar {
  padding: 0.5em 1em 0.3em;
  position: relative;
  background-color: #1a468d;
  min-height: 30px;
}
.external-dialog .ui-dialog-buttonpane button {
  float: right;
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  line-height: 1.4em;
  width: auto;
  overflow: visible;
  outline: none;
  border: 0;
}
.external-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: white;
  zoom: 1;
}
.external-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 16px 0.2em 0;
  color: white;
  font-weight: bold;
}
.external-dialog .ui-dialog-titlebar-close {
  display: none;
}
.external-dialog p {
  margin: 0 0 15px 0;
}
.external-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 19px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 18px;
  display: none;
}
.external-dialog .ui-dialog-buttonset button {
  background-color: #1a468d;
  color: white;
}

/* --- Full Screen --- */
.external-full {
  position: absolute;
  background: transparent !important;
  border: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  top: 0 !important;
  width: 100% !important;
  left: auto !important;
  margin: 20px auto 0 auto;
  z-index: 99999999;
}
.external-full h1, .external-full h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
}
.external-full:focus {
  outline: none;
}
.external-full .ui-state-default, .external-full .ui-widget-content .ui-state-default {
  background: transparent !important;
}
.external-full .ui-widget-content {
  background: transparent !important;
  border: 0;
  color: #fff;
  font-size: 21px;
  line-height: 32px;
  max-width: 800px;
  margin: 0 auto !important;
  position: relative !important;
  padding: 30px 20px 0px 20px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -ms-hyphens: auto;
  hyphens: auto;
}
.external-full .ui-widget-content p {
  margin: 0 0 20px 0 !important;
}
.external-full .ui-widget-content p:last-of-type {
  margin: 0 !important;
}
.external-full .ui-widget-header {
  background: transparent;
  border: 0;
  display: none;
}
.external-full .ui-dialog-buttonpane {
  text-align: center !important;
}
.external-full .ui-dialog-buttonpane button {
  float: none !important;
  display: block !important;
  color: #fff !important;
  font-weight: normal !important;
  padding: 0 !important;
  font-size: 16px !important;
  border-bottom: 2px solid #fff !important;
  margin: 0 auto !important;
  background-color: transparent;
}
.external-full .ui-dialog-buttonpane button:hover {
  cursor: pointer;
}
.external-full .ui-dialog-buttonpane button:first-of-type {
  border: 2px solid #fff !important;
  padding: 10px 30px !important;
  margin: 0 auto 30px auto !important;
  border-radius: 50px !important;
  font-size: 21px !important;
  line-height: 32px !important;
  -webkit-transition: all 0.4s !important;
  transition: all 0.4s !important;
}
.external-full .ui-dialog-buttonpane button:first-of-type:hover {
  background-color: #fff !important;
  color: #1a468d !important;
}

/*------------------------------------*\
    Font Selector
\*------------------------------------*/
/*
.font-options {
    line-height: 0;
    &::before {      
        margin: 0 0.66em 0 1em;
    }
    @include tablet {
       display: none;
    }
    & a {
        display: inline-block;
        text-decoration: none;
        padding: 0 0.25rem;
        &#font-small {
            font-size: $smallerFont;
        }
        &#font-med {
            font-size: 1rem;
        }
        &#font-large {
            font-size: 1.2rem;
            margin-right: 0;
        }
        &.active {
            text-decoration: underline;
        }
        &:hover {
            text-decoration: none;
        }
    }
}
*/
.font-options {
  position: relative;
}
@media screen and (pointer: coarse), (pointer: none), (max-width: 1024px) {
  .font-options {
    display: none;
  }
}
.font-options a.trigger.active {
  color: #d7ecc8;
  font-weight: 500;
  text-decoration: none;
}
.font-options a#font-small {
  font-size: 0.8rem;
}
.font-options a#font-med {
  font-size: 1rem;
}
.font-options a#font-large {
  font-size: 1.2rem;
  margin-right: 0;
}
.font-options a:hover {
  text-decoration: none;
}
.font-options .htop-dd a {
  margin: 0.5rem 0;
  display: block;
}
.font-options .htop-dd a.active {
  text-decoration: underline;
  text-decoration-color: #72a94e;
}
.font-options .htop-dd {
  display: none;
  position: absolute;
  z-index: 9999;
  background: #002e5d;
  padding: 0.5rem 1rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.2;
  width: max-content;
  min-width: 11.1rem;
  max-width: 15rem;
  left: 10.5rem;
  bottom: -2.5rem;
}
.font-options .htop-dd::before {
  content: "";
  position: absolute;
  bottom: 2.5rem;
  left: 0rem;
  border: 0.5rem solid transparent;
  border-left-color: #1a468d;
}

/*------------------------------------*\
    Banners
\*------------------------------------*/
.ts-banners-v2 {
  position: relative;
  overflow: hidden;
}
.ts-banners-v2 .cycle-playpause {
  display: none;
}
.ts-banners-v2 .cycle-slideshow {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  min-height: 22w;
  min-height: clamp(300px, 22vw, 440px);
}
.ts-banners-v2 .cycle-slideshow > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.ts-banners-v2 .cycle-slideshow img {
  display: none;
  width: 100%;
  border: 0;
}
.ts-banners-v2 .cycle-slideshow > a:first-of-type img, .ts-banners-v2 .cycle-slideshow .cycle-slide img {
  display: block;
}
.ts-banners-v2 .hybrid-banner {
  position: relative !important;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  background-color: #000000;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  overflow: hidden;
}
.ts-banners-v2 .hybrid-banner .banner-image {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -12rem;
}
.ts-banners-v2 .hybrid-banner .banner-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .ts-banners-v2 .hybrid-banner .banner-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.ts-banners-v2 .hybrid-banner .banner-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  position: relative;
  z-index: 2;
  font-size: 1.33rem;
  margin-left: -10rem;
  margin-left: auto;
  padding: 2.66rem 5rem 3.33rem 11rem;
  clip-path: polygon(9rem 0%, 100% 0%, 100% 100%, 0% 100%);
  background-image: linear-gradient(110deg, rgba(12, 20, 34, 0.5), #002e5d 25%, #1a468d);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .ts-banners-v2 .hybrid-banner .banner-content {
    font-size: 1rem;
    padding: 4.5rem 5% 3.33rem 6.33rem;
    margin-bottom: -1px;
    background-image: linear-gradient(110deg, rgba(12, 20, 34, 0.75), rgba(0, 46, 93, 0.85), #1a468d);
    -webkit-box-flex: 1.33;
        -ms-flex: 1.33;
            flex: 1.33;
  }
}
.ts-banners-v2 .hybrid-banner .banner-content .banner-subheader {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 0.66rem;
}
@media screen and (max-width: 1024px) {
  .ts-banners-v2 .hybrid-banner .banner-content .banner-subheader {
    max-width: 12rem;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    text-wrap: balance;
  }
}
.ts-banners-v2 .hybrid-banner .banner-content .banner-description {
  max-width: 25rem;
  margin: 0 auto;
  text-wrap: pretty;
}
.ts-banners-v2 .hybrid-banner .banner-content .banner-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin: 1.33rem auto 0;
  font-size: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ts-banners-v2 .hybrid-banner .banner-content .banner-cta a {
  font-weight: 700;
}
.ts-banners-v2 img {
  display: block;
  width: 100%;
}
.ts-banners-v2 .cycle-pager-wrap {
  text-align: right;
  position: absolute;
  z-index: 999;
  bottom: 0.66rem;
  right: 1rem;
}
@media screen and (max-width: 1024px) {
  .ts-banners-v2 .cycle-pager-wrap {
    display: none;
  }
}
.ts-banners-v2 .cycle-pager-wrap .cycle-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ts-banners-v2 .cycle-pager-wrap span {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  background-color: #ffffff;
  margin: 0 4px;
  width: 15px;
  height: 15px;
  border: 1px solid #a3d4ff;
  border-radius: 50%;
  color: #000000;
}
.ts-banners-v2 .cycle-pager-wrap span:hover {
  background-color: #72a94e;
}
.ts-banners-v2 .cycle-pager-wrap span.cycle-pager-active {
  background-color: #1a468d;
  color: #ffffff;
}
.ts-banners-v2 .cycle-pager-wrap span a {
  display: block;
  width: 15px;
  height: 15px;
  color: #ccc;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.ts-banners-v2 .cycle-pager-wrap span.cycle-playpause {
  border: none;
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.ts-banners-v2 .cycle-pager-wrap span.cycle-playpause a::before {
  content: " ";
  width: 6px;
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 50%;
  margin-left: -3px;
  border-left: 2px solid #1a468d;
  border-right: 2px solid #1a468d;
}
.ts-banners-v2 .cycle-pager-wrap span.cycle-playpause a:hover::before {
  border-color: #1a468d;
}
.ts-banners-v2 .cycle-pager-wrap span.cycle-playpause a.play-button::before {
  width: 0;
  top: 2px;
  border: 5px solid transparent;
  border-left: 7px solid #1a468d;
}
.ts-banners-v2 .cycle-pager-wrap span.cycle-playpause a.play-button:hover::before {
  border-left-color: #1a468d;
}
.ts-banners-v2 .cycle-pager-wrap span.cycle-playpause svg {
  fill: #1a468d;
  height: 6px;
  display: none;
}

@media print {
  nav,
  footer,
  aside,
  .left-sidebar,
  .right-sidebar,
  .sidebar,
  .online-banking,
  .bottom-links-wrapper {
    display: none;
  }
  main {
    width: 100%;
    border: 0;
  }
  main ul li {
    list-style-type: initial;
  }
  .lkcs {
    display: none;
  }
}