.event {
  background-color: #fff;
  display: block;
}

.event-mobile {
  background-color: #fff;
  display: none;
}

.event-button {
  color: #2251B1;
  width: 92px;
  height: 40px;
  background: #F2F6FF;
  border-radius: 6.25rem;
  font-weight: 500;
  font-size: 1rem;
  border: none;
}

.event-main-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.011em;

  /* Neutral/ 90 */

  color: #404040;
}

@media screen and (max-width: 1024px) {
  .event {
    display: none;
  }

  .event-mobile {
    display: block;
  }

  .event-button {
    width: 157px;
    height: 36px;
    font-size: 14px;
  }

  .event-main-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
  }
}