/*order-option*/
/*order-option*/
.txtWithGradientBgColor {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.txtWithGradientBgColor .flexContainer {
  padding: 80px 0 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.txtWithGradientBgColor .flexContainer .txtPiece {
  width: 42%;
}
.txtWithGradientBgColor .flexContainer .txtPiece .title {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .txtWithGradientBgColor .flexContainer {
    padding: 64px 0 48px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .txtWithGradientBgColor .flexContainer .txtPiece {
    width: 100%;
    margin-bottom: 80px;
  }
  .txtWithGradientBgColor .flexContainer .txtPiece .title {
    margin-bottom: 32px;
  }
}