/* Font Faces */
@font-face {
    font-family: 'STIHL Contraface Display Title';
    src: url('../fonts/STIHLContrafaceDisplayTitling.woff2') format('woff2'),url('../fonts/STIHLContrafaceDisplayTitling.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'STIHL Contraface Display Medium';
    src: url('../fonts/STIHLContrafaceDisplayMedium.woff2') format('woff2'),url('../fonts/STIHLContrafaceDisplayMedium.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'STIHL Contraface Text';
    src: url('../fonts/STIHLContrafaceText.woff2') format('woff2'),url('../fonts/STIHLContrafaceText.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'STIHL Contraface Text Bold';
    src: url('../fonts/STIHLContrafaceText-Bold.woff2') format('woff2'),url('../fonts/STIHLContrafaceText-Bold.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'STIHL Contraface Text Light';
    src: url('../fonts/STIHLContrafaceTextLight.woff2') format('woff2'),url('../fonts/STIHLContrafaceTextLight.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}
/* Global Styles */
body {
  padding: 0;
  margin: 0;
  font-family: "STIHL Contraface Text", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
}
.logo {
  width: 182px;
}
h2 {
  font-family: "STIHL Contraface Display Title", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 36px;
  margin-top: 0;
  margin-bottom: 0;
}
/* Hero background */
.hero-banner {
  height: calc(100vh - 80px);
  background: #444;
  display: flex;
  align-items: center;
  justify-content: left;
  min-height: 600px;
  background-size: cover;
  background-position: center;
}
.box-container {
  max-width: calc(100vw - 200px);
  margin: 0 auto;
  width: 100%;
}
.logo-container {
  max-height: 80px;
}
/* Banner box */
.banner-box {
  background: #fff;
  max-width: 651px;
  padding: 50px;
  width: 100%;
  border-radius: 0px;
  text-align: left;
  color: #000;
}

/* Text */
.banner-box h2 {
  font-weight: 900;
  font-style: regular;
  font-size: 40px;
  leading-trim: none;
  line-height: 44px;
  letter-spacing: 0%;
}
.banner-box h2::after {
    content: "";
    display: block;
    opacity: 1;
    width: 32px;
    margin-top: 15px;
    border-bottom: 6px solid #000;
}
.banner-box .subtext {
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  leading-trim: none;
  line-height: 26px;
  letter-spacing: 0%;
  color: #000000;
}
/* Button */
.cta-btn {
  position: relative;
  display: inline-block;
  font-family: "STIHL Contraface Text Bold", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  padding: 12px 28px;
  background: #f37a1f;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  font-weight: 700;
}

/* sliding layer */
.cta-btn::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transition: top 0.3s ease;
  z-index: -1;
}

.cta-btn:hover::before {
  top: 0;
}
.cta-btn:hover {
  /*   background: #000; */
}
/* Normal bullets */
.swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 1; /* ensure visibility */
}

/* Active bullet */
.swiper-pagination-bullet-active {
  background-color: #f37021;
}
/* Responsive */
@media (max-width: 1400px) {
  .box-container {
    max-width: calc(100vw - 80px);
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .logo-container {
    max-height: 49px;
  }
  .logo {
    width: 112px;
  }
  .banner-box {
    padding: 25px;
    max-width: calc(100% - 50px);
  }
  .banner-box h2 {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .box-container {
    width: 100% !important;
    max-width: calc(100% - 40px) !important;
  }
  .banner-box .subtext {
    font-size: 1.2rem;
  }
  .cta-btn {
    font-size: 16px;
  }
  .hero-banner {
  height: calc(100vh - 48px);
}
.banner-box br{
  display: none;
}
}