.feature-feature {
  gap: var(--dl-layout-space-unit);
  width: 100%;
  display: flex;
  position: relative;
  max-width: 300px;
  align-items: flex-start;
  flex-direction: column;
}
 
.feature-heading {
  gap: var(--dl-layout-space-unit);
  display: flex;
  align-items: center;
  flex-direction: row;
}
 
.feature-icon {
  height: 22px;
  object-fit: cover;
}
 
.feature-header {
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}
 
.feature-description {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-family: "Karla";
  line-height: 27px;
}
 
@media(max-width: 767px) {
  .feature-feature {
    max-width: 100%;
  }
}
