@charset "UTF-8";
/* Required files */ /**
 | --------------------------------------------------------------------------------
 | Generic Fonts
 | --------------------------------------------------------------------------------
 * $condensed, $default, $primary, $secondary, ...
*/
/**
 | --------------------------------------------------------------------------------
 | Object-specific fonts
 | --------------------------------------------------------------------------------
 * $button-font, $component-title, ...
 */
/**
 | --------------------------------------------------------------------------------
 | Generic Colors
 | --------------------------------------------------------------------------------
 * $brown, $red, $pantone-245
 */
/* -- Grays -- */
/**
 | --------------------------------------------------------------------------------
 | Object-specific colors
 | --------------------------------------------------------------------------------
 * $button-color, $button-color-hover, ...
 */
/**
 | --------------------------------------------------------------------------------
 | Breakpoints.
 | --------------------------------------------------------------------------------
 * Add a key and value then go make pancakes b/c you're done.
 * Usage: @include breakpoint('desktop') {...}
 */
/**
 | --------------------------------------------------------------------------------
 | Animations
 | --------------------------------------------------------------------------------
 * $fast, $slow ...
*/
/**
 | --------------------------------------------------------------------------------
 | Measurements
 | --------------------------------------------------------------------------------
 * Values you find yourself repeating should go here.
 */
/**
 * This site creates whitespace by pushing objects down. Add this
 * class to objects when you want space between its neighbor.
 */
/* @include transition(all 0.2s ease-in-out); */
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/* @include border-radius(3px, 3px, 3px, 3px); */
/* @include flex(direction); */
/**
 * Feed in a string to set mobile breakpoint styles. Strings that
 * relate to breakpoints are defined ./_variables.scss.
 *
 * @param  String
 * @param  String - default: 'min'
 */
/* Typical styles for images that cover the entire container w/o repeating */
/**
 * Calculate the REM value.
 *
 * @param  String - ex: 12px
 * @return String - ex: 1rem
 */
/**
 * Calculate the font size and line height in REM units.
 *
 * @param  String - ex: 12px
 * @param  Int - default: 1.2
 */
/**
 * Image border overlay (CSUN)
 */
/**
 * Headline positioning on a "grid"
 */
.mobile-only {
  visibility: visible;
  position: relative;
}
@media screen and (min-width: 1030px) {
  .mobile-only {
    visibility: hidden !important;
    position: absolute !important;
  }
}

