.site-hero {
  background: url("../images/assets/banner5.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 25px solid goldenrod;
}

.hero-inner {
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0.5), rgba(7, 7, 7, 0.918));
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero-item {
  padding: 20px;
}

.hero-item h1 {
  font-size: 80px;
  color: lightgray;
}

.hero-item p {
  color: white;
  font-size: 30px;
}

.hero-item button {
  width: 180px;
  height: 40px;
}

.events-wrapper {
  width: 70%;
  margin-left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  margin-top: 40px;
  padding: 20px;
  background-color: #fbebe3;
}

.evt-cards {
  display: -ms-grid;
  display: grid;
  row-gap: 10px;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  -ms-grid-columns: 50% 50%;
      grid-template-columns: 50% 50%;
}

.evt-card {
  background: #f8f8f8;
  padding: 5px;
  position: relative;
  padding-bottom: 40px;
}

.evt-thumb img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.evt-content h2 {
  font-size: 30px;
}

.tot {
  font-family: "Titillium Web";
}

.rd-btn {
  position: absolute;
  bottom: 10px;
}

@media (max-width: 800px) {
  .events-wrapper {
    width: 98%;
  }
  .evt-cards {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    row-gap: 20px;
  }
  .evt-content h2 {
    font-size: 20px !important;
  }
}
/*# sourceMappingURL=events.css.map */