.header-txt h1 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  text-align: center;
  font-family: "Futura LT Heavy";
  font-size: 2rem;
}

.offers-main-container h2 {
  color: var(--white);
  padding: 50px 100px;
  background-color: var(--primary);
  margin: 0px;
  border-bottom: 1px solid var(--accent);
  font-size: clamp(18px, 3vw, 33px);
}

.offer-presentation-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
  padding: 50px 100px;
  background-color: var(--primary);
  color: var(--white);
}

.section-img {
  flex: 0 1 15%;
  width: 15%;
  min-width: 150px;
  height: auto;
}

.bf-text,
.dsp-text {
  flex: 1 1 calc(85% - 300px);
  min-width: 400px;
}

.formula-intro {
  padding: 50px 100px;
}

.offer-conclusion {
  /* background-color: var(--primary);
  color: var(--white); */
  padding: 50px 100px;
  text-align: center;
  line-height: 120%;
}

.bf-formula-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 50px;
  padding: 0px 100px 0px 100px;
}

.bf-formula {
  position: relative;
  box-sizing: border-box;
  flex: 0 1 350px;
  height: 500px;
  padding: 25px;
  background-color: var(--primary);
  border-radius: 15px;
  color: var(--white);
}

.bf-formula-text {
  box-sizing: border-box;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.bf-formula h3 {
  margin: 0px;
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Futura LT Heavy";
}

.bf-formula h4 {
  font-size: 1.3rem;
  font-family: "Futura LT Oblique";
  margin-top: 0px;
  color: var(--accent);
}

.formula-description {
  line-height: 120%;
}

@media (max-width: 800px) {

  .offer-presentation-container,
  .offers-main-container h2,
  .formula-intro,
  .bf-formula-container,
  .offer-conclusion {
    padding: 25px;
  }

  .offer-presentation-container {
    gap: 25px;
    flex-direction: column;
  }

  .bf-text,
  .dsp-text {
    min-width: unset;
  }

}