/***************************/
/*       DESCRIPTION       */
/***************************/
/*
  A `flexbox` is a container whose direct siblings are rendered
  so they fill the space regardless of their set widths / heights.

  A `flexbox-horizontal` creates a horizontal container, and a 
  `flexbox-vertical` builds a vertical one. 

  An individual descendent of one of these containers can be 
  given a custom / percentage width with `flexbox-cell(value)` 
  for more control over the layout of the container.

  A `flexbox-horizontal-text` function exists to create a container
  with different responsive rules. While all horizontal containers
  degrade to vertical ones as the window size decreases, a `text`
  version assumes that all elements are inline ones, and should
  never end up being displayed vertically. This can be seen in the
  `.list-item` definition, where we want the name AND value to 
  remain on the same lines.

  A `flexbox-header` is similar, however is also designed so that, 
  at normal screen widths, it does not completely extend from end 
  to end of its container. Only as the screen width decreases and
  the header runs out of room should it stick to both sides.
*/
/*********************/
/*       USAGE       */
/*********************/
/*
  Here is a usage example:;

    <div class="demo">
      <ul class="list">
        <li class="list-item">
          <p>Name</p>
          <p>Value</p>
        </li>
        <li class="list-item">
          <p>Name</p>
          <p>Value</p>
        </li>
      </ul>
      <div class="chart"></div>
    </div>

  If we wanted `.list` and `.chart` to fill the
  space of `.demo` at all times:

    .demo {
      @include flexbox-horizontal();
    }

  To make the contents 1/3 :: 2/3 (not unlike 
  the list :: chart widths on the homepage):

    .list {
      @include flexbox-cell(33%);
    }

  Now the `.list` and `.chart` do not compete
  for an equal amount of space, but display in
  a 2/3 formation. 

  If we wanted `.list` to display its own items
  flexibly as well:

    .list {
      @include flexbox-vertical();
    }

  Now each item will fit into the height of the box.

  We can streamline the amount of CSS that
  goes into centering the values of the list
  if we do the following:

    .list-item {
      @include flexbox-horizontal-text();
    }

  Now values will appear centered no matter the
  height of their individual containers.
*/
/******************************/
/*  GENERIC HELPER FUNCTIONS  */
/******************************/
/*********************/
/*  GENERIC FLEXBOX  */
/*********************/
/************************/
/*  FLEXBOX-HORIZONTAL  */
/************************/
/**********************/
/*  FLEXBOX-VERTICAL  */
/**********************/
/*****************************/
/*  FLEXBOX-HORIZONTAL-TEXT  */
/*****************************/
/********************/
/*  FLEXBOX-HEADER  */
/********************/
/************************/
/*  FLEXBOX-NAVIGATION  */
/************************/
/******************/
/*  FLEXBOX-CELL  */
/******************/
/*****************************/
/*  FLEXBOX-NAVIGATION-CELL  */
/*****************************/
/* line 1, ../sass/partials/_global.scss */
p {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 6, ../sass/partials/_global.scss */
a {
  color: white;
  font-size: 16px;
  font-family: 'Proxima Nova';
  text-align: center;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
}
/* line 14, ../sass/partials/_global.scss */
a .blog-share-link {
  color: black;
  text-align: left;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
/* line 20, ../sass/partials/_global.scss */
a:hover .blog-share-link {
  opacity: 0.6;
}
/* line 24, ../sass/partials/_global.scss */
a .thumbnail-title {
  text-align: left;
  color: black;
  font-size: 16px;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
/* line 30, ../sass/partials/_global.scss */
a .thumbnail-title:hover {
  color: #d9232e;
}

/* line 36, ../sass/partials/_global.scss */
.center {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
/* line 161, ../sass/utility/_flexbox.scss */
.center > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* line 45, ../sass/partials/_global.scss */
.section {
  position: relative;
}

/* line 49, ../sass/partials/_global.scss */
.button:nth-child(n) {
  padding: 2px 0 0 0;
  width: 132px;
  background-color: #2F4F4F;
  border-radius: 6px;
  border: 1px solid #2F4F4F;
  outline: none;
  cursor: pointer;
  color: white;
  font-family: 'Proxima Nova';
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 33px;
  -webkit-flex: 0 0 33px;
  -ms-flex: 0 0 33px;
  flex: 0 0 33px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  /* line 49, ../sass/partials/_global.scss */
  .button:nth-child(n) {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
/* line 66, ../sass/partials/_global.scss */
.button:nth-child(n):hover {
  background-color: white;
  color: #2F4F4F;
  border: 1px solid #2F4F4F;
}
/* line 72, ../sass/partials/_global.scss */
.button:nth-child(n).invert {
  background-color: white;
  color: #2F4F4F;
  border: 1px solid #2F4F4F;
}
/* line 77, ../sass/partials/_global.scss */
.button:nth-child(n).invert:hover {
  background-color: #2F4F4F;
  color: white;
  border: 1px solid #2F4F4F;
}
/* line 85, ../sass/partials/_global.scss */
.button:nth-child(n).disabled:hover {
  background-color: #2F4F4F;
  color: white;
  border: 1px solid #2F4F4F;
  cursor: auto;
}

/* line 1, ../sass/partials/_navigation.scss */
.dressler {
  font-family: 'A Jenson Pro';
}

/* line 5, ../sass/partials/_navigation.scss */
.static-navigation {
  position: absolute;
  top: 0;
  right: 55px;
  padding-top: 30px;
  text-align: right;
}
/* line 12, ../sass/partials/_navigation.scss */
.static-navigation > a {
  margin-left: 39px;
  color: #2F4F4F;
  font-size: 16px;
  cursor: pointer;
}

.static-navigation a:active {
  font-weight: bold;
}

.static-navigation > a:hover {
  color: red;
}


@media (max-width: 480px) {
  /* line 12, ../sass/partials/_navigation.scss */
  .static-navigation > a {
    margin-left: 15px;
  }
}

/* line 23, ../sass/partials/_navigation.scss */
.navigation {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: auto;
  min-height: 50px;
  background-color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
/* line 161, ../sass/utility/_flexbox.scss */
.navigation > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 180, ../sass/utility/_flexbox.scss */
.navigation > *:not(:last-child) {
  /*margin-right: 25px;*/
}
@media (max-width: 1200px) {
  /* line 188, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  .navigation *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 193, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).full-data-btn,
  .navigation *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).full-data-btn {
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 197, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn):last-child,
  .navigation *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn):last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) {
  /* line 208, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3) .header,
  .navigation *:first-child:nth-last-child(3) ~ * .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px;
  }
  /* line 161, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3) .header > *,
  .navigation *:first-child:nth-last-child(3) ~ * .header > * {
    margin: 0;
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 212, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3) .header > *,
  .navigation *:first-child:nth-last-child(3) ~ * .header > * {
    -webkit-align-self: auto;
    -moz-align-self: auto;
    -ms-align-self: auto;
    align-self: auto;
  }
  /* line 216, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3) .header > *:first-child,
  .navigation *:first-child:nth-last-child(3) .header > *:last-child,
  .navigation *:first-child:nth-last-child(3) ~ * .header > *:first-child,
  .navigation *:first-child:nth-last-child(3) ~ * .header > *:last-child {
    padding: 0;
  }
}
@media (max-width: 768px) {
  /* line 225, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3),
  .navigation *:first-child:nth-last-child(3) ~ * {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 231, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3):last-child,
  .navigation *:first-child:nth-last-child(3) ~ *:last-child {
    margin-bottom: 0;
  }
  /* line 235, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  .navigation *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 25px;
    margin-bottom: 0;
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 240, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).list,
  .navigation *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).list {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 33%;
    -webkit-flex: 0 0 33%;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  /* line 240, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).list,
  .navigation *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).list {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  /* line 248, ../sass/utility/_flexbox.scss */
  .navigation > * {
    /* @include flex-important(0 0 100%);*/
  }
  /* line 252, ../sass/utility/_flexbox.scss */
  .navigation > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  /* line 262, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  .navigation *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 267, ../sass/utility/_flexbox.scss */
  .navigation *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn):last-child,
  .navigation *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn):last-child {
    margin-bottom: 0;
  }
}
/* line 289, ../sass/utility/_flexbox.scss */
.navigation > * {
  white-space: nowrap;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  align-self: center;
}
/* line 294, ../sass/utility/_flexbox.scss */
.navigation > *:first-child {
  padding-left: 10px;
  text-align: left;
}
/* line 299, ../sass/utility/_flexbox.scss */
.navigation > *:last-child {
  padding-right: 10px;
  text-align: right;
}
@media (max-width: 768px) {
  /* line 305, ../sass/utility/_flexbox.scss */
  .navigation > *:not(:last-child) {
    margin-bottom: 0;
  }
  /* line 309, ../sass/utility/_flexbox.scss */
  .navigation > * {
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
/* line 32, ../sass/partials/_navigation.scss */
.navigation > *:first-child {
  padding-left: 22px;
}
@media (max-width: 480px) {
  /* line 32, ../sass/partials/_navigation.scss */
  .navigation > *:first-child {
    padding-left: 10px;
  }
}
/* line 40, ../sass/partials/_navigation.scss */
.navigation > *:last-child {
  padding-right: 33px;
}
@media (max-width: 480px) {
  /* line 40, ../sass/partials/_navigation.scss */
  .navigation > *:last-child {
    padding-right: 0px;
  }
}
/* line 48, ../sass/partials/_navigation.scss */
.navigation {
  background-color: #5F9EA0;
  pointer-events: auto;
}

/* line 54, ../sass/partials/_navigation.scss */
.navigation-left {
  padding-left: 23px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 161, ../sass/utility/_flexbox.scss */
.navigation-left > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 58, ../sass/partials/_navigation.scss */
.navigation-left > * {
  margin-top: 9px;
  text-align: left;
  font-size: 26px;
}

/* line 65, ../sass/partials/_navigation.scss */
.navigation-right {
  padding-right: 33px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 310px;
  -webkit-flex: 0 0 310px;
  -ms-flex: 0 0 310px;
  flex: 0 0 310px;
}
/* line 161, ../sass/utility/_flexbox.scss */
.navigation-right > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 480px) {
  /* line 65, ../sass/partials/_navigation.scss */
  .navigation-right {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 250px;
    -webkit-flex: 0 0 250px;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
  }
}
/* line 74, ../sass/partials/_navigation.scss */
.navigation-right > a {
  flex: auto;
  position: relative;
}

.navigation-right > a:hover {
  color: red;
}


/* line 78, ../sass/partials/_navigation.scss */
.navigation-right > a::after {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 18px;
  letter-spacing: -0.2px;
  font-weight: bold;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 480px) {
  /* line 78, ../sass/partials/_navigation.scss */
  .navigation-right > a::after {
    padding-left: 11px;
  }
}
/* line 93, ../sass/partials/_navigation.scss */
.navigation-right > a.active::after {
  opacity: 1;
}
/* line 98, ../sass/partials/_navigation.scss */
.navigation-right > #nav-link-1::after {
  
}
/* line 102, ../sass/partials/_navigation.scss */
.navigation-right > #nav-link-2::after {
  
}
/* line 106, ../sass/partials/_navigation.scss */
.navigation-right > #nav-link-3::after {
 
}

/* line 1, ../sass/partials/_landing.scss */
#myCanvas {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 480px) {
  /* line 1, ../sass/partials/_landing.scss */
  #myCanvas {
    opacity: 0.1;
  }
}

/* line 13, ../sass/partials/_landing.scss */
.brand {
  position: absolute;
  margin: 35px 0px 0px 35px;
  width: 78px;
  height: 78px;
  background-image: url("/img/dressler.svg");
  background-size: 100% 100%;
}

/* line 22, ../sass/partials/_landing.scss */
#landing {
  width: 100vw;
  height: 100vh;
}
/* line 26, ../sass/partials/_landing.scss */
#landing > * {
  position: fixed;
}

