.fliped-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 16px;
  }
  @media (min-width: 768px) {
    .fliped-container {
      flex-direction: row;
      padding: 32px;
    }
    .fliped-container.reverse {
      flex-direction: row-reverse;
    }
  }
  .fliped-image-container {
    position: relative;
    width: 100%;
  }
  .fliped-image-container img {
    width: 370px;
    height: 444px;
  }
  .fliped-image-container img.left {
    width: 370px;
    height: 444px;
    float: right;
    /* border: 3px solid red; */
  }
  .fliped-border-box {
    display: none;
  }
  @media (min-width: 768px) {
    .fliped-image-container {
      width: 50%;
    }
    .fliped-border-box {
      display: block;
      height: 12rem;
      width: 12rem;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      border: 12px solid black;
      transition: all 0.3s ease-in-out;
      z-index: 100;
    }
    .fliped-border-box.right {
      right: 16px;
    }
    .fliped-border-box.left {
      left: 16px;
      /* border-color: red; */
    }
  }
  .fliped-text-container {
    width: 100%;
    margin-top: 10px;
  }
  @media (min-width: 768px) {
    .fliped-text-container {
      width: 50%;
      margin-top: 0;
    }
  }
  .fliped-title {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 6px;
  }
  @media (min-width: 768px) {
    .fliped-title {
      font-size: 32px;
      margin-bottom: 8px;
      padding-right: 36px;
    }
  }
  .fliped-title span {
    position: absolute;
    left: 2px;
    bottom: 0;
    height: 8px;
    width: 96px;
    background-color: green;
    opacity: 0.7;
  }
  @media (min-width: 768px) {
    .fliped-title span {
      height: 12px;
      width: 128px;
    }
  }
  .fliped-testimonial-mobile {
    margin-top: 2px;
  }
  @media (min-width: 768px) {
    .fliped-testimonial-mobile {
      display: none;
    }
  }