/* COLORS */

/*
DARKEST: #051720
DARK: #212428
MEDIUM: #1e3c4a
LIGHT: #607e8c
LIGHTEST: #dcdee5
SIGNAL: #c95a42
LIGHT_TYPE: #bdc5d1
*/

/* TYPOGRAPHY */

html, body {
  height: 100%;
  line-height: normal;
  color: #051720;
  font-family: serif;
  font-size: 110%;
}

body.dark {
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 12px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1rem;
}

p {
  margin-bottom: 12px;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #c95a42;
}

a.light {
  color: #607e8c;
}


/* CONTAINERS */

.th.container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  min-height: 100%;
  align-items: stretch;
}

.th.container .content {
  display: flex;
  flex-direction: column;
}

.th.container .content.shadowed {
  /* -webkit-box-shadow: 0px 0px 100px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 100px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 100px 0px rgba(0,0,0,0.5); */
}

.th.section {
  padding: 3rem 2rem;
}

.th.section.half, .th.section.full {
  width: 100%;
}

.th.toolbar.horizontal > *:not(:last-child) {
  margin-right: 12px;
}

.th.toolbar.vertical > *:not(:last-child) {
  display: block;
  margin-bottom: 8px;
}

.th.form label, .th.form input, .th.form textarea {
  display: block;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 16px;
}

.th.form input, .th.form textarea {
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 0;
  border: 1px solid #dcdee5;
}

.th.form textarea {
  min-height: 200px;
}

.th.form label span {
  font-size: 0.85rem;
}

.g-recaptcha div {
  overflow: hidden;
}

button {
  background: #c95a42;
  border: none;
  border-radius: 3px;
  color: #fff;
  padding: 0.75rem;
  margin: 12px 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  cursor: pointer;
}

@media (min-width: 768px) {
  .th.container .content {
    flex-direction: row;
  }

  .th.section.half {
    width: 50%;
  }
}

@media (min-width: 1024px) {
}

@media (min-width: 1280px) {

  .th.container {
    align-items: center;
  }

  .th.section {
    padding: 5rem 5rem;
  }
}