@font-face {
  font-family: mfn-icons;
  src: url("../wp-content/themes/betheme/fonts/mfn/icons.woff") format("woff"),
    url("../wp-content/themes/betheme/fonts/mfn/icons.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Betheme reveals ".animate" elements via scroll/init JS; that JS depends on
   plugins (slick, waypoints) that don't fully work in this static export, so
   force content visible instead of relying on it. */
.animate {
  opacity: 1 !important;
}

/* Keep the footer phone indicator visible if the icon font cannot load. */
.footer-phone-icon {
  display: inline-block;
  font-family: sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: 1;
}

.footer-email-icon,
.button_icon {
  font-family: sans-serif;
  font-style: normal;
  line-height: 1;
}

.home-contact-pencil {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
}

.button_icon .icon-pencil-line::before {
  content: "\e8f3" !important;
  font-family: mfn-icons !important;
  font-style: normal !important;
}

/* Lightweight replacement for the original Revolution Slider hero (3 slides). */
.hero-carousel {
  position: relative;
  height: 85vh;
  overflow: hidden;
  background-color: #222;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 0%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 34%;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.45) 0px, rgba(255, 255, 255, 0.45) 1px, transparent 1px, transparent 6px),
    linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0));
  -webkit-backdrop-filter: blur(0.5px);
  backdrop-filter: blur(0.5px);
}

.hero-slide-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 0 60px;
  color: #222;
  max-width: 34%;
  box-sizing: border-box;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #2f9bf0;
}

.hero-logo {
  max-width: 220px;
  height: auto;
  display: block;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-logo-subtitle {
  display: block;
  margin-top: -1px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 800;
  color: #222;
}

.hero-title {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
  color: #222;
  text-shadow: none;
}

.hero-dots {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50% !important;
  border: 2px solid #fff !important;
  background: transparent !important;
  padding: 0 !important;
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff !important;
}

@media (max-width: 2000px) {
  .hero-title {
    font-size: 35px;
  }

  .hero-slide-inner {
    padding: 0 24px;
  }
}

@media (max-width: 1239px) {
  .hero-slide.is-active::before {
    width: 65% !important;
  }
}