#bottomPanel {
  background-image: url(/images/bottom-panel.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0;
  padding: 80px 0;
}
#bottomPanel .content {
  background-color: rgba(0, 0, 0, 0);
  width: min(780px, 100%);
  margin: auto;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
#bottomPanel .content h3 {
  font-size: 40px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
}
#bottomPanel .content button {
  margin: 16px auto auto;
}
@media screen and (max-width: 860px) {
  #bottomPanel {
    padding: 80px 24px;
  }
  #bottomPanel .content {
    gap: 24px;
  }
  #bottomPanel .content h3 {
    font-size: 32px;
    line-height: 140%;
    letter-spacing: -0.045em;
    font-weight: 500;
  }
}
