/*!
 * Matchstick Modular Framework v2.0.4 (http://matchstickstudio.co)
 * Copyright 2018 Matchstick Studio, LLC
 */
.grid, .grid-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.grid-container {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
}

.grid-container.full {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.grid-container.mobile-full {
  padding-right: 0;
  padding-left: 0;
}

.grid-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.grid.reverse, .reverse.grid-container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.flex > .grid-container {
  margin: 0;
}

.col,
.col-5,
.col-10,
.col-15,
.col-20,
.col-25,
.col-30,
.col-35,
.col-40,
.col-45,
.col-50,
.col-55,
.col-60,
.col-65,
.col-70,
.col-75,
.col-80,
.col-85,
.col-90,
.col-95,
.col-100,
.col-1-3,
.col-2-3,
.col-offset-0,
.col-offset-5,
.col-offset-10,
.col-offset-15,
.col-offset-20,
.col-offset-25,
.col-offset-30,
.col-offset-35,
.col-offset-40,
.col-offset-45,
.col-offset-50,
.col-offset-55,
.col-offset-60,
.col-offset-65,
.col-offset-70,
.col-offset-75,
.col-offset-80,
.col-offset-85,
.col-offset-90,
.col-offset-95,
.col-offset-100,
.col-offet-1-3,
.col-offset-2-3 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 8px calc(25px / 2);
  align-items: center;
  justify-content: center;
}

.col {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col.full,
.col-5.full,
.col-10.full,
.col-15.full,
.col-20.full,
.col-25.full,
.col-30.full,
.col-35.full,
.col-40.full,
.col-45.full,
.col-50.full,
.col-55.full,
.col-60.full,
.col-65.full,
.col-70.full,
.col-75.full,
.col-80.full,
.col-85.full,
.col-90.full,
.col-95.full,
.col-100.full,
.col-1-3.full,
.col-2-3.full,
.col-offset-0.full,
.col-offset-5.full,
.col-offset-10.full,
.col-offset-15.full,
.col-offset-20.full,
.col-offset-25.full,
.col-offset-30.full,
.col-offset-35.full,
.col-offset-40.full,
.col-offset-45.full,
.col-offset-50.full,
.col-offset-55.full,
.col-offset-60.full,
.col-offset-65.full,
.col-offset-70.full,
.col-offset-75.full,
.col-offset-80.full,
.col-offset-85.full,
.col-offset-90.full,
.col-offset-95.full,
.col-offset-100.full,
.col-offet-1-3.full,
.col-offset-2-3.full {
  padding: 0;
}

.divider {
  padding-top: 0;
  padding-bottom: 0;
}

.divider div {
  height: 1px;
  width: 100%;
  background-color: #CBCED5;
}

@media screen and (min-width: 768px) {
  .grid-container.mobile-full {
    padding-right: calc(25px / 2);
    padding-left: calc(25px / 2);
  }

  .col-5 {
    -ms-flex-preferred-size: 5%;
    flex-basis: 5%;
    max-width: 5%;
  }

  .col-10 {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }

  .col-15 {
    -ms-flex-preferred-size: 15%;
    flex-basis: 15%;
    max-width: 15%;
  }

  .col-20 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }

  .col-25 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-30 {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    max-width: 30%;
  }

  .col-35 {
    -ms-flex-preferred-size: 35%;
    flex-basis: 35%;
    max-width: 35%;
  }

  .col-40 {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
  }

  .col-45 {
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    max-width: 45%;
  }

  .col-50 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-55 {
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
    max-width: 55%;
  }

  .col-60 {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
  }

  .col-65 {
    -ms-flex-preferred-size: 65%;
    flex-basis: 65%;
    max-width: 65%;
  }

  .col-70 {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    max-width: 70%;
  }

  .col-75 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-80 {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
  }

  .col-85 {
    -ms-flex-preferred-size: 85%;
    flex-basis: 85%;
    max-width: 85%;
  }

  .col-90 {
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    max-width: 90%;
  }

  .col-95 {
    -ms-flex-preferred-size: 95%;
    flex-basis: 95%;
    max-width: 95%;
  }

  .col-100 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-1-3 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.3333333%;
    max-width: 33.3333333%;
  }

  .col-2-3 {
    -ms-flex-preferred-size: 66.66666666%;
    flex-basis: 66.66666666%;
    max-width: 66.66666666%;
  }
}
.circle {
  border-radius: 50%;
}

.absolute-center, .txt-on-ol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.container {
  width: 100%;
  max-width: 1210px;
  padding-left: 0.78125rem;
  padding-right: 0.78125rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: calc(90% + 25px);
  }
}

.d-inl {
  display: inline;
}

.d-blk {
  display: block;
}

