



  .module-floating .module-wrap {
    position: relative;
  }
  
  .module-floating .claim {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    z-index: 3;
  }
  
  .module-floating .claim > div {
    max-width: calc(990 * var(--px));
    margin-inline: auto;
    position: relative;
    transform: translateY(calc(var(--parallax-y, 0) * 20vh));
  }
  
  .module-floating .image-right {
    margin-left: auto;
    width: calc(428 * var(--px));
    position: relative;
    z-index: 1;
  }
  
  .module-floating .image-left {
    margin-left: var(--page-padding-left);
    width: calc(564 * var(--px));
    position: relative;
    z-index: 1;
    margin-top: calc(-20 * var(--px));
  }
  
  .module-floating .image-right span,
  .module-floating .image-left span {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2;
  }
  
  
  
  
  @media (max-width: 500px) {
    
    .module-floating .claim > div {
      transform: translateY(calc(var(--parallax-y, 0) * 5vh));
      max-width: none;
      width: 100%;
      box-sizing: border-box;
      padding-inline: var(--page-padding-left);
    }
    
    .module-floating .image-right {
      width: calc(220 * var(--px-mobile));
      margin-bottom: 180px;
    }
    
    .module-floating .image-left {
      width: calc(290 * var(--px-mobile));
      margin-left: 0;
    }
    
  }