#wrapper {
  height: 100vh;
}

hr {
  margin: 1.5rem 0
}
      
#header .content .inner {
  padding: 2rem;
}

#bg:after {
  background-image: url("../../images/background.jpg");
}


#main {
  height: 100%;
  position: relative;
}

#main article {
  height: 100%;
  display: flex;
  flex-direction: column;
}

article .article-content {
  padding-right: 1.5rem;
  /*width: calc(100% + 1.5rem);*/
  overflow-y: scroll;
}

article .article-content::-webkit-scrollbar {
  width: 4px;
}

/* Track */
article .article-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
article .article-content::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
article .article-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#header .logo {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  border: none;
}

#header .logo img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 100%;
  filter: grayscale(60%) hue-rotate(312deg);
}

.image.main {
  margin-top: 0;
}

.event {
  display: flex;
  flex-direction: row;
}

.event-image {
  display: flex;
  flex-shrink: 0;
  margin-right: 1.5rem;
  width: 33%;
  position: relative;
}

.event-image img {
  position: absolute;
  width: 100%;
  height: auto;
}

.event-content {
  display: flex;
  flex-direction: column;
}

.event-learn-more {
  text-align: right;
  margin-bottom: 0;
}


@media screen and (max-width: 480px) {

  .event {
    flex-direction: column;
  }

  .event-image {
    display: flex;
    margin-right: 0;
    margin-bottom: 1.5rem;
    width: 100%;
    height: 25vh;
  }

  .event-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
  }
}