.display-card {
}

.display-card-inner {
  color: white;
  background: #110057;
  padding: 1em 0.5em 3em;
  font-size: 1.5em;
}
.display-card.description .display-card-inner {
  color: #110057;
  background: #F7F5F9; 
}

.display-card-inner:after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #FF003B, #DF36FF);
  margin: 2.5em auto 0;
}

.display-card-notch {
  display: flex;
  height: 36px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.display-card-notch:after {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 90000px #110057;
  content: "";
  height: 83px;
  margin-top: -56px;
  position: absolute;
  width: 83px;
}
.display-card.description .display-card-notch:after { box-shadow: 0 0 0 90000px #f7f5f9; }

.display-card-container {
  padding: 0 32px;
}

.display-card-icon {
  display: block;
  margin: auto;
}

.display-card-title {
  font-family: rector;
  font-weight: 500;
  font-size: 40px
  margin: .5em 0;
  text-align: center;
}

.quote-large {
  font-size: 32px;
  line-height: 40px;
  text-align: center;
}
.display-card-contributer {
  font-size: 18px;
  text-align: center;
}


/* CH Theme Overrides */

.ch-theme .display-card-title {
  font-family: "ABC Social", sans-serif;
}



/* Media Query Breakpoints */


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
  .display-card-container {
    max-width: 1000px;
    margin: auto;
  }
  .display-card-title {
    font-size: 52px
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 
  .display-card-container {
    max-width: 1000px;
  }

}

