.tfd-split-section-widget-wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.tfd-split-section-widget-wrapper.align-right  .tfd-split-section-widget-img{
  order: 2;
  clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0% 100%);
}

.tfd-split-section-widget-wrapper.align-left  .tfd-split-section-widget-img{
  order: 1;
  clip-path: polygon(0% 0%, 70% 0, 100% 100%, 0% 100%);
}

.tfd-split-section-widget-wrapper.align-right .tfd-split-section-widget-content{
  order: 1;
}

.tfd-split-section-widget-wrapper.align-left .tfd-split-section-widget-content{
  order: 2;
}

.tfd-split-section-widget-img {
  flex: 1 1 40%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tfd-split-section-widget-content {
  flex: 1 1 60%;
  padding: 50px;
}

@media only screen and (max-width: 960px) {
  .tfd-split-section-widget-wrapper {
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
  }

  .tfd-split-section-widget-img {
    flex: 1 1 350px;
    clip-path: none !important;
    width: 100%;
    height: 100%;
  }
  .tfd-split-section-widget-content {
    flex: 1 1 auto;
    padding: 30px 0px;
  }
}