/* Isolated decorative callout for the homepage hero. */
.home-page .home-format-bubble {
  --bubble-blue: #086fe7;
  --bubble-green: #159653;
  position: absolute;
  z-index: 3;
  top: 250px;
  left: 61%;
  display: grid;
  width: 266px;
  min-height: 138px;
  padding: 20px 24px 18px;
  transform: translateX(-50%);
  place-items: center;
  border: 1.5px solid rgba(8, 111, 231, 0.88);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(246, 251, 255, 0.98));
  box-shadow: 0 14px 30px rgba(34, 67, 104, 0.16), 0 2px 6px rgba(34, 67, 104, 0.07);
  color: #161b24;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.home-page .home-format-bubble__tail {
  position: absolute;
  display: block;
  border: 1.5px solid rgba(8, 111, 231, 0.88);
  border-radius: 50%;
  background: #f8fcff;
  box-shadow: 0 5px 11px rgba(34, 67, 104, 0.11);
}

.home-page .home-format-bubble__tail--large {
  right: 32px;
  bottom: -10px;
  width: 30px;
  height: 30px;
}

.home-page .home-format-bubble__tail--small {
  right: 17px;
  bottom: -21px;
  width: 14px;
  height: 14px;
}

.home-page .home-format-bubble__strokes {
  position: absolute;
  z-index: 0;
  top: calc(50% - 8px);
  width: 4px;
  height: 16px;
  border-radius: 99px;
  background: currentColor;
}

.home-page .home-format-bubble__strokes::after {
  position: absolute;
  top: 11px;
  width: 4px;
  height: 14px;
  border-radius: inherit;
  background: currentColor;
  content: "";
}

.home-page .home-format-bubble__strokes--blue {
  left: 19px;
  transform: rotate(-34deg);
  color: var(--bubble-blue);
}

.home-page .home-format-bubble__strokes--blue::after {
  left: -10px;
  transform: rotate(-42deg);
}

.home-page .home-format-bubble__strokes--yellow {
  right: 19px;
  transform: rotate(34deg);
  color: #ffb30f;
}

.home-page .home-format-bubble__strokes--yellow::after {
  right: -10px;
  transform: rotate(42deg);
}

.home-page .home-format-bubble__text {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 0;
  flex-direction: column;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.018em;
}

.home-page .home-format-bubble__choices {
  display: block;
  margin-top: 9px;
  white-space: nowrap;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.home-page .home-format-bubble__link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.home-page .home-format-bubble__link:hover,
.home-page .home-format-bubble__link:focus-visible {
  transform: translateY(-1px);
  opacity: 0.76;
}

.home-page .home-format-bubble__link:focus-visible {
  border-radius: 4px;
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.home-page .home-format-bubble__link--offline {
  color: var(--bubble-blue);
}

.home-page .home-format-bubble__or {
  color: #92969d;
  font-weight: 500;
}

.home-page .home-format-bubble__link--online {
  color: var(--bubble-green);
}

@media (max-width: 1050px) {
  .home-page .home-format-bubble {
    right: 270px;
    left: auto;
    width: 230px;
    min-height: 132px;
    padding: 19px 20px 17px;
    transform: none;
  }

  .home-page .home-format-bubble__text {
    font-size: 17px;
  }

  .home-page .home-format-bubble__choices {
    font-size: 19px;
  }
}

@media (min-width: 641px) and (max-width: 860px) {
  .home-page .home-format-bubble {
    top: 305px;
    right: 18px;
    left: auto;
    width: 238px;
    min-height: 130px;
    padding: 18px 20px 16px;
    transform: none;
    border-radius: 34px;
  }

  .home-page .home-format-bubble__text {
    font-size: 16px;
  }

  .home-page .home-format-bubble__choices {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .home-page .entrance__content {
    padding-bottom: 250px;
  }

  .home-page .home-format-bubble {
    position: relative;
    inset: auto;
    width: min(272px, calc(100vw - 54px));
    min-height: 136px;
    margin: 30px auto 68px;
    padding: 20px 22px 18px;
    transform: none;
    border-radius: 36px;
  }

  .home-page .home-format-bubble__text {
    font-size: 17px;
  }

  .home-page .home-format-bubble__choices {
    font-size: 20px;
  }
}

@media (max-width: 340px) {
  .home-page .home-format-bubble__choices {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-format-bubble__link {
    transition: none;
  }
}
