.top-section {
  padding: 20px 0;
}
.event-list {
  display: flex;
  flex-direction: column;
  background-color: #ececec;
}
.event-list a {
  text-decoration: none;
}
.event-list a:hover {
  text-decoration: none;
  background-color: #dcdcdc;
}
.event {
  display: flex;
  flex-direction: row;
  line-height: 1.2;
  padding: 40px 0;
  margin: 0 25px;
}

.event .day {
  color: #f7ca18;
  font-size: 40px;
  font-weight: 900;
}
.event .name-of-day {
  font-size: 28px;
  color: #777;
}
.content {
  padding-left: 55px;
}
.content .heading {
  color: #666;
  text-decoration: none;
  font-size: 22px;
  font-weight: 450;
  font-family: sans-serif;
  margin-bottom: 20px;
}
.discirption {
  font-weight: 200;
  font-size: 14px;
  color: #888;
  line-height: 1.9;
}
.discirption span {
  cursor: pointer;
}
.discirption span:hover {
  text-decoration: underline;
  color: #f7ca18;
}
.seperator {
  display: flex;
  width: 93%;
  border: 0.3px solid #ddd;
  margin: 0;
  margin-left: 30px;
}

a {
  text-decoration: none !important;
}

.upcoming-event {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.background-image {
  position: absolute;
  width: 100%;
  height: 53vh;
  filter: brightness(0.2) blur(1px);
  z-index: -1;
  background-position: center;
  background-size: cover;
}

.up-event {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.upcoming-event-details {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.upcoming-event-details::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.event-image img {
  width: 40vw;
  height: 50vh;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.9);
}
/* .event-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #1a265c;
    opacity: 0.6;
} */
.upcoming-event-context {
  text-align: center;
  width: 40vw;
  color: #fff;
  line-height: 3;
}
@font-face {
  font-family: "Montserrat-Light";
  src: url('{% static "montserrat/montserrat-light.ttf" %}') format("truetype");
}
.up-heading {
  font-weight: 300;
  color: #f7ca18;
}
.upcoming-event-heading {
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 1px;
}
.up-heading span {
  margin-left: 20px;
}
.upcoming-event-content {
  line-height: 1.4;
  margin-top: 6px;
  font-size: 14px;
  color: #f7ca18;
}

.upcoming-event-content span:hover {
  text-decoration: underline;
  cursor: pointer;
  color: #ddd;
}

/* Modified Page css */
.about-background-image {
  position: relative;
  width: 100%;
  height: 30vh;
}

.about-background-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  filter: brightness(0.5);
}

.breadcrumb-image {
  z-index: -1;
}

@media only screen and (max-width: 600px) {
  .upcoming-event .up-event {
    flex-direction: column;
  }
  .background-image {
    display: none;
  }
  .background-screen {
    height: 100vh;
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 50px;
    background-color: #1a265c;
  }
  .event-image img {
    width: 90vw;
    height: 50vh;
  }
  .upcoming-event-heading {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
  }
  .upcoming-event-context {
    width: 90vw;
    /* min-height: 30vh; */
  }

  .about-background-image {
    display: none;
  }

  .principle-message {
    display: none;
  }

  .message-from-responsive {
    display: block !important;
  }

  .post {
    display: flex;
    flex-direction: column;
  }

  .message-from-responsive > div {
    color: #df2c2c;
  }

  .post-title {
    font-size: 27px !important;
    margin-bottom: 20px;
    text-align: center;
  }
}
