@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Anton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root,
::after,
::before {
  --mr-color-primary: #940000;
  --mr-color-primary-tint: #ad0101;
  --mr-color-primary-shade: #770000;

  --mr-color-secondary: #ffe1dc;
  --mr-color-secondary-tint: #ffffff;
  --mr-color-secondary-shade: #dfc1bb;

  --mr-color-tertiary: rgb(240, 240, 240);
  --mr-color-tertiary-tint: rgb(255, 255, 255);
  --mr-color-tertiary-shade: rgb(241, 241, 241);

  --mr-color-accent: #91d2f0;
  --mr-color-accent-tint: #e4f3ff;
  --mr-color-accent-shade: #89c6e3;
  --mr-color-accent-contrast: rgb(255, 255, 255);

  --mr-color-light: rgb(255, 255, 255);
  --mr-color-medium: rgb(129, 129, 129);
  --mr-color-dark: rgb(0, 0, 0);

  --mr-color-contrast: #000000;

  --mr-font-main: "Open Sans";
  --mr-font-heading: "Anton";
  --mr-font-accent: "Bebas Neue";
  --mr-body-font-size: 18px;

  --mr-fontawesome: "Font Awesome 6 Free";
  --mr-fontawesome-brands: "Font Awesome 6 Brands";
}

.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);
  min-height: 100vh;
  color: #aba4a4;
  overflow-x: hidden;
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

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: calc(1.375rem + 1.5vw);
  color: rgb(221 197 197);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 3.5rem;
  }
}

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.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

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-primary);
  text-decoration: underline;
}

a:hover {
  color: red !important;
  text-shadow: 0 0 1rem #ff000082;
}

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;
}
/*----------------------
         Styles
------------------------*/
.disable {opacity: .5; pointer-events: none;}
.lazy {
  background-image: none !important;
  background-color: #616161;
}

.padding {
  padding: 22px 6px;
}

.padding-v {
  padding: 2vw 0;
}

.padding-h {
  padding: 0 4vw;
}

.text-center {
  text-align: center;
}
.px-0 {
  padding-left: 0;
  padding-right: 0;
}

/* @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;

    }
} */


.scrollable {
  position: relative;
}

.scrollable.enabled.fade.rightfade {
  -webkit-mask-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(254, 255, 255, .95) 10%);
  mask-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(254, 255, 255, .95) 10%);
}
.scrollable.enabled.fade.leftfade {
  -webkit-mask-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(254, 255, 255, .95) 10%);
  mask-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(254, 255, 255, .95) 10%);
}
.scrollable.enabled.fade.leftfade.rightfade {
  -webkit-mask-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(254, 255, 255, .95) 10%, rgba(254, 255, 255, .95) 90%, rgba(255, 255, 255, 0) 100%);
  mask-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(254, 255, 255, .95) 10%, rgba(254, 255, 255, .95) 90%, rgba(255, 255, 255, 0) 100%);
}
.scrollable.enabled.fade.bottomfade {
  -webkit-mask-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(254, 255, 255, .95) 10%);
  mask-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(254, 255, 255, .95) 10%);
}
.scrollable.enabled.fade.topfade {
  -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(254, 255, 255, .95) 10%);
  mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(254, 255, 255, .95) 10%);
}
.scrollable.enabled.fade.topfade.bottomfade {
  -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(254, 255, 255, .95) 10%, rgba(254, 255, 255, .95) 90%, rgba(255, 255, 255, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(254, 255, 255, .95) 10%, rgba(254, 255, 255, .95) 90%, rgba(255, 255, 255, 0) 100%);
}
.scrollable::-webkit-scrollbar {
  display: none;
}


.scrollable::-webkit-scrollbar {
  overflow: hidden;
}

.scrollable.enabled {
  cursor: grab;
}

.scrollable.enabled.active {
  cursor: grabbing;
}

.scrollable.enabled.active:before {
  content: '';
  position:absolute;
  inset:0;
  z-index:100;
}

div#loading {
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 3rem;
}
/* CSS Document */


/*-------------
     Page
---------------*/

.page {
    display: flex;
    flex-direction: column;
    margin-top: 58px;
    background: rgb(29 29 29);
    min-height: 100vh;
    /* overflow-x: hidden; */
}

.page main {
    order: 3;
}

.page #services {
    order: 4;
}

.page footer {
    order: 5;
}


/*--------------
     Header
----------------*/

header.stuck {
    position: fixed !important;
    top: 0em !important;
    width: 100% !important;
    left: 0 !important;
}

header {
    order: 1;
    position: fixed;
    height: 58px;
    background: #222222;
    width: 100%;
    box-shadow: 0 0 10px black;
    z-index: 999999999;
    top: 0;
}

header#home {
    top: 0em !important;
    width: 100%;
    left: 0;
    position: fixed !important;
}

.mr-header-wrap {
    padding: 0;
}

h1.logo {
    background: NONE;
    margin-left: 0 !important;
    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;
    padding: 3px 5px;
    transform: translate(-50%, 0px);
    box-shadow: none;
    padding: 0;
    margin: 0;
}

h1.logo a {
    display: flex;
    height: 100%;
    color: #54534a;
    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% - 58px);
    padding-left: 58px;
    display: flex;
    height: 58px;
    align-items: center;
    /* background: white; */
    justify-content: center;
    position: fixed;
    top: 0;
}

img.logo_img {
    height: 100%;
}

img.mobile {
    display: block;
    height: 58px;
}

img.desktop {
    width: 240px;
    height: auto;
    display: block;
    max-width: 103px;
}

.mr-navbar-subpanel {
    justify-content: space-between;
    padding-top: 0;
}

