@charset "UTF-8";
/* START ---- SETS HEADER FONT WITH BACKUP */
:is(h1, h2, h3, h4, h5, h6) {
  font-family: 'Montserrat', sans-serif;
}
/* START ---- EXTERNAL LINK INDICATOR STYLING */
a:not([href*='indigoboostdesign.com']):not([href^='#']):not([href^='/']):not([href^='tel']):not([href^='mailto']):not(.u-link-exception)::after {
  font-family: 'Font Awesome 6 Free';
  margin-left: 0.25em;
  content: "";
  font-weight: 900;
}
/* START ---- HEADER BUILDER STYLES */
.oxy-sticky-header-active .header-row__logo {
  position: static;
}
.oxy-sticky-header-active .header-row__logo img {
  width: auto;
  height: 50px;
}
.header-row :is(.oxy-header-left, .oxy-header-center, .oxy-header-right) {
  display: flex;
  flex-grow: 1;
}
.header-row :is(.oxy-header-left, .oxy-header-center, .oxy-header-right):empty {
  display: none;
}
@media (max-width: 767px) {
  .oxy-header-container {
    padding: 0px !important;
  }
}
/* START ---- FONT AWESOME STYLING */
.fa-brands {
  padding: 0px 10px;
  color: var(--primary);
  transition-duration: 0.7s;
}
.fa-brands:hover {
  opacity: 0.8;
}
.fa-solid {
  padding: 0px 10px;
  color: var(--primary);
  transition-duration: 0.7s;
}
.fa-solid:hover {
  opacity: 0.8;
}
