@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;
  }
}

/*------------------------------------*\
    Inside Styles
\*------------------------------------*/
.page-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 25vw;
  min-height: clamp(300px, 22vw, 440px);
  background-size: cover;
  position: relative;
  background-position: center;
  margin-top: 13.5rem;
  background-color: #1a468d;
}
@media screen and (max-width: 1024px) {
  .page-banner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }
  .page-banner > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
@media screen and (min-width: 1025px) {
  .page-banner {
    margin-top: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.page-banner .banner-content {
  position: relative;
  padding: 4rem 7rem 3rem 5%;
  clip-path: polygon(0% 0%, calc(100% - 9rem) 0%, 100% 100%, 0% 100%);
  background-image: linear-gradient(-110deg, rgba(12, 20, 34, 0.75), #1a468d);
  margin-right: -10rem;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  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;
  z-index: 2;
  margin-bottom: -1px;
}
@media screen and (min-width: 1025px) {
  .page-banner .banner-content {
    max-width: 60%;
    min-width: 40%;
    padding: 3rem 11rem 3rem 5%;
    background-image: linear-gradient(-110deg, rgba(12, 20, 34, 0.5), #002e5d 30%, #1a468d);
  }
}
@media screen and (max-width: 1024px) {
  .page-banner .banner-content {
    width: 80%;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
.page-banner .banner-content a.button {
  font-weight: 700;
  font-size: 0.9rem;
}
.page-banner .banner-content .buttons.ctas a.button {
  min-width: 6rem;
}
@media screen and (max-width: 699px) {
  .page-banner .banner-content .buttons.ctas > li,
  .page-banner .banner-content a.button {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.page-banner .banner-content ul {
  margin-bottom: 0.99rem;
}
.page-banner .banner-content ul.check-list > li::before {
  background-size: 0.8em 0.8em;
  background-image: url(/images/red-check.svg);
}
@media screen and (max-width: 699px) {
  .page-banner .banner-content ul.cols-2 {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
  }
}
.page-banner .banner-content .button-wrap {
  margin: 0;
}
.page-banner .header-image {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  margin-left: -12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .page-banner .header-image {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
.page-banner .header-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-position: top center;
     object-position: top center;
}
@media screen and (max-width: 1024px) {
  .page-banner .header-image img {
    -o-object-position: top left;
       object-position: top left;
  }
}

.blue-bar {
  font-size: 0.85rem;
  line-height: 1.15;
}
@media screen and (min-width: 1025px) {
  .blue-bar {
    font-size: 0.75rem;
    position: sticky;
    top: 8rem;
    z-index: 9;
  }
  .scrolled .blue-bar {
    top: 5.66rem;
  }
  .blue-bar:not(:has(div)) {
    display: none;
  }
}
.sfPageEditor .blue-bar {
  position: static;
  display: block !important;
}
.blue-bar ul {
  text-align: center;
}
@media screen and (max-width: 799px) {
  .blue-bar ul li {
    padding: 1rem 0;
    position: relative;
  }
  .blue-bar ul li:nth-child(n+2)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    margin-right: -3rem;
    width: 6rem;
    border-bottom: clamp(1px, 0.1rem, 3px) solid #5076b4;
  }
}
@media screen and (min-width: 800px) {
  .blue-bar ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0.33rem auto;
  }
  .blue-bar ul li {
    padding: 0.5rem 1.5rem;
  }
  .blue-bar ul li:nth-child(n+2) {
    border-left: clamp(1px, 0.1rem, 3px) solid #5076b4;
  }
}
.blue-bar:has(div:empty) {
  display: none;
}

.inside-contentarea, .customfancybox-inner {
  max-width: 100%;
  overflow: hidden;
}
.inside-contentarea h1, .inside-contentarea h2.main-title, .customfancybox-inner h1, .customfancybox-inner h2.main-title {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.66rem;
}
@media screen and (min-width: 800px) {
  .inside-contentarea h1, .inside-contentarea h2.main-title, .customfancybox-inner h1, .customfancybox-inner h2.main-title {
    font-size: 2.1rem;
  }
}
.inside-contentarea h2, .customfancybox-inner h2 {
  font-size: 1.57rem;
  color: #1a468d;
  line-height: 1.15;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.66rem;
}
@media screen and (min-width: 1025px) {
  .inside-contentarea h2, .customfancybox-inner h2 {
    font-size: 1.9rem;
  }
}
.inside-contentarea h3, .customfancybox-inner h3 {
  font-size: 1.33rem;
  line-height: 1.15;
  color: inherit;
  font-weight: 700;
  margin-top: 1.33rem;
  margin-bottom: 0.66rem;
}
.inside-contentarea h4, .customfancybox-inner h4 {
  color: #1a468d;
  font-size: 1.15rem;
  text-transform: uppercase;
  font-weight: 700;
}
.inside-contentarea h5, .customfancybox-inner h5 {
  font-weight: 800;
}
.inside-contentarea h6, .customfancybox-inner h6 {
  font-weight: 500;
}
.inside-contentarea h5, .inside-contentarea h6, .customfancybox-inner h5, .customfancybox-inner h6 {
  font-size: 1rem;
}
.inside-contentarea p, .customfancybox-inner p {
  margin-bottom: 1.33rem;
  line-height: 1.6;
}
.inside-contentarea p.callout, .customfancybox-inner p.callout {
  font-size: 1.33rem;
  font-weight: 500;
  color: #1a468d;
  font-style: italic;
  text-align: center;
  border-top: clamp(1px, 0.1rem, 3px) solid #72a94e;
  border-bottom: clamp(1px, 0.1rem, 3px) solid #72a94e;
  padding: 1.33rem 0;
}
.inside-contentarea .cols-2, .customfancybox-inner .cols-2 {
  -webkit-columns: 2 200px;
     -moz-columns: 2 200px;
          columns: 2 200px;
  gap: 3rem;
}
.inside-contentarea .cols-3, .customfancybox-inner .cols-3 {
  -webkit-columns: 3 200px;
     -moz-columns: 3 200px;
          columns: 3 200px;
  gap: 3rem;
}
.inside-contentarea .icon-pair h2:first-child, .inside-contentarea .icon-pair h3:first-child, .customfancybox-inner .icon-pair h2:first-child, .customfancybox-inner .icon-pair h3:first-child {
  margin-top: 0;
}
.inside-contentarea .icon-pair p:last-child, .customfancybox-inner .icon-pair p:last-child {
  margin-bottom: 0;
}
.inside-contentarea ul, .inside-contentarea ol, .customfancybox-inner ul, .customfancybox-inner ol {
  padding-left: 1.5em;
  text-align: left;
  margin-bottom: 1.33rem;
}
.inside-contentarea ul > li, .inside-contentarea ol > li, .customfancybox-inner ul > li, .customfancybox-inner ol > li {
  position: relative;
  padding: 0.25em 0;
}
.inside-contentarea ul > li::before, .inside-contentarea ul > li::marker, .inside-contentarea ol > li::before, .inside-contentarea ol > li::marker, .customfancybox-inner ul > li::before, .customfancybox-inner ul > li::marker, .customfancybox-inner ol > li::before, .customfancybox-inner ol > li::marker {
  color: #1a468d;
}
.inside-contentarea ul ul, .inside-contentarea ul ol, .inside-contentarea ol ul, .inside-contentarea ol ol, .customfancybox-inner ul ul, .customfancybox-inner ul ol, .customfancybox-inner ol ul, .customfancybox-inner ol ol {
  margin: 0;
}
.inside-contentarea ul ul > li::before, .inside-contentarea ul ul li::marker, .inside-contentarea ul ol > li::before, .inside-contentarea ul ol li::marker, .inside-contentarea ol ul > li::before, .inside-contentarea ol ul li::marker, .inside-contentarea ol ol > li::before, .inside-contentarea ol ol li::marker, .customfancybox-inner ul ul > li::before, .customfancybox-inner ul ul li::marker, .customfancybox-inner ul ol > li::before, .customfancybox-inner ul ol li::marker, .customfancybox-inner ol ul > li::before, .customfancybox-inner ol ul li::marker, .customfancybox-inner ol ol > li::before, .customfancybox-inner ol ol li::marker {
  color: #72a94e;
}
.inside-contentarea ul ul ul li::before, .inside-contentarea ul ul ul li::marker, .inside-contentarea ul ul ol li::before, .inside-contentarea ul ul ol li::marker, .inside-contentarea ul ol ul li::before, .inside-contentarea ul ol ul li::marker, .inside-contentarea ul ol ol li::before, .inside-contentarea ul ol ol li::marker, .inside-contentarea ol ul ul li::before, .inside-contentarea ol ul ul li::marker, .inside-contentarea ol ul ol li::before, .inside-contentarea ol ul ol li::marker, .inside-contentarea ol ol ul li::before, .inside-contentarea ol ol ul li::marker, .inside-contentarea ol ol ol li::before, .inside-contentarea ol ol ol li::marker, .customfancybox-inner ul ul ul li::before, .customfancybox-inner ul ul ul li::marker, .customfancybox-inner ul ul ol li::before, .customfancybox-inner ul ul ol li::marker, .customfancybox-inner ul ol ul li::before, .customfancybox-inner ul ol ul li::marker, .customfancybox-inner ul ol ol li::before, .customfancybox-inner ul ol ol li::marker, .customfancybox-inner ol ul ul li::before, .customfancybox-inner ol ul ul li::marker, .customfancybox-inner ol ul ol li::before, .customfancybox-inner ol ul ol li::marker, .customfancybox-inner ol ol ul li::before, .customfancybox-inner ol ol ul li::marker, .customfancybox-inner ol ol ol li::before, .customfancybox-inner ol ol ol li::marker {
  color: #72a94e;
}
.inside-contentarea ul.cols-2 li, .inside-contentarea ul.cols-3 li, .inside-contentarea ol.cols-2 li, .inside-contentarea ol.cols-3 li, .customfancybox-inner ul.cols-2 li, .customfancybox-inner ul.cols-3 li, .customfancybox-inner ol.cols-2 li, .customfancybox-inner ol.cols-3 li {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.inside-contentarea ul > li::before, .customfancybox-inner ul > li::before {
  content: "";
  background-image: url(/images/hat.svg);
  display: block;
  width: 1.5em;
  height: 1em;
  background-size: 1.1em 0.9em;
  font-weight: bold;
  margin-left: -1.5em;
  position: absolute;
  line-height: 0.75em;
  top: 0.433em;
  background-position: center left;
}
.inside-contentarea ul.check-list > li::before, .customfancybox-inner ul.check-list > li::before {
  background-image: url(/images/green-check.svg);
  top: 0.4em;
}
.inside-contentarea ol > li, .customfancybox-inner ol > li {
  list-style: numeric;
}
.inside-contentarea ol > li::marker, .customfancybox-inner ol > li::marker {
  font-weight: 700;
}
.inside-contentarea ol ol > li, .customfancybox-inner ol ol > li {
  list-style: lower-alpha;
}
.inside-contentarea ol ol ol > li, .customfancybox-inner ol ol ol > li {
  list-style: lower-roman;
}
.inside-contentarea ul.buttons, .inside-contentarea ul.quicklinks, .inside-contentarea ul.pagination, .inside-contentarea ul.mobile-apps, .inside-contentarea ul.testimonial-dots,
.inside-contentarea ul.testimonial-slider, .customfancybox-inner ul.buttons, .customfancybox-inner ul.quicklinks, .customfancybox-inner ul.pagination, .customfancybox-inner ul.mobile-apps, .customfancybox-inner ul.testimonial-dots,
.customfancybox-inner ul.testimonial-slider {
  padding: 0;
}
.inside-contentarea ul.buttons li::before, .inside-contentarea ul.quicklinks li::before, .inside-contentarea ul.pagination li::before, .inside-contentarea ul.mobile-apps li::before, .inside-contentarea ul.testimonial-dots li::before,
.inside-contentarea ul.testimonial-slider li::before, .customfancybox-inner ul.buttons li::before, .customfancybox-inner ul.quicklinks li::before, .customfancybox-inner ul.pagination li::before, .customfancybox-inner ul.mobile-apps li::before, .customfancybox-inner ul.testimonial-dots li::before,
.customfancybox-inner ul.testimonial-slider li::before {
  content: none;
}

.card-details {
  padding: 2rem 5%;
}
.card-details h2:first-child, .card-details h3:first-child {
  margin-top: 0;
}
.card-details {
  max-width: 50rem;
}

p + ul.mobile-apps {
  margin-top: -0.5rem;
}

ul.mobile-apps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
ul.mobile-apps a {
  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;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #72a94e;
}
ul.mobile-apps a[href*=apple] {
  padding-bottom: 0.15rem;
}
ul.mobile-apps a[href*=google] {
  padding-left: 0.275rem;
}
ul.mobile-apps a img, ul.mobile-apps a svg {
  width: 2rem;
  height: 2rem;
}
ul.mobile-apps a:hover {
  background-color: #72a94e;
}

.inside-content {
  margin-top: 2rem;
  font-weight: 500;
}
.inside-content:has(.rep-banner:first-child) {
  margin-top: 0;
}
.blue-bar:has(div:empty) + .inside-content:has(.rep-banner:first-child) {
  margin-top: 8rem;
}
.inside-content .rep-banner {
  margin-top: 0;
  margin-bottom: 2rem;
}
.inside-content .rep-banner .header-image img {
  -o-object-position: center;
     object-position: center;
}
.inside-content .sidebar-layout main, .inside-content .sidebar-layout aside {
  display: block;
}
@media screen and (min-width: 1025px) {
  .inside-content .sidebar-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .inside-content .sidebar-layout aside {
    max-width: 16rem;
    margin-left: 5%;
    min-width: 16rem;
  }
  .inside-content .sidebar-layout aside a.button, .inside-content .sidebar-layout aside a .button, .inside-content .sidebar-layout aside .button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .inside-content .sidebar-layout main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 1024px) {
  .inside-content .sidebar-layout aside {
    margin-top: 2rem;
  }
}
.inside-content hr, .inside-content .hat-separator {
  margin: 2.33rem auto;
}
.inside-content img.centered {
  display: block;
  margin: 10px auto;
}
@media screen and (min-width: 700px) {
  .inside-content img.float {
    float: left;
    margin: 0 20px 20px 0;
  }
}
.inside-content .feature-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.33rem;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}
@media screen and (min-width: 800px) {
  .inside-content .feature-check {
    gap: 3rem;
    margin: 2rem auto 3rem;
  }
}
.inside-content .feature-check li {
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 10rem;
          flex: 1 10rem;
  max-width: 20rem;
}
.inside-content .feature-check li::before {
  position: static;
  margin: 0.33rem auto;
  width: 2rem;
  height: 2rem;
  background-size: 1.9rem 1.9rem;
  background-position: center;
}
.inside-content .inline-rate {
  font-weight: 800;
  font-size: 1.33rem;
  color: #1a468d;
}
.inside-content .green-check {
  width: 2rem;
  height: 2rem;
  display: block;
  margin: 0 auto;
  background-image: url(/images/green-check.svg);
  background-size: 1.9rem 1.9rem;
  background-position: center;
}
.inside-content table {
  width: 100%;
  font-size: 0.9rem;
}
@media screen and (max-width: 699px) {
  .inside-content table {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
.inside-content table td, .inside-content table th {
  width: 30%;
  padding: 0.66rem 1rem;
  text-align: center;
}
.inside-content table td:first-child, .inside-content table th:first-child {
  text-align: left;
}
.inside-content table td:first-child:nth-last-child(5), .inside-content table td:first-child:nth-last-child(5) ~ td, .inside-content table td:first-child:nth-last-child(5) ~ th, .inside-content table th:first-child:nth-last-child(5), .inside-content table th:first-child:nth-last-child(5) ~ td, .inside-content table th:first-child:nth-last-child(5) ~ th {
  width: 15%;
}
.inside-content table td:first-child:nth-last-child(4), .inside-content table td:first-child:nth-last-child(4) ~ td, .inside-content table td:first-child:nth-last-child(4) ~ th, .inside-content table th:first-child:nth-last-child(4), .inside-content table th:first-child:nth-last-child(4) ~ td, .inside-content table th:first-child:nth-last-child(4) ~ th {
  width: 25%;
}
@media screen and (max-width: 799px) {
  .inside-content table td, .inside-content table th {
    padding: 10px 5px;
  }
}
.inside-content table img[src*=svg] {
  width: 40px;
  display: block;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .inside-content table img[src*=svg] {
    width: 30px;
  }
}
.inside-content table thead td, .inside-content table thead th {
  border: none;
}
.inside-content table thead th {
  background-color: #1a468d;
  color: #ffffff;
  font-weight: 800;
  padding-bottom: 1rem;
  font-size: 1.1rem;
}
.inside-content table thead th .disclaimer {
  font-weight: 800;
}
@media screen and (max-width: 699px) {
  .inside-content table thead th {
    font-size: 0.85rem;
  }
}
.inside-content table tbody td, .inside-content table tbody th {
  border-bottom: 1px solid #bce0a4;
}
@media screen and (min-width: 700px) {
  .inside-content table.tbl-rates th {
    font-size: 1rem;
  }
}
.inside-content table.tbl-rates th, .inside-content table.tbl-rates td {
  width: 30%;
}
.inside-content table.tbl-rates th:first-child:nth-last-child(2), .inside-content table.tbl-rates td:first-child:nth-last-child(2) {
  width: 60%;
}
.inside-content table.tbl-rates th:last-child, .inside-content table.tbl-rates td:last-child {
  width: 25%;
}
.inside-content .wide-table {
  max-width: 100%;
  overflow-x: auto;
}
.inside-content .wide-table-wrap {
  max-width: 100%;
  width: 90vw;
  overflow: hidden;
  display: block;
  position: relative;
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
}
.inside-content .comparison-table {
  padding: 1.2rem 0;
  -webkit-filter: drop-shadow(0 0 1.5rem rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 0 1.5rem rgba(0, 0, 0, 0.2));
}
.inside-content .comparison-table table {
  text-align: center;
  background-color: #ffffff;
  min-width: 45rem;
}
@media screen and (min-width: 700px) {
  .inside-content .comparison-table table {
    min-width: 60rem;
  }
}
.inside-content .comparison-table table thead th {
  color: #1a468d;
  background-color: transparent;
}
.inside-content .comparison-table table tbody th {
  text-align: left;
  font-weight: 400;
  width: 30%;
  font-size: 0.9rem;
}
.inside-content .comparison-table table tbody th:first-child:nth-last-child(5) {
  width: 20%;
}
.inside-content .comparison-table table tbody tr:last-child td, .inside-content .comparison-table table tbody tr:last-child th {
  border-bottom: none;
  vertical-align: bottom;
}
.inside-content .comparison-table table tbody tr:last-child td a, .inside-content .comparison-table table tbody tr:last-child th a {
  display: block;
  margin-bottom: 0.33rem;
  color: #000000;
  font-weight: 500;
}
.inside-content .comparison-table table tbody tr:last-child td a.small, .inside-content .comparison-table table tbody tr:last-child th a.small {
  font-size: 0.75em;
}
.inside-content .comparison-table table tbody tr:last-child td a.button, .inside-content .comparison-table table tbody tr:last-child th a.button {
  font-size: 0.9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  margin-top: 0.66rem;
}
.inside-content .comparison-table table tbody tr:last-child td a.button.overlap-lower, .inside-content .comparison-table table tbody tr:last-child th a.button.overlap-lower {
  margin-bottom: -1.5rem;
  position: relative;
}
.inside-content .comparison-table table th[scope=col]::before {
  left: 1rem;
  right: 1rem;
}
.inside-content .comparison-table table .green-check {
  width: 1.5rem;
  height: 1.5rem;
  background-size: 1.4rem 1.4rem;
}
.inside-content .page-feature-section {
  max-width: 100%;
  padding: 0;
  margin-top: 3rem;
}
.inside-content .page-feature-section + .features-wrap {
  margin-top: 3rem;
}
@media screen and (max-width: 1024px) {
  .inside-content .page-feature-section {
    display: block;
  }
  .inside-content .page-feature-section > div {
    width: 100%;
  }
  .inside-content .page-feature-section .mobile-end {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .inside-content .page-feature-section .section-divider {
    display: none;
  }
}
.inside-content .page-feature-section h2 {
  margin-bottom: 1.33rem;
}
.inside-content .page-feature-section ul {
  font-weight: 500;
  font-size: 1.1rem;
  text-align: center;
  padding: 0 1.5rem;
}
.inside-content .page-feature-section ul > li {
  padding: 0.25em 0 0.75em;
}
.inside-content .page-feature-section ul > li::before {
  content: none;
}
.inside-content .page-feature-section .button-wrap.overlap-lower {
  margin-bottom: -1.85em;
  font-size: 1rem;
}
.inside-content .page-feature-section .sf_cols {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 799px) {
  .inside-content .page-feature-section .sf_cols .sf_colsOut {
    max-width: 20rem;
    margin: 0 auto;
    position: relative;
    padding: 0 0 3rem;
  }
  .inside-content .page-feature-section .sf_cols .sf_colsOut:nth-child(n+2) {
    margin: 1rem auto 0;
    padding: 1.66rem 0 3rem 0;
  }
  .inside-content .page-feature-section .sf_cols .sf_colsOut:nth-child(n+2)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    height: 0.125rem;
    left: 0;
    right: 0;
    background-color: #72a94e;
    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%);
  }
  .inside-content .page-feature-section .sf_cols .sf_colsOut:nth-child(n+2)::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: -0.75rem;
    margin-left: -0.75rem;
    width: 1.75rem;
    height: 1.75rem;
    background-image: url(/images/hat.svg);
    background-size: 1.7rem 1.7rem;
    background-position: center;
    background-repeat: no-repeat;
  }
  .inside-content .page-feature-section .sf_cols .sf_colsOut:last-child {
    padding-bottom: 0;
  }
  .inside-content .page-feature-section .sf_cols .sf_colsOut:last-child .button-wrap:last-child {
    margin-bottom: -4.3em;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 800px) {
  .inside-content .page-feature-section .sf_cols .sf_colsOut {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .inside-content .page-feature-section .sf_cols .sf_colsOut[class*="3cols"] {
    max-width: 33%;
  }
  .inside-content .page-feature-section .sf_cols .sf_colsOut[class*="2cols"] {
    max-width: 50%;
  }
  .inside-content .page-feature-section .sf_cols .sf_colsOut[class*="4cols"] {
    max-width: 25%;
  }
  .inside-content .page-feature-section .sf_cols .sf_colsOut[class*="5cols"] {
    max-width: 20%;
  }
}
@media screen and (max-width: 799px) {
  .inside-content .page-feature-section ul.cols-2 {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto;
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
  }
}
@media screen and (min-width: 800px) {
  .inside-content .page-feature-section .sf_colsIn {
    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%;
  }
  .inside-content .page-feature-section .sf_colsIn .button-wrap {
    margin-top: auto;
  }
}
.inside-content .page-feature-section + .splash-testimonials .splash-testimonial {
  margin-top: 4rem;
}
.inside-content .testimonial-post {
  margin: 1rem auto 3rem;
}
@media screen and (min-width: 800px) {
  .inside-content .testimonial-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
  }
}
.inside-content .testimonial-post .testimonial-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 799px) {
  .inside-content .testimonial-post .testimonial-image {
    max-width: 20rem;
    margin: 0 auto 1.33rem;
  }
}
.inside-content .testimonial-post .testimonial-image img {
  width: 100%;
  height: auto;
}
.inside-content .testimonial-post h2 {
  margin-top: 0;
}
.inside-content .testimonial-post .testimonial-content {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.inside-content .testimonial-post .subtitle {
  font-weight: 800;
  color: #617731;
}
.inside-content .testimonial-post h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a468d;
  margin-bottom: 0.33rem;
  margin-top: 1.66rem;
}
.inside-content .lgreen-section .sf_cols .quicklinks {
  margin-top: 0;
}

.inside-content .tabs {
  margin: 2rem auto;
}
.inside-content .tabs .tabs-header {
  display: none;
}
.inside-content .tabs .tab-panel-header {
  padding: 0.66rem 0;
  border-bottom: 0.15rem solid #bad4e5;
}
.inside-content .tabs .tab-panel-header, .inside-content .tabs .tab-panel-header * {
  font-size: 1.5rem;
}
.inside-content .tabs .tab-panel-active .tab-panel-header {
  border-color: #72a94e;
}
.inside-content .tabs .tabs-header, .inside-content .tabs .tabs-header *, .inside-content .tabs .tab-panel-header, .inside-content .tabs .tab-panel-header * {
  line-height: 1.2;
  line-height: 1.15;
  margin: 0;
  color: #1a468d;
  font-weight: 800;
  text-transform: uppercase;
}
.inside-content .tabs .tabs-header img, .inside-content .tabs .tab-panel-header img {
  height: 3rem;
}
.inside-content .tabs .tab-panel {
  background-color: #ffffff;
  margin-bottom: 0.33rem;
}
.inside-content .tabs .tab-panel-content {
  display: none;
  padding: 1rem 0;
}
@media screen and (min-width: 1025px) {
  .inside-content .tabs .tab-panel-content {
    display: block !important;
    padding: 1rem 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .inside-content .tabs .tabs-header {
    display: block;
  }
  .inside-content .tabs .tabs-header ul {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .inside-content .tabs .tabs-header ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    padding: 0;
  }
  .inside-content .tabs .tabs-header ul li a {
    display: block;
    padding: 15px 10px;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    border-bottom: 0.15rem solid #bad4e5;
  }
  .inside-content .tabs .tabs-header ul li a:hover {
    border-color: #72a94e;
  }
  .inside-content .tabs .tabs-header ul li, .inside-content .tabs .tabs-header ul li * {
    font-size: 1.2rem;
    line-height: 1.2;
    color: #1a468d;
    font-weight: 800;
    text-transform: uppercase;
  }
  .inside-content .tabs .tabs-header ul li::before {
    content: none;
  }
  .inside-content .tabs .tabs-header ul li.ui-state-active a {
    border-color: #72a94e;
  }
  .inside-content .tabs .tab-panel-header {
    display: none;
  }
  .sfPageEditor .inside-content .tabs .tab-panel-header {
    display: block;
  }
  .inside-content .tabs .tab-panel {
    padding: 0.5rem;
  }
}

.search-results, .inside-content .search-results {
  margin-bottom: 3rem;
}
.search-results h2, .inside-content .search-results h2 {
  margin-bottom: 0;
  font-size: 1.5rem;
  margin-top: 2.5rem;
}
.search-results h2 a, .inside-content .search-results h2 a {
  text-decoration: none;
}
.search-results h2 a:hover, .inside-content .search-results h2 a:hover {
  color: #72a94e;
}
.search-results p, .inside-content .search-results p {
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.search-results p + a, .inside-content .search-results p + a {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -ms-hyphens: auto;
  hyphens: auto;
  -ms-word-break: normal;
}
.search-results .sf-search-results, .inside-content .search-results .sf-search-results {
  margin-bottom: 2rem;
}

.pagination, .inside-content .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
}
.pagination li, .inside-content .pagination li {
  padding: 0 0.25rem;
}
.pagination li::before, .inside-content .pagination li::before {
  content: none;
}
.pagination li.active, .inside-content .pagination li.active {
  font-weight: 700;
}
.pagination li.active a, .inside-content .pagination li.active a {
  color: #72a94e;
}

.inside-content .accordion-all-toggle {
  background-color: transparent;
  border-radius: 0 !important;
  font-family: "Montserrat", sans-serif;
  color: #1a468d !important;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border: none;
  min-width: auto;
}
.inside-content .accordion-all-toggle:hover {
  text-decoration: underline;
  background-color: transparent;
}
.inside-content .accordion-all-toggle {
  margin-top: 1.33rem;
}
.inside-content .accordion-all-toggle + div {
  margin-bottom: 1.33rem;
}
.inside-content .accordion-all-toggle + div h2 {
  margin-top: 1.33rem;
}

.inside-content .accordion {
  margin: 0.5rem auto;
}
.inside-content .accordion button {
  border: none !important;
}
.inside-content .accordion > :first-child {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-decoration: none;
  background-color: transparent;
  padding: 0.5rem 0;
}
.inside-content .accordion > :first-child .arrow {
  width: 1.66rem;
  min-width: 1.66rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.inside-content .accordion > :first-child:hover {
  cursor: pointer;
}
.inside-content .accordion > :first-child, .inside-content .accordion > :first-child * {
  margin: 0 !important;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: none;
}
.inside-content .accordion > :first-child.active .arrow {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.inside-content .accordion .accordion > :first-child, .inside-content .accordion .accordion > :first-child * {
  font-size: 1.1rem;
}
.inside-content .accordion .accordion > :nth-child(n+2) {
  border-left-color: #d7ecc8;
}
.inside-content .accordion > :nth-child(n+2) {
  display: none;
  padding: 0 0 0 1rem;
  border-left: 0.15rem solid #bad4e5;
  margin-left: 1.75rem;
  margin-bottom: 1rem;
}
.sfPageEditor .inside-content .accordion > :nth-child(n+2) {
  display: block;
}
.inside-content .accordion > :nth-child(n+2) p:last-child, .inside-content .accordion > :nth-child(n+2) ul:last-child, .inside-content .accordion > :nth-child(n+2) ol:last-child {
  margin-bottom: 0;
}
.inside-content .accordion.reverse-accordion > :nth-child(n+2) {
  display: block;
}
.inside-content .accordion + div {
  margin-top: 2rem;
}
.inside-content .accordion + .accordion, .inside-content .accordion + div[data-sf-role=lists] {
  margin-top: 0.5rem;
}

/* blog */
.posts-only {
  display: none;
}
.sfPageEditor .posts-only {
  display: block;
}

@media screen and (min-width: 800px) {
  .ts-event-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.66rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2.66rem;
    margin: 2.66rem auto;
  }
}
.ts-event-list > li, .ts-event-list .event {
  background-color: #ffffff;
  padding: 1.66rem;
  -webkit-box-shadow: 0 0 1.25rem -0.5rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 1.25rem -0.5rem rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 799px) {
  .ts-event-list > li, .ts-event-list .event {
    margin: 2.66rem auto;
  }
}

.inside-contentarea .post-list {
  padding-left: 0;
  margin-bottom: 3rem;
}
.inside-contentarea .post-list li::before {
  content: none;
}
@media screen and (min-width: 700px) {
  .inside-contentarea .post-list li {
    max-width: 19rem;
    min-width: 17rem;
  }
  .inside-contentarea .post-list li .card-title {
    font-size: 1rem;
  }
  .inside-contentarea .post-list li .summary {
    font-size: 0.85rem;
  }
}

.inside-content .blog-post {
  margin-bottom: 3rem;
}
.inside-content .blog-post h1 {
  color: #1a468d;
}
.inside-content .blog-post .blog-meta {
  font-weight: 800;
  font-size: 0.85rem;
}
.inside-content .blog-post .hat-separator {
  margin: 1.33rem auto;
}

.nav-sitemap, .inside-content .nav-sitemap {
  margin: 0 auto 3rem;
  padding: 0;
}
.nav-sitemap li::before, .inside-content .nav-sitemap li::before {
  content: none;
}
.nav-sitemap li, .inside-content .nav-sitemap li {
  margin-bottom: 10px;
  padding: 0;
}
.nav-sitemap ul li, .inside-content .nav-sitemap ul li {
  margin: 0.66rem 0 0;
  font-size: 1.33rem;
  color: #000000;
  text-transform: none;
  font-weight: 500;
}
.nav-sitemap ul li a, .inside-content .nav-sitemap ul li a {
  padding: 0.66rem 0;
  display: block;
}
.nav-sitemap ul ul, .inside-content .nav-sitemap ul ul {
  padding-left: 1rem;
  margin-left: 0.5rem;
  border-left: 0.15rem solid #bad4e5;
}
.nav-sitemap ul ul li, .inside-content .nav-sitemap ul ul li {
  font-size: 1rem;
  margin-top: 0;
  color: #000000;
  font-weight: 400;
}
.nav-sitemap ul ul li a, .inside-content .nav-sitemap ul ul li a {
  padding: 0.33rem 0;
}
.nav-sitemap > li, .nav-sitemap > li h2, .inside-content .nav-sitemap > li, .inside-content .nav-sitemap > li h2 {
  font-size: 1.33rem;
  line-height: 1.15;
  margin: 20px 0 5px 0;
  font-weight: 700;
  text-transform: uppercase;
}

.card .title, .comparison-table th[scope=col] {
  position: relative;
}
.card .title::before, .comparison-table th[scope=col]::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 0.125rem;
  left: 0;
  right: 0;
  background-color: #72a94e;
  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%);
}
.card .title::after, .comparison-table th[scope=col]::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -0.75rem;
  margin-left: -0.75rem;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url(/images/hat.svg);
  background-size: 1.7rem 1.7rem;
  background-position: center;
  background-repeat: no-repeat;
}

section.row .col-md-6 {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.related-feature .quicklinks, .related-feature .ts-rate {
  margin: 0 auto 2rem;
}

.lgreen-section.background-section {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.lgreen-section.background-section div.sf-section {
  margin-top: 0 !important;
}

.extra-content {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-top: 2.5rem !important;
}

.quicklinks-wrapper .quicklinks {
  margin: 0 auto 2rem;
}

@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;
  }
}
/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: -webkit-gradient(linear, left top, left bottom, from(#be2626), to(#a92222));
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}

.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

/*!
 * FullCalendar v3.1.0 Stylesheet
 * Docs & License: http://fullcalendar.io/
 * (c) 2016 Adam Shaw
 */
.inside-content .fc-icon,
.inside-content body .fc, .home .fc-icon,
.home body .fc {
  font-size: 1em;
}
.inside-content .fc-button-group,
.inside-content .fc-icon, .home .fc-button-group,
.home .fc-icon {
  display: inline-block;
}
.inside-content .fc-bg,
.inside-content .fc-row .fc-bgevent-skeleton,
.inside-content .fc-row .fc-highlight-skeleton, .home .fc-bg,
.home .fc-row .fc-bgevent-skeleton,
.home .fc-row .fc-highlight-skeleton {
  bottom: 0;
}
.inside-content .fc-icon,
.inside-content .fc-unselectable, .home .fc-icon,
.home .fc-unselectable {
  -khtml-user-select: none;
  -webkit-touch-callout: none;
}
.inside-content .fc, .home .fc {
  direction: ltr;
  text-align: left;
}
.inside-content .fc-rtl, .home .fc-rtl {
  text-align: right;
}
.inside-content .fc th,
.inside-content .fc-basic-view td.fc-week-number,
.inside-content .fc-icon,
.inside-content .fc-toolbar, .home .fc th,
.home .fc-basic-view td.fc-week-number,
.home .fc-icon,
.home .fc-toolbar {
  text-align: center;
}
.inside-content .fc-unthemed .fc-content,
.inside-content .fc-unthemed .fc-divider,
.inside-content .fc-unthemed .fc-list-heading td,
.inside-content .fc-unthemed .fc-list-view,
.inside-content .fc-unthemed .fc-popover,
.inside-content .fc-unthemed .fc-row,
.inside-content .fc-unthemed tbody,
.inside-content .fc-unthemed td,
.inside-content .fc-unthemed th,
.inside-content .fc-unthemed thead, .home .fc-unthemed .fc-content,
.home .fc-unthemed .fc-divider,
.home .fc-unthemed .fc-list-heading td,
.home .fc-unthemed .fc-list-view,
.home .fc-unthemed .fc-popover,
.home .fc-unthemed .fc-row,
.home .fc-unthemed tbody,
.home .fc-unthemed td,
.home .fc-unthemed th,
.home .fc-unthemed thead {
  border-color: #ddd;
}
.inside-content .fc-unthemed .fc-popover, .home .fc-unthemed .fc-popover {
  background-color: #fff;
}
.inside-content .fc-unthemed .fc-divider,
.inside-content .fc-unthemed .fc-list-heading td,
.inside-content .fc-unthemed .fc-popover .fc-header, .home .fc-unthemed .fc-divider,
.home .fc-unthemed .fc-list-heading td,
.home .fc-unthemed .fc-popover .fc-header {
  background: #eee;
}
.inside-content .fc-unthemed .fc-popover .fc-header .fc-close, .home .fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666;
}
.inside-content .fc-unthemed td.fc-today, .home .fc-unthemed td.fc-today {
  background: #f2f2f2;
}
.inside-content .fc-highlight, .home .fc-highlight {
  background: #bce8f1;
  opacity: 0.3;
}
.inside-content .fc-bgevent, .home .fc-bgevent {
  background: #8fdf82;
  opacity: 0.3;
}
.inside-content .fc-nonbusiness, .home .fc-nonbusiness {
  background: #d7d7d7;
}
.inside-content .fc-icon, .home .fc-icon {
  height: 1em;
  line-height: 1em;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.inside-content .fc-icon:after, .home .fc-icon:after {
  position: relative;
}
.inside-content .fc-icon-left-single-arrow:after, .home .fc-icon-left-single-arrow:after {
  content: "‹";
  font-weight: 700;
  font-size: 200%;
  top: -7%;
}
.inside-content .fc-icon-right-single-arrow:after, .home .fc-icon-right-single-arrow:after {
  content: "›";
  font-weight: 700;
  font-size: 200%;
  top: -7%;
}
.inside-content .fc-icon-left-double-arrow:after, .home .fc-icon-left-double-arrow:after {
  content: "«";
  font-size: 160%;
  top: -7%;
}
.inside-content .fc-icon-right-double-arrow:after, .home .fc-icon-right-double-arrow:after {
  content: "»";
  font-size: 160%;
  top: -7%;
}
.inside-content .fc-icon-left-triangle:after, .home .fc-icon-left-triangle:after {
  content: "◄";
  font-size: 125%;
  top: 3%;
}
.inside-content .fc-icon-right-triangle:after, .home .fc-icon-right-triangle:after {
  content: "►";
  font-size: 125%;
  top: 3%;
}
.inside-content .fc-icon-down-triangle:after, .home .fc-icon-down-triangle:after {
  content: "▼";
  font-size: 125%;
  top: 2%;
}
.inside-content .fc-icon-x:after, .home .fc-icon-x:after {
  content: "×";
  font-size: 200%;
  top: 6%;
}
.inside-content .fc button, .home .fc button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  height: 2.1em;
  padding: 0 0.6em;
  font-size: 1em;
  white-space: nowrap;
  cursor: pointer;
}
.inside-content .fc button::-moz-focus-inner, .home .fc button::-moz-focus-inner {
  margin: 0;
  padding: 0;
}
.inside-content .fc-state-default, .home .fc-state-default {
  background-color: #fff;
  color: #7f8c8d !important;
  border: 1px solid #e1e1e1;
  font-weight: 500;
}
.inside-content .fc-state-default.fc-corner-left, .home .fc-state-default.fc-corner-left {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.inside-content .fc-state-default.fc-corner-right, .home .fc-state-default.fc-corner-right {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.inside-content .fc button .fc-icon, .home .fc button .fc-icon {
  position: relative;
  top: -0.05em;
  margin: 0 0.2em;
  vertical-align: middle;
}
.inside-content .fc-state-active,
.inside-content .fc-state-disabled,
.inside-content .fc-state-down,
.inside-content .fc-state-hover, .home .fc-state-active,
.home .fc-state-disabled,
.home .fc-state-down,
.home .fc-state-hover {
  color: #1a468d !important;
}
.inside-content .fc-state-hover, .home .fc-state-hover {
  color: #333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}
.inside-content .fc-state-active,
.inside-content .fc-state-down, .home .fc-state-active,
.home .fc-state-down {
  color: #1a468d !important;
}
.inside-content .fc-state-disabled, .home .fc-state-disabled {
  cursor: default;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.inside-content .fc-event.fc-draggable,
.inside-content .fc-event[href],
.inside-content .fc-popover .fc-header .fc-close,
.inside-content a[data-goto], .home .fc-event.fc-draggable,
.home .fc-event[href],
.home .fc-popover .fc-header .fc-close,
.home a[data-goto] {
  cursor: pointer;
}
.inside-content .fc .fc-button-group > *, .home .fc .fc-button-group > * {
  float: left;
  margin: 0 0 0 -1px;
}
.inside-content .fc .fc-button-group > :first-child, .home .fc .fc-button-group > :first-child {
  margin-left: 0;
}
.inside-content .fc-popover, .home .fc-popover {
  position: absolute;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.inside-content .fc-popover .fc-header, .home .fc-popover .fc-header {
  padding: 2px 4px;
}
.inside-content .fc-popover .fc-header .fc-title, .home .fc-popover .fc-header .fc-title {
  margin: 0 2px;
}
.inside-content .fc-ltr .fc-popover .fc-header .fc-title,
.inside-content .fc-rtl .fc-popover .fc-header .fc-close, .home .fc-ltr .fc-popover .fc-header .fc-title,
.home .fc-rtl .fc-popover .fc-header .fc-close {
  float: left;
}
.inside-content .fc-ltr .fc-popover .fc-header .fc-close,
.inside-content .fc-rtl .fc-popover .fc-header .fc-title, .home .fc-ltr .fc-popover .fc-header .fc-close,
.home .fc-rtl .fc-popover .fc-header .fc-title {
  float: right;
}
.inside-content .fc-unthemed .fc-popover, .home .fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}
.inside-content .fc-unthemed .fc-popover .fc-header .fc-close, .home .fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: 0.9em;
  margin-top: 2px;
}
.inside-content .fc-popover > .ui-widget-header + .ui-widget-content, .home .fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
}
.inside-content .fc-divider, .home .fc-divider {
  border-style: solid;
  border-width: 1px;
}
.inside-content hr.fc-divider, .home hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  border-width: 1px 0;
}
.inside-content .fc-bg table,
.inside-content .fc-row .fc-bgevent-skeleton table,
.inside-content .fc-row .fc-highlight-skeleton table, .home .fc-bg table,
.home .fc-row .fc-bgevent-skeleton table,
.home .fc-row .fc-highlight-skeleton table {
  height: 100%;
}
.inside-content .fc-clear, .home .fc-clear {
  clear: both;
}
.inside-content .fc-bg,
.inside-content .fc-bgevent-skeleton,
.inside-content .fc-helper-skeleton,
.inside-content .fc-highlight-skeleton, .home .fc-bg,
.home .fc-bgevent-skeleton,
.home .fc-helper-skeleton,
.home .fc-highlight-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.inside-content .fc table, .home .fc table {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
}
.inside-content .fc table th, .inside-content .fc table td, .home .fc table th, .home .fc table td {
  text-align: center;
}
.inside-content .fc td,
.inside-content .fc th, .home .fc td,
.home .fc th {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}
.inside-content .fc th, .home .fc th {
  background-color: #1a468d;
  color: #fff;
  border: 0;
  padding: 5px;
}
.inside-content .fc td.fc-today, .home .fc td.fc-today {
  border-style: double;
}
.inside-content a[data-goto]:hover, .home a[data-goto]:hover {
  text-decoration: underline;
}
.inside-content .fc .fc-row, .home .fc .fc-row {
  border-style: solid;
  border-width: 0;
}
.inside-content .fc-row table, .home .fc-row table {
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  border-bottom: 0 hidden transparent;
}
.inside-content .fc-row:first-child table, .home .fc-row:first-child table {
  border-top: 0 hidden transparent;
}
.inside-content .fc-row, .home .fc-row {
  position: relative;
}
.inside-content .fc-row .fc-bg, .home .fc-row .fc-bg {
  z-index: 1;
}
.inside-content .fc-row .fc-bgevent-skeleton td,
.inside-content .fc-row .fc-highlight-skeleton td, .home .fc-row .fc-bgevent-skeleton td,
.home .fc-row .fc-highlight-skeleton td {
  border-color: transparent;
}
.inside-content .fc-row .fc-bgevent-skeleton, .home .fc-row .fc-bgevent-skeleton {
  z-index: 2;
}
.inside-content .fc-row .fc-highlight-skeleton, .home .fc-row .fc-highlight-skeleton {
  z-index: 3;
}
.inside-content .fc-row .fc-content-skeleton, .home .fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
}
.inside-content .fc-row .fc-helper-skeleton, .home .fc-row .fc-helper-skeleton {
  z-index: 5;
}
.inside-content .fc-row .fc-content-skeleton td,
.inside-content .fc-row .fc-helper-skeleton td, .home .fc-row .fc-content-skeleton td,
.home .fc-row .fc-helper-skeleton td {
  background: 0 0;
  border-color: transparent;
  border-bottom: 0;
}
.inside-content .fc-row .fc-content-skeleton tbody td,
.inside-content .fc-row .fc-helper-skeleton tbody td, .home .fc-row .fc-content-skeleton tbody td,
.home .fc-row .fc-helper-skeleton tbody td {
  border-top: 0;
}
.inside-content .fc-scroller, .home .fc-scroller {
  -webkit-overflow-scrolling: touch;
  height: auto !important;
  overflow: auto !important;
}
.inside-content .fc-row.fc-rigid,
.inside-content .fc-time-grid-event, .home .fc-row.fc-rigid,
.home .fc-time-grid-event {
  overflow: hidden;
}
.inside-content .fc-scroller > .fc-day-grid,
.inside-content .fc-scroller > .fc-time-grid, .home .fc-scroller > .fc-day-grid,
.home .fc-scroller > .fc-time-grid {
  position: relative;
  width: 100%;
}
.inside-content .fc-event, .home .fc-event {
  position: relative;
  display: block;
  font-size: 0.85em;
  line-height: 1.3;
  border-radius: 3px;
  border: 1px solid #1a468d;
  font-weight: 400;
}
.inside-content .fc-event,
.inside-content .fc-event-dot, .home .fc-event,
.home .fc-event-dot {
  background-color: #1a468d;
}
.inside-content .fc-event,
.inside-content .fc-event:hover,
.inside-content .ui-widget .fc-event, .home .fc-event,
.home .fc-event:hover,
.home .ui-widget .fc-event {
  color: #fff;
  text-decoration: none;
}
.inside-content .fc-not-allowed,
.inside-content .fc-not-allowed .fc-event, .home .fc-not-allowed,
.home .fc-not-allowed .fc-event {
  cursor: not-allowed;
}
.inside-content .fc-event .fc-bg, .home .fc-event .fc-bg {
  z-index: 1;
  background: #fff;
  opacity: 0.25;
}
.inside-content .fc-event .fc-content, .home .fc-event .fc-content {
  position: relative;
  z-index: 2;
}
.inside-content .fc-event .fc-content:hover, .home .fc-event .fc-content:hover {
  cursor: pointer;
}
.inside-content .fc-event .fc-resizer, .home .fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
  display: none;
}
.inside-content .fc-event.fc-allow-mouse-resize .fc-resizer,
.inside-content .fc-event.fc-selected .fc-resizer, .home .fc-event.fc-allow-mouse-resize .fc-resizer,
.home .fc-event.fc-selected .fc-resizer {
  display: block;
}
.inside-content .fc-event.fc-selected .fc-resizer:before, .home .fc-event.fc-selected .fc-resizer:before {
  content: "";
  position: absolute;
  z-index: 9999;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}
.inside-content .fc-event.fc-selected, .home .fc-event.fc-selected {
  z-index: 9999 !important;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.inside-content .fc-event.fc-selected.fc-dragging, .home .fc-event.fc-selected.fc-dragging {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}
.inside-content .fc-h-event.fc-selected:before, .home .fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}
.inside-content .fc-ltr .fc-h-event.fc-not-start,
.inside-content .fc-rtl .fc-h-event.fc-not-end, .home .fc-ltr .fc-h-event.fc-not-start,
.home .fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.inside-content .fc-ltr .fc-h-event.fc-not-end,
.inside-content .fc-rtl .fc-h-event.fc-not-start, .home .fc-ltr .fc-h-event.fc-not-end,
.home .fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.inside-content .fc-ltr .fc-h-event .fc-start-resizer,
.inside-content .fc-rtl .fc-h-event .fc-end-resizer, .home .fc-ltr .fc-h-event .fc-start-resizer,
.home .fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
}
.inside-content .fc-ltr .fc-h-event .fc-end-resizer,
.inside-content .fc-rtl .fc-h-event .fc-start-resizer, .home .fc-ltr .fc-h-event .fc-end-resizer,
.home .fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
}
.inside-content .fc-h-event.fc-allow-mouse-resize .fc-resizer, .home .fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  bottom: -1px;
}
.inside-content .fc-h-event.fc-selected .fc-resizer, .home .fc-h-event.fc-selected .fc-resizer {
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  top: 50%;
  margin-top: -4px;
}
.inside-content .fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.inside-content .fc-rtl .fc-h-event.fc-selected .fc-end-resizer, .home .fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.home .fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
}
.inside-content .fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.inside-content .fc-rtl .fc-h-event.fc-selected .fc-start-resizer, .home .fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.home .fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
}
.inside-content .fc-day-grid-event, .home .fc-day-grid-event {
  margin: 1px 2px 0;
  padding: 0 1px;
}
.inside-content tr:first-child > td > .fc-day-grid-event, .home tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
}
.inside-content .fc-day-grid-event.fc-selected:after, .home .fc-day-grid-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  background: #000;
  opacity: 0.25;
}
.inside-content .fc-day-grid-event .fc-content, .home .fc-day-grid-event .fc-content {
  white-space: nowrap;
  overflow: hidden;
}
.inside-content .fc-day-grid-event .fc-time, .home .fc-day-grid-event .fc-time {
  font-weight: 700;
}
.inside-content .fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.inside-content .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer, .home .fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.home .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
}
.inside-content .fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.inside-content .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer, .home .fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.home .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
}
.inside-content a.fc-more, .home a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
}
.inside-content a.fc-more:hover, .home a.fc-more:hover {
  text-decoration: underline;
}
.inside-content .fc-limited, .home .fc-limited {
  display: none;
}
.inside-content .fc-day-grid .fc-row, .home .fc-day-grid .fc-row {
  z-index: 1;
}
.inside-content .fc-more-popover, .home .fc-more-popover {
  z-index: 2;
  width: 220px;
}
.inside-content .fc-more-popover .fc-event-container, .home .fc-more-popover .fc-event-container {
  padding: 10px;
}
.inside-content .fc-now-indicator, .home .fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}
.inside-content .fc-unselectable, .home .fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.inside-content .fc-header-toolbar button, .home .fc-header-toolbar button {
  border-radius: 0;
}
.inside-content .fc-toolbar.fc-header-toolbar, .home .fc-toolbar.fc-header-toolbar {
  margin-bottom: 1em;
}
.inside-content .fc-toolbar.fc-footer-toolbar, .home .fc-toolbar.fc-footer-toolbar {
  margin-top: 1em;
}
.inside-content .fc-toolbar .fc-left, .home .fc-toolbar .fc-left {
  float: left;
}
.inside-content .fc-toolbar .fc-right, .home .fc-toolbar .fc-right {
  float: right;
}
.inside-content .fc-toolbar .fc-center, .home .fc-toolbar .fc-center {
  display: inline-block;
}
.inside-content .fc .fc-toolbar > * > *, .home .fc .fc-toolbar > * > * {
  float: left;
  margin-left: 0.75em;
}
.inside-content .fc .fc-toolbar > * > :first-child, .home .fc .fc-toolbar > * > :first-child {
  margin-left: 0;
}
.inside-content .fc-toolbar h2, .home .fc-toolbar h2 {
  margin: 0;
}
.inside-content .fc-toolbar button, .home .fc-toolbar button {
  position: relative;
}
.inside-content .fc-toolbar .fc-state-hover,
.inside-content .fc-toolbar .ui-state-hover, .home .fc-toolbar .fc-state-hover,
.home .fc-toolbar .ui-state-hover {
  z-index: 2;
}
.inside-content .fc-toolbar .fc-state-down, .home .fc-toolbar .fc-state-down {
  z-index: 3;
}
.inside-content .fc-toolbar .fc-state-active,
.inside-content .fc-toolbar .ui-state-active, .home .fc-toolbar .fc-state-active,
.home .fc-toolbar .ui-state-active {
  z-index: 4;
}
.inside-content .fc-toolbar button:focus, .home .fc-toolbar button:focus {
  z-index: 5;
}
.inside-content .fc-view-container *,
.inside-content .fc-view-container:after,
.inside-content .fc-view-container:before, .home .fc-view-container *,
.home .fc-view-container:after,
.home .fc-view-container:before {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.inside-content .fc-view,
.inside-content .fc-view > table, .home .fc-view,
.home .fc-view > table {
  position: relative;
  z-index: 1;
}
.inside-content .fc-basicDay-view .fc-content-skeleton,
.inside-content .fc-basicWeek-view .fc-content-skeleton, .home .fc-basicDay-view .fc-content-skeleton,
.home .fc-basicWeek-view .fc-content-skeleton {
  padding-bottom: 1em;
}
.inside-content .fc-basic-view .fc-body .fc-row, .home .fc-basic-view .fc-body .fc-row {
  min-height: 4em;
}
.inside-content .fc-row.fc-rigid .fc-content-skeleton, .home .fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.inside-content .fc-day-top.fc-other-month, .home .fc-day-top.fc-other-month {
  opacity: 0.3;
}
.inside-content .fc-basic-view .fc-day-number,
.inside-content .fc-basic-view .fc-week-number, .home .fc-basic-view .fc-day-number,
.home .fc-basic-view .fc-week-number {
  padding: 2px;
}
.inside-content .fc-basic-view th.fc-day-number,
.inside-content .fc-basic-view th.fc-week-number, .home .fc-basic-view th.fc-day-number,
.home .fc-basic-view th.fc-week-number {
  padding: 0 2px;
}
.inside-content .fc-ltr .fc-basic-view .fc-day-top .fc-day-number, .home .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: right;
}
.inside-content .fc-rtl .fc-basic-view .fc-day-top .fc-day-number, .home .fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
  float: left;
}
.inside-content .fc-ltr .fc-basic-view .fc-day-top .fc-week-number, .home .fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px;
}
.inside-content .fc-rtl .fc-basic-view .fc-day-top .fc-week-number, .home .fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px;
}
.inside-content .fc-basic-view .fc-day-top .fc-week-number, .home .fc-basic-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: grey;
}
.inside-content .fc-basic-view td.fc-week-number > *, .home .fc-basic-view td.fc-week-number > * {
  display: inline-block;
  min-width: 1.25em;
}
.inside-content .fc-agenda-view .fc-day-grid, .home .fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
}
.inside-content .fc-agenda-view .fc-day-grid .fc-row, .home .fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
}
.inside-content .fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton, .home .fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em;
}
.inside-content .fc .fc-axis, .home .fc .fc-axis {
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}
.inside-content .fc-ltr .fc-axis, .home .fc-ltr .fc-axis {
  text-align: right;
}
.inside-content .fc-rtl .fc-axis, .home .fc-rtl .fc-axis {
  text-align: left;
}
.inside-content .ui-widget td.fc-axis, .home .ui-widget td.fc-axis {
  font-weight: 400;
}
.inside-content .fc-time-grid,
.inside-content .fc-time-grid-container, .home .fc-time-grid,
.home .fc-time-grid-container {
  position: relative;
  z-index: 1;
}
.inside-content .fc-time-grid, .home .fc-time-grid {
  min-height: 100%;
}
.inside-content .fc-time-grid table, .home .fc-time-grid table {
  border: 0 hidden transparent;
}
.inside-content .fc-time-grid > .fc-bg, .home .fc-time-grid > .fc-bg {
  z-index: 1;
}
.inside-content .fc-time-grid .fc-slats,
.inside-content .fc-time-grid > hr, .home .fc-time-grid .fc-slats,
.home .fc-time-grid > hr {
  position: relative;
  z-index: 2;
}
.inside-content .fc-time-grid .fc-content-col, .home .fc-time-grid .fc-content-col {
  position: relative;
}
.inside-content .fc-time-grid .fc-content-skeleton, .home .fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}
.inside-content .fc-time-grid .fc-business-container, .home .fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1;
}
.inside-content .fc-time-grid .fc-bgevent-container, .home .fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2;
}
.inside-content .fc-time-grid .fc-highlight-container, .home .fc-time-grid .fc-highlight-container {
  z-index: 3;
  position: relative;
}
.inside-content .fc-time-grid .fc-event-container, .home .fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4;
}
.inside-content .fc-time-grid .fc-now-indicator-line, .home .fc-time-grid .fc-now-indicator-line {
  z-index: 5;
}
.inside-content .fc-time-grid .fc-helper-container, .home .fc-time-grid .fc-helper-container {
  position: relative;
  z-index: 6;
}
.inside-content .fc-time-grid .fc-slats td, .home .fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
}
.inside-content .fc-time-grid .fc-slats .fc-minor td, .home .fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}
.inside-content .fc-time-grid .fc-slats .ui-widget-content, .home .fc-time-grid .fc-slats .ui-widget-content {
  background: 0 0;
}
.inside-content .fc-time-grid .fc-highlight, .home .fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
}
.inside-content .fc-ltr .fc-time-grid .fc-event-container, .home .fc-ltr .fc-time-grid .fc-event-container {
  margin: 0 2.5% 0 2px;
}
.inside-content .fc-rtl .fc-time-grid .fc-event-container, .home .fc-rtl .fc-time-grid .fc-event-container {
  margin: 0 2px 0 2.5%;
}
.inside-content .fc-time-grid .fc-bgevent,
.inside-content .fc-time-grid .fc-event, .home .fc-time-grid .fc-bgevent,
.home .fc-time-grid .fc-event {
  position: absolute;
  z-index: 1;
}
.inside-content .fc-time-grid .fc-bgevent, .home .fc-time-grid .fc-bgevent {
  left: 0;
  right: 0;
}
.inside-content .fc-v-event.fc-not-start, .home .fc-v-event.fc-not-start {
  border-top-width: 0;
  padding-top: 1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.inside-content .fc-v-event.fc-not-end, .home .fc-v-event.fc-not-end {
  border-bottom-width: 0;
  padding-bottom: 1px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.inside-content .fc-time-grid-event.fc-selected, .home .fc-time-grid-event.fc-selected {
  overflow: visible;
}
.inside-content .fc-time-grid-event.fc-selected .fc-bg, .home .fc-time-grid-event.fc-selected .fc-bg {
  display: none;
}
.inside-content .fc-time-grid-event .fc-content, .home .fc-time-grid-event .fc-content {
  overflow: hidden;
}
.inside-content .fc-time-grid-event .fc-time,
.inside-content .fc-time-grid-event .fc-title, .home .fc-time-grid-event .fc-time,
.home .fc-time-grid-event .fc-title {
  padding: 0 1px;
}
.inside-content .fc-time-grid-event .fc-time, .home .fc-time-grid-event .fc-time {
  font-size: 0.85em;
  white-space: nowrap;
}
.inside-content .fc-time-grid-event.fc-short .fc-content, .home .fc-time-grid-event.fc-short .fc-content {
  white-space: nowrap;
}
.inside-content .fc-time-grid-event.fc-short .fc-time,
.inside-content .fc-time-grid-event.fc-short .fc-title, .home .fc-time-grid-event.fc-short .fc-time,
.home .fc-time-grid-event.fc-short .fc-title {
  display: inline-block;
  vertical-align: top;
}
.inside-content .fc-time-grid-event.fc-short .fc-time span, .home .fc-time-grid-event.fc-short .fc-time span {
  display: none;
}
.inside-content .fc-time-grid-event.fc-short .fc-time:before, .home .fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
}
.inside-content .fc-time-grid-event.fc-short .fc-time:after, .home .fc-time-grid-event.fc-short .fc-time:after {
  content: " - ";
}
.inside-content .fc-time-grid-event.fc-short .fc-title, .home .fc-time-grid-event.fc-short .fc-title {
  font-size: 0.85em;
  padding: 0;
}
.inside-content .fc-time-grid-event.fc-allow-mouse-resize .fc-resizer, .home .fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}
.inside-content .fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after, .home .fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "=";
}
.inside-content .fc-time-grid-event.fc-selected .fc-resizer, .home .fc-time-grid-event.fc-selected .fc-resizer {
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  left: 50%;
  margin-left: -5px;
  bottom: -5px;
}
.inside-content .fc-time-grid .fc-now-indicator-line, .home .fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}
.inside-content .fc-time-grid .fc-now-indicator-arrow, .home .fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
}
.inside-content .fc-ltr .fc-time-grid .fc-now-indicator-arrow, .home .fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.inside-content .fc-rtl .fc-time-grid .fc-now-indicator-arrow, .home .fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.inside-content .fc-event-dot, .home .fc-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}
.inside-content .fc-rtl .fc-list-view, .home .fc-rtl .fc-list-view {
  direction: rtl;
}
.inside-content .fc-list-view, .home .fc-list-view {
  border-width: 1px;
  border-style: solid;
}
.inside-content .fc .fc-list-table, .home .fc .fc-list-table {
  table-layout: auto;
}
.inside-content .fc-list-table td, .home .fc-list-table td {
  border-width: 1px 0 0;
  padding: 8px 14px;
}
.inside-content .fc-list-table tr:first-child td, .home .fc-list-table tr:first-child td {
  border-top-width: 0;
}
.inside-content .fc-list-heading, .home .fc-list-heading {
  border-bottom-width: 1px;
}
.inside-content .fc-list-heading td, .home .fc-list-heading td {
  font-weight: 700;
}
.inside-content .fc-ltr .fc-list-heading-main, .home .fc-ltr .fc-list-heading-main {
  float: left;
}
.inside-content .fc-ltr .fc-list-heading-alt,
.inside-content .fc-rtl .fc-list-heading-main, .home .fc-ltr .fc-list-heading-alt,
.home .fc-rtl .fc-list-heading-main {
  float: right;
}
.inside-content .fc-rtl .fc-list-heading-alt, .home .fc-rtl .fc-list-heading-alt {
  float: left;
}
.inside-content .fc-list-item.fc-has-url, .home .fc-list-item.fc-has-url {
  cursor: pointer;
}
.inside-content .fc-list-item:hover td, .home .fc-list-item:hover td {
  background-color: #f5f5f5;
}
.inside-content .fc-list-item-marker,
.inside-content .fc-list-item-time, .home .fc-list-item-marker,
.home .fc-list-item-time {
  white-space: nowrap;
  width: 1px;
}
.inside-content .fc-ltr .fc-list-item-marker, .home .fc-ltr .fc-list-item-marker {
  padding-right: 0;
}
.inside-content .fc-rtl .fc-list-item-marker, .home .fc-rtl .fc-list-item-marker {
  padding-left: 0;
}
.inside-content .fc-list-item-title a, .home .fc-list-item-title a {
  text-decoration: none;
  color: inherit;
}
.inside-content .fc-list-item-title a[href]:hover, .home .fc-list-item-title a[href]:hover {
  text-decoration: underline;
}
.inside-content .fc-list-empty-wrap2, .home .fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.inside-content .fc-list-empty-wrap1, .home .fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: table;
}
.inside-content .fc-list-empty, .home .fc-list-empty {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.inside-content .fc-unthemed .fc-list-empty, .home .fc-unthemed .fc-list-empty {
  background-color: #eee;
}

/*------------------------------------*\
    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;
}

/*------------------------------------*\
    Ads
\*------------------------------------*/
.ad-widget img {
  max-width: 320px;
  margin: 0 auto;
}

/*------------------------------------*\
    Rates
\*------------------------------------*/
.table-rates-title {
  margin-top: 40px;
}
.table-rates-title:first-of-type {
  margin-top: 0;
}

.rates-main-header, .inside-content .rates-main-header {
  margin-bottom: 0.33rem;
}

.rates-effective {
  margin-bottom: 0.33rem;
}

.tbl-rates-disclaimers p, p.disclaimer, p.tbl-rates-disclaimers {
  margin: 0.66rem auto;
}

.ts-rate {
  margin: 2rem auto;
}
aside .ts-rate {
  margin: 1rem auto;
}
.sf_cols .ts-rate {
  margin: 0 auto 1rem;
}

/*------------------------------------*\
    Forms
\*------------------------------------*/
.inside main .lk-form, .inside aside .lk-form,
.lk-form, .inside main .multi-page-form, .inside aside .multi-page-form {
  margin: 1rem auto;
}
.inside main .lk-form fieldset > ul, .inside main .lk-form fieldset > ul > li, .inside aside .lk-form fieldset > ul, .inside aside .lk-form fieldset > ul > li,
.lk-form fieldset > ul,
.lk-form fieldset > ul > li, .inside main .multi-page-form fieldset > ul, .inside main .multi-page-form fieldset > ul > li, .inside aside .multi-page-form fieldset > ul, .inside aside .multi-page-form fieldset > ul > li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.inside main .lk-form fieldset > ul, .inside main .lk-form > ul, .inside aside .lk-form fieldset > ul, .inside aside .lk-form > ul,
.lk-form fieldset > ul,
.lk-form > ul, .inside main .multi-page-form fieldset > ul, .inside main .multi-page-form > ul, .inside aside .multi-page-form fieldset > ul, .inside aside .multi-page-form > ul {
  padding-left: 0;
  margin-left: 0;
}
.inside main .lk-form fieldset > ul > li, .inside main .lk-form > ul > li, .inside aside .lk-form fieldset > ul > li, .inside aside .lk-form > ul > li,
.lk-form fieldset > ul > li,
.lk-form > ul > li, .inside main .multi-page-form fieldset > ul > li, .inside main .multi-page-form > ul > li, .inside aside .multi-page-form fieldset > ul > li, .inside aside .multi-page-form > ul > li {
  margin: 0 0 10px 0;
  padding: 0;
}
.inside main .lk-form fieldset > ul > li::before, .inside main .lk-form > ul > li::before, .inside aside .lk-form fieldset > ul > li::before, .inside aside .lk-form > ul > li::before,
.lk-form fieldset > ul > li::before,
.lk-form > ul > li::before, .inside main .multi-page-form fieldset > ul > li::before, .inside main .multi-page-form > ul > li::before, .inside aside .multi-page-form fieldset > ul > li::before, .inside aside .multi-page-form > ul > li::before {
  display: none;
}
.inside main .lk-form fieldset > ul > li label, .inside main .lk-form > ul > li label, .inside aside .lk-form fieldset > ul > li label, .inside aside .lk-form > ul > li label,
.lk-form fieldset > ul > li label,
.lk-form > ul > li label, .inside main .multi-page-form fieldset > ul > li label, .inside main .multi-page-form > ul > li label, .inside aside .multi-page-form fieldset > ul > li label, .inside aside .multi-page-form > ul > li label {
  margin-top: 0;
}
.inside main .lk-form .field-group, .inside aside .lk-form .field-group,
.lk-form .field-group, .inside main .multi-page-form .field-group, .inside aside .multi-page-form .field-group {
  margin: 0 0 10px 0;
}
.inside main .lk-form h2, .inside aside .lk-form h2,
.lk-form h2, .inside main .multi-page-form h2, .inside aside .multi-page-form h2 {
  margin-top: 40px;
}
.inside main .lk-form .flex, .inside main .lk-form .flex-form, .inside aside .lk-form .flex, .inside aside .lk-form .flex-form,
.lk-form .flex,
.lk-form .flex-form, .inside main .multi-page-form .flex, .inside main .multi-page-form .flex-form, .inside aside .multi-page-form .flex, .inside aside .multi-page-form .flex-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 -10px;
}
@supports (display: grid) {
  .inside main .lk-form .flex, .inside main .lk-form .flex-form, .inside aside .lk-form .flex, .inside aside .lk-form .flex-form,
  .lk-form .flex,
  .lk-form .flex-form, .inside main .multi-page-form .flex, .inside main .multi-page-form .flex-form, .inside aside .multi-page-form .flex, .inside aside .multi-page-form .flex-form {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(100px, 1fr) 20px minmax(100px, 1fr) 20px minmax(100px, 1fr) 20px minmax(100px, 1fr);
    grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr) minmax(100px, 1fr) minmax(100px, 1fr);
    grid-gap: 10px 20px;
    padding: 0;
  }
}
@media screen and (max-width: 599px) {
  .inside main .lk-form .flex, .inside main .lk-form .flex-form, .inside aside .lk-form .flex, .inside aside .lk-form .flex-form,
  .lk-form .flex,
  .lk-form .flex-form, .inside main .multi-page-form .flex, .inside main .multi-page-form .flex-form, .inside aside .multi-page-form .flex, .inside aside .multi-page-form .flex-form {
    display: block;
  }
}
.inside main .lk-form .flex h2, .inside main .lk-form .flex h3, .inside main .lk-form .flex h4, .inside main .lk-form .flex table, .inside main .lk-form .flex-form h2, .inside main .lk-form .flex-form h3, .inside main .lk-form .flex-form h4, .inside main .lk-form .flex-form table, .inside aside .lk-form .flex h2, .inside aside .lk-form .flex h3, .inside aside .lk-form .flex h4, .inside aside .lk-form .flex table, .inside aside .lk-form .flex-form h2, .inside aside .lk-form .flex-form h3, .inside aside .lk-form .flex-form h4, .inside aside .lk-form .flex-form table,
.lk-form .flex h2,
.lk-form .flex h3,
.lk-form .flex h4,
.lk-form .flex table,
.lk-form .flex-form h2,
.lk-form .flex-form h3,
.lk-form .flex-form h4,
.lk-form .flex-form table, .inside main .multi-page-form .flex h2, .inside main .multi-page-form .flex h3, .inside main .multi-page-form .flex h4, .inside main .multi-page-form .flex table, .inside main .multi-page-form .flex-form h2, .inside main .multi-page-form .flex-form h3, .inside main .multi-page-form .flex-form h4, .inside main .multi-page-form .flex-form table, .inside aside .multi-page-form .flex h2, .inside aside .multi-page-form .flex h3, .inside aside .multi-page-form .flex h4, .inside aside .multi-page-form .flex table, .inside aside .multi-page-form .flex-form h2, .inside aside .multi-page-form .flex-form h3, .inside aside .multi-page-form .flex-form h4, .inside aside .multi-page-form .flex-form table {
  -webkit-box-flex: 1;
      -ms-flex: 1 auto;
          flex: 1 auto;
  min-width: 90%;
  -ms-grid-column-span: 4;
  grid-column: span 4;
  margin-bottom: 0;
}
.inside main .lk-form .flex > li, .inside main .lk-form .flex .field-group, .inside main .lk-form .flex > div, .inside main .lk-form .flex-form > li, .inside main .lk-form .flex-form .field-group, .inside main .lk-form .flex-form > div, .inside aside .lk-form .flex > li, .inside aside .lk-form .flex .field-group, .inside aside .lk-form .flex > div, .inside aside .lk-form .flex-form > li, .inside aside .lk-form .flex-form .field-group, .inside aside .lk-form .flex-form > div,
.lk-form .flex > li,
.lk-form .flex .field-group,
.lk-form .flex > div,
.lk-form .flex-form > li,
.lk-form .flex-form .field-group,
.lk-form .flex-form > div, .inside main .multi-page-form .flex > li, .inside main .multi-page-form .flex .field-group, .inside main .multi-page-form .flex > div, .inside main .multi-page-form .flex-form > li, .inside main .multi-page-form .flex-form .field-group, .inside main .multi-page-form .flex-form > div, .inside aside .multi-page-form .flex > li, .inside aside .multi-page-form .flex .field-group, .inside aside .multi-page-form .flex > div, .inside aside .multi-page-form .flex-form > li, .inside aside .multi-page-form .flex-form .field-group, .inside aside .multi-page-form .flex-form > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 45%;
          flex: 1 45%;
  padding: 5px 10px;
  max-width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.inside main .lk-form .flex > li.no-align, .inside main .lk-form .flex .field-group.no-align, .inside main .lk-form .flex > div.no-align, .inside main .lk-form .flex-form > li.no-align, .inside main .lk-form .flex-form .field-group.no-align, .inside main .lk-form .flex-form > div.no-align, .inside aside .lk-form .flex > li.no-align, .inside aside .lk-form .flex .field-group.no-align, .inside aside .lk-form .flex > div.no-align, .inside aside .lk-form .flex-form > li.no-align, .inside aside .lk-form .flex-form .field-group.no-align, .inside aside .lk-form .flex-form > div.no-align,
