.header-intro-block .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  grid-template-areas: "title description";
  align-items: flex-start;
}
@media (max-width: 720px) {
  .header-intro-block .content-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "description";
    gap: 0px;
  }
}
.header-intro-block .content-grid .heading-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-intro-block .content-grid .heading-wrapper .headline {
  margin: 0px;
}
.header-intro-block .content-grid .heading-wrapper .toggle-button-wrapper {
  display: none;
}
@media (max-width: 720px) {
  .header-intro-block .content-grid .heading-wrapper .toggle-button-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
.header-intro-block .content-grid .heading-wrapper .toggle-button-wrapper button .toggle-button-horizontal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000000;
  width: 10px;
  height: 2px;
  transition: all 300ms ease-in-out;
}
.header-intro-block .content-grid .heading-wrapper .toggle-button-wrapper button .toggle-button-vertical {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000000;
  width: 2px;
  height: 10px;
  transition: all 300ms ease-in-out;
}
.header-intro-block .content-grid .heading-wrapper .toggle-button-wrapper button.open .toggle-button-vertical {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 300ms ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .header-intro-block .content-grid .heading-wrapper .toggle-button-wrapper button:hover .toggle-button-vertical {
    background-color: #ac5df1;
    transition: all 300ms ease-in-out;
  }
  .header-intro-block .content-grid .heading-wrapper .toggle-button-wrapper button:hover .toggle-button-horizontal {
    background-color: #ac5df1;
    transition: all 300ms ease-in-out;
  }
}
.header-intro-block .content-grid .description-wrapper {
  grid-area: description;
  display: inline-block;
}
@media (min-width: 720px) {
  .header-intro-block .content-grid .description-wrapper {
    display: inline-block !important;
  }
}
@media (max-width: 720px) {
  .header-intro-block .content-grid .description-wrapper {
    padding-top: 16px;
  }
  .header-intro-block .content-grid .description-wrapper:not(.show) {
    display: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/******************
 * BACKEND STYLES *
******************//*# sourceMappingURL=header-intro.css.map */