.header_extra {
    /* display: none; */
}


.mr-navbar-upper .list-inline {
    margin: 0;
    list-style: none;
}

.mr-upper-toggle {
    display: flex;
    align-items: center;
    background: transparent;
    cursor: pointer;
    width: 48px;
    height: 48px;
    text-align: center;
    position: fixed;
    top: 5px;
    right: 50px;
    z-index: 9999999999999;
    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: '\f142';
    font-family: "font awesome 5 free";
    font-weight: 900;
    color: black;
    display: block;
    font-size: 28px;
    position: relative;
    z-index: 99999;
}

.showupper .mr-upper-toggle span:before {
    content: '\f00d';
}

#sticky-wrapper {
    height: auto !important;
}

.mr-navbar-upper {}

.showupper .mr-navbar-upper {
    display: flex;
}

/*--------------
    Navigation
----------------*/

nav {
    transform-origin: right;
    /* transform: skewY(-2deg) translateY(-100%); */
    position: absolute;
    z-index: 9999999;
    width: 100%;
    box-shadow: 0 10px 10px #0000004f;
    transition: .3s transform ease;
}

.-is-stuck nav {
    /* transform: skewY(0deg) translateY(-100%); */
    /* transition: .3s transform ease; */
}


.-is-stuck .mr-navbar-brand:after {
    transform: skewY(0deg);
}

.mr-navbar-nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    /* background: rgb(239, 232, 148); */
    /* z-index: 0; */
    /* display: none; */
    /* visibility: hidden; */
    transition: .3s all ease;
    width: 100%;
    /* margin-top: 58px; */
    padding: 0 !important;
    transform: translate(0%, 100%);
    transition: .3s opacity ease;
    /* box-shadow: none !important; */
    overflow: auto;
    opacity: 0;
    height: 100%;
    background: #171717f0;
    box-shadow: inset 0 0 2rem black;
}

.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: 0 5px 20px #0000003d;
    padding: 0;
    top: 0 !important;
    height: 58px !important;
}

ul.level-0.mr-navbar-nav {
    flex-direction: column;
    font-size: 6vw;
    /* min-height: 100%; */
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 0;
    /* opacity: 0; */
    /* transform: translate(0,100px); */
    transition: .0s opacity ease;
    /* overflow: auto; */
    /* background: #171717d1; */
    /* box-shadow: inset 0 0 2rem black; */
    margin: 0;
    list-style: none;
}

.showmenu ul.level-0.mr-navbar-nav {
    /* transition: .3s all .2s ease; */
    /* opacity: 1; */
    /* transform: translate(0,0px); */
}

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: 0;
}

ul.level-0.mr-navbar-nav li {
    margin: 1vh 0;
    position: relative;
    width: calc(100% - 3rem);
    max-width: 100%;
    text-align: center;
    height: 100%;
    line-height: 1;
    padding: 0;
    flex-grow: 0;
}

ul.level-0.mr-navbar-nav li a {
    font-size: 5.95vw;
    display: flex;
    text-align: center;
    padding: 1vh;
    /* height: 100%; */
    align-items: center;
    justify-content: center;
    color: #caacac;
    font-family: 'Anton';
    text-transform: uppercase;
    /* color: red; */
    width: 100%;
    text-decoration: none;
}

ul.level-0.mr-navbar-nav .current-parent a {
    color: red;
    /* background: #191919; */
    /* padding-left: 1em; */
    text-shadow: 0 0 1rem red, 0 0 2rem #ff00005e, 0 0 3rem red !important;
    overflow: hidden;
}

span#nav_slide_hover_bg {
    /* display: none; */
}

span#nav_slide_hover {
    /* display: none; */
}

li.current.current-item:after {
    content: '';
    border: 6px solid rgb(255 0 0);
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    /* transform: translate(0, 50%); */
    z-index: 9;
}

.mr-navbar-toggle {
    display: flex;
    cursor: pointer;
    width: 60px;
    height: 58px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999999;
}

.mr-navbar-toggle span:before {
    content: '\f0c9';
    font-family: "font awesome 5 free";
    font-weight: 900;
    color: rgb(178 17 17);
    font-size: 2em;
    position: relative;
    z-index: 99999;
}