.d-inl-blk {
  display: inline-block;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.z-down {
  z-index: -1 !important;
}

.z-low {
  z-index: 10;
}

.z-md {
  z-index: 20;
}

.z-high {
  z-index: 50;
}

.m-t-0 {
  margin-top: 0 !important;
}

.p-t-0 {
  padding-top: 0 !important;
}

.m-l-0 {
  margin-left: 0 !important;
}

.p-l-0 {
  padding-left: 0 !important;
}

.m-b-0 {
  margin-bottom: 0 !important;
}

.p-b-0 {
  padding-bottom: 0 !important;
}

.m-r-0 {
  margin-right: 0 !important;
}

.p-r-0 {
  padding-right: 0 !important;
}

.m-t-5 {
  margin-top: 0.3125rem !important;
}

.p-t-5 {
  padding-top: 0.3125rem !important;
}

.m-l-5 {
  margin-left: 0.3125rem !important;
}

.p-l-5 {
  padding-left: 0.3125rem !important;
}

.m-b-5 {
  margin-bottom: 0.3125rem !important;
}

.p-b-5 {
  padding-bottom: 0.3125rem !important;
}

.m-r-5 {
  margin-right: 0.3125rem !important;
}

.p-r-5 {
  padding-right: 0.3125rem !important;
}

.m-t-10 {
  margin-top: 0.625rem !important;
}

.p-t-10 {
  padding-top: 0.625rem !important;
}

.m-l-10 {
  margin-left: 0.625rem !important;
}

.p-l-10 {
  padding-left: 0.625rem !important;
}

.m-b-10 {
  margin-bottom: 0.625rem !important;
}

.p-b-10 {
  padding-bottom: 0.625rem !important;
}

.m-r-10 {
  margin-right: 0.625rem !important;
}

.p-r-10 {
  padding-right: 0.625rem !important;
}

.m-t-15 {
  margin-top: 0.9375rem !important;
}

.p-t-15 {
  padding-top: 0.9375rem !important;
}

.m-l-15 {
  margin-left: 0.9375rem !important;
}

.p-l-15 {
  padding-left: 0.9375rem !important;
}

.m-b-15 {
  margin-bottom: 0.9375rem !important;
}

.p-b-15 {
  padding-bottom: 0.9375rem !important;
}

.m-r-15 {
  margin-right: 0.9375rem !important;
}

.p-r-15 {
  padding-right: 0.9375rem !important;
}

.m-t-20 {
  margin-top: 1.25rem !important;
}

.p-t-20 {
  padding-top: 1.25rem !important;
}

.m-l-20 {
  margin-left: 1.25rem !important;
}

.p-l-20 {
  padding-left: 1.25rem !important;
}

.m-b-20 {
  margin-bottom: 1.25rem !important;
}

.p-b-20 {
  padding-bottom: 1.25rem !important;
}

.m-r-20 {
  margin-right: 1.25rem !important;
}

.p-r-20 {
  padding-right: 1.25rem !important;
}

.m-t-25 {
  margin-top: 1.5625rem !important;
}

.p-t-25 {
  padding-top: 1.5625rem !important;
}

.m-l-25 {
  margin-left: 1.5625rem !important;
}

.p-l-25 {
  padding-left: 1.5625rem !important;
}

.m-b-25 {
  margin-bottom: 1.5625rem !important;
}

.p-b-25 {
  padding-bottom: 1.5625rem !important;
}

.m-r-25 {
  margin-right: 1.5625rem !important;
}

.p-r-25 {
  padding-right: 1.5625rem !important;
}

.m-t-30 {
  margin-top: 1.875rem !important;
}

.p-t-30 {
  padding-top: 1.875rem !important;
}

.m-l-30 {
  margin-left: 1.875rem !important;
}

.p-l-30 {
  padding-left: 1.875rem !important;
}

.m-b-30 {
  margin-bottom: 1.875rem !important;
}

.p-b-30 {
  padding-bottom: 1.875rem !important;
}

.m-r-30 {
  margin-right: 1.875rem !important;
}

.p-r-30 {
  padding-right: 1.875rem !important;
}

.m-t-35 {
  margin-top: 2.1875rem !important;
}

.p-t-35 {
  padding-top: 2.1875rem !important;
}

.m-l-35 {
  margin-left: 2.1875rem !important;
}

.p-l-35 {
  padding-left: 2.1875rem !important;
}

.m-b-35 {
  margin-bottom: 2.1875rem !important;
}

.p-b-35 {
  padding-bottom: 2.1875rem !important;
}

.m-r-35 {
  margin-right: 2.1875rem !important;
}

.p-r-35 {
  padding-right: 2.1875rem !important;
}

.m-t-40 {
  margin-top: 2.5rem !important;
}

.p-t-40 {
  padding-top: 2.5rem !important;
}

.m-l-40 {
  margin-left: 2.5rem !important;
}

.p-l-40 {
  padding-left: 2.5rem !important;
}

.m-b-40 {
  margin-bottom: 2.5rem !important;
}

.p-b-40 {
  padding-bottom: 2.5rem !important;
}

.m-r-40 {
  margin-right: 2.5rem !important;
}

.p-r-40 {
  padding-right: 2.5rem !important;
}

.m-t-45 {
  margin-top: 2.8125rem !important;
}

.p-t-45 {
  padding-top: 2.8125rem !important;
}

.m-l-45 {
  margin-left: 2.8125rem !important;
}

.p-l-45 {
  padding-left: 2.8125rem !important;
}

.m-b-45 {
  margin-bottom: 2.8125rem !important;
}

.p-b-45 {
  padding-bottom: 2.8125rem !important;
}

.m-r-45 {
  margin-right: 2.8125rem !important;
}

.p-r-45 {
  padding-right: 2.8125rem !important;
}

.m-t-50 {
  margin-top: 3.125rem !important;
}

.p-t-50 {
  padding-top: 3.125rem !important;
}

.m-l-50 {
  margin-left: 3.125rem !important;
}

.p-l-50 {
  padding-left: 3.125rem !important;
}

.m-b-50 {
  margin-bottom: 3.125rem !important;
}

.p-b-50 {
  padding-bottom: 3.125rem !important;
}

.m-r-50 {
  margin-right: 3.125rem !important;
}

.p-r-50 {
  padding-right: 3.125rem !important;
}

.m-t-55 {
  margin-top: 3.4375rem !important;
}

.p-t-55 {
  padding-top: 3.4375rem !important;
}

.m-l-55 {
  margin-left: 3.4375rem !important;
}

.p-l-55 {
  padding-left: 3.4375rem !important;
}

.m-b-55 {
  margin-bottom: 3.4375rem !important;
}

.p-b-55 {
  padding-bottom: 3.4375rem !important;
}

.m-r-55 {
  margin-right: 3.4375rem !important;
}

.p-r-55 {
  padding-right: 3.4375rem !important;
}

.m-t-60 {
  margin-top: 3.75rem !important;
}

.p-t-60 {
  padding-top: 3.75rem !important;
}

.m-l-60 {
  margin-left: 3.75rem !important;
}

.p-l-60 {
  padding-left: 3.75rem !important;
}

.m-b-60 {
  margin-bottom: 3.75rem !important;
}

.p-b-60 {
  padding-bottom: 3.75rem !important;
}

.m-r-60 {
  margin-right: 3.75rem !important;
}

.p-r-60 {
  padding-right: 3.75rem !important;
}

.m-h-center {
  margin-left: auto;
  margin-right: auto;
}

.txt-base {
  font-size: 1rem;
}

.txt-xsm {
  font-size: 0.75rem;
}

.txt-sm {
  font-size: 0.875rem;
}

.txt-md {
  font-size: 1.125rem;
}

.txt-lg {
  font-size: 1.5625rem;
}

.txt-xlg {
  font-size: 2.1875rem;
}

.txt-wt-base {
  font-weight: 400 !important;
}

.txt-wt-xlt {
  font-weight: 100 !important;
}

.txt-wt-lt {
  font-weight: 300 !important;
}

.txt-wt-nml {
  font-weight: 400 !important;
}

.txt-wt-md {
  font-weight: 500 !important;
}

.txt-wt-bld {
  font-weight: 700 !important;
}

.txt-lh-base {
  line-height: 1.5 !important;
}

.txt-lh-1 {
  line-height: 1 !important;
}

.txt-lh-0 {
  line-height: 0 !important;
}

.txt-lh-sm {
  line-height: 0.5 !important;
}

.txt-lh-md {
  line-height: 1.5 !important;
}

.txt-lh-lg {
  line-height: 2 !important;
}

.txt-lh-xlg {
  line-height: 2.5 !important;
}

.txt-lh-xxlg {
  line-height: 3 !important;
}

.txt-lh-xxxlg {
  line-height: 3.5 !important;
}

.txt-ls-base {
  letter-spacing: 0 !important;
}

.txt-ls-xxsm {
  letter-spacing: 0.008125rem !important;
}

.txt-ls-xsm {
  letter-spacing: 0.01rem !important;
}

.txt-ls-sm {
  letter-spacing: 1px !important;
}

.txt-ls-md {
  letter-spacing: 0.0125rem !important;
}

.txt-ls-lg {
  letter-spacing: 0.019375rem !important;
}

.txt-ls-xlg {
  letter-spacing: 0.025rem !important;
}

.txt-ls-xxlg {
  letter-spacing: 0.035rem !important;
}

.txt-ls-xxxlg {
  letter-spacing: 0.070625rem !important;
}

.txt-upper {
  text-transform: uppercase !important;
}

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

.txt-right {
  text-align: right !important;
}

.txt-left {
  text-align: left !important;
}

.txt-on-ol {
  z-index: 5;
}

.txt-no-space {
  line-height: 0;
  letter-spacing: 0;
  font-size: 0;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
}

.f-grow-0 {
  flex-grow: 0;
}

.start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

html {
  font-size: 100%;
}

a:not(.button),
a:not(.button):visited {
  transition: color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}
em {
  font-style: italic;
}

blockquote {
  font-style: italic;
  font-weight: 300;
}

p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.user-text,
.user-text p {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
  font-weight: normal;
}

.minimal-form form .msf-form-field-group input[type=submit], body .btn, body .minimal-form form .msf-form-field-group input[type=file] + label, .minimal-form form .msf-form-field-group body input[type=file] + label {
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.minimal-form form .msf-form-field-group input[type=submit]:hover, body .btn:hover, body .minimal-form form .msf-form-field-group input[type=file] + label:hover, .minimal-form form .msf-form-field-group body input[type=file] + label:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .minimal-form form .msf-form-field-group input[type=submit], body .btn, body .minimal-form form .msf-form-field-group input[type=file] + label, .minimal-form form .msf-form-field-group body input[type=file] + label {
    margin: 0 auto;
  }
}

body.btn-rounded .btn, body.btn-rounded .minimal-form form .msf-form-field-group input[type=file] + label, .minimal-form form .msf-form-field-group body.btn-rounded input[type=file] + label,
body.btn-rounded .msf-form .msf-form-submit {
  border-radius: 6.25rem !important;
}

.msf-form-field-group input,
.msf-form-field-group select,
.msf-form-field-group textarea {
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-7);
  outline: none;
  font-family: inherit;
}
body.dark-theme .msf-form-field-group input,
body.dark-theme .msf-form-field-group select,
body.dark-theme .msf-form-field-group textarea {
  color: var(--color-7);
}

.msf-form-field-group input::placeholder,
.msf-form-field-group select::placeholder,
.msf-form-field-group textarea::placeholder {
  color: inherit;
  font-weight: inherit;
  font-family: inherit;
}
body.dark-theme .msf-form-field-group input::placeholder,
body.dark-theme .msf-form-field-group select::placeholder,
body.dark-theme .msf-form-field-group textarea::placeholder {
  color: inherit;
}

.msf-form-field-group textarea {
  resize: none;
}

.msf-form-field-group label,
.msf-form-radio-group .msf-form-field-label,
.msf-form-checkbox-group .msf-form-field-label,
.msf-form-label-only {
  font-family: inherit;
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-7);
}
body.dark-theme .msf-form-field-group label,
body.dark-theme .msf-form-radio-group .msf-form-field-label,
body.dark-theme .msf-form-checkbox-group .msf-form-field-label,
body.dark-theme .msf-form-label-only {
  color: var(--color-7);
}

.msf-form-field-group input[type=submit] {
  -webkit-appearance: none;
}

.msf-form-radio-group .msf-form-field-label,
.msf-form-checkbox-group .msf-form-field-label {
  display: block;
  margin-bottom: 15px;
  text-align: left;
}
.msf-form-radio-group .msf-form-field-group input,
.msf-form-checkbox-group .msf-form-field-group input {
  width: AUTO;
  margin: 0 10px 0 0;
}
.msf-form-radio-group .msf-form-field-group label,
.msf-form-checkbox-group .msf-form-field-group label {
  position: relative;
  top: auto;
}

.msf-form-message {
  font-weight: 400;
  color: var(--color-7);
}
body.dark-theme .msf-form-message {
  color: var(--color-7);
}

.form-error {
  display: none;
}

