/* RFS */
@media (max-width: 1200px) {
  legend {
    font-size: calc(1.275rem + 0.3vw);
  }
  h1,
  .h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
  h2,
  .h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
  h3,
  .h3 {
    font-size: calc(1.3rem + 0.6vw);
  }
  h4,
  .h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
  .display-1 {
    font-size: calc(1.725rem + 5.7vw);
  }
  .display-2 {
    font-size: calc(1.675rem + 5.1vw);
  }
  .display-3 {
    font-size: calc(1.575rem + 3.9vw);
  }
  .display-4 {
    font-size: calc(1.475rem + 2.7vw);
  }
  .close {
    font-size: calc(1.275rem + 0.3vw);
  }
}
html {
  scroll-padding-top: 6.5rem;
  scroll-behavior: smooth;
}
.bg-lightsand {
  background: rgb(235,234,219);
}
.bg-lightgreen {
  /* background: rgb(197,197,140); */
  background: rgb(179,185,122);
}
.bg-darkgreen {
  background: rgb(120,120,72);
}
.bg-lightblue {
  background: rgb(153,184,192) !important;
}
.bg-lightred {
  background: rgb(112,67,70);
}
.bg-darkred {
  background: rgb(119,14,21);
}
.fg-lightred {
  background: rgb(112,67,70);
}
.fg-darkred {
  color: rgb(119,14,21);
}
.fg-lightgrey {
  color: rgb(217,212,213);
}
.fg-lightsand{
  color: rgb(235,234,219);
}
.navbar {
  border-top: 1px solid rgb(119,14,21);
  border-bottom: 1px solid rgb(119,14,21);
}
body {
  /* font-size: 1.1rem; */
  font-family: "Century Gothic", sans-serif !important;
}
.map {
  height: 180px;
  width: 100%;
}
.navbar-nav .nav-item .nav-link.active {
  border-bottom: rgb(119,14,21) 2px solid;
}
.navbar-nav .nav-item .nav-link:hover {
  border-bottom: rgb(120,120,72) 2px solid;
}
.navbar-nav .nav-item .nav-link {
  border-bottom:rgb(235,234,219) 2px solid;
}
#scrollToTop {
  transition: opacity .5s ease;
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 100;
}

#phone {
  position: fixed;
  bottom: 30px;
  left: 10px;
  z-index: 100;
}
h1 {
  font-family: "Secession", sans-serif !important;
  text-transform: uppercase !important;
}
.shimmer {
  mask: linear-gradient(-60deg, #000 30%, #0005, #000 70%) right/350% 100%;
  animation: shimmer 2.5s;
}
#navBrand{
  height: 80px;
  width: auto; 
  transition: all .5s ease;
}
.navBrandSmall {
  height: 35px !important;
}
@keyframes shimmer {
  100% {
    mask-position: left
  }
}

ol.brackets {
    counter-reset: list;
    margin: 0;
}

ol.brackets > li {
    list-style: none;
    position: relative;
}

ol.brackets > li:before {
    counter-increment: list;
    content: "(" counter(list, decimal) ") ";
    position: absolute;
    left: -1.7em;
}
