.main {
  margin-top: 116px;
  padding-inline: 66px;
  margin-bottom: 90px;
}

.imageWrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: 680px;
  border-radius: 20px;
  overflow: hidden;
  padding-inline: 66px;
  margin-bottom: 90px;
}
.imageWrapper h1 {
  font-size: 40px;
  font-weight: 700;
  text-align: left;
  color: white;
}
.imageWrapper p {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  max-width: 510px;
  margin-top: 16px;
  color: white;
}

.imageWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  border-radius: 20px;
}

.dividerText {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 90px;
}

.featureWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 140px;
  width: 100%;
}

.featureItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #f8eaea;
  border-radius: 20px;
  padding: 80px 38px;
  height: 512px;
  width: 100%;
}

.featureItem h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

.featureItem p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  max-width: 400px;
}
@media screen and (max-width: 1310px) {
  .featureWrapper {
    gap: 16px;
  }
  .featureItem {
    gap: 16px;
  }
}

@media screen and (max-width: 1110px) {
  .main {
    padding-inline: 16px;
  }
  .featureWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .featureItem {
    max-width: 500px;
    gap: 16px;
  }
}
@media screen and (max-width: 720px) {
  .imageWrapper {
    padding-inline: 16px;
  }
}