.minimal-form form .msf-form-field-group {
  position: relative;
  margin-bottom: 1.875rem;
  line-height: 1;
}
.minimal-form form .msf-form-field-group label {
  position: absolute;
  left: 0;
  top: calc(100% - (1rem + 0.6875rem));
  transition: top 0.3s, transform 0.3s ease;
}
.minimal-form form .msf-form-field-group select,
.minimal-form form .msf-form-field-group input,
.minimal-form form .msf-form-field-group input[type=file] + label,
.minimal-form form .msf-form-field-group textarea {
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid;
  border-bottom-color: var(--color-7);
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 0 0.6875rem 0;
  transition: border-bottom 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
body.dark-theme .minimal-form form .msf-form-field-group select,
body.dark-theme .minimal-form form .msf-form-field-group input,
body.dark-theme .minimal-form form .msf-form-field-group input[type=file] + label,
body.dark-theme .minimal-form form .msf-form-field-group textarea {
  color: var(--color-7);
  border-color: var(--color-7);
}
.minimal-form form .msf-form-field-group input,
.minimal-form form .msf-form-field-group select,
.minimal-form form .msf-form-field-group textarea {
  margin-top: 1.4375rem;
}
.minimal-form form .msf-form-field-group input {
  height: auto;
}
.minimal-form form .msf-form-field-group input[type=date] + label,
.minimal-form form .msf-form-field-group select + label {
  top: 0;
}
.minimal-form form .msf-form-field-group input[type=file] {
  -webkit-appearance: none;
  visibility: hidden;
  position: absolute;
  height: 0;
  width: 0;
  height: 0;
  z-index: -1;
  margin-top: 0;
}
.minimal-form form .msf-form-field-group input[type=file] + label {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  cursor: pointer;
  transition: border-bottom 0.3s ease, color 0.3s ease;
}
.minimal-form form .msf-form-field-group input[type=file] + label:hover {
  border-bottom: 2px solid var(--color-3);
}
body.btn-rounded .minimal-form form .msf-form-field-group input[type=file] + label {
  border-radius: 6.25rem !important;
}
.minimal-form form .msf-form-field-group textarea {
  transition: max-height 0.3s ease;
  overflow: hidden;
  max-height: calc((1rem + rem(11px)));
}
.minimal-form form .msf-form-field-group select {
  background-size: 0.875rem;
  background-position: bottom 1rem right 1rem;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-left: 0;
}
.minimal-form form .msf-form-field-group select::ms-expand {
  display: none;
}
.minimal-form form .msf-form-field-group input[type=checkbox],
.minimal-form form .msf-form-field-group input[type=radio] {
  border: none;
}
.minimal-form form .msf-form-field-group input[type=checkbox] {
  -webkit-appearance: checkbox;
}
.minimal-form form .msf-form-field-group input[type=radio] {
  -webkit-appearance: radio;
}
.minimal-form form .msf-form-field-group select:hover,
.minimal-form form .msf-form-field-group select.filled,
.minimal-form form .msf-form-field-group input:hover,
.minimal-form form .msf-form-field-group input:focus,
.minimal-form form .msf-form-field-group input.filled,
.minimal-form form .msf-form-field-group input[type=file]:hover + label,
.minimal-form form .msf-form-field-group input[type=file]:focus + label,
.minimal-form form .msf-form-field-group input[type=file].filled + label,
.minimal-form form .msf-form-field-group textarea:hover,
.minimal-form form .msf-form-field-group textarea:focus,
.minimal-form form .msf-form-field-group textarea.filled {
  border-bottom: 2px solid var(--color-3);
}
body.dark-theme .minimal-form form .msf-form-field-group select:hover,
body.dark-theme .minimal-form form .msf-form-field-group select.filled,
body.dark-theme .minimal-form form .msf-form-field-group input:hover,
body.dark-theme .minimal-form form .msf-form-field-group input:focus,
body.dark-theme .minimal-form form .msf-form-field-group input.filled,
body.dark-theme .minimal-form form .msf-form-field-group input[type=file]:hover + label,
body.dark-theme .minimal-form form .msf-form-field-group input[type=file]:focus + label,
body.dark-theme .minimal-form form .msf-form-field-group input[type=file].filled + label,
body.dark-theme .minimal-form form .msf-form-field-group textarea:hover,
body.dark-theme .minimal-form form .msf-form-field-group textarea:focus,
body.dark-theme .minimal-form form .msf-form-field-group textarea.filled {
  border-bottom: 2px solid var(--color-3);
}
.minimal-form form .msf-form-field-group select + label,
.minimal-form form .msf-form-field-group input[type=date] + label,
.minimal-form form .msf-form-field-group input:not([type=file]).filled + label,
.minimal-form form .msf-form-field-group input:not([type=file]):focus + label,
.minimal-form form .msf-form-field-group input.filled + label,
.minimal-form form .msf-form-field-group input:focus + label,
.minimal-form form .msf-form-field-group textarea.filled + label,
.minimal-form form .msf-form-field-group textarea:focus + label {
  top: 0;
  transform: scale(0.75);
  transform-origin: left;
  color: var(--color-3);
}
body.dark-theme .minimal-form form .msf-form-field-group select + label,
body.dark-theme .minimal-form form .msf-form-field-group input[type=date] + label,
body.dark-theme .minimal-form form .msf-form-field-group input:not([type=file]).filled + label,
body.dark-theme .minimal-form form .msf-form-field-group input:not([type=file]):focus + label,
body.dark-theme .minimal-form form .msf-form-field-group input.filled + label,
body.dark-theme .minimal-form form .msf-form-field-group input:focus + label,
body.dark-theme .minimal-form form .msf-form-field-group textarea.filled + label,
body.dark-theme .minimal-form form .msf-form-field-group textarea:focus + label {
  color: var(--color-3);
}
.minimal-form form .msf-form-field-group textarea:focus,
.minimal-form form .msf-form-field-group textarea.filled {
  overflow-y: auto;
  height: auto;
  max-height: calc((1rem + rem(11px)) * 2);
}
.minimal-form form .msf-form-field-group input[type=checkbox]:focus + label, .minimal-form form .msf-form-field-group input[type=checkbox].filled + label,
.minimal-form form .msf-form-field-group input[type=checkbox] + label,
.minimal-form form .msf-form-field-group input[type=radio]:focus + label,
.minimal-form form .msf-form-field-group input[type=radio].filled + label,
.minimal-form form .msf-form-field-group input[type=radio] + label {
  top: 0;
  transform: none;
}
.minimal-form form .msf-form-message {
  margin: 1.25rem auto;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}

body {
  background-color: var(--color-10);
}
body.dark-theme {
  background-color: var(--color-10);
}

img {
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: 1210px;
  padding-left: 0.78125rem;
  padding-right: 0.78125rem;
  margin: 0 auto;
}

section > .bkg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.parallax {
  background-size: 120%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .parallax {
    background-size: 150%;
  }
}

header nav ul {
  display: flex;
}

nav ul {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
}
nav ul li {
  list-style: none;
  list-style: none;
  text-indent: 0;
  margin-left: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-10);
}
nav ul li a:not(.button),
nav ul li a:not(.button):visited {
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
nav ul li a:not(.button):hover,
nav ul li a:not(.button):visited:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  nav ul li a:not(.button),
nav ul li a:not(.button):visited {
    white-space: nowrap;
  }
}

header .nav-icon {
  width: 25px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 1.875rem;
  z-index: 50;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg) translateY(-50%);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 767px) {
  header .nav-icon {
    right: 0.9375rem;
  }
}
header .nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-7);
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header .nav-icon span:nth-child(1) {
  top: 0px;
}
header .nav-icon span:nth-child(2), header .nav-icon span:nth-child(3) {
  top: 8px;
}
header .nav-icon span:nth-child(4) {
  top: 16px;
}

header .nav-wrapper.is-visible + .nav-icon span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}
header .nav-wrapper.is-visible + .nav-icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .nav-wrapper.is-visible + .nav-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .nav-wrapper.is-visible + .nav-icon span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

body.dark-theme footer svg path {
  fill: var(--color-7);
}

.two-cols-txt > .col-50 {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .two-cols-txt > .col-50 {
    margin-bottom: 1.875rem;
  }
}

.hero.full-ht {
  height: 100vh;
}

.hero.hero-short {
  height: 660px;
}

.simple {
  padding: 130px 0px;
}
@media screen and (max-width: 767px) {
  .simple {
    padding: calc(130px / 2) calc(0px / 2);
    text-align: center;
  }
}

.simple.two-col-btn-top .grid-container.dtls-container {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .simple.two-col-btn-top .grid-container.dtls-container {
    margin-top: 3.125rem;
  }
}

.simple.full-img {
  height: 40vw;
}
.simple.full-img > .bkg-img.parallax {
  z-index: unset;
}

