/* Mixins */
/* Bootstrap Overrides */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  color: #2C423F;
}
a:hover {
  color: #000000;
}

.btn-primary {
  background-color: #D5EB6E;
  border-color: #D5EB6E;
  color: #2C423F;
}
.btn-primary:hover {
  background-color: #2C423F;
  color: #D5EB6E;
  border-color: #D5EB6E;
}

.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle,
.btn-check:focus + .btn-primary,
.btn-primary:focus {
  background-color: #2C423F;
  color: #D5EB6E;
  border-color: #D5EB6E;
}

.btn-secondary {
  background-color: #2C423F;
  border-color: #2C423F;
  color: #F3F3EC;
}
.btn-secondary:hover {
  background-color: #D5EB6E;
  color: #2C423F;
  border-color: #D5EB6E;
}

.btn-check:active + .btn-secondary,
.btn-check:checked + .btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show > .btn-secondary.dropdown-toggle {
  background-color: #D5EB6E;
  color: #2C423F;
  border-color: #D5EB6E;
}

.btn-outline-secondary {
  color: #D5EB6E;
  border-color: #D5EB6E;
}
.btn-outline-secondary:hover {
  background-color: #D5EB6E;
  color: #2C423F;
  border-color: #D5EB6E;
}

.accordion-button:not(.collapsed) {
  background-color: #E7E7D8;
  color: #2C423F;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232C423F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.modal-header {
  border-bottom: none;
}

/* Bootstrap Extensions */
.btn-brown {
  background-color: #8F7E4F;
  border-color: #8F7E4F;
  color: #FFFFFF;
}
.btn-brown:hover {
  background-color: #2C423F;
  color: #D5EB6E;
  border-color: #D5EB6E;
}

.bg-blue {
  background-color: #2C423F;
}

.bg-beige {
  background-color: #F3F3EC;
}

.bg-beige-darker {
  background-color: #E7E7D8;
}

.bg-very-light-green {
  background-color: #E7E7D8;
}

.bg-bright-green {
  background-color: #D5EB6E;
}

a.links-light,
.links-light a:not(.btn) {
  color: #F3F3EC;
}
a.links-light:hover,
.links-light a:not(.btn):hover {
  color: #FFFFFF;
}

a.links-inherit,
.links-inherit a {
  color: inherit;
}

.border-bottom-brown {
  border-bottom: 1px solid #8F7E4F;
}

.text-blue {
  color: #2C423F;
}

@media screen and (min-width: 576px) {
  .pe-sm-15 {
    padding-right: 9rem;
  }
}

/* WordPress Selectors */
/* Custom Styles */
body {
  text-rendering: optimizeLegibility;
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #2C423F;
}

.desktop-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  white-space: nowrap;
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 20;
}
.desktop-menu a {
  text-decoration: none;
}
.desktop-menu > li {
  position: relative;
  display: flex;
  align-items: center;
}
.desktop-menu > li.menu-item-has-children::after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  content: "\f107";
  padding-left: 0.25rem;
  color: #FFF;
}
.desktop-menu > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10rem);
  padding: 0;
  width: 200px;
  text-align: center;
  list-style: none;
  transition-property: all;
  transition-duration: 0.2s;
  opacity: 0;
  pointer-events: none;
  border-top: 1rem solid transparent;
}
.desktop-menu > li > .sub-menu > li a {
  background-color: var(--bs-dark);
  color: var(--bs-light);
  display: block;
  padding: 0.5rem;
}
.desktop-menu > li > .sub-menu > li a:hover {
  background-color: black;
}
.desktop-menu > li > .sub-menu > li:first-child a {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.desktop-menu > li > .sub-menu > li:last-child a {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.desktop-menu > li > .sub-menu .sub-menu {
  display: none;
}
.desktop-menu > li:hover .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, 0rem);
}

#mobile-menu {
  list-style: none;
  padding: 0.3rem 0;
  margin: 0;
}
#mobile-menu a {
  color: #F3F3EC;
  background-color: #2C423F;
  text-decoration: none;
  padding: 0.3rem 1rem;
  display: block;
}
#mobile-menu a:hover {
  background-color: #000000;
  color: #FFFFFF;
}
#mobile-menu .sub-menu {
  list-style: none;
  padding-left: 0;
}
#mobile-menu .sub-menu a {
  padding-left: 2rem;
}

#footer-menu {
  list-style: none;
  padding: 0;
  margin-top: 0;
}
#footer-menu a {
  color: #F3F3EC;
  text-decoration: none;
}
#footer-menu .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.awaken {
  opacity: 0;
  transform: translateY(5rem);
  transition-property: all;
  transition-duration: 1s;
}
.awaken.in-viewport {
  opacity: 1;
  transform: translateY(0);
}

.borders {
  text-align: center;
  display: flex;
}
.borders .cell {
  border-top: 1px solid #8F7E4F;
  border-right: 1px solid #8F7E4F;
  border-bottom: 1px solid #8F7E4F;
  padding: 0.75rem;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.borders .cell:last-child {
  border-right: none;
}
.borders + .borders .cell {
  border-top: none;
}

#gallery .gallery-img:hover {
  cursor: pointer;
}

#galleryModal .control {
  width: 10%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  text-shadow: 0 0 5px #000000;
  text-decoration: none;
  transition-property: background-color;
  transition-duration: 0.2s;
}
#galleryModal .control.next {
  left: auto;
  right: 0;
}
#galleryModal .control:hover {
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.container .carousel-control-next,
.container .carousel-control-prev {
  width: 100px;
}
.container .carousel-control-next {
  right: -100px;
}
.container .carousel-control-prev {
  left: -100px;
}

.carousel-mini .carousel-control-next {
  right: 0;
  width: 15%;
}
.carousel-mini .carousel-control-prev {
  left: 0;
  width: 15%;
}

.copy-url {
  padding-top: 0.1rem;
  text-decoration: none;
}
.copy-url span {
  width: 0;
  display: inline-block;
  white-space: nowrap;
  transition-property: width;
  transition-duration: 0.2s;
  overflow: hidden;
  vertical-align: bottom;
}
.copy-url.copied span {
  width: 84px;
}

.wysiwyg-content .wp-caption {
  max-width: 100%;
}
.wysiwyg-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.wysiwyg-content iframe {
  max-width: 100%;
}
.wysiwyg-content .alignleft,
.wysiwyg-content .alignright {
  max-width: 100%;
  margin-bottom: 1.5rem;
  display: block;
}
@media screen and (min-width: 576px) {
  .wysiwyg-content .alignleft,
  .wysiwyg-content .alignright {
    display: inline;
    max-width: calc(50% - 1.5rem);
  }
}
@media screen and (min-width: 576px) {
  .wysiwyg-content .alignleft {
    float: left;
    margin: 0 1.5rem 1.5rem 0;
  }
}
@media screen and (min-width: 576px) {
  .wysiwyg-content .alignright {
    float: right;
    margin: 0 0 1.5rem 1.5rem;
  }
}
.wysiwyg-content .aligncenter {
  margin: auto;
  display: block;
}
.wysiwyg-content .alignnone {
  display: block;
  margin-bottom: 1.5rem;
}
.wysiwyg-content ul li, .wysiwyg-content ol li {
  margin-bottom: 1rem;
}

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