#contact > * {
  position: fixed;
}

/* line 31, ../sass/partials/_landing.scss */
#landing-inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 161, ../sass/utility/_flexbox.scss */
#landing-inner > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 39, ../sass/partials/_landing.scss */
#landing-inner * {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 43, ../sass/partials/_landing.scss */
#landing-inner.inactive {
  opacity: 0;



}
@media (max-width: 480px) {
  /* line 31, ../sass/partials/_landing.scss */
  #landing-inner {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 480px) and (max-height: 667px) {
  /* line 31, ../sass/partials/_landing.scss */
  #landing-inner {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media (max-width: 480px) {
  /* line 54, ../sass/partials/_landing.scss */
  #landing-inner .title-blurb {
    padding-bottom: 25px;
  }
}
/* line 59, ../sass/partials/_landing.scss */
#landing-inner .title:nth-child(n) {
  color: #2F4F4F;
  font-family: 'A Jenson Pro';
  font-size: 75px;
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 91px;
  -webkit-flex: 0 0 91px;
  -ms-flex: 0 0 91px;
  flex: 0 0 91px;
}
@media (max-width: 480px) {
  /* line 59, ../sass/partials/_landing.scss */
  #landing-inner .title:nth-child(n) {
    font-size: 43px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 43px;
    -webkit-flex: 0 0 43px;
    -ms-flex: 0 0 43px;
    flex: 0 0 43px;
  }
}
/* line 72, ../sass/partials/_landing.scss */
#landing-inner .horizontal-line:nth-child(n) {
  margin-top: 30px;
  margin-bottom: 44px;
  margin-top: 30px;
  left: 50%;
  width: 50px;
  height: 1px;
  background-color: gray;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 1px;
  -webkit-flex: 0 0 1px;
  -ms-flex: 0 0 1px;
  flex: 0 0 1px;
}
/* line 83, ../sass/partials/_landing.scss */
#landing-inner .title-blurb:nth-child(n) {
  padding-left: 55px;
  padding-right: 55px;
  font-family: 'Proxima Nova';
  font-size: 20px;
  width: auto;
  max-width: 480px;
  display: inline-block;
  text-align: left;
  line-height: 24px;
  color: gray;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

#landing-inner .title-blurb a {

  font-family: 'Proxima Nova';
  font-size: 20px;
  width: auto;
  max-width: 480px;
  display: inline-block;
  text-align: left;
  line-height: 24px;
  color: #5F9EA0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