.showmenu .mr-navbar-toggle span:before {
    content: '\f00d';
    font-family: "font awesome 5 free";
    font-weight: 900;
    color: rgb(255 0 0);
    font-size: 2em;
    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 {
    display: flex;
    /* background: rgb(251, 248, 229); */
    /* visibility: visible; */
    transform: translate(0%, 0px);
    transition: .3s opacity ease;
    /* box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15) !important; */
    opacity: 1;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

ul.level-1 {
    position: relative;
    background: var(--mr-color-secondary);
    box-shadow: none;
    padding: 0 0 0 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 {
    color: white
}

.showmenu .mr-navbar-toggle {
    /* width: 100vw; */
    /* height: 100vh; */
    position: fixed;
    transform: translate(0px, 0px);
    top: 0;
    background: rgb(0 0 0 / 15%);
}

ul.level-0.mr-navbar-nav a:hover {
    color: white;
    transition: .3s all ease;
}

span.subnav_toggle {
    position: absolute;
    top: 0;
    right: 0;
    height: 3.25rem;
    width: 3.25rem;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s all ease;
    cursor: pointer;
}

ul.level-0.mr-navbar-nav li.has_subnav>a {
    padding-right: 4.25rem;
    display: block;
}

ul.level-1.mr-navbar-dropdown {
    display: none;
}

span.subnav_toggle:before {
    content: '\f0d7';
    font-family: var(--mr-fontawesome);
    font-weight: 900;
    transition: .2s all ease;
}

ul.level-1.mr-navbar-dropdown.show {
    display: block !important;
    height: auto !important;
    padding-left: 0 !important;
    border-left: 0.5rem solid var(--mr-color-primary);
}

span.subnav_toggle.active:before {
    transform: rotate(-180deg);
}

ul.level-0.mr-navbar-nav li li a {
    font-size: 1rem;
}


/*--------------
     Banner
----------------*/

section#banner {
    height: 30vw;
    position: relative;
    order: 2;
    background-color: rgb(32 32 32);
}

body#secondary #banner {
    /* height: 80px; */
    /* padding-top: 0; */
    /* background-size: 1360px; */
}




/* -------------- 
    4. Contacts
 ---------------- */

*[class^="contact_"] {
    padding-left: 1.7rem;
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

*[class^="contact_"]:before {
    font-family: var(--mr-fontawesome);
    font-weight: 900;
    min-height: 1.7rem;
    border-radius: 50%;
    margin: 0 0.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 1em;
    line-height: 0.1;
    position: absolute;
    left: 0em;
    color: var(--mr-color-primary);
    top: 0;
    padding-bottom: 0.2em;
}

.contact_address:before {
    content: '\f0e0';
}

.contact_mail:before {
    content: '\f0e0';
}

.contact_phone:before {
    content: '\f095';
}

.contact_facebook:before {
    content: '\f39e';
    font-family: var(--mr-fontawesome-brands);
}

.contact_email:before {
    content: '\f1fa';
}

.contact_location:before {
    content: '\f3c5';
}

.contact_cell:before {
    content: '\f3cd';
}

.contact_fax:before {
    content: '\f1ac';
}

.contact_fax {
    display: flex;
    margin-bottom: .5em;
}

.inline *[class^="contact_"]+*[class^="contact_"] {
    margin-left: 2em;
}

section#contactbar {
    background: #8cc83a;
    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: .8em;
    white-space: nowrap;
}

.contactbar_item .info a {
    color: white;
    text-transform: none;
    font-size: 1.5em;
}








/* --------------------
    5. Social media 
 ---------------------- */

.social_links a {
    text-decoration: none;
}

.social_links {
    display: flex;
}

.social_links a {
    text-decoration: none;
    font-family: var(--mr-fontawesome-brands);
    font-weight: 400;
    /* min-width: 1.6rem; */
    /* min-height: 1.6rem; */
    /* background: rgb(255, 255, 255); */
    /* border-radius: 50%; */
    /* margin: 0 0.5em; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none !important;
    color: var(--mr-color-accent);
    font-size: 1.6em;
    margin: 0 0.9rem 0 0;
}

.social_links a.link_btn i {
    color: #5b9dba;
    font-size: 1em;
    margin: 0;
}







/* ----------------
    6. Headings 
 ------------------ */

h2 {
    font-size: 2vw;
    color: #ffdfdf;
    margin-top: 1em;
    border-bottom-width: 3px;
    border-color: var(--mr-color-primary);
    border-bottom-style: solid;
    padding-bottom: .5rem;
    text-transform: uppercase;
    font-weight: 400;
}

h3 {
    font-size: 1.4vw;
    color: var(--mr-color-contrast);
}

h4 {
    font-size: 1.36em;
}


.heading_withlink {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-size: 2em;
}


.heading_withlink .header_link {
    font-size: 0.75em;
    color: #ffdfdf;
    text-decoration: none;
    font-family: 'Bebas Neue';
    font-weight: 400;
    display: flex;
    align-items: center;
}

.heading_withlink span {
    flex-grow: 1;
    font-size: 1.2em;
}

main.page-content h1:after,
main.page-content .about_mission h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    border-bottom: 3px solid var(--mr-color-primary);
}

.aboutus h1 {
    color: black;
}

main.page-content h1 span.small {
    display: block;
    font-size: 0.4em;
    line-height: 1;
    margin-top: .3em;
}

main.page-content h1 {
    padding-bottom: 0.3em;
    line-height: 1;
    margin-bottom: 0.7em;
    text-transform: uppercase;
    font-weight: 400;
    border-color: var(--mr-color-primary);
}







/* ------------ 
    7. Footer
--------------- */

.footer_logo_wrapper {
    background: #e5e3db;
    border-radius: 50%;
    width: clamp(120px, 10vw, 200px);
    height: clamp(120px, 10vw, 200px);
    margin: 1em auto 1em;
}

.footer_copyright p {
    margin: 0;
    font-size: 0.8em;
}

footer.page-footer {
    background: #282828;
    color: white;
    font-family: var(--mr-font-main);
    font-size: 1.2rem;
    padding: 1rem 0;
}

footer.page-footer ul {
    /* border-top: 1px solid #999999; */
    padding: 0;
    list-style: none;
    margin: 0;
}

footer.page-footer ul li {
    /* border-bottom: 1px solid #999999; */
    padding: .4em 0;
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
}

footer.page-footer ul li span+span {
    justify-self: flex-end;
    text-align: right;
}

.footer_social {
    padding-top: 1em;
}

.footer_hours header {}

.footer_contact .logo {
    max-width: 100%;
    padding: 1em 0;
}

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: #191919;
    text-align: center;
    color: #9c9b92;
    padding: 0.45em;
    font-family: var(--mr-font-accent);
    font-size: 1em;
}

footer.page-footer header {
    font-size: 1.6em;
    font-weight: 400;
    line-height: 1;
    padding-bottom: .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;
    /* max-width: 320px; */
    /* min-width: 300px; */
}

