.features {
  background-color: #fef6f1;
  background-image: url("../images/bannar-bg-icon.png"),
    url("../images/left-bg.png");
  background-repeat: no-repeat, no-repeat;
  background-position: top right, bottom left;
  /* background-size: 200px, 200px; */
  position: relative;
}

.flyer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.flyer-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.flyer-col.middle {
  justify-content: center;
}

.flyer-card {
  background: #fff;
  border-radius: 10px 50px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  min-width: 280px;
  max-width: 450px;
}

@media (max-width: 768px) {
  .flyer-container {
    flex-direction: column;
    align-items: center;
  }

  .flyer-col.middle {
    align-items: center;
  }
}

.flyer-card.orange {
  background: #ff6600;
}

.nimbuz-section {
  background: #fff;
}

.features-newsletter-section input::placeholder {
  color: #fff;
  opacity: 0.8;
}

.features-newsletter-section .title {
  color: #561d00;
}

.features-newsletter-section .form-control:focus {
  box-shadow: none;
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

.feature-hero-section {
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 20px;
  margin: 20px;
  border-radius: 5px 25px;
}

.feature-hero-section .description {
  color: #fff;
  font-size: 40px;
  max-width: 585px;
}
.hero-wrapper{
  border-radius: 10px 50px;
}