/* line 1, ../sass/partials/_sectioncasestudy.scss */
.split-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
/* line 161, ../sass/utility/_flexbox.scss */
.split-container > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 180, ../sass/utility/_flexbox.scss */
.split-container > *:not(:last-child) {
  /*margin-right: 25px;*/
}
@media (max-width: 1200px) {
  /* line 188, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  .split-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 193, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).full-data-btn,
  .split-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).full-data-btn {
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 197, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn):last-child,
  .split-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn):last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) {
  /* line 208, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3) .header,
  .split-container *:first-child:nth-last-child(3) ~ * .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px;
  }
  /* line 161, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3) .header > *,
  .split-container *:first-child:nth-last-child(3) ~ * .header > * {
    margin: 0;
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 212, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3) .header > *,
  .split-container *:first-child:nth-last-child(3) ~ * .header > * {
    -webkit-align-self: auto;
    -moz-align-self: auto;
    -ms-align-self: auto;
    align-self: auto;
  }
  /* line 216, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3) .header > *:first-child,
  .split-container *:first-child:nth-last-child(3) .header > *:last-child,
  .split-container *:first-child:nth-last-child(3) ~ * .header > *:first-child,
  .split-container *:first-child:nth-last-child(3) ~ * .header > *:last-child {
    padding: 0;
  }
}
@media (max-width: 768px) {
  /* line 225, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3),
  .split-container *:first-child:nth-last-child(3) ~ * {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 231, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3):last-child,
  .split-container *:first-child:nth-last-child(3) ~ *:last-child {
    margin-bottom: 0;
  }
  /* line 235, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  .split-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 25px;
    margin-bottom: 0;
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 240, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).list,
  .split-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).list {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 33%;
    -webkit-flex: 0 0 33%;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  /* line 240, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).list,
  .split-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).list {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  /* line 248, ../sass/utility/_flexbox.scss */
  .split-container > * {
    /* @include flex-important(0 0 100%);*/
  }
  /* line 252, ../sass/utility/_flexbox.scss */
  .split-container > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  /* line 262, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  .split-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 267, ../sass/utility/_flexbox.scss */
  .split-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn):last-child,
  .split-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn):last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  /* line 1, ../sass/partials/_sectioncasestudy.scss */
  .split-container {
    height: auto;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
}
@media (max-width: 768px) {
  /* line 9, ../sass/partials/_sectioncasestudy.scss */
  .split-container > *:first-child {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 1;
    -webkit-flex: 0 0 1;
    -ms-flex: 0 0 1;
    flex: 0 0 1;
  }
}
/* line 15, ../sass/partials/_sectioncasestudy.scss */
.split-container > *:last-child {
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 32%;
  -webkit-flex: 0 0 32%;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  align-self: center;
}
@media (max-width: 768px) {
  /* line 15, ../sass/partials/_sectioncasestudy.scss */
  .split-container > *:last-child {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
/* line 161, ../sass/utility/_flexbox.scss */
.split-container > *:last-child > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 1200px) {
  /* line 15, ../sass/partials/_sectioncasestudy.scss */
  .split-container > *:last-child {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 42%;
    -webkit-flex: 0 0 42%;
    -ms-flex: 0 0 42%;
    flex: 0 0 42%;
  }
}
@media (max-width: 1200px) and (max-width: 768px) {
  /* line 15, ../sass/partials/_sectioncasestudy.scss */
  .split-container > *:last-child {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 992px) {
  /* line 15, ../sass/partials/_sectioncasestudy.scss */
  .split-container > *:last-child {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
@media (max-width: 992px) and (max-width: 768px) {
  /* line 15, ../sass/partials/_sectioncasestudy.scss */
  .split-container > *:last-child {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  /* line 15, ../sass/partials/_sectioncasestudy.scss */
  .split-container > *:last-child {
    margin-bottom: 25px;
    height: auto;
    -webkit-align-self: auto;
    -moz-align-self: auto;
    -ms-align-self: auto;
    align-self: auto;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  /* line 34, ../sass/partials/_sectioncasestudy.scss */
  .split-container > *:last-child .content {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
/* line 40, ../sass/partials/_sectioncasestudy.scss */
.split-container.right {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
/* line 45, ../sass/partials/_sectioncasestudy.scss */
.split-container > * .content {
  padding-left: 45px;
  padding-right: 45px;
}
@media (max-width: 768px) {
  /* line 45, ../sass/partials/_sectioncasestudy.scss */
  .split-container > * .content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* line 55, ../sass/partials/_sectioncasestudy.scss */
.split-container > * h1:nth-child(n) {
  margin-top: 0;
  margin-bottom: 35px;
  font-size: 18px;
  text-transform: uppercase;
  font-family: 'Proxima Nova';
  font-weight: bold;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  /* line 55, ../sass/partials/_sectioncasestudy.scss */
  .split-container > * h1:nth-child(n) {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
/* line 65, ../sass/partials/_sectioncasestudy.scss */
.split-container > * p:nth-child(n) {
  margin-bottom: 25px;
  font-family: 'Proxima Nova';
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
  word-spacing: 3px;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  /* line 65, ../sass/partials/_sectioncasestudy.scss */
  .split-container > * p:nth-child(n) {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
/* line 75, ../sass/partials/_sectioncasestudy.scss */
.split-container > * .button:nth-child(n) {
  padding: 0;
  width: 132px;
  height: 35px;
  background-color: #2F4F4F;
  border-radius: 6px;
  outline: none;
  border: 0px solid #2F4F4F;
  cursor: pointer;
  color: white;
  font-family: 'Proxima Nova';
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 33px;
  -webkit-flex: 0 0 33px;
  -ms-flex: 0 0 33px;
  flex: 0 0 33px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  /* line 75, ../sass/partials/_sectioncasestudy.scss */
  .split-container > * .button:nth-child(n) {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
/* line 93, ../sass/partials/_sectioncasestudy.scss */
.split-container > * .button:nth-child(n):hover {
  background-color: white;
  color: #d9232e;
  border: 1px solid #d9232e;
}

/* line 102, ../sass/partials/_sectioncasestudy.scss */
#section-1 {
  width: 100vw;
  height: 613px;
  background-color: rgba(255, 255, 255, 0.95);
  background-size: auto;
}
/* line 108, ../sass/partials/_sectioncasestudy.scss */
#section-1 .section-left {
  position: relative;
  background-image: url("/img/video-cover.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 880px) {
  /* line 115, ../sass/partials/_sectioncasestudy.scss */
  #section-1 .section-left::after {
    opacity: 0;
  }
}
/* line 120, ../sass/partials/_sectioncasestudy.scss */
#section-1 .section-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px 340px black;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

/* line 140, ../sass/partials/_sectioncasestudy.scss */
#case-study #case-study-landing, #case-study #blog-post-landing, #blog-post #case-study-landing, #blog-post #blog-post-landing {
  height: 154px;
              /*
background-image: url('/img/delete-this-whatwedo.png');
background-size: auto;
background-repeat: no-repeat;
background-position: center;*/
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
/* line 161, ../sass/utility/_flexbox.scss */
#case-study #case-study-landing > *, #case-study #blog-post-landing > *, #blog-post #case-study-landing > *, #blog-post #blog-post-landing > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 150, ../sass/partials/_sectioncasestudy.scss */
#case-study #case-study-landing > *, #case-study #blog-post-landing > *, #blog-post #case-study-landing > *, #blog-post #blog-post-landing > * {
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  align-self: center;
}
/* line 155, ../sass/partials/_sectioncasestudy.scss */
#case-study #case-study-landing h1, #case-study #blog-post-landing h1, #blog-post #case-study-landing h1, #blog-post #blog-post-landing h1 {
  font-family: 'Proxima Nova Thin';
  color:  #2F4F4F;
}
/* line 160, ../sass/partials/_sectioncasestudy.scss */
#case-study #case-study-landing p, #case-study #blog-post-landing p, #blog-post #case-study-landing p, #blog-post #blog-post-landing p {
  margin-top: 7px;
  font-family: 'Proxima Nova Thin';
  font-size: 15px;
  color:  #2F4F4F;
}
/* line 166, ../sass/partials/_sectioncasestudy.scss */
#case-study #case-study-landing .horizontal-line, #case-study #blog-post-landing .horizontal-line, #blog-post #case-study-landing .horizontal-line, #blog-post #blog-post-landing .horizontal-line {
  margin-top: 23px;
}
/* line 171, ../sass/partials/_sectioncasestudy.scss */
#case-study .section-left, #blog-post .section-left {
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  /* line 171, ../sass/partials/_sectioncasestudy.scss */
  #case-study .section-left, #blog-post .section-left {
    margin: 0;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
/* line 181, ../sass/partials/_sectioncasestudy.scss */
#case-study .section-right, #blog-post .section-right {
  -webkit-align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-align-self: flex-end;
  align-self: flex-end;
}
@media (max-width: 768px) {
  /* line 185, ../sass/partials/_sectioncasestudy.scss */
  #case-study .section-right p, #blog-post .section-right p {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  /* line 192, ../sass/partials/_sectioncasestudy.scss */
  #case-study .section-right .content, #blog-post .section-right .content {
    max-width: 300px;
  }
}
/* line 198, ../sass/partials/_sectioncasestudy.scss */
#case-study .content, #blog-post .content {
  padding-left: 75px;
}
@media (max-width: 768px) {
  /* line 198, ../sass/partials/_sectioncasestudy.scss */
  #case-study .content, #blog-post .content {
    padding-left: 45px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* line 208, ../sass/partials/_sectioncasestudy.scss */
#case-study p, #blog-post p {
  margin-bottom: 88px;
}
/* line 212, ../sass/partials/_sectioncasestudy.scss */
#case-study .slideshow, #blog-post .slideshow {
  /*    width: 661px;
      height: 443px;*/
  /*    width: 100%;
      height: 443px;*/
  width: 100%;
  height: 100%;
}
/* line 220, ../sass/partials/_sectioncasestudy.scss */
#case-study .slideshow::after, #blog-post .slideshow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px 140px -40px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (max-width: 768px) {
  /* line 212, ../sass/partials/_sectioncasestudy.scss */
  #case-study .slideshow, #blog-post .slideshow {
    height: auto;
  }
  /* line 235, ../sass/partials/_sectioncasestudy.scss */
  #case-study .slideshow .slick-track, #blog-post .slideshow .slick-track {
    width: auto !important;
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    -moz-transform: translate3d(0px, 0px, 0px) !important;
    transform: translate3d(0px, 0px, 0px) !important;
  }
  /* line 242, ../sass/partials/_sectioncasestudy.scss */
  #case-study .slideshow .slick-prev, #case-study .slideshow .slick-next, #blog-post .slideshow .slick-prev, #blog-post .slideshow .slick-next {
    display: none !important;
  }
  /* line 246, ../sass/partials/_sectioncasestudy.scss */
  #case-study .slideshow .image.slick-slide, #blog-post .slideshow .image.slick-slide {
    height: 300px;
  }
  /* line 249, ../sass/partials/_sectioncasestudy.scss */
  #case-study .slideshow .image.slick-slide.slick-cloned, #case-study .slideshow .image.slick-slide:not(.slick-active), #blog-post .slideshow .image.slick-slide.slick-cloned, #blog-post .slideshow .image.slick-slide:not(.slick-active) {
    display: none;
  }
}
/* line 256, ../sass/partials/_sectioncasestudy.scss */
#case-study .split-container, #blog-post .split-container {
  position: relative;
}
@media (min-width: 768px) {
  /* line 256, ../sass/partials/_sectioncasestudy.scss */
  #case-study .split-container, #blog-post .split-container {
    height: 663px;
  }
}
/* line 264, ../sass/partials/_sectioncasestudy.scss */
#case-study .split-container:nth-child(even), #blog-post .split-container:nth-child(even) {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
/* line 267, ../sass/partials/_sectioncasestudy.scss */
#case-study .split-container:nth-child(even) .content, #blog-post .split-container:nth-child(even) .content {
  text-align: left;
}
@media (min-width: 1200px) {
  /* line 271, ../sass/partials/_sectioncasestudy.scss */
  #case-study .split-container:nth-child(even) .section-right, #blog-post .split-container:nth-child(even) .section-right {
    -webkit-flex-wrap: wrap-reverse;
    -moz-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  /* line 275, ../sass/partials/_sectioncasestudy.scss */
  #case-study .split-container:nth-child(even) .section-right .content, #blog-post .split-container:nth-child(even) .section-right .content {
    padding-left: 45px;
    padding-right: 75px;
  }
}
@media (max-width: 768px) {
  /* line 282, ../sass/partials/_sectioncasestudy.scss */
  #case-study .split-container:nth-child(even) .section-right .content, #blog-post .split-container:nth-child(even) .section-right .content {
    text-align: left;
  }
}
/* line 289, ../sass/partials/_sectioncasestudy.scss */
#case-study .split-container:nth-child(3n-2), #blog-post .split-container:nth-child(3n-2) {
  background-color: #f1f1f1;
    color: #2F4F4F;
}
/* line 293, ../sass/partials/_sectioncasestudy.scss */
#case-study .split-container:nth-child(3n-1), #blog-post .split-container:nth-child(3n-1) {
  background-color: #5F9EA0;
  color: #2F4F4F;
}
/* line 298, ../sass/partials/_sectioncasestudy.scss */
#case-study .split-container:nth-child(3n), #blog-post .split-container:nth-child(3n) {
  background-color: #4d4d4d;
  color: white;
}
/* line 303, ../sass/partials/_sectioncasestudy.scss */
#case-study .image, #blog-post .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* line 312, ../sass/partials/_sectioncasestudy.scss */
#case-study-navigation {
  position: relative;
  padding-left: 13px;
  padding-top: 10px;
  background-color: transparent;
}
/* line 318, ../sass/partials/_sectioncasestudy.scss */
#case-study-navigation * {
  color: #2F4F4F;
}

