.btn,
.button-primary {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .5em 2em .5em;
  transition: all .3s;
  font-weight: 900;
  background: transparent;
  color: #3A3A3A;
  border: 1px solid;

}
.btn + .btn {
  margin-left: 1em;
}
.btn--full {
  display: block;
  text-align: center;
  width: 100%;
}
.btn--facebook {
  color: #3b5994;
}
.btn--disabled {
  color: #eee;
}
button.btn {
  -webkit-appearance: none;
  border-radius: 0!important;
  display: inline-block!important;
  padding: .5em 1em!important;
  font-size: 1em;
  line-height: 1em;
  color: #137ADC;
  font-weight: normal;
}

.btn:hover {
  color: #1787c6!important;
  border-color: #1787c6;
}
nav .btn:hover {
  background: #2799E0;
}

input[type=email] {
  border-radius: 0;
  font-family: Lato, sans-serif;
  border: none;
  border-bottom: 2px solid #ccc;
}
input[type=email]:focus {
  outline: none;
  border: none;
  border-bottom: 2px solid #268CDE;
}

.text--invert {
  color: #fff;
}
.text--superline {
  text-transform: uppercase;
  letter-spacing: 1px;
}


.card {
  background-image: linear-gradient(to bottom, #e6eff2, #fff);
  box-shadow: 0 15px 35px rgba(0,0,0,0.13), 0 0 5px rgba(0,0,0,.05);
  padding: 3em;
}
.card h2 {
  font-weight: 300;
}
.card h2 + p {
  font-size: 1em;
}


.row--reverse {
  display: flex;
  flex-direction: row-reverse
}
.columns--edge {
  box-sizing: border-box;
  padding-right: 30px;
  border-right: 1px solid #ccc;
}

.section--background {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 3200px auto;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}