/*-------------------------
large_header
--------------------------*/
.wp-block.large_header {
  position: relative;
  z-index: 2;
  padding-top: 0;
}
@media only screen and (min-width: 768px) {
  .wp-block.large_header {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.wp-block.large_header .buttonwrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-block.large_header .line {
  overflow: hidden;
}
.wp-block.large_header .title {
  will-change: opacity, transform;
  visibility: hidden; /* Initially hide the element */
  font-size: clamp(28px, 7px + 0.04375 * 100vw, 91px);
  line-height: clamp(39.4px, 16.2px + 0.0483333333 * 100vw, 109px);
  text-align: center;
}

#editor .wp-block.large_header .title {
  visibility: visible;
}
