@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.woff2') format("woff2"), url('../fonts/fa-solid-900.woff') format("woff"), url('../fonts/fa-solid-900.ttf') format("truetype"), url('../fonts/fa-solid-900.svg') format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.woff2') format("woff2"), url('../fonts/fa-regular-400.eot') format("embedded-opentype"), url('../fonts/fa-regular-400.woff') format("woff"), url('../fonts/fa-regular-400.ttf') format("truetype"), url('../fonts/fa-regular-400.svg') format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: "Fa brands 400";
  src: url('../fonts/fa-brands-400.woff2') format("woff2"), url('../fonts/fa-brands-400.eot') format("embedded-opentype"), url('../fonts/fa-brands-400.woff') format("woff"), url('../fonts/fa-brands-400.ttf') format("truetype"), url('../fonts/fa-brands-400.svg') format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Merlin;
  src: url('../fonts/merlin.woff2') format("woff2"), url('../fonts/merlin.eot') format("embedded-opentype"), url('../fonts/merlin.woff') format("woff"), url('../fonts/merlin.ttf') format("truetype"), url('../fonts/merlin.svg') format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Maximo;
  src: url('../fonts/MAXIMO-Normal.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --bh-purple: #632c3e;
  --bh-form-field-border: #c2b9b9;
  --bh-form-field-bg: #f7f1f1;
  --white: white;
  --bh-bg: #ece8e8;
  --bh-lighter-text-color: #5a5858;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.navigation-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  place-content: stretch flex-start;
  place-items: center start;
  display: grid;
  position: static;
  inset: 0% 0% auto;
}

.navigation-menu-box {
  float: left;
  clear: none;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-right: 0;
  font-family: Work Sans, sans-serif;
  display: flex;
}

.faicon {
  color: #0baa32;
  margin-bottom: 7px;
  margin-right: 8px;
  font-weight: 400;
  display: block;
}

.faicon.iconformfield {
  color: #97a4b4;
  margin-top: 5px;
  margin-bottom: 0;
  margin-right: 0;
  font-family: "Fa solid 900", sans-serif;
}

.navigation-logo-box {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 40px;
}

.main-navigation {
  z-index: 4000;
  box-shadow: none;
  padding-right: 0;
  position: absolute;
  inset: 0% 0% auto;
}

.navigation-link {
  color: var(--black);
  text-transform: uppercase;
  flex: none;
  margin-left: 6px;
  margin-right: 6px;
  padding: 6px 0;
  font-family: Montserrat, sans-serif;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.navigation-link:hover {
  background-color: #0000;
  border-bottom: 3px #ff7fb8;
}

.navigation-link:focus {
  background-color: #0000;
  border: 1px #000;
  border-bottom: 3px #e87229;
}

.navigation-link.w--current {
  border-bottom: 1px dotted var(--bh-purple);
  color: var(--black);
  text-transform: uppercase;
  margin-left: 6px;
  margin-right: 6px;
  padding-left: 0;
  padding-right: 0;
  font-size: .75rem;
  font-weight: 600;
}

.navigation-link.w--current:hover {
  border-bottom-color: #fd77b3;
}

.navigation-link.w--open {
  height: auto;
}

.navigation-link.navigation-button {
  border: 1px solid var(--black);
  margin-left: 4px;
  margin-right: 0;
  padding: 10px 8px;
}

.navigation-link.navigation-button:hover {
  border-color: var(--black);
  color: #5a5959;
}

.sticky-navigation-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: stretch;
  place-items: center start;
  display: grid;
}

.sticky-navigation-menu {
  background-color: #0000;
  justify-content: flex-end;
  display: block;
}

.sticky-navigation {
  z-index: 10000;
  border: 1px #000;
  border-bottom-color: #508ad8;
  width: 100vw;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: fixed;
  inset: 0 0 auto;
  transform: translate(0, -176px);
  box-shadow: -1px 2px 16px 2px #000000ba;
}

.error-message {
  width: auto;
  padding-top: 14px;
  padding-bottom: 6px;
}