.lk-form .flex > li.no-align,
.lk-form .flex .field-group.no-align,
.lk-form .flex > div.no-align,
.lk-form .flex-form > li.no-align,
.lk-form .flex-form .field-group.no-align,
.lk-form .flex-form > div.no-align, .inside main .multi-page-form .flex > li.no-align, .inside main .multi-page-form .flex .field-group.no-align, .inside main .multi-page-form .flex > div.no-align, .inside main .multi-page-form .flex-form > li.no-align, .inside main .multi-page-form .flex-form .field-group.no-align, .inside main .multi-page-form .flex-form > div.no-align, .inside aside .multi-page-form .flex > li.no-align, .inside aside .multi-page-form .flex .field-group.no-align, .inside aside .multi-page-form .flex > div.no-align, .inside aside .multi-page-form .flex-form > li.no-align, .inside aside .multi-page-form .flex-form .field-group.no-align, .inside aside .multi-page-form .flex-form > div.no-align {
  -ms-flex-item-align: baseline;
      align-self: baseline;
}
.inside main .lk-form .flex > li.small-field, .inside main .lk-form .flex > li.short-field, .inside main .lk-form .flex .field-group.small-field, .inside main .lk-form .flex .field-group.short-field, .inside main .lk-form .flex > div.small-field, .inside main .lk-form .flex > div.short-field, .inside main .lk-form .flex-form > li.small-field, .inside main .lk-form .flex-form > li.short-field, .inside main .lk-form .flex-form .field-group.small-field, .inside main .lk-form .flex-form .field-group.short-field, .inside main .lk-form .flex-form > div.small-field, .inside main .lk-form .flex-form > div.short-field, .inside aside .lk-form .flex > li.small-field, .inside aside .lk-form .flex > li.short-field, .inside aside .lk-form .flex .field-group.small-field, .inside aside .lk-form .flex .field-group.short-field, .inside aside .lk-form .flex > div.small-field, .inside aside .lk-form .flex > div.short-field, .inside aside .lk-form .flex-form > li.small-field, .inside aside .lk-form .flex-form > li.short-field, .inside aside .lk-form .flex-form .field-group.small-field, .inside aside .lk-form .flex-form .field-group.short-field, .inside aside .lk-form .flex-form > div.small-field, .inside aside .lk-form .flex-form > div.short-field,
.lk-form .flex > li.small-field,
.lk-form .flex > li.short-field,
.lk-form .flex .field-group.small-field,
.lk-form .flex .field-group.short-field,
.lk-form .flex > div.small-field,
.lk-form .flex > div.short-field,
.lk-form .flex-form > li.small-field,
.lk-form .flex-form > li.short-field,
.lk-form .flex-form .field-group.small-field,
.lk-form .flex-form .field-group.short-field,
.lk-form .flex-form > div.small-field,
.lk-form .flex-form > div.short-field, .inside main .multi-page-form .flex > li.small-field, .inside main .multi-page-form .flex > li.short-field, .inside main .multi-page-form .flex .field-group.small-field, .inside main .multi-page-form .flex .field-group.short-field, .inside main .multi-page-form .flex > div.small-field, .inside main .multi-page-form .flex > div.short-field, .inside main .multi-page-form .flex-form > li.small-field, .inside main .multi-page-form .flex-form > li.short-field, .inside main .multi-page-form .flex-form .field-group.small-field, .inside main .multi-page-form .flex-form .field-group.short-field, .inside main .multi-page-form .flex-form > div.small-field, .inside main .multi-page-form .flex-form > div.short-field, .inside aside .multi-page-form .flex > li.small-field, .inside aside .multi-page-form .flex > li.short-field, .inside aside .multi-page-form .flex .field-group.small-field, .inside aside .multi-page-form .flex .field-group.short-field, .inside aside .multi-page-form .flex > div.small-field, .inside aside .multi-page-form .flex > div.short-field, .inside aside .multi-page-form .flex-form > li.small-field, .inside aside .multi-page-form .flex-form > li.short-field, .inside aside .multi-page-form .flex-form .field-group.small-field, .inside aside .multi-page-form .flex-form .field-group.short-field, .inside aside .multi-page-form .flex-form > div.small-field, .inside aside .multi-page-form .flex-form > div.short-field {
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5 23%;
          flex: 0.5 23%;
}
.inside main .lk-form .flex > li.fullw-field, .inside main .lk-form .flex > li.long-field, .inside main .lk-form .flex .field-group.fullw-field, .inside main .lk-form .flex .field-group.long-field, .inside main .lk-form .flex > div.fullw-field, .inside main .lk-form .flex > div.long-field, .inside main .lk-form .flex-form > li.fullw-field, .inside main .lk-form .flex-form > li.long-field, .inside main .lk-form .flex-form .field-group.fullw-field, .inside main .lk-form .flex-form .field-group.long-field, .inside main .lk-form .flex-form > div.fullw-field, .inside main .lk-form .flex-form > div.long-field, .inside aside .lk-form .flex > li.fullw-field, .inside aside .lk-form .flex > li.long-field, .inside aside .lk-form .flex .field-group.fullw-field, .inside aside .lk-form .flex .field-group.long-field, .inside aside .lk-form .flex > div.fullw-field, .inside aside .lk-form .flex > div.long-field, .inside aside .lk-form .flex-form > li.fullw-field, .inside aside .lk-form .flex-form > li.long-field, .inside aside .lk-form .flex-form .field-group.fullw-field, .inside aside .lk-form .flex-form .field-group.long-field, .inside aside .lk-form .flex-form > div.fullw-field, .inside aside .lk-form .flex-form > div.long-field,
.lk-form .flex > li.fullw-field,
.lk-form .flex > li.long-field,
.lk-form .flex .field-group.fullw-field,
.lk-form .flex .field-group.long-field,
.lk-form .flex > div.fullw-field,
.lk-form .flex > div.long-field,
.lk-form .flex-form > li.fullw-field,
.lk-form .flex-form > li.long-field,
.lk-form .flex-form .field-group.fullw-field,
.lk-form .flex-form .field-group.long-field,
.lk-form .flex-form > div.fullw-field,
.lk-form .flex-form > div.long-field, .inside main .multi-page-form .flex > li.fullw-field, .inside main .multi-page-form .flex > li.long-field, .inside main .multi-page-form .flex .field-group.fullw-field, .inside main .multi-page-form .flex .field-group.long-field, .inside main .multi-page-form .flex > div.fullw-field, .inside main .multi-page-form .flex > div.long-field, .inside main .multi-page-form .flex-form > li.fullw-field, .inside main .multi-page-form .flex-form > li.long-field, .inside main .multi-page-form .flex-form .field-group.fullw-field, .inside main .multi-page-form .flex-form .field-group.long-field, .inside main .multi-page-form .flex-form > div.fullw-field, .inside main .multi-page-form .flex-form > div.long-field, .inside aside .multi-page-form .flex > li.fullw-field, .inside aside .multi-page-form .flex > li.long-field, .inside aside .multi-page-form .flex .field-group.fullw-field, .inside aside .multi-page-form .flex .field-group.long-field, .inside aside .multi-page-form .flex > div.fullw-field, .inside aside .multi-page-form .flex > div.long-field, .inside aside .multi-page-form .flex-form > li.fullw-field, .inside aside .multi-page-form .flex-form > li.long-field, .inside aside .multi-page-form .flex-form .field-group.fullw-field, .inside aside .multi-page-form .flex-form .field-group.long-field, .inside aside .multi-page-form .flex-form > div.fullw-field, .inside aside .multi-page-form .flex-form > div.long-field {
  -webkit-box-flex: 1;
      -ms-flex: 1 90%;
          flex: 1 90%;
}
.inside main .lk-form .flex > li.end-align, .inside main .lk-form .flex .field-group.end-align, .inside main .lk-form .flex > div.end-align, .inside main .lk-form .flex-form > li.end-align, .inside main .lk-form .flex-form .field-group.end-align, .inside main .lk-form .flex-form > div.end-align, .inside aside .lk-form .flex > li.end-align, .inside aside .lk-form .flex .field-group.end-align, .inside aside .lk-form .flex > div.end-align, .inside aside .lk-form .flex-form > li.end-align, .inside aside .lk-form .flex-form .field-group.end-align, .inside aside .lk-form .flex-form > div.end-align,
.lk-form .flex > li.end-align,
.lk-form .flex .field-group.end-align,
.lk-form .flex > div.end-align,
.lk-form .flex-form > li.end-align,
.lk-form .flex-form .field-group.end-align,
.lk-form .flex-form > div.end-align, .inside main .multi-page-form .flex > li.end-align, .inside main .multi-page-form .flex .field-group.end-align, .inside main .multi-page-form .flex > div.end-align, .inside main .multi-page-form .flex-form > li.end-align, .inside main .multi-page-form .flex-form .field-group.end-align, .inside main .multi-page-form .flex-form > div.end-align, .inside aside .multi-page-form .flex > li.end-align, .inside aside .multi-page-form .flex .field-group.end-align, .inside aside .multi-page-form .flex > div.end-align, .inside aside .multi-page-form .flex-form > li.end-align, .inside aside .multi-page-form .flex-form .field-group.end-align, .inside aside .multi-page-form .flex-form > div.end-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.inside main .lk-form .flex > li.end-align > *, .inside main .lk-form .flex .field-group.end-align > *, .inside main .lk-form .flex > div.end-align > *, .inside main .lk-form .flex-form > li.end-align > *, .inside main .lk-form .flex-form .field-group.end-align > *, .inside main .lk-form .flex-form > div.end-align > *, .inside aside .lk-form .flex > li.end-align > *, .inside aside .lk-form .flex .field-group.end-align > *, .inside aside .lk-form .flex > div.end-align > *, .inside aside .lk-form .flex-form > li.end-align > *, .inside aside .lk-form .flex-form .field-group.end-align > *, .inside aside .lk-form .flex-form > div.end-align > *,
.lk-form .flex > li.end-align > *,
.lk-form .flex .field-group.end-align > *,
.lk-form .flex > div.end-align > *,
.lk-form .flex-form > li.end-align > *,
.lk-form .flex-form .field-group.end-align > *,
.lk-form .flex-form > div.end-align > *, .inside main .multi-page-form .flex > li.end-align > *, .inside main .multi-page-form .flex .field-group.end-align > *, .inside main .multi-page-form .flex > div.end-align > *, .inside main .multi-page-form .flex-form > li.end-align > *, .inside main .multi-page-form .flex-form .field-group.end-align > *, .inside main .multi-page-form .flex-form > div.end-align > *, .inside aside .multi-page-form .flex > li.end-align > *, .inside aside .multi-page-form .flex .field-group.end-align > *, .inside aside .multi-page-form .flex > div.end-align > *, .inside aside .multi-page-form .flex-form > li.end-align > *, .inside aside .multi-page-form .flex-form .field-group.end-align > *, .inside aside .multi-page-form .flex-form > div.end-align > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 90%;
          flex: 1 90%;
}
@supports (display: grid) {
  .inside main .lk-form .flex > li, .inside main .lk-form .flex .field-group, .inside main .lk-form .flex > div, .inside main .lk-form .flex-form > li, .inside main .lk-form .flex-form .field-group, .inside main .lk-form .flex-form > div, .inside aside .lk-form .flex > li, .inside aside .lk-form .flex .field-group, .inside aside .lk-form .flex > div, .inside aside .lk-form .flex-form > li, .inside aside .lk-form .flex-form .field-group, .inside aside .lk-form .flex-form > div,
  .lk-form .flex > li,
  .lk-form .flex .field-group,
  .lk-form .flex > div,
  .lk-form .flex-form > li,
  .lk-form .flex-form .field-group,
  .lk-form .flex-form > div, .inside main .multi-page-form .flex > li, .inside main .multi-page-form .flex .field-group, .inside main .multi-page-form .flex > div, .inside main .multi-page-form .flex-form > li, .inside main .multi-page-form .flex-form .field-group, .inside main .multi-page-form .flex-form > div, .inside aside .multi-page-form .flex > li, .inside aside .multi-page-form .flex .field-group, .inside aside .multi-page-form .flex > div, .inside aside .multi-page-form .flex-form > li, .inside aside .multi-page-form .flex-form .field-group, .inside aside .multi-page-form .flex-form > div {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    margin-bottom: 0;
    padding: 0;
  }
  .inside main .lk-form .flex > li.break, .inside main .lk-form .flex .field-group.break, .inside main .lk-form .flex > div.break, .inside main .lk-form .flex-form > li.break, .inside main .lk-form .flex-form .field-group.break, .inside main .lk-form .flex-form > div.break, .inside aside .lk-form .flex > li.break, .inside aside .lk-form .flex .field-group.break, .inside aside .lk-form .flex > div.break, .inside aside .lk-form .flex-form > li.break, .inside aside .lk-form .flex-form .field-group.break, .inside aside .lk-form .flex-form > div.break,
  .lk-form .flex > li.break,
  .lk-form .flex .field-group.break,
  .lk-form .flex > div.break,
  .lk-form .flex-form > li.break,
  .lk-form .flex-form .field-group.break,
  .lk-form .flex-form > div.break, .inside main .multi-page-form .flex > li.break, .inside main .multi-page-form .flex .field-group.break, .inside main .multi-page-form .flex > div.break, .inside main .multi-page-form .flex-form > li.break, .inside main .multi-page-form .flex-form .field-group.break, .inside main .multi-page-form .flex-form > div.break, .inside aside .multi-page-form .flex > li.break, .inside aside .multi-page-form .flex .field-group.break, .inside aside .multi-page-form .flex > div.break, .inside aside .multi-page-form .flex-form > li.break, .inside aside .multi-page-form .flex-form .field-group.break, .inside aside .multi-page-form .flex-form > div.break {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
  }
  .inside main .lk-form .flex > li.small-field, .inside main .lk-form .flex > li.short-field, .inside main .lk-form .flex .field-group.small-field, .inside main .lk-form .flex .field-group.short-field, .inside main .lk-form .flex > div.small-field, .inside main .lk-form .flex > div.short-field, .inside main .lk-form .flex-form > li.small-field, .inside main .lk-form .flex-form > li.short-field, .inside main .lk-form .flex-form .field-group.small-field, .inside main .lk-form .flex-form .field-group.short-field, .inside main .lk-form .flex-form > div.small-field, .inside main .lk-form .flex-form > div.short-field, .inside aside .lk-form .flex > li.small-field, .inside aside .lk-form .flex > li.short-field, .inside aside .lk-form .flex .field-group.small-field, .inside aside .lk-form .flex .field-group.short-field, .inside aside .lk-form .flex > div.small-field, .inside aside .lk-form .flex > div.short-field, .inside aside .lk-form .flex-form > li.small-field, .inside aside .lk-form .flex-form > li.short-field, .inside aside .lk-form .flex-form .field-group.small-field, .inside aside .lk-form .flex-form .field-group.short-field, .inside aside .lk-form .flex-form > div.small-field, .inside aside .lk-form .flex-form > div.short-field,
  .lk-form .flex > li.small-field,
  .lk-form .flex > li.short-field,
  .lk-form .flex .field-group.small-field,
  .lk-form .flex .field-group.short-field,
  .lk-form .flex > div.small-field,
  .lk-form .flex > div.short-field,
  .lk-form .flex-form > li.small-field,
  .lk-form .flex-form > li.short-field,
  .lk-form .flex-form .field-group.small-field,
  .lk-form .flex-form .field-group.short-field,
  .lk-form .flex-form > div.small-field,
  .lk-form .flex-form > div.short-field, .inside main .multi-page-form .flex > li.small-field, .inside main .multi-page-form .flex > li.short-field, .inside main .multi-page-form .flex .field-group.small-field, .inside main .multi-page-form .flex .field-group.short-field, .inside main .multi-page-form .flex > div.small-field, .inside main .multi-page-form .flex > div.short-field, .inside main .multi-page-form .flex-form > li.small-field, .inside main .multi-page-form .flex-form > li.short-field, .inside main .multi-page-form .flex-form .field-group.small-field, .inside main .multi-page-form .flex-form .field-group.short-field, .inside main .multi-page-form .flex-form > div.small-field, .inside main .multi-page-form .flex-form > div.short-field, .inside aside .multi-page-form .flex > li.small-field, .inside aside .multi-page-form .flex > li.short-field, .inside aside .multi-page-form .flex .field-group.small-field, .inside aside .multi-page-form .flex .field-group.short-field, .inside aside .multi-page-form .flex > div.small-field, .inside aside .multi-page-form .flex > div.short-field, .inside aside .multi-page-form .flex-form > li.small-field, .inside aside .multi-page-form .flex-form > li.short-field, .inside aside .multi-page-form .flex-form .field-group.small-field, .inside aside .multi-page-form .flex-form .field-group.short-field, .inside aside .multi-page-form .flex-form > div.small-field, .inside aside .multi-page-form .flex-form > div.short-field {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .inside main .lk-form .flex > li.small-field.break, .inside main .lk-form .flex > li.short-field.break, .inside main .lk-form .flex .field-group.small-field.break, .inside main .lk-form .flex .field-group.short-field.break, .inside main .lk-form .flex > div.small-field.break, .inside main .lk-form .flex > div.short-field.break, .inside main .lk-form .flex-form > li.small-field.break, .inside main .lk-form .flex-form > li.short-field.break, .inside main .lk-form .flex-form .field-group.small-field.break, .inside main .lk-form .flex-form .field-group.short-field.break, .inside main .lk-form .flex-form > div.small-field.break, .inside main .lk-form .flex-form > div.short-field.break, .inside aside .lk-form .flex > li.small-field.break, .inside aside .lk-form .flex > li.short-field.break, .inside aside .lk-form .flex .field-group.small-field.break, .inside aside .lk-form .flex .field-group.short-field.break, .inside aside .lk-form .flex > div.small-field.break, .inside aside .lk-form .flex > div.short-field.break, .inside aside .lk-form .flex-form > li.small-field.break, .inside aside .lk-form .flex-form > li.short-field.break, .inside aside .lk-form .flex-form .field-group.small-field.break, .inside aside .lk-form .flex-form .field-group.short-field.break, .inside aside .lk-form .flex-form > div.small-field.break, .inside aside .lk-form .flex-form > div.short-field.break,
  .lk-form .flex > li.small-field.break,
  .lk-form .flex > li.short-field.break,
  .lk-form .flex .field-group.small-field.break,
  .lk-form .flex .field-group.short-field.break,
  .lk-form .flex > div.small-field.break,
  .lk-form .flex > div.short-field.break,
  .lk-form .flex-form > li.small-field.break,
  .lk-form .flex-form > li.short-field.break,
  .lk-form .flex-form .field-group.small-field.break,
  .lk-form .flex-form .field-group.short-field.break,
  .lk-form .flex-form > div.small-field.break,
  .lk-form .flex-form > div.short-field.break, .inside main .multi-page-form .flex > li.small-field.break, .inside main .multi-page-form .flex > li.short-field.break, .inside main .multi-page-form .flex .field-group.small-field.break, .inside main .multi-page-form .flex .field-group.short-field.break, .inside main .multi-page-form .flex > div.small-field.break, .inside main .multi-page-form .flex > div.short-field.break, .inside main .multi-page-form .flex-form > li.small-field.break, .inside main .multi-page-form .flex-form > li.short-field.break, .inside main .multi-page-form .flex-form .field-group.small-field.break, .inside main .multi-page-form .flex-form .field-group.short-field.break, .inside main .multi-page-form .flex-form > div.small-field.break, .inside main .multi-page-form .flex-form > div.short-field.break, .inside aside .multi-page-form .flex > li.small-field.break, .inside aside .multi-page-form .flex > li.short-field.break, .inside aside .multi-page-form .flex .field-group.small-field.break, .inside aside .multi-page-form .flex .field-group.short-field.break, .inside aside .multi-page-form .flex > div.small-field.break, .inside aside .multi-page-form .flex > div.short-field.break, .inside aside .multi-page-form .flex-form > li.small-field.break, .inside aside .multi-page-form .flex-form > li.short-field.break, .inside aside .multi-page-form .flex-form .field-group.small-field.break, .inside aside .multi-page-form .flex-form .field-group.short-field.break, .inside aside .multi-page-form .flex-form > div.small-field.break, .inside aside .multi-page-form .flex-form > div.short-field.break {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
  }
  .inside main .lk-form .flex > li.fullw-field, .inside main .lk-form .flex .field-group.fullw-field, .inside main .lk-form .flex > div.fullw-field, .inside main .lk-form .flex-form > li.fullw-field, .inside main .lk-form .flex-form .field-group.fullw-field, .inside main .lk-form .flex-form > div.fullw-field, .inside aside .lk-form .flex > li.fullw-field, .inside aside .lk-form .flex .field-group.fullw-field, .inside aside .lk-form .flex > div.fullw-field, .inside aside .lk-form .flex-form > li.fullw-field, .inside aside .lk-form .flex-form .field-group.fullw-field, .inside aside .lk-form .flex-form > div.fullw-field,
  .lk-form .flex > li.fullw-field,
  .lk-form .flex .field-group.fullw-field,
  .lk-form .flex > div.fullw-field,
  .lk-form .flex-form > li.fullw-field,
  .lk-form .flex-form .field-group.fullw-field,
  .lk-form .flex-form > div.fullw-field, .inside main .multi-page-form .flex > li.fullw-field, .inside main .multi-page-form .flex .field-group.fullw-field, .inside main .multi-page-form .flex > div.fullw-field, .inside main .multi-page-form .flex-form > li.fullw-field, .inside main .multi-page-form .flex-form .field-group.fullw-field, .inside main .multi-page-form .flex-form > div.fullw-field, .inside aside .multi-page-form .flex > li.fullw-field, .inside aside .multi-page-form .flex .field-group.fullw-field, .inside aside .multi-page-form .flex > div.fullw-field, .inside aside .multi-page-form .flex-form > li.fullw-field, .inside aside .multi-page-form .flex-form .field-group.fullw-field, .inside aside .multi-page-form .flex-form > div.fullw-field {
    -ms-grid-column-span: 4;
    grid-column: span 4;
  }
  .inside main .lk-form .flex > li.long-field, .inside main .lk-form .flex .field-group.long-field, .inside main .lk-form .flex > div.long-field, .inside main .lk-form .flex-form > li.long-field, .inside main .lk-form .flex-form .field-group.long-field, .inside main .lk-form .flex-form > div.long-field, .inside aside .lk-form .flex > li.long-field, .inside aside .lk-form .flex .field-group.long-field, .inside aside .lk-form .flex > div.long-field, .inside aside .lk-form .flex-form > li.long-field, .inside aside .lk-form .flex-form .field-group.long-field, .inside aside .lk-form .flex-form > div.long-field,
  .lk-form .flex > li.long-field,
  .lk-form .flex .field-group.long-field,
  .lk-form .flex > div.long-field,
  .lk-form .flex-form > li.long-field,
  .lk-form .flex-form .field-group.long-field,
  .lk-form .flex-form > div.long-field, .inside main .multi-page-form .flex > li.long-field, .inside main .multi-page-form .flex .field-group.long-field, .inside main .multi-page-form .flex > div.long-field, .inside main .multi-page-form .flex-form > li.long-field, .inside main .multi-page-form .flex-form .field-group.long-field, .inside main .multi-page-form .flex-form > div.long-field, .inside aside .multi-page-form .flex > li.long-field, .inside aside .multi-page-form .flex .field-group.long-field, .inside aside .multi-page-form .flex > div.long-field, .inside aside .multi-page-form .flex-form > li.long-field, .inside aside .multi-page-form .flex-form .field-group.long-field, .inside aside .multi-page-form .flex-form > div.long-field {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
  .inside main .lk-form .flex > li.long-field.break, .inside main .lk-form .flex .field-group.long-field.break, .inside main .lk-form .flex > div.long-field.break, .inside main .lk-form .flex-form > li.long-field.break, .inside main .lk-form .flex-form .field-group.long-field.break, .inside main .lk-form .flex-form > div.long-field.break, .inside aside .lk-form .flex > li.long-field.break, .inside aside .lk-form .flex .field-group.long-field.break, .inside aside .lk-form .flex > div.long-field.break, .inside aside .lk-form .flex-form > li.long-field.break, .inside aside .lk-form .flex-form .field-group.long-field.break, .inside aside .lk-form .flex-form > div.long-field.break,
  .lk-form .flex > li.long-field.break,
  .lk-form .flex .field-group.long-field.break,
  .lk-form .flex > div.long-field.break,
  .lk-form .flex-form > li.long-field.break,
  .lk-form .flex-form .field-group.long-field.break,
  .lk-form .flex-form > div.long-field.break, .inside main .multi-page-form .flex > li.long-field.break, .inside main .multi-page-form .flex .field-group.long-field.break, .inside main .multi-page-form .flex > div.long-field.break, .inside main .multi-page-form .flex-form > li.long-field.break, .inside main .multi-page-form .flex-form .field-group.long-field.break, .inside main .multi-page-form .flex-form > div.long-field.break, .inside aside .multi-page-form .flex > li.long-field.break, .inside aside .multi-page-form .flex .field-group.long-field.break, .inside aside .multi-page-form .flex > div.long-field.break, .inside aside .multi-page-form .flex-form > li.long-field.break, .inside aside .multi-page-form .flex-form .field-group.long-field.break, .inside aside .multi-page-form .flex-form > div.long-field.break {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 3;
    grid-column-end: 4;
  }
  .inside main .lk-form .flex > li.contact-comments, .inside main .lk-form .flex .field-group.contact-comments, .inside main .lk-form .flex > div.contact-comments, .inside main .lk-form .flex-form > li.contact-comments, .inside main .lk-form .flex-form .field-group.contact-comments, .inside main .lk-form .flex-form > div.contact-comments, .inside aside .lk-form .flex > li.contact-comments, .inside aside .lk-form .flex .field-group.contact-comments, .inside aside .lk-form .flex > div.contact-comments, .inside aside .lk-form .flex-form > li.contact-comments, .inside aside .lk-form .flex-form .field-group.contact-comments, .inside aside .lk-form .flex-form > div.contact-comments,
  .lk-form .flex > li.contact-comments,
  .lk-form .flex .field-group.contact-comments,
  .lk-form .flex > div.contact-comments,
  .lk-form .flex-form > li.contact-comments,
  .lk-form .flex-form .field-group.contact-comments,
  .lk-form .flex-form > div.contact-comments, .inside main .multi-page-form .flex > li.contact-comments, .inside main .multi-page-form .flex .field-group.contact-comments, .inside main .multi-page-form .flex > div.contact-comments, .inside main .multi-page-form .flex-form > li.contact-comments, .inside main .multi-page-form .flex-form .field-group.contact-comments, .inside main .multi-page-form .flex-form > div.contact-comments, .inside aside .multi-page-form .flex > li.contact-comments, .inside aside .multi-page-form .flex .field-group.contact-comments, .inside aside .multi-page-form .flex > div.contact-comments, .inside aside .multi-page-form .flex-form > li.contact-comments, .inside aside .multi-page-form .flex-form .field-group.contact-comments, .inside aside .multi-page-form .flex-form > div.contact-comments {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/span 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/span 2;
  }
  .inside main .lk-form .flex > li.contact-comments textarea, .inside main .lk-form .flex .field-group.contact-comments textarea, .inside main .lk-form .flex > div.contact-comments textarea, .inside main .lk-form .flex-form > li.contact-comments textarea, .inside main .lk-form .flex-form .field-group.contact-comments textarea, .inside main .lk-form .flex-form > div.contact-comments textarea, .inside aside .lk-form .flex > li.contact-comments textarea, .inside aside .lk-form .flex .field-group.contact-comments textarea, .inside aside .lk-form .flex > div.contact-comments textarea, .inside aside .lk-form .flex-form > li.contact-comments textarea, .inside aside .lk-form .flex-form .field-group.contact-comments textarea, .inside aside .lk-form .flex-form > div.contact-comments textarea,
  .lk-form .flex > li.contact-comments textarea,
  .lk-form .flex .field-group.contact-comments textarea,
  .lk-form .flex > div.contact-comments textarea,
  .lk-form .flex-form > li.contact-comments textarea,
  .lk-form .flex-form .field-group.contact-comments textarea,
  .lk-form .flex-form > div.contact-comments textarea, .inside main .multi-page-form .flex > li.contact-comments textarea, .inside main .multi-page-form .flex .field-group.contact-comments textarea, .inside main .multi-page-form .flex > div.contact-comments textarea, .inside main .multi-page-form .flex-form > li.contact-comments textarea, .inside main .multi-page-form .flex-form .field-group.contact-comments textarea, .inside main .multi-page-form .flex-form > div.contact-comments textarea, .inside aside .multi-page-form .flex > li.contact-comments textarea, .inside aside .multi-page-form .flex .field-group.contact-comments textarea, .inside aside .multi-page-form .flex > div.contact-comments textarea, .inside aside .multi-page-form .flex-form > li.contact-comments textarea, .inside aside .multi-page-form .flex-form .field-group.contact-comments textarea, .inside aside .multi-page-form .flex-form > div.contact-comments textarea {
    height: 165px;
  }
  .inside main .lk-form .flex > li.end-align, .inside main .lk-form .flex .field-group.end-align, .inside main .lk-form .flex > div.end-align, .inside main .lk-form .flex-form > li.end-align, .inside main .lk-form .flex-form .field-group.end-align, .inside main .lk-form .flex-form > div.end-align, .inside aside .lk-form .flex > li.end-align, .inside aside .lk-form .flex .field-group.end-align, .inside aside .lk-form .flex > div.end-align, .inside aside .lk-form .flex-form > li.end-align, .inside aside .lk-form .flex-form .field-group.end-align, .inside aside .lk-form .flex-form > div.end-align,
  .lk-form .flex > li.end-align,
  .lk-form .flex .field-group.end-align,
  .lk-form .flex > div.end-align,
  .lk-form .flex-form > li.end-align,
  .lk-form .flex-form .field-group.end-align,
  .lk-form .flex-form > div.end-align, .inside main .multi-page-form .flex > li.end-align, .inside main .multi-page-form .flex .field-group.end-align, .inside main .multi-page-form .flex > div.end-align, .inside main .multi-page-form .flex-form > li.end-align, .inside main .multi-page-form .flex-form .field-group.end-align, .inside main .multi-page-form .flex-form > div.end-align, .inside aside .multi-page-form .flex > li.end-align, .inside aside .multi-page-form .flex .field-group.end-align, .inside aside .multi-page-form .flex > div.end-align, .inside aside .multi-page-form .flex-form > li.end-align, .inside aside .multi-page-form .flex-form .field-group.end-align, .inside aside .multi-page-form .flex-form > div.end-align {
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
    display: block;
  }
}
.inside main .lk-form .dollar-field, .inside aside .lk-form .dollar-field,
.lk-form .dollar-field, .inside main .multi-page-form .dollar-field, .inside aside .multi-page-form .dollar-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.inside main .lk-form .dollar-field label, .inside aside .lk-form .dollar-field label,
.lk-form .dollar-field label, .inside main .multi-page-form .dollar-field label, .inside aside .multi-page-form .dollar-field label {
  padding: 0 2px;
}
.inside main .lk-form .dollar-field input, .inside aside .lk-form .dollar-field input,
.lk-form .dollar-field input, .inside main .multi-page-form .dollar-field input, .inside aside .multi-page-form .dollar-field input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto;
  max-width: 100%;
}
.inside main .lk-form .thin-form, .inside aside .lk-form .thin-form,
.lk-form .thin-form, .inside main .multi-page-form .thin-form, .inside aside .multi-page-form .thin-form {
  max-width: 500px;
  margin: auto;
}
.inside main .lk-form label, .inside aside .lk-form label,
.lk-form label, .inside main .multi-page-form label, .inside aside .multi-page-form label {
  display: block;
  line-height: 1.3rem;
  padding-top: 0.6rem;
  max-width: 100%;
}
.inside main .lk-form label.warning, .inside aside .lk-form label.warning,
.lk-form label.warning, .inside main .multi-page-form label.warning, .inside aside .multi-page-form label.warning {
  display: none;
}
.inside main .lk-form label label, .inside aside .lk-form label label,
.lk-form label label, .inside main .multi-page-form label label, .inside aside .multi-page-form label label {
  display: inline-block;
  margin: 0 5px;
  padding-top: 0;
}
.inside main .lk-form label + label, .inside aside .lk-form label + label,
.lk-form label + label, .inside main .multi-page-form label + label, .inside aside .multi-page-form label + label {
  margin-top: 0.3rem;
}
.inside main .lk-form legend, .inside aside .lk-form legend,
.lk-form legend, .inside main .multi-page-form legend, .inside aside .multi-page-form legend {
  margin-top: 1rem;
  line-height: 1.3rem;
  max-width: 100%;
}
.inside main .lk-form .large-label, .inside aside .lk-form .large-label,
.lk-form .large-label, .inside main .multi-page-form .large-label, .inside aside .multi-page-form .large-label {
  font-weight: 700;
  text-transform: uppercase;
}
.inside main .lk-form input::-webkit-outer-spin-button,
.inside main .lk-form input::-webkit-inner-spin-button, .inside aside .lk-form input::-webkit-outer-spin-button,
.inside aside .lk-form input::-webkit-inner-spin-button,
.lk-form input::-webkit-outer-spin-button,
.lk-form input::-webkit-inner-spin-button, .inside main .multi-page-form input::-webkit-outer-spin-button,
.inside main .multi-page-form input::-webkit-inner-spin-button, .inside aside .multi-page-form input::-webkit-outer-spin-button,
.inside aside .multi-page-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.inside main .lk-form .check-group, .inside aside .lk-form .check-group,
.lk-form .check-group, .inside main .multi-page-form .check-group, .inside aside .multi-page-form .check-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.inside main .lk-form .check-group input, .inside aside .lk-form .check-group input,
.lk-form .check-group input, .inside main .multi-page-form .check-group input, .inside aside .multi-page-form .check-group input {
  margin-top: 0.8rem;
}
.inside main .lk-form .check-group label, .inside aside .lk-form .check-group label,
.lk-form .check-group label, .inside main .multi-page-form .check-group label, .inside aside .multi-page-form .check-group label {
  margin: 0;
}
.inside main .lk-form .horizontal-radios, .inside aside .lk-form .horizontal-radios,
.lk-form .horizontal-radios, .inside main .multi-page-form .horizontal-radios, .inside aside .multi-page-form .horizontal-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1px 1rem 0.5rem;
  text-align: center;
}
.inside main .lk-form .horizontal-radios > label, .inside aside .lk-form .horizontal-radios > label,
.lk-form .horizontal-radios > label, .inside main .multi-page-form .horizontal-radios > label, .inside aside .multi-page-form .horizontal-radios > label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 10rem;
  font-size: 0.9rem;
}
.inside main .lk-form .horizontal-radios > label input, .inside aside .lk-form .horizontal-radios > label input,
.lk-form .horizontal-radios > label input, .inside main .multi-page-form .horizontal-radios > label input, .inside aside .multi-page-form .horizontal-radios > label input {
  margin: 0 2px 0 0;
}
.inside main .lk-form input[type=number], .inside aside .lk-form input[type=number],
.lk-form input[type=number], .inside main .multi-page-form input[type=number], .inside aside .multi-page-form input[type=number] {
  -moz-appearance: textfield;
}
.inside main .lk-form textarea, .inside aside .lk-form textarea,
.lk-form textarea, .inside main .multi-page-form textarea, .inside aside .multi-page-form textarea {
  height: 100px;
  font-family: inherit;
}
.inside main .lk-form input[type=radio], .inside aside .lk-form input[type=radio],
.lk-form input[type=radio], .inside main .multi-page-form input[type=radio], .inside aside .multi-page-form input[type=radio] {
  margin: 0 5px 0 0;
}
.inside main .lk-form input[type=file], .inside aside .lk-form input[type=file],
.lk-form input[type=file], .inside main .multi-page-form input[type=file], .inside aside .multi-page-form input[type=file] {
  display: block;
  margin: 15px 0;
}
.inside main .lk-form .required-field, .inside main .lk-form .error, .inside main .lk-form .error-message, .inside aside .lk-form .required-field, .inside aside .lk-form .error, .inside aside .lk-form .error-message,
.lk-form .required-field,
.lk-form .error,
.lk-form .error-message, .inside main .multi-page-form .required-field, .inside main .multi-page-form .error, .inside main .multi-page-form .error-message, .inside aside .multi-page-form .required-field, .inside aside .multi-page-form .error, .inside aside .multi-page-form .error-message {
  color: crimson;
}
.inside main .lk-form .error, .inside main .lk-form .error-message, .inside main .lk-form .warning, .inside aside .lk-form .error, .inside aside .lk-form .error-message, .inside aside .lk-form .warning,
.lk-form .error,
.lk-form .error-message,
.lk-form .warning, .inside main .multi-page-form .error, .inside main .multi-page-form .error-message, .inside main .multi-page-form .warning, .inside aside .multi-page-form .error, .inside aside .multi-page-form .error-message, .inside aside .multi-page-form .warning {
  font-size: 0.9rem;
  line-height: 1rem;
  color: crimson;
  margin-top: 2px;
}
.inside main .lk-form label.error, .inside main .lk-form label.warning, .inside aside .lk-form label.error, .inside aside .lk-form label.warning,
.lk-form label.error,
.lk-form label.warning, .inside main .multi-page-form label.error, .inside main .multi-page-form label.warning, .inside aside .multi-page-form label.error, .inside aside .multi-page-form label.warning {
  display: none;
}
.inside main .lk-form input.warning, .inside main .lk-form input.error, .inside main .lk-form select.warning, .inside main .lk-form select.error, .inside aside .lk-form input.warning, .inside aside .lk-form input.error, .inside aside .lk-form select.warning, .inside aside .lk-form select.error,
.lk-form input.warning,
.lk-form input.error,
.lk-form select.warning,
.lk-form select.error, .inside main .multi-page-form input.warning, .inside main .multi-page-form input.error, .inside main .multi-page-form select.warning, .inside main .multi-page-form select.error, .inside aside .multi-page-form input.warning, .inside aside .multi-page-form input.error, .inside aside .multi-page-form select.warning, .inside aside .multi-page-form select.error {
  border-color: crimson;
}
.inside main .lk-form input.warning:focus, .inside main .lk-form input.error:focus, .inside main .lk-form select.warning:focus, .inside main .lk-form select.error:focus, .inside aside .lk-form input.warning:focus, .inside aside .lk-form input.error:focus, .inside aside .lk-form select.warning:focus, .inside aside .lk-form select.error:focus,
.lk-form input.warning:focus,
.lk-form input.error:focus,
.lk-form select.warning:focus,
.lk-form select.error:focus, .inside main .multi-page-form input.warning:focus, .inside main .multi-page-form input.error:focus, .inside main .multi-page-form select.warning:focus, .inside main .multi-page-form select.error:focus, .inside aside .multi-page-form input.warning:focus, .inside aside .multi-page-form input.error:focus, .inside aside .multi-page-form select.warning:focus, .inside aside .multi-page-form select.error:focus {
  border-color: crimson;
  background: #fff5f5;
}
.inside main .lk-form .helper-text, .inside aside .lk-form .helper-text,
.lk-form .helper-text, .inside main .multi-page-form .helper-text, .inside aside .multi-page-form .helper-text {
  font-style: italic;
  margin: 0 0 10px 0;
}
.inside main .lk-form input[type=submit], .inside main .lk-form input[type=button], .inside aside .lk-form input[type=submit], .inside aside .lk-form input[type=button],
.lk-form input[type=submit],
.lk-form input[type=button], .inside main .multi-page-form input[type=submit], .inside main .multi-page-form input[type=button], .inside aside .multi-page-form input[type=submit], .inside aside .multi-page-form input[type=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;
}
.inside main .lk-form input[type=submit]:hover, .inside main .lk-form input[type=button]:hover, .inside aside .lk-form input[type=submit]:hover, .inside aside .lk-form input[type=button]:hover,
.lk-form input[type=submit]:hover,
.lk-form input[type=button]:hover, .inside main .multi-page-form input[type=submit]:hover, .inside main .multi-page-form input[type=button]:hover, .inside aside .multi-page-form input[type=submit]:hover, .inside aside .multi-page-form input[type=button]:hover {
  background-color: #76aacc;
  border-color: #76aacc;
  color: #000000 !important;
  text-decoration: none;
}
.inside main .lk-form input[type=submit], .inside main .lk-form input[type=button], .inside aside .lk-form input[type=submit], .inside aside .lk-form input[type=button],
.lk-form input[type=submit],
.lk-form input[type=button], .inside main .multi-page-form input[type=submit], .inside main .multi-page-form input[type=button], .inside aside .multi-page-form input[type=submit], .inside aside .multi-page-form input[type=button] {
  margin: 1rem auto 1.3rem auto;
  display: block;
  min-width: 200px;
  max-width: 300px;
  font-size: 1rem;
}
.inside main .lk-form input[type=submit]:focus, .inside main .lk-form input[type=button]:focus, .inside aside .lk-form input[type=submit]:focus, .inside aside .lk-form input[type=button]:focus,
.lk-form input[type=submit]:focus,
.lk-form input[type=button]:focus, .inside main .multi-page-form input[type=submit]:focus, .inside main .multi-page-form input[type=button]:focus, .inside aside .multi-page-form input[type=submit]:focus, .inside aside .multi-page-form input[type=button]:focus {
  outline: none;
}
.inside main .lk-form .g-recaptcha, .inside aside .lk-form .g-recaptcha,
.lk-form .g-recaptcha, .inside main .multi-page-form .g-recaptcha, .inside aside .multi-page-form .g-recaptcha {
  min-height: 82px;
  margin: 20px auto 10px auto;
  text-align: right;
  max-width: 304px;
}
@media screen and (max-width: 350px) {
  .inside main .lk-form .g-recaptcha, .inside aside .lk-form .g-recaptcha,
  .lk-form .g-recaptcha, .inside main .multi-page-form .g-recaptcha, .inside aside .multi-page-form .g-recaptcha {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    width: 200px;
    margin-left: -20px;
  }
}
.inside main .lk-form .g-recaptcha + .error-message, .inside aside .lk-form .g-recaptcha + .error-message,
.lk-form .g-recaptcha + .error-message, .inside main .multi-page-form .g-recaptcha + .error-message, .inside aside .multi-page-form .g-recaptcha + .error-message {
  text-align: center;
}
.inside main .lk-form .check, .inside aside .lk-form .check,
.lk-form .check, .inside main .multi-page-form .check, .inside aside .multi-page-form .check {
  padding-left: 20px;
  margin: 1.3rem 0;
}
.inside main .lk-form .check input[type=checkbox], .inside aside .lk-form .check input[type=checkbox],
.lk-form .check input[type=checkbox], .inside main .multi-page-form .check input[type=checkbox], .inside aside .multi-page-form .check input[type=checkbox] {
  margin-left: -17px;
}