.footer_hours li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.footer_content a {
    color: var(--mr-color-light);
    display: flex;
    margin-bottom: .5em;
    text-decoration: none;
    white-space: nowrap;
}

section.footer_copyright a {
    color: var(--mr-color-primary);
    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: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    border-bottom: 3px solid;
    display: none;
}

img.footer_logo {
    width: 100%;
    max-width: 520px;
    margin: auto;
    /* display: block; */
    /* background: #e5e3db; */
    /* border-radius: 50%; */
    /* margin: -12% 0 0 -1%; */
}

.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;
}








/* -------------------------
    8. Section: Services 
---------------------------- */


section#services {
    color: white;
    background: #9e9e9e;
    padding: 3em 3em 1em 3em;
}

.services_wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.services_item {
    width: 260px;
    margin: 0 1em 1em;
    text-decoration: none;
    text-align: center;
}

.services_img {
    background: #444141;
    border-radius: 50%;
    padding: 1em;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    box-shadow: 0 2px 10px black;
    transition: .2s all ease;
    backface-visibility: hidden;
}

.services_img img {
    width: 90%;
    height: auto;
}

h5.services_title {
    color: var(--mr-color-dark);
    margin-top: 1em;
    font-size: 1em;
    line-height: 1;
}

p.services_description {
    font-size: 1rem;
    color: black;
    line-height: 1;
}

.services_wrapper a:hover .services_img {
    transform: scale(1.05);
    box-shadow: 5px 5px 20px rgb(0 0 0 / 32%);
}

section#services .large_btn {
    color: white;
    display: inline-block;
    margin: 3em 0;
    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;
}

@media (max-width: 991px) {
    .services_list a {
        width: 25%;
    }
}











/* ------------- 
    9. Buttons 
 --------------- */

.btn {
    background: var(--mr-color-primary);
    color: white;
    font-family:
        var(--mr-font-accent);
    font-size: 1.2em;
    font-weight: 400;
    margin-top: 1em;
    text-decoration: none;
}

.large_btn {
    color: #8cc83a;
    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: .3s all ease;
}

.large_btn:hover {
    text-decoration: none;
    opacity: .9;
}

.outline {
    border: .2em solid;
}

.link_btn {
    color: white;
    /* font-weight: 900; */
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1.2em;
    margin: 0 .5em;
}

.link_btn i {
    border-radius: 50%;
    color: white;
    font-size: 0.65em;
    margin-right: 0.5em;
}












/* -----------------
    10. Secondary 
 ------------------- */


#secondary header#home {}


#secondary .mr-navbar-inner {
    /* height: 12vw; */
}

#secondary .mr-navbar-inner {
    /* background-image: url(/images/headerbackground.jpg); */
    /* background-size: cover; */
    /* background-attachment: fixed; */
    /* background-repeat: repeat; */
}

#secondary h1.logo .desktop {
    /* padding-top: 10%; */
    /* width: 10vw; */
}

body#secondary #banner h1 {
    color: white;
    font-size: 1em;
    font-weight: 400;
}

body#secondary #banner {
    /* height: calc(3.9em + 8.6em); */
    /* padding-top: 8.6em; */
}

body#secondary h1,
body#secondary h2,
body#secondary h3,
body#secondary h4,
body#secondary h5,
body#secondary h6 {
    /* color: rgb(0, 0, 0); */
}

#secondary main.page-content {
    /* padding-top: 4rem; */
}


/* --------------------
    11. Page Listings 
 ---------------------- */


ul.sitemap li>a,
.search_result_link {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    background: #0e0e0e;
    box-shadow: 3px 3px 10px #00000029;
    padding: 0.5em;
    border: 3px solid transparent;
    position: relative;
}

.sitemap_pagetitle,
.search_result_link h2 {
    display: block;
    font-size: 1.7rem;
    font-family: var(--mr-font-heading);
    color: var(--mr-color-primary);
    line-height: 1;
    margin-bottom: 0;
    margin-top: 0;
    border: 0;
    font-weight: 400;
    padding-bottom: 0.1rem;
}

ul.sitemap,
ul.sitemap ul {
    list-style: none;
    position: relative;
    margin-top: 1em;
}

.sitemap_pagedescription,
.search_result_link p {
    font-weight: 400;
    color: #c2c2c2;
    font-size: 0.8em;
    margin: 0;
}

ul.sitemap li>a:hover,
.search_result_link:hover {
    border: 3px solid red;
}

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: 0;
}

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 {
    height: calc(50% + 0.75em);
    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: 0;
}

ul.sitemap ul li.has_subnav ul li:last-of-type:before {
    height: calc(50% + 1em);
}

.search_result_details time {
    color: black;
    font-size: .9rem;
}

.result_events_details {
    display: flex;
    margin-top: 0.4rem;
}

.result_events_date:before {
    content: '\f073';
    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;
}

/* --------------------
    12. Additional 
 ---------------------- */








/* ----------------
    13. Custom 
 ------------------ */




footer.page-footer header {
    margin-top: 1em;
}





.contactbar_item {
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.contactbar_item .info {
    font-size: 1em;
    padding: 0 0 1em 0;
}

.contactbar_item .info a {
    font-size: 1.8em;
}

.services_list {
    font-size: 1.2em;
}

h2 {
    font-size: 1.7rem;
}

h3 {
    font-size: 1.2em;
}



main.page-content {
    flex-grow: 1;
}

#secondary main.page-content {
    /* padding-top: 0 !important; */
}

.services_list li {
    padding-top: 1em;
}

section#services .services_info .large_btn {
    width: 100%;
}

.mr-navbar-contact {
    display: none;
}

.footer_hours {
    margin: 2em 0;
}

