.before-after {
  display: flex;
  margin: 48px 0;
}

.bef-wrap {
  position: relative;
}
.bef-wrap img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0;
}

.after-wrap {
  position: relative;
}
.after-wrap img {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin: 0;
}
.after-wrap .bef-af-title {
  left: unset;
  right: 30px;
}

.bef-af-title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  text-transform: uppercase;
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-shadow: 1px 1px 1px rgba(25, 66, 77, 0.5019607843);
  z-index: 2;
}

@media (max-width: 768px) {
  .before-after {
    flex-direction: column;
    margin: 36px 0;
  }
  .bef-wrap img {
    border-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .bef-wrap .bef-af-title {
    left: 20px;
    bottom: 20px;
  }
  .after-wrap img {
    border-radius: 10px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
  .after-wrap .bef-af-title {
    right: unset;
    left: 20px;
    bottom: 20px;
  }
}