/* CSS Document */
@import "bootstrap.min.css";
@import "defaults.css";


:root,
::after,
::before {
  --mr-color-background: #ffffff;
  --mr-color-text: #333333;

  --mr-color-primary: #b50837;
  --mr-color-primary-tint: #b50837;
  --mr-color-primary-shade: #b50837;

  --mr-color-secondary: #0072bc;
  --mr-color-secondary-tint: #90d9f8;
  --mr-color-secondary-shade: #0072bc;

  --mr-color-tertiary: #2c843d;
  --mr-color-tertiary-tint: #2c843d;
  --mr-color-tertiary-shade: #2c843d;

  --mr-color-quaternary: #fff202;
  --mr-color-quaternary-tint: #fff202;
  --mr-color-quaternary-shade: #ffaf52;

  --mr-color-accent: #60b60b;
  --mr-color-accent-tint: #60b60b;
  --mr-color-accent-shade: #60b60b;
  --mr-color-accent-contrast: rgb(0, 0, 0);

  --mr-color-light: rgb(255, 255, 255);
  --mr-color-medium: rgb(129, 129, 129);
  --mr-color-dark: #313531;

  --mr-color-green: #2c843d;
  --mr-color-yellow: #fff202;
  --mr-color-red: #b50837;

  --mr-color-contrast: #000000;

  --mr-font-main: "Exo 2", sans-serif;
  --mr-font-heading: "Exo 2", sans-serif;
  --mr-font-accent: "Exo 2", sans-serif;

  --mr-body-font-size: 22px;

  --mr-fontawesome: "FontAwesome";
  --mr-fontawesome-brands: "FontAwesomeBrands";
}

.bg_dark {
  --mr-color-contrast: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--mr-font-main);
  font-size: var(--mr-body-font-size);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #999999;
}

hr {
  margin: 2rem 0;
  color: inherit;
  border: 0;
  background-image: url('/images/hr_green.png');
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
}

h6,
h5,
h4,
h3,
h2,
h1 {
  font-family: var(--mr-font-heading);
  position: relative;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 900;
  line-height: 1.2;
}

h1 {
  font-size: 1.5rem; /* Minimum size */
  color: #cdddc3;
}

@media screen and (min-width: 420px) {
  h1 {
    /* font-size: 2.8vw; */ /* Preferred size */
  }
}

@media screen and (min-width: 1200px) {
  h1 {
    font-size: 2.5rem; /* Maximum size */
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: #999999;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--mr-color-accent-shade);
  text-decoration: none;

}
.easyedit_editable a {  word-break: break-all;}
a:hover {
  color: var(--mr-color-accent);
  text-decoration: underline;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}

a>code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  /*  aspect-ratio: attr(width) / attr(height); */
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}



table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend+* {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

/*----------------------
      Components
------------------------*/

/* ==== Pager ==== */

.mr_pager a {
  background: var(--mr-color-accent);
  color: var(--mr-color-accent-contrast);
  padding: .5em 1em;
  border-radius: 5px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  display: inline-block;
  text-decoration: none;
  margin: 0 .25em 1em;
}

.mr_pager .back:before,
.mr_pager .prev:before {
  content: '\f0a8';
  font-family: var(--mr-fontawesome);
  font-weight: 900;
  padding-right: .3em;
}

.mr_pager .next:after {
  content: '\f0a9';
  font-family: var(--mr-fontawesome);
  font-weight: 900;
  padding-left: .3em;
}



div#loading {
  position: absolute;
  top: 0; /* fallback */
  right: 0; /* fallback */
  bottom: 0; /* fallback */
  left: 0; /* fallback */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  width: 100%;
  text-align: center;
  padding-top: 4rem;
  height: 100%;
}

/*----------------------
         Styles
------------------------*/
.disable {
  opacity: .5;
  pointer-events: none;
}

.lazy {
  background-image: none !important;
  background-color: #616161;
}

.padding {
  padding: 1.5rem 6px 1.5rem;
}

.padding-v {
  padding: 2vw 0;
}

.padding-h {
  padding: 0 4vw;
}

.text-center {
  text-align: center;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}

.bg_light {
  background: #eeeded;
}

.bg-grey {
  background-color: whitesmoke;
}

.centered {
  text-align: center;
}

textarea {
  min-height: 80px;
  padding: 15px 9px;
}

/* @media (min-width: 1200px) {

    html {
        font-size: 1.2em;
        line-height: 1.3;
    }
}

@media (min-width: 1400px) {
    html {
        font-size: 1.3em;
        line-height: 1.3;
    }
}

@media (min-width: 1600px) {
    html {
        font-size: 1.4em;
        line-height: 1.3;
    }

    h1,
    .h1 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1800px) {
    html {
        font-size: 1.3vw;
        line-height: 1.3;
    }

    h1,
    .h1 {
        font-size: 3vw;

    }
} */


.wrapper {
  width: 80%;
  min-width: 320px;
  max-width: 900px;
}

.mediabox {
  position: relative;
  display: block;
  height: 0;
  width: 100%;
  padding-bottom: 66.6667%;
}

.mediabox-img.ls-blur-up-is-loading,
.mediabox-img.lazyload:not([src]) {
  visibility: hidden;
}

.ls-blur-up-img,
.mediabox-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;

  /* only if you want to change the blur-up option from always to auto or want to use blur up effect without a lowsrc image. */
  font-family: "blur-up: auto", "object-fit: cover";

  object-fit: cover;
}

.ls-blur-up-img {
  filter: blur(10px);
  opacity: 1;
  transition: opacity 1000ms, filter 1500ms;
}

.ls-blur-up-img.ls-inview.ls-original-loaded {
  opacity: 0;
  filter: blur(5px);
}

@media (max-width: 566px) {
.xs-hide {display: none;}
}

@media (min-width: 567px) {
  .xs-show {display: none;}
  }
  h2 .new {
    background: radial-gradient(#fbeb1e, #faae55);
    border-radius:50%;
    color: #b51e39;
    text-transform:uppercase;
    padding:1rem;
    font-size:1rem;
    transform: rotate(-12deg) translate(0px, -10px);
    display: inline-block;
    box-shadow: -0.2em 0.4em 0 0 #00000014;
}
.page {
    display: flex;
    flex-direction: column;
}

.page main {
    order: unset;
}

.page #services {}

.page footer {
    /* order: 5; */
}
.appscreen_container {
    position: absolute;
    right: 14.2%;
    top: 17.1%;
    width: 19.1%;
    perspective: 318px;
    transform-style: preserve-3d;
}

img.appscreen {
    transform: rotateX(0.5deg) rotateY(-6.6deg) rotateZ(0.3deg) translateY(48.6px) scaleX(1.2) scaleY(1.15);
    border-radius: 1rem;
    border-top-left-radius: 4.2%;
    border-top-right-radius: 10%;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 5%;
    mix-blend-mode: lighten;
    opacity: 0.7;
}
.logo_caption .pre {
    font-family: "Exo 2";
    font-weight: 700;
    line-height: 1;
    font-size: clamp(12px, 1.5vw, 19px);
}

.logo_caption h1 {
    line-height: 1;
    margin: 0px;
    color: #cdddc3;
    font-size: 1em;
    text-transform: uppercase;
    margin-left: 1em;
}

.logo_caption h1 span {
    font-family: "Exo 2";
    font-size: 1rem;
    margin-left: 0.6rem;
}

.logo {
    width: auto;
    position: relative;
    z-index: 2147483647;
    background: transparent;
    overflow: hidden;
}

img.herologo {
    max-width: 85%;
    display: block;
    margin: auto;
}

header.stuck {
    position: fixed !important;
    top: 0em !important;
    width: 100% !important;
    left: 0px !important;
}

header {
    position: fixed;
    min-height: 58px;
    background: transparent;
    width: 100%;
    z-index: 999999999;
    top: 0px;
}

header#home {
    width: 100%;
    left: 0px;
    top: 0em !important;
    position: fixed !important;
}

