/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/*...VARIABLE...*/
#main .content {
  padding-top: 40px;
}

#main .content .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  #main .content .inner {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
}

#main .content .inner .item {
  width: 530px;
  border: 1px solid #EEEEEE;
  background-color: #FFF;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1100px) {
  #main .content .inner .item {
    width: 48%;
  }
}

@media screen and (max-width: 767px) {
  #main .content .inner .item {
    width: 480px;
  }
}

#main .content .inner .item a {
  padding: 20px;
  display: block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#main .content .inner .item a .heading {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #EEE;
  margin-bottom: 20px;
}

#main .content .inner .item a .heading img {
  width: 32px;
  margin-right: 15px;
}

@media screen and (max-width: 360px) {
  #main .content .inner .item a .heading img {
    width: 25px;
  }
}

#main .content .inner .item a .heading img.hvr {
  display: none;
}

#main .content .inner .item a .heading h2 {
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 360px) {
  #main .content .inner .item a .heading h2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 320px) {
  #main .content .inner .item a .heading h2 {
    font-size: 16px;
  }
}

#main .content .inner .item a .image {
  width: 100%;
  height: 198px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

@media screen and (max-width: 1100px) {
  #main .content .inner .item a .image {
    height: 17vw;
  }
}

@media screen and (max-width: 767px) {
  #main .content .inner .item a .image {
    height: 198px;
  }
}

@media screen and (max-width: 480px) {
  #main .content .inner .item a .image {
    height: 35vw;
  }
}

#main .content .inner .item a .image.img1 {
  background-image: url(../../assets/img/event/event1.png);
}

#main .content .inner .item a .image.img2 {
  background-image: url(../../assets/img/event/event2.png);
}

#main .content .inner .item a .image.img3 {
  background-image: url(../../assets/img/event/event3.png);
}

#main .content .inner .item a .image.img4 {
  background-image: url(../../assets/img/event/event4.png);
}

@media screen and (min-width: 768px) {
  #main .content .inner .item:hover {
    background-color: #0584C5;
    border: 1px solid #0584C5;
  }
  #main .content .inner .item:hover a .heading {
    border-bottom: 1px solid #FFF;
  }
  #main .content .inner .item:hover a .heading h2 {
    color: #FFF;
  }
  #main .content .inner .item:hover a .heading img.noHvr {
    display: none;
  }
  #main .content .inner .item:hover a .heading img.hvr {
    display: block;
  }
}

/*# sourceMappingURL=event.css.map */