.module-features {
  color: #000;
  padding-top: 30px;
  padding-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
}

.module-features-info h5 {
  font-size: 1rem;
  color: inherit;
  font-family: inherit;
  line-height: 1.5;
  margin-bottom: 25px;
}

.module-features-info p {
  margin-bottom: 25px;
}

.module-features-info ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}

.module-features-info ul li:before {
  position: absolute;
  top: 7px;
  left: 0;
  content: '';
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-image: url("../../images/features-checked.png");
}

@media screen and (min-width: 768px) {
  .module-features {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .module-features-holder {
    display: flex;
    justify-content: space-between;
  }

  .module-features-image {
    width: 41%;
  }

  .module-features-image img {
    width: 100%;
    max-width: 420px;
  }

  .module-features-info {
    width: 55%;
  }
}

@media screen and (min-width: 1025px) {
  .module-features {
    font-size: 1.25rem;
  }

  .module-features-image {
    width: 35%;
  }

  .module-features-info {
    width: 63%;
  }

  .module-features-info h5 {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 1201px) {
  .module-features-image img {
    width: auto;
  }
}