.single-page-form *[class*=conditional-],
.multi-page-form *[class*=conditional-] {
  display: none;
}
.single-page-form h3,
.multi-page-form h3 {
  margin: 2rem 0 0;
  font-size: 1.2rem;
}
.single-page-form .dz-image, .single-page-form .dz-size, .single-page-form .dz-success-mark, .single-page-form .dz-error-mark,
.multi-page-form .dz-image,
.multi-page-form .dz-size,
.multi-page-form .dz-success-mark,
.multi-page-form .dz-error-mark {
  display: none;
}

.inside-content .lk-form ul li ul li:first-child {
  margin-top: 0;
}

.multi-page-form {
  /*  #progress { //turn this off and replace multi-step-addon with multi-step-new.scss to use old appearance
       overflow: hidden;
       height: 42px;
       position: relative;
       border: 3px solid $accent;
       -webkit-box-sizing: border-box;
       box-sizing: border-box;
       margin-top: 20px;
       background: $lightBlue;
       .progress-bar {
           height: 40px;
           background-color: $color1;
           width: 0px;
           font-size: 20px;
           position: relative;
           transition: all 0.5s;
           span {
               position: absolute;
               width: 150px;
               left: 10px;
               top: 8px;
               bottom: 10px;
               line-height: 20px;
               color: black;
               transition: all 0.5s;
           }
           &.filling {
               span {
                   color: $lightBlue;
                   right: 10px;
                   left: auto;
                   width: auto;
               }
           }
       }
       ul li[id*="step"] {
           margin: 0;
       }
   } */
}
.multi-page-form #progress {
  position: relative;
  margin: 0px auto 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 599px) {
  .multi-page-form #progress {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.multi-page-form #progress .box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.multi-page-form .note {
  display: none;
}
.multi-page-form .step-title {
  color: rgb(25.5, 25.5, 25.5);
  display: block;
  padding: 25px 0;
  border-top: 1px solid #666666;
  border-bottom: 3px solid #666666;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}
.multi-page-form .active .step-title {
  color: #1a468d;
  font-weight: bold;
  border-top: 1px solid #1a468d;
  border-bottom: 3px solid #1a468d;
}
.multi-page-form .done .step-title {
  color: #72a94e;
  border-top: 1px solid #72a94e;
  border-bottom: 3px solid #72a94e;
}
.multi-page-form .step-actions {
  overflow: auto;
  padding: 0 10px;
}
@media screen and (min-width: 600px) {
  .multi-page-form .step-actions .btn-previous {
    float: left;
  }
  .multi-page-form .step-actions .btn-next, .multi-page-form .step-actions input[type=submit] {
    float: right;
  }
}
.multi-page-form .prompt {
  color: #72a94e;
  font-size: 1.3rem;
  font-weight: 700;
  border-bottom: 1px solid #72a94e;
  padding-bottom: 10px;
  margin: 0 -15px;
}

.upload-wrap {
  margin-top: 1rem;
}

.upload-wrap .file-upload, .upload-form .file-upload {
  border: 2px dashed #c0c0c0;
  background-color: transparent;
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
  line-height: 21px;
  margin-top: 20px;
}
.upload-wrap .file-upload:hover, .upload-form .file-upload:hover {
  cursor: pointer;
}
.upload-wrap .file-upload:first-line, .upload-form .file-upload:first-line {
  font-weight: bold;
}
.upload-wrap .dz-drag-hover, .upload-form .dz-drag-hover {
  border: 2px dashed #333;
}
.upload-wrap .item-preview, .upload-form .item-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
.upload-wrap .item-preview .dz-image, .upload-form .item-preview .dz-image {
  display: none;
}
.upload-wrap .item-preview .dz-error-message, .upload-form .item-preview .dz-error-message {
  color: crimson;
}
.upload-wrap .item-preview .dz-preview, .upload-form .item-preview .dz-preview {
  padding: 0 10px;
  margin-bottom: 20px;
}
.upload-wrap .item-preview .dz-success-mark, .upload-wrap .item-preview .dz-error-mark, .upload-form .item-preview .dz-success-mark, .upload-form .item-preview .dz-error-mark {
  display: none;
}
.upload-wrap #total-progress, .upload-form #total-progress {
  width: 100%;
  padding: 2px;
  height: 10px;
}
.upload-wrap .progress-bar, .upload-form .progress-bar {
  background-color: #1a468d;
  min-height: 3px;
  width: 0%;
}

