#banner {
    position: absolute;
    transform: skewY(-2deg);
    top: -80px;
    width: 100%;
    height: 115%;
  }
  #eventOverview{
    position: relative;
    min-height:25em;
    margin-bottom: 20px;
    padding-top:20px;
    /* overflow: hidden; */
    /* border: 1px solid gray; */
  }
  #eventContent{
    position: relative;
    padding-top: 20px;
  }
  #eventTitle{
    color: white;
    text-align: center;
  }
  #eventIconsSection{
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 15px;
  }
  .eventIcon{
      text-align: center;
  }
  .icon{
      color: white;
      display: flex;
      justify-content: center;
      margin: 0;
  }
  .iconTitle{
      color: white;
      margin-top: 10px;
      margin-bottom: 5px;
  }
  .iconSubtitle{
      color: white;
      margin-bottom: 10px;
  }

  .registrationLink{
    border: 2px solid white;
    padding: 8px 25px;
    border-radius: 2px;
    color:#ffffff;
  }

   .registrationLink:hover{
    background-color: #f37021;
    color:#ffffff;
   }

  .registrationLink .fa {
    color: white;
    margin: 0;
  }
  .contactEmail{
      color: white;
      font-weight: 400;
      margin-top: 0px;
  }
  #eventButtonsSection{
      display: flex;
      justify-content: center;

  }
  
  .eventButton{
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background-color: white;
    width: max-content;
    margin-right: 10px;
    margin-top: 10px;
    border: 2px solid #F37123;
    padding: 2px 5px;

}
.eventButton span{
    border-radius: 0em;
    border: 0px solid;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1px 10px;
    -ms-transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);  
    display: inline-block;
    cursor: pointer;
    font-size: 15px;
    color: #F37123;
}
.eventButton span a {
    font-size: 18px;
    color: #F37123;
}
.eventButton span a:hover {
  text-decoration: initial;
  color: #00549b;

}
#moreEventsTitle{
  color: black;
  text-align: center;
}
#moreEventsSection{
  margin-top: 20px;
}
#moreEvents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.moreEvent {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 10em;
  width: 15em;
  margin-bottom: 15px;
}
.eventTitle{
  position: absolute;
  bottom: 8px;
  left: 5px;
  max-width: 90%;
}
.eventTitle p {
  color: white;
  font-weight: 500;
  padding: 2px;
}
.moreEventLink{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

  @media (max-width: 767px) {
      #banner{
          top: -55px;
      }
  }

  .fa-3x{
    font-size:2em;
  }

  h2.iconTitle{
    font-size: 26px;
    line-height: 30px;
  }

  @media(max-width: 480px){
    h2.iconTitle{
      font-size: 22px;
      line-height: 22px;
    }
  }

  h5.iconSubtitle{
    margin-bottom:0px;
  }

  .eventIcon{
    padding-bottom:10px;
  }