html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: 'icomoon';
  src: url("../../fonts/icomoon.eot?s0lafm");
  src: url("../../fonts/icomoon.eot?s0lafm#iefix") format("embedded-opentype"), url("../../fonts/icomoon.ttf?s0lafm") format("truetype"), url("../../fonts/icomoon.woff?s0lafm") format("woff"), url("../../fonts/icomoon.svg?s0lafm#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-close:before {
  content: "\e903";
}

.icon-cta-arrow-up:before {
  content: "\e902";
}

.icon-cta-arrow-prev:before {
  content: "\e901";
}

.icon-cta-arrow:before {
  content: "\e900";
}

/*
  nav = open sans (google)
  font-family: 'Open Sans', sans-serif;
  headlines = grad, serif (fonts.com)
  font-family:'Grad W01';
  body copy = muller, sans (fonts.com)
  font-family:'Muller W00';
*/
/*$padding-sides-large: 40px;
$padding-sides-xl: 80px;*/
button, input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-color: #263746;
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Muller W00", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: 0.75em 1em;
  text-decoration: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background-color: #024b24;
  color: #fff;
}
button:disabled, input[type="button"]:disabled, input[type="reset"]:disabled, input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

fieldset {
  background-color: #1a1a1a;
  border: 1px solid #000;
  margin: 0 0 0.75em;
  padding: 1.5em;
}

input,
label,
select {
  font-family: "Muller W00", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
}

label {
  color: #363b40;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 0.375em;
}
label.required::after {
  content: "*";
}
label abbr {
  display: none;
}

input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea,
select[multiple=multiple] {
  background-color: #fff;
  border: 1px solid #363b40;
  box-sizing: border-box;
  display: block;
  font-family: "Muller W00", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  margin-bottom: 0.75em;
  padding: 0.5em;
  transition: border-color;
  width: 100%;
}
input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus,
select[multiple=multiple]:focus {
  outline: none;
}
input[type="color"]:disabled, input[type="date"]:disabled, input[type="datetime"]:disabled, input[type="datetime-local"]:disabled, input[type="email"]:disabled, input[type="month"]:disabled, input[type="number"]:disabled, input[type="password"]:disabled, input[type="search"]:disabled, input[type="tel"]:disabled, input[type="text"]:disabled, input[type="time"]:disabled, input[type="url"]:disabled, input[type="week"]:disabled, input:not([type]):disabled, textarea:disabled,
select[multiple=multiple]:disabled {
  background-color: #f0f0f0;
  cursor: not-allowed;
}
input[type="color"]:disabled:hover, input[type="date"]:disabled:hover, input[type="datetime"]:disabled:hover, input[type="datetime-local"]:disabled:hover, input[type="email"]:disabled:hover, input[type="month"]:disabled:hover, input[type="number"]:disabled:hover, input[type="password"]:disabled:hover, input[type="search"]:disabled:hover, input[type="tel"]:disabled:hover, input[type="text"]:disabled:hover, input[type="time"]:disabled:hover, input[type="url"]:disabled:hover, input[type="week"]:disabled:hover, input:not([type]):disabled:hover, textarea:disabled:hover,
select[multiple=multiple]:disabled:hover {
  border: 1px solid #000;
}

textarea {
  resize: vertical;
}

input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin-right: 0.375em;
}

input[type="file"] {
  padding-bottom: 0.75em;
  width: 100%;
}

