.customer-tick-section {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


.customer-tick-section__image-wrapper {
  width: 100%;
}

.customer-tick-section__image-wrapper img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.customer-tick-section__content-wrapper {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  padding: 2rem 1rem;
  width: 100%;
}


.customer-tick-section__right-column {
  width: 100%;
  padding-top: 4em;
  padding-bottom: 4em;
  padding-right: 3em;
  padding-left: 3em;
}

.customer-tick-section__feature-description,
.customer-tick-section__feature-description * {
  color: #ffffff;
  width: 100%;
  margin-bottom:0 !important;
}

.customer-tick-section__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .5em;
}

@media (max-width: 767px) {
  .customer-tick-section__feature-icon {
    resize: none;
  }
}

@media (min-width: 768px) {

  .customer-tick-section__left-column {
    padding-right: 2rem;
    width: 50%;
  }

  .customer-tick-section__right-column {
    padding-left: 2rem;
    width: 50%;
  }

  .customer-tick-section__feature {
    flex-direction: row;
  }

  .customer-tick-section__feature-description {
    margin-left: 1.5rem;
  }

}


 .customer-tick-section--row {
    flex-direction: row;
  }

  .customer-tick-section--row-reverse {
    flex-direction: row-reverse;
  }

  .customer-tick-section__image-wrapper {
    overflow: hidden;
    position: relative;
    width: 50%;
  }

  .customer-tick-section__image-wrapper img {
    left: 0;
    position: absolute;
    top: 0;
  }

  .customer-tick-section__content-wrapper {
    padding: 4rem 2rem;
    width: 50%;
  }

  .customer-tick-section--row .customer-tick-section__content-wrapper {
    padding-left: 4rem;
  }

  .customer-tick-section--row-reverse .customer-tick-section__content-wrapper {
    padding-right: 4rem;
  }

}