@media screen and (max-width: 1029px) {
  .desktop-only {
    visibility: hidden !important;
    position: absolute !important;
  }
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.nostyle--link {
  color: inherit;
  text-decoration: none;
}

.fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/**
 * This site creates whitespace by pushing objects down. Add this
 * class to objects when you want space between its neighbor.
 */
.push {
  margin-bottom: 1rem !important;
}
@media only screen and (min-width: 1030px) {
  .push {
    margin-bottom: 3.5rem !important;
  }
}

/* Global stuff */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*
 * Reference for current font sizes and line heights found here:
 * http://typecast.com/blog/a-more-modern-scale-for-web-typography
 */
html {
  font-size: 16px;
}

body {
  font-size: 1rem;
  line-height: 1.85;
  font-family: "adelle", serif;
  font-weight: 400;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

b, strong {
  font-weight: 700;
}

a {
  color: #1D62D8;
  text-decoration: none;
  font-family: "acumin-pro", sans-serif;
}
a:hover {
  text-decoration: underline;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "acumin-pro-wide", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: 2rem;
  text-indent: -2px;
  color: #115740;
  line-height: 1.15;
  margin-bottom: 2.625rem;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1030px) {
  h1 {
    font-size: 3.0625rem;
  }
}

h2 {
  font-size: 1.625rem;
  text-indent: -2px;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1030px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1030px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: 1.125em;
}
@media only screen and (min-width: 768px) {
  h4 {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1030px) {
  h4 {
    font-size: 1.5rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1.75rem;
}
blockquote {
  font-size: 1.25rem;
  margin: 0 0 1rem;
}
@media only screen and (min-width: 768px) {
  blockquote {
    font-size: 1.5rem;
  }
}
blockquote cite {
  font-size: 0.8125rem;
}
blockquote cite::before {
  content: "— ";
}

.uni-icon {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2.4rem;
  color: #333;
}
.uni-icon.brands {
  font-weight: 400;
}
.uni-icon.fab {
  font-weight: 400;
}
.uni-icon:hover {
  color: #777;
}

.btn--link, button,
.btn {
  display: inline-block;
  position: relative;
  font-family: "acumin-pro", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
  text-decoration: none !important;
  text-align: center;
  color: #fff !important;
  background: #39934D;
  border: 1px solid #0D402F;
  padding: 0.5rem 1.85rem 0.65rem;
  cursor: pointer;
  vertical-align: middle;
  -webkit-transition: all 0.14s ease-out;
  -moz-transition: all 0.14s ease-out;
  -ms-transition: all 0.14s ease-out;
  -o-transition: all 0.14s ease-out;
  transition: all 0.14s ease-out;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .btn--link, button,
.btn {
    width: auto;
  }
}
.btn--link:hover, button:hover,
.btn:hover, .btn--link:focus, button:focus,
.btn:focus {
  text-decoration: none;
  background: #0D402F;
}

.btn-group {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .btn-group {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
.btn-group button,
.btn-group .btn {
  margin-bottom: 1rem;
  flex: 0 0 calc(33.3333333333% - 1.25rem);
  white-space: nowrap;
}
.btn-group--left button,
.btn-group--left .btn, .btn-group--right button,
.btn-group--right .btn, .btn-group--center button,
.btn-group--center .btn {
  flex: 0 0 auto;
}
.btn-group--left {
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
  .btn-group--left button,
.btn-group--left .btn {
    margin-right: 1rem;
  }
}
.btn-group--right {
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) {
  .btn-group--right button,
.btn-group--right .btn {
    margin-left: 1rem;
  }
}
.btn-group--center {
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .btn-group--center button,
.btn-group--center .btn {
    margin-left: 1rem;
  }
}
.btn-group--social {
  flex-direction: row;
  justify-content: space-between;
}

button--small,
.btn--small {
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
}
button--large,
.btn--large {
  font-size: 1.75rem;
  padding: 0.8125rem 2.375rem;
}

.btn--link {
  background-color: transparent;
  border-radius: 0;
  border: none;
  color: #115740 !important;
  padding: 0;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  margin-right: 0;
  margin-bottom: 0;
  width: auto;
}
.btn--link:hover, .btn--link:focus, .btn--link:active {
  background-color: transparent;
  text-decoration: underline !important;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
input[type=button],
input[type=reset],
input[type=submit] {
  /* Styles set in /scss/modules/buttons.scss */
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover,
.button:hover,
.more-link:hover {
  cursor: pointer;
  background: #115740;
  text-decoration: none;
}

button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus,
.button:active,
.button:focus,
.more-link:active,
.more-link:focus {
  text-decoration: none;
  outline: none;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
select,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #39934D;
  border-radius: 0;
  padding: 0.655rem;
  background: #fff;
  color: #333;
  font-family: inherit;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
select:focus,
textarea:focus {
  outline: none;
}

input[type=color] {
  padding: 0;
  margin: 0.75rem 0;
  border: none;
}

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

input[type=checkbox] + label,
input[type=radio] + label {
  display: inline;
}

fieldset {
  padding: 1.5rem 2.5rem;
  border: 2px solid #ebeef1;
}

fieldset legend {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.95rem;
  color: #2c3847;
  padding: 0 0.5em;
  font-weight: 500;
}

select {
  height: 45px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  width: 100%;
}

label {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.125rem;
  margin: 0;
  display: inline-block;
}

form > * {
  margin-bottom: 0.875rem;
  font-family: inherit;
  font-weight: inherit;
}

form > *:last-child {
  margin-bottom: 0;
}

/**
 | ------------------------------------------------------------------------------
 | Form wrapper stuffs
 | ------------------------------------------------------------------------------
 */
.form,
form {
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  padding: 2.5rem 0;
  width: 100%;
  max-width: 43.75rem;
}
.form__input-wrapper,
form__input-wrapper {
  width: 100%;
}
.form__input-wrapper--submit,
form__input-wrapper--submit {
  margin-top: 1.875rem;
}
.form__select-wrapper::after,
form__select-wrapper::after {
  content: "\f0dd";
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  right: 10px;
  color: #000;
  pointer-events: none;
}
.form__helper,
form__helper {
  font-style: italic;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 0.975rem;
}

/* necessary for responsive table */
.table-wrapper {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.table-wrapper::-webkit-scrollbar {
  display: none;
}

table {
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table {
  width: 100%;
  margin-bottom: 1.5rem;
}

table th,
table td {
  padding: 0.47rem;
  text-align: left;
  border-top: 1px solid #b8b8b8;
  text-align: center;
}

table tr th:first-child {
  text-align: left;
}

table th {
  font-weight: bold;
  vertical-align: bottom;
}

table td {
  vertical-align: top;
}

table tr:first-child th,
table tr:first-child td {
  border-top: 0;
}

table tr:last-child th,
table tr:last-child td {
  border-bottom: 1px solid #b8b8b8;
}

table tbody + tbody {
  border-top: 2px solid #b8b8b8;
}

.table-condensed th,
.table-condensed td {
  padding: 0.29rem;
}

.table-bordered {
  border: 1px solid #b8b8b8;
  border-collapse: separate;
  *border-collapse: collapsed;
  border-radius: 0.47rem;
}

.table-bordered th + th,
.table-bordered td + td,
.table-bordered th + td,
.table-bordered td + th {
  border-left: 1px solid #b8b8b8;
}

.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}

.table-bordered thead:first-child tr:first-child th:first-child,
.table-bordered tbody:first-child tr:first-child td:first-child {
  border-radius: 0.47rem 0 0 0;
}

.table-bordered thead:first-child tr:first-child th:last-child,
.table-bordered tbody:first-child tr:first-child td:last-child {
  border-radius: 0 0.47rem 0 0;
}

.table-bordered thead:last-child tr:last-child th:first-child,
.table-bordered tbody:last-child tr:last-child td:first-child {
  border-radius: 0 0 0 0.47rem;
}

.table-bordered thead:last-child tr:last-child th:last-child,
.table-bordered tbody:last-child tr:last-child td:last-child {
  border-radius: 0 0 0.47rem 0;
}

* {
  position: relative;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  font-size: 1rem;
  overflow-x: hidden;
  background: #fff;
}
@media only screen and (max-width: 1029px) {
  body.locked {
    overflow: hidden;
  }
}

body > div.content {
  color: #333;
}
body > div.content > div.landing {
  padding: 0 1.25rem;
}
@media only screen and (min-width: 1030px) {
  body > div.content > div.landing {
    padding: 0 1.875rem;
  }
}

embed,
iframe,
object {
  max-width: 100%;
}

img {
  max-width: 100%;
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

ul li, ol li {
  line-height: 1.8rem;
}
ul ul, ol ul {
  list-style-type: disc;
}
/**
 * For the large part, components on this site push other content
 * down to create space (we never push from top). However, for
 * design purposes you may need to remove that push and we
 * use these overriding classes to handle that.
 */
.no-push {
  margin-bottom: 0 !important;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* hide vue.js template till app is loaded */
[v-cloak] {
  display: none;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.125rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/* Partials */
.footer {
  background: #115740;
  color: #fff;
}
.footer svg {
  fill: #333;
  width: 2.2rem;
}
.footer svg:hover {
  fill: #777;
}
.footer a {
  color: #333;
  text-decoration: none;
}
.footer a:hover, .footer a:active, .footer a:focus {
  text-decoration: underline;
}
.footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer li {
  margin-top: 0;
  margin-bottom: 5px;
}
.footer__nav {
  background: #fff;
  color: #333;
  padding: 4.0625rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .footer__nav {
    padding: 4.0625rem 1.875rem;
  }
}
.footer__nav-cta {
  margin-bottom: 3.125rem;
}
@media only screen and (min-width: 1030px) {
  .footer__nav-cta {
    margin-bottom: 0;
  }
}
.footer__nav-links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: "acumin-pro", sans-serif;
}
@media only screen and (min-width: 768px) {
  .footer__nav-links {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}
.footer__nav-links > div {
  flex: 1 0 calc(50% - 1.25rem);
  display: flex;
  justify-content: flex-start;
  margin-bottom: 3.125rem;
}
@media only screen and (min-width: 768px) {
  .footer__nav-links > div {
    flex: 0 0 33.3333333333%;
    justify-content: center;
    margin-bottom: 0;
  }
}
.footer__nav-links-title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 700;
  padding-bottom: 1.25rem;
}
.footer__social {
  margin-top: 1.25rem;
}
.footer__utility {
  background: #115740;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "acumin-pro", sans-serif;
  padding: 2.5rem 1.25rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .footer__utility {
    padding: 2.5rem 1.875rem;
    flex-direction: row;
    text-align: left;
  }
}
.footer__utility a {
  color: #fff;
}
.footer__utility-contact {
  margin-bottom: 3.125rem;
}
@media only screen and (min-width: 768px) {
  .footer__utility-contact {
    margin-bottom: 0;
  }
}
.footer__utility-contact img {
  width: 100%;
  max-width: 150px;
  left: -10px;
}
.footer__utility-links {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .footer__utility-links {
    text-align: right;
  }
}
.footer__utility-links a {
  text-decoration: underline;
}
.footer__utility-links a:hover {
  text-decoration: none;
}
.footer__copyright {
  text-align: left;
  background: #0D402F;
  font-family: "acumin-pro", sans-serif;
  padding: 0.9375rem 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.05rem;
}
@media only screen and (min-width: 768px) {
  .footer__copyright {
    padding: 0.9375rem 1.875rem;
  }
}
.footer__copyright a {
  color: #fff;
}
.footer__copyright a:hover {
  text-decoration: underline;
}
.footer__copyright p {
  margin: 0;
}

.header {
  font-family: "acumin-pro", sans-serif;
  font-size: 1rem;
  color: #fff;
  position: sticky;
  top: 0;
  transition: top 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 100;
  /**
   * Hide/show the header on scroll.
   */
  /**
   * Wraps the mobile toggle buttons (menu, search)
   */
  /**
   * Wraps all the navs (utility, main, tertiary)
   */
  /**
   * Wraps the nav items within .header__sub-nav
   */
  /**
   * That large copy in the mega-menu that
   * matches the top-level link name.
   */
}
@media only screen and (min-width: 1030px) {
  .header {
    display: flex;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.7);
  }
}
.header--scrolled {
  top: -63px;
}
@media only screen and (min-width: 1030px) {
  .header--scrolled {
    top: -1.875rem;
  }
}
@media only screen and (min-width: 1030px) {
  .header--scrolled .header__logo {
    transform: scale(0.9) translateY(0.875rem);
  }
}
.header ul {
  list-style-type: none;
}
.header li {
  margin: 0;
  padding: 0;
}
.header a {
  text-decoration: none;
  color: inherit;
}
.header a:hover, .header a:focus {
  color: #ffc711;
}
.header a.header__cta {
  font-weight: 800;
  color: #ffc711;
}
.header__logo {
  transition: transform 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 768px) {
  .header__logo {
    max-width: 14.375rem;
  }
}
.header__toggles {
  display: flex;
  flex: 0 0 50%;
  justify-content: flex-end;
  right: -0.625rem;
}
@media only screen and (min-width: 1030px) {
  .header__toggles {
    display: none;
  }
}
.header__search-toggle {
  fill: #115740 !important;
  min-width: 1.25rem;
}
@media only screen and (min-width: 1030px) {
  .header__search-toggle {
    fill: #fff !important;
  }
}
.header__search-toggle:focus i {
  outline: auto;
}
.header__search-toggle .fa-search {
  width: 1.2rem;
}
.header__search-toggle .fa-times {
  width: 1.2rem;
  padding: 0 0.15rem;
  display: none;
}
.header__search-toggle--visible .fa-search {
  display: none;
}
.header__search-toggle--visible .fa-times {
  display: inline-block;
}
.header__menu-toggle {
  fill: #115740 !important;
}
.header__menu-toggle .fa-bars {
  width: 1.2rem;
}
.header__menu-toggle .fa-times {
  width: 1.2rem;
  display: none;
  padding: 0 0.15rem;
}
.header__menu-toggle--visible .fa-bars {
  display: none;
}
.header__menu-toggle--visible .fa-times {
  display: inline-block;
}
.header__dropdown-toggle > * {
  pointer-events: none;
}
.header__desktop-search {
  display: none;
  position: relative !important;
}
@media only screen and (min-width: 1030px) {
  .header__desktop-search {
    display: block;
  }
}
.header__desktop-search button {
  border: none;
  padding: 0;
  background: transparent;
}
.header__desktop-search form {
  position: absolute;
  top: 0;
  right: 1.875rem;
  margin: 0;
  padding: 0;
  width: 25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 1;
}
.header__desktop-search input {
  background: #0D402F;
  border: 1px solid #fff;
  padding: 0.3125rem 0.9375rem;
  margin: 0;
  color: #fff;
}
.header__primary-nav--search ul li {
  opacity: 0;
  pointer-events: none;
}
.header__primary-nav--search .header__search-toggle .fa-times {
  display: block;
}
.header__primary-nav--search .header__search-toggle .fa-search {
  display: none;
}
.header__primary-nav--search .header__desktop-search {
  opacity: 1;
  pointer-events: auto;
}
.header__primary-nav--search .header__desktop-search form {
  opacity: 1;
  pointer-events: auto;
}

.header__mobile-search {
  position: absolute;
  width: 100vw;
  opacity: 0;
  pointer-events: none;
  background: #115740;
  padding: 1.25rem;
  transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 768px) {
  .header__mobile-search {
    padding: 1.875rem;
  }
}
.header__mobile-search--visible {
  opacity: 1;
  pointer-events: auto;
}
.header__mobile-search input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-family: "acumin-pro", sans-serif;
  font-weight: 500;
  padding: 0 3.125rem 0.625rem 1.25rem;
  text-transform: uppercase;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .header__mobile-search input {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.header__mobile-search input::placeholder {
  opacity: 1;
}
.header__mobile-search input:focus, .header__mobile-search input:active {
  border-color: #fff;
}
.header__mobile-search button[type=submit] {
  border: none;
  background: transparent;
  width: auto;
  height: 100%;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 0.9375rem;
}
.header__mobile-search svg {
  width: 1.2rem;
  fill: #fff;
}
.header__identity {
  background: #ffc711;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #DEB70E;
}
@media only screen and (min-width: 768px) {
  .header__identity {
    padding: 0.75rem 1.875rem;
  }
}
@media only screen and (min-width: 1030px) {
  .header__identity {
    flex: 0 0 20%;
    border: none;
  }
}
.header__identity-decoration {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #115740;
  border-bottom: 1px solid #0D402F;
}
@media only screen and (min-width: 1030px) {
  .header__identity-decoration {
    display: block;
  }
}
.header__identity-decoration img {
  max-width: none;
  width: auto;
  max-width: none;
  top: -3px;
  height: 6.625rem;
}
.safari .header__identity-decoration img {
  height: 6.5rem;
}

.header__identity a {
  line-height: 0;
}
.header__identity button {
  border: none;
  background: transparent;
  padding: 0.625rem;
  margin: 0;
  color: #115740;
  width: auto;
}
.header__identity button > * {
  pointer-events: none;
}
.header__nav-wrapper {
  background: #115740;
  display: flex;
  flex-direction: column;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 1029px) {
  .header__nav-wrapper {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    left: 0;
    width: 100vw;
    height: calc(100% - (63px - 1px));
    overflow-y: scroll;
    transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-overflow-style: none;
    scrollbar-width: none;
    top: 3.875rem;
  }
  .header__nav-wrapper::-webkit-scrollbar {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .header__nav-wrapper {
    padding: 0 1.875rem;
  }
}
@media only screen and (min-width: 1030px) {
  .header__nav-wrapper {
    flex: 0 1 80%;
    position: static;
    border-bottom: 1px solid #0D402F;
  }
}
.header__nav-wrapper--visible {
  opacity: 1;
  pointer-events: auto;
}
.header__utility-nav {
  order: 2;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2rem;
  margin-bottom: 1.5625rem;
}
@media only screen and (max-width: 1029px) {
  .header__utility-nav {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
@media only screen and (min-width: 1030px) {
  .header__utility-nav {
    order: 1;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 0.9rem;
    margin-bottom: 0;
    width: 100%;
  }
}
.header__utility-nav a {
  font-size: inherit;
  padding: 0.3125rem 0;
  display: inline-block;
}
@media only screen and (min-width: 1030px) {
  .header__utility-nav a {
    padding: 0;
    display: inline;
  }
}
.header__utility-nav > ul {
  margin: 0;
}
.header__utility-nav ul {
  display: flex;
  flex-wrap: wrap;
  background: #0D402F;
  padding: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .header__utility-nav ul {
    padding: 1.875rem;
  }
}
@media only screen and (min-width: 1030px) {
  .header__utility-nav ul {
    flex-wrap: nowrap;
    padding: 0;
    background: transparent;
    justify-content: flex-end;
  }
}
.header__utility-nav ul > li {
  flex: 0 0 50%;
}
@media only screen and (min-width: 1030px) {
  .header__utility-nav ul > li {
    flex: 0 0 auto;
    padding: 0 0.375rem;
  }
}
@media only screen and (max-width: 1029px) {
  .header__utility-nav ul > li:first-of-type {
    flex: 0 0 100%;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 0.625rem;
  }
}
@media only screen and (min-width: 1030px) {
  .header__utility-nav ul > li:last-of-type {
    padding-right: 0;
  }
}
.header__tertiary-nav {
  order: 3;
  padding-bottom: 3.125rem;
}
@media only screen and (min-width: 1030px) {
  .header__tertiary-nav {
    padding-bottom: 0;
    position: absolute;
    bottom: -2.3125rem;
    right: 0;
    z-index: -1;
  }
}
@media only screen and (min-width: 1030px) {
  .header__tertiary-nav a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.05rem;
  }
}
.header__tertiary-nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 1030px) {
  .header__tertiary-nav > ul {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 1029px) {
  .header__tertiary-nav > ul > li:first-of-type {
    flex: 0 0 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3.125rem;
  }
}
@media only screen and (min-width: 1030px) {
  .header__tertiary-nav > ul > li:first-of-type::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -40px;
    border-left: none;
    border-right: 40px solid #0D402F;
    border-bottom: 40px solid transparent;
    border-top: 40px solid transparent;
    display: inline-block;
  }
}
@media only screen and (min-width: 1030px) {
  .header__tertiary-nav > ul > li {
    padding: 0.1875rem 1.5625rem 0.375rem;
    background: #0D402F;
    border-right: 1px solid #115740;
  }
  .header__tertiary-nav > ul > li:last-of-type {
    border: none;
    padding: 0.1875rem 1.875rem 0.375rem;
  }
}
@media only screen and (min-width: 1030px) {
  .header__tertiary-nav .header__sub-nav {
    padding: 0.625rem 1.25rem;
    width: auto;
    min-width: 100%;
    right: 0;
    left: auto;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
  }
}
@media only screen and (min-width: 1030px) {
  .header__tertiary-nav .header__sub-nav a {
    display: inline-block;
    padding: 0.5rem 0;
    width: 100%;
  }
}
@media only screen and (min-width: 1030px) {
  .header__tertiary-nav--ozark > ul > li {
    background: #39934D;
  }
}
@media only screen and (min-width: 1030px) {
  .header__tertiary-nav--ozark > ul > li:first-of-type::before {
    border-right-color: #39934D;
  }
}
.header__primary-nav {
  order: 1;
  margin-bottom: 1.5625rem;
}
@media only screen and (min-width: 1030px) {
  .header__primary-nav {
    order: 2;
    margin-bottom: 0;
    position: static;
  }
}
.header__primary-nav ul {
  padding: 0;
}
.header__primary-nav li {
  transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 1030px) {
  .header__primary-nav > ul {
    display: flex;
    justify-content: flex-end;
    position: static;
  }
}
.header__primary-nav > ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 1030px) {
  .header__primary-nav > ul > li {
    border: none;
    margin-left: 2.5rem;
    position: static;
  }
}
.header__primary-nav > ul > li:first-of-type {
  margin-left: 0;
}
.header__top-level-nav {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5rem;
  padding: 0.625rem 0;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
}
@media only screen and (min-width: 1030px) {
  .header__top-level-nav {
    padding: 0;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
.header__has-sub-nav .header__top-level-nav {
  display: inline-block;
}
.header__has-sub-nav button, .header__has-sub-nav a span {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.75rem !important;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: transparent;
  z-index: 1;
  fill: #fff;
}
@media only screen and (min-width: 768px) {
  .header__has-sub-nav button, .header__has-sub-nav a span {
    right: calc(1.875rem * -1);
    width: 5rem;
  }
}
@media only screen and (min-width: 1030px) {
  .header__has-sub-nav button, .header__has-sub-nav a span {
    right: -1.0625rem;
    width: 0.625rem;
    padding: 0;
    pointer-events: none;
  }
}
.header__has-sub-nav svg {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2rem;
  transform: rotate(0);
}
@media only screen and (max-width: 1029px) {
  .header__has-sub-nav.header__sub-nav--visible {
    border: none !important;
  }
}
.header__has-sub-nav.header__sub-nav--visible::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 1.375rem;
}
.header__has-sub-nav.header__sub-nav--visible .header__sub-nav {
  display: block;
}
@media only screen and (min-width: 1030px) {
  .header__has-sub-nav.header__sub-nav--visible .header__sub-nav {
    display: flex;
  }
}
.header__has-sub-nav.header__sub-nav--visible svg {
  transform: rotate(180deg);
  top: 5px;
}
@media only screen and (min-width: 1030px) {
  .header__has-sub-nav:hover::after, .header__has-sub-nav:focus-within::after {
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 1.375rem;
  }
  .header__has-sub-nav:hover .header__sub-nav, .header__has-sub-nav:focus-within .header__sub-nav {
    display: block;
  }
}
@media only screen and (min-width: 1030px) and (min-width: 1030px) {
  .header__has-sub-nav:hover .header__sub-nav, .header__has-sub-nav:focus-within .header__sub-nav {
    display: flex;
  }
}
@media only screen and (min-width: 1030px) {
  .header__has-sub-nav:hover svg, .header__has-sub-nav:focus-within svg {
    transform: rotate(180deg);
    top: 5px;
    right: 1px;
  }
}
.header__sub-nav {
  background: #0D402F;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0.625rem 1.25rem 1.25rem;
  display: none;
}
@media only screen and (min-width: 768px) {
  .header__sub-nav {
    padding: 0.625rem 1.875rem 1.25rem;
  }
}
@media only screen and (min-width: 1030px) {
  .header__sub-nav {
    background: rgba(13, 64, 47, 0.98);
    position: absolute;
    top: 100%;
    padding: 3.75rem 0 3.75rem 1.875rem;
    z-index: 10;
  }
}
.header__sub-nav a {
  padding: 0.3125rem 0;
  display: inline-block;
}
@media only screen and (min-width: 1030px) {
  .header__sub-nav a {
    padding: 0;
    display: inline;
  }
}
@media only screen and (min-width: 1030px) {
  .header__sub-nav-links {
    flex: 1 0 60%;
    display: flex;
  }
}
@media only screen and (min-width: 1030px) {
  .header__sub-nav-links ul {
    flex: 0 1 33.3333333333%;
    padding-right: 2rem;
  }
}
@media only screen and (min-width: 1030px) {
  .header__sub-nav-links a {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.35rem;
    line-height: 1;
    margin-bottom: 1.125rem;
    display: inline-block;
  }
}
.header__title {
  display: none;
}
@media only screen and (min-width: 1030px) {
  .header__title {
    display: block;
    flex: 0 1 40%;
    text-align: right;
    padding-right: 8.125rem;
  }
}
.header__title span {
  font-size: 49px;
  font-size: 3.0625rem;
  line-height: 3.675rem;
  font-family: "acumin-pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.header__overflow-nav {
  display: none;
}
@media only screen and (min-width: 1030px) {
  .header__overflow-nav {
    position: relative !important;
  }
  .header__overflow-nav--visible {
    display: block;
  }
  .header__overflow-nav:hover .header__overflow-container, .header__overflow-nav:focus .header__overflow-container, .header__overflow-nav:focus-within .header__overflow-container {
    opacity: 1;
    pointer-events: auto;
    top: 100%;
  }
  .header__overflow-nav button {
    border: none;
    background: transparent;
    padding: 0;
  }
}
.header__overflow-container {
  pointer-events: none;
  opacity: 0;
  transition: all 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 1030px) {
  .header__overflow-container {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 0 !important;
    background: #fff;
    box-shadow: 0 1px 1px 0 rgba(60, 64, 67, 0.2), 0 1px 2px 0 rgba(60, 64, 67, 0.3);
  }
}
@media only screen and (min-width: 1030px) {
  .header__overflow-container a {
    color: #333;
  }
  .header__overflow-container a:hover, .header__overflow-container a:focus {
    text-decoration: underline;
    color: #333;
  }
  .header__overflow-container > li {
    padding: 0.75rem 1.25rem 0.75rem 1.5rem;
  }
  .header__overflow-container .header__has-sub-nav:hover .header__sub-nav, .header__overflow-container .header__has-sub-nav:focus .header__sub-nav, .header__overflow-container .header__has-sub-nav:focus-within .header__sub-nav {
    pointer-events: auto;
    left: -100%;
    opacity: 1;
  }
  .header__overflow-container .header__has-sub-nav:hover button, .header__overflow-container .header__has-sub-nav:hover a span, .header__overflow-container .header__has-sub-nav:focus button, .header__overflow-container .header__has-sub-nav:focus a span, .header__overflow-container .header__has-sub-nav:focus-within button, .header__overflow-container .header__has-sub-nav:focus-within a span {
    left: -0.625rem;
  }
  .header__overflow-container .header__has-sub-nav:hover svg, .header__overflow-container .header__has-sub-nav:focus svg, .header__overflow-container .header__has-sub-nav:focus-within svg {
    transform: rotate(90deg);
  }
  .header__overflow-container .header__top-level-nav button {
    right: auto;
    left: -0.875rem;
    top: -0.125rem;
    transition: none;
  }
  .header__overflow-container .header__top-level-nav svg {
    color: #333;
  }
  .header__overflow-container .header__sub-nav {
    display: block;
    pointer-events: none;
    background: #fff;
    position: absolute;
    left: -90%;
    opacity: 0;
    padding: 1rem;
    top: 0.5rem;
    width: auto;
    right: auto;
    margin-left: auto;
    margin-right: auto;
    transition: all 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
    box-shadow: 0 1px 1px 0 rgba(60, 64, 67, 0.2), 0 1px 2px 0 rgba(60, 64, 67, 0.3);
  }
  .header__overflow-container .header__sub-nav .header__title {
    display: none;
  }
  .header__overflow-container .header__sub-nav .header__sub-nav-links {
    display: block;
  }
  .header__overflow-container .header__sub-nav .header__sub-nav-links > ul {
    padding: 0;
  }
}

.site-search, .sidebar__filter-search {
  width: 100%;
}
.site-search__inner, .sidebar__filter-search__inner {
  background: #115740;
  padding: 3.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .site-search__inner, .sidebar__filter-search__inner {
    padding: 3.75rem 1.875rem;
  }
}
.site-search form, .sidebar__filter-search form {
  width: 100%;
  max-width: 46.875rem;
}
.site-search input, .sidebar__filter-search input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-family: "acumin-pro", sans-serif;
  font-weight: 500;
  padding: 0 3.125rem 0.625rem 1.25rem;
  text-transform: uppercase;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .site-search input, .sidebar__filter-search input {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.site-search input::placeholder, .sidebar__filter-search input::placeholder {
  opacity: 1;
}
.site-search button[type=submit], .sidebar__filter-search button[type=submit] {
  border: none;
  background: transparent;
  width: auto;
  height: 100%;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 0.9375rem;
}
.site-search .fa-search, .sidebar__filter-search .fa-search {
  width: 1.2rem;
  fill: #fff;
}
@media only screen and (min-width: 768px) {
  .site-search .fa-search, .sidebar__filter-search .fa-search {
    width: 1.8rem;
  }
}

/**
 | ----------------------------------------------------------------------
 |  Decorative pieces that go above or below content blocks
 | ----------------------------------------------------------------------
 */
.trim {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  pointer-events: none;
}
.trim__bkg {
  overflow: hidden;
}
.trim__bkg img {
  width: 104%;
  max-width: none;
  top: 0;
  left: -0.125rem;
  z-index: 1;
}
.trim--top {
  transform: translateY(0.55rem);
}
.trim--top .trim__bkg img[src*="-1"], .trim--top .trim__bkg img[src*="-2"], .trim--top .trim__bkg img[src*="-3"], .trim--top .trim__bkg img[src*="-4"] {
  top: 0.0625rem;
}
@media only screen and (min-width: 1030px) {
  .trim--top .trim__bkg img[src*="-1"], .trim--top .trim__bkg img[src*="-2"], .trim--top .trim__bkg img[src*="-3"], .trim--top .trim__bkg img[src*="-4"] {
    top: 0.125rem;
  }
}
.trim--bottom .trim__bkg img {
  bottom: auto;
  top: 0;
}
@media only screen and (min-width: 375px) {
  .trim--bottom .trim__bkg img {
    top: -0.3125rem;
  }
}
@media only screen and (min-width: 768px) {
  .trim--bottom .trim__bkg img {
    top: -0.0625rem;
  }
}
.trim--bottom .trim__bkg img[src*="-1"], .trim--bottom .trim__bkg img[src*="-2"] {
  top: -8px;
}
@media only screen and (min-width: 375px) {
  .trim--bottom .trim__bkg img[src*="-1"], .trim--bottom .trim__bkg img[src*="-2"] {
    top: -0.3125rem;
  }
}
@media only screen and (min-width: 768px) {
  .trim--bottom .trim__bkg img[src*="-1"], .trim--bottom .trim__bkg img[src*="-2"] {
    top: -0.0625rem;
  }
}
.trim--bottom .trim__bkg img[src*="-3"], .trim--bottom .trim__bkg img[src*="-4"] {
  top: 0;
}
.trim--bottom .trim__bkg img[src*="-5"] {
  top: -0.125rem;
}
.trim__flare-rings, .trim__flare-chevron {
  position: absolute;
  top: 0;
  transform: translateY(-20%);
  max-width: 100%;
  z-index: 2;
}
.trim__flare-rings {
  width: 15vw;
  min-width: 5.3125rem;
  right: 1.25rem;
}
.trim__flare-chevron {
  width: 9vw;
  min-width: 5.3125rem;
  left: 1.25rem;
  transform: translateY(-25%);
}
.trim__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media only screen and (min-width: 1030px) {
  .trim__text {
    padding-top: 1.875rem;
  }
}
.trim__text span {
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 0.0625rem #ffc711;
  line-height: 0;
}
@media only screen and (min-width: 768px) {
  .trim__text span {
    -webkit-text-stroke: 0.25rem #ffc711;
  }
}

.sidebar {
  background: #0D402F;
  color: #fff;
  padding: 20px 0;
  order: 2;
  position: fixed;
  left: -100%;
  transition: left 250ms ease-out;
  z-index: 20;
  box-shadow: 1px 0 10px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 1030px) {
  .sidebar {
    padding: 0;
    align-self: start;
    position: sticky;
    top: 5.625rem;
    transition: top 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
    order: 1;
    box-shadow: none;
    height: 100vh;
  }
}
.sidebar--visible {
  left: 0;
}
.sidebar--visible .sidebar__close-trigger {
  opacity: 1;
  transition: opacity 250ms ease-out 250ms;
}
@media only screen and (min-width: 1030px) {
  .sidebar--scrolled {
    top: 3.75rem;
  }
  .sidebar--scrolled .sidebar__inner {
    height: calc(100vh - 133px);
  }
}
.sidebar__inner {
  overflow-y: scroll;
  height: calc(100vh - 82px);
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0 20px;
  width: 100%;
  max-width: 16.875rem;
}
.sidebar__inner::-webkit-scrollbar {
  display: none;
}
@media only screen and (min-width: 1030px) {
  .sidebar__inner {
    transition: height 250ms ease-out;
    padding: 30px;
  }
}
.sidebar__title {
  font-family: "acumin-pro", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: inherit;
  text-transform: none;
  margin-bottom: 3rem;
}
.sidebar__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 1.5rem);
  background: url("../img/bling/dot-yellow.png") 0 100% repeat-x;
  background-size: 10px;
}
.sidebar__nav svg {
  width: 0.6rem;
  fill: #fff;
  position: absolute;
  right: 0;
  top: 5px;
  z-index: 2;
  transition: transform 100ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 1030px) {
  .sidebar__nav svg {
    right: -15px;
  }
}
.sidebar__nav svg * {
  pointer-events: none;
}
.sidebar__close-trigger {
  position: absolute;
  top: 20px;
  right: -30px;
  opacity: 0;
  transition: opacity 250ms ease-out;
  width: auto;
  background: transparent;
  border: none;
  text-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.8);
  padding: 0;
  z-index: 1;
}
.sidebar__close-trigger:hover {
  background-color: transparent;
}
.sidebar__close-trigger svg {
  fill: #115740;
  width: 1rem;
}
@media only screen and (min-width: 1030px) {
  .sidebar__close-trigger {
    display: none;
  }
}
.sidebar__close-trigger::after {
  display: none;
}
.sidebar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.sidebar ul .sidebar__sub-nav {
  opacity: 0;
  display: none;
  padding-left: 20px;
  margin: 10px 0;
}
.sidebar ul .sidebar__sub-nav li.current-page > a {
  color: #ffc711;
}
.sidebar ul .sidebar__sub-nav li.current-page > a::before {
  left: -40px;
}
@media only screen and (min-width: 1030px) {
  .sidebar ul .sidebar__sub-nav li.current-page > a::before {
    left: -50px;
  }
}
.sidebar ul .sidebar__sub-nav .sidebar__sub-nav li.current-page > a::before {
  left: -60px;
}
@media only screen and (min-width: 1030px) {
  .sidebar ul .sidebar__sub-nav .sidebar__sub-nav li.current-page > a::before {
    left: -70px;
  }
}
.sidebar li {
  margin: 16px 0;
}
.sidebar li:first-of-type {
  margin-top: 0;
}
.sidebar li:last-of-type {
  margin-bottom: 0;
}
.sidebar li.expanded > .sidebar__sub-nav {
  opacity: 1;
  display: block;
}
.sidebar li.expanded > svg {
  transform: rotate(90deg);
}
.sidebar li.current-page {
  color: #ffc711;
}
.sidebar li.current-page > a {
  color: inherit;
}
.sidebar li.current-page > svg {
  fill: #ffc711;
}
.sidebar li.current-page > .sidebar__sub-nav {
  border-left: 2px solid #ffc711;
}
.sidebar a {
  display: block;
  width: 100%;
  padding: 0;
  text-decoration: none;
  color: #fff;
  line-height: 1.3rem;
  font-weight: 700;
}
.sidebar a:hover {
  text-decoration: underline;
}
.sidebar__separator {
  border-top: 1px dotted #ccc;
  margin-top: 0.875rem !important;
  padding-top: 0.875rem !important;
}
@media only screen and (max-width: 1029px) {
  .sidebar--full-height {
    top: 3.9375rem;
  }
}
.sidebar--full-height .sidebar__inner {
  height: 100vh !important;
  padding-bottom: 60px;
}

.sidebar__programs .sidebar__inner {
  margin-right: 0;
  margin-bottom: 1.5rem !important;
  max-width: 100%;
}
.sidebar__programs h4 {
  text-transform: none;
  font-size: 1.2rem;
  font-weight: 400;
}

#sidebar__filter-programs {
  margin-bottom: 1.5rem;
  border: 1px solid #fff;
  padding: 1rem;
}
#sidebar__filter-programs label {
  pointer-events: auto;
}

.filter-programs__section-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
}

.filter-programs__sub-menu {
  font-weight: normal;
  padding-left: 0.75rem !important;
}
.filter-programs__sub-menu li {
  margin: 0 0 0.5rem;
}

.sidebar__filter-search form {
  padding: 1rem 0 1.5rem;
}
.sidebar__filter-search a {
  text-align: right;
  text-decoration: underline;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.sidebar__filter-search input, .sidebar__filter-search i {
  font-size: 1rem;
  line-height: 1;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.sidebar__filter-search input::placeholder {
  color: #fff;
}

.sidebar__faculty h5 {
  font-family: "acumin-pro", sans-serif;
  text-transform: none;
  font-size: 1.1rem;
}
.sidebar__faculty a {
  font-weight: 400;
  font-family: "adelle", serif;
}
.sidebar__faculty .sidebar__inner {
  margin-right: 0;
  margin-bottom: 1.5rem !important;
}
.sidebar__faculty .sidebar__inner img {
  width: 100%;
}
.sidebar__faculty--block {
  border: 2px solid #fff;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.sidebar__faculty--block div {
  margin-bottom: 0.5rem;
}
.sidebar__faculty-image {
  border: none;
  padding: 0;
}
.sidebar__faculty p {
  margin-bottom: 0;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease-out;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 768px) {
  .video-modal {
    padding: 5rem;
  }
}
.video-modal__inner {
  background: #fff;
  padding: 1rem;
  width: 100%;
  border-radius: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .video-modal__inner {
    padding: 2rem;
  }
}
.video-modal__video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.video-modal__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-modal__close {
  position: absolute;
  background: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5rem;
  border: none;
}
@media only screen and (max-width: 767px) {
  .video-modal__close {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -1rem;
    right: -1rem;
  }
  .video-modal__close:focus, .video-modal__close:active, .video-modal__close:hover {
    background: #fff;
    text-deocration: none !important;
  }
  .video-modal__close:focus, .video-modal__close:active {
    outline: 1px dotted;
  }
}
@media only screen and (min-width: 768px) {
  .video-modal__close {
    top: 0.3125rem;
    right: 0.625rem;
  }
}
.video-modal__close::after {
  display: none;
}
.video-modal--visible {
  opacity: 1;
  pointer-events: auto;
}

/* Templates */
.page {
  order: 1;
  padding: 0 1.25rem;
}
@media only screen and (min-width: 768px) {
  .page {
    padding: 0 1.875rem;
  }
}
@media only screen and (min-width: 1030px) {
  .page {
    order: 2;
  }
}
.page h1, .page h2, .page h3, .page h4, .page h5, .page h6,
.page p, .page ul, .page ol, .page dl, .page embed {
  max-width: 71.25rem;
  margin-left: 0;
}
.page--top-padding {
  padding-top: 3rem;
}

.landing {
  padding: 0 1.25rem;
}
@media only screen and (min-width: 768px) {
  .landing {
    padding: 0 1.875rem;
  }
}
.landing h1, .landing h2, .landing h3, .landing h4, .landing h5, .landing h6,
.landing p, .landing ul, .landing ol, .landing dl, .landing embed {
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}

.page__counselors h1 {
  text-align: left;
  margin: 0 0 1.5rem;
}

.find-counselor {
  border: 1px solid #115740;
  padding: 1rem;
  margin-bottom: 3rem;
}
.find-counselor__title {
  background-color: #DDDDDD;
  text-align: center;
  padding: 0.25rem;
  margin-bottom: 1rem;
  color: #115740;
}
.find-counselor__title p {
  margin-bottom: 0;
}
.find-counselor__student-type {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .find-counselor__student-type {
    margin-bottom: 0;
    padding-right: 1rem;
  }
}
.find-counselor__student-type button {
  background: #fff;
  border: 2px solid #115740;
  color: #115740 !important;
  margin-bottom: 1rem;
  padding: 2rem;
}
.find-counselor__student-type button:last-of-type {
  margin-bottom: 0;
}
.find-counselor__student-type button:hover {
  background: #115740;
  color: #fff !important;
}
.find-counselor__student-type button.active {
  background-color: #115740;
  color: #fff !important;
}
.find-counselor__block-inner {
  padding: 1.5rem;
}
.find-counselor__block-column {
  display: flex;
  flex-direction: column;
}
.find-counselor__block-column a {
  color: #115740;
}
.find-counselor__counselor-contact, .find-counselor__counselor-title {
  margin-bottom: 1rem;
}
.find-counselor__counselor-contact p, .find-counselor__counselor-title p {
  margin-bottom: 0;
}
.find-counselor__counselor-name {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "acumin-pro-wide", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
  text-indent: -2px;
  font-size: 1.75rem;
}
.find-counselor__content {
  margin-top: 2rem;
}
.find-counselor__cta {
  margin: 3rem 0;
  text-align: center;
}
.find-counselor__image {
  position: relative;
  height: 260px;
}
.find-counselor__image::after {
  content: "";
  width: 110%;
  height: 2rem;
  position: absolute;
  bottom: 0;
  left: -0.625rem;
  transform: rotate(-5deg);
  background: #fff;
  z-index: 0;
}

.page__faculty {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1030px) {
  .page__faculty::after {
    content: "";
    position: absolute;
    top: 4rem;
    right: -2rem;
    width: 18.75rem;
    height: 19.1875rem;
    background: transparent url("../img/bling/dots-round-yellow.png") center no-repeat;
    background-size: contain;
  }
}
.page__faculty-section {
  margin-bottom: 2rem;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-left: 0;
}
.page__faculty h1 {
  margin-bottom: 0.5rem !important;
  font-size: 2.7rem;
}
.page__faculty h1, .page__faculty h2 {
  color: #115740;
}
.page__faculty-info {
  margin-bottom: 2rem;
}
.page__faculty-info h3, .page__faculty-info h4 {
  text-transform: none;
  font-family: "acumin-pro", sans-serif;
}
.page__faculty-info h3 {
  font-size: 1.4rem;
}
.page__faculty-info h4 {
  font-size: 1.2rem;
}
.page__faculty-info p {
  margin-bottom: 0.5rem;
}
.page__faculty h1 {
  text-align: left;
  margin: 0 0 1.5rem;
}
.page__faculty .page__faculty-work {
  margin-top: 1.5rem;
}
.page__faculty .page__faculty-work h3 {
  font-size: 1.4rem;
  color: #115740;
  font-family: "acumin-pro-wide", sans-serif;
  text-transform: uppercase;
}
.page__faculty .page__faculty-work p {
  margin-bottom: 1rem;
}
.page__faculty .page__faculty-work a {
  color: #39934D;
  font-weight: 700;
  text-decoration: none;
}
.page__faculty .page__faculty-work a:hover {
  text-decoration: underline;
}

.page__programs--programs .accordion__section {
  position: relative;
  margin: 0.5rem;
}
.page__programs--programs .accordion__panel {
  position: absolute;
  background-color: #fff;
  z-index: 1;
}
.page__programs--programs .accordion__panel .btn {
  margin-top: 1rem;
  display: block;
  width: 200px;
}
.page__programs--programs .accordion__toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
  border: 2px solid #115740;
  cursor: pointer;
  padding: 1.5rem 2.5rem 1.5rem 1rem;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 1.1rem;
  position: relative;
}
.page__programs--programs .accordion__toggle.active {
  background-color: #115740;
  color: #fff;
}
.page__programs--programs .accordion__toggle.active .accordion__title {
  color: #fff;
}
.page__programs--programs .accordion__toggle.active .accordion__open {
  display: none;
}
.page__programs--programs .accordion__toggle.active .accordion__close {
  display: block;
  color: #fff;
}
.page__programs--programs .accordion__close {
  display: none;
}
.page__programs--programs .accordion__icon span {
  color: #115740;
}
.page__programs--programs .accordion__title {
  padding-left: 0.75rem;
  color: #115740;
}
.page__programs--programs .accordion__panel {
  padding: 1rem;
  background-color: white;
  display: none;
  overflow: hidden;
  transition: 0.4s;
  border-right: 2px solid #115740;
  border-left: 2px solid #115740;
  border-bottom: 2px solid #115740;
}
.page__programs--programs .accordion__panel.active {
  display: block;
}

.page__programs--search-disclaimer {
  background-color: #DDDDDD;
  padding: 1rem;
  color: #115740;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .page__programs--search-disclaimer {
    padding: 1.875rem;
  }
}
.page__programs--search-disclaimer p {
  text-align: center;
}

.page__programs--programs {
  padding-bottom: 6rem;
}

/* Components */
.section-links {
  background: #39934D;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1030px) {
  .page .section-links {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .section-links {
    margin-bottom: 3.5rem;
  }
}
.section-links ul {
  list-style-type: none;
  margin: 0 0 0.625rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  display: none;
  max-width: none;
}
@media only screen and (min-width: 1030px) {
  .section-links ul {
    padding: 1.875rem 3.75rem;
    flex-wrap: wrap;
    flex-direction: row;
    display: flex;
    justify-content: center;
    margin: 0;
  }
}
.section-links li {
  text-align: center;
}
@media only screen and (min-width: 1030px) {
  .section-links li {
    display: inline-block;
    margin: 0 2.5rem 0 0;
    line-height: 1.5rem;
  }
}
.section-links a {
  color: #fff;
  text-decoration: none;
}
@media only screen and (min-width: 1030px) {
  .section-links a {
    line-height: 2.125rem;
  }
}
.section-links a:hover, .section-links a:focus {
  text-decoration: underline;
}
.section-links-trigger {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}
.section-links-trigger:hover {
  background: transparent;
}
.section-links-trigger svg {
  margin-left: 0.625rem;
  fill: #fff;
  width: 1rem;
}
.section-links-trigger svg.fa-bars {
  display: inline-block;
}
.section-links-trigger svg.fa-times {
  display: none;
  margin-left: 0.8125rem;
}
.section-links.open ul {
  display: block;
}
.section-links.open svg.fa-bars {
  display: none;
}
.section-links.open svg.fa-times {
  display: inline-block;
}

.breadcrumbs {
  width: 100%;
  margin: 0 0 1rem;
  color: #115740;
}
@media only screen and (min-width: 1030px) {
  .breadcrumbs {
    margin-bottom: 3.5rem;
    margin: -2.1875rem 0 1rem;
  }
}
.breadcrumbs ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs li {
  padding: 0 0.25rem;
  display: block;
}
.breadcrumbs li::after {
  content: "/";
  margin-left: 0.5rem;
}
.breadcrumbs li:first-of-type {
  min-width: 2.5rem;
}
.breadcrumbs li:last-of-type::after {
  display: none;
}
.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs svg {
  fill: #115740;
  width: 1rem;
}

.menu-blocks {
  text-align: center;
  margin-bottom: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media only screen and (min-width: 1030px) {
  .page .menu-blocks {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .menu-blocks {
    margin-bottom: 3.5rem;
  }
}
.menu-blocks__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .menu-blocks__inner {
    padding: 3.75rem 1.875rem;
  }
}
.menu-blocks--background .menu-blocks__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
.menu-blocks--background .menu-blocks__title {
  color: #fff;
}
.menu-blocks__title {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.1rem;
  margin-bottom: 3.125rem;
}
@media only screen and (min-width: 375px) {
  .menu-blocks__title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .menu-blocks__title {
    font-size: 49px;
    font-size: 3.0625rem;
    line-height: 3.675rem;
  }
}
.menu-blocks__headline {
  font-size: 8vw;
  line-height: 1.2;
  font-family: "acumin-pro-wide", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
  width: calc(100% - 2rem);
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .menu-blocks__headline {
    font-size: 4vw;
  }
}
@media only screen and (min-width: 1030px) {
  .menu-blocks__headline {
    font-size: 2.1vw;
  }
}
.menu-blocks__sub-headline {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 700;
  font-family: "acumin-pro", sans-serif;
  text-transform: uppercase;
}
.menu-blocks__items {
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
.menu-blocks__image {
  background: #000;
  height: 0;
  padding-bottom: 64%;
  width: 100%;
}
.menu-blocks__image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.menu-blocks__image picture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.menu-blocks__image img {
  width: 100%;
}
.menu-blocks__content {
  background: #fff;
  padding: 1.875rem;
}

.hero {
  color: #fff;
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 1rem;
  /**
   | ------------------------------------------------------------------
   | Section link styles if in header (mobile only)
   | ------------------------------------------------------------------
   */
}
@media only screen and (min-width: 1030px) {
  .page .hero {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .hero {
    min-height: 80vh;
    margin-bottom: 3.5rem;
  }
}
.hero__image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #000; /* a11y - overlay text might get dinged on rating w/o this */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 1030px) {
  .hero__image {
    min-height: 80vh;
  }
}
.hero__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.hero__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 3.125rem 1.875rem;
}
@media only screen and (min-width: 1030px) {
  .hero__content {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.hero__title {
  font-family: "acumin-pro-wide", sans-serif;
  font-weight: 800;
  font-size: 32px;
  font-size: 2rem;
  line-height: 2.4rem;
  color: inherit;
  text-transform: uppercase;
  display: block;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 768px) {
  .hero__title {
    font-size: 50px;
    font-size: 3.125rem;
    line-height: 3.75rem;
  }
}
@media only screen and (min-width: 1030px) {
  .hero__title {
    font-size: 91px;
    font-size: 5.6875rem;
    line-height: 6.825rem;
  }
}
.hero p {
  color: inherit;
  width: 100%;
  max-width: 450px;
  margin-bottom: 1.875rem;
  line-height: 1.7;
  text-shadow: 1px 1px 0.625rem rgba(0, 0, 0, 0.9);
  font-weight: 600;
}
.hero button {
  background: #ffc711;
  border-color: #DEB70E;
  color: #000;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.5);
  color: #115740 !important;
}
.hero button:hover, .hero button:focus {
  background: #fff;
  border-color: #000;
  color: #000 !important;
}
.hero--non-cta {
  color: #000;
  text-align: left;
}
.hero--non-cta p {
  text-shadow: none;
}
.hero--non-cta .hero__image {
  position: relative;
  padding-bottom: 42%;
}
.hero--non-cta .hero__image::before {
  display: none;
}
.hero--non-cta .hero__content {
  padding: 1.625rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .hero--non-cta .hero__content {
    padding: 1.625rem 1.875rem;
  }
}
@media only screen and (min-width: 1030px) {
  .hero--non-cta .hero__content {
    background: #fff;
    padding: 1.625rem;
    width: 100%;
    max-width: 550px;
    width: auto;
    height: auto;
    position: absolute;
    top: 20%;
    left: 10%;
  }
}
@media only screen and (min-width: 1030px) {
  .hero--non-cta .hero__content::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    border: 2px solid #ffc711;
    pointer-events: none;
  }
}
.hero--non-cta .hero__title {
  color: #115740;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 2.4rem;
}
.hero--non-cta p {
  max-width: none;
}
.hero--non-cta p:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width: 1029px) {
  .hero .section-links {
    left: auto;
    right: auto;
    margin-left: auto;
    margin-right: auto;
    transform: translate(-1.875rem, -1.875rem);
    margin-bottom: 0;
  }
  .hero .section-links button {
    background: #39934D;
    border: none;
  }
}
@media only screen and (max-width: 767px) {
  .hero .section-links {
    transform: translate(-1.25rem, -1.875rem);
  }
}
.hero #headlineSidebarToggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  width: auto;
  background: transparent !important;
  color: #fff !important;
  text-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.5);
  box-shadow: none;
}
.hero #headlineSidebarToggle svg {
  fill: #fff;
  width: 1rem;
  margin-right: 0.25rem;
}
@media only screen and (min-width: 1030px) {
  .hero #headlineSidebarToggle {
    display: none;
  }
}
.hero #headlineSidebarToggle:active, .hero #headlineSidebarToggle:focus {
  text-decoration: underline;
  color: inherit !important;
}
.hero--img-only {
  min-height: 40vh;
}
.hero--img-only .hero__image {
  min-height: 40vh;
}

.copy-deco {
  width: 100%;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto 1rem;
}
@media only screen and (min-width: 1030px) {
  .copy-deco {
    margin: 0 auto 5.5rem;
  }
}
.copy-deco p {
  width: 100%;
  max-width: 46.875rem;
  margin-left: 0;
  z-index: 1;
}
@media only screen and (min-width: 1030px) {
  .copy-deco--bling::after {
    content: "";
    pointer-events: none;
    top: 0;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #000; /* a11y - overlay text might get dinged on rating w/o this */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-size: 350px auto;
    background-position: 105% 0;
    position: absolute;
    background-color: transparent;
  }
}
.copy-deco--bling-yellow-arrow::after {
  background-image: url("../img/bling/arrows-yellow.png");
}
.copy-deco--bling-hollow-arrow::after {
  background-image: url("../img/bling/arrows-hollow.png");
}
.copy-deco--bling-rings::after {
  background-image: url("../img/bling/rings.png");
}
.copy-deco--bling-dots-round-yellow::after {
  background-image: url("../img/bling/dots-round-yellow.png");
}
.copy-deco--bling-dots-round-gray::after {
  background-image: url("../img/bling/dots-round-gray.png");
}

.stats {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #ffc711;
  color: #333;
  padding: 3.125rem 1.25rem;
  margin-top: 3.5rem;
  z-index: 0;
}
@media only screen and (min-width: 1030px) {
  .page .stats {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) {
  .stats {
    padding: 3.125rem 1.875rem;
  }
}
@media only screen and (min-width: 1030px) {
  .stats {
    padding: 3.125rem 1.875rem 6.25rem;
  }
}
.stats::before, .stats::after {
  content: "";
  position: absolute;
  display: inline-block;
}
@media only screen and (min-width: 1030px) {
  .stats::before {
    bottom: -45%;
    right: 0;
    border-left: none;
    border-right: 14rem solid #115740;
    border-bottom: 12.5rem solid transparent;
    border-top: 9rem solid transparent;
  }
}
@media only screen and (min-width: 1280px) {
  .stats::before {
    border-right-width: 17rem;
    border-bottom-width: 12.5rem;
    border-top-width: 11rem;
  }
}
@media only screen and (min-width: 1030px) {
  .stats::after {
    top: -22%;
    left: 0;
    border-left: 12rem solid #fff;
    border-right: none;
    border-bottom: 5rem solid transparent;
    border-top: 5.25rem solid transparent;
  }
}
@media only screen and (min-width: 1280px) {
  .stats::after {
    border-left-width: 14rem;
    border-bottom-width: 5rem;
    border-top-width: 6.25rem;
  }
}
.stats__decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1030px) {
  .stats__decoration::before, .stats__decoration::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background-repeat: no-repeat;
    background-size: 100%;
    pointer-events: none;
    z-index: 1;
  }
  .stats__decoration::before {
    background-image: url("../img/bling/stats-bling-top.png");
    top: -1.6rem;
  }
  .stats__decoration::after {
    background-image: url("../img/bling/stats-bling-bottom.png");
    background-position: 0 100%;
    bottom: 1.6rem;
  }
}
.stats__title {
  color: #115740;
  font-size: 32px;
  font-size: 2rem;
  line-height: 2.4rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .stats__title {
    font-size: 50px;
    font-size: 3.125rem;
    line-height: 3.75rem;
  }
}
@media only screen and (min-width: 1030px) {
  .stats__title {
    font-size: 91px;
    font-size: 5.6875rem;
    line-height: 6.825rem;
  }
}
.stats__items {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .stats__items {
    flex-direction: row;
    justify-content: space-between;
  }
}
.stats__item {
  flex: 0 0 100%;
  padding: 0 3.125rem;
}
@media only screen and (min-width: 768px) {
  .stats__item {
    flex: 0 0 33.3333333333%;
  }
}
.stats__item:last-of-type {
  margin-right: 0;
}
.stats__item-value {
  display: block;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.95rem;
  color: #115740;
  font-family: "acumin-pro", sans-serif;
  font-weight: 800;
  text-align: center;
  padding-bottom: 0.625rem;
}
@media only screen and (min-width: 768px) {
  .stats__item-value {
    font-size: 42px;
    font-size: 2.625rem;
    line-height: 3.15rem;
    text-align: left;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1030px) {
  .stats__item-value {
    font-size: 79px;
    font-size: 4.9375rem;
    line-height: 5.925rem;
  }
}
.stats__item-value span {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.35rem;
  color: #333;
  font-weight: 500;
}
.stats__item-copy {
  color: inherit;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.05rem;
  font-weight: 600;
}

.deadlines {
  color: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1030px) {
  .page .deadlines {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .deadlines {
    margin-bottom: 7.5rem;
  }
}
.deadlines__inner {
  background: #115740;
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .deadlines__inner {
    padding: 1rem 1.875rem 5.75rem;
  }
}
.deadlines__title {
  font-weight: 800;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.1rem;
  margin-bottom: 1.25rem;
  color: inherit;
  text-align: center;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 375px) {
  .deadlines__title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .deadlines__title {
    font-size: 49px;
    font-size: 3.0625rem;
    line-height: 3.675rem;
  }
}
.deadlines__items {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.875rem;
  justify-content: center;
  align-items: stretch;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .deadlines__items {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.deadlines__item {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
  .deadlines__item {
    flex: 0 0 33.3333333333%;
    margin-right: 1.875rem;
    max-width: 220px;
  }
  .deadlines__item:nth-child(3), .deadlines__item:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1030px) {
  .deadlines__item {
    flex: 0 0 20%;
  }
  .deadlines__item:nth-child(3) {
    margin-right: 1.875rem;
  }
}
.deadlines__item:last-of-type {
  margin-right: 0;
}
.deadlines__item-date {
  color: #ffc711;
  font-family: "acumin-pro", sans-serif;
  font-weight: 800;
  font-size: 3.9375rem;
  margin-bottom: 0;
  text-align: center;
}
.deadlines__item-detail {
  background: #fff;
  padding: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #115740;
  border: 1px solid #777;
  margin-bottom: 0 !important;
  height: 100%;
}
.deadlines__item-detail a {
  color: #115740;
  text-decoration: none;
}
.deadlines__item-detail a:hover {
  text-decoration: underline;
}
.deadlines__see-more {
  margin: 0 auto 3.125rem;
  text-align: center;
  dispay: block;
  width: 100%;
}
.deadlines__see-more a {
  color: inherit;
  border-bottom: 1px solid #fff;
  padding-bottom: 0;
  text-decoration: none;
}
.deadlines__see-more a:hover {
  border-bottom: none;
}

.cta-block {
  padding: 3.75rem 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
  /**
   * Push the image to the right side and CTA to the left.
   */
  /**
   * Adds decorative bling to the left side and shrinks the image width;
   */
}
@media only screen and (min-width: 768px) {
  .cta-block {
    padding: 3.75rem 1.875rem;
  }
}
@media only screen and (min-width: 1030px) {
  .cta-block {
    margin-bottom: 3.5rem;
    margin: 0 auto;
    flex-direction: row;
  }
}
.cta-block__title {
  color: #115740;
  font-weight: 800;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.1rem;
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 375px) {
  .cta-block__title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .cta-block__title {
    font-size: 49px;
    font-size: 3.0625rem;
    line-height: 3.675rem;
  }
}
.cta-block__content {
  padding: 1.875rem 0;
  flex: 0 0 100%;
}
@media only screen and (min-width: 1030px) {
  .cta-block__content {
    flex: 0 0 50%;
    padding: 0 1.875rem;
  }
}
.cta-block__image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #000; /* a11y - overlay text might get dinged on rating w/o this */
  padding-bottom: 56.25%;
  width: 100%;
  flex: 0 0 100%;
  z-index: 1;
}
@media only screen and (max-width: 1029px) {
  .cta-block__image {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
@media only screen and (min-width: 1030px) {
  .cta-block__image {
    flex: 0 0 50%;
    height: auto;
    padding-bottom: 28%;
  }
}
@media only screen and (min-width: 768px) {
  .cta-block--image-right .cta-block__image {
    order: 2;
  }
  .cta-block--image-right .cta-block__content {
    order: 1;
  }
}
@media only screen and (min-width: 1030px) {
  .cta-block--bling {
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 1030px) {
  .cta-block--bling .cta-block__image {
    flex: 0 0 30%;
  }
}
@media only screen and (min-width: 1030px) {
  .cta-block--bling::after {
    content: "";
    pointer-events: none;
    top: 0;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #000; /* a11y - overlay text might get dinged on rating w/o this */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-size: 240px auto;
    background-position: 5% 50%;
    position: absolute;
    background-color: transparent;
  }
}
.cta-block--bling-yellow-arrow::after {
  background-image: url("../img/bling/arrows-yellow.png");
}
.cta-block--bling-hollow-arrow::after {
  background-image: url("../img/bling/arrows-hollow.png");
}
.cta-block--bling-rings::after {
  background-image: url("../img/bling/rings.png");
}
.cta-block--bling-dots-round-yellow::after {
  background-image: url("../img/bling/dots-round-yellow.png");
}
.cta-block--bling-dots-round-gray::after {
  background-image: url("../img/bling/dots-round-gray.png");
}

.news-events {
  margin-bottom: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media only screen and (min-width: 1030px) {
  .page .news-events {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .news-events {
    margin-bottom: 3.5rem;
  }
}
.news-events__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .news-events__inner {
    padding: 3.75rem 1.875rem;
  }
}
.news-events__inner > div {
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
.news-events__title {
  text-align: center;
  font-size: 3rem;
  color: #115740;
}
.news-events__feature {
  margin-bottom: 3.125rem;
}
@media only screen and (min-width: 1030px) {
  .news-events__feature {
    margin-bottom: 0;
  }
}
.news-events__feature a {
  color: #39934D !important;
}
.news-events__headlines {
  margin-bottom: 3.125rem;
}
@media only screen and (min-width: 1030px) {
  .news-events__headlines {
    padding-bottom: 3.75rem;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1030px) {
  .news-events__headlines::after {
    content: "";
    width: 0.4375rem;
    height: calc(100% - 3rem);
    background: transparent url("../img/bling/dot-yellow-vertical.png") repeat-y;
    background-size: 5px;
    position: absolute;
    right: -2.5rem;
    top: 3rem;
  }
}
.news-events__headlines ul {
  padding: 0 0.875rem;
  margin-bottom: 1.875rem;
}
.news-events__headlines li {
  padding: 3px 0;
  line-height: 1.35rem;
}
.news-events__headlines a {
  color: #000;
  text-decoration: none;
}
.news-events__headlines a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 1030px) {
  .news-events__headlines a.btn {
    position: absolute;
    bottom: 0;
  }
}
.news-events__events {
  margin-bottom: 3.125rem;
}
@media only screen and (min-width: 1030px) {
  .news-events__events {
    padding-bottom: 3.75rem;
    margin-bottom: 0;
  }
}
.news-events__events a {
  color: #39934D;
  text-decoration: none;
}
.news-events__events a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 1030px) {
  .news-events__events a.btn:not(.btn--link) {
    position: absolute;
    bottom: 0;
  }
}
.news-events__event {
  margin-bottom: 0.9375rem;
}
@media only screen and (min-width: 1030px) {
  .news-events__event {
    display: flex;
    align-items: flex-start;
  }
}
.news-events__event:last-of-type {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 1030px) {
  .news-events__event:last-of-type {
    margin-bottom: 0;
  }
}
.news-events__event a {
  color: #39934D !important;
  font-weight: 500;
}
.news-events__event strong {
  font-size: 1.125rem;
  line-height: 1.5;
}
.news-events__event-date {
  font-size: 1.5rem;
  font-family: "acumin-pro", sans-serif;
  font-weight: 800;
}
@media only screen and (min-width: 1030px) {
  .news-events__event-date {
    flex: 0 0 auto;
    width: 8vw;
    height: 8vw;
    background: #A2B7C6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-right: 0.625rem;
    font-size: 1.5625rem;
  }
}
.news-events__event-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (min-width: 1030px) {
  .news-events__event-details {
    top: -8px;
  }
}
.news-events--background .news-events__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
.news-events--background .news-events__title {
  color: #fff;
}

.funnel {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  text-align: center;
  margin-bottom: 1rem;
  z-index: 0;
}
@media only screen and (min-width: 1030px) {
  .page .funnel {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .funnel {
    margin-bottom: 3.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .funnel::after {
    content: "";
    position: absolute;
    width: calc(100% - 4rem);
    height: 85%;
    border: 1px solid #ffc711;
    top: 0;
    left: 2rem;
    pointer-events: none;
  }
}
.funnel__inner {
  padding: 3.75rem 0;
}
.funnel__title {
  color: #115740;
  margin-bottom: 1.875rem;
  padding: 0 1.25rem;
}
@media only screen and (min-width: 768px) {
  .funnel__title {
    padding: 0 1.875rem;
    font-size: 3.0625rem;
  }
}
.funnel p {
  width: 100%;
  max-width: 56.25rem;
  margin: 0 auto 3.125rem;
  padding: 0 1.25rem;
}
@media only screen and (min-width: 768px) {
  .funnel p {
    padding: 0 1.875rem;
  }
}
.funnel__items {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .funnel__items {
    flex-direction: row;
  }
}
@media only screen and (min-width: 768px) {
  .funnel__items::after {
    content: "";
    position: absolute;
    bottom: -4rem;
    left: 0;
    width: 100vw;
    height: 6.25rem;
    background: #fff;
    transform: rotate(1.5deg);
    z-index: 1;
  }
}
.funnel__item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #000; /* a11y - overlay text might get dinged on rating w/o this */
  background-size: 100%;
  padding-bottom: 75vw;
  display: block;
  text-decoration: none;
  flex: 0 0 100%;
  transition: background-size 3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 768px) {
  .funnel__item {
    flex: 0 0 50%;
    padding-bottom: 37.5vw;
  }
}
.funnel__item:hover, .funnel__item:focus {
  background-size: 110%;
}
.funnel__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.funnel__item span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 1rem);
  text-transform: uppercase;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 3.125rem;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .funnel__item span {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 1030px) {
  .funnel__item span {
    font-size: 7.8125rem;
  }
}

.media-block {
  margin-bottom: 1rem;
  /**
   * Push the image to the right side and CTA to the left.
   */
}
@media only screen and (min-width: 1030px) {
  .media-block {
    margin-bottom: 3.5rem;
  }
}
.media-block__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .media-block__inner {
    padding: 3.75rem 1.875rem;
  }
}
.media-block__inner > div {
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media only screen and (min-width: 1030px) {
  .media-block__inner > div {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.media-block__title {
  flex: 0 0 100%;
  color: #115740;
  font-weight: 800;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.1rem;
  margin: 0 auto 1.875rem;
  width: 100%;
  max-width: 56.25rem;
  text-align: center;
}
@media only screen and (min-width: 375px) {
  .media-block__title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .media-block__title {
    font-size: 49px;
    font-size: 3.0625rem;
    line-height: 3.675rem;
  }
}
.media-block__content {
  padding: 1.875rem 0;
  flex: 0 0 100%;
}
@media only screen and (min-width: 1030px) {
  .media-block__content {
    flex: 0 0 50%;
    padding: 0 1.875rem;
  }
}
.media-block__image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #000; /* a11y - overlay text might get dinged on rating w/o this */
  padding-bottom: 56.25%;
  width: 100%;
  flex: 0 0 100%;
  z-index: 1;
}
@media only screen and (max-width: 1029px) {
  .media-block__image {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
@media only screen and (min-width: 1030px) {
  .media-block__image {
    flex: 0 0 50%;
    height: auto;
    padding-bottom: 28%;
  }
}
@media only screen and (min-width: 768px) {
  .media-block--image-right .media-block__image {
    order: 2;
  }
  .media-block--image-right .media-block__content {
    order: 1;
  }
}
.media-block--background {
  color: #fff;
}
.media-block--background .media-block__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
@media only screen and (min-width: 1030px) {
  .page .media-block--background .media-block__inner::before {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

.media-block--background .media-block__title {
  color: #fff;
}

.testimonial {
  text-align: center;
  margin-bottom: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media only screen and (min-width: 1030px) {
  .page .testimonial {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .testimonial {
    margin-bottom: 3.5rem;
  }
}
.testimonial__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .testimonial__inner {
    padding: 3.75rem 1.875rem;
  }
}
.testimonial__items {
  display: flex;
  flex-direction: column;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .testimonial__items {
    flex-direction: row;
  }
}
.testimonial__item {
  flex: 0 0 100%;
  padding: 1rem;
  margin-bottom: 3.125rem;
}
.testimonial__item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .testimonial__item {
    flex: 1 0 50%;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1030px) {
  .testimonial__item {
    padding: 3.75rem;
  }
}
.testimonial__item picture {
  width: 100%;
  max-width: 9.375rem;
  height: auto;
  display: inline-block;
  margin-bottom: 2.25rem;
}
.testimonial__item picture::after {
  content: "";
  border: 0.125rem solid #ffc711;
  border-radius: 50%;
  width: 100%;
  height: calc(100% - 0.625rem);
  position: absolute;
  top: 0.3125rem;
  left: 0.3125rem;
}
.testimonial__item picture img {
  border-radius: 50%;
  width: 100%;
}
.testimonial__item figure {
  margin: 0;
  padding: 0;
}
.testimonial__item blockquote {
  margin: 0;
  padding: 0;
}
.testimonial__item blockquote p {
  font-size: 1rem;
}
.testimonial__item blockquote p::before {
  content: "“";
}
.testimonial__item blockquote p::after {
  content: "”";
}
.testimonial__item figcaption {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1030px) {
  .testimonial--single .testimonial__item {
    padding: 0;
  }
}
.testimonial--single .testimonial__item blockquote {
  width: 100%;
  max-width: 55rem;
  margin: 0 auto;
}
.testimonial--single .testimonial__item blockquote picture {
  margin-bottom: 2.625rem;
}
.testimonial--single .testimonial__item blockquote p {
  font-size: 1.5rem;
}
.testimonial--single .testimonial__item figcaption {
  display: block;
}
.testimonial--background {
  color: #fff;
}
.testimonial--background .testimonial__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
.testimonial--background .testimonial__title {
  color: #fff;
}
@media only screen and (min-width: 1030px) {
  .testimonial--bling::after {
    content: "";
    pointer-events: none;
    bottom: 0;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #000; /* a11y - overlay text might get dinged on rating w/o this */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-size: 260px auto;
    background-position: calc(100% + 48px) 100%;
    position: absolute;
    background-color: transparent;
    z-index: -1;
  }
}
.testimonial--bling-yellow-arrow::after {
  background-image: url("../img/bling/arrows-yellow.png");
}
.testimonial--bling-hollow-arrow::after {
  background-image: url("../img/bling/arrows-hollow.png");
}
.testimonial--bling-rings::after {
  background-image: url("../img/bling/rings.png");
}
.testimonial--bling-dots-round-yellow::after {
  background-image: url("../img/bling/dots-round-yellow.png");
}
.testimonial--bling-dots-round-gray::after {
  background-image: url("../img/bling/dots-round-gray.png");
}

.nested-links {
  margin-bottom: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media only screen and (min-width: 1030px) {
  .page .nested-links {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .nested-links {
    margin-bottom: 3.5rem;
  }
}
.nested-links__inner {
  padding: 3.75rem 0;
}
.nested-links__title {
  color: #fff;
  font-size: 2rem;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 3.75rem);
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 0;
  z-index: 1;
}
@media only screen and (min-width: 375px) {
  .nested-links__title {
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .nested-links__title {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 1030px) {
  .nested-links__title {
    font-size: 3.75rem;
  }
}
.nested-links__image picture {
  display: inline-block;
}
.nested-links__image picture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
  height: calc(100% - 0.5625rem);
}
.nested-links__content {
  display: flex;
  flex-direction: column;
  padding: 3.125rem 1.25rem;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .nested-links__content {
    padding: 3.125rem 1.875rem;
    flex-direction: row;
  }
}
.nested-links__headline {
  display: block;
  margin-bottom: 1rem;
  font-family: "acumin-pro-wide", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .nested-links__headline {
    font-size: 1.5rem;
  }
}
.nested-links__media {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .nested-links__media {
    flex-direction: row;
  }
}
.nested-links__media picture {
  width: 100%;
  max-width: 9.375rem;
}
@media only screen and (min-width: 768px) {
  .nested-links__media picture {
    margin-right: 1.25rem;
  }
}
.nested-links__media picture::after {
  content: "";
  width: 110%;
  height: 2rem;
  position: absolute;
  bottom: 0;
  left: -0.625rem;
  transform: rotate(-5deg);
  background: #fff;
  z-index: 1;
}
.nested-links__media > div {
  font-size: 1.125rem;
}
@media only screen and (min-width: 768px) {
  .nested-links__media > div {
    font-size: 1rem;
  }
}
.nested-links__media a {
  text-decoration: none;
  color: inherit;
}
.nested-links__media a:hover, .nested-links__media a:focus {
  text-decoration: underline;
}
.nested-links__list {
  margin-bottom: 3.125rem;
  flex: 1 0 100%;
}
@media only screen and (min-width: 768px) {
  .nested-links__list {
    margin-bottom: 0;
    flex: 1 0 50%;
  }
}
.nested-links__list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  column-count: 2;
}
.nested-links__list a {
  color: inherit;
  text-decoration: none;
}
.nested-links__list a:hover {
  text-decoration: underline;
}
.nested-links__contact {
  flex: 1 0 100%;
}
@media only screen and (min-width: 768px) {
  .nested-links__contact {
    flex: 1 0 50%;
  }
}
.nested-links--background {
  color: #fff;
}
.nested-links--background .nested-links__inner {
  padding: 0 0 3.75rem;
}
.nested-links--background .nested-links__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
@media only screen and (min-width: 1030px) {
  .page .nested-links--background .nested-links__inner::before {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

.nested-links--background .nested-links__media picture::after {
  background: #115740;
}
@media only screen and (min-width: 768px) {
  .nested-links--bling .nested-links__image::after {
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #000; /* a11y - overlay text might get dinged on rating w/o this */
    background-color: transparent;
    width: 10rem;
    height: 8.125rem;
    position: absolute;
    right: 3.125rem;
    bottom: -2rem;
  }
}
.nested-links--bling-yellow-arrow .nested-links__image::after {
  background-image: url("../img/bling/arrows-yellow.png");
}
.nested-links--bling-hollow-arrow .nested-links__image::after {
  background-image: url("../img/bling/arrows-hollow.png");
}
.nested-links--bling-rings .nested-links__image::after {
  background-image: url("../img/bling/rings.png");
}
.nested-links--bling-dots-round-yellow .nested-links__image::after {
  background-image: url("../img/bling/dots-round-yellow.png");
  height: 10rem;
}
.nested-links--bling-dots-round-gray .nested-links__image::after {
  background-image: url("../img/bling/dots-round-gray.png");
  height: 10rem;
}

.faculty-staff {
  margin-bottom: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}
@media only screen and (min-width: 1030px) {
  .page .faculty-staff {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .faculty-staff {
    margin-bottom: 3.5rem;
  }
}
.faculty-staff__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .faculty-staff__inner {
    padding: 3.75rem 1.875rem;
  }
}
.faculty-staff__inner > div {
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
.faculty-staff a {
  color: #39934D !important;
}
.faculty-staff__content {
  margin-bottom: 3.125rem;
  text-align: center;
}
.faculty-staff__title {
  text-align: left;
  margin-bottom: 3.125rem;
  color: #115740;
}
@media only screen and (min-width: 768px) {
  .faculty-staff__title {
    font-size: 3.0625rem;
    text-align: center;
  }
}
.faculty-staff__items {
  font-family: "acumin-pro", sans-serif;
}
.faculty-staff__item {
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.125rem;
}
.faculty-staff__item-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #115740;
  font-family: "acumin-pro", sans-serif;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.625rem;
  display: block;
}
.faculty-staff__item-role {
  font-size: 1.125rem;
  font-weight: 600;
}
.faculty-staff__item a {
  font-size: 1rem;
  text-decoration: none;
  margin-top: 1.25rem;
  display: block;
}
.faculty-staff__item a:hover {
  text-decoration: underline;
}
.faculty-staff picture {
  display: inline-block;
  width: 100%;
  max-width: 12.5rem;
  margin-bottom: -0.9375rem;
}
.faculty-staff picture::after {
  content: "";
  width: 110%;
  height: 2.5rem;
  position: absolute;
  bottom: -0.625rem;
  left: -0.625rem;
  transform: rotate(-5deg);
  background: #fff;
  z-index: 0;
}
.faculty-staff picture img {
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .faculty-staff--bling::after {
    content: "";
    position: absolute;
    top: 0;
    right: -6.25rem;
    width: 21.875rem;
    height: 22.5rem;
    background: transparent center no-repeat;
    background-size: contain;
    z-index: -1;
  }
}
.faculty-staff--bling-yellow-arrow::after {
  background-image: url("../img/bling/arrows-yellow.png");
}
.faculty-staff--bling-hollow-arrow::after {
  background-image: url("../img/bling/arrows-hollow.png");
}
.faculty-staff--bling-rings::after {
  background-image: url("../img/bling/rings.png");
}
.faculty-staff--bling-dots-round-yellow::after {
  background-image: url("../img/bling/dots-round-yellow.png");
}
.faculty-staff--bling-dots-round-gray::after {
  background-image: url("../img/bling/dots-round-gray.png");
}
.faculty-staff--background {
  color: #fff;
}
.faculty-staff--background .faculty-staff__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
.faculty-staff--background .faculty-staff__title,
.faculty-staff--background .faculty-staff__item-title {
  color: #fff;
}
.faculty-staff--background .faculty-staff__item a {
  color: #ffc711 !important;
}
.faculty-staff--background picture::after {
  background: #115740;
}
@media only screen and (min-width: 1030px) {
  .landing .faculty-staff--featured .faculty-staff__inner > div {
    display: flex;
  }
  .landing .faculty-staff--featured .faculty-staff__title {
    text-align: left;
  }
  .landing .faculty-staff--featured .faculty-staff__content {
    margin-right: 3.125rem;
    text-align: left;
    flex: 0 0 calc(40% - 3.125rem);
  }
}

.funnel-grid {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  text-align: center;
  margin-bottom: 1rem;
  /**
   * Creates a side-by-side layout with the title to the left
   * and blocks to the right in a two-block wide grid. Best
   * used with a title and a maximum of 4 grid items.
   */
}
@media only screen and (min-width: 1030px) {
  .page .funnel-grid {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .funnel-grid {
    margin-bottom: 3.5rem;
  }
}
.funnel-grid__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .funnel-grid__inner {
    padding: 3.75rem 1.875rem;
  }
}
.funnel-grid__title {
  color: #115740;
  margin-bottom: 3.125rem;
  padding: 0 1.25rem;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .funnel-grid__title {
    padding: 0 1.875rem;
    font-size: 3.0625rem;
  }
}
.funnel-grid__items {
  display: flex;
  flex-wrap: wrap;
}
.funnel-grid__item {
  flex: 0 0 100%;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-weight: 700;
  font-size: 2.1875rem;
  margin: 0 0 2rem 0;
  color: #fff;
  text-decoration: none;
  aspect-ratio: 16/9;
}
.funnel-grid__item:hover, .funnel-grid__item:focus {
  text-decoration: underline;
}
.funnel-grid__item:hover::after, .funnel-grid__item:focus::after {
  top: 0;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .funnel-grid__item {
    flex: 1 0 calc(33.3333333333% - 2rem);
    margin: 0 2rem 2rem 0;
  }
}
.funnel-grid__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.funnel-grid__item:nth-child(3n), .funnel-grid__item:last-of-type {
  margin-right: 0;
}
.funnel-grid__item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #ffc711;
  top: 0.625rem;
  left: 0.625rem;
  pointer-events: none;
  transition: all 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.funnel-grid__item span {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: calc(100% - 2rem);
  text-align: center;
  transform: translateY(-50%);
  z-index: 1;
}
.funnel-grid__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 1030px) {
  .funnel-grid--mini {
    text-align: left;
  }
  .funnel-grid--mini .funnel-grid__inner {
    display: flex;
    align-items: center;
  }
  .funnel-grid--mini .funnel-grid__title {
    flex: 0 0 45%;
    background: #fff;
    margin: 0;
    padding: 1.25rem 0;
    z-index: 1;
    display: flex;
    align-items: center;
  }
  .funnel-grid--mini .funnel-grid__items {
    flex: 0 0 50%;
  }
  .funnel-grid--mini .funnel-grid__item {
    flex: calc(50% - 2rem);
  }
  .funnel-grid--mini .funnel-grid__item:nth-child(3n) {
    margin-right: 2rem;
  }
  .funnel-grid--mini .funnel-grid__item:nth-child(2n) {
    margin-right: 0;
  }
  .funnel-grid--mini::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 100%;
    border: 1px solid #ffc711;
    top: 0;
    left: 7%;
    pointer-events: none;
  }
}

.featured-news {
  text-align: left;
  margin-bottom: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media only screen and (min-width: 1030px) {
  .page .featured-news {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .featured-news {
    margin-bottom: 3.5rem;
  }
}
.featured-news__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .featured-news__inner {
    padding: 3.75rem 1.875rem;
  }
}
.featured-news__title {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.1rem;
  margin-bottom: 3.125rem;
  text-align: center;
  color: #115740;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 375px) {
  .featured-news__title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .featured-news__title {
    font-size: 49px;
    font-size: 3.0625rem;
    line-height: 3.675rem;
  }
}
.featured-news__headline {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.35rem;
  line-height: 1.6;
  font-weight: 800;
  font-family: "acumin-pro-wide", sans-serif;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}
.featured-news__headline--lowercase {
  text-transform: none;
}
.featured-news__items {
  margin-bottom: 1.25rem;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
.featured-news__item a {
  color: #39934D !important;
}
.featured-news__image {
  width: 100%;
}
.featured-news__image picture {
  width: 100%;
  height: 100%;
}
.featured-news__image img {
  width: 100%;
  aspect-ratio: auto;
}
.featured-news__content {
  background: #fff;
  padding: 1rem 0;
}
.featured-news__more {
  background: url("../img/bling/dot-yellow.png") 0 0 repeat-x;
  background-size: 10px;
  padding: 1.875rem 0 0 0;
  text-align: center;
}
.featured-news--background .featured-news__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
.featured-news--background .featured-news__title {
  color: #fff;
}

.pride-point {
  color: #333;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 2.5rem 1.25rem;
  background: transparent;
}
@media only screen and (min-width: 1030px) {
  .pride-point {
    padding: 2.5rem 1.875rem;
  }
}
.pride-point__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .pride-point__inner {
    padding: 3.75rem 1.875rem;
  }
}
.pride-point__title {
  font-size: 32px;
  font-size: 2rem;
  line-height: 2.4rem;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}
.pride-point__items--single {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .pride-point__items--single .pride-point__item {
    width: 70%;
    margin: 0;
  }
}
@media only screen and (min-width: 1030px) {
  .pride-point__items--single .pride-point__item picture {
    width: 20%;
  }
}
.pride-point__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 0 2rem;
  color: inherit;
}
@media only screen and (min-width: 768px) {
  .pride-point__item {
    width: calc(50% - 2rem);
    margin: 0 2rem 2rem 0;
  }
}
@media only screen and (min-width: 1030px) {
  .pride-point__item {
    flex-direction: row;
    padding: 1.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .pride-point__item:nth-child(even) {
    margin-right: 0;
  }
}
.pride-point__item picture {
  flex: 0 0 auto;
}
@media only screen and (min-width: 1030px) {
  .pride-point__item picture {
    width: 30%;
  }
}
.pride-point__item picture::after {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 10px);
  border: 2px solid #ffc711;
  top: -0.5rem;
  left: -0.5rem;
  pointer-events: none;
}
.pride-point__item-content {
  padding: 2.5rem 0 0 0;
}
@media only screen and (min-width: 1030px) {
  .pride-point__item-content {
    padding: 0 0 0 2.5rem;
  }
}
.pride-point__item-title {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.75rem;
  font-family: "acumin-pro-wide", sans-serif;
  color: #115740;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .pride-point__item-title {
    font-size: 2rem;
  }
}
.pride-point__item-title + .pride-point__item-eyebrow {
  margin-top: -0.4375rem;
  margin-bottom: 0.875rem;
}
.pride-point__item-eyebrow {
  font-size: 0.875rem;
  color: #333;
  display: block;
}
.pride-point--background {
  color: #fff;
}
.pride-point--background .pride-point__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
.pride-point--background .pride-point__title,
.pride-point--background .pride-point__item-title {
  color: #fff;
}

.features {
  text-align: center;
  margin-bottom: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media only screen and (min-width: 1030px) {
  .page .features {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .features {
    margin-bottom: 3.5rem;
  }
}
.features__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .features__inner {
    padding: 3.75rem 1.875rem;
  }
}
.features__title {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.1rem;
  margin-bottom: 3.125rem;
  color: #115740;
}
@media only screen and (min-width: 375px) {
  .features__title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .features__title {
    font-size: 49px;
    font-size: 3.0625rem;
    line-height: 3.675rem;
  }
}
.features__headline {
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: "acumin-pro-wide", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5625rem;
  display: block;
}
.features__items {
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
.features__item {
  border: 1px solid #ffc711;
}
.features__image {
  height: 0;
  padding-bottom: 64%;
  width: 100%;
}
.features__image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.features__image picture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.features__image img {
  width: 100%;
}
.features__content {
  background: #fff;
  padding: 1.875rem;
}
.features__content a {
  color: #39934D !important;
}
.features--background .features__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
.features--background .features__title {
  color: #fff;
}

.quick-links {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: transparent;
  color: #333;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1030px) {
  .page .quick-links {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .quick-links {
    margin-bottom: 3.5rem;
  }
}
.quick-links__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .quick-links__inner {
    padding: 3.75rem 1.875rem;
  }
}
.quick-links__inner > div {
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1030px) {
  .quick-links__inner > div {
    flex-direction: row;
  }
}
.quick-links a {
  color: #fff;
  text-decoration: underline;
}
.quick-links a:hover {
  text-decoratin: none;
}
.quick-links ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.quick-links li {
  width: 100%;
}
.quick-links li:hover i {
  right: 10px;
}
.quick-links li i {
  position: absolute;
  right: 0;
  top: 15px;
  pointer-events: none;
  transition: all 250ms ease-out;
}
.quick-links li a {
  display: block;
  width: 100%;
  font-size: 1rem;
  text-decoration: none;
  padding: 8px 25px 8px 0;
  color: inherit;
  border-bottom: 1px solid #333;
  background: transparent;
  transition: all 250ms ease-out;
}
.quick-links li a:hover {
  background: #ffc711;
  text-indent: 0.625rem;
}
.quick-links li:last-of-type a {
  border: none;
}
.quick-links__title {
  color: inherit;
  font-family: "acumin-pro-wide", sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
}
@media only screen and (min-width: 1030px) {
  .quick-links__title {
    font-size: 2rem;
  }
}
.quick-links__menu {
  padding: 50px 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1030px) {
  .quick-links__menu {
    padding: 0;
    flex: 0 0 35%;
  }
}
@media only screen and (min-width: 1030px) {
  .quick-links__menu > div {
    padding-right: 3.75rem;
  }
}
.quick-links__image {
  display: none;
}
@media only screen and (min-width: 1030px) {
  .quick-links__image {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #000; /* a11y - overlay text might get dinged on rating w/o this */
    aspect-ratio: 2/1;
    flex: 0 0 65%;
  }
}
.quick-links--background {
  color: #fff;
}
.quick-links--background .quick-links__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
.quick-links--background .quick-links__title {
  color: #fff;
}
.quick-links--background li a {
  border-bottom: 1px solid #fff;
}
.quick-links--background li a:hover {
  color: #333;
}
@media only screen and (min-width: 1030px) {
  .page .quick-links__image {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #000; /* a11y - overlay text might get dinged on rating w/o this */
    aspect-ratio: 50/35;
    flex: 0 0 65%;
  }
}

.headline-cta {
  color: inherit;
  text-align: center;
  margin-bottom: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media only screen and (min-width: 1030px) {
  .page .headline-cta {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .headline-cta {
    margin-bottom: 3.5rem;
  }
}
.headline-cta__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .headline-cta__inner {
    padding: 3.75rem 1.875rem;
  }
}
.headline-cta__inner > div {
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
.headline-cta h2 {
  font-size: 1.75rem;
  margin-bottom: 3.125rem;
  color: #115740;
}
@media only screen and (min-width: 375px) {
  .headline-cta h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .headline-cta h2 {
    font-size: 3.0625rem;
  }
}
.headline-cta--background {
  color: #fff;
}
.headline-cta--background h2 {
  color: #fff;
}
.headline-cta--background .headline-cta__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}

.accordion {
  margin-bottom: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media only screen and (min-width: 1030px) {
  .page .accordion {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .accordion {
    margin-bottom: 3.5rem;
  }
}
.accordion__inner {
  padding: 3.75rem 1.25rem;
  width: 100%;
  margin: 0 auto;
}
.page .accordion__inner {
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .accordion__inner {
    padding: 3.75rem 1.875rem;
  }
}
.accordion__toggle {
  background: #D2E3DD;
  color: #0D402F;
  width: 100%;
  padding: 0.9375rem 2.8125rem 0.9375rem 0.9375rem;
  margin-top: 12px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 26px;
  font-family: "acumin-pro", sans-serif;
  font-weight: 500;
}
.accordion__toggle:first-of-type {
  margin-top: 0;
}
.accordion__toggle::before {
  content: "\f0da";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  font-family: "Font Awesome 5 Free";
  font-size: 1.875rem;
  font-weight: bold;
}
.accordion__toggle.active::before {
  content: "\f0d7";
}
.accordion__content {
  display: none;
  padding: 20px;
  border: 1px solid #0D402F;
  border-top: none;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
.accordion__content.active {
  display: block;
}

.form-with-photo {
  text-align: left;
  margin-bottom: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  color: #333;
}
@media only screen and (min-width: 1030px) {
  .page .form-with-photo {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .form-with-photo {
    margin-bottom: 3.5rem;
  }
}
.form-with-photo__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .form-with-photo__inner {
    padding: 3.75rem 1.875rem;
  }
}
.form-with-photo__inner > div {
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1030px) {
  .form-with-photo__inner > div {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.form-with-photo form {
  margin: 0;
  padding: 0;
}
.form-with-photo form > * {
  z-index: 1;
}
.form-with-photo__title {
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  color: inherit;
  font-family: "acumin-pro-wide", sans-serif;
  font-weight: 800;
  margin-left: 0 !important;
}
@media only screen and (min-width: 768px) {
  .form-with-photo__title {
    font-size: 2rem;
  }
}
.form-with-photo__image {
  width: 100%;
}
@media only screen and (min-width: 1030px) {
  .form-with-photo__image {
    margin-right: 4rem;
  }
}
.form-with-photo__image img {
  width: 100%;
  aspect-ratio: 6/4;
}
.form-with-photo--background {
  color: #fff;
}
.form-with-photo--background .form-with-photo__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
@media only screen and (min-width: 1030px) {
  .form-with-photo--bling form::after {
    content: "";
    pointer-events: none;
    bottom: -5rem;
    right: 0;
    height: 19.5625rem;
    width: 19.0625rem;
    display: block;
    background-size: 305px auto;
    background-repeat: no-repeat;
    position: absolute;
    background-color: transparent;
    z-index: 0;
  }
}
.form-with-photo--bling-yellow-arrow form::after {
  background-image: url("../img/bling/arrows-yellow.png");
}
.form-with-photo--bling-hollow-arrow form::after {
  background-image: url("../img/bling/arrows-hollow.png");
}
.form-with-photo--bling-rings form::after {
  background-image: url("../img/bling/rings.png");
}
.form-with-photo--bling-dots-round-yellow form::after {
  background-image: url("../img/bling/dots-round-yellow.png");
}
.form-with-photo--bling-dots-round-gray form::after {
  background-image: url("../img/bling/dots-round-gray.png");
}

.featured-events {
  text-align: left;
  margin-bottom: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  color: #333;
}
@media only screen and (min-width: 1030px) {
  .page .featured-events {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .featured-events {
    margin-bottom: 3.5rem;
  }
}
.featured-events__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .featured-events__inner {
    padding: 3.75rem 1.875rem;
  }
}
.featured-events__inner > div {
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
.featured-events__title {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.1rem;
  margin-bottom: 3.125rem;
  color: #115740;
}
@media only screen and (min-width: 375px) {
  .featured-events__title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .featured-events__title {
    font-size: 49px;
    font-size: 3.0625rem;
    line-height: 3.675rem;
  }
}
.featured-events__more {
  display: inline-block;
}
@media only screen and (max-width: 1279px) {
  .featured-events__content {
    margin-bottom: 3.125rem;
  }
}
.featured-events__content p:last-of-type {
  margin-bottom: 3.75rem;
}
@media only screen and (min-width: 1030px) {
  .featured-events__events {
    padding-bottom: 3.75rem;
    margin-bottom: 0;
  }
}
.featured-events__events a {
  color: #39934D;
  text-decoration: none;
}
.featured-events__events a:hover {
  text-decoration: underline;
}
.featured-events__event {
  margin-bottom: 0.9375rem;
}
@media only screen and (min-width: 1030px) {
  .featured-events__event {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
  }
}
.featured-events__event a {
  color: #39934D !important;
  font-weight: 500;
}
.featured-events__event strong {
  font-size: 1.125rem;
  line-height: 1.5;
}
.featured-events__event-date {
  font-size: 1.5rem;
  font-family: "acumin-pro", sans-serif;
  font-weight: 800;
}
@media only screen and (min-width: 1030px) {
  .featured-events__event-date {
    flex: 0 0 auto;
    width: 8vw;
    height: 8vw;
    background: #A2B7C6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-right: 0.625rem;
    font-size: 1.5625rem;
  }
}
.featured-events__event-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (min-width: 1030px) {
  .featured-events__event-details {
    top: -8px;
  }
}
.featured-events--background {
  color: #fff;
}
.featured-events--background .featured-events__events a {
  color: #ffc711 !important;
}
.featured-events--background .featured-events__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
.featured-events--background .featured-events__title {
  color: #fff;
}
@media only screen and (min-width: 1030px) {
  .featured-events--bling .featured-events__more::after {
    content: "";
    pointer-events: none;
    bottom: -2.5rem;
    right: -10rem;
    height: 6.625rem;
    width: 8.125rem;
    display: block;
    background-size: 130px auto;
    background-repeat: no-repeat;
    position: absolute;
    background-color: transparent;
    z-index: 0;
  }
}
.featured-events--bling-yellow-arrow .featured-events__more::after {
  background-image: url("../img/bling/arrows-yellow.png");
}
.featured-events--bling-hollow-arrow .featured-events__more::after {
  background-image: url("../img/bling/arrows-hollow.png");
}
.featured-events--bling-rings .featured-events__more::after {
  background-image: url("../img/bling/rings.png");
}
.featured-events--bling-dots-round-yellow .featured-events__more::after {
  background-image: url("../img/bling/dots-round-yellow.png");
  height: 8.75rem;
}
.featured-events--bling-dots-round-gray .featured-events__more::after {
  background-image: url("../img/bling/dots-round-gray.png");
  height: 8.75rem;
}

.funnel-links {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  text-align: left;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1030px) {
  .page .funnel-links {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .funnel-links {
    margin-bottom: 3.5rem;
  }
}
.funnel-links__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .funnel-links__inner {
    padding: 3.75rem 1.875rem;
  }
}
.funnel-links__inner > div {
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .funnel-links__inner > div {
    display: flex;
  }
}
.funnel-links__title {
  color: #115740;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .funnel-links__title {
    font-size: 3.0625rem;
    margin-bottom: 2.5rem;
  }
}
.funnel-links__content {
  flex: 0 0 100%;
}
@media only screen and (min-width: 768px) {
  .funnel-links__content {
    flex: 0 0 calc(40% - 2.5rem);
    margin-right: 2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .page .funnel-links__content {
    flex: 0 0 calc(50% - 2.5rem);
  }
}

.funnel-links__content p {
  font-size: 1.125rem;
}
.funnel-links__items {
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex: 0 0 100%;
}
@media only screen and (min-width: 768px) {
  .funnel-links__items {
    flex: 0 0 60%;
  }
}
@media only screen and (min-width: 768px) {
  .page .funnel-links__items {
    flex: 0 0 50%;
  }
}

.funnel-links__item {
  margin-bottom: 1.25rem;
}
.funnel-links__item a {
  font-family: "acumin-pro", sans-serif;
  font-weight: 600;
  font-size: 1.375rem;
  text-decoration: none;
  display: block;
  padding: 1.25rem 0.9375rem;
  background: #39934D;
  color: #fff;
}
.funnel-links__item a:hover, .funnel-links__item a:focus {
  background: #0D402F;
}
.funnel-links--background .funnel-links__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
.funnel-links--background .funnel-links__title {
  color: #fff;
}
@media only screen and (min-width: 1030px) {
  .funnel-links--bling .funnel-links__items::after {
    content: "";
    pointer-events: none;
    bottom: -5rem;
    right: -3.125rem;
    height: 19.5625rem;
    width: 19.0625rem;
    display: block;
    background-size: 305px auto;
    background-repeat: no-repeat;
    position: absolute;
    background-color: transparent;
    z-index: -1;
  }
}
.funnel-links--bling-yellow-arrow .funnel-links__items::after {
  background-image: url("../img/bling/arrows-yellow.png");
}
.funnel-links--bling-hollow-arrow .funnel-links__items::after {
  background-image: url("../img/bling/arrows-hollow.png");
}
.funnel-links--bling-rings .funnel-links__items::after {
  background-image: url("../img/bling/rings.png");
}
.funnel-links--bling-dots-round-yellow .funnel-links__items::after {
  background-image: url("../img/bling/dots-round-yellow.png");
}
.funnel-links--bling-dots-round-gray .funnel-links__items::after {
  background-image: url("../img/bling/dots-round-gray.png");
}

.tabbed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  text-align: left;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1030px) {
  .page .tabbed {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .tabbed {
    margin-bottom: 3.5rem;
  }
}
.tabbed__title {
  color: #115740;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .tabbed__title {
    font-size: 3.0625rem;
    margin-bottom: 2.5rem;
  }
}
.tabbed__tabs {
  margin-bottom: 3.125rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: scroll;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.tabbed__tabs::-webkit-scrollbar {
  display: none;
}
@media only screen and (min-width: 768px) {
  .tabbed__tabs {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
.tabbed__tabs::after {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 1px;
  background: #333;
  position: absolute;
  bottom: 0;
}
@media only screen and (min-width: 1030px) {
  .page .tabbed__tabs::after {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

.tabbed__tabs > div {
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: flex-start;
}
.tabbed__tabs button {
  border: 1px solid #333;
  border-right: 0;
  background: transparent;
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  color: #115740 !important;
  margin: 0;
  white-space: nowrap;
}
.tabbed__tabs button:last-of-type {
  border-right: 1px solid #333;
}
.tabbed__tabs button:hover, .tabbed__tabs button:focus {
  text-decoration: underline !important;
}
.tabbed__tabs button.active {
  color: #fff !important;
  background-color: #39934D;
}
.tabbed__items {
  padding: 0 1.25rem;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .tabbed__items {
    padding: 0 1.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .tabbed__items {
    padding: 0;
  }
}
.tabbed__item {
  display: none;
}
.tabbed__item.visible {
  display: block;
}

.published-work {
  text-align: left;
  margin-bottom: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media only screen and (min-width: 1030px) {
  .page .published-work {
    width: calc(100% + (1.875rem * 2));
    left: calc(1.875rem * -1);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1030px) {
  .published-work {
    margin-bottom: 3.5rem;
  }
}
.published-work__inner {
  padding: 3.75rem 1.25rem;
}
@media only screen and (min-width: 768px) {
  .published-work__inner {
    padding: 3.75rem 1.875rem;
  }
}
.published-work__title {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.1rem;
  margin-bottom: 3.125rem;
  text-align: center;
  color: #115740;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 375px) {
  .published-work__title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .published-work__title {
    font-size: 49px;
    font-size: 3.0625rem;
    line-height: 3.675rem;
  }
}
.published-work__headline {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.35rem;
  line-height: 1.6;
  font-weight: 800;
  font-family: "acumin-pro-wide", sans-serif;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}
.published-work__headline--lowercase {
  text-transform: none;
}
.published-work__items {
  margin-bottom: 1.25rem;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
.published-work__item a {
  color: #39934D !important;
}
.published-work__image {
  width: 100%;
}
.published-work__image picture {
  width: 100%;
  height: 100%;
}
.published-work__image img {
  width: 100%;
  aspect-ratio: auto;
}
.published-work__content {
  padding: 1rem 0;
}
.published-work--background .featured-news__inner::before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #115740;
  position: absolute;
  top: 0;
  height: 100%;
}
.published-work--background .featured-news__title {
  color: #fff;
}
@media only screen and (min-width: 1030px) {
  .published-work--bling .published-work__items::after {
    content: "";
    pointer-events: none;
    top: -9.375rem;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #000; /* a11y - overlay text might get dinged on rating w/o this */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-size: 350px auto;
    background-position: 100% 0;
    position: absolute;
    background-color: transparent;
    z-index: -1;
  }
}
.published-work--bling-yellow-arrow .published-work__items::after {
  background-image: url("../img/bling/arrows-yellow.png");
}
.published-work--bling-hollow-arrow .published-work__items::after {
  background-image: url("../img/bling/arrows-hollow.png");
}
.published-work--bling-rings .published-work__items::after {
  background-image: url("../img/bling/rings.png");
}
.published-work--bling-dots-round-yellow .published-work__items::after {
  background-image: url("../img/bling/dots-round-yellow.png");
}
.published-work--bling-dots-round-gray .published-work__items::after {
  background-image: url("../img/bling/dots-round-gray.png");
}

/* Make printing pages nice and tidy */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  .ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
h3 {
    page-break-after: avoid;
  }
  .sidebar,
.page-navigation,
.wp-prev-next,
.respond-form,
nav {
    display: none;
  }
}
