      #fm-logo {
        height: 22px; 
        margin-top: 15px; 
        margin-right: 15px;
      }

      .hidden.menu {
        display: none;
      }


      .card, .link.step {
        cursor: default !important;
      }

      .no-cursor {
        cursor: default !important;
      }

      #sm-logo {
        height: 36px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 25px;
    border-radius: 3px;
      }

      #demo {
        font-size: 2em;
      }

      #footer-logo {
        border-radius: 4px;
      }

      .link.step .card .icon {
        margin: 0px auto;
      }

      .link.step .card .header {
        margin: 5px !important; 
        width: auto !important; 
        display: inline-block !important; 
        margin-left: 10px !important;
      }

      .horizontal.list .item .content {
        text-align: left !important;
      }

      .feature.list .item .content {
        display: inline-block !important;
      }

      .card .ui.progress.tiny {
        margin-bottom: 1.5em !important;
      }

      .ui.icon.mail {
        margin-left: 20px;
      }

      .card a, .ui.list .item a.header {
color: #666 !important;      }

      .ui.list .item a.header {
        margin-bottom: 0.5em;
      }

      .link.step {
        align-items: flex-start;
        display: block !important;
      }

      .link.step .card {
        width: 100% !important;
      }

      h1 {
        text-shadow: 0px 2px 1px rgba(0,0,0,0.2); 
        margin-top: 150px !important;
      }

      h2 {
        margin-top: 0px !important; 
        text-shadow: 0px 2px 1px rgba(0,0,0,0.2);
      }

      #main-logo {
      border: 4px solid rgba(0,0,0,0.1); 
      max-width: 100%; 
      border-radius: 5px; 
      margin-top: 150px; 
      font-size: 4em; 
      width: 130px;
      }

      .large.secondary.menu {
        background: #E8E8E8; 
        border-radius: 4px;
        box-shadow: 0px 2px 5px rgba(0,0,0,0.4);
      }

      .masthead.segment {
        min-height: 600px;
        padding: 1em 0em;
        background-image: url('../images/header.png') !important; 
        background-size: cover !important;
      }
      .masthead .logo.item img {
        margin-right: 1em;
      }
      .masthead .ui.menu .ui.button {
        margin-left: 0.5em;
      }
      .masthead h1.ui.header {
        margin-top: 3em;
        margin-bottom: 0em;
        font-size: 4em;
        font-weight: normal;
      }
      .masthead h2 {
        font-size: 1.7em;
        font-weight: normal;
      }

      .ui.vertical.stripe {
        padding: 8em 0em;
      }
      .ui.vertical.stripe h3 {
        font-size: 2em;
      }
      .ui.vertical.stripe .button + h3,
      .ui.vertical.stripe p + h3 {
        margin-top: 3em;
      }
      .ui.vertical.stripe .floated.image {
        clear: both;
      }
      .ui.vertical.stripe p {
        font-size: 1.33em;
      }
      .ui.vertical.stripe .horizontal.divider {
        margin: 3em 0em;
      }

      .quote.stripe.segment {
        padding: 0em;
      }
      .quote.stripe.segment .grid .column {
        padding-top: 5em;
        padding-bottom: 5em;
      }

      .footer.segment {
        padding: 5em 0em;
      }

      .secondary.menu .toc.item {
        display: none;
      }

      .feature.list .item {
            margin: 10px 0px;
      }

      .feature.list .item .content {
        width: 239px;
      }

      .feature.list .item i {
        vertical-align: top;
      }

      .ui.cards>.card {
        margin: 2em 2em;
      }

      .card .ribbon.header {
        font-size: 1em;
      }

      .ui.cards>.card a.image {
        padding: 1em;
        text-align: center;
      }

      .ui.cards>.card i.icon {
        color: #d8d8d8;
      }

      .workflow-card .ui.card i {
        width: 100% !important;
        margin: 0px;
      }

      @media only screen and (max-width: 700px) {
        .hide-on-mobile {
          display: none !important;
        }
        .left-on-mobile {
          text-align: left;
        }
        .ui.horizontal.list.left-on-mobile:not(.celled)>.item:first-child {
          margin-left: 1em !important;
          padding-left: 1em !important;
        }
        .ui.fixed.menu {
          display: none !important;
        }
        .secondary.pointing.menu .item,
        .secondary.pointing.menu .menu {
          display: none;
        }
        .secondary.pointing.menu .toc.item {
          display: block;
        }
        .masthead.segment {
          min-height: 350px;
        }
        .masthead h1.ui.header {
          font-size: 2em;
          margin-top: 1.5em;
        }
        .masthead h2 {
          margin-top: 0.5em;
          font-size: 1.5em;
        }
      }

 @keyframes shine{
  10% {
    opacity: 1;
    top: -30%;
    left: -30%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
  }
  100% {
    opacity: 0;
    top: -30%;
    left: -30%;
    transition-property: left, top, opacity;
  }
}

/*#main-logo {
    position: relative;
  overflow: hidden;
  display: inline-block;
}
*/
#main-logo::before {
 animation: shine 1s ease-in-out  infinite;
  animation-fill-mode: forwards;  
  content: "";
  position: absolute;
  top: -110%;
  left: -210%;
  width: 200%;
  height: 200%;
  opacity: 0;
  transform: rotate(30deg);
  
  background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right, 
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0.0) 100%
  );
}