#case-study-navigation *:hover {
  color: red;
}

@media (max-width: 480px) {
  /* line 323, ../sass/partials/_sectioncasestudy.scss */
  #case-study-navigation .navigation-left {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

/* line 1, ../sass/partials/_sectionblog.scss */
#section-2, #blog-posts {
  width: 100vw;
  height: auto;
  background-color: rgba(95, 158, 160, 0.95);
  background-size: 100% auto;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
/* line 161, ../sass/utility/_flexbox.scss */
#section-2 > *, #blog-posts > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 11, ../sass/partials/_sectionblog.scss */
#section-2 .button, #blog-posts .button {
  margin-bottom: 79px;
  width: 111px;
  height: 35px;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 35px;
  -webkit-flex: 0 0 35px;
  -ms-flex: 0 0 35px;
  flex: 0 0 35px;
}
/* line 18, ../sass/partials/_sectionblog.scss */
#section-2 .header-lite, #blog-posts .header-lite {
  margin-top: 73px;
  font-family: 'Proxima Nova Thin';
  font-size: 27px;
  color: white;
  -webkit-font-smoothing: antialiased;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
/* line 27, ../sass/partials/_sectionblog.scss */
#section-2 .subheader-lite, #blog-posts .subheader-lite {
  margin-top: 6px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: 'Proxima Nova';
  font-size: 15px;
  color: white;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
/* line 37, ../sass/partials/_sectionblog.scss */
#section-2 .horizontal-line, #blog-posts .horizontal-line {
  margin-top: 33px;
  margin-bottom: 35px;
  background-color: white;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 1px;
  -webkit-flex: 0 0 1px;
  -ms-flex: 0 0 1px;
  flex: 0 0 1px;
}
/* line 44, ../sass/partials/_sectionblog.scss */
#section-2 .thumbnails, #blog-posts .thumbnails {
  position: relative;
  margin-bottom: 40px;
  padding-left: 25px;
  padding-right: 25px;
  width: auto;
  max-width: 898px;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
/* line 161, ../sass/utility/_flexbox.scss */
#section-2 .thumbnails > *, #blog-posts .thumbnails > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 180, ../sass/utility/_flexbox.scss */
#section-2 .thumbnails > *:not(:last-child), #blog-posts .thumbnails > *:not(:last-child) {
  /*margin-right: 25px;*/
}
@media (max-width: 1200px) {
  /* line 188, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn), #blog-posts .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 193, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).full-data-btn,
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).full-data-btn, #blog-posts .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).full-data-btn,
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).full-data-btn {
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 197, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn):last-child,
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn):last-child, #blog-posts .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn):last-child,
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn):last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) {
  /* line 208, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3) .header,
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ * .header, #blog-posts .thumbnails *:first-child:nth-last-child(3) .header,
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px;
  }
  /* line 161, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3) .header > *,
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ * .header > *, #blog-posts .thumbnails *:first-child:nth-last-child(3) .header > *,
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * .header > * {
    margin: 0;
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 212, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3) .header > *,
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ * .header > *, #blog-posts .thumbnails *:first-child:nth-last-child(3) .header > *,
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * .header > * {
    -webkit-align-self: auto;
    -moz-align-self: auto;
    -ms-align-self: auto;
    align-self: auto;
  }
  /* line 216, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3) .header > *:first-child,
  #section-2 .thumbnails *:first-child:nth-last-child(3) .header > *:last-child,
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ * .header > *:first-child,
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ * .header > *:last-child, #blog-posts .thumbnails *:first-child:nth-last-child(3) .header > *:first-child,
  #blog-posts .thumbnails *:first-child:nth-last-child(3) .header > *:last-child,
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * .header > *:first-child,
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * .header > *:last-child {
    padding: 0;
  }
}
@media (max-width: 768px) {
  /* line 225, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3),
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ *, #blog-posts .thumbnails *:first-child:nth-last-child(3),
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 231, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3):last-child,
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ *:last-child, #blog-posts .thumbnails *:first-child:nth-last-child(3):last-child,
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ *:last-child {
    margin-bottom: 0;
  }
  /* line 235, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn), #blog-posts .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 25px;
    margin-bottom: 0;
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 240, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).list,
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).list, #blog-posts .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).list,
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).list {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 33%;
    -webkit-flex: 0 0 33%;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  /* line 240, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).list,
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).list, #blog-posts .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).list,
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).list {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  /* line 248, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails > *, #blog-posts .thumbnails > * {
    /* @include flex-important(0 0 100%);*/
  }
  /* line 252, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails > *:not(:last-child), #blog-posts .thumbnails > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  /* line 262, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn), #blog-posts .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 267, ../sass/utility/_flexbox.scss */
  #section-2 .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn):last-child,
  #section-2 .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn):last-child, #blog-posts .thumbnails *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn):last-child,
  #blog-posts .thumbnails *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn):last-child {
    margin-bottom: 0;
  }
}
/* line 54, ../sass/partials/_sectionblog.scss */
#section-2 .thumbnails > *:not(:last-child), #blog-posts .thumbnails > *:not(:last-child) {
  margin-right: 45px;
}
/* line 59, ../sass/partials/_sectionblog.scss */
#section-2 .thumbnail, #blog-posts .thumbnail {
  overflow: hidden;
}
@media (min-width: 992px) {
  /* line 59, ../sass/partials/_sectionblog.scss */
  #section-2 .thumbnail, #blog-posts .thumbnail {
    min-width: 269px;
  }
}
/* line 67, ../sass/partials/_sectionblog.scss */
#section-2 .thumbnail:hover .thumbnail-title, #blog-posts .thumbnail:hover .thumbnail-title {
  color: #d9232e;
}
/* line 71, ../sass/partials/_sectionblog.scss */
#section-2 .thumbnail:hover .thumbnail-graphic, #blog-posts .thumbnail:hover .thumbnail-graphic {
  background-color: #D8D8D8;
}
/* line 75, ../sass/partials/_sectionblog.scss */
#section-2 .thumbnail:hover .thumbnail-info, #blog-posts .thumbnail:hover .thumbnail-info {
  box-shadow: 0px 15px 45px 15px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  /* line 81, ../sass/partials/_sectionblog.scss */
  #section-2 .subheader-lite, #blog-posts .subheader-lite {
    padding-left: 25px;
    padding-right: 25px;
  }
}
/* line 88, ../sass/partials/_sectionblog.scss */
#section-2 .content-tag, #blog-posts .content-tag {
  position: absolute;
  padding-left: 15px;
  padding-right: 15px;
  width: auto;
  height: 31px;
  background-color: #2F4F4F;
  font-family: 'Proxima Nova Thin';
  font-size: 12px;
  text-transform: uppercase;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
