



  .module-intro,
  .module-intro .module-wrap {
    height: 100vh;
    position: relative;
  }
  
  .module-intro .claim.cpy-16 {
    --min-font-size: 1rem;
  }
  
  .module-intro .background-image img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    max-width: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
  }
  
  .module-intro .background-image::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  }
  
  .module-intro .headline {
    text-shadow: 4px 4px 24px rgba(0,0,0,0.9);
  }
  
  .module-intro .module-wrap {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 3;
  }
  
  .module-intro .col-set {
    display: flex;
    flex-flow: row nowrap;
    position: relative;
  }
  
  .module-intro .col-1 {
    width: calc(550 * var(--px));
    position: relative;
    z-index: 2;
  }
  
  .module-intro .col-2 {
    position: absolute;
    right: calc(-100 * var(--px));
    top: 50%;
    transform: translateY(-50%);
    width: calc(700 * var(--px));
    z-index: 1;
  }
  
  .module-intro .claim {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;
    text-transform: uppercase;
  }
  
  .module-intro .scroll-down-hint {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .module-intro .scroll-down-hint svg {
    display: block;
    animation: scroll 3.5s infinite;
    animation-delay: -3.5s;
    animation-timing-function: ease-out;
  }
  
	@keyframes scroll {
		0% { opacity: 1; transform: translateY(0%); }
		5% { opacity: 0; transform: translateY(50%); }
		20% { opacity: 0; transform: translateY(0%); }
		20.1% { opacity: 0; transform: translateY(-50%); }
		24.99% { opacity: 1; transform: translateY(0%); }
		25% { opacity: 1; transform: translateY(0%); }
	}
  
  
  
  
  
  
  
  @media (max-width: 600px) {
    
    .module-intro, .module-intro .module-wrap {
      height: auto;
    }
    
    .module-intro {
      padding-bottom: 80px;
    }
    
    .module-intro .module-wrap {
      padding-top: 155px;
    }
    
    .module-intro .col-set {
      flex-flow: column-reverse nowrap;
    }
    
    .module-intro .col-1 {
      width: 100%;
      text-align: center;
    }
    
    .module-intro .col-2 {
      position: static;
      transform: none;
      width: auto;
      margin-inline: calc(var(--page-padding-left) * -1);
      margin-bottom: 28px;
    }
    
    .module-intro .claim {
      position: relative;
      margin-top: 10px;
      left: auto;
      right: auto;
      bottom: auto;
      padding-inline: var(--page-padding-left);
    }
    
  }