@keyframes fadeInUp {
  from {
    transform: translate3d(0,40px,0)
  }
  to {
    transform: translate3d(0,0,0);
    opacity: 1
  }
}

@-webkit-keyframes fadeInUp {
  from {
    transform: translate3d(0,40px,0)
  }
  to {
    transform: translate3d(0,0,0);
    opacity: 1
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both
}

.animatedFadeInUp {
  opacity: 0
}

.fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}

.media-kits-nav {
  display: block;
  margin-bottom: 25px;
  text-align: center;
}

.media-kit-tab-link {
  color: #444;
  font-weight: bold;
  margin-right: 25px;
}

.media-kit-tab-link.active {
  color: #4860f1 !important;
  border-bottom: solid 4px #4860f1;
  font-weight: bold;
}

.media-kit-tab-content {
  border: 1px solid #e6e6e6;
  background-color: #fafafc;
  border-radius: 5px;
  padding: 35px;
  display: none;
}

.media-kit-tab-content h3 {
  font-weight: bold;
  margin-bottom: .5px solid lightgrey;
}

.media-kit-tab-content.active {
  display: block;
}

.media-kit {
  background-color: white;
  border: .5px solid lightgrey;
  padding: 30px;
  margin-bottom: 30px;
}

.media-kit h3 {
  font-size: 16px;
  padding-bottom: 10px;
  margin: 0 0 15px;
  border-bottom: 1px solid #e6e6e6;
}

.media-kit h4 {
  font-size: 15px;
  font-weight: bold;
}

.media-kit-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.media-kit-button {
  display: block;  
  width: 90%;
  max-width: 200px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #4865ee;
  border: 1px solid #4865ee;
  padding: 4px 0px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-transition-duration: .2s;
      -o-transition-duration: .2s;
          transition-duration: .2s;
}

.media-kit-button:hover {
  background-color: #4865ee;
  color: white;
}

.media-kit-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f2f2f2;
  margin-bottom: 10px;
}


@media (max-width: 767px) {
  .media-kit {
    margin-bottom: 30px;
  }
  .media-kit-grid {
    display: block;
  }
  .media-kit-button {
    margin-left: auto;
    margin-right: auto;
  }
}