@charset "utf-8";
.panel-doc {
  transition: all .3s ease;
  border-radius: 10px;
}

.panel-doc:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.panel-doc .panel-heading {
  background: linear-gradient(135deg, #0d6efd, #20c997);
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.panel-doc .panel-title {
  font-size: 14px;
  line-height: 1.4;
}

.doc-link {
  display: inline-block;
  margin-bottom: 15px;
  color: #333;
  text-decoration: none;
  transition: all .3s ease;
}

.doc-link:hover {
  color: #0d6efd;
  text-decoration: none;
}

.doc-link .fa-stack {
  transition: transform .3s ease;
}

.doc-link:hover .fa-stack {
  transform: scale(1.15) rotate(3deg);
}

.doc-text {
  margin-top: 5px;
  font-weight: bold;
}

}


