#media ::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  display: none;
}

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

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

.media-main-text {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 3.25rem;
}

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

  .media-mobile {
    display: block;
  }

  .media-main-text {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}