.simple.simple-items-dtls-desc {
  padding: 3.125rem 0;
}
@media screen and (max-width: 767px) {
  .simple.simple-items-dtls-desc {
    padding: 1.5625rem 0;
  }
}

.split {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .split > .col-50 {
    height: auto;
    width: 100%;
    max-width: 100%;
    display: block;
    padding-top: calc(130px / 2);
    padding-bottom: calc(130px / 2);
    text-align: center;
  }
}
.split > .col-50.img-wrapper-cover {
  position: relative;
  width: 100%;
  height: auto;
  align-self: stretch;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .split > .col-50.img-wrapper-cover {
    height: 100vw;
  }
}
@media screen and (max-width: 767px) {
  .split > .col-50:nth-child(2).img-wrapper-cover {
    order: -1;
  }
}
.split > .col-50 .text-wrapper .dtls {
  font-size: 1.5625rem;
}

.blog-master-container {
  margin: 50px 0;
}
.blog-master-container article {
  margin-bottom: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .blog-master-container article {
    margin-bottom: 3.75rem;
  }
}
.blog-master-container article .post-date,
.blog-master-container article .post-link {
  font-style: italic;
}
.blog-master-container article .post-img {
  width: 100%;
  padding-top: 56%;
}
.blog-master-container article a {
  font-weight: 700;
}
.blog-master-container aside {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .blog-master-container aside {
    display: none;
  }
}
.blog-master-container aside .aside-wrapper:first-child {
  margin-bottom: 4.375rem;
}
.blog-master-container aside .aside-wrapper a {
  display: block;
  margin-bottom: 0.9375rem;
  font-weight: 300;
}
.blog-master-container aside .aside-wrapper a:hover {
  font-weight: 500;
}
.blog-master-container .pagination > :nth-child(2) {
  margin-left: 0.625rem;
}

.blog-master-container.blog-post article {
  margin-bottom: 3.125rem;
}

.wrapper-404 {
  min-height: 75vh;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

body {
  color: var(--color-7);
}

section {
  padding: 0;
}
section a {
  transform: color 0.3s ease;
  text-decoration-color: currentColor;
}

nav ul li {
  padding-left: 0;
}
nav ul li::before {
  display: none;
}
nav ul li a {
  text-decoration: none;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: var(--color-3);
}

body .btn, body .minimal-form form .msf-form-field-group input[type=file] + label, .minimal-form form .msf-form-field-group body input[type=file] + label,
body .btn:visited,
body .button,
body a.button:visited,
.minimal-form form .msf-form-field-group input[type=submit] {
  display: inline-block;
  min-width: 180px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease;
}
body .btn.btn-bkg-3, body .minimal-form form .msf-form-field-group input[type=file] + label.btn-bkg-3, .minimal-form form .msf-form-field-group body input[type=file] + label.btn-bkg-3,
body .btn:visited.btn-bkg-3,
body .button.btn-bkg-3,
body a.button:visited.btn-bkg-3,
.minimal-form form .msf-form-field-group input[type=submit].btn-bkg-3 {
  background-color: var(--color-3);
  border-color: var(--color-3);
  color: var(--color-10);
}
body .btn.btn-bkg-3:hover, body .minimal-form form .msf-form-field-group input[type=file] + label.btn-bkg-3:hover, .minimal-form form .msf-form-field-group body input[type=file] + label.btn-bkg-3:hover,
body .btn:visited.btn-bkg-3:hover,
body .button.btn-bkg-3:hover,
body a.button:visited.btn-bkg-3:hover,
.minimal-form form .msf-form-field-group input[type=submit].btn-bkg-3:hover {
  background-color: var(--color-10);
  border-color: var(--color-3);
  color: var(--color-3);
  box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
}
body .btn.btn-bkg-4, body .minimal-form form .msf-form-field-group input[type=file] + label.btn-bkg-4, .minimal-form form .msf-form-field-group body input[type=file] + label.btn-bkg-4,
body .btn:visited.btn-bkg-4,
body .button.btn-bkg-4,
body a.button:visited.btn-bkg-4,
.minimal-form form .msf-form-field-group input[type=submit].btn-bkg-4 {
  background-color: var(--color-4);
  border-color: var(--color-4);
  color: var(--color-10);
}
body .btn.btn-bkg-4:hover, body .minimal-form form .msf-form-field-group input[type=file] + label.btn-bkg-4:hover, .minimal-form form .msf-form-field-group body input[type=file] + label.btn-bkg-4:hover,
body .btn:visited.btn-bkg-4:hover,
body .button.btn-bkg-4:hover,
body a.button:visited.btn-bkg-4:hover,
.minimal-form form .msf-form-field-group input[type=submit].btn-bkg-4:hover {
  background-color: var(--color-10);
  border-color: var(--color-10);
  color: var(--color-4);
  box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
}
body .btn.btn-bkg-10, body .minimal-form form .msf-form-field-group input[type=file] + label.btn-bkg-10, .minimal-form form .msf-form-field-group body input[type=file] + label.btn-bkg-10,
body .btn:visited.btn-bkg-10,
body .button.btn-bkg-10,
body a.button:visited.btn-bkg-10,
.minimal-form form .msf-form-field-group input[type=submit].btn-bkg-10 {
  background-color: var(--color-10);
  border-color: var(--color-3);
  color: var(--color-4);
}
body .btn.btn-bkg-10:hover, body .minimal-form form .msf-form-field-group input[type=file] + label.btn-bkg-10:hover, .minimal-form form .msf-form-field-group body input[type=file] + label.btn-bkg-10:hover,
body .btn:visited.btn-bkg-10:hover,
body .button.btn-bkg-10:hover,
body a.button:visited.btn-bkg-10:hover,
.minimal-form form .msf-form-field-group input[type=submit].btn-bkg-10:hover {
  background-color: var(--color-3);
  border-color: var(--color-3);
  color: var(--color-10);
}

body.msf-signed-in header + [msf-editable=true]:hover > .msf-content-block-hover,
body.msf-signed-in header + [msf-editable=true]:hover > .bkg-img:hover > .msf-content-block-hover,
body.msf-signed-in header + [msf-editable=true]:hover > .img-wrapper-cover:hover [msf-editable=true] > .msf-content-block-hover,
body.msf-signed-in header + section:hover > .msf-content-block-hover,
body.msf-signed-in header + section:hover > .bkg-img:hover > .msf-content-block-hover,
body.msf-signed-in header + section:hover > .img-wrapper-cover:hover [msf-editable=true] > .msf-content-block-hover,
body.msf-signed-in header + section > [msf-editable=true]:hover > .msf-content-block-hover,
body.msf-signed-in header + section > [msf-editable=true]:hover > .bkg-img:hover > .msf-content-block-hover,
body.msf-signed-in header + section > [msf-editable=true]:hover > .img-wrapper-cover:hover [msf-editable=true] > .msf-content-block-hover,
body.msf-signed-in header + section .swiper-container .swiper-slide:hover > .msf-content-block-hover,
body.msf-signed-in header + section .swiper-container .swiper-slide:hover > .bkg-img:hover > .msf-content-block-hover,
body.msf-signed-in header + section .swiper-container .swiper-slide:hover > .img-wrapper-cover:hover [msf-editable=true] > .msf-content-block-hover {
  height: calc(100% - 115px);
  top: auto;
  bottom: 0;
}
body.msf-signed-in header {
  padding-left: 60px;
}
body.msf-signed-in footer .footer-social a {
  width: 150px;
  min-height: 100px;
}
body.msf-signed-in footer .footer-bottom {
  padding-bottom: 40px;
}
body.msf-signed-in footer .footer-bottom a {
  padding-top: 10px;
  padding-bottom: 10px;
}
body.msf-signed-in section > .bkg-img,
body.msf-signed-in section .swiper-slide > .bkg-img,
body.msf-signed-in .project .bkg-img,
body.msf-signed-in .bkg-img {
  z-index: auto !important;
}

@media screen and (max-width: 767px) {
  body:not(.msf-signed-in) .embed-wrapper.desktop-embed {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  body:not(.msf-signed-in) .embed-wrapper.mobile-embed {
    display: none;
  }
}

html.overflow-hidden,
body.overflow-hidden {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .d-desk {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .d-mob {
    display: none !important;
  }
}

.img-wrapper-cover > [msf_editable=true] {
  height: 100%;
  width: 100%;
}
.img-wrapper-cover img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
}

.f-basis-unset {
  flex-basis: unset;
}

.f-grow-0 {
  flex-grow: 0;
}

.f-wrap {
  flex-wrap: wrap;
}

.headings-color-2 h1, .headings-color-2 .h1, .headings-color-2 h2, .headings-color-2 .h2, .headings-color-2 h3, .headings-color-2 .h3, .headings-color-2 h4, .headings-color-2 .h4, .headings-color-2 h5, .headings-color-2 .h5, .headings-color-2 h6, .headings-color-2 .h6 {
  color: var(--color-2);
}

.headings-color-4 h1, .headings-color-4 .h1, .headings-color-4 h2, .headings-color-4 .h2, .headings-color-4 h3, .headings-color-4 .h3, .headings-color-4 h4, .headings-color-4 .h4, .headings-color-4 h5, .headings-color-4 .h5, .headings-color-4 h6, .headings-color-4 .h6 {
  color: var(--color-4);
}

.headings-color-10 h1, .headings-color-10 .h1, .headings-color-10 h2, .headings-color-10 .h2, .headings-color-10 h3, .headings-color-10 .h3, .headings-color-10 h4, .headings-color-10 .h4, .headings-color-10 h5, .headings-color-10 .h5, .headings-color-10 h6, .headings-color-10 .h6 {
  color: var(--color-10);
}

.trumbowyg-dropdown button:hover {
  border: none;
  border-radius: 0;
  padding: 0 20px 0 10px;
}

.grid-container.blog-container {
  max-width: 1200px;
}

.grid-container.blog-container.p-t-xxxlg {
  padding-top: 100px;
}

.grid-container.blog-container.shorter {
  max-width: 1000px;
}

@media (max-width: 767px) {
  #blog-roll-sidebar {
    display: none;
  }
}
.blog-button {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  background-color: #8D8D8D;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  padding: 10px 20px;
  margin: 0px 0px 5px 0px;
  border-radius: 5px;
  cursor: pointer;
}

.blog-button.active {
  background-color: var(--color-1);
}

.blog-button:hover {
  color: #ffffff;
}

.blog-txt-small {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #BBBBBB;
  text-transform: uppercase;
}

/* ARTICLE CARDS */
.article-card {
  width: 100%;
  border-radius: 5px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.17);
  margin-bottom: 15px;
}