/*------------------------------------*\
    Marketplace
\*------------------------------------*/
.inside-content .marketplace .lk-marketplace-item,
.marketplace .lk-marketplace-item {
  margin: 30px 0 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 599px) {
  .inside-content .marketplace .lk-marketplace-item,
  .marketplace .lk-marketplace-item {
    display: block;
  }
}
.inside-content .marketplace .lk-marketplace-images,
.marketplace .lk-marketplace-images {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 1025px) {
  .inside-content .marketplace .lk-marketplace-images,
  .marketplace .lk-marketplace-images {
    max-width: 400px;
  }
}
.inside-content .marketplace .lk-marketplace-images img,
.marketplace .lk-marketplace-images img {
  max-width: 100%;
}
.inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery ul,
.marketplace .lk-marketplace-images .lk-marketplace-gallery ul {
  list-style-type: none;
  margin: 0;
  margin: 0 -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
.inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery ul li,
.marketplace .lk-marketplace-images .lk-marketplace-gallery ul li {
  list-style-type: none;
  float: left;
  margin: 5px;
  background-image: none;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 29%;
  height: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery ul li:nth-last-child(2):nth-child(3n-2), .inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery ul li:last-child:nth-child(3n-1),
.marketplace .lk-marketplace-images .lk-marketplace-gallery ul li:nth-last-child(2):nth-child(3n-2),
.marketplace .lk-marketplace-images .lk-marketplace-gallery ul li:last-child:nth-child(3n-1) {
  height: 90px;
}
.inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery ul li:last-child:nth-child(3n-2),
.marketplace .lk-marketplace-images .lk-marketplace-gallery ul li:last-child:nth-child(3n-2) {
  height: 140px;
}
.inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery ul li a,
.marketplace .lk-marketplace-images .lk-marketplace-gallery ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (-ms-high-contrast: none) {
  .inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery ul li a,
  .marketplace .lk-marketplace-images .lk-marketplace-gallery ul li a {
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: block;
    height: auto;
  }
}
.inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery ul li img,
.marketplace .lk-marketplace-images .lk-marketplace-gallery ul li img {
  -o-object-fit: cover;
     object-fit: cover;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 100px;
  width: 100%;
}
@media screen and (-ms-high-contrast: none) {
  .inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery ul li img,
  .marketplace .lk-marketplace-images .lk-marketplace-gallery ul li img {
    max-width: 200%;
    width: auto;
  }
}
.inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery ul li:first-child:last-child,
.marketplace .lk-marketplace-images .lk-marketplace-gallery ul li:first-child:last-child {
  min-width: 90%;
  height: auto;
}
.inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery ul li::before,
.marketplace .lk-marketplace-images .lk-marketplace-gallery ul li::before {
  display: none;
}
.inside-content .marketplace .lk-marketplace-fav,
.marketplace .lk-marketplace-fav {
  width: 100%;
}
.inside-content .marketplace .lk-marketplace-fav img,
.marketplace .lk-marketplace-fav img {
  width: 100%;
}
.inside-content .marketplace .lk-marketplace-details,
.marketplace .lk-marketplace-details {
  padding-left: 5%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
}
@media screen and (-ms-high-contrast: none) {
  .inside-content .marketplace .lk-marketplace-details,
  .marketplace .lk-marketplace-details {
    min-width: auto;
  }
}
@media all and (max-width: 599px) {
  .inside-content .marketplace .lk-marketplace-details,
  .marketplace .lk-marketplace-details {
    padding-left: 0;
    padding-top: 20px;
    min-width: auto;
  }
}
.inside-content .marketplace .lk-marketplace-details ul,
.marketplace .lk-marketplace-details ul {
  list-style: none;
  margin: 0 0 15px 0;
  padding: 0;
}
.inside .inside-content .marketplace .lk-marketplace-details ul,
.inside .marketplace .lk-marketplace-details ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 90%;
}
.inside-content .marketplace .lk-marketplace-details ul li,
.marketplace .lk-marketplace-details ul li {
  list-style-type: none;
  padding: 0;
  margin: 0 0 5px 0;
  background-image: none;
}
.inside-content .marketplace .lk-marketplace-details ul li span,
.marketplace .lk-marketplace-details ul li span {
  font-weight: bold;
}
.inside .inside-content .marketplace .lk-marketplace-details ul li:last-child,
.inside .marketplace .lk-marketplace-details ul li:last-child {
  margin-top: 10px;
}
.inside-content .marketplace .lk-marketplace-details ul li::before,
.marketplace .lk-marketplace-details ul li::before {
  content: none;
}
.inside-content .marketplace .lk-marketplace-details ul li.additional-details,
.marketplace .lk-marketplace-details ul li.additional-details {
  margin: 15px 0;
  line-height: 1.5rem;
}
.inside-content .marketplace .lk-marketplace-details h2,
.marketplace .lk-marketplace-details h2 {
  margin: 0 0 5px 0;
  padding: 0;
}
.inside-content .marketplace .lk-marketplace-details a.marketplace-cta,
.marketplace .lk-marketplace-details a.marketplace-cta {
  margin: 10px 18px 5px 0;
  background-color: #1a468d;
  color: white !important;
  padding: 0.5em 1.33em;
  border: 1px solid #1a468d;
  -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;
}
.inside-content .marketplace .lk-marketplace-details a.marketplace-cta:hover,
.marketplace .lk-marketplace-details a.marketplace-cta:hover {
  background-color: #76aacc;
  border-color: #76aacc;
  color: #000000 !important;
  text-decoration: none;
}
.inside-content .marketplace .lk-marketplace-details a.marketplace-cta,
.marketplace .lk-marketplace-details a.marketplace-cta {
  display: inline-block;
  text-decoration: none;
}

#marketplace-form {
  display: none;
}
#marketplace-form .lk-form {
  float: none;
  padding: 10px;
  min-width: 300px;
}
#marketplace-form .lk-form input.error {
  border: 1px solid crimson;
}
#marketplace-form .lk-form input[type=button] {
  display: block;
  padding: 10px;
  width: 100%;
}
#marketplace-form .fld-appt, #marketplace-form .fld-bid {
  display: none;
}