.success-message {
  color: #97a4b4;
  background-color: #f9f9f9;
  width: auto;
  margin-top: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.text-field {
  color: #97a4b4;
  border: 1px solid #d3dff0;
  border-radius: 3px;
  width: 99%;
  height: 50px;
  margin-bottom: 15px;
  font-family: Open Sans, sans-serif;
  font-size: 13px;
  line-height: 20px;
  transition: border-color .35s;
}

.text-field:hover, .text-field:focus {
  border-color: #c8d4e2;
}

.text-field.withicon {
  clear: none;
  background-color: #fff;
  border-right-width: 1px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-bottom: 15px;
  margin-right: 10px;
  padding-left: 15px;
  display: flex;
}

.text-field.withicon:hover {
  border-right-width: 2px;
}

.text-field.withicon:focus {
  border-right-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.text-field.withicon._100 {
  border-width: 1px;
  border-color: var(--bh-form-field-border);
  background-color: var(--bh-form-field-bg);
  width: 100%;
  margin-right: 0;
}

.text-field.withicon._50 {
  clear: none;
  width: 48%;
  margin-right: 17px;
}

.text-field.withicon._50.rightsidefield {
  border-width: 1px;
  border-color: var(--bh-form-field-border);
  background-color: var(--bh-form-field-bg);
  width: 48%;
  margin-right: 0;
}

.text-field.withicon._50.leftsidefield {
  border-width: 1px;
  border-color: var(--bh-form-field-border);
  background-color: var(--bh-form-field-bg);
  width: 48%;
  margin-right: 4%;
}

.footer {
  z-index: 10000;
  background-color: var(--white);
  border-top: 1px #597a96;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: relative;
  overflow: visible;
}

.mobile-navigation-link-item {
  text-align: center;
}

.mobile-navigation-link-item.link-item-3 {
  color: var(--white);
}

.m-nav-toggle-description {
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1;
}

.mobile-navigation {
  z-index: 20000;
  display: block;
  position: absolute;
}

.m-nav-close-icon-wrapper {
  color: #0000;
}

.contact-us-form-fields {
  flex-flow: wrap;
  align-items: stretch;
  display: flex;
}

.contact-form-wrapper {
  margin-top: 0;
  position: relative;
}

.bold-text-10 {
  opacity: .49;
  color: #97a4b4;
  font-size: 150%;
}

.messagre-field {
  border: 1px solid var(--bh-form-field-border);
  background-color: var(--bh-form-field-bg);
  color: #97a4b4;
  border-radius: 3px;
  width: 100%;
  height: auto;
  min-height: 100px;
  margin-bottom: 15px;
  font-family: Open Sans, sans-serif;
  font-size: .9rem;
  line-height: 1.5;
  transition: border-color .35s;
}

.messagre-field:hover, .messagre-field:focus {
  border-color: #c8d4e2;
}

.contact-form-title-instructions {
  border-bottom: 1px #d3dff0;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 5px;
  padding-left: 0;
  padding-right: 10px;
  position: relative;
}

.actual-text-field-2 {
  color: #97a4b4;
  background-color: #0000;
  border: 1px #d3dff0;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: .9rem;
  line-height: 1;
  transition: border-color .35s;
}

.actual-text-field-2:hover, .actual-text-field-2:focus {
  border-color: #c8d4e2;
}

.send-and-recaptcha {
  flex-direction: column;
  display: flex;
}

.contact-form {
  width: 100%;
  display: flex;
}

.submit-button-2 {
  background-color: var(--bh-purple);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  width: auto;
  margin-top: 6px;
  margin-right: 47px;
  padding-top: 17px;
  padding-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1;
  transition: background-color .2s;
  display: block;
}

.submit-button-2:hover {
  background-color: #597a96cc;
}

.contact-form-box {
  width: 100%;
  height: auto;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.mobile-navigation-list-2 {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: block;
}

.resenas {
  z-index: 999;
  background-color: var(--bh-bg);
  border-bottom: 0 #ddd;
  flex-direction: row;
  justify-content: space-around;
  padding: 40px;
  display: block;
  position: static;
  overflow: visible;
}

.image-16 {
  width: 15px;
}

.body {
  align-items: center;
}

.logonotext {
  width: 50px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.logo-nav {
  flex: 1;
  width: 120%;
  max-width: none;
}

.stickey-navigation-menu-box {
  float: left;
  clear: none;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-right: 0;
  display: flex;
}

.sticky-navigation-link {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: none;
  border-radius: 0;
  flex: none;
  margin-left: 8px;
  margin-right: 8px;
  padding: 6px 0;
  font-family: Work Sans, sans-serif;
  font-size: 70%;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
}

.sticky-navigation-link:hover {
  color: var(--black);
  background-color: #0000;
  border-bottom: 3px #ff7fb8;
}

.sticky-navigation-link:focus {
  background-color: #0000;
  border: 1px #000;
  border-bottom: 3px #e87229;
}

.sticky-navigation-link.w--current {
  border-style: none none dotted;
  border-width: 1px;
  border-color: #fc0409 #fc0409 var(--bh-purple);
  color: var(--black);
  text-transform: none;
  background-color: #0000;
  border-radius: 0;
  margin-left: 8px;
  margin-right: 8px;
  padding: 6px 0;
  font-size: 65%;
  font-weight: 600;
}

.sticky-navigation-link.w--current:hover {
  border-bottom-color: #fd77b3;
}

.sticky-navigation-link.navigation-button {
  border: 1px solid var(--black);
  margin-right: 0;
  padding: 10px 8px;
}

.sticky-navigation-link.navigation-button:hover {
  color: var(--black);
}

.link-block-9.w--current {
  flex-direction: column;
  align-items: center;
  display: block;
}

.navigation-menu-grid {
  background-color: #0000;
  margin-right: 40px;
}

.email-signup-form {
  z-index: 999;
  color: #b5a17d;
  background-image: url('../images/ZAXIC_logo_BG_LTBLUE_BLEND.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 60%;
  background-attachment: fixed;
  border-radius: 0;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 25px 40px;
  display: flex;
  position: relative;
  inset: 0% 0% auto auto;
}

.email-signup-form.g-email-subscription-form {
  z-index: 10000;
  background-color: var(--bh-purple);
  background-image: none;
  display: none;
  position: static;
}

.success-message-2 {
  background-color: #0000;
  padding: 0;
}

.form {
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.form-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  font-family: Work Sans, sans-serif;
  font-weight: 700;
  display: flex;
}

.text-block-40 {
  width: auto;
  color: var(--white);
  white-space: nowrap;
  margin-bottom: 0;
  margin-right: 10px;
  font-family: Work Sans, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  overflow: visible;
}

.email {
  border: 1px solid var(--white);
  width: 250px;
  color: var(--white);
  background-color: #0000;
  border-radius: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.submit {
  width: 40px;
  color: var(--white);
  background-color: #0000;
  margin-left: 1px;
  padding-left: 0;
  padding-right: 0;
  font-family: "Fa solid 900", sans-serif;
  font-size: 200%;
  font-weight: 400;
}

.error-message-2 {
  background-color: #0000;
  width: 100%;
  height: auto;
  padding: 0;
}

.bluegradientscreensticky {
  background-color: var(--white);
  width: 100vw;
  padding-left: 40px;
  padding-right: 40px;
  position: static;
}

.footer-logo {
  width: 120px;
  max-width: 120%;
}

.footer-column1 {
  width: 8rem;
  margin-right: 40px;
}

.footer-column-4 {
  white-space: nowrap;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 10rem;
  display: flex;
}

.footer-columns {
  background-color: #0000;
  border-top: 1px #898a8e;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 40px;
  display: flex;
}

.footer-copyright {
  border-top: 1px dotted #898a8e;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  width: 100%;
  max-height: 200px;
  padding: 10px 80px 10px 40px;
  display: flex;
}

.copyright {
  color: var(--black);
  white-space: nowrap;
  margin-right: 5px;
  font-family: Montserrat, sans-serif;
  font-size: .9rem;
  line-height: 1;
}

.copyright-year {
  color: var(--black);
  margin-right: 60px;
  font-family: Work Sans, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.rese-as {
  width: 100%;
  margin-top: 16px;
  font-size: 1rem;
  display: block;
}

.thankyoumsg {
  margin-top: 20px;
  font-size: 240%;
}

.signuptext {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 10px;
  display: block;
}

.footer-column-2 {
  flex-direction: column;
  flex: 0 auto;
  align-items: flex-start;
  width: 12rem;
  margin-right: 40px;
  display: flex;
}

.social {
  text-align: right;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.text-block-48 {
  color: var(--black);
  object-fit: fill;
  flex-wrap: nowrap;
  flex: 0 auto;
  margin-right: 7px;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1;
  display: block;
}

.social-link-block {
  margin-right: 7px;
  text-decoration: none;
}

.ecwid-initialization {
  display: none;
}

.m-nav-toggle-inner-3 {
  box-shadow: none;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  background-color: #222439;
  border: 1px dotted #f2f2f2;
  border-bottom-style: none;
  border-radius: 20px 20px 0 0;
  justify-content: center;
  align-items: center;
  padding: 17px 18px 17px 25px;
  transition: transform .25s cubic-bezier(.215, .61, .355, 1);
  display: none;
  position: relative;
}

.m-nav-toggle-inner-3:active {
  transform: scale(.88);
}

.m-nav-toggle-inner-3.close {
  background-color: #f2f2f2;
  padding: 18px;
  display: none;
}

.mobile-navigation-menu-content-3 {
  z-index: 5000;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0 auto;
  overflow: auto;
}

.m-nav-link-2 {
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 3;
  text-decoration: none;
}

.m-nav-link-2.navigation-button {
  border: 1px dotted var(--white);
  display: inline-block;
}

.mobile-navigation-toggle-open-3 {
  z-index: 1;
  text-decoration: none;
  display: block;
  position: absolute;
  bottom: 0;
}

.bold-text-16 {
  font-family: "Fa solid 900", sans-serif;
}

.mobile-navigation-toggle-close-3 {
  z-index: 1;
  text-decoration: none;
  display: block;
  position: absolute;
  bottom: 0;
}

.mobile-navigation-overlay-3 {
  z-index: 5000;
  background-color: #405b7c;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.mobile-navigation-toggle-2 {
  z-index: 99;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
}

.social-icon {
  color: var(--bh-purple);
  font-family: "Fa brands 400", sans-serif;
  font-size: 200%;
  font-style: normal;
  display: block;
}

.social-icon.brands {
  color: var(--black);
  text-align: left;
  font-family: "Fa brands 400", sans-serif;
  font-size: 100%;
  line-height: 30px;
  text-decoration: none;
}

.social-icon.solid {
  color: var(--bh-purple);
  font-family: "Fa solid 900", sans-serif;
  font-size: 100%;
}

.icon-spacer {
  margin-right: 10px;
  font-size: 30px;
}

.icon-set {
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.icon-set-sublabel {
  align-self: auto;
  width: 80px;
  margin-right: 20px;
}

.icon-categories {
  flex-wrap: nowrap;
  align-items: flex-start;
  margin: 10px;
  display: flex;
}

.icon-category {
  flex-flow: column;
  align-self: auto;
  align-items: flex-start;
  margin-bottom: 40px;
  margin-right: 20px;
  display: flex;
}

.icon-category-label {
  font-size: 20px;
  font-weight: 700;
}

.icon-set-column {
  flex-direction: column;
  display: flex;
}

.icon-library-page-header {
  margin-top: 10px;
  margin-bottom: 40px;
  margin-left: 10px;
  font-size: 40px;
  font-weight: 800;
}

.page-wrapper {
  font-family: Work Sans, sans-serif;
}

.page-wrapper.montserrat {
  font-family: Montserrat, sans-serif;
}

.main-wrapper {
  position: static;
}

.oxxo-svg-embed {
  width: 50px;
  color: var(--black);
}

.html-embed-17 {
  width: 100px;
}

.body-2 {
  background-color: var(--bh-purple);
}

.color-library-page-header {
  margin-top: 10px;
  margin-bottom: 40px;
  margin-left: 10px;
  font-size: 40px;
  font-weight: 800;
}

.color-categories {
  flex-wrap: nowrap;
  align-items: flex-start;
  margin: 10px;
  display: flex;
}

.color-set-column {
  flex-direction: column;
  margin-right: 40px;
  display: flex;
}

.color-category {
  flex-flow: column;
  align-self: auto;
  align-items: flex-start;
  margin-bottom: 40px;
  margin-right: 20px;
  display: flex;
}

.color-category-label {
  font-size: 20px;
  font-weight: 700;
}

.color-setting {
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.color-sublabel {
  align-self: auto;
  width: 80px;
  margin-right: 20px;
}

.color-spacer {
  margin-right: 10px;
  font-size: 30px;
}

.g-email-subscription-form {
  background-color: #49495ee3;
}

.slide-color-overlay {
  background-image: linear-gradient(135deg, var(--white) 26%, transparent);
  position: absolute;
  inset: 0%;
}

.footer-column-3 {
  white-space: nowrap;
  flex-direction: column;
  flex: 0 auto;
  width: 20rem;
  margin-right: 40px;
  display: block;
}

.header-image-content-page {
  z-index: 3000;
  background-image: url('../images/Home1_lightened.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 40vh;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.page-content {
  z-index: 4000;
  background-color: var(--bh-bg);
  align-items: flex-start;
  width: 100%;
  padding: 40px;
  display: flex;
  position: relative;
}

.content-column-left {
  flex: 0 auto;
  width: 20%;
  margin-right: 40px;
}

.content-column-right {
  flex: 0 auto;
  width: 80%;
  margin-left: 40px;
}

.about-me-title {
  color: var(--bh-purple);
  border-bottom: 1px #5e4841;
  margin-top: 10px;
  margin-bottom: 40px;
  padding-bottom: 5px;
  font-family: Montserrat, sans-serif;
  font-size: 120%;
  font-weight: 700;
}

.heading {
  color: var(--bh-purple);
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}

.heading.white {
  color: var(--white);
}

.content-page-header-text {
  color: var(--bh-purple);
  text-transform: uppercase;
  margin-top: 0;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.content-page-header {
  color: var(--white);
  margin-left: 40px;
  position: absolute;
  inset: auto 0% -2%;
}

.footer-headings {
  color: var(--black);
  margin-bottom: 5px;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.contact-info-dark {
  flex-direction: column;
  display: flex;
}

.phone-number-dark {
  color: var(--black);
  overflow-wrap: anywhere;
  border-bottom: 1px #405b7c;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: .9rem;
  line-height: 1.2;
}

.google-map-div {
  z-index: 4000;
  background-color: var(--white);
  border: 1px solid #405b7c;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.map {
  border-top: 1px #405b7c;
}

.slide-text-large {
  z-index: 3000;
  color: var(--bh-purple);
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: Montserrat, sans-serif;
  font-size: 4rem;
  line-height: 1.5;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hours {
  color: var(--black);
  text-align: left;
  white-space: nowrap;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.5;
}

.services-matrix {
  background-color: var(--bh-bg);
  flex-wrap: nowrap;
  align-content: flex-start;
  align-items: flex-start;
  padding: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.xxl-heading {
  color: var(--bh-purple);
  margin-top: 0;
  margin-bottom: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  transition: opacity .275s;
}

.slider-color-overlay {
  z-index: 6000;
  background-image: linear-gradient(135deg, #fff, #0000);
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.schedule-link-button {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.lottie-animation-of-calendar {
  width: 50%;
}

.text-block-50 {
  width: 50%;
  color: var(--bh-purple);
  font-family: Montserrat, sans-serif;
  font-size: 250%;
}

.text-block-50:hover {
  color: var(--white);
}

.book-now-button {
  border: 1px solid var(--bh-purple);
  flex-wrap: nowrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: auto;
  padding: 10px;
  display: flex;
}

.book-now-button:hover {
  background-color: var(--bh-purple);
  color: var(--white);
}

.book-now-link-block {
  color: #405b7c;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  text-decoration: none;
  display: flex;
}

._2-columns-auto {
  overflow-wrap: anywhere;
  border-bottom: 1px dotted #405b7c;
  flex-flow: row;
  align-items: center;
  width: 100%;
  min-width: 100%;
  padding-top: 3px;
  display: flex;
}

.icon-column {
  margin-right: 8px;
}

.icon-text {
  flex-direction: column;
  justify-content: center;
  display: block;
}

.bold-text-17 {
  font-weight: 400;
}

.book-now-for-mobile-only {
  display: none;
}

.accordion-item-title---brix {
  color: var(--black);
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
}

.accordion-item---brix {
  cursor: pointer;
  background-color: #fff;
  border-radius: 14px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 40px;
  display: flex;
}

.accordion-item---brix.accordion-1---brix {
  background-color: #ffffffd1;
  border: 2px solid #0000;
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 20px;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 5px 16px #080f340f;
}

.accordion-item---brix.accordion-1---brix:hover {
  box-shadow: 0 14px 21px #4a3aff0f;
}

.accordion-content---brix {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.arrow-line---brix {
  background-color: #4a3aff;
  border-radius: 500px;
  width: 11px;
  min-height: 2px;
  position: absolute;
}

.arrow-line---brix._1---brix {
  color: var(--bh-purple);
  left: 7px;
  transform: rotate(45deg);
}

.arrow-line---brix._2---brix {
  color: var(--bh-purple);
  background-color: #405b7c;
  right: 7px;
  transform: rotate(-45deg);
}

.accordion-paragraph---brix {
  width: 100%;
  max-width: none;
  margin-top: 18px;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: .9rem;
  line-height: 150%;
}

.accordion-item-wrapper---brix {
  max-width: 886px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item-wrapper---brix.preview-page {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  max-width: none;
  margin-left: 0;
  margin-right: 40px;
  display: flex;
}

.accordion-trigger---brix {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.accordion-arrow-wrap---brix {
  width: 50px;
  min-height: 50px;
  color: var(--bh-purple);
  background-color: #fff;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 5px 16px #080f340f;
}

.accordion-arrow-wrapper---brix {
  z-index: 200;
  width: 18px;
  height: 18px;
  color: var(--bh-purple);
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
  display: flex;
  position: relative;
  transform: rotate(90deg);
}

.all-accordians {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-right: 40px;
  display: flex;
}

.services-column-1 {
  flex: 0 auto;
  width: 50%;
  height: auto;
  margin-right: 40px;
}

.services-column-2 {
  flex: 0 auto;
  width: 80%;
  height: auto;
  margin-right: 40px;
}

.services-column-2.end-box {
  width: 50%;
  margin-left: 40px;
  margin-right: 0;
}

.image-19 {
  width: 100%;
  margin-top: 40px;
}

.faq-section {
  background-color: #f7f7fb;
  background-image: url('../images/Home4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 0;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  padding: 40px;
  display: block;
}

.conditions-list {
  background-color: var(--bh-bg);
  border-radius: 0;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  padding: 0 40px 40px;
  display: block;
}

.conditions-column {
  flex-flow: wrap;
  place-content: stretch flex-start;
  align-items: flex-start;
  width: 100%;
  margin-right: 40px;
  display: flex;
}

.conditions-item {
  max-width: 886px;
  margin-left: auto;
  margin-right: auto;
}

.conditions-item.preview-page {
  flex-flow: column wrap;
  align-content: space-around;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  margin-left: 0;
  display: flex;
}

.list-row {
  align-items: center;
  width: 100%;
  margin-top: 3px;
  margin-bottom: 3px;
  display: flex;
}

.list-icon-div {
  width: 16px;
}

.list-text-div {
  width: 100%;
}

.text-block-51 {
  font-family: "Fa solid 900", sans-serif;
}

.text-block-52 {
  color: var(--bh-lighter-text-color);
  font-size: .9rem;
  line-height: 1.5;
}

.bold-text-18 {
  color: var(--bh-lighter-text-color);
  font-size: 120%;
  display: block;
}

.collection-item {
  width: 50%;
  padding-left: 0;
  padding-right: 0;
}

.collection-list-wrapper, .collection-list {
  width: 100%;
}

.text-block-53 {
  margin-bottom: 20px;
  font-size: .9rem;
  line-height: 1.2;
}

.richtext-content {
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.richtext-content.larger-text {
  z-index: 5000;
  width: auto;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.8rem;
  position: static;
}

.blog-content {
  z-index: 4000;
  background-color: var(--bh-bg);
  align-items: flex-start;
  width: 100%;
  padding: 40px;
  display: flex;
}

.homepage-blurb-content {
  background-color: var(--white);
  align-content: center;
  align-items: center;
  height: auto;
  padding: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slide-desktop {
  z-index: 3000;
  background-color: #405b7ca3;
  background-image: url('../images/Home1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.slide-mobile {
  background-color: #405b7ca3;
  background-image: url('../images/Home1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: none;
  position: absolute;
  inset: 0%;
}

.slide-2 {
  background-image: url('../images/Home1.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-nav, .photo-rotation-collection {
  display: none;
}

.cms-slider-component {
  z-index: 2000;
  height: 100vh;
  position: relative;
}

.cms-slider {
  z-index: 3000;
}

.cms-slider-javascript {
  display: none;
}

.contact-address-link, .contact-phone-link, .contact-email-link {
  color: var(--white);
  align-items: center;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
  display: flex;
}

.collection-item-4 {
  align-items: flex-start;
  display: flex;
}

.day-of-week {
  align-items: center;
  width: 2.5rem;
  height: 1.5rem;
  margin-right: 5px;
  display: flex;
}

.day-of-week-text {
  color: var(--bh-purple);
  font-family: Montserrat, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
}

.collection-list-wrapper-5 {
  flex-direction: row;
}

.collection-list-3 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  display: grid;
}

.collection-item-5 {
  display: inline-block;
}

.collection-item-5:last-child {
  margin-right: 0;
}

.blog-post-title {
  z-index: 2000;
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  position: relative;
}

.blog-post-link {
  cursor: pointer;
  background-image: none;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  height: 40vh;
  padding: 30px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.blog-content-richtext {
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  line-height: 2;
}

.blog-content-div {
  z-index: 4000;
  background-color: var(--bh-bg);
  align-items: flex-start;
  width: 100%;
  padding: 40px;
  display: flex;
  position: relative;
}

.blog-content-page-title {
  width: 100%;
  color: var(--black);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.blog-content-page-header {
  z-index: 5000;
  width: 80%;
  color: var(--white);
  margin-left: 40px;
  position: absolute;
  inset: auto 0% 5%;
}

.header-image-blog-content-page {
  z-index: 3000;
  background-image: url('../images/Home4.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  height: 40vh;
  display: flex;
  position: relative;
  inset: 0%;
  overflow: hidden;
  box-shadow: inset 0 -5px 20px #000;
}

.close-icon-div {
  z-index: 6000;
  flex-direction: column;
  display: flex;
  position: absolute;
  inset: 12% 2% auto auto;
}

.close-icon {
  color: var(--white);
  font-family: "Fa solid 900", sans-serif;
  font-size: 3rem;
  text-decoration: none;
}

.close-icon-div-link {
  text-decoration: none;
}

.ask-us-if-text {
  font-size: 2rem;
}

.hour-text {
  align-items: center;
  width: 2.5rem;
  display: flex;
}

.collection-list-4 {
  flex-direction: column;
}

.thumbnail-overlay {
  border: 1px dotted var(--bh-purple);
  background-color: #fff;
  flex: 1;
  position: absolute;
  inset: 0%;
}

.blog-post-date {
  z-index: 2000;
  border-top: 1px dotted var(--bh-purple);
  border-bottom: 1px none var(--bh-purple);
  color: var(--black);
  margin-top: 5px;
  margin-bottom: 0;
  padding-top: 5px;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}

.div-block-2 {
  z-index: 4000;
  position: absolute;
  inset: 0%;
}

.copyright-year-js {
  color: #fff;
  background-color: #0000;
  margin-right: 60px;
  font-family: Montserrat, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  display: none;
}

._100vh-fix {
  width: 0;
  height: 0%;
  display: none;
}

.header-image-content-page-services {
  z-index: 3000;
  background-image: url('../images/Home2.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 40vh;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.slide-color-overlay-content-servcies {
  background-image: linear-gradient(135deg, var(--white), transparent 80%);
  position: absolute;
  inset: 0%;
}

.header-image-content-page-wwt {
  z-index: 3000;
  background-image: url('../images/Home3.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 40vh;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.header-image-content-page-au {
  z-index: 3000;
  background-image: url('../images/Home5.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 40vh;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.slide-color-overlay-au {
  background-image: linear-gradient(135deg, var(--white), transparent);
  position: absolute;
  inset: 0%;
}

.header-image-content-page-cu {
  z-index: 3000;
  background-image: url('../images/Arty-Acupuncture_MegMessinaPhoto_009.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 40vh;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.slide-color-overlay-cu {
  background-image: linear-gradient(135deg, var(--white), transparent);
  position: absolute;
  inset: 0%;
}

.text-block-54 {
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}

.paragraph {
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.tidio-js {
  display: none;
}

.resenas-2 {
  z-index: 10;
  background-color: var(--bh-form-field-bg);
  border-top: 1px dotted #333;
  border-bottom: 0 #ddd;
  flex-direction: row;
  justify-content: space-around;
  padding: 40px;
  display: block;
  position: relative;
  overflow: hidden;
}

.collection-list-5 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: stretch;
  place-items: stretch stretch;
  width: 100%;
  display: grid;
}

.collection-item-6 {
  justify-items: start;
}

.stars {
  color: #ecca08;
  font-family: "Fa solid 900", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.testimonial-name-etc {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.facebookicon {
  color: #3e90ec;
  margin-left: 0;
  margin-right: 10px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.publicadoendiv {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
  display: flex;
}

.testimonial-quote {
  height: 70%;
}

.googleicon {
  color: #3e90ec;
  margin-left: 10px;
  margin-right: 10px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.testimonial-quote-text {
  font-family: Montserrat, sans-serif;
  font-size: .8rem;
  font-weight: 400;
  line-height: 2;
}

.center-testimonial {
  background-color: var(--bh-bg);
  border-radius: 10px;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

.rating {
  align-items: center;
  margin-top: 0;
  display: flex;
}

.testimonial-author-2 {
  color: #405b7c;
  margin-top: 40px;
  font-family: Montserrat, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1;
}

.yelpicon {
  color: #f50808;
  margin-right: 10px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.copyright-year-2 {
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.text-block-55, .c-year {
  color: var(--black);
}

.navlink {
  color: #fff;
  letter-spacing: -.2px;
  text-transform: uppercase;
  background-color: #0000;
  flex: none;
  width: auto;
  height: auto;
  margin-left: 8px;
  margin-right: 8px;
  padding: 6px 0;
  font-family: Montserrat, sans-serif;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.navlink:hover {
  border-bottom: 3px #ff7fb8;
}

.navlink:focus {
  border: 1px #000;
  border-bottom: 3px #e87229;
}

.navlink.w--current {
  color: #d4c9c7;
  text-transform: uppercase;
  border: 1px #000;
  border-bottom: 1px dotted #d4c9c7;
  font-size: .75rem;
  line-height: 1;
}

.navlink.w--current:hover {
  border-bottom-color: #fd77b3;
}

.text-block-56 {
  color: var(--black);
  font-size: 12px;
}

@media screen and (min-width: 1920px) {
  .navigation-link {
    padding-left: .7em;
    padding-right: .7em;
    font-size: 1.2em;
  }

  .navigation-link.w--current {
    padding-left: .5em;
    padding-right: .5em;
    font-size: 1.2em;
  }

  .resenas {
    padding: 5em;
  }

  .logo-nav {
    width: 30em;
  }

  .email-signup-form.g-email-subscription-form {
    padding: 3em 5em;
  }

  .text-block-40 {
    font-size: 2em;
    font-weight: 600;
  }

  .email {
    width: 20em;
    height: 2em;
    font-size: 2em;
    line-height: 1em;
  }

  .submit {
    width: 1em;
    margin-left: .3em;
    font-size: 3em;
    line-height: 1em;
  }

  .footer-logo {
    width: 10em;
  }

  .footer-headings {
    font-size: 2em;
    line-height: 1em;
  }

  .slide-text-large {
    font-size: 7em;
  }

  .hours {
    font-size: 2em;
  }

  .xxl-heading {
    font-size: 4em;
  }

  .richtext-content.larger-text {
    font-size: 1.8em;
  }

  .homepage-blurb-content {
    padding: 5em;
  }
}

@media screen and (max-width: 991px) {
  .navigation-grid {
    grid-template-columns: 1fr;
    place-content: start;
    justify-items: start;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .navigation-menu-box {
    background-color: #f9f9f9;
  }

  .navigation-logo-box {
    margin-right: 40px;
  }

  .text-field.withicon._50.rightsidefield {
    width: 48%;
  }

  .actual-text-field-2 {
    width: 98%;
  }

  .resenas {
    position: static;
  }

  .logo-nav {
    width: 50%;
  }

  .stickey-navigation-menu-box {
    background-color: #f9f9f9;
  }

  .link-block-9 {
    justify-content: flex-start;
    align-items: center;
    height: 160px;
    display: flex;
  }

  .link-block-9.w--current {
    justify-content: flex-start;
    height: auto;
  }

  .footer-column-4 {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    position: static;
  }

  .footer-columns {
    flex-wrap: wrap;
  }

  .footer-copyright {
    flex-flow: row;
    align-items: flex-start;
    max-height: none;
  }

  .m-nav-toggle-inner-3 {
    z-index: 3000;
    background-color: var(--bh-purple);
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 18px;
    display: block;
  }

  .m-nav-toggle-inner-3.close {
    display: block;
  }

  .mobile-navigation-menu-content-3 {
    align-items: center;
  }

  .mobile-navigation-toggle-open-3, .mobile-navigation-toggle-close-3 {
    display: block;
  }

  .mobile-navigation-overlay-3 {
    z-index: 2500;
    background-color: var(--bh-purple);
    display: none;
  }

  .mobile-navigation-toggle-2 {
    z-index: 3000;
    inset: auto 0% 0%;
  }

  .body-2 {
    background-color: var(--bh-purple);
  }

  .footer-column-3 {
    margin-top: 20px;
  }

  .content-column-left {
    width: 40%;
    margin-right: 10px;
  }

  .heading {
    margin-bottom: 0;
  }

  .content-page-header-text {
    font-size: 250%;
  }

  .google-map-div {
    flex-wrap: nowrap;
    height: auto;
    margin-bottom: 0;
  }

  .slide-text-large {
    font-size: 300%;
  }

  .book-now-button {
    margin-top: 20px;
  }

  .book-now-link-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .accordion-item-title---brix {
    max-width: 88%;
  }

  .accordion-item---brix.accordion-1---brix {
    margin-bottom: 20px;
  }

  .accordion-paragraph---brix {
    max-width: 100%;
  }

  .accordion-item-wrapper---brix.preview-page {
    width: 70%;
  }

  .richtext-content.larger-text {
    width: 100%;
  }

  .collection-list-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .blog-post-link {
    height: 30vh;
  }

  .blog-content-page-title {
    font-size: 250%;
  }

  .resenas-2 {
    margin-bottom: 0;
  }

  .collection-list-5 {
    grid-template-columns: 1fr 1fr;
  }

  .collection-item-6 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .navigation-grid {
    align-items: center;
  }

  .text-field.withicon._100 {
    margin-right: 0;
  }

  .text-field.withicon._50.rightsidefield {
    width: 100%;
  }

  .text-field.withicon._50.leftsidefield {
    width: 100%;
    margin-right: 0;
  }

  .messagre-field {
    width: 100%;
  }

  .contact-form-title-instructions {
    padding-top: 0;
  }

  .contact-form {
    flex-direction: column;
    margin-top: 30px;
  }

  .contact-form-box {
    width: 100%;
    margin-left: 0;
  }

  .logo-nav {
    width: 94%;
  }

  .link-block-9.w--current {
    justify-content: center;
    width: 100%;
    height: auto;
  }

  .email-signup-form {
    flex-wrap: wrap;
  }

  .form {
    margin-top: 10px;
  }

  .footer-column1 {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-column-4 {
    flex-flow: column wrap;
    margin-top: 40px;
  }

  .footer-columns {
    flex-direction: column;
  }

  .footer-copyright {
    padding-right: 40px;
  }

  .footer-column-2 {
    width: 100%;
    margin-top: 20px;
    margin-right: 0;
  }

  .mobile-navigation-toggle-open-3 {
    display: block;
  }

  .mobile-navigation-toggle-close-3 {
    display: none;
  }

  .footer-column-3 {
    width: 61.8804%;
    margin-top: 20px;
  }

  .page-content {
    flex-direction: column;
  }

  .content-column-left {
    width: 100%;
    margin-right: 0;
  }

  .content-column-right {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }

  .about-me-title {
    font-size: 130%;
    line-height: 2;
  }

  .content-page-header-text {
    font-size: 250%;
  }

  .google-map-div {
    flex-flow: column wrap;
    align-content: stretch;
    align-items: flex-start;
  }

  .slide-text-large {
    font-size: 200%;
  }

  .hours {
    padding-bottom: 20px;
  }

  .services-matrix {
    display: block;
  }

  .xxl-heading {
    line-height: 100%;
  }

  .book-now-for-mobile-only {
    display: block;
  }

  .book-now-desktop-only {
    display: none;
  }

  .accordion-item-title---brix {
    max-width: 80%;
  }

  .accordion-item---brix.accordion-1---brix {
    margin-bottom: 16px;
    margin-right: 0;
    padding: 32px;
  }

  .accordion-paragraph---brix {
    max-width: 100%;
  }

  .accordion-item-wrapper---brix.preview-page {
    width: 100%;
  }

  .accordion-arrow-wrap---brix {
    width: 40px;
    min-height: 40px;
  }

  .all-accordians {
    flex-direction: column;
    margin-right: 0;
  }

  .services-column-1, .services-column-2 {
    width: 100%;
    margin-right: 0;
  }

  .services-column-2.end-box {
    margin-left: 0;
  }

  .image-19 {
    display: none;
  }

  .faq-section {
    padding: 30px;
  }

  .conditions-list {
    padding: 0 30px 30px;
  }

  .conditions-column {
    flex-direction: column;
    margin-right: 0;
  }

  .conditions-item.preview-page {
    width: 100%;
  }

  .text-block-52 {
    font-family: Montserrat, sans-serif;
    font-size: 90%;
  }

  .collection-item, .richtext-content.larger-text {
    width: 100%;
  }

  .blog-content {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
  }

  .homepage-blurb-content {
    display: block;
  }

  .slide-desktop, .slide-mobile {
    background-image: url('../images/Home1.jpg');
  }

  .collection-item-4 {
    align-items: flex-start;
  }

  .collection-list-3 {
    grid-template-columns: 1fr 1fr;
  }

  .blog-content-div {
    flex-direction: column;
  }

  .blog-content-page-title {
    font-size: 250%;
  }

  .hour-text {
    align-items: flex-start;
    height: 1.5px;
  }

  .image-20 {
    width: 100%;
  }

  .collection-list-5 {
    grid-template-columns: 1fr;
  }

  .testimonial-quote {
    height: auto;
    margin-bottom: 20px;
  }

  .center-testimonial {
    height: auto;
  }
}

@media screen and (max-width: 479px) {
  .navigation-grid {
    justify-items: start;
  }

  .navigation-logo-box {
    justify-content: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 20px 30px;
  }

  .main-navigation {
    height: 100px;
  }

  .sticky-navigation-grid {
    justify-content: center;
    justify-items: center;
    display: flex;
  }

  .sticky-navigation-menu {
    display: none;
  }

  .sticky-navigation {
    text-align: center;
    transform: translate(0, -95px);
  }

  .footer {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .messagre-field {
    font-family: Montserrat, sans-serif;
  }

  .contact-form-title-instructions {
    margin-bottom: 0;
    padding-top: 0;
  }

  .actual-text-field-2 {
    font-family: Montserrat, sans-serif;
  }

  .send-and-recaptcha {
    width: auto;
  }

  .contact-form {
    padding: 0;
    display: block;
    position: relative;
  }

  .contact-form-box {
    width: 100%;
  }

  .resenas {
    padding: 30px;
  }

  .logo-nav {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .link-block-9 {
    flex: none;
    justify-content: flex-start;
    height: 100px;
  }

  .navigation-menu-grid {
    display: none;
  }

  .email-signup-form.g-email-subscription-form {
    padding: 30px;
  }

  .text-block-40 {
    font-size: 110%;
  }

  .footer-column1 {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 0;
    display: flex;
  }

  .footer-columns {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

  .footer-copyright {
    padding-left: 30px;
    padding-right: 30px;
  }

  .copyright {
    font-size: .8rem;
  }

  .copyright-year {
    width: 100px;
    font-size: .8rem;
  }

  .footer-column-2 {
    margin-top: 15px;
  }

  .m-nav-toggle-inner-3 {
    z-index: auto;
    background-color: var(--bh-purple);
    position: static;
  }

  .mobile-navigation-menu-content-3 {
    z-index: auto;
  }

  .mobile-navigation-toggle-open-3 {
    z-index: 2500;
    position: fixed;
    inset: auto auto 0%;
  }

  .mobile-navigation-overlay-3 {
    background-color: var(--bh-purple);
    display: none;
  }

  .mobile-navigation-toggle-2 {
    z-index: 3000;
  }

  .slide-color-overlay {
    width: 100vw;
    height: 100vh;
  }

  .footer-column-3 {
    width: 100%;
  }

  .header-image-content-page {
    height: 40vh;
    display: flex;
  }

  .page-content {
    padding: 30px;
  }

  .content-column-right {
    margin-left: 0;
  }

  .heading {
    font-size: 1.2rem;
  }

  .content-page-header {
    text-align: left;
    flex: 0 auto;
    margin-left: 30px;
  }

  .phone-number-dark {
    font-size: .8rem;
  }

  .google-map-div {
    justify-content: flex-start;
  }

  .slide-text-large {
    color: var(--bh-purple);
    margin-left: 30px;
    margin-right: 30px;
    font-size: 200%;
  }

  .hours {
    font-size: 90%;
  }

  .services-matrix {
    padding: 30px;
  }

  .slider-color-overlay {
    width: 100vw;
    height: 100vh;
  }

  .schedule-link-button {
    justify-content: center;
  }

  .book-now-button {
    justify-content: flex-start;
  }

  .book-now-link-block {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .lottie-animation-div {
    text-align: center;
  }

  .accordion-item-title---brix {
    max-width: 100%;
    font-size: 1rem;
  }

  .accordion-item---brix.accordion-1---brix {
    flex-direction: column;
    margin-right: 0;
  }

  .accordion-paragraph---brix {
    max-width: 100%;
    font-size: 90%;
  }

  .services-column-2.end-box {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    display: flex;
  }

  .conditions-column {
    flex-flow: column wrap;
  }

  .text-block-52 {
    font-size: 90%;
  }

  .collection-item {
    width: 100%;
  }

  .blog-content, .homepage-blurb-content {
    padding: 30px;
  }

  .slide-desktop {
    z-index: 5000;
    background-color: #0000;
    background-position: 0 0;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: none;
  }

  .slide-mobile {
    z-index: 5000;
    background-color: #0000;
    background-position: 0 0;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: block;
  }

  .collection-list-3 {
    flex-direction: column;
    grid-template-columns: .25fr;
    display: flex;
  }

  .blog-post-link {
    border: 1px #000;
    display: block;
  }

  .blog-content-div {
    padding: 30px;
  }

  .blog-content-page-header {
    text-align: left;
    flex: 0 auto;
    margin-left: 30px;
  }

  .header-image-blog-content-page {
    height: 40vh;
    display: flex;
  }

  .copyright-year-js {
    width: 100px;
    font-size: .8rem;
  }

  .header-image-content-page-services {
    height: 40vh;
    display: flex;
  }

  .slide-color-overlay-content-servcies {
    width: 100vw;
    height: 100vh;
  }

  .header-image-content-page-wwt, .header-image-content-page-au {
    height: 40vh;
    display: flex;
  }

  .slide-color-overlay-au {
    width: 100vw;
    height: 100vh;
  }

  .header-image-content-page-cu {
    height: 40vh;
    display: flex;
  }

  .slide-color-overlay-cu {
    width: 100vw;
    height: 100vh;
  }

  .resenas-2 {
    padding: 30px;
  }

  .stars, .facebookicon, .googleicon {
    font-size: 1rem;
  }

  .testimonial-quote-text {
    margin-top: 20px;
    font-size: .8rem;
  }

  .testimonial-author-2 {
    font-size: 1rem;
  }

  .copyright-year-2 {
    width: 100px;
    font-size: .8rem;
  }
}

#w-node-_701a65ff-c8ec-060c-ee4c-90724c235b90-b136854d {
  place-self: center end;
}

#w-node-_2efc8087-313b-6796-bf16-cd3db3083141-b3083136 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_47ca15ef-d1b7-ef4d-fb54-752b289be0db-b3083136 {
  place-self: center end;
}

#w-node-e6782ed4-a66b-3a63-a7e2-548cc6058387-8bb899f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e6782ed4-a66b-3a63-a7e2-548cc6058389-8bb899f6, #w-node-_6de1be28-2440-0c3f-1012-1ed209fb35c7-4f531344 {
  place-self: stretch stretch;
}

@media screen and (max-width: 991px) {
  #w-node-_2efc8087-313b-6796-bf16-cd3db3083141-b3083136 {
    place-self: stretch stretch;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_2efc8087-313b-6796-bf16-cd3db3083141-b3083136 {
    align-self: stretch;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2efc8087-313b-6796-bf16-cd3db3083141-b3083136 {
    place-self: center;
  }
}


@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.woff2') format('woff2'), url('../fonts/fa-solid-900.woff') format('woff'), url('../fonts/fa-solid-900.ttf') format('truetype'), url('../fonts/fa-solid-900.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.woff2') format('woff2'), url('../fonts/fa-regular-400.eot') format('embedded-opentype'), url('../fonts/fa-regular-400.woff') format('woff'), url('../fonts/fa-regular-400.ttf') format('truetype'), url('../fonts/fa-regular-400.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2'), url('../fonts/fa-brands-400.eot') format('embedded-opentype'), url('../fonts/fa-brands-400.woff') format('woff'), url('../fonts/fa-brands-400.ttf') format('truetype'), url('../fonts/fa-brands-400.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Merlin';
  src: url('../fonts/merlin.woff2') format('woff2'), url('../fonts/merlin.eot') format('embedded-opentype'), url('../fonts/merlin.woff') format('woff'), url('../fonts/merlin.ttf') format('truetype'), url('../fonts/merlin.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Maximo';
  src: url('../fonts/MAXIMO-Normal.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}