/* ============================
   Fire Section Styles
   ============================ */

/* Fire Section Container */
.fire {
  width: 100%;
}

/* Hero Section */
.fire__hero {
  background: url('../images/fire/hero.jpeg') no-repeat center center / cover;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

@media (max-width: 575.98px) {
  .fire__hero {
    min-height: 270px;
  }
}

.fire__content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding-top: 6vh;
}

.fire__title {
  font-size: 3rem;
  color: #eddfcc;
}

.fire__title::before {
  content: '';
  background-image: url('../images/common/flame.png');
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 80px;
  left: calc(50% - 17px);
  position: absolute;
  top: 130px;
  width: 34px;
}

@media (max-width: 575.98px) {
  .fire__title {
    font-size: 1.375rem;
  }
  .fire__title::before {
    height: 40px;
    width: 20px;
    left: calc(50% - 10px);
    top: 5px;
  }
}

.fire__subtitle {
  font-size: 1.25rem;
  margin-bottom: 0;
}

/* CTA Subsection */
.fire__subsection {
  background-color: var(--brand-bg);
  border-top: 1px solid rgba(0, 0, 0, .06);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: 62px 0 53px;
  position: relative;
}

.fire__subsection-content {
  padding: 0 110px;
}
@media (max-width: 575.98px) {
  .fire__subsection-content {
      padding: 0;
  }
}

.fire__subsection-content::before {
    content: '';
    display: inline-block;
    width: 116px;
    height: 1px;
    background-color: #eddfcc;
    position: absolute;
    top: -28px;
    left: calc(50% - 58px);
}

.fire__headline {
  margin-bottom: 1rem;
  color: #eddfcc;
  font-size: 26px;
  line-height: 36px;
}

@media (max-width: 575.98px) {
  .fire__headline {
      font-size: 1rem;
      line-height: normal;
  }
}

/* CTA Button */
.btn-cta {
  background-color: #eddfcc;
  color: #46100d;
  border: 1px solid rgba(0, 0, 0, .1);
  padding: 0 40px;
  display: inline-block;
  border-radius: 2rem;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  font-size: 20px;
}

@media (max-width: 575.98px) {
  .btn-cta {
    line-height: 36px;
    font-size: 17px;
  }
}

/* ============================
   Responsive Design
   ============================ */

@media (min-width: 576px) {
  .fire__title {
    font-size: 2.75rem;
  }
  
  .fire__subtitle {
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) {
  .fire__title {
    font-size: 3rem;
  }
  
  .fire__subtitle {
    font-size: 1.35rem;
  }
}

@media (min-width: 992px) {
  .fire__title {
    font-size: 3.25rem;
  }
  
  .fire__subtitle {
    font-size: 1.4rem;
  }
}

@media (min-width: 1200px) {
  .fire__title {
    font-size: 3.5rem;
  }
  
  .fire__subtitle {
    font-size: 1.45rem;
  }
}

@media (min-width: 1400px) {
  .fire__title {
    font-size: 78px;
    padding: 0 135px;
    margin-top: 180px;
  }
}