/* line 161, ../sass/utility/_flexbox.scss */
#section-2 .content-tag > *, #blog-posts .content-tag > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 102, ../sass/partials/_sectionblog.scss */
#section-2 .thumbnail-inner, #blog-posts .thumbnail-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
/* line 161, ../sass/utility/_flexbox.scss */
#section-2 .thumbnail-inner > *, #blog-posts .thumbnail-inner > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 106, ../sass/partials/_sectionblog.scss */
#section-2 .thumbnail-graphic, #blog-posts .thumbnail-graphic {
  background-color: #e8e8e8;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 208px;
  -webkit-flex: 0 0 208px;
  -ms-flex: 0 0 208px;
  flex: 0 0 208px;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -ms-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
/* line 115, ../sass/partials/_sectionblog.scss */
#section-2 .thumbnail-info, #blog-posts .thumbnail-info {
  padding-top: 16px;
  padding-left: 25px;
  padding-right: 10px;
  padding-bottom: 16px;
  background-color: white;
  text-align: left;
  box-shadow: 0px 15px 45px 15px transparent;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-transition: box-shadow 0.5s;
  -moz-transition: box-shadow 0.5s;
  -ms-transition: box-shadow 0.5s;
  -o-transition: box-shadow 0.5s;
  transition: box-shadow 0.5s;
}
/* line 127, ../sass/partials/_sectionblog.scss */
#section-2 .thumbnail-date, #blog-posts .thumbnail-date {
  font-family: 'Proxima Nova';
  text-transform: uppercase;
  font-size: 11px;
  color: #2F4F4F;
}
/* line 134, ../sass/partials/_sectionblog.scss */
#section-2 .thumbnail-title, #blog-posts .thumbnail-title {
  margin-top: 6px;
  font-family: 'Proxima Nova';
  font-weight: bold;
  line-height: 22px;
  color: #2F4F4F;
}
/* line 141, ../sass/partials/_sectionblog.scss */
#section-2 .content-tag, #blog-posts .content-tag {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-font-smoothing: auto;
}
/* line 146, ../sass/partials/_sectionblog.scss */
#section-2 .content-tag-inner, #blog-posts .content-tag-inner {
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 8px;
  -webkit-flex: 0 0 8px;
  -ms-flex: 0 0 8px;
  flex: 0 0 8px;
}

/* line 153, ../sass/partials/_sectionblog.scss */
#blog-posts .thumbnails {
  position: relative;
  margin-bottom: 37px;
  height: auto;
  max-height: 300px;
  overflow: hidden;
  -webkit-transition: margin-bottom 0.6s, max-height 0.6s;
  -moz-transition: margin-bottom 0.6s, max-height 0.6s;
  -ms-transition: margin-bottom 0.6s, max-height 0.6s;
  -o-transition: margin-bottom 0.6s, max-height 0.6s;
  transition: margin-bottom 0.6s, max-height 0.6s;
}
@media (max-width: 768px) {
  /* line 153, ../sass/partials/_sectionblog.scss */
  #blog-posts .thumbnails {
    max-height: 950px;
    margin-bottom: 25px;
  }
}
/* line 166, ../sass/partials/_sectionblog.scss */
#blog-posts .thumbnails::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-transition: box-shadow 0.6s;
  -moz-transition: box-shadow 0.6s;
  -ms-transition: box-shadow 0.6s;
  -o-transition: box-shadow 0.6s;
  transition: box-shadow 0.6s;
}
/* line 176, ../sass/partials/_sectionblog.scss */
#blog-posts .thumbnails.inactive {
  margin-bottom: 0;
  max-height: 0px;
}
/* line 180, ../sass/partials/_sectionblog.scss */
#blog-posts .thumbnails.inactive::after {
  box-shadow: inset 0px -120px 70px -50px #d7323b;
}
/* line 185, ../sass/partials/_sectionblog.scss */
#blog-posts .thumbnails:not(.inactive)::after {
  box-shadow: inset 0px -40px 0px -50px #d7323b;
}
/* line 190, ../sass/partials/_sectionblog.scss */
#blog-posts #load-more.done-loading {
  opacity: 0.5;
}

