.storyCard {
  max-width: 100%;
  background: white;
  border-radius: 1em;
  text-align: center;
  vertical-align: middle;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.storyCard b {
  color: #486CB5;
}

.contact_button {
  display: inline-block;
  width: 238px !important;
  background: white;
  padding: 1em;
  font-size: 1.25rem;
  border-radius: 1em;
  text-align: center;
  -webkit-box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.22);
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.22);
  -webkit-transition: 160ms all;
  transition: 160ms all;
  -webkit-perspective: 600px;
  perspective: 600px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
}

.contact_button:hover {
  -webkit-box-shadow: 0px 6px 18px 0px rgba(0, 0, 0, 0.22);
  box-shadow: 0px 6px 18px 0px rgba(0, 0, 0, 0.22);
  opacity: 0;
  -webkit-transform: scale(1.025) rotateZ(0deg);
  transform: scale(1.025) rotateZ(0deg);
  -webkit-transition: 260ms all;
  transition: 260ms all;
  opacity: 1;
}

.contact_button:active {
  -webkit-box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.22);
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.22);
  -webkit-transform: perspective(600px) scale(1.02) translateZ(-25px) rotateX(5deg);
  transform: perspective(600px) scale(1.02) translateZ(-25px) rotateX(5deg);
  -webkit-transition: 120ms all;
  transition: 120ms all;
  background: #486CB5;
  color: white;
}

.contact_button:active > svg path {
  fill: white;
}

.email_button {
  display: inline-block;
}

.contact_content {
  padding: 3em;
}

.contact_button svg {
  width: 4em;
  height: 4em;
}

.contact_divider {
  height: 140px;
  margin-top: 6px;
  width: 2px;
  border-radius: 2px;
  background: #ddd;
  display: inline-block;
  margin-left: 3em;
  margin-right: 3em;
}

.email {
  text-align: center;
}

.contact_button p {
  font-size: 0.8em;
}

.timeline {
  position: relative;
  padding-left: 4em;
  padding-right: 4em;
}

.timeline svg {
  width: 100%;
}

.avatar {
  display: inline-block;
  padding: 1em;
  font-size: 2rem;
  line-height: 1.1em;
  vertical-align: middle;
  margin: 1em;
}

.quoteWrapper {
  display: inline-block;
  width: 60%;
  height: 100%;
  vertical-align: middle;
}

.imageLabel {
  text-align: center;
}

.imageLabel span {
  font-size: 0.5em;
}

#clipboard_button {
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
}

.avatarImage {
  width: 5em;
  height: 5em;
  border-radius: 50%;
  display: inline-block;
  -o-object-fit: cover;
     object-fit: cover;
  text-align: center;
  margin-bottom: 0.5em;
}

.quote {
  height: 100%;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .contact_divider {
    display: none;
  }
  .contact_button {
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .contact_content {
    padding: 0;
  }
  .timeline {
    display: none;
  }
  .quote {
    margin-bottom: 2em;
  }
}
/*# sourceMappingURL=contact.css.map */