.footer_copyright p {
    font-size: 1rem;
    flex-grow: 1;
}

.mr-contact-bar {
    width: 58px;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    height: 58px;
    z-index: 3;
}

.mr-contact-bar a span {
    display: none;
}

a.mr_phone i {
    padding: .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 {
    /* background:#da9c60; */
    color: black;
}

.calendar_dropdown:hover .new_dropdown,
.facebook_dropdown:hover .new_dropdown {
    display: block;
}


.header_social {
    display: none;
}

.logo a {
    display: block;
    width: auto;
    transform: translate(0, 0%);
}

.mr-navbar-upper {
    position: fixed;
    width: 280px;
    right: 0;
    top: 58px;
    flex-direction: column;
    font-size: 1em;
    display: none;
    top: 58px;
    right: 0;
    height: auto;
    background: var(--mr-color-primary);
    justify-content: stretch;
    border: 1px solid #272764;
}

.contact-info.inline {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    vertical-align: middle;
    flex-direction: row;
    flex-direction: column;
    /* align-items: flex-start; */
}

.inline *[class^="contact_"]+*[class^="contact_"] {
    margin: 0;
}



@media (max-width: 566px) {
    .services_list a {
        /* width: 100%; */
        /* display: flex; */
        /* align-items: center; */
        text-align: left;
        justify-content: flex-start;
        margin-bottom: 2em;
    }

    .services_list a span.services_img {
        /* max-width: 60px; */
        /* max-height: 60px; */
        margin: 0;
        /* margin-right: 1em; */
    }

    section#services {
        color: white;
        padding: 3em 1.6em 1em 1.6em;
    }
}

.footer_map {
    position: relative;
    height: 100%;
    width: 100%;
}

div#map_canvas {
    min-height: 320px;
    width: 600px;
    position: absolute !important;
    inset: 0;
}




.sitemap_pageurl {
    color: #5e5e5e;
    font-size: .8rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    /* font-style: italic; */
}

/* Loading spinner */


.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: 8px solid #ff0000;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #ff0000 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);
    }
}








/* REMOVE WHEN GALLEY GETS ADDED */
.images_icon::before {
    content: '\f03e';
    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: .3rem;
}

.search_results_section.image_results {
    position: relative;
}

.image_results .swiper-button-next,
.image_results .swiper-button-prev {
    background: #ededed;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    box-shadow: 0rem 0.2rem 0.4rem #00000054;
}

.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;
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1
}



.button,
.mr_pager a {
    text-decoration: none;
    color: #a70000;
    padding: .5rem;
    background: transparent;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    font-family: "anton";
    margin: 20px auto;
    flex-grow: 1;
    cursor: pointer;
    box-shadow: 0 0 0px 4px darkred;
    font-size: 1rem;
    width: 80%;
    max-width: 500px;
    display: block;
    box-shadow: 0 0 0px 4px darkred, inset 0 0 0 rgb(0 0 0);
    transition: .4s box-shadow ease;
    transition-delay: 0s;
    border: 0;
}

.button:hover {
    color: red;
    text-shadow: 0 0 0.7rem #ff0000c4, 0 0 2.6rem #ff0000c2;
    box-shadow: 0 0 0px 4px darkred, inset 0 0 1rem rgb(255 0 0 / 68%);
    transition: 0.2s box-shadow ease;
    transition-delay: 0.5s;
}

.button:before,
.mr_pager a:before {
    content: "";
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    top: calc(2px/ -1);
    left: calc(2px/ -1);
    background: linear-gradient(to right, blue 0%, blue 100%), linear-gradient(to top, blue 50%, transparent 50%), linear-gradient(to top, blue 50%, transparent 50%), linear-gradient(to right, blue 0%, blue 100%), linear-gradient(to left, blue 0%, blue 100%);
    background-size: 100% 2px, 2px 200%, 2px 200%, 0% 2px, 0% 2px;
    background-position: 50% 100%, 0% 0%, 100% 0%, 100% 0%, 0% 0%;
    background-repeat: no-repeat, no-repeat;
    transition: transform 0.3s ease-in-out, background-position 0.3s ease-in-out, background-size 0.3s ease-in-out, box-shadow 0.6s ease-in;
    transform: scaleX(0) rotate(0deg);
    transition-delay: 0.6s, 0.3s, 0s;
}

.button:hover:before {
    background-size: 200% 2px, 2px 400%, 2px 400%, 55% 2px, 55% 2px;
    background-position: 50% 100%, 0% 100%, 100% 100%, 100% 0%, 0% 0%;
    transform: scaleX(1) rotate(0deg);
    transition: transform 0.2s ease-in-out, background-position 0.2s ease-in-out, background-size 0.2s ease-in-out, box-shadow 0.4s ease-in;
    transition-delay: 0s, 0.3s, 0.6s;
}

.button,
.mr_pager a {
    position: relative;
}