/* line 196, ../sass/partials/_sectionblog.scss */
.subscribe-section {
  width: 100vw;
  height: 265px;
  background-color: #f1f1f1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
/* line 205, ../sass/partials/_sectionblog.scss */
.subscribe-section > * {
  padding-left: 25px;
  padding-right: 25px;
}
/* line 210, ../sass/partials/_sectionblog.scss */
.subscribe-section .subscribe-text {
  margin-top: 0;
  margin-bottom: 30px;
  max-width: 510px;
  font-family: 'Proxima Nova Thin';
  font-size: 26px;
  color: #2F4F4F;
}
/* line 218, ../sass/partials/_sectionblog.scss */
.subscribe-section .input-section {
  width: 371px;
  height: 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
/* line 225, ../sass/partials/_sectionblog.scss */
.subscribe-section .input-section .input-box {
  background-color: white;
  padding-left: 16px;
  font-size: 15px;
  letter-spacing: -0.3px;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 241px;
  -webkit-flex: 0 0 241px;
  -ms-flex: 0 0 241px;
  flex: 0 0 241px;
}
@media (max-width: 768px) {
  /* line 225, ../sass/partials/_sectionblog.scss */
  .subscribe-section .input-section .input-box {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
/* line 237, ../sass/partials/_sectionblog.scss */
.subscribe-section .input-section .subscribe-button {
  padding-left: 26px;
  background-color: #2F4F4F;
  color: white;
  font-family: 'Proxima Nova Black';
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 130px;
  -webkit-flex: 0 0 130px;
  -ms-flex: 0 0 130px;
  flex: 0 0 130px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 253, ../sass/partials/_sectionblog.scss */
.subscribe-section .input-section .subscribe-button:hover {
  background-color: white;
  color: #2F4F4F;
}

/* line 262, ../sass/partials/_sectionblog.scss */
#blog-posts-navigation {
  position: absolute;
  padding-left: 3px;
  padding-top: 0px;
  background-color: transparent;
}
/* line 268, ../sass/partials/_sectionblog.scss */
#blog-posts-navigation * {
  color: white;
}

#blog-posts-navigation *:hover {
  color: red;
}

@media (max-width: 480px) {
  /* line 273, ../sass/partials/_sectionblog.scss */
  #blog-posts-navigation .navigation-left {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

/* line 279, ../sass/partials/_sectionblog.scss */
#blog-post {
  /*  background-image: url('/img/delete-this-blog-single.png');*/
  background-size: auto;
  background-position: center 24px;
  /* responsive container management */
}
/* line 284, ../sass/partials/_sectionblog.scss */
#blog-post .blog-post-text a {
  color: #5F9EA0;
  text-decoration: underline;
}
/* line 288, ../sass/partials/_sectionblog.scss */
#blog-post .blog-post-text a:hover {
  text-decoration: none;
}
/* line 293, ../sass/partials/_sectionblog.scss */
#blog-post #blog-post-landing {
  height: 534px;
}
/* line 296, ../sass/partials/_sectionblog.scss */
#blog-post #blog-post-landing .header-lite {
  margin-top: 0px;
}
/* line 300, ../sass/partials/_sectionblog.scss */
#blog-post #blog-post-landing .blog-post-hero-image {
  margin-top: 40px;
  width: 300px;
  height: 300px;
  background-image: url("/img/delete-this-kitteh.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* line 311, ../sass/partials/_sectionblog.scss */
#blog-post .flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
/* line 161, ../sass/utility/_flexbox.scss */
#blog-post .flex-container > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 180, ../sass/utility/_flexbox.scss */
#blog-post .flex-container > *:not(:last-child) {
  /*margin-right: 25px;*/
}
@media (max-width: 1200px) {
  /* line 188, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 193, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).full-data-btn,
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).full-data-btn {
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 197, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn):last-child,
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn):last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) {
  /* line 208, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3) .header,
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px;
  }
  /* line 161, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3) .header > *,
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * .header > * {
    margin: 0;
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 212, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3) .header > *,
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * .header > * {
    -webkit-align-self: auto;
    -moz-align-self: auto;
    -ms-align-self: auto;
    align-self: auto;
  }
  /* line 216, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3) .header > *:first-child,
  #blog-post .flex-container *:first-child:nth-last-child(3) .header > *:last-child,
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * .header > *:first-child,
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * .header > *:last-child {
    padding: 0;
  }
}
@media (max-width: 768px) {
  /* line 225, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3),
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 231, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3):last-child,
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ *:last-child {
    margin-bottom: 0;
  }
  /* line 235, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 25px;
    margin-bottom: 0;
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 240, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).list,
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).list {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 33%;
    -webkit-flex: 0 0 33%;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  /* line 240, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).list,
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).list {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  /* line 248, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container > * {
    /* @include flex-important(0 0 100%);*/
  }
  /* line 252, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  /* line 262, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 267, ../sass/utility/_flexbox.scss */
  #blog-post .flex-container *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn):last-child,
  #blog-post .flex-container *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn):last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  /* line 311, ../sass/partials/_sectionblog.scss */
  #blog-post .flex-container {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
/* line 319, ../sass/partials/_sectionblog.scss */
#blog-post .flex-container > *:first-child {
  width: 72px;
  min-width: 74px !important;
  height: 194px;
  background-size: auto;
  background-repeat: no-repeat;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 72px;
  -webkit-flex: 0 0 72px;
  -ms-flex: 0 0 72px;
  flex: 0 0 72px;
}
@media (max-width: 480px) {
  /* line 319, ../sass/partials/_sectionblog.scss */
  #blog-post .flex-container > *:first-child {
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-align-self: center;
    align-self: center;
  }
}
/* line 336, ../sass/partials/_sectionblog.scss */
#blog-post .blog-post-share .button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 35px;
}
/* line 161, ../sass/utility/_flexbox.scss */
#blog-post .blog-post-share .button > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 345, ../sass/partials/_sectionblog.scss */
#blog-post .back-button {
  background-color: #333333;
  border: 1px #333333 solid;
}
/* line 349, ../sass/partials/_sectionblog.scss */
#blog-post .back-button:hover {
  background-color: white;
  color: #333333;
}
/* line 355, ../sass/partials/_sectionblog.scss */
#blog-post .share-button {
  margin-top: 15px;
}
/* line 359, ../sass/partials/_sectionblog.scss */
#blog-post .blog-share-links {
  padding-right: 2px;
  height: 54px;
  background-color: rgba(253, 253, 253, 0);
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
/* line 366, ../sass/partials/_sectionblog.scss */
#blog-post .blog-share-links:hover {
  height: 144px;
  background-color: #f1f1f1;
}
/* line 370, ../sass/partials/_sectionblog.scss */
#blog-post .blog-share-links:hover .share-button {
  background-color: white;
  color: #d9232e;
}
@media (max-width: 768px) {
  /* line 359, ../sass/partials/_sectionblog.scss */
  #blog-post .blog-share-links {
    height: 144px;
    background-color: #f1f1f1;
  }
  /* line 380, ../sass/partials/_sectionblog.scss */
  #blog-post .blog-share-links .share-button {
    background-color: white;
    color: #d9232e;
  }
}
/* line 388, ../sass/partials/_sectionblog.scss */
#blog-post .blog-share-link {
  font-size: 14px;
  font-family: 'Proxima Nova';
  text-decoration: underline;
  letter-spacing: -0.6px;
  padding: 8px;
}
/* line 396, ../sass/partials/_sectionblog.scss */
#blog-post .blog-post-body {
  margin-left: 42px;
  padding-right: 90px;
}
@media (max-width: 768px) {
  /* line 396, ../sass/partials/_sectionblog.scss */
  #blog-post .blog-post-body {
    margin-left: 15px;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  /* line 396, ../sass/partials/_sectionblog.scss */
  #blog-post .blog-post-body {
    margin-left: 0;
  }
}
/* line 410, ../sass/partials/_sectionblog.scss */
#blog-post h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Proxima Nova Thin';
  color: #5F9EA0;
}
/* line 417, ../sass/partials/_sectionblog.scss */
#blog-post .byline {
  font-family: 'Proxima Nova Thin';
  font-size: 15px;
  color: gray;
}
/* line 423, ../sass/partials/_sectionblog.scss */
#blog-post .blog-post-text {
  font-family: 'Proxima Nova';
  font-size: 17px;
  color: black;
  margin-top: 30px;
}
/* line 429, ../sass/partials/_sectionblog.scss */
#blog-post .blog-post-text p {
  margin-bottom: 20px;
  line-height: 25px;
  letter-spacing: 0.4px;
  word-spacing: 3px;
}
/* line 444, ../sass/partials/_sectionblog.scss */
#blog-post .blog-post-innerer {
  text-align: center;
}
/* line 447, ../sass/partials/_sectionblog.scss */
#blog-post .blog-post-innerer > * {
  text-align: left;
}
/* line 452, ../sass/partials/_sectionblog.scss */
#blog-post .blog-post-inner {
  text-align: center;
  /*    padding: 50px 0 0 0;*/
}
/* line 457, ../sass/partials/_sectionblog.scss */
#blog-post .blog-post-innerer {
  display: inline-block;
  max-width: 828px;
}
/* line 462, ../sass/partials/_sectionblog.scss */
#blog-post .blog-post-inner {
  max-width: 1200px;
  margin: 20px auto;
}
@media (max-width: 1200px) {
  /* line 468, ../sass/partials/_sectionblog.scss */
  #blog-post .blog-post-innerer {
    max-width: 828px;
  }
}
@media (max-width: 992px) {
  /* line 474, ../sass/partials/_sectionblog.scss */
  #blog-post .blog-post-innerer {
    max-width: 828px;
  }
}
@media (max-width: 768px) {
  /* line 480, ../sass/partials/_sectionblog.scss */
  #blog-post .blog-post-inner {
    padding: 15px;
  }
  /* line 484, ../sass/partials/_sectionblog.scss */
  #blog-post .blog-post-innerer {
    max-width: 100%;
  }
}

/* line 1, ../sass/partials/_sectionpartners.scss */
#section-3 {
  width: 100vw;
  min-height: 407px;
  background-color: rgba(239, 239, 239, 0.90);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
