.new-year-2018 {
  font-family: 'Neris', sans-serif;
  cursor: pointer;
  text-decoration: none;
  color: white;
  font-size: 23px;
  line-height: 37px;
  text-align: center;
  background-color: #FF1500;
  display: block;
  width: 100%;
  height: 100px;
  font-weight: 600;
  padding: 30px 0;
  box-sizing: border-box;
  background-image: url(bg.png);
  background-repeat: repeat-x;
  background-size: auto 60%;
  background-position: bottom;
}

.new-year-2018:hover {
  color: white;
  background-color: rgba(250, 53, 39, 0.8);
}
.new-year-2018 .new-year-2018-mobile {
  display: none;
}

@media (max-width: 640px) {
  .new-year-2018 span {
    display: none;
  }

  .new-year-2018 .new-year-2018-mobile {
    display: block;
  }
}