.article-card .article-image {
  width: 100%;
  height: 300px;
}

.article-card .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px 5px 0px 0px;
}

.article-card .article-preview {
  padding: 35px 25px;
}

.article-card .article-preview .article-info {
  display: flex;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  color: #BBBBBB;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.article-card .article-preview .article-title {
  padding-bottom: 15px;
}

.article-card .article-preview .article-title a {
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: var(--color-1);
}

.article-card .article-preview .article-title a:hover {
  text-decoration: underline;
}

.article-card .article-preview .article-content {
  display: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 31px;
  color: #9B9B9B;
  padding-bottom: 35px;
}

/* WIDGETS */
.blog-author-widget {
  width: 100%;
  padding: 35px 25px;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.17);
}

.blog-author-widget .col-20 img {
  width: 100%;
}

.blog-categories-widget {
  width: 100%;
  padding: 35px 25px;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.17);
}

.blog-categories-widget .blog-category {
  padding: 20px 0px;
  border-bottom: 1px solid #979797;
}

.blog-categories-widget .blog-category:last-child {
  padding-bottom: 0;
  border: none;
}

.blog-categories-widget .blog-category a {
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
  color: #9B9B9B;
}

.blog-categories-widget .blog-category a.active {
  color: var(--color-1);
}

.blog-categories-widget .blog-category a .material-icons {
  display: inline-block;
  padding: 2px 5px 0px 0px;
}

.blog-recent-widget {
  width: 100%;
  padding: 35px 25px;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.17);
}

.blog-recent-widget .blog-recent-post {
  padding: 20px 0px;
  border-bottom: 1px solid #979797;
}

.blog-recent-widget .blog-recent-post:last-child {
  padding-bottom: 0;
  border: none;
}

.blog-recent-widget .blog-recent-post a {
  font-size: 18px;
  line-height: normal;
  font-weight: 600;
  color: var(--color-1);
}

.blog-recent-widget .blog-recent-post a .article-info {
  display: flex;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  color: #BBBBBB;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.blog-search-widget {
  width: 100%;
  padding: 10px 25px;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.17);
}

.blog-search-widget input[type=text] {
  color: #133C65;
  width: 100%;
  border: none;
  outline: 0;
  padding: 10px 0;
}

.blog-search-widget .blog-search-icon {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 5px;
  background-color: #FFFFFF;
}

.blog-search-widget .blog-search-icon img {
  width: 23px;
}

.blog-social-widget {
  width: 100%;
  margin-bottom: 30px;
}

.blog-social-widget a img {
  max-width: 50px;
}

.blog-social-widget a:nth-child(n+3) {
  display: none;
}

.blog-subscribe-widget {
  width: 100%;
  padding: 35px 25px;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.17);
}

.blog-subscribe-widget form {
  display: flex;
  width: 100%;
}

.blog-subscribe-widget form .msf-form-field-group:nth-child(2) {
  width: 750%;
  margin-right: 2.5%;
}

.blog-subscribe-widget form .msf-form-field-group input {
  margin-top: 15px;
}

.blog-subscribe-widget form .msf-form-field-group input[type=email] {
  width: 100%;
  margin-right: 5%;
  border: none;
  background-color: #EDEDED;
  border-radius: 5px;
  padding: 13px 10px;
  font-size: 16px;
  font-weight: 500;
}

.blog-subscribe-widget form .msf-form-field-group input[type=email]:focus {
  border: none;
}

.blog-subscribe-widget form .msf-form-field-group {
  margin: 0;
}

.blog-subscribe-widget form .msf-form-field-group input[type=email] + label {
  display: none;
}

.blog-subscribe-widget form .msf-form-field-group input[type=submit] {
  min-width: auto;
  border: none;
  border-radius: 5px;
  padding: 14px 25px;
  width: auto;
  height: auto;
  box-shadow: none;
  clip-path: none;
}

.blog-subscribe-widget form .msf-form-field-group input[type=submit]:hover {
  border: none;
  background-color: var(--color-1);
}

.blog-tags-widget {
  width: 100%;
  padding: 35px 25px;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.17);
}

.blog-tags-widget .blog-tags {
  padding: 20px 0px 0px 0px;
}

.blog-tags-widget .blog-tags a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  background-color: #8D8D8D;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  padding: 10px 20px;
  margin: 0px 0px 5px 0px;
  border-radius: 5px;
  cursor: pointer;
}

.blog-tags-widget .blog-tags a.active {
  background-color: var(--color-1);
}

.blog-tags-widget .blog-tags a:hover {
  color: #ffffff;
}

.breadcrumbs-widget {
  width: 100%;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #BBBBBB;
}

.breadcrumbs-widget a {
  text-decoration: none;
  color: #BBBBBB;
}

.breadcrumbs-widget a:hover {
  text-decoration: underline;
}

.filter-display-widget {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-1);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.blog-pagination-widget a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  background-color: #8D8D8D;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  padding: 10px 20px;
  margin: 0px 0px 5px 0px;
  border-radius: 5px;
  cursor: pointer;
}

.blog-pagination-widget a.active {
  background-color: var(--color-1);
}

.blog-pagination-widget a:hover {
  color: #ffffff;
}

.prev-next-widget {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
}

.prev-next-widget a {
  text-decoration: none;
  color: #133C65;
}

.prev-next-widget a:hover {
  text-decoration: underline;
}

.article-container {
  color: var(--color-7);
}

.article-container .article-title {
  font-size: 30px;
  line-height: 39px;
}

.article-container .article-info {
  display: flex;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  color: var(--color-1);
  padding-bottom: 5px;
  margin-bottom: 0;
}

.article-container .blog-element,
.article-container .blog-element p {
  font-size: 16px;
  line-height: 30px;
}

.article-container img.blog-element {
  width: 100%;
  margin-bottom: 30px;
}

.article-container .blog-element h1,
.article-container .blog-element h2,
.article-container .blog-element h3,
.article-container .blog-element h4,
.article-container .blog-element h5,
.article-container .blog-element h6 {
  color: var(--color-1);
  font-weight: 700;
}

.article-container .blog-element a:not(.btn) {
  color: var(--color-1);
  text-decoration: underline;
}

.article-container ol li {
  list-style: decimal outside;
  margin-left: 18px;
  margin-bottom: 6px;
}

.article-container ul li {
  list-style: disc outside;
  margin-left: 18px;
  margin-bottom: 6px;
}

.is-sticky {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20;
}

.bkg-img.parallax {
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: unset;
}

.button-container:empty {
  display: none;
}