.mr-header-wrap {
    padding: 0px;
}

h1.logo {
    width: calc(100% - 77px);
    height: 45px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    left: calc(50% + 30px);
    background: transparent;
    transform: translate(-50%, 0px);
    box-shadow: none;
    padding: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px !important;
}

h1.logo a {
    display: flex;
    height: 100%;
    color: rgb(84, 83, 74);
    text-decoration: none;
    align-items: center;
    margin-right: 100px;
}

h1.logo a span {
    line-height: 1;
    margin-top: 3px;
}

#secondary header#home {
    height: 58px;
    background-image: none;
}

.mr-navbar-brand {
    width: calc(100% - 60px);
    padding-left: 58px;
    display: flex;
    height: 58px;
    align-items: center;
    background: white;
    justify-content: center;
    position: fixed;
    top: 0px;
}

img.logo_img {
    height: 100%;
}

img.mobile {
    display: block;
    height: 58px;
}

img.desktop {
    height: auto;
    display: block;
    max-width: calc(100vw - 180px);
    width: 50px !important;
}

.mr-navbar-subpanel {
    justify-content: space-between;
    padding-top: 0px;
}

.header_extra {}

.mr-navbar-upper .list-inline {
    margin: 0px;
    list-style: none;
}

.mr-upper-toggle {
    align-items: center;
    background: transparent;
    cursor: pointer;
    width: 48px;
    height: 48px;
    text-align: center;
    position: fixed;
    top: 5px;
    right: 5px;
    z-index: 2147483647;
    border: 1px solid transparent;
    border-radius: 3px;
    display: none;
}

.mr-upper-toggle span {
    width: 58px;
    padding: 0.1em;
    background: transparent;
}

.mr-upper-toggle span::before {
    content: "";
    font-family: FontAwesome;
    font-weight: 900;
    color: black;
    display: block;
    font-size: 18px;
    position: relative;
    z-index: 99999;
}

.showupper .mr-upper-toggle span::before {
    content: "";
}

#sticky-wrapper {
    height: auto !important;
}

.mr-navbar-upper {}

.showupper .mr-navbar-upper {
    display: flex;
}

.mr-navbar-nav-wrap {
    position: fixed;
    inset: 0px auto 0px 0px;
    margin: 58px 0px 0px;
    background: rgb(0 0 0 / 84%);
    width: 100%;
    padding: 0px;
    transform: translate(0%, 100%);
    transition: all 0.3s ease 0s;
    overflow: auto;
    box-shadow: none !important;
}

.mr-navbar-outer {
    position: fixed;
    z-index: 999;
}

.mr-navbar-inner {
    position: fixed;
    width: 100%;
    background: rgb(255, 255, 255);
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 20px;
    padding: 0px;
    top: 0px !important;
    height: 58px !important;
}

ul.level-0.mr-navbar-nav {
    flex-direction: column;
    font-size: 6vw;
    min-height: 100%;
    justify-content: flex-start;
    padding: 0px;
    transition: all 0s ease 0s;
    overflow: auto;
    margin: 0px;
}

.showmenu ul.level-0.mr-navbar-nav {
    transition: all 0.3s ease 0.2s;
    opacity: 1;
    transform: translate(0px, 0px);
}

.mr-navbar-brand nav {
    flex-grow: 1;
}

.color_theme .level-0.mr-navbar-nav>li:nth-of-type(4n+1)>a {
    background: var(--mr-color-primary-tint);
    border-bottom-color: var(--mr-color-primary);
}

.color_theme .level-0.mr-navbar-nav>li:nth-of-type(4n+2)>a {
    background: var(--mr-color-secondary-tint);
    border-bottom-color: var(--mr-color-secondary);
}

.color_theme .level-0.mr-navbar-nav>li:nth-of-type(4n+3)>a {
    background: var(--mr-color-tertiary-tint);
    border-bottom-color: var(--mr-color-tertiary);
}

.color_theme .level-0.mr-navbar-nav>li:nth-of-type(4n+4)>a {
    background: var(--mr-color-quaternary-tint);
    border-bottom-color: var(--mr-color-quaternary);
}

ul.level-1.rd-navbar-dropdown {
    position: relative;
    width: 100%;
    min-width: unset;
    color: black;
    opacity: 1;
    visibility: visible;
    background: rgba(251, 248, 229, 0.5);
    box-shadow: none;
    border-top: 0px;
}

ul.level-0.mr-navbar-nav li {
    margin: 0px;
    position: relative;
    text-align: left;
    line-height: 1;
    padding: 0px;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
}

ul.level-0.mr-navbar-nav li a {
    font-size: 0.85rem;
    font-weight: 900;
    display: flex;
    text-align: left;
    padding: 1.4rem;
    align-items: flex-start;
    color: var(--mr-color-accent);
    font-family: var(--mr-font-heading);
    text-transform: none;
    justify-content: flex-start;
    text-decoration: none;
}

ul.level-0.mr-navbar-nav .current-parent>a {
    color: #cdddc3;
    background: transparent;
    text-decoration: none;
    font-style: italic;
    text-transform: uppercase;
    border-bottom: 3px solid #60b60b;
}

ul.level-0.mr-navbar-nav .current-parent>.subnav_toggle {
    color: black;
}

span#nav_slide_hover_bg {
    display: none;
}

span#nav_slide_hover {
    display: none;
}

li.current.current-item::after {
    content: "";
    width: 0px;
    height: 100%;
    position: absolute;
    bottom: 50%;
    left: 0px;
    transform: translate(0px, 50%);
    z-index: 9;
}

.mr-navbar-toggle {
    display: flex;
    background: rgb(255, 255, 255);
    cursor: pointer;
    width: 60px;
    height: 58px;
    text-align: center;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 2147483647;
}

.mr-navbar-toggle span::before {
    content: "";
    font-family: FontAwesome;
    font-weight: 900;
    color: var(--mr-color-accent);
    font-size: 1.4rem;
    position: relative;
    z-index: 99999;
}

.showmenu .mr-navbar-toggle span::before {
    content: "";
    font-family: FontAwesome;
    font-weight: 900;
    color: var(--mr-color-accent);
    font-size: 1.5rem;
    position: relative;
    z-index: 99999;
}

