/* Max a number out by
* 	@param : Must be an rem number
*	@param : must be a PX number
*/
/*  Round a number to the nearist multiple of another 
*	
*	@param : Base number to round
* 	@param : Multiple to round to
*
*/
/*  Easily equate exponents 
*	
*	@param : Base
* 	@param : Power
*
*/
/*  Easily calculate multiples of the baseline. 
*	
*	@param : Multiplyer
* 	@param : Baseline number
*
*/
/*  Easily calculate the various font sizes based on $base-font-size and $font-ratio. 
*	
*	@param : Multiplyer
* 	@param : Base font size
*	@param : Ratio to scale by
*
*/
/* Colors:

	* Always use HSL. Example. ([0 - 360], [1-100], [1-100]);
	* Keep the hierarchy and values in order.
*/
/* Mixins:

* Use mixins like so: @include MIXINNAME;	
		
*/
/* Functions:
*
* 	fontsize([0-5]);
*
* 	baseline([INTIGER TO MULTIPLY BASELINE SIZE BY]); Use this for all padding and margins and sizing. Do not use a pixel value;
*
*/
/* ===========================================
*
*	  1.0 Typography
*
*  ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Open Sans, sans-serif;
  color: #26140d;
}

p {
  color: #737372;
  font-family: Open Sans, sans-serif;
}

h4,
h5,
strong {
  font-weight: bold;
  color: #26140d;
}

.caption {
  font-weight: 100;
}

@media (min-width: 800px) {
  .text-spacer {
    padding-left: 3.236rem;
    border-left: 8.09rem solid #b1e7d8;
  }
}

/* ===========================================
*
*	  2.0  GUI
*
*  ============================================ */
a {
  color: #41aa8e;
}

.btn,
.Field--short-form {
  border-radius: 0.4045rem;
}

.btn {
  transition: all .3s;
  background: #54c9aa;
}

.btn:hover {
  background: #70d2b8;
  -webkit-transform: translateY(-0.26967rem);
      -ms-transform: translateY(-0.26967rem);
          transform: translateY(-0.26967rem);
  box-shadow: 0 0.26967rem 5px rgba(0, 0, 0, 0.15);
}