/* line 161, ../sass/utility/_flexbox.scss */
#section-3 > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 12, ../sass/partials/_sectionpartners.scss */
#section-3 .header-bold {
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 20px;
  -webkit-flex: 0 0 20px;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
}
/* line 16, ../sass/partials/_sectionpartners.scss */
#section-3 .horizontal-line {
  margin-top: 15px;
  margin-bottom: 68px;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 1px;
  -webkit-flex: 0 0 1px;
  -ms-flex: 0 0 1px;
  flex: 0 0 1px;
}
@media (max-width: 768px) {
  /* line 1, ../sass/partials/_sectionpartners.scss */
  #section-3 {
    padding-bottom: 0px;
  }
}
/* line 26, ../sass/partials/_sectionpartners.scss */
#section-3 .header-bold {
  font-family: 'Proxima Nova Black';
  color: #2F4F4F;
  font-size: 17px;
  text-transform: uppercase;
}
/* line 32, ../sass/partials/_sectionpartners.scss */
#section-3 .partners {
  margin-bottom: 50px;
  width: auto;
  max-width: 100vw;
  height: 81px;
  background-size: auto;
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  /* line 32, ../sass/partials/_sectionpartners.scss */
  #section-3 .partners {
    display: table;
  }
}
/* line 46, ../sass/partials/_sectionpartners.scss */
#section-3 .partner {
  display: inline-block;
  margin-left: 35px;
  margin-right: 35px;
  margin-bottom: 15px;
  width: 150px;
  height: 80px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* line 1, ../sass/partials/_sectionmeettheteam.scss */
#section-4 {
  padding-top: 85px;
  padding-bottom: 70px;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.97);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  /*  @media (max-width: 456px) {
  
      .the-team {
        display: block;
      }
    }*/
}
/* line 161, ../sass/utility/_flexbox.scss */
#section-4 > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 180, ../sass/utility/_flexbox.scss */
#section-4 > *:not(:last-child) {
  /*margin-right: 25px;*/
}
@media (max-width: 1200px) {
  /* line 188, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  #section-4 *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 193, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).full-data-btn,
  #section-4 *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).full-data-btn {
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 197, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn):last-child,
  #section-4 *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn):last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) {
  /* line 208, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3) .header,
  #section-4 *:first-child:nth-last-child(3) ~ * .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px;
  }
  /* line 161, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3) .header > *,
  #section-4 *:first-child:nth-last-child(3) ~ * .header > * {
    margin: 0;
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 212, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3) .header > *,
  #section-4 *:first-child:nth-last-child(3) ~ * .header > * {
    -webkit-align-self: auto;
    -moz-align-self: auto;
    -ms-align-self: auto;
    align-self: auto;
  }
  /* line 216, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3) .header > *:first-child,
  #section-4 *:first-child:nth-last-child(3) .header > *:last-child,
  #section-4 *:first-child:nth-last-child(3) ~ * .header > *:first-child,
  #section-4 *:first-child:nth-last-child(3) ~ * .header > *:last-child {
    padding: 0;
  }
}
@media (max-width: 768px) {
  /* line 225, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3),
  #section-4 *:first-child:nth-last-child(3) ~ * {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 231, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3):last-child,
  #section-4 *:first-child:nth-last-child(3) ~ *:last-child {
    margin-bottom: 0;
  }
  /* line 235, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  #section-4 *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 25px;
    margin-bottom: 0;
    -webkit-box-flex: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  /* line 240, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).list,
  #section-4 *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).list {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 33%;
    -webkit-flex: 0 0 33%;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  /* line 240, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn).list,
  #section-4 *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn).list {
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  /* line 248, ../sass/utility/_flexbox.scss */
  #section-4 > * {
    /* @include flex-important(0 0 100%);*/
  }
  /* line 252, ../sass/utility/_flexbox.scss */
  #section-4 > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  /* line 262, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn),
  #section-4 *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn) {
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-flex: 0;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  /* line 267, ../sass/utility/_flexbox.scss */
  #section-4 *:first-child:nth-last-child(3) .flex-container > *:not(.full-data-btn):last-child,
  #section-4 *:first-child:nth-last-child(3) ~ * .flex-container > *:not(.full-data-btn):last-child {
    margin-bottom: 0;
  }
}
/* line 12, ../sass/partials/_sectionmeettheteam.scss */
#section-4 .container {
  padding-left: 25px;
  padding-right: 25px;
  max-width: 827px;
  text-align: right;
}
@media (max-width: 768px) {
  /* line 28, ../sass/partials/_sectionmeettheteam.scss */
  #section-4 .container {
    text-align: center;
  }
  /* line 32, ../sass/partials/_sectionmeettheteam.scss */
  #section-4 .info-box {
    margin-bottom: 25px;
    width: 100%;
  }
  /* line 37, ../sass/partials/_sectionmeettheteam.scss */
  #section-4 .nathan-pic {
    float: left;
    margin-right: 25px;
    margin-bottom: 5px;
  }
  /* line 43, ../sass/partials/_sectionmeettheteam.scss */
  #section-4 .meet-the-team {
    margin-top: 0;
  }
  /* line 47, ../sass/partials/_sectionmeettheteam.scss */
  #section-4 .image {
    margin-left: 7.5px;
    margin-right: 7.5px;
  }
}
/* line 54, ../sass/partials/_sectionmeettheteam.scss */
#section-4 .image {
  position: relative;
  display: inline-block;
  width: 148px;
  height: 148px;
  margin-left: 7.5px;
  margin-right: 7.5px;
  margin-bottom: 15px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
/* line 66, ../sass/partials/_sectionmeettheteam.scss */
#section-4 .image::after {
  content: '';
  position: absolute;
  padding-left: 15px;
  padding-right: 25px;
  padding-top: 20px;
  top: 0;
  left: 0;
  width: 76%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  color: white;
  text-align: left;
  font-family: 'Proxima Nova Black';
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
/* line 87, ../sass/partials/_sectionmeettheteam.scss */
#section-4 .image::before {
  content: '';
  position: absolute;
  padding-left: 15px;
  z-index: 1;
  top: 57px;
  left: 0;
  width: 100%;
  opacity: 0;
  color: white;
  font-family: 'Proxima Nova Thin';
  font-size: 13px;
  font-weight: bold;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