/*------------------------------------*\
    Events
\*------------------------------------*/
/* --- Monthly Calendar View --- */
.inside-content .ts-calendar-month {
  margin: 30px auto 20px auto;
  display: block;
}
.inside-content .ts-calendar-month .fc-scroller {
  height: auto !important;
}

/* --- Monlhly List View --- */
.ts-calendar-list {
  display: none;
}

/*------------------------------------*\
    Careers
\*------------------------------------*/
.inside-content > .row main .lk-careers h3,
.lk-careers h3 {
  margin: 0;
}
.inside-content > .row main .lk-careers .career-subtitle,
.lk-careers .career-subtitle {
  margin: 0 0 1rem 0;
  font-weight: 500;
}
.inside-content > .row main .lk-careers .career-listing,
.lk-careers .career-listing {
  padding: 1.33rem 0;
}
.inside-content > .row main .lk-careers .career-back,
.lk-careers .career-back {
  margin: 0.66rem 0;
}
.inside-content > .row main .lk-careers .career-salary,
.lk-careers .career-salary {
  margin: 0 0 1rem 0;
}
.inside-content > .row main .lk-careers .career-sep,
.lk-careers .career-sep {
  color: #1a468d;
}

.upload-error {
  color: #df0000;
  display: none;
}

/*------------------------------------*\
    Locations
\*------------------------------------*/
.inside-content div.locator {
  height: 600px;
  width: 100%;
  margin: 3rem auto;
  padding: 0;
}
@media all and (max-width: 1200px) {
  .inside-content div.locator {
    padding: 0;
  }
}
.inside-content div.locator .locator-map {
  float: right;
  width: 68%;
  height: 100%;
}
@media all and (max-width: 900px) {
  .inside-content div.locator .locator-map {
    width: 60%;
  }
}
@media all and (max-width: 699px) {
  .inside-content div.locator .locator-map {
    float: none;
    width: 100%;
    height: 200px;
  }
}
.inside-content div.locator .locator-map-details h2 {
  padding: 5px 0;
  margin: 0 !important;
  font-size: 20px !important;
  line-height: 24px !important;
}
.inside-content div.locator .locator-map-details h3 {
  font-size: 14px;
  margin: 8px 0 2px 0;
}
.inside-content div.locator .locator-sidebar {
  float: left;
  font-size: 13px;
  width: 31%;
  background-color: #fff;
  margin: 0;
  height: 600px;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}