.button:before,
.mr_pager a:before {
    content: "";
    position: absolute;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    top: calc(4px/ -1);
    left: calc(4px/ -1);
    background: linear-gradient(to right, #f00 0%, #f00 100%), linear-gradient(to top, #f00 50%, transparent 50%), linear-gradient(to top, #f00 50%, transparent 50%), linear-gradient(to right, #f00 0%, #f00 100%), linear-gradient(to left, #f00 0%, #f00 100%);
    background-size: 100% 4px, 4px 200%, 4px 200%, 0% 4px, 0% 4px;
    background-position: 50% 100%, 0% 0%, 100% 0%, 100% 0%, 0% 0%;
    background-repeat: no-repeat, no-repeat;
    transition: transform 0.2s ease-in-out, background-position 0.2s ease-in-out, background-size 0.2s ease-in-out, box-shadow 0s ease-in;
    transform: scaleX(0) rotate(180deg);
    transition-delay: 0.4s, 0.2s, 0s, 0s;
    box-shadow: 0 0 0 red, inset 0 0 0 red;
}

.button:hover:before {
    background-size: 200% 4px, 4px 400%, 4px 400%, 55% 4px, 55% 4px;
    background-position: 50% 100%, 0% 100%, 100% 100%, 100% 0%, 0% 0%;
    transform: scaleX(1) rotate(180deg);
    transition-delay: 0s, 0.2s, 0.4s, 0.2s;
    box-shadow: 0 0 1rem red, inset 0 0 1rem red;
}

.footer_box {
    background: #1b1b1bcf;
    border-radius: 0.5em;
    padding: .6em 1em;
    width: 100%;
    font-family: 'Bebas Neue';
    color: lightgrey;
    margin-bottom: 1em;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: normal;
    justify-content: center;
}

*[class^="contact_"] {
    padding-left: 2em;
    position: relative;
    width: 100%;
    text-align: left;
    justify-content: flex-start;
}

section.footer_content a {
    color: var(--mr-color-primary);
    display: flex;
    /* margin-bottom: 0.5em; */
    text-decoration: underline;
    white-space: nowrap;
}

footer img.desktop {
    max-width: 300px;
}

*[class^="contact_"]:first-of-type {
    margin-top: .5em;
}

.footer_box h3 {
    color: #d0c1c1;
    text-transform: uppercase;
    font-weight: 400;
    border-bottom: 2px solid var(--mr-color-primary);
    padding-bottom: .3rem;
}

*[class^="contact_"]:hover a {
    color: red;
    text-shadow: 0 0 0.3rem #ff0000ba;
}

*[class^="contact_"]:hover:before {
    color: red;
    text-shadow: 0 0 0.3rem #ff0000b8;
}

.heading_withlink .header_link:hover i {
    color: red !important;
    transform: translateX(50%);
    text-shadow: 0 0 1rem red;
    transition: .3s all ease;
}

.heading_withlink .header_link i {
    transition: .3s all ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: red;
    text-shadow: 0 0 1rem red;
}

.social_links a:hover {
    color: red;
    text-shadow: 0 0 1rem red;
}

li.active {
    /* margin-bottom: 8px !important; */
    display: block;
}

.fc-toolbar-chunk {
    margin-bottom: 1rem;
    flex-grow: 2;
}

.fc-toolbar-chunk:last-of-type {
    flex-grow: 0;
    display: flex;
    justify-content: center;
    width: fit-content;
}

.form_row h2 {
    font-size: 2rem;
}

select, input[type="text"], input[type="email"], input[type="number"], input[type="date"], input[type="tel"],  textarea {
    background: #202020;
    color: white;
    padding: 0.6rem;
    border-radius: 4px;
    border: 1px solid grey;
    width: 100%;
}

.form_row {
    display: flex;
    flex-direction: column;
    width: 100%;
}

form#bookingform {
    background: #2d2d2d;
    padding: 2vw;
    border-radius: 1rem;
}

.booking_confirmation_form .label {
    background: grey;
    text-align: center;
    font-family: 'Anton';
    color: darkred;
    margin-bottom: 0.5rem;
}

.booking_confirmation_form .value {
    text-align: center;
    margin-bottom: 1rem;
}

div#GrandTotal>.form_item {
    font-size: 2rem;
    margin-bottom: 2rem;
}

div#GrandTotal>.form_item .label {
    background: #141414;
}

div#card-container {
    padding: 1rem;
    background: #808080;
    border-radius: 1rem;
    max-width: 100%;
    width: 900px;
    margin: auto;
}

@media (max-width: 566px) {

    a.fc-daygrid-event.fc-daygrid-dot-event.fc-event.fc-event-start.fc-event-end.fc-event-past.mr_events.multipurpose {}

    .fc-dayGridMonth-view .fc-event-time,
    .fc-dayGridMonth-view .fc-event-title,
    .fc-dayGridMonth-view .fc-daygrid-event.mr_events:before {
        display: none
    }

    .fc-dayGridMonth-view .fc-daygrid-event-harness {
        height: 0.8rem;
        margin-bottom: 0;
    }

    .fc-event-time {}



}




.content_form .form-group .inline {
    display: flex;
    min-width: fit-content;
    flex-wrap: wrap;
    align-items: center;

    flex-grow: 1;
}

.content_form .input-group.checkbox.inline label {
    white-space: nowrap;
    margin-right: 2rem;
}

.content_form .input-group.checkbox input {
    min-width: 1rem;
    min-height: 1rem;
    width: 1rem;
    height: 1rem;
    margin: .5rem 0.5rem .5rem .5rem;
}

.content_form .form-section {
    margin-bottom: 0.75rem;
}

.content_form .input-group label {
    margin: 0;
    margin-right: 1rem;
    white-space: nowrap;
}

.content_form .input-group input,
.content_form .input-group textarea {
    margin: 0;
    margin-right: 2rem;
}

.content_form .form-heading {
    font-weight: 900;
    text-decoration: underline;
}

.content_form .form-group.inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.content_form .form-note {
    font-style: italic;
    font-size: .9em;
}

.content_form .number input {
    margin: 0 .2rem;
}

.content_form .number+label {
    font-family: 'Bebas Neue';
    font-size: 1.7rem;
    font-weight: 400;
    transform: translateY(-.1rem);
}

.content_form .form-section {
    display: flex;
    align-items: center;
}

.content_form .input-group.checkbox.inline .form-group {
    flex-grow: 0;
}