.button-container:not(:empty),
body.body.msf-signed-in .button-container {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .button-container:not(:empty),
body.body.msf-signed-in .button-container {
    display: block;
  }
}
.button-container:not(:empty).f-jc-start,
body.body.msf-signed-in .button-container.f-jc-start {
  justify-content: flex-start;
}
.button-container:not(:empty).buttons-bkg-color-3 .button-block-container a.button,
body.body.msf-signed-in .button-container.buttons-bkg-color-3 .button-block-container a.button {
  background-color: var(--color-3);
  border-color: var(--color-3);
  color: var(--color-10);
}
.button-container:not(:empty).buttons-bkg-color-3 .button-block-container a.button:hover,
body.body.msf-signed-in .button-container.buttons-bkg-color-3 .button-block-container a.button:hover {
  background-color: var(--color-10);
  border-color: var(--color-3);
  color: var(--color-3);
  box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
}
.button-container:not(:empty).odd-buttons-bkg-3 .button-block-container:nth-child(odd) a.button,
body.body.msf-signed-in .button-container.odd-buttons-bkg-3 .button-block-container:nth-child(odd) a.button {
  background-color: var(--color-3);
  border-color: var(--color-3);
  color: var(--color-10);
}
.button-container:not(:empty).odd-buttons-bkg-3 .button-block-container:nth-child(odd) a.button:hover,
body.body.msf-signed-in .button-container.odd-buttons-bkg-3 .button-block-container:nth-child(odd) a.button:hover {
  background-color: var(--color-10);
  border-color: var(--color-3);
  color: var(--color-3);
  box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
}
.button-container:not(:empty).even-buttons-bkg-10 .button-block-container:nth-child(even) a.button,
body.body.msf-signed-in .button-container.even-buttons-bkg-10 .button-block-container:nth-child(even) a.button {
  background-color: var(--color-10);
  border-color: var(--color-3);
  color: var(--color-4);
}
.button-container:not(:empty).even-buttons-bkg-10 .button-block-container:nth-child(even) a.button:hover,
body.body.msf-signed-in .button-container.even-buttons-bkg-10 .button-block-container:nth-child(even) a.button:hover {
  background-color: var(--color-3);
  border-color: var(--color-3);
  color: var(--color-10);
}
.button-container:not(:empty) .button-block-container,
body.body.msf-signed-in .button-container .button-block-container {
  line-height: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .button-container:not(:empty) .button-block-container,
body.body.msf-signed-in .button-container .button-block-container {
    display: block;
  }
}
.button-container:not(:empty) .button-block-container:not(:last-child),
body.body.msf-signed-in .button-container .button-block-container:not(:last-child) {
  margin: 0 25px 0 0;
}
@media screen and (max-width: 767px) {
  .button-container:not(:empty) .button-block-container:not(:last-child),
body.body.msf-signed-in .button-container .button-block-container:not(:last-child) {
    margin: 0 0 20px 0;
  }
}

