/**
 * @file
 * Section styles
 */

.section {
  overflow-x: clip;
}
.section--left_shape,
.section--right_shape {
  position: relative;
  z-index: 1;
}
.section--left_shape::after,
.section--right_shape::after {
  content: "";
  position: absolute;
  top: -40px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
  width: 353px;
  height: 326px;
}
.section--right_shape::after {
  background-image: url('../../images/section/right-shape.svg');
  left: auto;
  right: -50px;
}
.section--left_shape::after {
  background-image: url('../../images/section/left-shape.svg');
  left: -50px;
  right: auto;
}
@media all and (min-width: 1500px) {
  .section--left_shape::after,
  .section--right_shape::after {
    top: -75px;
    width: 562px;
    height: 518px;
  }
}
