.event-detail-banner {
  background: url(../images/-past-event-page-image.jpg) bottom;
  background-position: 30%;
}
.event-detail-main-banner {
  height: 35vh;
  overflow: hidden;
  text-align: center;
  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}
.main-event-details {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  h2 {
    font-size: 25px;
    font-family: Helvetica;
    line-height: 35px;
    font-weight: 600;
  }
}
.event-cat-date-loaction-box {
  width: 100%;
  max-width: 400px;
}
.reg-btn {
  background-color: #1a3967;
  color: #fff;
  text-decoration: none;
  display: block;
  &:hover {
    color: #fff;
    text-decoration: none;
    background-color: #4ab03b;
  }
}
.event-cat-date-loaction-box ul {
  margin-block: 20px;
  li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-family: "Roboto";
    &:hover {
      .list-icon {
        background-color: #4ab03b;
      }
    }
    .list-icon {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 30px;
      width: 30px;
      background-color: #1a3967;
      color: #fff;
      border-radius: 50%;
    }
  }
}
.event-media-icons-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  li {
    &:nth-child(1) {
      a {
        background-color: #0077b5;
      }
    }
    &:nth-child(2) {
      a {
        background-color: #3b5998;
      }
    }
    &:nth-child(3) {
      a {
        background-color: #1da1f2;
      }
    }
    &:nth-child(4) {
      a {
        background-color: #25d366;
      }
    }
  }
  a {
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;

    &:hover {
      filter: saturate(1.5) brightness(1.2);
    }
  }
}
@media (max-width:767px){
    .main-event-details{
        flex-direction: column;
    }
}
