.parallax-section .parallax__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
  padding: 40px 0;
  flex: 1 1 100%;
  height: 100%;
}
.parallax-section .content-wrapper {
  max-width: 680px;
  padding: 40px;
}
.parallax-section {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  height: 650px;
  align-items: center;
}
.parallax-section.large {
  height: 800px;
}
.parallax-section.small {
  height: 550px;
}
.parallax-section:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.parallax-section.placeholder-svg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}
.parallax-section .parallax__content.top {
  align-items: flex-start;
}
.parallax-section .parallax__content.top.center {
  justify-content: center;
  align-items: flex-start;
}
.parallax-section .parallax__content.center {
  justify-content: center;
  align-items: center;
}
.parallax-section .parallax__content.bottom {
  align-items: flex-end;
}
.parallax-section .parallax__content.bottom.center {
  justify-content: center;
  align-items: flex-end;
}
.parallax-section .parallax__content.left {
  justify-content: flex-start;
}
.parallax-section .parallax__content.right {
  justify-content: flex-end;
}
@media only screen and (max-width: 749px) {
  .parallax-section .content-wrapper {
    max-width: 680px;
    padding: 30px 20px;
  }
}