.mr-navbar-toggle span {
    width: 60px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.showmenu .mr-navbar-nav-wrap {
    transform: translate(0%, 0%);
    transition: all 0.3s ease 0s;
    background-color: rgb(20 20 20 / 90%);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 20px !important;
}

ul.level-1 {
    position: relative;
    box-shadow: none;
    padding: 0px 0px 0px 1rem;
    list-style: none;
}

ul.level-0.mr-navbar-nav .current-parent>a::before {
    content: none;
}

ul.level-0.mr-navbar-nav li.has_subnav:hover>a::after {}

.showmenu .mr-navbar-toggle {
    position: fixed;
    transform: translate(0px, 0px);
    top: 0px;
    background: rgba(0, 0, 0, 0.15);
}

ul.level-0.mr-navbar-nav a:hover {
    transition: all 0.3s ease 0s;
    color: white;
    text-shadow: 0 0 4px #ffffffc2;
}

.level-0>li>span.subnav_toggle {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 3.6rem;
    width: 3.6rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease 0s;
    cursor: pointer;
    font-size: 0.7rem;
    color: var(--mr-color-accent);
}

ul.level-0.mr-navbar-nav li.has_subnav>a {}

ul.level-1.mr-navbar-dropdown {
    height: 0px;
    overflow: hidden;
}

.level-0>li>span.subnav_toggle::before {
    content: "";
    font-family: var(--mr-fontawesome);
    font-weight: 900;
    transition: all 0.2s ease 0s;
}

ul.level-1.mr-navbar-dropdown.show {
    box-shadow: rgba(0, 0, 0, 0.17) 0px 10px 10px 0px inset;
    padding-top: 1rem;
    padding-right: 0px;
    padding-bottom: 1rem;
    display: block !important;
    height: auto !important;
    padding-left: 0px !important;
}

span.subnav_toggle.active::before {
    transform: rotate(-180deg);
}

ul.level-0.mr-navbar-nav li li a {
    font-size: clamp(16px, 1vw, 16px);
    font-family: var(--mr-font-main);
    font-weight: 400;
    color: white;
}

li.navitemid-26.has_subnav {
    position: relative !important;
}

li.navitemid-29.has_subnav {
    position: relative !important;
}

section#banner {
    min-height: 40vw;
    height: auto;
    position: relative;
    order: unset;
    background: #161914;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

body#secondary #banner {}

img.background_image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    display: block;
    position: absolute;
    inset: 0px;
}

h2.banner_caption {
    border: 0px;
    text-align: center;
    font-family: var(--mr-font-heading);
    text-transform: uppercase;
    color: white;
    font-size: clamp(20px, 3vw, 50px);
    margin: 0px;
    padding: 1rem;
}

[class^="contact_"] {
    padding-left: 1.7rem;
    position: relative;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

[class^="contact_"]::before {
    font-family: var(--mr-fontawesome);
    font-weight: 900;
    height: 1.1rem;
    border-radius: 50%;
    margin: 0px 0.5em;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    font-size: 1em;
    line-height: 0.1;
    position: absolute;
    left: 0em;
    color: rgb(225, 225, 225);
    top: 0px;
    padding-bottom: 0.2em;
    text-decoration: none !important;
}

.contact_address::before {
    content: "";
}

.contact_mail::before {
    content: "";
}

.contact_phone::before {
    content: "";
    font-weight: 900;
}

.contact_facebook::before {
    content: "";
    font-family: var(--mr-fontawesome-brands);
}

.contact_email::before {
    content: "";
}

.contact_cell::before {
    content: "";
}

.contact_fax::before {
    content: "";
}

.contact_fax {
    display: flex;
    margin-bottom: 0.5em;
}

.inline [class^="contact_"]+[class^="contact_"] {
    margin-left: 2em;
}

section#contactbar {
    background: rgb(140, 200, 58);
    color: white;
    font-family: var(--mr-font-main);
    font-weight: 700;
}

.contactbar_item {
    display: flex;
    align-items: center;
}

.contactbar_item .icon {
    font-size: 3.2em;
}

.contactbar_item .info {
    padding: 1em;
    text-transform: uppercase;
    font-size: 0.8em;
    white-space: nowrap;
}

.contactbar_item .info a {
    color: white;
    text-transform: none;
    font-size: 1.5em;
}

.social_links a {
    text-decoration: none;
}

.social_links {
    display: flex;
}

.social_links a {
    font-family: var(--mr-fontawesome-brands);
    font-weight: 400;
    min-width: 1.6rem;
    min-height: 1.6rem;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    color: rgb(0, 91, 161);
    font-size: 1.2em;
    text-decoration: none !important;
}

.social_links a.link_btn i {
    color: rgb(91, 157, 186);
    font-size: 1em;
    margin: 0px;
}

h2 {
    font-size: 2vw;
    color: var(--mr-color-blac);
    border-bottom-width: 0px;
    border-color: var(--mr-color-accent);
    border-bottom-style: solid;
    text-align: left;
    text-transform: none;
}

h3 {
    font-size: 1.4vw;
    color: #000000;
    font-style: italic;
}

h4 {
    font-size: clamp(1rem, 1.5vw, 22px);
    text-transform: none;
    font-weight: 500;
}

.heading_withlink {
    display: flex;
    align-items: center;
    border: 0px;
    white-space: nowrap;
}

.heading_withlink .header_link {
    font-size: 0.6em;
    color: var(--mr-color-secondary);
    text-decoration: none;
    font-weight: 600;
}

.heading_withlink span {
    flex-grow: 1;
}

main.page-content h1::after,
main.page-content .about_mission h2::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 1px;
    width: 100%;
}

.aboutus h1 {
    color: black;
}

main.page-content h1 span.small {
    display: block;
    font-size: 0.4em;
    line-height: 1;
    margin-top: 0.3em;
}