/* line 106, ../sass/partials/_sectionmeettheteam.scss */
#section-4 .image:hover::after, #section-4 .image:hover::before {
  opacity: 1;
}
@media (max-width: 480px) {
  /* line 114, ../sass/partials/_sectionmeettheteam.scss */
  #section-4 .info-box {
    text-align: center;
  }
  /* line 118, ../sass/partials/_sectionmeettheteam.scss */
  #section-4 .nathan-pic {
    float: none;
    display: inline-block;
    margin: 0 0 15px 0;
  }
  /* line 124, ../sass/partials/_sectionmeettheteam.scss */
  #section-4 .nathan-blurb {
    text-align: left;
  }
  /* line 128, ../sass/partials/_sectionmeettheteam.scss */
  #section-4 .image {
    margin-right: 0;
    margin-bottom: 25px;
  }
  /* line 133, ../sass/partials/_sectionmeettheteam.scss */
  #section-4 .image:nth-child(even) {
    margin-left: 0;
    margin-right: 15px;
  }
}
/* line 146, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-liz::before,
#section-4 #image-hesuh::before,
#section-4 #image-wenson::before,
#section-4 #image-autumn::before,
#section-4 #image-maly::before {
  top: 39px;
}
/* line 151, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-liz {
  background-image: url("/img/team-liz.png");
}
/* line 154, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-liz::after {
  content: 'LIZ UZELAC';
}
/* line 158, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-liz::before {
  content: 'project manager';
}
/* line 163, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-bosko {
  background-image: url("/img/team-bosko.png");
}
/* line 166, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-bosko::after {
  content: 'BOSKO BLAGOJEVIC';
}
/* line 170, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-bosko::before {
  content: 'developer';
}
/* line 175, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-christina {
  background-image: url("/img/team-christina.png");
}
/* line 178, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-christina::after {
  content: 'CHRISTINA KWIEK';
}
/* line 182, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-christina::before {
  content: 'designer';
}
/* line 187, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-erik {
  background-image: url("/img/team-erik.png");
}
/* line 190, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-erik::after {
  content: 'ERIK KARWATOWSKI';
}
/* line 194, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-erik::before {
  content: 'developer';
}
/* line 199, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-tyler {
  background-image: url("/img/team-tyler.png");
}
/* line 202, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-tyler::after {
  content: 'TYLER WILLIAMS';
}
/* line 206, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-tyler::before {
  content: 'developer';
}
/* line 211, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-hesuh {
  background-image: url("/img/team-hesuh.png");
}
/* line 214, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-hesuh::after {
  content: 'HESUH PARK';
}
/* line 218, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-hesuh::before {
  content: 'designer';
}
/* line 223, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-wenson {
  background-image: url("/img/team-wenson.png");
}
/* line 226, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-wenson::after {
  content: 'WENSON TSAI';
}
/* line 230, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-wenson::before {
  content: 'developer';
}
/* line 235, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-ray {
  background-image: url("/img/team-ray.png");
}
/* line 238, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-ray::after {
  content: 'RAY SCHECHTER';
}
/* line 242, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-ray::before {
  content: 'project manager';
}
/* line 247, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-andrew {
  background-image: url("/img/team-andrew.png");
}
/* line 250, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-andrew::after {
  content: 'ANDREW WISNIEFF';
}
/* line 254, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-andrew::before {
  content: 'developer';
}
/* line 259, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-autumn {
  background-image: url("/img/team-autumn.jpg");
}
/* line 262, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-autumn::after {
  content: 'AUTUMN HAAC';
}
/* line 266, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-autumn::before {
  content: 'designer';
}
/* line 271, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-maly {
  background-image: url("/img/team-maly.jpg");
}
/* line 274, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-maly::after {
  content: 'MALYGOS';
}
/* line 278, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-maly::before {
  content: 'dog';
}
/* line 283, ../sass/partials/_sectionmeettheteam.scss */
#section-4 #image-blank {
  pointer-events: none;
}

/* line 288, ../sass/partials/_sectionmeettheteam.scss */
.info-box {
  width: 200px;
  float: left;
  display: inline-block;
  text-align: left;
}

/* line 296, ../sass/partials/_sectionmeettheteam.scss */
.nathan-pic {
  width: 100%;
  max-width: 200px;
  height: 200px;
  background-image: url("/img/team-nathan.png");
  background-size: cover;
  background-position: center;
}

/* line 305, ../sass/partials/_sectionmeettheteam.scss */
.meet-the-team {
  margin-top: 30px;
  margin-bottom: 0;
  font-family: 'Proxima Nova Thin';
  font-size: 28px;
  color: #d9232e;
}

/* line 313, ../sass/partials/_sectionmeettheteam.scss */
.nathan-name {
  margin-top: 10px;
  font-family: 'Proxima Nova';
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* line 321, ../sass/partials/_sectionmeettheteam.scss */
.nathan-blurb {
  margin-top: 36px;
  width: 100%;
  font-family: 'Proxima Nova';
  font-size: 14px;
  line-height: 20px;
}

/* line 1, ../sass/partials/_footer.scss */
.footer {
  padding-left: 60px;
  padding-right: 60px;
  height: auto;
  background-color: #2F4F4F;
  /*  background-image: url('/img/delete-this-footer.png');*/
  background-size: auto;
  text-align: left;
}
/* line 10, ../sass/partials/_footer.scss */
.footer .flex-container {
  height: 130px;
}
@media (max-width: 550px) {
  /* line 10, ../sass/partials/_footer.scss */
  .footer .flex-container {
    display: block;
    padding-top: 20px;
    height: auto;
  }
  /* line 18, ../sass/partials/_footer.scss */
  .footer .flex-container > * {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

/* line 26, ../sass/partials/_footer.scss */
.flex-container {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
/* line 32, ../sass/partials/_footer.scss */
.flex-container > * {
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-box-flex: auto;
  -webkit-flex: auto;
  -ms-flex: auto;
  flex: auto;
}

/* line 38, ../sass/partials/_footer.scss */
.contact-text {
  color: white;
  font-family: 'Proxima Nova';
  font-size: 20px;
}

/* line 44, ../sass/partials/_footer.scss */
.reply-text {
  color: white;
  font-family: 'Proxima Nova';
  font-size: 15px;
  font-weight: bold;
  line-height: 26px;
  text-align: left;
}

/* line 53, ../sass/partials/_footer.scss */
.social-links {
  max-width: 170px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 768px) {
  /* line 53, ../sass/partials/_footer.scss */
  .social-links {
    padding-right: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* line 67, ../sass/partials/_footer.scss */
.social-link {
  width: 25px;
  height: 25px;
  background-size: cover;
  background-position: center;
  -webkit-box-flex: 0;
  -webkit-box-flex: 0 0 25px;
  -webkit-flex: 0 0 25px;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
}

/* line 75, ../sass/partials/_footer.scss */
#instagram-link {
  background-image: url("/img/share-insta.png");
}

/* line 79, ../sass/partials/_footer.scss */
#linkedin-link {
  background-image: url("/img/share-in.png");
}

/* line 83, ../sass/partials/_footer.scss */
#facebook-link {
  background-image: url("/img/share-fb.png");
}

/* line 87, ../sass/partials/_footer.scss */
#twitter-link {
  background-image: url("/img/share-twitter.png");
}

/************/
/*  Global  */
/************/
/* line 19, ../sass/main.scss */
body, html {
  overflow-x: hidden;
}

/* line 23, ../sass/main.scss */
body {
  margin: 0;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("http://nathanthunt.com/fonts/ProximaNova-Regular.otf");
}
@font-face {
  font-family: 'Proxima Nova';
  font-weight: bold;
  src: url("http://nathanthunt.com/fonts/ProximaNova-Bold.otf");
}
@font-face {
  font-family: 'Proxima Nova Black';
  src: url("http://nathanthunt.com/fonts/ProximaNova-Black.otf");
}
@font-face {
  font-family: 'Proxima Nova Thin';
  src: url("http://nathanthunt.com/fonts/ProximaNova-Thin.otf");
}
@font-face {
  font-family: 'Proxima Nova Cond';
  src: url("http://nathanthunt.com/fonts/ProximaNovaCond-Reg.otf");
}
@font-face {
  font-family: 'A Jenson Pro';
  src: url("http://nathanthunt.com/fonts/AJensonPro BoldCapt.otf");
}
@font-face {
  font-family: 'Proxima Nova Italic';
  src: url("http://nathanthunt.com/fonts/ProximaNova-LightIt.otf");
}

/* line 63, ../sass/main.scss */
input {
  border: none;
  outline: none;
}

/* line 68, ../sass/main.scss */
.horizontal-line {
  width: 50px;
  height: 1px;
  background-color: gray;
}

/* line 74, ../sass/main.scss */
.slick-prev {
  left: 0;
}

/* line 78, ../sass/main.scss */
.slick-next {
  right: 12px;
}

/* line 82, ../sass/main.scss */
.slick-prev:before {
  content: '\2329';
}

/* line 86, ../sass/main.scss */
.slick-next:before {
  content: '\232A';
}

/* line 90, ../sass/main.scss */
.slick-prev,
.slick-next {
  cursor: pointer;
  -webkit-transform: scaleY(0.7);
  -moz-transform: scaleY(0.7);
  -ms-transform: scaleY(0.7);
  -o-transform: scaleY(0.7);
  transform: scaleY(0.7);
}

/* line 96, ../sass/main.scss */
.slick-prev:before,
.slick-next:before {
  font-family: 'Proxima Nova Thin';
  font-size: 38px;
  line-height: 0;
}

/* line 104, ../sass/main.scss */
.slideshow.invert-arrows .slick-prev:before,
.slideshow.invert-arrows .slick-next:before {
  color: black;
}

/* line 110, ../sass/main.scss */
a {
  text-decoration: none;
}

/* line 114, ../sass/main.scss */
#section-1 .section-left {
  overflow: hidden;
}

/* line 118, ../sass/main.scss */
video {
  object-fit: cover;
}
@media (max-width: 768px) {
  /* line 118, ../sass/main.scss */
  video {
    display: none;
  }
}
