.section-events-list {
  padding: 90px 0 50px;
}

.section-events-list .events-important {
  margin: 40px 0;
  padding: 25px 0;
  width: 100%;
  background-color: #f2f1ef;
}

.section-events-list .events-important h2 {
  margin-bottom: 20px;
  font-family: 'interstateCond';
  font-weight: 400;
  font-size: 25px;
  color: #484848;
  text-transform: uppercase;
}

.section-events-list .events {
  text-align: center;
}

.section-events-list .event {
  position: relative;
  /*float: left;*/
  vertical-align: top;
  display: inline-block;
  height: 360px;
  width: 350px;
  margin: 0 10px 20px;
  text-align: center;
}
.section-events-list .event.past {
  opacity: 0.5;
}

.section-events-list .event.large {
  height: 220px;
  width: 550px;
  margin: 0 10px 100px;
}

.section-events-list .event .img {
  position: relative;
  display: block;
  height: 250px;
  width: 350px;
  text-align: center;
  overflow: hidden;
}
.section-events-list .event.large .img {
  height: 220px;
  width: 550px;
}
.section-events-list .event .img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  transition: all 0.25s ease-in-out;
}
.section-events-list .event:hover .img::after {
  background-color: rgba(0, 0, 0, 0.25);
}

.section-events-list .event .img img.portrait {
  width: 350px;
}
.section-events-list .event .img img.landscape {
  height: 250px;
}
.section-events-list .event.large .img img {
  width: 550px;
}

.section-events-list .event .info {
  position: relative;
  top: -100px;
  transition: all 0.25s ease-in-out;
}
.section-events-list .event.large .info {
  top: -150px;
}
.section-events-list .event .date::after {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 75px);
  content: '';
  height: 1px;
  width: 150px;
  background-color: #e0e0e0;
  transition: all 0.25s ease-in-out;
}
.section-events-list .event:hover .info {
  pointer-events: none;
  top: -225px;
}
.section-events-list .event.large:hover .info {
  /*top: -212.5px;*/
  top: -150px;
}
.section-events-list .event:hover .date::after {
  background-color: #fff;
}
.section-events-list .event:hover .date::after {
  background-color: #e0e0e0;
}

.section-events-list .event .dialog-start {
  height: 100px;
  width: 320px;
  margin: 0 15px;
  padding-top: 20px;
  background-color: rgba(72, 72, 72, 0.95);
}
.section-events-list .event.large .dialog-start {
  height: 150px;
  width: 420px;
  margin: 0 65px;
  overflow: hidden;
}
.section-events-list .event.large .dialog-start .descr {
  line-height: 24px;
  padding: 10px 50px;
  font-family: 'interstate';
  font-weight: 300;
  font-size: 18px;
  color: #eee;
  text-align: left;
  overflow: hidden;
}
.section-events-list .event .dialog-end {
  position: relative;
  height: 55px;
  line-height: 55px;
  width: 320px;
  margin: 0 15px 20px;
  padding: 0 15px;
  background-color: #484848;
}
.section-events-list .event.large .dialog-end {
  width: 420px;
  margin: 0 65px 20px;
}
.section-events-list .event .dialog-end::after {
  position: absolute;
  bottom: -8px;
  left: calc(50% - 8px);
  content: '';
  height: 16px;
  width: 16px;
  transform: rotate(45deg);
  background-color: #484848;
}

.section-events-list .event .text {
  display: block;
  line-height: 28px;
  width: 100%;
  padding: 0 50px;
  font-family: 'interstate';
  font-weight: 700;
  font-size: 22px;
  color: #f5f5f5;
}

.section-events-list .event .place {
  line-height: 55px;
  font-family: 'avenirBook';
  font-weight: 400;
  font-size: 16px;
  color: #f5f5f5;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.section-events-list .event .place i {
  margin-right: 7.5px;
  font-size: 20px;
  color: #df5952;
}

.section-events-list .event .date {
  margin-bottom: 10px;
  font-family: 'interstateCond';
  font-weight: 700;
  font-size: 20px;
  color: #df5952;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  text-align: center;
  transition: all 0.25s ease-in-out;
}
.section-events-list .event:hover .date {
  color: #fff;
}
.section-events-list .event.large:hover .date {
  color: #df5952;
}

@media screen and (max-width: 768px) {
  .section-events-list .event {
    display: block;
    /*height: 360px;*/
    width: 100%;
    margin: 0 0 20px;
  }
  .section-events-list .event .img {
    /*height: 250px;*/
    width: 100%;
  }
  .section-events-list .event .dialog-start {
    /*height: 100px;*/
    width: calc(100% - 30px);
    /*margin: 0 15px;*/
    /*padding-top: 20px;*/
  }
  .section-events-list .event .dialog-end {
    /*height: 55px;*/
    /*line-height: 55px;*/
    width: calc(100% - 30px);
    /*margin: 0 15px 20px;*/
  }

  .section-events-list .event:hover .img::after {
    background-color: rgba(0, 0, 0, 0.25);
  }
  .section-events-list .event:hover .info {
    pointer-events: none;
    top: -100px;
  }
  .section-events-list .event:hover .date::after {
    background-color: #e0e0e0;
  }
  .section-events-list .event:hover .date {
    color: #df5952;
  }
}