main.page-content h1 {
    padding-bottom: 0.3em;
    line-height: 1;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.heading_withsubhead span::before {
    content: "";
    height: 2rem;
    border-left: 1px solid var(--mr-color-accent);
    margin-left: 2rem;
    padding-left: 2rem;
}

.heading_withsubhead span {
    font-weight: 400;
    color: var(--mr-color-accent);
    font-size: 0.6em;
    flex-grow: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.heading_withsubhead {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.footer_logo_wrapper {
    background: rgb(229, 227, 219);
    border-radius: 50%;
    width: clamp(120px, 10vw, 200px);
    height: clamp(120px, 10vw, 200px);
    margin: 1em auto;
}

.footer_copyright p {
    margin: 0px;
    font-size: 0.8em;
}

footer.page-footer {
    color: black;
    font-family: var(--mr-font-main);
    font-size: 0.93em;
    /* display: flex; */
    /* flex-flow: row-reverse wrap; */
    background-color: #60b60b;
}

footer.page-footer .navigation_extra {
    padding: 0px;
    list-style: none;
    margin: 0px 0px 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

footer.page-footer ul li {
    text-overflow: ellipsis;
    padding: 0.5vw;
}

footer.page-footer ul li span+span {
    justify-self: flex-end;
    text-align: right;
}

.footer_social {
    padding: 0;
    display: flex;
    list-style: none;
}

.footer_hours header {}

.footer_contact .logo {
    max-width: 100%;
    padding: 1em 0px;
}

section.footer_content a .value {
    text-decoration: underline;
}

section.footer_content a .label {
    color: white;
    font-family: var(--mr-font-accent);
    margin-left: 0.5em;
    line-height: 1.6;
}

.footer_contact .logo img {
    max-width: 70%;
}

section.footer_copyright {
    background: #242424;
    text-align: left;
    color: rgb(156, 155, 146);
    padding: 1rem 0.45em;
    font-family: var(--mr-font-main);
    font-size: 1.1rem;
    text-align: center;
}

footer.page-footer header {
    font-size: 1.6em;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 0.2em;
    margin-bottom: 0.6em;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-family: var(--mr-font-accent);
    position: relative;
}

section.footer_content div[class*="col"] {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
}

.footer_hours li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.footer_content a {
    display: inline-flex;
    text-decoration: none;
    white-space: nowrap;
    color: var(--mr-color-accent);
    font-family: var(--mr-font-main);
    padding: 0px;
}

.footer_content_inner h2 {
    border: 0px;
}

section.footer_content .navigation_extra a::before {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

section.footer_copyright a {
    color: var(--mr-color-accent);
    text-decoration: underline;
}

.footer_contact .contact_item:first-of-type {
    padding-top: 1em;
}

.footer_contact .contact_address {
    margin-bottom: 1em;
    padding-left: 2.4em;
    position: relative;
}

.footer_hours .hours_item {
    padding-top: 1em;
}

.footer_hours .hours_item:first-of-type .label {
    display: block;
}

.footer_hours .hours_item .label {
    font-weight: 700;
}

footer.page-footer header::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 1px;
    width: 100%;
    border-bottom: 3px solid;
    display: none;
}

img.footer_logo {
    width: 100%;
    max-width: 200px;
    margin: 2rem auto;
}

.footer_logo_txt {
    font-family: var(--mr-font-accent);
    text-align: center;
    width: 100%;
}

.footer_map {
    padding-top: 1em;
    height: 100%;
    width: 100%;
    position: relative;
}

.footer_contact {
    margin-top: 1em;
}

.footer_copyright_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer_info {
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

footer.page-footer .navigation_extra a {
    padding: 1rem 1.5rem;
    font-weight: 700;
}

section#services {
    color: white;
    background-image: url('/images/services_bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: #60b60b;
    padding-bottom: 100px;
}

.services_wrapper {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 2vw 2vw 2vw;
}

.services_item {
    width: 100%;
    text-decoration: none;
    text-align: center;
    flex-grow: 1;
    position: relative;
    /* height: 100%; */
    overflow: hidden;
    display: flex;
    max-width: 1280px;
    margin-bottom: 2rem;
    text-decoration: none !important;
    padding-top: 2rem;
}

.services_item+.services_item::before {
    content: '';
    position: absolute;
    top: 0;
    background-image: url('/images/hr_black.png');
    width: 100%;
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.services_img {
    padding: 0px;
    width: 13rem;
    height: 13rem;
    min-width: 13rem;
    min-height: 13rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: all 0.3s ease-in 0s;
    backface-visibility: hidden;
    position: relative;
    background-image: url('/images/service_icon_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.9);
}

.services_item:hover .services_img {
    filter: brightness(1.1);
}

.services_item:hover .services_img img {
    transform: scale(1.05);
    transition: .4s all ease-out;
}

.services_img img {
    width: 7rem;
    height: 7rem;
    object-fit: contain;
    object-position: center center;
}

h5.services_title {
    color: rgb(0 0 0);
    margin: 0px;
    font-size: 1em;
    line-height: 1;
    /* position: absolute; */
    /* height: 100%; */
    /* width: 100%; */
    inset: 0px;
    /* z-index: 99999999; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: none;
    font-style: italic;
    font-size: 3.2rem;
    margin-bottom: 0.75rem;
}

p.services_description {
    font-size: 1.7rem;
    color: black;
    line-height: 1;
    text-align: left;
}

.services_details {
    flex-grow: 1;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services_item:nth-of-type(even) .services_img {
    order: 2;
}

.services_item:nth-of-type(odd) .services_img {
    margin-right: 2rem;
}

.services_wrapper a:hover .services_img {
    /* transform: scale(1.3); */
    /* box-shadow: rgba(0, 0, 0, 0.32) 5px 5px 20px; */
    /* transition: all 4.2s cubic-bezier(0.03, 0, 0, 0.21) 0s; */
}

section#services .large_btn {
    color: white;
    display: inline-block;
    margin: 3em 0px;
    padding: 1.2em 3em;
    width: auto;
}

.services_info {
    padding-top: 2em;
}

.mceContentBody .services_list a {
    color: black;
}

section#secondary-content .services_list a {
    color: black;
}

a.btn {
    background: transparent;
    color: #f9f3fe;
    font-family: var(--mr-font-accent);
    font-weight: 900;
    margin-top: 1em;
    text-decoration: none;
    text-transform: uppercase;
    font-size: clamp(16px, 2vw, 24px);
    border-radius: 3rem;
    padding: clamp(0.5rem, 1vw, 1rem);
    width: 100%;
    max-width: clamp(260px, 22vw, 360px);
    border: 2px solid #81fc24;
    display: block;
    margin: 2em auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.large_btn {
    color: rgb(140, 200, 58);
    padding: 1.5em 1.9em;
    display: block;
    font-family: var(--mr-font-main);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.1em;
    letter-spacing: 0.2em;
    transition: all 0.3s ease 0s;
}

.large_btn:hover {
    text-decoration: none;
    opacity: 0.9;
}

.outline {
    border: 0.2em solid;
}

a.link_btn {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1.2em;
    margin: 0px 0.5em;
}

a.link_btn i {
    border-radius: 50%;
    color: white;
    font-size: 0.65em;
    margin-right: 0.5em;
}

#secondary header#home {}

#secondary .mr-navbar-inner {}

#secondary .mr-navbar-inner {}

#secondary h1.logo .desktop {}

body#secondary #banner h1 {
    color: white;
    font-size: 1em;
    font-weight: 400;
}

body#secondary #banner {}

body#secondary h1,
body#secondary h2,
body#secondary h3,
body#secondary h4,
body#secondary h5,
body#secondary h6 {
    color: #cdddc3;
}

#secondary main.page-content {}

ul.sitemap li>a,
.search_result_link {
    display: flex;
    flex-flow: row;
    background: rgb(240, 240, 240);
    box-shadow: rgba(0, 0, 0, 0.16) 3px 3px 10px;
    padding: 0.5em;
    border: 3px solid transparent;
    position: relative;
    align-items: center;
    text-decoration: none !important;
}

.sitemap_pagetitle,
.search_result_link h2 {
    display: block;
    font-size: 1.5em;
    font-family: var(--mr-font-heading);
    color: black;
    line-height: 1;
    margin-bottom: 0.25em;
    margin-top: 0.5rem;
    border: 0px;
    font-weight: 700;
    text-align: left;
    padding: 0px;
}

ul.sitemap,
ul.sitemap ul {
    list-style: none;
    position: relative;
    margin-top: 1em;
}

.sitemap_pagedescription,
.search_result_link p {
    font-weight: 400;
    color: rgb(76, 76, 76);
    font-size: 0.8em;
    margin: 0px;
}

ul.sitemap li>a:hover,
.search_result_link:hover {
    border: 3px solid var(--mr-color-accent);
}

ul.sitemap ul li::before {
    content: "";
    border-left: 2px solid var(--mr-color-accent);
    position: absolute;
    left: -0.7em;
    height: calc(100% + 2em);
}

ul.sitemap ul li::after {
    content: "";
    border-bottom: 2px solid var(--mr-color-accent);
    position: absolute;
    left: -0.7em;
    height: 1px;
    width: 0.7em;
    top: 50%;
}

ul.sitemap ul li {
    position: relative;
    margin-bottom: 0.6em;
}

ul.sitemap li,
.search_result_link {
    margin-bottom: 1em;
}

ul.sitemap ul li:last-of-type::before {
    height: calc(50%);
}

ul.sitemap {
    padding: 0px;
}

ul.sitemap ul li ul li:last-of-type {
    margin-bottom: 1.2em;
}

ul.sitemap ul li.has_subnav::after {
    display: none;
}

ul.sitemap ul li.has_subnav>a::before {
    content: "";
    border-bottom: 2px solid var(--mr-color-accent);
    position: absolute;
    left: calc(-0.7em - 3px);
    height: 1px;
    width: 0.7em;
    top: 50%;
}

ul.sitemap li.has_subnav ul li:first-of-type::before {
    top: -1em;
    height: calc(100% + 2em);
}

ul.sitemap ul li.has_subnav ul li+li:last-of-type::before {
    height: calc(50% + 0em);
}

ul.sitemap ul li.has_subnav ul li+li::before {
    top: 0px;
}

ul.sitemap ul li.has_subnav ul li:last-of-type::before {
    height: calc(50% + 1em);
}

.search_result_details time {
    color: black;
    font-size: 0.9rem;
}

.result_events_details {
    display: flex;
    margin-top: 0.4rem;
}

.result_events_date::before {
    content: "";
    font-family: var(--mr-fontawesome);
    font-weight: 900;
    margin-right: 0.3em;
}

.result_events_details>div {
    margin-right: 2rem;
    color: var(--mr-color-contrast);
    font-size: 1rem;
}

footer.page-footer header {
    margin-top: 1em;
}

.social_links li a::before {
    margin-right: 0.5rem;
    font-weight: 900;
    font-family: var(--mr-fontawesome-brands);
}

.contactbar_item {
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.contactbar_item .info {
    font-size: 1em;
    padding: 0px 0px 1em;
}

.contactbar_item .info a {
    font-size: 1.8em;
}

.services_list {
    font-size: 1.2em;
}

.logo_caption h1 {
    white-space: nowrap;
}

h2 {
    font-size: clamp(30px, 4vw, 3rem);
    line-height: 1;
    padding-bottom: 1.3rem;
}

h2 span.smaller {
    display: block;
    line-height: 1;
    font-size: 0.57em;
}

h3 {
    font-size: clamp(1.6rem, 2vw, 30px);
    font-family: var(--mr-font-heading);
    margin: 0.5rem 0px 1rem;
    text-transform: none;
}

main.page-content {
    display: flex;
    flex-direction: column;
}

#secondary main.page-content {
    padding-top: 0px !important;
}

.services_list li {
    padding-top: 1em;
}

section#services .services_info .large_btn {
    width: 100%;
}

.mr-navbar-contact {
    display: none;
}

.footer_hours {
    margin: 2em 0px;
}

.footer_copyright p {
    font-size: 0.9em;
    flex-grow: 1;
}

.mr-contact-bar {
    width: 58px;
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 0px;
    height: 58px;
    z-index: 3;
}

.mr-contact-bar a span {
    display: none;
}

a.mr_phone i {
    padding: 0.8em 0.9em;
    font-size: 1.4em;
}

#homemain .largeimage,
#missionstatment .largeimage {
    display: none;
}

.stuck h1.logo {
    height: 45px;
}

.services_list a {
    width: 43%;
    min-width: 280px;
}

.new_dropdown {
    right: -50%;
}

.rd-navbar-nav-wrap .uppernav {
    padding-bottom: 30px;
}

.facebook_dropdown .new_dropdown {
    min-width: 280px;
    width: auto;
}

.calendar_dropdown .new_dropdown,
.facebook_dropdown .new_dropdown {
    display: none;
}

.calendar_dropdown:hover,
.facebook_dropdown:hover {
    color: black;
}

.calendar_dropdown:hover .new_dropdown,
.facebook_dropdown:hover .new_dropdown {
    display: block;
}

.header_social {
    display: none;
}

.logo a {
    display: flex;
    width: 100%;
    transform: translate(0px, 0%);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    text-overflow: ellipsis;
    color: black !important;
}

.mr-navbar-upper {
    position: fixed;
    width: 280px;
    flex-direction: column;
    font-size: 1em;
    display: none;
    top: 58px;
    right: 0px;
    height: auto;
    justify-content: stretch;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1rem 2rem 0px;
    z-index: 2147483647;
}

.contact-info.inline {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: space-around;
    vertical-align: middle;
    flex-direction: column;
}

.inline [class^="contact_"]+[class^="contact_"] {
    margin: 0px;
}

@media (max-width: 566px) {
    .services_list a {
        text-align: left;
        justify-content: flex-start;
        margin-bottom: 2em;
    }

    .services_list a span.services_img {
        margin: 0px;
    }

    section#services {
        color: white;
    }

    ul.sitemap li>a,
    .search_result_link {
        flex-direction: column;
    }

    .search_result_img {
        width: 100% !important;
        margin-right: 0px !important;
        max-width: none !important;
    }

    .search_result_details {
        flex-grow: 1;
        width: 100%;
    }

    .heading_withsubhead span {
        margin-top: 0.4rem;
    }

    .heading_withsubhead span::before {
        display: none;
    }

    .heading_withsubhead {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .heading_withlink {
        align-items: flex-start;
    }

    .heading_withlink .header_link {
        font-size: 0.9em;
    }
}

.footer_map {
    position: relative;
    height: 100%;
    width: 100%;
}

div#map_canvas {
    min-height: 320px;
    width: 600px;
    inset: 0px;
    position: absolute !important;
}

.sitemap_pageurl {
    color: darkgray;
    font-size: 0.8rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-top-style: ;
    border-top-width: ;
    border-right-style: ;
    border-right-width: ;
    border-bottom-style: ;
    border-bottom-width: ;
    border-left-style: ;
    border-left-width: ;
    border-image-source: ;
    border-image-slice: ;
    border-image-width: ;
    border-image-outset: ;
    border-image-repeat: ;
    border-radius: 50%;
    animation: 1.2s cubic-bezier(0.5, 0, 0.5, 1) 0s infinite normal none running lds-ring;
    border-color: var(--mr-color-accent) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.images_icon::before {
    content: "";
    font-family: var(--mr-fontawesome);
    font-weight: 900;
}

.image_results_swiper {
    height: auto;
}

.image_results_swiper .swiper-slide {
    max-width: 15rem;
}

.swiper-slide.gallery_link {
    height: auto;
    background: transparent;
    width: 10rem;
}

.swiper-slide.gallery_link a i {
    background-color: var(--mr-color-accent);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 2rem;
}

.swiper-slide.gallery_link a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
}

.swiper-slide.gallery_link a span {
    text-decoration: underline;
    margin-top: 0.3rem;
}

.search_results_section.image_results {
    position: relative;
}

.image_results .swiper-button-next,
.image_results .swiper-button-prev {
    background: rgb(237, 237, 237);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    box-shadow: rgba(0, 0, 0, 0.33) 0rem 0.2rem 0.4rem;
}

.image_results .swiper-button-prev,
.image_results .swiper-rtl .swiper-button-next {
    left: -1.5rem;
    right: auto;
}

.image_results .swiper-button-prev::after,
.image_results .swiper-rtl .swiper-button-next::after {
    content: "prev";
}

.image_results .swiper-button-next,
.image_results .swiper-rtl .swiper-button-prev {
    right: -1.5rem;
    left: auto;
}

.image_results .swiper-button-next::after,
.image_results .swiper-rtl .swiper-button-prev::after {
    content: "next";
}

.image_results_wrapper {
    position: relative;
}

.image_results .swiper-button-next.swiper-button-disabled,
.image_results .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}

