@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.media_sec .heading {
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .media_sec .heading {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 540px) {
  .media_sec .heading {
    margin-bottom: 30px;
  }
}
.media_sec .main_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .media_sec .main_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .media_sec .main_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.media_sec .main_wrapper .media_col {
  cursor: pointer;
  display: block;
  line-height: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=media.css.map */