.trust-parent {
  margin: 40px auto;
  width: 90%;
  display: flex;
  align-items: center;
}
.trust-image {
  width: 50%;
  padding: 40px;
  height: auto;
}
.trust-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.trust-content {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.trust-content p {
  text-align: justify;
  cursor: pointer;
}
.trust-content button {
  width: 150px;
  margin-top: 20px;
  border-radius: 10px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .trust-parent {
    flex-direction: column;
  }
  .trust-image {
    width: 100%;
    height: auto;
    padding: 0px;
  }
  .trust-content {
    width: 100%;
    margin-top: 20px;
    align-items: center;
  }
}