.image_results .swiper-button-next::after,
.image_results .swiper-button-prev::after {
    font-family: swiper-icons;
    font-size: 1rem;
    letter-spacing: 0px;
    font-variant: initial;
    line-height: 1;
    text-transform: none !important;
}

header .social_links li a::before {
    font-family: var(--mr-fontawesome-brands);
    font-weight: 400;
    font-size: 1.3rem;
}

a.more_link {
    text-align: right;
    display: block;
    width: 100%;
    color: black;
    font-family: var(--mr-font-heading);
    font-weight: 900;
    text-decoration: none;
}

footer .social_links a {
    color: black;
    margin: 0px 2rem 2rem;
    font-size: 2.5rem;
}

a.more_link::after {
    content: "";
    font-family: FontAwesome;
    font-weight: 900;
    margin: 0px 0.5rem;
    font-size: 0.9rem;
}

footer .social_links.list-inline {
    margin: 0px;
}

section.footer_content a:hover {
    text-decoration: unset;
}

header ul.navigation_extra li {
    margin-left: 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

header ul.navigation_extra li a::before {
    margin-right: 0px;
    font-size: 1.4rem;
}

@media (max-width: 415px) {
    .logo_caption h1 span {
        font-size: 10px;
        margin: 5px;
    }
}

@media (max-width: 365px) {
    .logo_caption h1 span {
        display: none;
    }
}

.color_theme .level-0.mr-navbar-nav>li:nth-of-type(4n+1) {
    border-bottom-color: var(--mr-color-primary);
    border-bottom-width: 5px;
    border-bottom-style: solid;
}

.color_theme .level-0.mr-navbar-nav>li:nth-of-type(4n+2) {
    border-bottom-width: 5px;
    border-bottom-style: solid;
    border-bottom-color: var(--mr-color-secondary);
}

.color_theme .level-0.mr-navbar-nav>li:nth-of-type(4n+3) {
    border-bottom-width: 5px;
    border-bottom-style: solid;
    border-bottom-color: var(--mr-color-tertiary);
}

.color_theme .level-0.mr-navbar-nav>li:nth-of-type(4n+4) {
    border-bottom-width: 5px;
    border-bottom-style: solid;
    border-bottom-color: var(--mr-color-quaternary);
}

ul.level-1.mr-navbar-dropdown {
    background: var(--mr-color-accent);
}

h3.nav_header {
    font-family: var(--mr-font-heading);
    border-bottom: 3px solid rgb(0, 0, 0);
    font-size: 1.5rem;
}

.nav_tiles .mr-nav-tiles {
    list-style: none;
    padding: 0px;
    display: flex;
    flex-flow: wrap;
}

.nav_tiles .mr-nav-tiles li a {
    display: flex;
    margin-top: 0px;
    flex-direction: column;
    border-radius: 0px;
    text-decoration: none;
    cursor: pointer;
    flex-grow: 1;
    font-family: var(--mr-font-heading);
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.2rem;
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    font-size: 1.25em;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgb(255, 255, 255);
    padding-right: 0.46875rem;
    padding-left: 0.46875rem;
    height: 100%;
    border: 0px;
}

.nav_tiles .mr-nav-tiles li {
    display: flex;
    flex-direction: column;
    border-radius: 0px;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 2px 4px;
    color: black;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    background: rgb(104, 104, 104);
    margin: 0.3rem;
    flex-grow: 1;
    width: calc(25% - 0.6rem);
    min-width: 280px;
    min-height: 160px;
    padding-bottom: 11%;
    border: 3px solid transparent;
}

.nav_tiles .mr-nav-tiles .pagename {
    font-family: var(--mr-font-heading);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.1;
    background: rgb(255, 255, 255);
    color: rgb(0, 114, 188);
    width: fit-content;
    margin: auto;
    padding: 0.5rem 1rem;
    max-width: 100%;
    position: relative;
    z-index: 9;
}

.nav_tiles .mr-nav-tiles li.tile_spacer {
    box-shadow: none;
    height: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px;
    border: 0px;
    min-width: 280px;
    min-height: unset;
}

.nav_tiles .mr-nav-tiles li:hover {
    border: 3px solid var(--mr-color-accent);
}

.nav_tiles .mr-nav-tiles li.active.current-item {
    display: none;
}

span.pagedescription {
    font-size: 1.2rem;
    text-transform: none;
    font-weight: 400;
    margin: 0px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.1;
    position: relative;
    z-index: 9;
}

.nav_tiles .mr-nav-tiles li a .pagedescription {
    height: 0px;
    overflow: hidden;
}

.nav_tiles .mr-nav-tiles li:hover a .pagedescription {
    height: 4rem;
    transition: all 0.3s ease 0s;
    margin: 0.5rem;
}

.nav_tiles .mr-nav-tiles li:hover a::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--mr-color-accent);
    opacity: 0.7;
    z-index: 1;
}

