.parallaxImage {
  position: relative;
  overflow: hidden;
  height: 100%;

  > div {
    position: relative;
    top: 0;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);

    > div {
      height: 100%;
      width: 100%;
    }

    @media (min-width: 560px) {
      left: -20px;
      width: calc(100% + 40px);
      height: calc(100% + 40px);
      object-fit: cover;
      margin-top: -20px;
      margin-bottom: -20px;
    }
  }

  img {
    position: relative;
    top: 0;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    object-fit: cover;
    margin-top: -15px;
    margin-bottom: -15px;
    display: block;
    will-change: transform;

    @media (min-width: 560px) {
      left: -20px;
      width: calc(100% + 40px);
      height: calc(100% + 40px);
      object-fit: cover;
      margin-top: -20px;
      margin-bottom: -20px;
    }
  }
}

.image {
  img {
    width: 100%;
  }
}
