.feature {
  margin: auto;
  /* width: 100%; */
  max-width: 61.5625rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.25rem;

  @media screen and (min-width: 1024px) {
    padding: 0 2.5rem;
  }
}

.feature--odd {
  flex-direction: row-reverse;
}

.feature:not(:last-child) {
  margin-bottom: 3.3125rem;
}

.feature__right {
  background-color: var(--color-white);
  /* flex: 1 1 auto; */
  max-width: 28rem;
  height: 20.875rem;
  padding:0 1.725rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 2.5rem 2.5rem 2.5rem 0;
  box-sizing: border-box;
  margin-bottom: 2.5rem;
  
  @media screen and (min-width: 768px) {
    border-radius: 5rem 5rem 5rem 0;
    height: 25.125rem;
    padding: 0 2.55rem;
    margin-bottom: 0;
  }
}

.feature__line {
  background-color: var(--color-primary);
  width: 2.5rem;
  height: 0.4rem;
  margin-bottom: 1rem;
}

.feature__content {
  max-width: 29.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--color-black);

   & h2 {
    font-size: var(--heading-2);
    color: var(--color-black);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    
    @media screen and (min-width: 768px) {
      font-size: var(--heading-1);
    }
  }

  & p {
    font-family: var(--font-cairo);
    font-size: var(--paragraph-size);
    font-weight: 700;
    line-height: 1.34;
    text-wrap: pretty;

    @media screen and (min-width: 768px) {
      font-size: var(--text-large);
    }
  }
}

.feature__content--large {
  max-width: clamp(29.5rem, 60dvw, 34.5rem);
}

.feature__left {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.feature__image {
  margin: auto;
  max-width: 12.5rem;
  height: auto;

  @media screen and (min-width: 768px) {
    max-width: 15.625rem;
  }

  @media screen and (min-width: 1024px) {
    max-width: 21.875rem;
  }
}

.customers {
  padding: 5rem 0;
}

.customers__title {
  font-size: var(--heading-1);
  color: var(--color-black);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-align: center
}