.nav_tiles .mr-nav-tiles li:hover::before {
    opacity: 0.5;
    transition: opacity 0.7s ease 0s;
}

.nav_tiles .mr-nav-tiles li:hover a .pagename {
    background: transparent;
    color: white;
    display: flex;
    align-items: flex-end;
}

ul.level-0.mr-navbar-nav>li>a span {
    display: inline-block;
    vertical-align: baseline;
    line-height: 1;
    transform: translateY(0.15rem);
    text-transform: uppercase;
}

li.products_item a img {
    width: 300px;
    height: 300px;
    padding-bottom: 2rem;
    flex-grow: 1;
    object-fit: contain;
    object-position: center center;
    transition: all 0.3s ease 0s;
    margin: auto;
}

ul.products_wrapper {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0px;
    margin: 0px 0px 2rem;
    border-bottom: 1px solid var(--mr-color-accent);
}

li.products_item {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 2rem;
}

li.products_item a {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.products_item .detail_style {
    background: var(--mr-color-primary);
    width: fit-content;
    margin: auto auto 0.6rem;
    border-radius: 1rem;
    padding: 0px 1rem;
    color: black;
    font-family: var(--mr-font-accent);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.products_item .detail_name {
    color: black;
}

li.products_item a:hover img {
    transform: scale(1.05);
}

footer.page-footer .navigation_extra a span {
    text-decoration: underline;
    font-weight: 400;
}

section#homemain {
    padding-bottom: 0px;
}

section#productlistings {
    padding-bottom: 0px;
}

section#productlistings .products_wrapper {
    margin-bottom: 0px;
}

.breadcrumbs a {
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--mr-color-text);
}

.breadcrumbs li::after {
    content: "/";
    margin: 0px 0.8rem;
}

.breadcrumbs ul {
    list-style: none;
    padding: 0px;
    display: block;
    opacity: 0.7;
}

.breadcrumbs ul li {
    display: inline-block;
}

.breadcrumbs ul li:last-of-type::after {
    content: "";
}

.breadcrumbs {
    display: none;
}

@media (min-width: 768px) {
    .breadcrumbs {
        display: block;
    }
}

.links {
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: 1vw;
    margin-top: 1vw;
    text-align: center;
    font-family: var(--mr-font-accent);
    font-weight: 900;
}

