header {
  display: none !important;
}

.popup-label {
  position: absolute;
  left: 50%;
  top: -25rem;
  transform: translate(-50%, -100%);
  color: var(--colorText1);
  z-index: 10;
  background: rgba(52, 52, 52, 0.85);
  color: #fff;
  text-align: center;
  width: 100%;
  min-height: 42rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  box-shadow: 0px 3rem 6rem rgba(0, 0, 0, 0.16);
  padding: 8rem 10rem;
}
.popup-label:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12rem 7rem 0 7rem;
  border-color: rgba(52, 52, 52, 0.85) transparent transparent transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}

.popup-label__text {
  display: block;
  font-size: 14rem;
  line-height: 1.45;
  font-weight: 400;
}