html {
  font-family: sans-serif;
  line-height: 1.15;
}
body {
  background-color: #f5f4f8;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
}
*,
::after,
::before {
  box-sizing: border-box;
}

.event-landing {
  position: relative;
}
.event-landing > img {
  width: 100%;
}
.event-landing .pointer,
.btn {
  position: absolute;
  z-index: 1;
  background-color: #fff;
  border: 4px solid #bc0350;
  padding: 0.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0px 5px 20px rgb(0 0 0 / 50%);
  text-decoration: none;
  font-size: 12px;
}
.btn {
  font-size: 14px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  bottom: 40px;
}
.btn:hover {
  background-color: #bc0350;
  color: #fff;
}
.chatbot-btn {
  left: 40px;
}
.questions-btn {
  right: 40px;
}
.event-landing .pointer > .circle {
  width: 1.2rem;
  height: 1.2rem;
  background-color: #bc0350;
  border-radius: 50%;
  position: relative;
}
.event-landing .pointer > .circle::before {
  position: absolute;
  content: '';
  display: block;
  background-color: #bc0350;
  width: 100%;
  height: 100%;
  transform: scale(1);
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  animation: scale 2s infinite;
}
.event-landing .pointer:nth-child(2n) > .circle::before {
  animation-delay: 1s;
}
@keyframes scale {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}
.event-landing .pointer > .text {
  width: 0px;
  height: 0px;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  color: #bc0350;
}
.event-landing .pointer:hover > .text {
  width: auto;
  height: auto;
  opacity: 1;
  margin-left: 0.5rem;
  padding-right: 0.5rem;
  text-transform: uppercase;
}
.event-landing .pointer:hover > .circle::before {
  display: none;
}