@media all and (max-width: 900px) {
  .inside-content div.locator .locator-sidebar {
    width: 39%;
  }
}
@media all and (max-width: 699px) {
  .inside-content div.locator .locator-sidebar {
    float: none;
    width: 100%;
    height: auto;
  }
}
.inside-content div.locator .locator-sidebar h2 {
  background-color: #1a468d;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  padding: 5px 0 5px 15px;
  margin: 0;
}
.inside-content div.locator .locator-sidebar h2:before {
  display: none;
}
.inside-content div.locator .locator-sidebar .locator-search {
  display: block;
  background-color: #efefef;
}
.inside-content div.locator .locator-sidebar .locator-search > div {
  padding: 15px;
}
.inside-content div.locator .locator-sidebar .locator-search input[type=text] {
  border: 1px solid #ccc;
  height: 25px;
  line-height: 25px;
  text-indent: 5px;
  font-size: 16px;
  width: 60%;
  -webkit-appearance: none;
}
.inside-content div.locator .locator-sidebar .locator-search input[type=checkbox] {
  margin: 0 3px 0 2px;
}
.inside-content div.locator .locator-sidebar .locator-search input[type=button] {
  background-color: #1a468d;
  border: 0;
  padding: 0 8px;
  height: 25px;
  font-size: 14px;
  color: #fff;
  -webkit-appearance: none;
}
.inside-content div.locator .locator-sidebar .locator-search input[type=button]:hover {
  cursor: pointer;
}
.inside-content div.locator .locator-sidebar .locator-search label, .inside-content div.locator .locator-sidebar .locator-search div {
  display: block;
}
.inside-content div.locator .locator-sidebar .locator-search label[for*=zip], .inside-content div.locator .locator-sidebar .locator-search div[for*=zip] {
  display: none;
}
.inside-content div.locator .locator-sidebar .locator-search label.error, .inside-content div.locator .locator-sidebar .locator-search div.error {
  color: crimson;
  display: none;
}
.inside-content div.locator .locator-sidebar .locator-search .filter-options {
  padding: 10px 0 0 0;
}
.inside-content div.locator .locator-sidebar .locator-search .filter-options legend {
  display: none;
}
.inside-content div.locator .locator-sidebar .locator-search .filter-options label {
  margin: 2px 0;
}
.inside-content div.locator .locator-sidebar .locator-search .filter-options label:hover {
  cursor: pointer;
}
.inside-content div.locator .locator-sidebar .loading {
  background: url("../images/loading.gif") no-repeat center;
}
.inside-content div.locator .locator-sidebar .location-list {
  display: block;
  overflow-y: scroll;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: 0;
  height: 445px;
}
@media all and (max-width: 699px) {
  .inside-content div.locator .locator-sidebar .location-list {
    height: 200px;
  }
}
.inside-content div.locator .locator-sidebar .location-list h2 {
  position: fixed;
  width: 100%;
}
.inside-content div.locator .locator-sidebar .location-list h3 {
  font-size: 13px;
  margin: 5px 0 0 0;
}
.inside-content div.locator .locator-sidebar .location-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.inside-content div.locator .locator-sidebar .location-list ul li {
  min-height: 110px;
  position: relative;
  list-style-type: none;
  padding: 10px 15px 10px 75px;
  margin: 0;
  border-top: 0;
  background-color: #fff;
  font-size: 12px;
  border-bottom: 1px solid #ccc;
  background-repeat: no-repeat;
  background-size: 35px 50px;
  background-position: 20px 12px;
}
.inside-content div.locator .locator-sidebar .location-list ul li .distance {
  font-style: italic;
  position: absolute;
  top: 70px;
  width: 75px;
  left: 0;
  text-align: center;
  font-size: 11px;
  line-height: 12px;
}
.inside-content div.locator .locator-sidebar .location-list ul li.branches {
  background-image: url("/modules/images/markers/branches.png");
}
.inside-content div.locator .locator-sidebar .location-list ul li.shared-branches {
  background-image: url("/modules/images/markers/shared-branches.png");
}
.inside-content div.locator .locator-sidebar .location-list ul li.atms {
  background-image: url("/modules/images/markers/atms.png");
}
.inside-content div.locator .locator-sidebar .location-list ul li.shared-atms {
  background-image: url("/modules/images/markers/shared-atms.png");
}
.inside-content div.locator .locator-sidebar .location-list a {
  color: #1a468d;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
}

@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;
  }
}