.btn .fa:before {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.618rem;
  height: 2.427rem;
  width: 2.427rem;
  background: #1b2932;
  border-radius: 100%;
  text-align: center;
  line-height: 2.427rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn--color-alt {
  background: #2d4453;
}

.btn--color-alt:hover {
  background: #507a95;
}

.btn--outline {
  background: none;
  border-color: #969a9c;
  color: #737372;
}

.btn--outline:hover {
  background: #2d4453;
  color: #f6f4f3;
  border-color: #2d4453;
}

.btn--submit {
  padding: 0 6.472rem;
  font-weight: bold;
  cursor: pointer;
  background: #7a9fb8;
  background: -moz-linear-gradient(45deg, #7a9fb8 0%, #67b4b1 100%);
  background: -webkit-linear-gradient(45deg, #7a9fb8 0%, #67b4b1 100%);
  background: linear-gradient(45deg, #7a9fb8 0%, #67b4b1 100%);
}

.btn--submit:hover {
  background: #67b4b1;
  background: -moz-linear-gradient(-45deg, #67b4b1 0%, #7a9fb8 100%);
  background: -webkit-linear-gradient(-45deg, #67b4b1 0%, #7a9fb8 100%);
  background: linear-gradient(135deg, #67b4b1 0%, #7a9fb8 100%);
}

.btn--submit:hover:after, .btn--submit:hover:before {
  width: 0;
}

.btn--submit:before {
  content: ' ';
  position: absolute;
  width: 500%;
  top: 50%;
  right: calc(100% + 5px);
  border-top: 1px solid #b1e7d8;
  transition: all 0.1s;
}

.btn--submit:after {
  content: ' ';
  position: absolute;
  width: 500%;
  top: 50%;
  left: calc(100% + 5px);
  border-top: 1px solid #b1e7d8;
  transition: all 0.1s;
}

.Field.error label {
  color: salmon;
}

.Field label.error {
  background: #41aa8e;
  color: #f6f4f3;
  border-radius: 0 0 0.4045rem 0.4045rem;
}

.Field--short-form.is-active .fa {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.overlay {
  display: none;
}

@media (min-width: 1024px) {
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.8;
  }
}

/* ===========================================
*
*	  3.0  Modules
*
*  ============================================ */
.Primary-header {
  background: #b1e7d8;
  overflow: hidden;
}

.Primary-header .logo {
  width: 8.09rem;
  height: 8.09rem;
  padding: 0.809rem;
  background: #2d4453;
}

.Primary-header .logo__image {
  max-height: 6.472rem;
}

.Primary-header__navigation {
  max-width: 980px;
  margin: 0 auto;
  float: none;
  line-height: 6.472rem;
  text-align: center;
}

.Primary-header__navigation a {
  display: inline-block;
  position: relative;
  padding: 0.809rem 1.618rem;
  line-height: 1.618rem;
  text-transform: uppercase;
  transition: all .3s;
  border: 1px solid #b1e7d8;
  border-radius: 0.4045rem;
}

.Primary-header__navigation a:hover {
  border: 1px solid #54c9aa;
}

.Primary-header__navigation .is-active a {
  border: 1px solid #54c9aa;
}

.Primary-header__navigation .is-active a:after {
  content: ' ';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 100%;
  border-left: 1px solid #54c9aa;
}

.blurb {
  position: relative;
  z-index: -1;
}

.blurb.is-out-viewport {
  -webkit-transform: translateY(130%);
      -ms-transform: translateY(130%);
          transform: translateY(130%);
}

.blurb__icon {
  position: relative;
  border-color: #54c9aa;
  border-width: 1px;
  color: #2d4453;
}

.blurb__icon:after {
  content: ' ';
  position: absolute;
  left: calc(50% - 1px);
  top: 100%;
  height: 1.618rem;
  border-left: 1px solid #54c9aa;
}

@media (min-width: 1024px) {
  .blurb__title {
    position: relative;
    text-transform: uppercase;
  }
  .blurb__title:after {
    content: ' ';
    position: absolute;
    left: calc(50% - 1px);
    top: 100%;
    height: 6.472rem;
    border-left: 1px solid #54c9aa;
  }
}

.Primary-footer__navigation {
  background: #1b2932;
  color: #f6f4f3;
  line-height: 4.854rem;
  text-align: center;
}

.Primary-footer__navigation li {
  display: inline-block;
}

.Primary-footer__navigation a {
  padding: 0.809rem;
  color: #f6f4f3;
}

.Cta-form {
  text-align: center;
  width: calc(100% + 3.236rem);
  padding: 1.618rem;
  margin-top: -1.618rem;
  margin-bottom: -1.618rem;
  margin-left: -1.618rem;
}

@media (min-width: 1024px) {
  .Cta-form.is-active {
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background: rgba(27, 41, 50, 0.95);
    border-radius: 0.4045rem;
  }
  .Cta-form.is-active .btn:after,
  .Cta-form.is-active .btn:before {
    width: 0;
  }
}

.Cta-form .Field--optin {
  text-align: left;
  font-size: 12px;
  color: #f6f4f3;
  margin-bottom: 1.618rem;
}

.Modal {
  box-shadow: 0 0 0.809rem rgba(0, 0, 0, 0.15);
}

/* ===========================================
*
*	4.0  Sections
*
*  ============================================ */
section {
  padding-top: 4.854rem;
  padding-bottom: 4.854rem;
}

/*
*	4.1 Hero Header
*/
.Hero-header {
  position: relative;
  padding: 6.472rem 0;
  color: #f6f4f3;
  overflow: hidden;
  background: #2d4453;
  background: -moz-linear-gradient(45deg, #2d4453 0%, #1b2932 100%);
  background: -webkit-linear-gradient(45deg, #2d4453 0%, #1b2932 100%);
  background: linear-gradient(45deg, #2d4453 0%, #1b2932 100%);
}

.Hero-header:before {
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/hero-bg.jpg);
  background-position: center center;
  background-size: cover;
  opacity: 1;
  z-index: 0;
  opacity: 0.45;
}

.Hero-header h1,
.Hero-header h2,
.Hero-header h3 {
  color: inherit;
}

.Hero-header .contain {
  z-index: 1;
  position: relative;
}

.Hero-header .highlight {
  color: #b1e7d8;
}

.Hero-header p {
  color: #f6f4f3;
  font-size: 1.4rem;
}

/* 4.2 Page Specific Sections
*
*/
.Leader-section {
  text-align: center;
}

.Leader-section .caption {
  margin-bottom: 3.236rem;
}

.Leader-section--about {
  text-align: left;
}

.Leader-section--about h1 {
  text-align: center;
}

.blurb-row {
  margin-top: 6.472rem;
}

.Image-text-section-1,
.Image-text-section-2 {
  padding: 0;
}

.Image-text-section-1 .Image-text__text,
.Image-text-section-2 .Image-text__text {
  background: #2d4453;
  color: #f6f4f3;
}

.Image-text-section-1 h1,
.Image-text-section-1 h2,
.Image-text-section-1 h3,
.Image-text-section-1 h5,
.Image-text-section-1 h6,
.Image-text-section-2 h1,
.Image-text-section-2 h2,
.Image-text-section-2 h3,
.Image-text-section-2 h5,
.Image-text-section-2 h6 {
  color: #b1e7d8;
}

.Image-text-section-1 p,
.Image-text-section-2 p {
  color: #f6f4f3;
}

.Info-section {
  background: #f6f4f3;
}

.How-section {
  text-align: center;
  background: #f6f4f3;
}

.How-section .btn {
  min-width: 33%;
  margin: 1.618rem;
}

.Requirements-section {
  border-top: 1px solid #b1e7d8;
}

.Contact-form .btn {
  margin-top: 1.618rem;
}

.Disclaimer-section p {
  font-size: 12px;
}

/* 4.4 Generic
*
*/
.Section--border {
  border-bottom: 1px solid #b1e7d8;
}

.Section--dark {
  background: #f6f4f3;
}

/* ===========================================
*
*	  5.0  Breakpoints
*
*  ============================================ */

@media (max-width: 600px) {
  .Primary-header {
    height: 8.09rem;
    overflow: hidden;
  }
}

table {
  font-family: Open Sans, sans-serif;
  color: #636769;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 3.236rem;
}

th {
  background-color: #9cb7c9;
}

td, th {
  border: 1px solid #2d4453;
  text-align: center;
  padding: 8px;
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 2.25rem;
}

.unsub {
  width: 50%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.618rem;
}

/*# sourceMappingURL=maps/theme.css.map */
