.btn{
  cursor: pointer;
  display: inline-block;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 1.25rem 2rem;
  text-align: center;
  text-transform: uppercase;
  transition: all 200ms;
  border-radius: 0;
}

.btn-primary{
  color: rgb(255, 255, 255);
  background: #c00;
  border: 1px solid #c00;

  &:hover, &:focus, &.focus{
    background: #9d1b22;
    color: #fff;
    border: 1px solid #9d1b22;
  }

}

.btn-secondary{
  background: #fff;
  color: #c00;
  border: 1px solid #D8D8D8;

  &:hover, &:focus, &.focus{
    border-color: transparent;
    background: #9d1b22;
    color: #fff;
  }
}

