/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 28 2025 | 17:56:32 */
.desktopContentImage {
  position: sticky; /* Makes the element sticky */
  top: 0; /* Distance from the top of the viewport */
}

.right {
  position: relative; /* Ensure the parent column is a positioning context */
  overflow: hidden; /* Prevent sticky element from escaping the parent column */
}

.stickyforcedBase {
  height: calc(100vh - 70px);
  width: 40vw; /*changed from 30vw to 40 vw to reach the right edge of the page*/
  overflow: hidden;
  position: relative;
  min-height: inherit;
}

.stickyforcedInit {
  top: 60px;
  position: fixed;
}

.stickyforcedEnd {
  position: absolute;
  bottom: 94px;
}

