* {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Hind;
  line-height: 1.75rem;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: #fff;
}

.list {
  list-style: none;
}

.list--disc {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.2rem;
}

a {
  color: #777;
}

p, ul, ol {
  padding-bottom: 1.75rem;
}

p:last-child,
ul:last-child,
ol:last-child {
  padding-bottom: 0;
}

/* View */

.view {
  background-color: #fff;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}


/* Header */

.header {
  background: url(ray.jpg) top center no-repeat;
  background-size: cover;

}

.header__image {
  width: 80%;
  margin: 0 auto;
  padding: 2.5rem 1rem 9rem 1rem;
  text-align: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header__image img {
  width: 60%;
  align-self: flex-end;
}

@media screen and (min-width: 480px) {
  .header__image {
    padding: 3rem 1rem 10rem 1rem;
  }
}

@media screen and (min-width: 640px) {
  .header__image {
    width: 70%;
    padding: 4rem 2rem 15rem 2rem;
  }
}

/* Title */

.title {
  font-family: Oswald;
  line-height: 2.5rem;
  font-size: 2rem;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  position: relative;
  font-weight: normal;
}

.title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: #666;
  width: 48px;
  height: 3px;
}

.title--accent:after {
  background: #ea6b3f;
}

.title--highlight:after {
  background: #92bf5c;
}

.title--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.title--center:after {
  left: 50%;
  margin-left: -24px;
}


/* Button */

.button {
  font-family: Oswald;
  line-height: 1rem;
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  background-color: transparent;
  text-align: center;
}

.button--center {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin: 0 auto;
}

.button--right {
  margin-left: auto;
  -ms-flex-item-align: end;
      align-self: flex-end;
}


/* Skew */

.skew {
  width: 100%;
  position: relative;
  padding: 3rem 0 1rem 0;
  background-color: #fff;
  -webkit-transform: skew(0, -2deg);
      -ms-transform: skew(0, -2deg);
          transform: skew(0, -2deg);
}

.skew--light {
  background-color: #f2f2f2;
}

.skew--highlight {
  background-color: #92bf5c;
  color: #fff;
}

.skew--highlight a {
  color: #fff;
}

.skew--neutral {
  background-color: #fff;
}

.skew--first {
  margin-top: -1.5rem;
}

.skew--last {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.skew--last:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  right: 0;
  -webkit-transform: skew(0, 2deg);
      -ms-transform: skew(0, 2deg);
          transform: skew(0, 2deg);
}


/* Grid */

.row {
  -webkit-transform: skew(0, 2deg);
      -ms-transform: skew(0, 2deg);
          transform: skew(0, 2deg);
  margin: 0 auto;
  width: 80%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cell {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 1rem 2rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cell--center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


.line {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
  justify-content: space-between
}

/* Form */

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -0.4rem;
  margin-right: -0.4rem;
}

.form__control {
  padding: .4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__input {
  width: 100%;
  padding: .5rem .5rem .3rem .5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

textarea {
  max-height: 174px;
}

/* Legal */

.legal {
  align-self: flex-end;
  text-align: right;
  position: relative;
  padding-top: 1rem;
}

.legal:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: #ea6b3f;
  width: 48px;
  height: 3px;
}

.legal__link {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .8rem;
  line-height: 1.25rem;
  padding-left: .5rem;
}

.legal__link:hover {
  text-decoration: underline;
}

/* Logo link */

.logo__link {
  padding-top: 1.1rem;
}

@media screen and (min-width: 640px) {
  .row {
    width: 70%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .cell--40 {
    width: 40%;
  }

  .cell--60 {
    width: 60%;
  }

  .form__control--50 {
    width: 50%;
  }

  .title--right:after {
    left: auto;
    right: 0;
  }

  .cell--right {
    text-align: right;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
}