.links a {
    background: black;
    padding: 1vw;
    margin: 1vw;
    border-radius: 3em;
    color: rgb(255, 102, 0);
    text-decoration: none;
    box-shadow: rgb(0, 0, 0) 0px 0px 0px;
    transition: all 0.3s ease 0s;
    text-align: center;
    flex-grow: 1;
    text-transform: uppercase;
}

.links a:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.27) 0px 7px 10px;
}

a.custom-branded {
    display: block;
    margin: 1vw auto 2vw;
    text-align: center;
    max-width: 480px;
    width: 100%;
    background: lightgray;
    padding: 1vw;
    border-radius: 3em;
    text-decoration: none;
    color: rgb(255, 102, 0);
    box-shadow: rgba(0, 0, 0, 0.72) 0px 0px 0px;
    transition: all 0.3s ease 0s;
    font-weight: 900;
    text-transform: uppercase;
    font-family: var(--mr-font-accent);
}

.links a.custom-branded {
    margin: 1vw;
}

.decoration-pics {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.decoration-pics img {
    margin: 0.25rem;
    width: calc(33.3% - 0.5rem);
    max-width: max-content;
}

.search_style {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.banner_caption {
    color: white;
    text-align: left;
    position: relative;
    padding: 4vw;
    max-width: 50%;
    min-width: 320px;
    font-size: clamp(16px, 2vw, 1.65rem);
    line-height: 1.2;
}

.banner_caption h2 {
    text-align: left;
    color: white;
    text-transform: none;
    font-size: clamp(22px, 4vw, 3.5rem);
    border: 0px;
}

a.btn:hover {
    color: white;
    border-color: #81fc24;
    box-shadow: 0 0 10px green, inset 0 0 10px green;
    text-shadow: 0 0 4px #ffffffc2;
}

.header_inner {
    z-index: 2147483647;
    display: flex;
}

.subscribe_wrapper {
    background: rgb(231, 231, 231);
}

.form_item.checkbox label input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    inset: 0px;
    cursor: pointer;
    z-index: 9;
}

.form_item.checkbox {
    position: relative;
    font-size: 1.3rem;
}

.form_item.checkbox label span.label {
    padding-left: 3rem;
    display: block;
}

.form_item.checkbox label input+span::before {
    content: "";
    width: 2rem;
    height: 2rem;
    background: rgb(184, 184, 184);
    position: absolute;
    left: 0px;
    border: 7px solid rgb(184, 184, 184);
}

button {
    background: var(--mr-color-tertiary);
    padding: 1.5rem;
    width: 100%;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    border: 0px;
    outline: 0px;
}

.form_item.checkbox label input:checked+span::before {
    background: var(--mr-color-tertiary);
}

.footer_links {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem;
}

.footer_links a {
    width: 300px;
    font-size: 20px;
    background: rgb(231, 231, 231);
    margin: 0.5rem 1rem;
    display: flex;
    align-items: center;
    flex-grow: 1;
    font-weight: 500;
    color: grey !important;
}

.footer_links a::before {
    font-size: 2.4rem;
    padding: 1rem;
    color: grey;
    border-right: 1px solid grey;
    margin-right: 1rem;
    min-width: 72px;
    text-align: center;
}

.footer_links a:hover span {
    text-decoration: underline;
}

.videopopup .overlay_ico {
    position: absolute;
    inset: 0px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videopopup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videopopup .overlay_ico::before {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--mr-color-yellow);
    border-radius: 50%;
    color: var(--mr-color-yellow);
    text-shadow: black 0px 0px 10px;
    box-shadow: black 0px 0px 10px;
    background: rgba(0, 0, 0, 0.55);
}

.videopopup:hover .overlay_ico {
    transform: scale(1.1);
    transition: all 0.1s ease 0s;
}

.home_aside {
    border-left: 5px solid var(--mr-color-accent);
    padding-left: 2vw;
    margin-left: 0vw;
}

.tile_image {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.tile_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.opportunities_comp {
    color: grey;
    font-size: 0.8em;
}

.opportunities_title {
    color: var(--mr-color-accent);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.opportunities_pos {
    color: grey;
    font-size: 0.9em;
}

a.opportunities_more {
    background-color: var(--mr-color-accent);
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.3rem 1rem;
    border-radius: 0.3rem;
    margin: 0.4rem 0px 1.5rem;
    display: flex;
    width: fit-content;
}

.opportunities_widget_wrapper {
    border-bottom: 1px solid rgb(230, 229, 229);
}

a.opportunities_viewall {
    display: block;
    text-align: right;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

a.opportunities_viewall i {
    font-size: 0.8em;
}

.sections_wrapper {
    display: flex;
    flex-flow: wrap;
    margin: -0.5rem;
}

a.sections_item {
    width: calc(30% - 0.5rem);
    min-width: 295px;
    margin: 0.5rem;
    flex-grow: 1;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sections_item.nations {
    background: var(--mr-color-primary);
}

a.sections_item.programs {
    background: var(--mr-color-tertiary);
}

a.sections_item.entities {
    background: var(--mr-color-secondary);
}

.sections_details h5 {
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    width: fit-content;
    font-size: clamp(14px, 1.3vw, 24px);
}

.sections_img {
    width: clamp(80px, 14vw, 130px);
    padding: 2vw 0.5rem;
    position: relative;
}

.sections_img img {
    width: 85%;
    height: auto;
    margin: auto;
    display: block;
}

p.sections_description {
    margin: 0px;
    line-height: 1.1;
    font-size: clamp(14px, 1vw, 1.2rem);
}

.sections_details {
    padding: 1rem;
    position: relative;
}

.sections_img::before {
    content: "";
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 1px;
    display: block;
    background: rgba(255, 255, 255, 0.25);
}

section#sections {
    padding: 1rem;
}

.sections_item:hover .sections_title::after {
    content: "";
    width: 100%;
}

.sections_item .sections_title::after {
    content: "";
    width: 0px;
    height: 1px;
    background: white;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    transition: all 0.3s ease 0s;
}

.sections_item:hover .sections_img img {
    transition: all 0.3s ease 0s;
    transform: scale(1.05);
}

a.opportunities_more:hover i {
    transition: all 0.3s ease 0s;
    transform: translate(50%, 0px);
    display: block;
    margin-left: 0.4rem;
}

a.opportunities_more i {
    display: block;
    margin-left: 0.4rem;
}

.banner_caption p {
    color: #898989;
    line-height: 1.5;
    font-size: 1.6vw;
    font-size: clamp(16px, 1.6vw, 24px);
}

.news_description {
    font-size: clamp(17px, 2vw, 1.4rem);
}

.columns_wrapper {
    display: flex;
    flex-direction: row;
}

.columns_side {
    width: 300px;
    min-width: 210px;
    max-width: 320px;
    flex-grow: 1;
    margin-right: 2vw;
    border-right: 5px solid var(--mr-color-accent);
    padding-right: 2vw;
}

.columns_side_inner {}

.columns_wrapper .columns_main {
    width: 75%;
    flex-grow: 1;
    padding: 0px 2vw 2vw;
}

.accordion_header {
    background: var(--mr-color-accent);
    color: white;
    padding: 0.5rem 3.3rem 0.5rem 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    cursor: pointer;
}

.accordion_header::after {
    content: "+";
    font-family: FontAwesome;
    font-weight: 900;
    position: absolute;
    right: 1rem;
}

.accordion_body {
    display: none;
}

.accordion_header.active::after {
    content: "";
}

.program_item .label {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--mr-color-accent);
    line-height: 1;
}

.program_item {
    margin-bottom: 1rem;
    line-height: 1.1;
}

.program_map {
    position: relative;
    height: 250px;
}

.program_map iframe {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
}

img.programs_headphoto {
    margin-bottom: 1rem;
    max-width: 450px;
    width: 100%;
}

.accordion_header {
    background: var(--mr-color-accent);
    color: rgb(255, 255, 255);
    padding: 0.5rem 3.3rem 0.5rem 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    cursor: pointer;
}

.accordion_header::after {
    content: "+";
    font-family: FontAwesome;
    font-weight: 900;
    position: absolute;
    right: 1rem;
}

.accordion_body {
    height: 6em;
    overflow: hidden;
    position: relative;
    display: block !important;
}

.accordion_readmore {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-end;
    color: gray;
    cursor: pointer;
    height: 8rem;
    margin-top: -6rem;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
    position: relative;
}

.accordion_readmore.expanded {
    background: transparent;
    height: auto;
    margin: 0px 0px 2rem;
}

.program_item a {
    color: black;
    text-decoration: none;
}

.program_item a:hover {
    color: var(--mr-color-accent);
    text-decoration: underline;
}

a.videopopup.search_result_link {
    justify-content: flex-start;
}

.footer_content_inner {
    padding: 2vw 4vw;
    display: flex;
}

.services_img img.ico1 {
    max-height: 45%;
}

.services_img img.ico2 {
    max-height: 39%;
    margin-left: -7%;
}

.services_img img.ico3 {
    max-height: 38%;
    margin-left: 0%;
    margin-top: -7%;
}

.services_img img.ico4 {
    max-height: 38%;
    margin-left: 0%;
    margin-top: -7%;
}

@media (max-width: 767px) {
    .columns_wrapper {
        flex-direction: column;
    }

    .columns_side {
        width: 100%;
        max-width: none;
    }

    .columns_wrapper .columns_main {
        width: 100%;
        max-width: none;
        padding: 0px;
        margin: 0px;
        border-left: 0px;
    }
}

.program_map #map-canvas {
    position: absolute;
    inset: 0px;
    height: 100%;
    width: 100%;
}

.accordion_wrapper {
    margin-top: 2rem;
}

.external_link::before {
    content: "";
    font-family: FontAwesome;
    margin-right: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
}

a.external_link {
    text-decoration: none;
}

a.external_link span {
    text-decoration: underline;
}

.swiper-slide .slideshow_caption {
    height: unset !important;
    background: #f9f3fe;
    padding: 1.4em 2.4em;
    border-radius: 0.7em;
    box-shadow: 0 0 0px 5px black;
    margin: 10px 10px -1px 10px;
}

section#testimonials {
    /* padding: 4vw; */
    margin-top: -100px;
}

section#testimonials::before,
section#testimonials::after {
    content: ''
}