.content_form .number {

    display: flex;
    margin-right: 1rem;
}

.content_form .minus,
.content_form .plus {
    width: 2.1rem;
    height: 2.1rem;
    background: #640f0f;
    border-radius: 4px;
    padding: 8px 5px 8px 5px;
    border: 1px solid #000;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: red;
    font-size: 2.3rem;
    line-height: 1;
    padding: 0;
}

.content_form input {

text-align: left;

font-size: 1.3rem;

border: 1px solid #a10000;

border-radius: 4px;

display: inline-block;

vertical-align: middle;

background: #151515;

color: white;

width: 100%;

height: auto;

padding: 0.4rem;
}

.content_form .number input {
    height: 34px;
    width: 100px;
    text-align: center;
}

.content_form .number+label strong {
    font-family: 'Anton';
    font-weight: 400;
    color: #ddc5c5;
    transform: none;
}

.content_form .number+label+.form-note {
    margin-left: 1rem;
}

.form-section table span.small {
    display: block;
    font-size: 0.8rem;
}
.content_form .form-section table td {
    padding: .25rem 0.5rem;
}span.form-helper {
    background: #2d2d2d;
    padding: 1rem;
    margin: 0.5rem 0;
    display: block;
}

.form-section table {
    border-collapse: separate;
    table-layout: auto;
}

.content_form .form-section table td:nth-of-type(2) {
    width: 61%;
}

span.form-helper.side_help {
    font-size: 0.75em;
    margin: 0;
}

.content_form .form-section table td:nth-of-type(4) {
    width: 100%;
}.lapcounterform h3 {
    color: #e50000;
    font-weight: 400;
}


form#lapcounterformEl {
    padding: 2rem;
    background: #2d2d2d;
    border-radius: 0.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.lapcounterform label {
    display: block;
}

.lapcounterform .button {
    margin: 2rem 0.3rem;
    padding: 0.5rem 4rem;
    margin-top: 2rem;
    width: auto;
    font-size: 1.7rem;
}


section#fiftyfifty {
    background-image: url('/images/5050jackpot.jpg');
    background-size: auto 100%;
    background-position: right;
    background-repeat: no-repeat;
    background-color: black;
}

section#fiftyfifty h2 {
    text-align: center;
    font-size: 3.75em;
    border: 0;
    color: white;
    text-shadow: 0 0 1em black;
}

#fiftyfifty .price_row {
    margin: auto;
    display: flex;
    justify-content: center;
    font-size: 1.4em;
    color: red;
    background: #0000004d;
    width: fit-content;
    border-radius: 2rem;
    font-family: 'Bebas Neue';
    padding: 0.15em 0.6em 0.1em;
    margin-bottom: 2vw;
}

#fiftyfifty .price_row .price_box {
    padding: 0 0em;
    color: red;
    position: relative;
    text-align: center;
    line-height: 1;
}

#fiftyfifty .price_row .price_box + .price_box::before {
    content: '/';
    color:white;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0px, -50%);
    font-size: 1.4em;
    line-height: 1em;
    opacity: 0.8;
}

#fiftyfifty .price_row .price_box + .price_box {
    padding-left: 0.5em;
}

.jackpot_row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.jackpot_row img {
    width: 300px;
}

.jackpot_row .jackpot_left img {
    padding: 1.2vw;
}

.jackpot_middle {
    text-align: center;
    font-size: 2em;
    padding: 2vw;
}

.jackpot_amount {
    color: white;
    font-weight: 400;
    font-size: 2.5em;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

span#jackpot_amount {font-weight: 900;font-size: 1.5em;}

.jackpot_footer {
    color: white;
    text-align: center;
    line-height: 1;
    padding-bottom: 2em;
    font-size: 1.2em;
}

.jackpot_footer p {
    margin: 0.4em;
}

@media (max-width:600px) {

    .content_form .input-group input,
    .content_form .input-group textarea {
        margin: 0;
        margin-right: 0rem;
    }
    .content_form .form-section table td:nth-of-type(4), .content_form .form-section table th:nth-of-type(4) {
        display: none;
        width: 100%;
        position: relative;
    }
}


/* ----------------
    NEW LAP COUNTER
 ------------------ */

div#laps-container {
    width: calc(100% - 6rem);
    background: grey;
    height: 3px;
    position: relative;
    margin: 6rem 3rem 3rem;
    /* padding: 0 2rem; */
}

div#end-container {
    right: 0;
}

div#current-container {
    width: 0%;
    height: 3px;
    position: relative;
    background: red;
}

div#current-container .location-dot {
    right: -1rem;
    top: 2px;
    position: absolute;
    left: auto;
}

div#current-container .lap-count-container {
    right: 0;
    transform: translate(50%, -50%);
}

div#start-container .location-name {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 50%);
    white-space: nowrap;
}
#map {
    position: relative;
    width: 100%;
}

#static-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#route-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.position-container {
    position: absolute;
}

.start-container {
    /* Adjust top/left values based on startCoord and your element's dimensions */
}

#current-container {
    /* This will be positioned dynamically by JS */
    z-index: 9999;
}

.end-container {
    /* Adjust top/left values based on endCoord and your element's dimensions */
}

.location-dot {
    position: absolute;
    border-radius: 50%;
    height: 1rem;
    width: 1rem;
    background: red;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(-50%, -50%);
}

.lap-count-container {
    position: absolute;
    bottom: 100%;
    transform: translate(-50%, -50%);
}