select {
  margin-bottom: 1.5em;
  max-width: 100%;
  width: auto;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.accordion .accordion-content ul {
  list-style-type: disc;
  margin-bottom: 0.75em;
  padding-left: 1.5em;
}
dl {
  margin-bottom: 0.75em;
}
dl dt {
  font-weight: bold;
  margin-top: 0.75em;
}
dl dd {
  margin: 0;
}

table {
  -webkit-font-feature-settings: "kern", "liga", "tnum";
  -moz-font-feature-settings: "kern", "liga", "tnum";
  -ms-font-feature-settings: "kern", "liga", "tnum";
  font-feature-settings: "kern", "liga", "tnum";
  border-collapse: collapse;
  margin: 0.75em 0;
  table-layout: fixed;
  width: 100%;
}

th {
  border-bottom: 1px solid black;
  font-weight: 600;
  padding: 0.75em 0;
  text-align: left;
}

td {
  border-bottom: 1px solid #000;
  padding: 0.75em 0;
}

tr,
td,
th {
  vertical-align: middle;
}

body {
  -webkit-font-feature-settings: "kern", "liga", "pnum";
  -moz-font-feature-settings: "kern", "liga", "pnum";
  -ms-font-feature-settings: "kern", "liga", "pnum";
  font-feature-settings: "kern", "liga", "pnum";
  -webkit-font-smoothing: antialiased;
  color: #363b40;
  font-family: "Muller W00", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  line-height: 1.25;
  margin: 0;
  font-weight: 400;
  color: #363b40;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1em;
}
@media screen and (min-width: 64em) {
  h1 {
    font-size: 4.5rem;
  }
}

h2 {
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (min-width: 64em) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}
@media screen and (min-width: 64em) {
  h3 {
    font-size: 2.25rem;
  }
}

h4, h5, h6 {
  font-family: "Muller W00", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
}

h4 {
  font-size: 2.25rem;
  font-weight: 200;
}
@media screen and (min-width: 64em) {
  h4 {
    font-size: 3rem;
  }
}

h5 {
  font-size: 1.375rem;
  line-height: 1.4em;
  font-weight: 300;
}
@media screen and (min-width: 64em) {
  h5 {
    font-size: 1.875rem;
  }
}

h6 {
  font-size: 1.125rem;
  text-transform: uppercase;
}
@media screen and (min-width: 64em) {
  h6 {
    font-size: 1.5rem;
  }
}

p, li {
  margin: 0;
  font-size: 1rem;
  line-height: 1.67em;
}
@media screen and (min-width: 64em) {
  p, li {
    font-size: 1.125rem;
  }
}

p.featured {
  font-size: 1.125rem;
  line-height: 2em;
  font-weight: 300;
}
@media screen and (min-width: 64em) {
  p.featured {
    font-size: 1.5rem;
  }
}

a {
  color: #263746;
  text-decoration: none;
  transition: color 0.2s linear;
}
a:active, a:focus, a:hover {
  color: #024b24;
}
a:active, a:focus {
  outline: none;
}

hr {
  border-bottom: 1px solid #000;
  border-left: none;
  border-right: none;
  border-top: none;
  margin: 1.5em 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  display: none;
}

.alignleft {
  display: inline;
  float: left;
}

.alignright {
  display: inline;
  float: right;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster:
       http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
body {
  background: #fff;
}

.grid-wrapper {
  max-width: 81.75em;
  margin-left: auto;
  margin-right: auto;
}
.grid-wrapper::after {
  clear: both;
  content: "";
  display: table;
}

.content-wrapper {
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (min-width: 47.5em) {
  .content-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 64em) {
  .content-wrapper {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
    margin-left: 8.5298%;
    padding-left: 0;
    padding-right: 0;
  }
  .content-wrapper:last-child {
    margin-right: 0;
  }
}

/*.main-content-area {
  padding: 30px 0;
  @include media($medium-screen-up) {
    padding: 45px 0;
  }
  @include media($large-screen-up) {
    padding: 60px 0;
  }
}*/
.site-header,
.header-placeholder {
  height: 70px;
  background: #292a2e;
}
@media screen and (min-width: 47.5em) {
  .site-header,
  .header-placeholder {
    height: 120px;
  }
}

.header-placeholder {
  background: #292a2e;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
}

.site-branding {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 47.5em) {
  .site-branding {
    float: left;
    padding-top: 0;
  }
}
.site-branding .logo {
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
  display: block;
  width: 80px;
  height: 50px;
  background: url(../../images/dr-logo.svg) no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 47.5em) {
  .site-branding .logo {
    margin-top: 30px;
    width: 100px;
    height: 62px;
  }
}

.menu-toggle {
  position: absolute;
  top: 10px;
  right: 5%;
  display: block;
  width: 40px;
  height: 48px;
  background: url(../../images/mobile-menu.svg) no-repeat center;
  background-size: contain;
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
}
@media screen and (min-width: 47.5em) {
  .menu-toggle {
    display: none;
  }
}

.main-navigation {
  display: none;
  position: relative;
  width: 100vw;
  margin-left: -5vw;
  background: #fff;
}
@media screen and (min-width: 47.5em) {
  .main-navigation {
    display: block;
    float: right;
    width: auto;
    padding-top: 70px;
    margin-left: 0;
    background: transparent;
  }
}
@media screen and (min-width: 47.5em) {
  .main-navigation .nav-links {
    text-align: right;
  }
}
@media screen and (min-width: 47.5em) {
  .main-navigation .nav-links li {
    display: inline-block;
    margin-left: 20px;
  }
}
@media screen and (min-width: 64em) {
  .main-navigation .nav-links li {
    margin-left: 25px;
  }
}
.main-navigation .nav-links a {
  display: block;
  position: relative;
  padding: 10px 5%;
  border-bottom: 1px solid #ccc;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1em;
  color: #363b40;
}
@media screen and (min-width: 47.5em) {
  .main-navigation .nav-links a {
    padding: 0;
    border: none;
    font-size: 0.8125rem;
    color: #fff;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
}

@media screen and (min-width: 47.5em) {
  .main-nav-container .nav-links .current_page_item a,
  .main-nav-container .nav-links .current_page_parent a {
    border-color: #0678D5;
  }
  .main-nav-container .nav-links a {
    padding-bottom: 7px;
    border-bottom: 1px solid #434b53;
  }
  .main-nav-container .nav-links a:hover {
    border-color: #888;
  }
}

@media screen and (min-width: 47.5em) {
  .utility-nav-container {
    position: absolute;
    top: 0;
    right: 0;
  }
  .utility-nav-container .nav-links li {
    vertical-align: middle;
  }
  .utility-nav-container .nav-links a {
    font-weight: 400;
  }
  .utility-nav-container .nav-links a:hover {
    opacity: .7;
  }
  .utility-nav-container .nav-links .search-button a {
    overflow: hidden;
    text-indent: 101%;
    white-space: nowrap;
    width: 45px;
    height: 45px;
    background: #363b40 url(../../images/search.svg) no-repeat center;
    background-size: 20px;
    color: transparent;
    -webkit-transition: opacity 0.3s linear;
    -moz-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
  }
  .utility-nav-container .nav-links .search-button a:hover {
    opacity: .5;
  }
  .utility-nav-container .nav-links .search-button a.is-active {
    opacity: .3;
  }
}

.search-form {
  position: absolute;
  bottom: 1px;
  left: 5%;
  width: 90%;
}
@media screen and (min-width: 47.5em) {
  .search-form {
    display: none;
    top: 30px;
    bottom: auto;
    right: 0;
    left: auto;
    width: 265px;
  }
}
@media screen and (min-width: 64em) {
  .search-form {
    top: 40px;
  }
}
.search-form input[type='search'] {
  background: #fafafa;
  border: none;
  border-radius: 0;
  box-shadow: 0 0 0;
  padding: 8px;
  margin: 0;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
}
.search-form input[type='submit'] {
  display: none;
}

.site-footer {
  padding: 30px 0;
  background: #363b40;
}
@media screen and (min-width: 47.5em) {
  .site-footer {
    padding: 60px 0;
  }
}
@media screen and (min-width: 64em) {
  .site-footer {
    padding: 100px 0;
  }
}
@media screen and (min-width: 47.5em) {
  .site-footer .footer-col {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  .site-footer .footer-col:last-child {
    margin-right: 0;
  }
  .site-footer .footer-col.thin-col {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 14.70196%;
  }
  .site-footer .footer-col.thin-col:last-child {
    margin-right: 0;
  }
}
.site-footer .footer-col + .footer-col {
  margin-top: 20px;
}
@media screen and (min-width: 47.5em) {
  .site-footer .footer-col + .footer-col {
    margin-top: 0;
  }
}
.site-footer .footer-col * {
  color: #fff;
}
.site-footer .footer-col * + * {
  margin-top: 10px;
}
@media screen and (min-width: 47.5em) {
  .site-footer .footer-col * + * {
    margin-top: 20px;
  }
}
.site-footer .footer-col p {
  font-size: 0.875rem;
  line-height: 1.25em;
}
.site-footer .footer-col p span {
  font-size: 0.625rem;
  text-transform: uppercase;
}
.site-footer .footer-col a {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.site-footer .footer-col a:hover {
  opacity: .7;
}
.site-footer .footer-col-headline {
  font-size: 1.125rem;
}

.main-content-area {
  padding: 30px 0;
}
@media screen and (min-width: 47.5em) {
  .main-content-area {
    padding: 45px 0;
  }
}
@media screen and (min-width: 64em) {
  .main-content-area {
    padding: 60px 0;
  }
}
.main-content-area .entry-header {
  margin-bottom: 20px;
}
@media screen and (min-width: 47.5em) {
  .main-content-area .entry-header {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 64em) {
  .main-content-area .entry-header {
    margin-bottom: 40px;
  }
}
.main-content-area .entry-header .entry-title {
  color: #0678D5;
}
.main-content-area .main-content-section {
  /*&+.main-content-section {*/
  margin-top: 30px;
  /*}*/
}
@media screen and (min-width: 47.5em) {
  .main-content-area .main-content-section {
    margin-top: 50px;
  }
}
@media screen and (min-width: 47.5em) {
  .main-content-area .main-content-section {
    margin-top: 90px;
  }
}

.halves {
  display: block;
}
.halves::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (min-width: 47.5em) {
  .halves .half {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .halves .half:last-child {
    margin-right: 0;
  }
  .halves .half:nth-child(2n) {
    margin-right: 0;
  }
  .halves .half:nth-child(2n+1) {
    clear: left;
  }
}
.halves .half + .half {
  margin-top: 20px;
}
@media screen and (min-width: 47.5em) {
  .halves .half + .half {
    margin-top: 40px;
  }
  .halves .half + .half:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 64em) {
  .halves .half + .half {
    margin-top: 60px;
  }
}
.halves .entry-content > * + * {
  margin-top: 20px;
}
@media screen and (min-width: 64em) {
  .halves .entry-content > * + * {
    margin-top: 30px;
  }
}
.halves .entry-content ol, .halves .entry-content ul {
  padding-left: 20px;
}
.halves .entry-content ol {
  list-style: decimal;
  text-transform: uppercase;
}
.halves .entry-content ul {
  list-style: disc;
}

.home-slider {
  position: relative;
  margin: 0;
  padding: 0;
  background: #292a2e;
}
.home-slider .slides {
  height: auto;
}
@media screen and (min-width: 47.5em) {
  .home-slider .slides {
    height: 400px;
  }
}
.home-slider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.home-slider .slides > li {
  display: none;
  padding: 20px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-backface-visibility: hidden;
}
@media screen and (min-width: 47.5em) {
  .home-slider .slides > li {
    height: 100%;
    padding: 0;
  }
}
.home-slider .slides img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 47.5em) {
  .home-slider .grid-wrapper {
    height: 100%;
    text-align: center;
  }
  .home-slider .grid-wrapper:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.35em;
  }
}
.home-slider .home-slider-content {
  width: 100%;
  padding: 0 5%;
  text-align: left;
}
@media screen and (min-width: 47.5em) {
  .home-slider .home-slider-content {
    display: inline-block;
    vertical-align: middle;
    padding: 0 40px;
    margin-top: -20px;
  }
}
@media screen and (min-width: 64em) {
  .home-slider .home-slider-content {
    width: 83%;
    padding: 0;
  }
}
@media screen and (min-width: 81.75em) {
  .home-slider .home-slider-content {
    width: 66%;
  }
}
.home-slider .home-slider-content h1 {
  margin-bottom: 30px;
  color: #0678D5;
}
.home-slider .home-slider-content p {
  color: #fff;
}
.home-slider .flex-control-nav {
  width: 100%;
  padding-bottom: 10px;
  background: #292a2e;
  text-align: center;
  z-index: 100;
}
@media screen and (min-width: 47.5em) {
  .home-slider .flex-control-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding-bottom: 0;
    background: none;
  }
}
.home-slider .flex-control-nav li {
  display: inline-block;
}
.home-slider .flex-control-nav li + li {
  margin-left: 20px;
}
.home-slider .flex-control-nav li a {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: rgba(41, 42, 46, 0.01);
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
}
.home-slider .flex-control-nav li a:before {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}
.home-slider .flex-control-nav li a.flex-active {
  border-color: #fff;
}

/*
 * jQuery FlexSlider v2.6.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}

.slides {
  overflow: hidden;
}

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

.promo-cta-hover {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 44px;
  border-top: 1px solid #0678D5;
  background: transparent;
}
@media screen and (min-width: 64em) {
  .promo-cta-hover {
    height: 60px;
  }
}
.promo-cta-hover:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0678D5;
  background: -webkit-linear-gradient(90deg, #0678D5, #263746);
  background: linear-gradient(90deg, #0678D5, #263746);
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
@media screen and (min-width: 47.5em) {
  .promo-cta-hover:before {
    opacity: 0;
  }
}

.promo-cta-parent.is-hovered .promo-cta-hover:before {
  opacity: 1;
}

.home-promos {
  background: #4e555c;
}

.home-promo {
  position: relative;
  background: #363b40;
}
@media screen and (min-width: 47.5em) {
  .home-promo {
    display: block;
  }
  .home-promo::after {
    clear: both;
    content: "";
    display: table;
  }
}
@media screen and (min-width: 64em) {
  .home-promo {
    min-height: 340px;
  }
}
.home-promo .grid-wrapper {
  position: relative;
}
.home-promo .home-promo-image {
  position: relative;
  height: 100%;
  min-height: 100px;
  background-repeat: none;
  background-position: center;
  background-size: cover;
  z-index: 1;
}
@media screen and (min-width: 47.5em) {
  .home-promo .home-promo-image {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 40.29137%;
    min-height: auto;
    background-color: transparent;
    background-blend-mode: screen;
    -webkit-transition: background-color 0.2s linear;
    -moz-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
  }
  .home-promo .home-promo-image:last-child {
    margin-right: 0;
  }
}
.home-promo .home-promo-content {
  padding: 20px 5% 10px;
  color: #fff;
}
@media screen and (min-width: 47.5em) {
  .home-promo .home-promo-content {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 57.35098%;
    margin-right: 0;
    padding: 35px 40px 64px 1.5%;
  }
  .home-promo .home-promo-content:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 64em) {
  .home-promo .home-promo-content {
    padding: 50px 8% 70px 1.5%;
  }
}
@media screen and (min-width: 81.75em) {
  .home-promo .home-promo-content {
    padding-right: 17%;
  }
}
.home-promo .home-promo-content * + * {
  margin-top: 20px;
}
@media screen and (min-width: 64em) {
  .home-promo .home-promo-content * + * {
    margin-top: 30px;
  }
}
.home-promo .home-promo-headline {
  color: #fff;
}
.home-promo .home-promo-cta {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 47.5em) {
  .home-promo .home-promo-cta {
    position: absolute;
    bottom: 0;
    left: 40%;
    width: 60%;
    background: transparent;
  }
}
.home-promo .home-promo-cta a {
  display: block;
  padding: 12px 5%;
  border-top: 1px solid #ccc;
  font-size: 1.25rem;
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-style: italic;
  line-height: 1em;
  color: #fff;
}
.home-promo .home-promo-cta a span {
  margin-left: 7px;
  font-size: .625em;
}
.home-promo .home-promo-cta a:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #0678D5;
  background: -webkit-linear-gradient(90deg, #0678D5, #263746);
  background: linear-gradient(90deg, #0678D5, #263746);
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
@media screen and (min-width: 47.5em) {
  .home-promo .home-promo-cta a:before {
    opacity: 0;
  }
}
.home-promo .home-promo-cta a:hover:before {
  opacity: 1;
}
@media screen and (min-width: 47.5em) {
  .home-promo .home-promo-cta a {
    padding: 12px 0 12px 7%;
  }
}
@media screen and (min-width: 64em) {
  .home-promo .home-promo-cta a {
    padding: 18px 0 18px 7%;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 47.5em) {
  .home-promo .promo-cta-hover {
    left: auto;
    right: 0;
    width: 70vw;
  }
}

.home-promo:nth-child(even) {
  background: #292a2e;
}
@media screen and (min-width: 47.5em) {
  .home-promo:nth-child(even) .home-promo-image {
    margin-left: 59.70863%;
  }
}
@media screen and (min-width: 47.5em) {
  .home-promo:nth-child(even) .home-promo-content {
    margin-left: -102.35765%;
    padding-left: 4%;
  }
}
@media screen and (min-width: 47.5em) {
  .home-promo:nth-child(even) .home-promo-content {
    padding-right: 40px;
  }
}
@media screen and (min-width: 64em) {
  .home-promo:nth-child(even) .home-promo-content {
    padding-right: 5%;
  }
}
@media screen and (min-width: 81.75em) {
  .home-promo:nth-child(even) .home-promo-content {
    padding-right: 14%;
  }
}
.home-promo:nth-child(even) .home-promo-cta {
  left: 0;
}
.home-promo:nth-child(even) .promo-cta-hover {
  left: 0;
  right: auto;
}

.wide-promo {
  position: relative;
  padding-top: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}
@media screen and (min-width: 47.5em) {
  .wide-promo {
    padding-top: 50px;
  }
}
@media screen and (min-width: 64em) {
  .wide-promo {
    padding-top: 100px;
  }
}
.wide-promo .wide-promo-content {
  position: relative;
  width: 100%;
  padding: 0 5%;
  text-align: left;
  z-index: 1;
}
@media screen and (min-width: 47.5em) {
  .wide-promo .wide-promo-content {
    display: inline-block;
    vertical-align: middle;
    padding: 0 40px;
  }
}
@media screen and (min-width: 64em) {
  .wide-promo .wide-promo-content {
    width: 83%;
    padding: 0;
  }
}
@media screen and (min-width: 81.75em) {
  .wide-promo .wide-promo-content {
    width: 66%;
  }
}
.wide-promo .wide-promo-content .wide-promo-headline {
  margin-bottom: 30px;
  color: #0678D5;
}
.wide-promo .wide-promo-content p {
  color: #fff;
}
.wide-promo .wide-promo-cta {
  position: relative;
  display: block;
  padding: 12px 0;
  margin-top: 20px;
  font-size: 1.25rem;
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-style: italic;
  line-height: 1em;
  color: #fff;
  text-align: left;
  z-index: 1;
}
.wide-promo .wide-promo-cta span {
  margin-left: 7px;
  font-size: .625em;
}
@media screen and (min-width: 47.5em) {
  .wide-promo .wide-promo-cta {
    margin-top: 40px;
  }
}
@media screen and (min-width: 64em) {
  .wide-promo .wide-promo-cta {
    padding: 18px 0;
    margin-top: 80px;
    font-size: 1.5rem;
  }
}
.wide-promo .wide-promo-cta a {
  color: #fff;
}

.page-intro {
  padding: 20px 0 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 47.5em) {
  .page-intro {
    padding: 50px 0;
  }
}
@media screen and (min-width: 64em) {
  .page-intro {
    padding: 100px 0;
  }
}
.page-intro .page-intro-headline {
  margin-bottom: 30px;
  color: #0678D5;
}
.page-intro * {
  color: #fff;
}

.post-navigation,
.posts-navigation {
  margin-top: 30px;
}
@media screen and (min-width: 64em) {
  .post-navigation,
  .posts-navigation {
    margin-top: 45px;
  }
}
.post-navigation .nav-links,
.posts-navigation .nav-links {
  overflow: hidden;
}
@media screen and (min-width: 47.5em) {
  .post-navigation .nav-previous,
  .posts-navigation .nav-previous {
    width: 50%;
    float: left;
  }
}
.post-navigation .nav-previous span,
.posts-navigation .nav-previous span {
  margin-right: 7px;
}
.post-navigation .nav-next,
.posts-navigation .nav-next {
  margin-top: 10px;
}
@media screen and (min-width: 47.5em) {
  .post-navigation .nav-next,
  .posts-navigation .nav-next {
    width: 50%;
    margin-top: 0;
    float: right;
    text-align: right;
  }
}
.post-navigation .nav-next span,
.posts-navigation .nav-next span {
  margin-left: 7px;
}
.post-navigation a,
.posts-navigation a {
  font-size: 1.125rem;
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-style: italic;
  line-height: 1em;
  color: #363b40;
}
.post-navigation a span,
.posts-navigation a span {
  margin-left: 7px;
  font-size: .625em;
}
.post-navigation a:hover,
.posts-navigation a:hover {
  color: #0678D5;
}
@media screen and (min-width: 64em) {
  .post-navigation a,
  .posts-navigation a {
    font-size: 1.25rem;
  }
}
.post-navigation a span,
.posts-navigation a span {
  font-size: .75em;
  color: #0678D5;
}

.news-items .page-header {
  margin-bottom: 30px;
}
.news-items .news-item {
  position: relative;
  padding: 15px 10px;
  background: #fafafc;
}
@media screen and (min-width: 47.5em) {
  .news-items .news-item {
    padding: 30px 20px;
  }
}
.news-items .news-item + .news-item {
  margin-top: 20px;
}
.news-items .news-item > * + * {
  margin-top: 20px;
}
.news-items .news-item .entry-title {
  font-weight: normal;
}
@media screen and (min-width: 47.5em) {
  .news-items .news-item .entry-title {
    padding-right: 110px;
  }
}
.news-items .news-item .entry-title a {
  color: #363b40;
}
.news-items .news-item .news-item-cta {
  display: inline-block;
  color: #363b40;
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-style: italic;
  line-height: 1em;
}
.news-items .news-item .news-item-cta span {
  margin-left: 7px;
  font-size: .625em;
}
@media screen and (min-width: 47.5em) {
  .news-items .news-item .news-item-cta {
    position: absolute;
    top: 24px;
    right: 24px;
  }
}
.news-items .news-item .news-item-cta:hover {
  color: #0678D5;
}
.news-items .news-item .news-item-cta span {
  font-size: .88em;
  color: #0678D5;
}

.single-news-item .entry-content > * + * {
  margin-top: 20px;
}
@media screen and (min-width: 64em) {
  .single-news-item .entry-content > * + * {
    margin-top: 30px;
  }
}
.single-news-item .entry-content p:first-child {
  font-size: 1.375rem;
  line-height: 1.4em;
  font-weight: 300;
}
@media screen and (min-width: 64em) {
  .single-news-item .entry-content p:first-child {
    font-size: 1.875rem;
  }
}
.single-news-item .entry-content ol, .single-news-item .entry-content ul {
  padding-left: 20px;
}
.single-news-item .entry-content ol {
  list-style: decimal;
  text-transform: uppercase;
}
.single-news-item .entry-content ul {
  list-style: disc;
}

.bio-section.is-expanded .bio-overlay {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

.bios {
  margin-top: 30px;
  display: block;
}
.bios::after {
  clear: both;
  content: "";
  display: table;
}
.bios .bio {
  position: relative;
  padding-bottom: 70px;
  cursor: pointer;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
.bios .bio:hover .bio-face {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.bios .bio:hover .bio-label:before {
  opacity: 1;
}
.bios .bio:last-child {
  margin-right: 0;
}
.bios .bio:nth-child(2n) {
  margin-right: 0;
}
.bios .bio:nth-child(2n+1) {
  clear: left;
}
@media screen and (min-width: 47.5em) {
  .bios .bio {
    padding-bottom: 0;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  .bios .bio:nth-child(2n) {
    margin-right: 2.35765%;
  }
  .bios .bio:nth-child(2n+1) {
    clear: none;
  }
  .bios .bio:last-child {
    margin-right: 0;
  }
  .bios .bio:nth-child(3n) {
    margin-right: 0;
  }
  .bios .bio:nth-child(3n+1) {
    clear: left;
  }
}
.bios .bio + .bio {
  margin-top: 20px;
}
.bios .bio + .bio:nth-child(2) {
  margin-top: 0;
}
@media screen and (min-width: 47.5em) {
  .bios .bio + .bio {
    margin-top: 40px;
  }
  .bios .bio + .bio:nth-child(3) {
    margin-top: 0;
  }
}
@media screen and (min-width: 64em) {
  .bios .bio + .bio {
    margin-top: 60px;
  }
}
.bios .bio-face {
  display: block;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.bios .bio-label {
  position: absolute;
  bottom: 0;
  left: 0;
  min-height: 90px;
  width: 100%;
  padding: 10px 15px;
  background: #363b40;
}
@media screen and (min-width: 47.5em) {
  .bios .bio-label {
    padding: 15px 20px 20px;
    z-index: 1;
  }
  .bios .bio-label:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: #0678D5;
    background: -webkit-linear-gradient(90deg, #0678D5, #263746);
    background: linear-gradient(90deg, #0678D5, #263746);
    -webkit-transition: opacity 0.3s linear;
    -moz-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
  }
}
@media screen and (min-width: 47.5em) {
  .bios .bio-label {
    min-height: 120px;
  }
}
.bios .bio-label .bio-headline,
.bios .bio-label .bio-subhead {
  color: #fff;
}
.bios .bio-label .bio-headline {
  font-size: 1.375rem;
}
@media screen and (min-width: 64em) {
  .bios .bio-label .bio-headline {
    font-size: 1.875rem;
  }
}
.bios .bio-label .bio-subhead {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  line-height: 1.5em;
}
@media screen and (min-width: 64em) {
  .bios .bio-label .bio-subhead {
    font-size: 1rem;
  }
}

.bio-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  height: 100%;
  background: #363b40;
  overflow: scroll;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}
.bio-overlay .bio-overlay-close {
  position: absolute;
  top: 17px;
  right: 10px;
  padding: 10px;
  z-index: 10;
  color: #0678D5;
  line-height: 1em;
  font-size: 20px;
}
@media screen and (min-width: 64em) {
  .bio-overlay .bio-overlay-close {
    top: 34px;
    right: 50px;
    font-size: 30px;
  }
}
.bio-overlay .bio-overlay-image {
  width: 100vw;
  height: 100vw;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (min-width: 47.5em) {
  .bio-overlay .bio-overlay-image {
    width: 50%;
    height: 100%;
    /*background-position: center center;*/
  }
}
.bio-overlay .bio-overlay-text {
  position: relative;
  padding: 20px;
}
@media screen and (min-width: 47.5em) {
  .bio-overlay .bio-overlay-text {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
  }
}
@media screen and (min-width: 64em) {
  .bio-overlay .bio-overlay-text {
    padding: 30px 60px;
  }
}
.bio-overlay .bio-overlay-text .bio-overlay-text-content {
  display: none;
}
.bio-overlay .bio-overlay-text .bio-headline,
.bio-overlay .bio-overlay-text .bio-subhead,
.bio-overlay .bio-overlay-text p {
  color: #fff;
}
.bio-overlay .bio-overlay-text .bio-headline {
  padding-right: 25px;
}
.bio-overlay .bio-overlay-text .bio-subhead {
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media screen and (min-width: 47.5em) {
  .bio-overlay .bio-overlay-text .bio-subhead {
    margin-bottom: 10vh;
  }
}

.accordion {
  position: relative;
  background: #fafafc;
  z-index: 1;
}
.accordion:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: -1;
  opacity: 0;
  background: #0678D5;
  background: -webkit-linear-gradient(90deg, #0678D5, #263746);
  background: linear-gradient(90deg, #0678D5, #263746);
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.accordion.is-open:before {
  opacity: 1;
}
.accordion.is-open .accordion-header:hover {
  cursor: default;
}
.accordion.is-open .accordion-header:hover * {
  color: #363b40;
}
.accordion.is-open .accordion-header:hover:before {
  opacity: 0;
}
.accordion.is-open .accordion-expander {
  opacity: 0;
  margin-top: -20px;
}
@media screen and (min-width: 47.5em) {
  .accordion.is-open .accordion-expander {
    margin-top: -9px;
  }
}
.accordion.is-open .accordion-close {
  display: block;
  cursor: pointer;
}
.accordion + .accordion {
  margin-top: 20px;
}
.accordion .accordion-header {
  position: relative;
  padding: 20px 10px;
}
@media screen and (min-width: 47.5em) {
  .accordion .accordion-header {
    padding: 20px 30px;
  }
  .accordion .accordion-header:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: #0678D5;
    background: -webkit-linear-gradient(90deg, #0678D5, #263746);
    background: linear-gradient(90deg, #0678D5, #263746);
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
  }
  .accordion .accordion-header:hover {
    cursor: pointer;
  }
  .accordion .accordion-header:hover * {
    color: #fff;
  }
  .accordion .accordion-header:hover:before {
    opacity: 1;
  }
}
.accordion .accordion-header h3 {
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
@media screen and (min-width: 47.5em) {
  .accordion .accordion-header h3 {
    padding-right: 110px;
  }
}
.accordion .accordion-content {
  display: none;
  padding: 0 10px 20px;
}
@media screen and (min-width: 47.5em) {
  .accordion .accordion-content {
    padding: 0 30px 30px;
  }
}
.accordion .accordion-content > * + * {
  margin-top: 20px;
}
.accordion .accordion-expander,
.accordion .accordion-close {
  z-index: 10;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.accordion .accordion-expander {
  display: block;
  margin-top: 10px;
  font-size: 1.125rem;
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-style: italic;
  color: #363b40;
  line-height: 1em;
}
@media screen and (min-width: 47.5em) {
  .accordion .accordion-expander {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -9px;
  }
}
.accordion .accordion-expander span {
  margin-left: 7px;
  font-size: .88em;
  color: #0678D5;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.accordion .accordion-close {
  display: none;
  font-size: 1.25rem;
  line-height: 1em;
  color: #0678D5;
}
.accordion .accordion-close:hover {
  color: #0678D5;
}
@media screen and (min-width: 47.5em) {
  .accordion .accordion-close {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 20px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 64em) {
  .accordion .accordion-close {
    font-size: 1.875rem;
  }
}

.promo-boxes {
  display: block;
}
.promo-boxes::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (min-width: 47.5em) {
  .promo-boxes .promo-box.wide {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 57.35098%;
  }
  .promo-boxes .promo-box.wide:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 64em) {
  .promo-boxes .promo-box.wide {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 65.88078%;
  }
  .promo-boxes .promo-box.wide:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 47.5em) {
  .promo-boxes .promo-box.thin {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 40.29137%;
  }
  .promo-boxes .promo-box.thin:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 64em) {
  .promo-boxes .promo-box.thin {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  .promo-boxes .promo-box.thin:last-child {
    margin-right: 0;
  }
}
.promo-boxes .promo-box {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.promo-boxes .promo-box + .promo-box {
  margin-top: 20px;
}
@media screen and (min-width: 47.5em) {
  .promo-boxes .promo-box + .promo-box {
    margin-top: 0;
  }
}
.promo-boxes .promo-box.inverse * {
  color: #fff;
}
.promo-boxes .promo-box-content {
  position: relative;
  width: 100%;
  padding: 10px;
  /*padding-bottom: 35px;*/
  text-align: left;
  z-index: 1;
}
@media screen and (min-width: 47.5em) {
  .promo-boxes .promo-box-content {
    display: inline-block;
    vertical-align: middle;
    padding: 30px;
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 64em) {
  .promo-boxes .promo-box-content {
    padding-bottom: 90px;
  }
}
.promo-boxes .promo-box-content .promo-box-headline {
  margin-bottom: 10px;
}
@media screen and (min-width: 47.5em) {
  .promo-boxes .promo-box-content .promo-box-headline {
    margin-bottom: 30px;
  }
}
.promo-boxes .promo-box-cta {
  display: block;
  position: relative;
  padding: 12px 10px;
  font-size: 1.25rem;
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-style: italic;
  line-height: 1em;
  text-align: left;
  z-index: 1;
  color: #fff;
}
.promo-boxes .promo-box-cta span {
  margin-left: 7px;
  font-size: .625em;
}
@media screen and (min-width: 47.5em) {
  .promo-boxes .promo-box-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 30px;
    background: transparent;
    color: #363b40;
  }
  .promo-boxes .promo-box-cta:hover {
    color: #fff;
  }
  .promo-boxes .promo-box-cta:hover span {
    color: #fff;
  }
}
@media screen and (min-width: 64em) {
  .promo-boxes .promo-box-cta {
    padding: 18px 30px;
    font-size: 1.5rem;
  }
}
.promo-boxes .promo-box-cta span {
  color: #fff;
}
@media screen and (min-width: 47.5em) {
  .promo-boxes .promo-box-cta span {
    color: #363b40;
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    transition: color 0.2s linear;
  }
}

.testimonials {
  position: relative;
  background: #fafafc;
}
.testimonials blockquote {
  margin: 0;
  padding: 10px 15px;
}
@media screen and (min-width: 47.5em) {
  .testimonials blockquote {
    padding: 30px;
    padding-bottom: 55px;
  }
}
@media screen and (min-width: 64em) {
  .testimonials blockquote {
    padding: 40px;
    padding-bottom: 70px;
  }
}
.testimonials cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
}
@media screen and (min-width: 47.5em) {
  .testimonials cite {
    margin-top: 40px;
    text-align: right;
  }
}
.testimonials .testimonial-name {
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
}
.testimonials .testimonial-position {
  text-transform: uppercase;
  font-size: 0.75rem;
}
.testimonials .testimonial-organization {
  font-size: 0.875rem;
}
.testimonials .flex-control-nav {
  width: 100%;
  padding-bottom: 10px;
  /*background: $black;*/
  text-align: center;
  z-index: 100;
}
@media screen and (min-width: 47.5em) {
  .testimonials .flex-control-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding-bottom: 0;
    background: none;
  }
}
.testimonials .flex-control-nav li {
  display: inline-block;
}
.testimonials .flex-control-nav li + li {
  margin-left: 20px;
}
.testimonials .flex-control-nav li a {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: rgba(41, 42, 46, 0.01);
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
}
.testimonials .flex-control-nav li a:before {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #363b40;
}
.testimonials .flex-control-nav li a.flex-active {
  border-color: #0678D5;
}

.our-history p + p {
  margin-top: 20px;
}
@media screen and (min-width: 64em) {
  .our-history p + p {
    margin-top: 30px;
  }
}

.gform_footer {
  margin-top: 2rem;
}

.gform_wrapper .validation_error {
  background-color: #c72e32;
  color: #fff;
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-weight: bold;
  margin-bottom: 1.875rem;
  padding: 1.25rem 0;
  text-align: center;
}
.gform_wrapper .validation_message {
  color: #c72e32;
  line-height: 1.6em;
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-size: 0.9375rem;
  font-style: italic;
}

.gfield {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-bottom: 1.25rem;
}
.gfield:last-child {
  margin-right: 0;
}
.gfield input[type="color"], .gfield input[type="date"], .gfield input[type="datetime"], .gfield input[type="datetime-local"], .gfield input[type="email"], .gfield input[type="month"], .gfield input[type="number"], .gfield input[type="password"], .gfield input[type="search"], .gfield input[type="tel"], .gfield input[type="text"], .gfield input[type="time"], .gfield input[type="url"], .gfield input[type="week"], .gfield input:not([type]), .gfield textarea,
.gfield select[multiple=multiple] {
  border: 2px solid #9ca9b5;
  color: #9ca9b5;
  margin-bottom: 0;
  width: 100%;
}
.gfield input[type="color"]:active, .gfield input[type="color"]:focus, .gfield input[type="date"]:active, .gfield input[type="date"]:focus, .gfield input[type="datetime"]:active, .gfield input[type="datetime"]:focus, .gfield input[type="datetime-local"]:active, .gfield input[type="datetime-local"]:focus, .gfield input[type="email"]:active, .gfield input[type="email"]:focus, .gfield input[type="month"]:active, .gfield input[type="month"]:focus, .gfield input[type="number"]:active, .gfield input[type="number"]:focus, .gfield input[type="password"]:active, .gfield input[type="password"]:focus, .gfield input[type="search"]:active, .gfield input[type="search"]:focus, .gfield input[type="tel"]:active, .gfield input[type="tel"]:focus, .gfield input[type="text"]:active, .gfield input[type="text"]:focus, .gfield input[type="time"]:active, .gfield input[type="time"]:focus, .gfield input[type="url"]:active, .gfield input[type="url"]:focus, .gfield input[type="week"]:active, .gfield input[type="week"]:focus, .gfield input:not([type]):active, .gfield input:not([type]):focus, .gfield textarea:active, .gfield textarea:focus,
.gfield select[multiple=multiple]:active,
.gfield select[multiple=multiple]:focus {
  border-color: #363b40;
  color: #363b40;
}
.gfield label {
  color: #9ca9b5;
}
.gfield label.is-active {
  color: #363b40;
}
.gfield select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: #fff url(../../images/select-arrows.png) no-repeat 100%;
  border: 2px solid #9ca9b5;
  border-radius: 0;
  color: #9ca9b5;
  font-size: 1rem;
  margin-bottom: 0;
  padding: 0.3125rem 0.5rem;
  width: 100%;
}
.gfield select:active, .gfield select:focus {
  background: #fff url(../../images/select-arrows-active.png) no-repeat 100%;
  border-color: #363b40;
  color: #363b40;
  outline: none;
}
.gfield input[type="checkbox"],
.gfield input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  margin-left: -0.4375rem;
}
.gfield input[type="checkbox"] + label:before,
.gfield input[type="radio"] + label:before {
  background: #fff;
  border: 3px solid #9ca9b5;
  border-radius: 1em;
  content: "";
  display: inline-block;
  height: 1.3125rem;
  line-height: 1.5em;
  margin-bottom: 0.3125rem;
  margin-right: 0.5rem;
  padding: 0.125rem;
  text-align: center;
  vertical-align: bottom;
  width: 1.3125rem;
}
.gfield input[type="checkbox"]:checked + label:before,
.gfield input[type="radio"]:checked + label:before {
  border: 8px solid #0678D5;
  padding: 0.125rem;
}
.gfield input[type="checkbox"]:active + label:before, .gfield input[type="checkbox"]:focus + label:before,
.gfield input[type="radio"]:active + label:before,
.gfield input[type="radio"]:focus + label:before {
  box-shadow: 0 0 2px 2px #9ca9b5;
}
.gfield input[type="checkbox"]:active + label, .gfield input[type="checkbox"]:focus + label,
.gfield input[type="radio"]:active + label,
.gfield input[type="radio"]:focus + label {
  color: #363b40;
}
.gfield input[type="checkbox"] + label:before {
  border-radius: 0;
}
.gfield input[type="checkbox"]:checked + label:before {
  background: #fff;
  border-width: 3px;
  color: #0678D5;
  content: "\2713";
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 0.6875rem;
}

.gfield_error label {
  color: #c72e31;
}
.gfield_error input[type="color"], .gfield_error input[type="date"], .gfield_error input[type="datetime"], .gfield_error input[type="datetime-local"], .gfield_error input[type="email"], .gfield_error input[type="month"], .gfield_error input[type="number"], .gfield_error input[type="password"], .gfield_error input[type="search"], .gfield_error input[type="tel"], .gfield_error input[type="text"], .gfield_error input[type="time"], .gfield_error input[type="url"], .gfield_error input[type="week"], .gfield_error input:not([type]), .gfield_error textarea,
.gfield_error select[multiple=multiple] {
  border-color: #c72e31;
  margin-bottom: 0.3125rem;
}

.begin-quote-button, .quote-form .gform_button,
.quote-form .gform_next_button,
.quote-form .gform_previous_button {
  background-color: #363b40;
  border-top: 2px solid #0678D5;
  border-radius: 0;
  color: #fff;
  display: inline-block;
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-size: 1.375rem;
  font-style: italic;
  font-weight: lighter;
  padding: 1.25rem 2.5rem;
  transition: background-color linear .2s;
}
.begin-quote-button:active, .quote-form .gform_button:active,
.quote-form .gform_next_button:active,
.quote-form .gform_previous_button:active, .begin-quote-button:focus, .quote-form .gform_button:focus,
.quote-form .gform_next_button:focus,
.quote-form .gform_previous_button:focus, .begin-quote-button:hover, .quote-form .gform_button:hover,
.quote-form .gform_next_button:hover,
.quote-form .gform_previous_button:hover {
  background-color: #4d555c;
  color: #fff;
}
.begin-quote-button:after, .quote-form .gform_button:after,
.quote-form .gform_next_button:after,
.quote-form .gform_previous_button:after {
  content: '\232A';
  font-style: normal;
  font-weight: bold;
  margin-left: 1.875rem;
}

.non-mobile-copy {
  display: none;
}
@media screen and (min-width: 47.5em) {
  .non-mobile-copy .non-mobile-copy {
    display: block;
  }
}

.mobile-copy {
  display: block;
}
@media screen and (min-width: 47.5em) {
  .mobile-copy .mobile-copy {
    display: none;
  }
}

@media screen and (min-width: 47.5em) {
  .non-mobile-copy {
    display: block;
  }

  .mobile-copy {
    display: none;
  }
}
.begin-quote-button {
  margin-top: 5rem;
  padding-right: 0.9375rem;
}

.quote-form_wrapper {
  max-width: 81.75em;
  margin-left: auto;
  margin-right: auto;
}
.quote-form_wrapper::after {
  clear: both;
  content: "";
  display: table;
}

.quote-form .gform_heading {
  display: none;
}
.quote-form .gform_page_footer {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-top: 1.875rem;
  text-align: right;
}
.quote-form .gform_page_footer:last-child {
  margin-right: 0;
}
.quote-form .gform_page_footer .button {
  margin-left: 0.625rem;
}
.quote-form .gform_confirmation_message {
  font-size: 1.5rem;
}
.quote-form .gf_page_steps {
  display: block;
  margin-bottom: 2.5rem;
}
.quote-form .gf_page_steps::after {
  clear: both;
  content: "";
  display: table;
}
.quote-form .gf_step_number {
  display: none;
}
.quote-form .gf_step {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 14.70196%;
  background-color: #fafafc;
  border-bottom: 3px solid #fafafc;
  color: #9ca9b5;
  display: inline-block;
  padding: 0.625rem 3%;
  text-align: center;
  text-transform: uppercase;
}
.quote-form .gf_step:last-child {
  margin-right: 0;
}
.quote-form .gf_step:last-child {
  margin-right: 0;
}
.quote-form .gf_step_last {
  margin-right: 0;
}
.quote-form .gf_step_active {
  border-bottom: 3px solid #0678D5;
  color: #363b40;
}
.quote-form .gsection {
  margin-bottom: 0.625rem;
}
.quote-form .gfield_radio {
  margin-top: 0.3125rem;
}
.quote-form .gfield_radio li {
  display: inline-block;
  margin-right: 1.875rem;
}
.quote-form .gfield_radio li:last-child {
  margin-right: 0;
}
.quote-form .gform_validation_container {
  display: none;
}
.quote-form .field-men-count,
.quote-form .field-women-count {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 10.43705%;
}
.quote-form .field-men-count:last-child,
.quote-form .field-women-count:last-child {
  margin-right: 0;
}
.quote-form .field-men-count label,
.quote-form .field-women-count label {
  display: none;
}
.quote-form .field-men-count input,
.quote-form .field-women-count input {
  text-align: center;
}
.quote-form .field-men-count .instruction,
.quote-form .field-women-count .instruction {
  display: none;
}
.quote-form .field-men-count:nth-child(2) label, .quote-form .field-men-count:nth-child(3) label, .quote-form .field-men-count:nth-child(5) label, .quote-form .field-men-count:nth-child(6) label,
.quote-form .field-women-count:nth-child(2) label,
.quote-form .field-women-count:nth-child(3) label,
.quote-form .field-women-count:nth-child(5) label,
.quote-form .field-women-count:nth-child(6) label {
  color: #9ca9b5;
  display: block;
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-style: italic;
}
.quote-form .page-sport-count .gfield:nth-child(3n+1) {
  margin-left: 17.05961%;
}
.quote-form .page-sport-count .gfield:nth-child(3n+1).field-other-sport {
  margin-left: 0%;
}
.quote-form .page-sport-count .gfield:nth-child(6n+1) {
  margin-left: 0%;
}
.quote-form .page-sport-count .field-women-count:nth-child(6n) {
  margin-right: 0;
}
.quote-form .page-sport-count .field-women-count:nth-child(6n+1) {
  clear: left;
}
.quote-form .field-section-header {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 14.70196%;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  height: 2.5rem;
  margin-bottom: 0;
}
.quote-form .field-section-header:last-child {
  margin-right: 0;
}
.quote-form .field-section-header:nth-child(1), .quote-form .field-section-header:nth-child(4) {
  margin-top: 2.375rem;
}
.quote-form .field-section-header:nth-child(7) {
  clear: both;
}
.quote-form .field-section-header h2 {
  font-family: "Muller W00", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1rem;
}
.quote-form .field-section-header.other-section-header {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
.quote-form .field-section-header.other-section-header:last-child {
  margin-right: 0;
}
.quote-form .field-institution-name {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%;
}
.quote-form .field-institution-name:last-child {
  margin-right: 0;
}
.quote-form .field-call-time,
.quote-form .field-contact-name,
.quote-form .field-contact-title {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
.quote-form .field-call-time:last-child,
.quote-form .field-contact-name:last-child,
.quote-form .field-contact-title:last-child {
  margin-right: 0;
}
.quote-form .field-fax,
.quote-form .field-institution-type,
.quote-form .field-phone,
.quote-form .field-state,
.quote-form .field-zip-code {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
}
.quote-form .field-fax:last-child,
.quote-form .field-institution-type:last-child,
.quote-form .field-phone:last-child,
.quote-form .field-state:last-child,
.quote-form .field-zip-code:last-child {
  margin-right: 0;
}
.quote-form .field-city,
.quote-form .field-email {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
.quote-form .field-city:last-child,
.quote-form .field-email:last-child {
  margin-right: 0;
}
.quote-form .field-institution-type {
  margin-left: 8.5298%;
}
.quote-form .field-call-time,
.quote-form .field-contact-title,
.quote-form .field-institution-type,
.quote-form .field-zip-code {
  margin-right: 0;
}
.quote-form .field-email,
.quote-form .field-phone {
  clear: both;
}
.quote-form .field-other-sport {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 14.70196%;
  clear: both;
}
.quote-form .field-other-sport:last-child {
  margin-right: 0;
}
.quote-form .field-other-sport .gfield_label {
  display: none;
}
.quote-form .field-other-sport.first,
.quote-form .field-other-count.first {
  margin-top: 1.25rem;
}
.quote-form .field-other-sport.first .gfield_label,
.quote-form .field-other-count.first .gfield_label {
  color: #9ca9b5;
  display: block;
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-style: italic;
}

#gform_page_1_3 .gfield_label {
  display: none;
}
#gform_page_1_3 .field-section-title {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  height: 2.5rem;
  margin-bottom: 0;
}
#gform_page_1_3 .field-section-title:last-child {
  margin-right: 0;
}
#gform_page_1_3 .field-section-title .gsection_title {
  font-family: "Muller W00", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1rem;
}
#gform_page_1_3 .field-table-cell,
#gform_page_1_3 .field-table-drop-down {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 16.83441%;
}
#gform_page_1_3 .field-table-cell:last-child,
#gform_page_1_3 .field-table-drop-down:last-child {
  margin-right: 0;
}
#gform_page_1_3 .field-table-cell.last,
#gform_page_1_3 .field-table-drop-down.last {
  margin-right: 0;
}
#gform_page_1_3 .field-table-cell select,
#gform_page_1_3 .field-table-drop-down select {
  margin-bottom: 0.625rem;
}
#gform_page_1_3 .field-table-cell .instruction,
#gform_page_1_3 .field-table-drop-down .instruction {
  display: none;
}
#gform_page_1_3 .field-section-banner {
  background-color: #9ca9b5;
  margin-top: 1.875rem;
  margin-bottom: 1.5625rem;
  padding: 0.4375rem 0.9375rem;
}
#gform_page_1_3 .field-section-banner .gsection_title {
  color: #fff;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: lighter;
}
#gform_page_1_3 .title-column-header,
#gform_page_1_3 .year-column-header {
  color: #9ca9b5;
  display: block;
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-size: 1.25rem;
  font-style: italic;
}
#gform_page_1_3 .title-column-header {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
}
#gform_page_1_3 .title-column-header:last-child {
  margin-right: 0;
}
#gform_page_1_3 .year-column-header {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 16.83441%;
}
#gform_page_1_3 .year-column-header:last-child {
  margin-right: 0;
}
#gform_page_1_3 .year-column-header.last {
  margin-right: 0;
}
#gform_page_1_3 .form-page-header {
  margin-bottom: 1.875rem;
}
#gform_page_1_3 .page-disclaimer {
  margin-top: 1.875rem;
}