section#testimonials::before {
    background-image: url('/images/section_top.png');
    height: 100px;
    width: 100%;
    background-size: 1120px;
    display: block;
    background-position: center;
}

section#insights {
    min-height: 300px;
    background: #242424;
    margin-top: -70px;
    padding: 4vw;
    padding-top: calc(70px + 4vw);
}

section#testimonials::after {
    background-image: url(/images/section_bottom.png);
    height: 70px;
    width: 100%;
    background-size: 1120px;
    display: block;
    background-position: center;
    position: relative;
    z-index: 1;
}

.testimonials_wrapper {
    padding: 4vw;
    background: #2d2d2d;
    position: relative;
}

.testimonials_inner {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.swiper-button-prev {
    left: -3vw !important;
    color: #60b60b !important;
    text-shadow: 0.2em 0.2em 0 black;
}

.swiper-button-next {
    right: -3vw !important;
    color: #60b60b !important;
    text-shadow: 0.2em 0.2em 0 black;
}

.swiper-button-next:after {
    content: '\f054' !important;
    font-family: 'FontAwesome' !important;
    font-weight: 900 !important;
}

.swiper-button-prev:after {
    content: '\f053' !important;
    font-family: 'FontAwesome' !important;
    font-weight: 900 !important;
}

.swiper-slide {
    height: unset !important;
    background: #2d2d2d;
    /* margin-bottom: 2rem; */
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    left: 0;
    width: auto !important;
}

span.swiper-pagination-bullet {
    border-radius: 0;
    width: 1rem;
}


.swiper-pagination-bullet-active {
    background-color: #5eb20a !important;
}

.cite {
    font-weight: 900;
    font-style: italic;
    color: white;
    font-size: 2rem;
    text-shadow: 0.4rem 0.4rem 0 black;
    position: relative;
    margin-left: auto;
    display: block;
    padding-left: 6.5rem;
    width: 50%;
    padding-top: 0.7rem;
}

.cite::before {
    content: '';
    background-image: url('/images/cite_pre.png');
    width: 5rem;
    height: 3rem;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: block;
    background-repeat: no-repeat;
}

.insights_wrapper {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.insights_item {
    display: flex;
    margin-bottom: 3rem;
}

.insight_img {
    width: 66%;
}

.insight_details {
    width: 33%;
    background: #161715;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.insights_item:nth-of-type(even) .insight_img {
    order: 2;
}

section#insights h2 {
    font-style: italic;
    color: white;
    text-shadow: 0.4rem 0.4rem 0 black;
}

.insight_img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.underlined::after {
    content: '';
    background-image: url('/images/hr_green.png');
    width: 100%;
    background-position: center;
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    height: 10px;
}

.underlined {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

section#testimonials h2 {
    color: white;
    font-style: italic;
    text-shadow: 0.4rem 0.4rem 0 black;
}

.footer_col_grow {
    flex-grow: 1;
}

img.footerlogo {
    width: 100%;
    max-width: 18.9em;
}

ul.footer_nav {
    padding: 0;
    display: flex;
    list-style: none;
}

ul.footer_nav li {
    margin: 0 1vw;
}

ul.footer_nav li a {
    color: black;
    font-weight: 500;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.6vw;
}


ul.footer_social a {
    background: white;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: black;
    box-shadow: .2rem .2rem 0 black;
}

ul.footer_social a:hover {
    transform: scale(1.1);
}

a.btn::after {
    content: '\f061';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 0.7em;
    line-height: 2;
    display: inline-block;
    color: #81fc24;
    margin-left: 0.75em;
    transition: 0.1s all ease;
}

a.btn:hover::after {
    transition: .3s all ease;
    transform: translate(0.5rem, 0px);
}.footer_applinks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.footer_applinks_title {
    width: 100%;
    text-align: center;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
}

.footer_applinks a img {
    width: 100%;
    max-width: 145px;
}

div#tryapp_popover {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000045;
    align-items: center;
    justify-content: center;
    z-index: 99999999999;
}

.tryapp_popover_container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    max-width: calc(100% - 2rem);
    max-height: calc(100% - 2rem);
    z-index: 999999999999999999999;
    position: relative;
    overflow: auto;
}

.tryapp_popover_close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    cursor: pointer;
}

.tryapp_popover_container .footer_applinks {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
}.tryapp_popover_container strong {
    text-align: center;
    display: block;
    color: #7f7f7f;
}ol .footer_applinks {
    justify-content: flex-start;
    margin-bottom: .5rem;
}