.lap-count-container:before {
    content: "";
    position: absolute;

    /* position tooltip correctly */
    top: calc(100% + 4px);
    margin-left: -5px;

    /* vertically center */
    left: 50%;
    transform: translateY(-50%);

    /* the arrow */
    border-style: solid;
    border-width: 15px 5px 0 5px;
    border-color: #282828 transparent transparent transparent;
    transform: rotate(0deg);
    filter: blur(3px)
}

.lap-count-container:after {
    content: "";
    position: absolute;

    /* position tooltip correctly */
    top: 100%;
    margin-left: -5px;

    /* vertically center */
    left: 50%;
    transform: translateY(-50%);

    /* the arrow */
    border-style: solid;
    border-width: 15px 5px 0 5px;
    border-color: #393939 transparent transparent transparent;
    transform: rotate(0deg);

}

div#end-container .location-dot {
    background: grey;
}

div#start-container .location-name {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 50%);
    white-space: nowrap;
}

div#end-container .location-name {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 50%);
    white-space: nowrap;
}

.lap-count-inner {
    background: #393939;
    padding: .3rem 0.9rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px #282828;
    color: red;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1;
}

span.lap-count {
    font-size: 1.2rem;
    color: #b7b7b7;
    padding: 0.1rem 0;
    display: block;
}

.goalreached {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.successmessage {
    font-size: 7.95vw;
    display: flex;
    text-align: center;
    font-family: 'Anton';
    text-transform: uppercase;
    color: red;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 1rem rgba(255, 0, 0, 0.76), 0 0 2rem #ff00005e, 0 0 3rem rgba(255, 0, 0, 0.719) !important;
    animation: fadeIn 2s;
    -webkit-animation: fadeIn 2s;
    -moz-animation: fadeIn 2s;
    -o-animation: fadeIn 2s;
    -ms-animation: fadeIn 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes firework {
    0% {
        transform: translate(var(--x), var(--initialY));
        width: var(--initialSize);
        opacity: 1;
    }

    50% {
        width: 0.5vmin;
        opacity: 1;
    }

    100% {
        width: var(--finalSize);
        opacity: 0;
    }
}

.firework,
.firework::before,
.firework::after {
    --initialSize: 0.5vmin;
    --finalSize: 45vmin;
    --particleSize: 0.2vmin;
    --color1: yellow;
    --color2: khaki;
    --color3: white;
    --color4: lime;
    --color5: gold;
    --color6: mediumseagreen;
    --y: -30vmin;
    --x: -50%;
    --initialY: 60vmin;
    content: "";
    animation: firework 2s infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, var(--y));
    width: var(--initialSize);
    aspect-ratio: 1;
    background:

        radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 50% 0%,
        radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 100% 50%,
        radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 50% 100%,
        radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 0% 50%,

        /* bottom right */
        radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 80% 90%,
        radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 95% 90%,
        radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 90% 70%,
        radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 100% 60%,
        radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 55% 80%,
        radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 70% 77%,

        /* bottom left */
        radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 22% 90%,
        radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 45% 90%,
        radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 33% 70%,
        radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 10% 60%,
        radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 31% 80%,
        radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 28% 77%,
        radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 13% 72%,

        /* top left */
        radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 80% 10%,
        radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 95% 14%,
        radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 90% 23%,
        radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 100% 43%,
        radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 85% 27%,
        radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 77% 37%,
        radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 60% 7%,

        /* top right */
        radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 22% 14%,
        radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 45% 20%,
        radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 33% 34%,
        radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 10% 29%,
        radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 31% 37%,
        radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 28% 7%,
        radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 13% 42%;
    background-size: var(--initialSize) var(--initialSize);
    background-repeat: no-repeat;
}

.firework::before {
    --x: -50%;
    --y: -50%;
    --initialY: -50%;
    /*   transform: translate(-20vmin, -2vmin) rotate(40deg) scale(1.3) rotateY(40deg); */
    transform: translate(-50%, -50%) rotate(40deg) scale(1.3) rotateY(40deg);
    /*   animation: fireworkPseudo 2s infinite; */
}

.firework::after {
    --x: -50%;
    --y: -50%;
    --initialY: -50%;
    /*   transform: translate(44vmin, -50%) rotate(170deg) scale(1.15) rotateY(-30deg); */
    transform: translate(-50%, -50%) rotate(170deg) scale(1.15) rotateY(-30deg);
    /*   animation: fireworkPseudo 2s infinite; */
}

.firework:nth-child(2) {
    --x: 30vmin;
}

.firework:nth-child(2),
.firework:nth-child(2)::before,
.firework:nth-child(2)::after {
    --color1: rgb(255, 52, 86);
    --color2: rgb(240, 26, 72);
    --color3: rgb(255, 0, 34);
    --color4: rgb(218, 112, 112);
    --color5: rgb(221, 160, 160);
    --color6: rgb(250, 230, 230);
    --finalSize: 40vmin;
    left: 30%;
    top: 60%;
    animation-delay: -0.25s;
}

.firework:nth-child(3) {
    --x: -30vmin;
    --y: -50vmin;
}

.firework:nth-child(3),
.firework:nth-child(3)::before,
.firework:nth-child(3)::after {
    --color1: cyan;
    --color2: lightcyan;
    --color3: lightblue;
    --color4: PaleTurquoise;
    --color5: SkyBlue;
    --color6: lavender;
    --finalSize: 35vmin;
    left: 70%;
    top: 60%;
    animation-delay: -0.4s;
}

.register_inperson {
    border: 1px solid #ff00004a;
    width: fit-content;
    padding: 1em 3em;
    border-radius: 15px;
    background: #1b1b1b;
    color: #cbcbcb;
    margin: auto;
}