.overlay {
  background-color: rgba(255, 255, 255, 0.79);
  width: 100%;
  padding: 70px 0;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 94px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.featureCard {
  flex: 1;
  min-width: 320px;
  max-width: 554px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.imageWrapper {
  margin-bottom: 24px;
}

.heading {
  font-family: Open Sans, sans-serif;
  font-weight: 600;
  font-size: 1.25em;
  line-height: normal;
  color: #262f40;
  margin-bottom: 24px;
}
.heading span{
  color: inherit;
  font-weight: bolder;
}
/* .imageWrapper img{
  width: 144px;
  height: 144px;
} */
.description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.625;
  color: #262f40;
}

.bold {
  font-weight: 700;
}

.button {
  background-color: #fec91a;
  display: inline-block;
  width: auto;
  height: 2.75rem;
  line-height: 2.75rem;
  padding: 0 1.375rem;
  vertical-align: middle;
  font-family: Open Sans, sans-serif;
  font-size: 1em;
  font-weight: 600;
  border-radius: .625rem;
  direction: var(--site-language-direction);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .25s, background-color .25s, border-color .25s;
  margin-bottom: 0;
  cursor: pointer;
  margin-top: 53px;
}
.button:hover {
  background-color: #ffd64a;
  transform: translateY(-2px);
}

.button:active {
  background-color: #e6b518;
  transform: translateY(0);
}
.buttondv{
  display: flex;
  justify-content: center;
}
.imageWrapper img{
  width: 104px;
  height: 104px;
}
@media (max-width: 768px) {
  .button {
    width: auto;
    min-width: 200px;
    font-size: 20px;
    height: 56px;
    line-height: 28px;
  }
  .overlay {
    padding: 30px 0;
  }
}




@media (max-width: 1200px) {
  .container {
    justify-content: center;
  }
  
  .featureCard {
    max-width: 100%;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .heading {
    font-size: 24px;
    line-height: 36px;
  }
  
  .description {
    font-size: 18px;
    line-height: 28px;
  }
}

