@import url(https://fonts.googleapis.com/css?family=Nunito);body {
  color: #484848;
}

#home-header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 75vh;
  width: 100%;
  margin-top: -65px;
  position: relative;
}

#home-header .catch-phrase {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 70%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  text-align: center;
}

#home-header .catch-phrase h1 {
  font-size: 4rem;
  font-weight: 900;
}

#home-header .catch-phrase p {
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  #home-header .catch-phrase {
    max-width: 90%;
    width: 90%;
  }

  #home-header .catch-phrase h1 {
    font-size: 3rem;
  }
}

.black-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.light-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 10px;
}

.light-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #9d9d9d;
}

.light-scrollbar::-webkit-scrollbar {
  width: 7px;
  background-color: #f5f5f5;
  height: 8px;
}

.event-card {
  width: auto;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  margin-bottom: 1.5rem;
}

.event-card a {
  text-decoration: none;
  color: inherit;
}

.event-card a:hover {
  text-decoration: none;
  color: inherit;
}

.event-card .event-club {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border: 1px solid white;
  position: absolute;
  height: 70px;
  width: 70px;
  bottom: 5px;
  right: 5px;
  z-index: 1;
}

.event-card .event-img {
  height: 160px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 2px;
}

.event-card .event-img.club {
  height: 300px;
}

.event-card .event-text .event-title {
  font-weight: 600;
  font-size: 17px;
  color: #484848;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