.swiper-container.centered-slides .swiper-wrapper {
  justify-content: center;
}
.swiper-container .swiper-slide {
  height: auto;
}
.swiper-container .swiper-slide .img-wrapper-cover {
  width: 100%;
}
.swiper-container .swiper-pagination {
  bottom: 30px;
  line-height: 1;
  padding: 0 35px;
  text-align: right;
}
.swiper-container .swiper-pagination-bullet {
  height: 8px;
  width: 8px;
  border: 1px solid var(--color-8);
  background-color: transparent;
  opacity: 1;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.swiper-container .swiper-pagination-bullet-active {
  background-color: var(--color-8);
}

.minimal-form form input[type=submit] {
  background-color: var(--color-3);
  border-color: var(--color-3);
  color: var(--color-10);
  display: inline-block;
  width: auto;
  padding: 20px 30px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
}
.minimal-form form input[type=submit]:hover {
  background-color: var(--color-10);
  border-color: var(--color-3);
  color: var(--color-3);
  box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
}
.minimal-form form .msf-form-field-group select {
  background-image: url(images/icon-select-arrow.svg);
}
.minimal-form form .msf-form-checkbox-group .msf-form-field-label,
.minimal-form form .msf-form-radio-group .msf-form-field-label {
  display: block;
  margin-bottom: 10px;
}
.minimal-form form .msf-form-checkbox-group .msf-form-field-group input,
.minimal-form form .msf-form-radio-group .msf-form-field-group input {
  width: AUTO;
  margin: 0 10px 0 0;
}
.minimal-form form .msf-form-checkbox-group .msf-form-field-group label,
.minimal-form form .msf-form-radio-group .msf-form-field-group label {
  position: relative;
  top: auto;
}
.minimal-form form select + label,
.minimal-form form input[type=date] + label,
.minimal-form form input:not([type=file]).filled + label,
.minimal-form form input:not([type=file]):focus + label,
.minimal-form form input.filled + label,
.minimal-form form input:focus + label,
.minimal-form form textarea.filled + label,
.minimal-form form textarea:focus + label {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fancybox-container button {
  background-color: transparent;
  transition: background-color 0.3s ease;
  border-radius: 0;
  border: none;
  padding: 10px;
}
.fancybox-container button svg path {
  fill: var(--color-2);
  transition: fill 0.3s ease;
}
.fancybox-container button:hover svg path {
  fill: var(--color-6);
}
.fancybox-container .fancybox-bg {
  background-color: var(--color-8);
  opacity: 0.85;
}
.fancybox-container .fancybox-navigation {
  height: 100%;
}

.article-card {
  text-align: left;
}
.article-card .article-info time {
  color: var(--color-2);
  font-size: 0.75rem;
  letter-spacing: 2px;
}
.article-card .article-preview {
  padding: 25px 30px;
}
.article-card .article-preview .article-title a {
  font-size: 1.5625rem;
  color: var(--color-3);
}
.article-card .article-preview .article-content {
  display: block;
  font-weight: 300;
}

.cust-edit-container {
  background-color: rgba(231, 199, 27, 0.26);
  color: var(--color-black) !important;
  border-top: 1px solid var(--color-yellow);
  border-bottom: 1px solid var(--color-yellow);
}
.cust-edit-container.is-hidden {
  display: none;
}
.cust-edit-container h1, .cust-edit-container .h1, .cust-edit-container h2, .cust-edit-container .h2, .cust-edit-container h3, .cust-edit-container .h3, .cust-edit-container h4, .cust-edit-container .h4, .cust-edit-container h5, .cust-edit-container .h5, .cust-edit-container h6, .cust-edit-container .h6 {
  color: var(--color-dark-yellow);
}

header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 10px 40px;
}
@media (min-width: 767px) and (max-width: 980px) {
  header {
    padding: 10px 20px;
  }
}
header .logo-link {
  margin: 10px 0;
}
header .logo-link img {
  max-width: 185px;
  max-height: 45px;
}
@media (min-width: 767px) and (max-width: 980px) {
  header .logo-link img {
    max-width: 140px;
  }
}
@media screen and (min-width: 768px) {
  header nav {
    align-self: stretch;
  }
}
header nav > ul {
  height: 100%;
}
header nav ul li {
  transition: border-bottom 0.3s ease;
  letter-spacing: 2px;
  padding: 0;
  margin-right: 35px;
  text-indent: 0;
}
@media screen and (min-width: 768px) {
  header nav ul li {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 767px) and (max-width: 980px) {
  header nav ul li {
    margin-right: 20px;
  }
}
header nav ul li:hover {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  header nav ul li:hover a {
    color: var(--color-3);
  }
}
@media screen and (min-width: 768px) {
  header nav ul li.has-subnav:hover .subnav {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  header nav ul li.has-subnav .mob-icon {
    display: none;
  }
}
header nav ul li.nav-resources {
  cursor: pointer;
}
header nav ul li.nav-contact a {
  background-color: var(--color-3);
  border-color: var(--color-3);
  color: var(--color-10);
  min-width: 150px;
}
header nav ul li.nav-contact a:hover {
  background-color: var(--color-10);
  border-color: var(--color-3);
  color: var(--color-3);
  box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
}
@media (min-width: 767px) and (max-width: 980px) {
  header nav ul li.nav-contact a {
    min-width: 100px;
    padding: 15px 20px;
  }
}
header nav ul li a {
  display: inline;
  color: var(--color-10);
}
header nav ul li ul.subnav {
  display: block;
  position: absolute;
  max-height: 200vh;
  width: 225px;
  top: calc(100% + 5px);
  left: 50%;
  padding: 12px 20px;
  background-color: var(--color-10);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
header nav ul li ul.subnav:hover {
  opacity: 1;
  visibility: visible;
}
header nav ul li ul.subnav::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, -99%);
  border-top: 0 solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid var(--color-10);
  border-left: 8px solid transparent;
}
@media screen and (max-width: 767px) {
  header nav ul li ul.subnav::before {
    display: none;
  }
}
header nav ul li ul.subnav li {
  margin: 0;
  border-bottom: none;
}
header nav ul li ul.subnav li:not(:last-child) {
  padding: 0 0 12px;
}
header nav ul li ul.subnav li a {
  color: var(--color-7);
  letter-spacing: 1.5px;
  line-height: 1.2;
  display: block;
  margin: 0 auto;
  text-align: center;
  white-space: normal;
}
header nav ul li ul.subnav li a:hover {
  color: var(--color-3);
}
header .nav-icon {
  display: none;
}

@media screen and (max-width: 767px) {
  header {
    padding: 15px 0 15px 20px;
  }
  header .logo-link {
    max-height: 35px;
    max-width: 140px;
  }
  header nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    align-items: center;
    padding: 0 20px;
    background-color: var(--color-3);
    text-align: center;
    transform: translateY(-100vh);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0s linear 0.5s;
  }
  header nav.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease;
  }
  header nav ul {
    display: block;
    text-align: center;
    height: auto;
    max-height: 100%;
    width: 100%;
    padding: 20px 0;
    overflow-y: auto;
  }
  header nav ul li {
    font-size: 1.125rem;
    margin: 0 0 30px 0;
    letter-spacing: 3px;
  }
  header nav ul li.has-subnav.is-expanded .subnav {
    max-height: 500vh;
    overflow: visible;
    padding: 35px 0 0 0;
    transform: none;
    top: 0;
    left: 0;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
  }
  header nav ul li.has-subnav.is-expanded .mob-icon svg {
    transform: rotate(180deg);
  }
  header nav ul li.has-subnav .mob-icon {
    display: flex;
    position: absolute;
    top: 10px;
    right: 45px;
    transform: translateY(-50%) rotate(180deg);
    z-index: 2;
  }
  header nav ul li.has-subnav .mob-icon svg {
    transition: transform 0.3s ease;
  }
  header nav ul li.has-subnav ul.subnav {
    position: relative;
    background-color: transparent;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    font-size: 1rem;
    width: 100%;
  }
  header nav ul li.has-subnav ul.subnav li a {
    display: inline-block;
    color: var(--color-7);
  }
  header nav ul li.has-subnav ul.subnav li a:hover {
    color: var(--color-2);
  }
  header nav ul li.nav-contact {
    margin-bottom: 0;
  }
  header nav ul li.nav-contact a {
    background-color: var(--color-10);
    border-color: var(--color-3);
    color: var(--color-4);
  }
  header nav ul li.nav-contact a:hover {
    background-color: var(--color-3);
    border-color: var(--color-3);
    color: var(--color-10);
  }
  header nav ul li a {
    color: var(--color-10);
  }
  header nav ul li a:hover {
    color: var(--color-7);
  }
  header .nav-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 25px;
    right: 25px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  header .nav-icon.nav-visible {
    position: fixed;
  }
  header .nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    background: var(--color-10);
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  header .nav-icon span:nth-child(1) {
    top: 0px;
  }
  header .nav-icon span:nth-child(2), header .nav-icon span:nth-child(3) {
    top: 10px;
  }
  header .nav-icon.nav-visible span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
  }
  header .nav-icon.nav-visible span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .nav-icon.nav-visible span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header .nav-icon.nav-visible span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
  }
}
footer .columns-container > .col {
  flex-grow: 0;
  flex-basis: unset;
}
footer .footer-top {
  padding: 40px 0;
  letter-spacing: 2px;
  line-height: 1.917;
}
@media screen and (max-width: 767px) {
  footer .footer-top {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-top .columns-container {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  footer .footer-top nav {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-basis: unset;
    flex-grow: 0;
  }
}
footer .footer-top nav ul {
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer .footer-top nav ul {
    width: 150px;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  footer .footer-top nav ul:not(:last-child) {
    margin-right: 50px;
  }
}
footer .footer-top nav ul li {
  padding: 0;
}
footer .footer-top nav ul li a {
  white-space: normal;
  color: var(--color-7);
}
footer .footer-top nav ul li a:hover {
  color: var(--color-2);
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  footer .col.footer-contact,
footer .col.footer-brand {
    margin-left: auto;
  }
}
footer .col.footer-contact {
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer .col.footer-contact {
    text-align: right;
  }
}
footer .col.footer-contact .footer-social {
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  footer .col.footer-contact .footer-social {
    justify-content: center;
  }
}
footer .col.footer-contact .footer-social a:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .columns-container {
    justify-content: center;
  }
}
footer .footer-bottom .contact a {
  letter-spacing: 2px;
}
footer .footer-bottom .contact a:hover {
  text-decoration: none;
}

.hero {
  min-height: 650px;
  line-height: 1.64;
}
@media screen and (max-width: 767px) {
  .hero {
    min-height: 66vh;
    padding: 105px 0 70px;
  }
}
.hero h1, .hero .h1, .hero h2, .hero .h2, .hero h3, .hero .h3, .hero h4, .hero .h4, .hero h5, .hero .h5, .hero h6, .hero .h6 {
  color: var(--color-10);
}
@media screen and (min-width: 768px) {
  .hero .button-container {
    margin-top: 35px;
  }
}

.four-links {
  border-bottom: 1px solid #E3E5E4;
}
@media screen and (min-width: 768px) {
  .four-links .columns-container {
    flex-wrap: nowrap;
  }
}
.four-links .columns-container > a.col {
  padding: 40px 20px;
  flex-basis: unset;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: var(--color-7);
}
@media screen and (max-width: 767px) {
  .four-links .columns-container > a.col {
    padding: 20px 20vw 20px 25vw;
    justify-content: flex-start;
  }
}
@media (min-width: 767px) and (max-width: 950px) {
  .four-links .columns-container > a.col {
    display: block;
    text-align: center;
  }
}
.four-links .columns-container > a.col:hover {
  background-color: var(--color-4);
  color: var(--color-2);
  text-decoration: none;
}
.four-links .columns-container > a.col .img-wrapper {
  height: 65px;
  width: 85px;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 767px) and (max-width: 950px) {
  .four-links .columns-container > a.col .img-wrapper {
    margin: 0 auto 15px;
    justify-content: center;
  }
}
.four-links .columns-container > a.col .img-wrapper img {
  flex-shrink: 1;
}
.four-links .columns-container > a.col:not(:last-child) {
  border-right: 1px solid #E3E5E4;
}
@media screen and (max-width: 767px) {
  .four-links .columns-container > a.col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #E3E5E4;
    flex-basis: 100%;
  }
}

.simple {
  line-height: 1.6;
}
.simple.text-cols .col-100 {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .simple.text-cols .col-100 {
    margin-bottom: 40px;
  }
}
.simple.contact-form .col-40 h1, .simple.contact-form .col-40 .h1, .simple.contact-form .col-40 h2, .simple.contact-form .col-40 .h2, .simple.contact-form .col-40 h3, .simple.contact-form .col-40 .h3, .simple.contact-form .col-40 h4, .simple.contact-form .col-40 .h4, .simple.contact-form .col-40 h5, .simple.contact-form .col-40 .h5, .simple.contact-form .col-40 h6, .simple.contact-form .col-40 .h6 {
  line-height: 1.5;
}
@media (max-width: 975px) {
  .simple.wide-left-col {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}
.simple.wide-left-col .columns-container {
  justify-content: space-between;
}
@media (max-width: 975px) {
  .simple.wide-left-col .columns-container {
    justify-content: center;
  }
}
@media (max-width: 975px) {
  .simple.wide-left-col .col-40,
.simple.wide-left-col .col {
    display: block;
    flex-basis: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
.simple.wide-left-col .wide-left {
  max-width: 490px;
}
@media (max-width: 975px) {
  .simple.wide-left-col .wide-left {
    text-align: left;
  }
  .simple.wide-left-col .wide-left h4:first-of-type {
    text-align: center;
  }
}
@media (min-width: 976px) {
  .simple.wide-left-col .two-col-wrapper {
    display: flex;
  }
  .simple.wide-left-col .two-col-wrapper .col {
    width: 270px;
    flex-basis: unset;
    flex-grow: 0;
  }
}
.simple.calendar-embed .columns-container > .col-80 {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .simple.calendar-embed .columns-container > .col-80 {
    margin-bottom: 35px;
  }
}
.simple.calendar-embed .embed-wrapper {
  box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
}
body:not(.msf-signed-in) .simple.calendar-embed .embed-wrapper.desktop-embed {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body:not(.msf-signed-in) .simple.calendar-embed .embed-wrapper.desktop-embed {
    display: none;
  }
}
body:not(.msf-signed-in) .simple.calendar-embed .embed-wrapper.mobile-embed {
  padding-bottom: 140%;
}
@media screen and (min-width: 768px) {
  body:not(.msf-signed-in) .simple.calendar-embed .embed-wrapper.mobile-embed {
    display: none;
  }
}
body:not(.msf-signed-in) .simple.calendar-embed .embed-wrapper iframe,
body:not(.msf-signed-in) .simple.calendar-embed .embed-wrapper object,
body:not(.msf-signed-in) .simple.calendar-embed .embed-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.simple.sm-txt-cols .col-100 {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .simple.sm-txt-cols .col-100 {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 768px) {
  .simple.lg-video {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.simple.lg-video iframe {
  box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
  max-width: 100%;
}

.media-rotator {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .media-rotator {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}
.media-rotator .swiper-container {
  min-height: 50px;
  overflow: visible;
}
@media (min-width: 1200px) {
  .media-rotator .swiper-container {
    padding-left: calc( ((100% - 1200px) / 2) );
  }
}
.media-rotator .swiper-slide {
  width: auto;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.media-rotator .swiper-slide:hover,
.media-rotator .swiper-slide .sm-blog-card:hover {
  text-decoration: none;
  color: inherit;
  transform: scale(1.02);
}
.media-rotator .swiper-slide iframe {
  max-width: 100%;
  max-height: 100%;
}
.media-rotator .video-wrapper {
  height: 210px;
  width: 375px;
}
@media screen and (max-width: 767px) {
  .media-rotator .video-wrapper {
    height: 185px;
    width: 350px;
  }
}
.media-rotator .bottom-button {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .media-rotator .bottom-button {
    margin-top: 35px;
  }
}
.media-rotator .sm-blog-card {
  display: block;
  padding: 40px 30px;
  margin: 10px;
  border-radius: 5px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.17);
  transition: transform 0.35s ease;
}
.media-rotator .sm-blog-card .content {
  width: 320px;
}
.media-rotator .sm-blog-card time {
  letter-spacing: 2px;
}
.media-rotator.video-rotator a:hover {
  text-decoration: none;
}
.media-rotator.video-rotator .swiper-slide .bkg-img {
  display: block;
  position: relative;
  height: 210px;
  width: 375px;
  border-radius: 5px;
  box-shadow: 0 0 7px 0px rgba(0, 0, 0, 0.5);
}
.media-rotator.video-rotator .swiper-slide .bkg-img img {
  height: 59px;
  width: 83px;
}

.lg-video + .media-rotator::before,
.media-rotator + .media-rotator::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  height: 1px;
  width: 95%;
  background-color: var(--color-7);
  max-width: 1200px;
  transform: translateX(-50%);
}

.split .columns-container > :not(.img-wrapper-cover) {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .split .columns-container > :not(.img-wrapper-cover) {
    min-height: 520px;
    padding: 120px 60px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .split .columns-container > :not(.img-wrapper-cover) + .img-wrapper-cover {
    order: -1;
  }
}
.split .columns-container > .img-wrapper-cover {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .split .columns-container > .img-wrapper-cover {
    height: 100vw;
    text-align: left;
  }
}
.split .columns-container > .img-wrapper-cover img {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .split .txt-wrapper {
    max-width: 490px;
  }
}
@media screen and (max-width: 767px) {
  .split .txt-wrapper ul {
    text-align: left;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .split .button-container {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .split.tall-imgs .col-60,
.split.tall-imgs .col-40 {
    min-height: 620px;
  }
}
@media screen and (max-width: 767px) {
  .split.tall-imgs .col-60 + .col-40 {
    order: -1;
  }
}

.quote {
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .quote {
    padding: 40px;
  }
}
.quote .bkg-img {
  z-index: auto;
}
.quote blockquote {
  color: var(--color-10);
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.1;
}

.sm-blog-roll {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .sm-blog-roll {
    padding: 40px 0;
  }
}
.sm-blog-roll .article-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sm-blog-roll .article-card .article-preview {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.sm-blog-roll .article-card .article-link {
  margin-top: auto;
}

@media screen and (min-width: 768px) {
  .two-buttons .col-50 {
    min-height: 480px;
    padding: 40px 80px;
  }
}

.three-buttons .col-33 {
  height: 320px;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .three-buttons .col-33 {
    height: auto;
    padding: 40px 12px;
  }
}
@media screen and (min-width: 768px) {
  .three-buttons.with-text .col-33 {
    min-height: 480px;
  }
}
.three-buttons.with-text .col-33 .button {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .three-buttons.with-text .col-33 .button {
    margin-top: 15px;
  }
}

.cta.bkg-color-10 .minimal-form input[type=submit]:not(:hover) {
  background-color: var(--color-4);
  border-color: var(--color-4);
  color: var(--color-10);
  box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
}
.cta.bkg-color-10 .minimal-form input[type=submit]:not(:hover):hover {
  background-color: var(--color-10);
  border-color: var(--color-10);
  color: var(--color-4);
  box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
}

.simple + .faq-section {
  padding-top: 0;
}

.faq-section {
  min-height: 50px;
  padding: 140px 0;
}
@media screen and (max-width: 767px) {
  .faq-section {
    padding: 40px 0;
  }
}
.faq-section .faq-item {
  cursor: pointer;
  padding: 30px 15px;
  margin-bottom: 0;
  letter-spacing: 2px;
  border-bottom: 2px solid var(--color-5);
}
@media screen and (max-width: 767px) {
  .faq-section .faq-item {
    padding: 30px 12px;
  }
}
.faq-section .faq-item:hover, .faq-section .faq-item.is-active {
  border-bottom-color: var(--color-4);
}
.faq-section .faq-item:hover .item-top p, .faq-section .faq-item.is-active .item-top p {
  color: var(--color-4);
}
.faq-section .faq-item:hover .item-top > svg path, .faq-section .faq-item.is-active .item-top > svg path {
  fill: var(--color-4);
  stroke: var(--color-4);
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.faq-section .faq-item.is-active .item-top > svg {
  transform: rotate(180deg);
}
.faq-section .faq-item.is-active .item-bottom {
  max-height: 2000vh;
  overflow: visible;
  margin: 10px 0 0;
}
.faq-section .faq-item .item-top p {
  font-size: 1.125rem;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq-section .faq-item .item-top p {
    max-width: 85%;
    font-size: 1rem;
  }
}
.faq-section .faq-item .item-top > svg {
  height: 15px;
  width: 15px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-section .faq-item .item-bottom {
  max-height: 0;
  padding: 0;
  margin: 0;
  color: var(--color-7);
  overflow: hidden;
}

.page-nav .swiper-slide {
  width: auto;
  margin: 0 20px;
}
.page-nav .swiper-slide a {
  display: block;
  color: var(--color-8);
  padding: 0 0 5px;
  margin: 20px 0 15px;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}
.page-nav .swiper-slide a:hover, .page-nav .swiper-slide a.is-selected {
  border-bottom-color: var(--color-4);
  color: var(--color-4);
}
.page-nav .swiper-slide a[msf-editable=true] {
  padding: 0 20px;
}

.blog-subscribe-widget input[type=submit] {
  background-color: var(--color-3);
  border-color: var(--color-3);
  color: var(--color-10);
  transition: background-color 0.3s ease;
}
.blog-subscribe-widget input[type=submit]:hover {
  background-color: var(--color-10);
  border-color: var(--color-3);
  color: var(--color-3);
  box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
}
.blog-subscribe-widget input[type=submit]:hover {
  background-color: var(--color-4);
  color: var(--color-10);
}

header + .blog-roll-page-wrapper .grid-container.blog-container.p-t-xxxlg {
  padding-top: 120px;
}
header + .blog-roll-page-wrapper .grid-container.blog-container.p-t-xxxlg h1 {
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  header + .blog-roll-page-wrapper .grid-container.blog-container.p-t-xxxlg h1 {
    font-size: 35px;
  }
}

.blog-categories-widget h4,
.blog-recent-widget h4,
.blog-subscribe-widget h4 {
  font-size: 1.5625rem;
}
.blog-categories-widget a:hover,
.blog-recent-widget a:hover,
.blog-subscribe-widget a:hover {
  color: var(--color-4);
  text-decoration: none;
}

.blog-roll-page-wrapper {
  background-color: #FAFAFA;
}

.filter-display-widget {
  color: var(--color-7);
  letter-spacing: 2px;
}

.blog-categories-widget .blog-category a {
  font-weight: 300;
}
.blog-categories-widget .blog-category a:hover {
  color: var(--color-3);
  text-decoration: none;
}
.blog-categories-widget .blog-category a.active {
  font-weight: 700;
  color: var(--color-3);
}

.blog-recent-widget .blog-recent-post a {
  color: var(--color-3);
  font-size: 1.5625rem;
}
.blog-recent-widget .blog-recent-post a:hover {
  color: var(--color-4);
}
.blog-recent-widget .blog-recent-post a .article-info {
  color: var(--color-2);
}

.blog-pagination-widget a.active {
  background-color: var(--color-3);
}

.article-card .blog-button {
  background-color: var(--color-3);
}
.article-card .blog-button:hover {
  background-color: var(--color-4);
  text-decoration: none;
}

.article-container h1.article-title {
  font-size: 35px;
}
.article-container .article-info {
  color: var(--color-2);
}
.article-container .prev-next-widget a {
  color: var(--color-3);
}
.article-container .prev-next-widget a:hover {
  color: var(--color-4);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .article-container .blog-author-widget .grid, .article-container .blog-author-widget .grid-container {
    justify-content: center;
    text-align: center;
  }
}
.article-container .blog-author-widget .col-20 {
  flex-basis: 145px;
  height: 145px;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .article-container .blog-author-widget .col-20 {
    margin-bottom: 20px;
  }
}
.article-container .blog-author-widget .col-20 img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.container-404 {
  height: 70vh;
}
@media screen and (max-width: 767px) {
  .container-404 {
    height: calc(100vh - 55px);
  }
}

/*# sourceMappingURL=style.css.map */
