.material-card {
  height: 100%;
  background-color: #2C2E2F !important;
  text-align: center;
  padding: 24px 8px;
  position: relative;
  cursor: pointer;
  display: block;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  z-index: 1;
}

.material-card:hover::before {
  opacity: 1;
}
.material-card::before {
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#2c2e2f)) padding-box, conic-gradient( from 180deg at 50% 50%, #ff5758 0deg, #0527f2 123.75deg, #e6e6eb 236.25deg, #71e066 330deg, #ff5758 360deg ) border-box;
  border: 3px solid transparent;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.material-card .material-card-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.material-card .material-card-download {
  height: 100px;
  width: 100px;
}

.material-card .material-card-title {
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 3px;
  color: white;
}

.material-card .material-card-description {
  font-size: 12px;
  color: rgba(134, 142, 150, 1);
  margin-bottom: 0;
}

.material-card .material-card-title,
.material-card .material-card-description {
  font-family: Montserrat;
}
