.mainContainer {
  width: 100%;
  height: 150px;
  background-color: white;
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  .imageContainer {
    width: 150px;
    height: 80%;
    object-fit: contain;
    margin-left: 20px;
    margin-right: 20px;
    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
  .rightContainer {
    margin-left: 20px;
    margin-right: 20px;

    button {
      padding: 10px 20px;
      border: 1px solid black;
      background: transparent;
      border-radius: 5px;
    }
  }
}