#gform_page_1_4 .gfield .gfield_label {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 82.94039%;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  height: 2.5rem;
  margin-bottom: 0;
}
#gform_page_1_4 .gfield .gfield_label:last-child {
  margin-right: 0;
}
#gform_page_1_4 .gfield .ginput_container {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 14.70196%;
  margin-right: 0;
}
#gform_page_1_4 .gfield .ginput_container:last-child {
  margin-right: 0;
}
#gform_page_1_4 .field-coverage-percentage .gfield_label {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 74.41059%;
}
#gform_page_1_4 .field-coverage-percentage .gfield_label:last-child {
  margin-right: 0;
}
#gform_page_1_4 .field-coverage-percentage .ginput_container {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
  margin-right: 0;
}
#gform_page_1_4 .field-coverage-percentage .ginput_container:last-child {
  margin-right: 0;
}
#gform_page_1_4 .field-coverage-percentage .validation_message {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
  margin-left: 76.76824%;
  margin-right: 0;
}
#gform_page_1_4 .field-coverage-percentage .validation_message:last-child {
  margin-right: 0;
}

#gform_page_1_5 .field-accidental-death .gfield_label,
#gform_page_1_5 .field-coverage-options .gfield_label,
#gform_page_1_5 .field-deductible .gfield_label,
#gform_page_1_5 .field-quote-plans .gfield_label {
  background-color: #9ca9b5;
  color: #fff;
  display: block;
  font-family: "Grad W01", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: lighter;
  margin-top: 1.875rem;
  margin-bottom: 1.5625rem;
  padding: 0.4375rem 0.9375rem;
}
#gform_page_1_5 .field-accidental-death .gfield_checkbox li,
#gform_page_1_5 .field-deductible .gfield_checkbox li {
  float: left;
  margin-right: 1.5625rem;
}
#gform_page_1_5 .field-accidental-death .gfield_checkbox li:last-child,
#gform_page_1_5 .field-deductible .gfield_checkbox li:last-child {
  margin-right: 0;
}
#gform_page_1_5 .field-accidental-death-other,
#gform_page_1_5 .field-deductible-other {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 18.96686%;
}
#gform_page_1_5 .field-accidental-death-other:last-child,
#gform_page_1_5 .field-deductible-other:last-child {
  margin-right: 0;
}
#gform_page_1_5 .field-accidental-death-other label,
#gform_page_1_5 .field-deductible-other label {
  display: inline-block;
}
#gform_page_1_5 .field-accidental-death-other .ginput_container,
#gform_page_1_5 .field-deductible-other .ginput_container {
  display: inline-block;
  margin-left: 0.9375rem;
  width: 50%;
}
#gform_page_1_5 .field-accidental-death-other .instruction,
#gform_page_1_5 .field-deductible-other .instruction {
  display: none;
}

#gform_page_1_6 .gfield_date_year,
#gform_page_1_6 .gfield_date_day,
#gform_page_1_6 .gfield_date_month {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 6.17215%;
}
#gform_page_1_6 .gfield_date_year:last-child,
#gform_page_1_6 .gfield_date_day:last-child,
#gform_page_1_6 .gfield_date_month:last-child {
  margin-right: 0;
}
#gform_page_1_6 .validation_message {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
#gform_page_1_6 .validation_message:last-child {
  margin-right: 0;
}

/*# sourceMappingURL=styles.css.map */