﻿.decorated-container {
  position: relative;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.decorated-container__decoration {
  position: absolute;
  overflow: hidden;
}

/* Left side decorations */
/* Note: Right and left values are calculated based on the width of the container using an offset from the mid-point */
.decorated-container--left .decorated-container__decoration--first {
  top: calc(50% - 150px);
  left: calc(50% + (800px / 2));
}
.decorated-container--left .decorated-container__decoration--second {
  bottom: calc(50% - 150px);
  left: calc(50% + (675px / 2));
}

/* Right side decorations */
.decorated-container--right .decorated-container__decoration--first {
  bottom: calc(50% - 150px);
  right: calc(50% + (800px / 2));
}
.decorated-container--right .decorated-container__decoration--second {
  top: calc(50% - 150px);
  right: calc(50% + (675px / 2));
}

.footer-decoration {
  position: absolute;
  bottom: 0px;
  left: calc(50% + (1200px / 2));
  transform: translateX(-50%);
}
