/* patterns */

.pattern-sectin {
  position: relative;
}

.pattern-sectin.with-pattern-left:before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  background: url(img/Pattern_left-1.svg) no-repeat center center transparent;
  width: 344px;
  top: 50%;
  transform: translateY(-50%);
}

.pattern-sectin.with-pattern-left:after {
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  background: url(img/Pattern_right-1.svg) no-repeat center bottom transparent;
  width: 487px;
  bottom: 0;
  transform: none;
}

/* responsive */

@media only screen and (max-width: 991px) {

  .pattern-sectin.with-pattern-left:before,
  .pattern-sectin.with-pattern-left:after {
    display: none;
  }
}