@charset "UTF-8";
/*
 * Box-sizing for all!!!
 */
*, *::before, *::after {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td,
th {
  padding: 0;
}

@font-face {
  font-family: 'Centra No2';
  font-weight: 400;
  src: url("/resources/css/fonts/CentraNo2-Book.eot");
  src: url("/resources/css/fonts/CentraNo2-Book.woff2") format("woff2"), url("/resources/css/fonts/CentraNo2-Book.woff") format("woff");
}

@font-face {
  font-family: 'Centra No2';
  font-weight: 400;
  font-style: italic;
  src: url("/resources/css/fonts/CentraNo2-BookItalic.eot");
  src: url("/resources/css/fonts/CentraNo2-BookItalic.woff2") format("woff2"), url("/resources/css/fonts/CentraNo2-BookItalic.woff") format("woff");
}

@font-face {
  font-family: 'Centra No2';
  font-weight: 200;
  src: url("/resources/css/fonts/CentraNo2-Light.eot");
  src: url("/resources/css/fonts/CentraNo2-Light.woff2") format("woff2"), url("/resources/css/fonts/CentraNo2-Light.woff") format("woff");
}

@font-face {
  font-family: 'Centra No2';
  font-weight: 200;
  font-style: italic;
  src: url("/resources/css/fonts/CentraNo2-LightItalic.eot");
  src: url("/resources/css/fonts/CentraNo2-LightItalic.woff2") format("woff2"), url("/resources/css/fonts/CentraNo2-LightItalic.woff") format("woff");
}

@font-face {
  font-family: 'Centra No2';
  font-weight: 600;
  src: url("/resources/css/fonts/CentraNo2-Medium.eot");
  src: url("/resources/css/fonts/CentraNo2-Medium.woff2") format("woff2"), url("/resources/css/fonts/CentraNo2-Medium.woff") format("woff");
}

@font-face {
  font-family: 'Centra No2';
  font-weight: 600;
  font-style: italic;
  src: url("/resources/css/fonts/CentraNo2-MediumItalic.eot");
  src: url("/resources/css/fonts/CentraNo2-MediumItalic.woff2") format("woff2"), url("/resources/css/fonts/CentraNo2-MediumItalic.woff") format("woff");
}

body, input, textarea, button {
  font-family: "Centra No2", sans-serif;
  font-weight: 400;
  color: #151C34;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote {
  margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Centra No2", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 2em;
  font-weight: 200;
  margin-bottom: .44em;
}

h1.huge {
  font-size: 2.75em;
  line-height: 1.111111111em;
}

@media (min-width: 48.75em) {
  h1 {
    font-size: 2.5em;
  }
}

@media (min-width: 60em) {
  h1 {
    font-size: 3em;
  }
  h1.huge {
    font-size: 3.5em;
  }
}

@media (min-width: 82em) {
  h1 {
    font-size: 3.5em;
  }
}

@media (min-width: 95em) {
  h1.huge {
    font-size: 4.5em;
  }
}

h2 {
  font-size: 1.75em;
  font-weight: 400;
  line-height: 1.2;
}

@media (min-width: 48.75em) {
  h2 {
    font-size: 2em;
  }
}

@media (min-width: 60em) {
  h2 {
    font-size: 2.5em;
  }
}

h3 {
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.25;
}

@media (min-width: 55em) {
  h3 {
    font-size: 1.75em;
  }
}

@media (min-width: 70em) {
  h3 {
    font-size: 2em;
  }
}

h4 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.333333333;
  margin-bottom: .666666667em;
}

@media (min-width: 55em) {
  h4 {
    font-size: 1.5em;
  }
}

h5 {
  font-size: 1em;
  font-weight: 600;
  line-height: 1.4em;
  margin-bottom: .8em;
}

@media (min-width: 35em) {
  h5 {
    font-size: 1.25em;
  }
}

h6 {
  font-size: .75em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a, span {
  position: relative;
  text-decoration: none;
  transition: all .3s ease;
}

a span, span span {
  transition: none;
}

a.sub_nav, span.sub_nav {
  font-size: .75em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.34;
  color: #151C34;
  opacity: .4;
}

a.sub_nav:hover, span.sub_nav:hover {
  opacity: .8;
}

a.arrow, span.arrow {
  display: flex;
  align-items: center;
  color: #387CDF;
  font-weight: 600;
  line-height: 1.5;
}

a.arrow h5, span.arrow h5 {
  margin: 0;
  color: #151C34;
}

a.arrow .arrow_icon, span.arrow .arrow_icon {
  position: relative;
  margin-left: .5em;
}

a.arrow .arrow_icon img, span.arrow .arrow_icon img {
  transition: transform .3s .02s ease;
}

a.arrow .arrow_icon::before, span.arrow .arrow_icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 2px;
  background: #387CDF;
  transform: translateY(-50%);
  transition: width .3s ease;
}

a.arrow:hover .arrow_icon img, span.arrow:hover .arrow_icon img {
  transform: translateX(0.75em);
}

a.arrow:hover .arrow_icon::before, span.arrow:hover .arrow_icon::before {
  width: 1em;
}

p {
  font-size: .875em;
  line-height: 1.5;
  color: #6D6D6D;
}

p strong {
  font-weight: 600;
}

p.x_small {
  font-size: .75em;
}

p.small {
  font-size: .875em;
}

p.large {
  font-size: 1em;
}

p.x_large {
  font-size: 1.25em;
}

@media (min-width: 55em) {
  p {
    font-size: 1em;
  }
  p.large {
    font-size: 1.125em;
  }
  p.x_large {
    font-size: 1.5em;
  }
}

p, ul, ol {
  margin-bottom: 2em;
}

.content_block p a {
  position: relative;
  color: #387CDF;
}

.content_block p a:hover {
  text-decoration: underline;
}

.content_block ul {
  list-style-type: square;
  font-size: .875em;
  line-height: 1.5;
  color: #6D6D6D;
  padding-left: 1.25em;
}

.content_block ul li {
  margin-bottom: .5em;
}

.content_block ul li:last-child {
  margin-bottom: 0;
}

.content_block ul li ul {
  list-style-type: circle;
  font-size: 1em;
  margin-top: .5em;
}

.content_block ul strong {
  font-weight: 600;
}

.content_block ol {
  list-style-type: none;
  padding-left: 1.25em;
  font-size: .875em;
  line-height: 1.5;
  counter-reset: li;
}

.content_block ol li {
  position: relative;
  margin-bottom: 2em;
  color: #6D6D6D;
  counter-increment: li;
}

.content_block ol li::before {
  position: absolute;
  left: -1.25em;
  content: counter(li) ".";
  color: #151C34;
  font-weight: 600;
}

.content_block ol li strong {
  color: #151C34;
}

.content_block ol li ol {
  margin-top: 2em;
  font-size: 1em;
}

@media (min-width: 55em) {
  .content_block ul, .content_block ol {
    font-size: 1em;
  }
}

q p, blockquote p {
  quotes: "“" "”" "‘" "’";
}

q.inline_quote, blockquote.inline_quote {
  margin: 0;
  padding: 0;
}

q.inline_quote .quote, blockquote.inline_quote .quote {
  margin-bottom: 1.5em;
}

q.inline_quote .quote p, blockquote.inline_quote .quote p {
  font-size: 1.125em;
  font-weight: 200;
  font-style: italic;
  line-height: 1.666666667em;
  color: #151C34;
}

q.inline_quote .quote p:last-child, blockquote.inline_quote .quote p:last-child {
  margin-bottom: 0;
}

q.inline_quote cite, blockquote.inline_quote cite {
  font-style: normal;
}

@media (min-width: 40em) {
  q.inline_quote .quote p, blockquote.inline_quote .quote p {
    font-size: 1.5em;
  }
}

span.tag, a.tag {
  display: inline-block;
  border-radius: 2em;
  font-size: .875em;
  padding: .25em .75em;
  opacity: .7;
  margin-bottom: 1rem;
  color: #387CDF;
  background: #DFEAFA;
}

span.tag.event, a.tag.event {
  color: #43042F;
  background: #E9D8E2;
}

span.tag.news, a.tag.news {
  color: #44BAAB;
  background: #E1F4F2;
}

span.tag.blog, a.tag.blog {
  color: #F5B61C;
  background: #F9F0DA;
}

span.tag.education, a.tag.education {
  color: #DD5B46;
  background: #FAE5E1;
}

a.tag:hover {
  background: rgba(56, 124, 223, 0.26);
}

a.tag.event:hover {
  background: rgba(67, 4, 47, 0.26);
}

a.tag.news:hover {
  background: rgba(68, 186, 171, 0.26);
}

a.tag.blog:hover {
  background: rgba(245, 182, 28, 0.26);
}

a.tag.education:hover {
  background: rgba(221, 91, 70, 0.26);
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 3em;
  outline: none;
  color: #FFFFFF;
  background: #151C34;
  padding: 1.125em 2em;
  line-height: 1.25em;
  font-weight: 600;
  transition: all .3s ease;
}

.btn.white {
  background: #FFFFFF;
  color: #387CDF;
}

.btn:hover {
  background-color: #387CDF;
  box-shadow: 0 4px 8px 0 rgba(43, 47, 57, 0.16);
  transform: translateY(-2px);
}

.btn:hover.white {
  color: #FFFFFF;
}

.contact_form, .form_example {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.contact_form.small, .form_example.small {
  max-width: 34em;
}

.contact_form .input_group, .form_example .input_group {
  width: 100%;
}

.contact_form .btn, .form_example .btn {
  width: 100%;
}

@media (min-width: 56em) {
  .contact_form .input_group.half, .form_example .input_group.half {
    width: 47%;
  }
}

.gated_form {
  border-radius: .5em;
  border: 1px solid #EEEEEE;
}

.gated_form .btn {
  width: 100%;
}

.input_group {
  position: relative;
  margin-bottom: 2em;
}

.input_group label {
  display: block;
  font-size: 1em;
  font-weight: 600;
  color: #2B2F39;
  margin-bottom: 1em;
}

.input_group input[type=text], .input_group input[type=email], .input_group input[type=password], .input_group input[type=tel], .input_group textarea {
  display: block;
  width: 100%;
  padding: 1.125em 0;
  border: none;
  border-bottom: 1px solid rgba(43, 47, 57, 0.1);
  outline: none;
  resize: none;
  transition: border .3s ease;
}

.input_group input[type=text]:hover, .input_group input[type=email]:hover, .input_group input[type=password]:hover, .input_group input[type=tel]:hover, .input_group textarea:hover {
  border-color: rgba(56, 124, 223, 0.48);
}

.input_group input[type=text]:focus, .input_group input[type=email]:focus, .input_group input[type=password]:focus, .input_group input[type=tel]:focus, .input_group textarea:focus {
  border-color: #387CDF;
}

.input_group .error_message {
  display: none;
}

.input_group.error {
  margin-bottom: 3em;
}

.input_group.error input[type=text], .input_group.error input[type=email], .input_group.error input[type=password], .input_group.error input[type=tel], .input_group.error textarea {
  border-color: #DD5B46;
}

.input_group.error .error_message {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  color: #DD5B46;
  margin: 0;
  padding-top: .5em;
}

.checkbox {
  margin-top: 1.5em;
}

.checkbox:first-child {
  margin-top: 0;
}

.checkbox input[type=checkbox] {
  position: absolute;
  left: -999em;
}

.checkbox label {
  position: relative;
  display: block;
  font-weight: 400;
  padding-left: 2.5em;
  margin: 1em 0;
}

.checkbox label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  background: #FFFFFF url(/resources/img/icons/checkbox.min.svg) no-repeat center;
  border: 1px solid rgba(43, 47, 57, 0.1);
  border-radius: .25em;
  transition: border-color .3s ease, background-color .3s ease;
  transform: translateY(-50%);
}

.checkbox input[type=checkbox]:checked ~ label::before {
  background-color: #387CDF;
  border-color: #387CDF;
}

.drop_check {
  position: relative;
}

.drop_check .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  margin: 0;
  padding: 1.125em 1em 1.125em 0;
  border-bottom: 1px solid rgba(43, 47, 57, 0.1);
  transition: border .3s ease;
}

.drop_check .heading .drop_arrow {
  position: relative;
  width: 10px;
  height: 10px;
  transition: transform .3s ease;
}

.drop_check .heading .drop_arrow .arrow, .drop_check .heading .drop_arrow .close {
  display: block;
  transition: opacity .3s ease;
}

.drop_check .heading .drop_arrow .arrow svg, .drop_check .heading .drop_arrow .close svg {
  display: block;
}

.drop_check .heading .drop_arrow .arrow {
  position: absolute;
  width: 10px;
  height: 7px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.drop_check .heading .drop_arrow .close {
  opacity: 0;
}

.drop_check .heading:hover {
  border-color: rgba(56, 124, 223, 0.48);
}

.drop_check .heading .placeholder {
  color: rgba(43, 47, 57, 0.3);
}

.drop_check .drop_trigger:focus {
  border-color: #387CDF;
}

.drop_check .drop_content {
  position: absolute;
  z-index: 2;
  opacity: 0;
  transform: translateY(-0.5em);
  pointer-events: none;
  top: 115%;
  left: 0;
  width: 100%;
  border-radius: .5em;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 4px 8px 0 rgba(43, 47, 57, 0.16);
  transition: all .3s ease;
}

.drop_check .drop_content .drop_options {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.drop_check .drop_content .drop_options li {
  display: block;
  margin: 0;
}

.drop_check .drop_content .drop_options li .checkbox label {
  margin: 0;
  padding: .75em 1em .75em 3.5em;
  transition: background-color .3s ease;
}

.drop_check .drop_content .drop_options li .checkbox label::before {
  left: 1em;
}

.drop_check .drop_content .drop_options li .checkbox label:hover {
  background: rgba(56, 124, 223, 0.16);
}

.drop_check .drop_content .drop_options li .checkbox input[type=checkbox]:checked ~ label, .drop_check .drop_content .drop_options li .checkbox input[type=checkbox]:focus ~ label {
  background: rgba(56, 124, 223, 0.16);
}

.drop_check .drop_content .drop_options li:nth-child(even) .checkbox input[type=checkbox]:checked ~ label {
  background: rgba(56, 124, 223, 0.26);
}

.drop_check.focused .heading .drop_arrow {
  transform: rotate(180deg);
}

.drop_check.focused .heading .drop_arrow .arrow {
  opacity: 0;
}

.drop_check.focused .heading .drop_arrow .close {
  opacity: 1;
}

.drop_check.focused .drop_content {
  pointer-events: inherit;
  opacity: 1;
  transform: none;
}

.pages {
  background: #151C34;
}

.pages .hide {
  display: none;
}

.pages .pages_header .header_contain {
  padding: 2em 0;
  display: flex;
  justify-content: center;
}

.pages .main h4 {
  color: #FFFFFF;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-arrow {
  z-index: 2;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.center .slick-track {
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.logo_slider {
  position: relative;
  left: 0;
  width: 100%;
  margin: 0 0 3.5em -.5em;
  padding: 0;
  transition: transform 0.3s cubic-bezier(0, 0.75, 0.25, 1);
}

.logo_slider .slick-track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo_slider.center {
  margin: 0 0 3.5em 0;
}

.logo_slider:last-child {
  margin-bottom: 0;
}

.logo_slider .slider_logo {
  margin: 0 .5em;
  outline: none;
}

.logo_slider .slick-list {
  overflow: visible;
}

.logo_slider .slick-arrow {
  position: absolute;
  display: none !important;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 16em;
  height: 22em;
  border-radius: 50%;
  background: #151C34;
  filter: blur(30px);
  opacity: 0;
  border: none;
  outline: none;
  text-indent: -999em;
  transform: translate(-95%, -50%);
  transition: opacity .5s;
}

.logo_slider .slick-arrow.slick-next {
  left: auto;
  right: 0;
  transform: translate(95%, -50%);
}

.logo_slider .slick-arrow.slick-disabled {
  opacity: 0;
}

.logo_slider .slick-slide {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .6s ease;
}

.logo_slider .slick-slide.slick-active {
  opacity: 1;
}

.card_slider, .featured_slider {
  width: 110%;
  margin-left: -5%;
  padding-bottom: 3.5em;
}

.card_slider .card, .featured_slider .card {
  display: flex;
  flex-direction: column;
  max-width: none;
  width: 100%;
  margin: 0 .75em;
}

.card_slider .card .content, .featured_slider .card .content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card_slider .card .content .arrow, .featured_slider .card .content .arrow {
  height: auto;
  margin-top: auto;
}

.card_slider .slick-track, .featured_slider .slick-track {
  display: flex;
  justify-content: flex-start;
}

.card_slider .slick-list, .featured_slider .slick-list {
  overflow: visible;
}

.card_slider .slick-arrow, .featured_slider .slick-arrow {
  position: absolute;
  bottom: 0;
  right: 3.5em;
}

.card_slider .slick-arrow.next, .featured_slider .slick-arrow.next {
  left: auto;
  right: 0;
}

.card_slider .slick-slide, .featured_slider .slick-slide {
  opacity: 0;
  height: auto;
  transition: opacity .6s ease;
}

.card_slider .slick-slide.slick-active, .featured_slider .slick-slide.slick-active {
  opacity: 1;
}

@media (min-width: 30em) {
  .card_slider, .featured_slider {
    width: 100%;
    margin: 0;
  }
}

@media (min-width: 40em) {
  .card_slider, .featured_slider {
    padding-bottom: 0;
  }
  .card_slider .slick-arrow, .featured_slider .slick-arrow {
    bottom: auto;
    top: 50%;
    left: 0;
    right: auto;
    transform: translate(-125%, -50%);
  }
  .card_slider .slick-arrow.next, .featured_slider .slick-arrow.next {
    left: auto;
    right: 0;
    transform: translate(125%, -50%);
  }
}

.card_slider .card {
  border: none;
}

.card_slider .slick-arrow {
  right: 4.25em;
}

.card_slider .slick-arrow.next {
  right: .75em;
}

@media (min-width: 40em) {
  .card_slider .slick-arrow.next {
    right: 0;
  }
}

.clear:before,
.clear:after {
  content: "";
  display: table;
}

.clear:after {
  clear: both;
}

svg {
  max-height: 100%;
}

img, svg {
  max-width: 100%;
}

a img {
  display: block;
  vertical-align: middle;
}

html, body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #E9E9E9;
}

.page_contain, .block_contain {
  width: 100%;
  max-width: 100em;
  margin: 0 auto;
}

.contain {
  padding: 0 11.125%;
  max-width: 90em;
  margin: 0 auto;
}

.contain.small {
  max-width: 80em;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(43, 47, 57, 0.3);
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(43, 47, 57, 0.3);
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(43, 47, 57, 0.3);
}

figure {
  margin: 0 0 4em;
  padding: 0;
}

figure img {
  display: block;
}

.pages {
  padding-bottom: 1em;
}

.pages .main {
  background: #151C34;
}

.pages_list {
  list-style-type: none;
  margin: 0 0 3.5em;
  padding: 0;
}

.pages_list li a {
  display: flex;
  padding: 1em 0;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.pages_list li a::after {
  content: "View";
  display: block;
  color: #387CDF;
  opacity: 0;
  font-size: .875em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  transition: opacity .3s ease;
}

.pages_list li a:hover::after {
  opacity: 1;
}

.pages_list li a h5 {
  color: #FFFFFF;
  margin: 0;
}

.pages_list li a h5 span {
  margin-top: .5em;
  display: block;
  text-transform: none;
  opacity: .5;
  font-weight: 400;
  letter-spacing: 1px;
}

@media (min-width: 35em) {
  .pages_list li a h5 span {
    display: inline-block;
    margin: 0;
  }
}

figure {
  margin: 0;
  padding: 0;
}

figure img {
  display: block;
  border-radius: .5em;
}

figure figcaption {
  margin-top: 1em;
}

figure figcaption p:last-child {
  margin-bottom: 0;
}

figure.float_right, figure.float_left {
  width: 18em;
  margin: 0 auto 1.5em;
}

figure.float_right figcaption, figure.float_left figcaption {
  text-align: center;
}

@media (min-width: 40em) {
  figure.float_right, figure.float_left {
    width: 50%;
    max-width: 18em;
  }
  figure.float_right figcaption, figure.float_left figcaption {
    text-align: left;
  }
  figure.float_right {
    float: right;
    margin: 0 0 1.5em 10%;
  }
  figure.float_left {
    float: left;
    margin: 0 10% 1.5em 0;
  }
}

/* ==========================================================================
Remodal's necessary styles
========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal, [data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -99em;
  right: -99em;
  bottom: -99em;
  left: -99em;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

/* Fix iPad, iPhone glitches */
.remodal-overlay, .remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  outline: none;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
Remodal's default mobile first theme
========================================================================== */
/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 47, 57, 0.89);
}

.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 3.5em 1em 1em;
}

@media (min-width: 60em) {
  .remodal-wrapper {
    padding: 4em 4em 1em;
  }
}

/* Default theme styles of the modal dialog */
.remodal {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.remodal .modal_content {
  max-height: 100%;
  overflow: scroll;
  box-sizing: border-box;
  width: 100%;
  transform: translate3d(0, 0, 0);
  max-width: 70em;
}

.remodal .modal_content img {
  display: block;
}

.remodal.remodal-is-opening, .remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Close button */
.remodal-close {
  position: absolute;
  z-index: 1;
  top: 1rem;
  right: 1rem;
  display: block;
  overflow: visible;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0;
  padding: 0;
  opacity: 1;
  cursor: pointer;
  border: none;
  outline: none;
  background: url(/resources/img/icons/modal_close.min.svg) no-repeat center;
  background-size: contain;
}

@media (min-width: 70em) {
  .remodal-close {
    top: 2em;
    right: 2em;
  }
}

/* Keyframes
========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/** Specific modal styles */
.bio_modal .modal_content {
  background: #FFFFFF;
  border-radius: .5em;
  max-width: 50em;
}

.bio_modal .modal_content .bio {
  padding: 8%;
  text-align: center;
}

.bio_modal .modal_content .bio p:last-child {
  margin-bottom: 0;
}

.bio_modal .modal_content .social_link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #387CDF;
  margin-bottom: 1.5em;
  font-weight: 600;
}

.bio_modal .modal_content .social_link img {
  margin-right: .5em;
}

.bio_modal .modal_content .social_link:hover {
  color: #2D65B7;
}

.bio_modal .modal_content .avatar {
  width: 12.5em;
  margin: 0 auto 2.5em;
  display: block;
  border-radius: 50%;
  box-shadow: 0 8px 8px 0 rgba(21, 28, 52, 0.16);
}

.bio_modal .modal_content .bio_content h3 {
  margin-bottom: .75em;
}

@media (min-width: 35em) {
  .bio_modal .bio {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .bio_modal .bio .bio_content {
    flex: 1;
    margin-left: 8%;
    padding-top: 2em;
    text-align: left;
  }
}

.ui_kit_hero {
  position: relative;
  padding-top: 5.875em;
  background: linear-gradient(to bottom, #F2F2F2 0%, #FFFFFF 100%);
}

.ui_kit_hero .hero_content {
  width: 100%;
  padding-top: 10%;
  padding-bottom: 10%;
}

.ui_kit_hero .hero_content div, .ui_kit_hero .hero_content img {
  position: relative;
}

.ui_kit_hero .hero_content .content {
  max-width: 34em;
}

.ui_kit_hero .hero_content .content p:last-child {
  margin-bottom: 0;
}

.ui_kit_hero .hero_content h1 {
  max-width: 9.714285714em;
}

@media (min-width: 62em) {
  .ui_kit_hero {
    padding-top: 6.6875em;
  }
  .ui_kit_hero .hero_content {
    padding-top: 7%;
    padding-bottom: 8%;
  }
}

@media (min-width: 75em) {
  .ui_kit_hero .hero_content {
    align-items: center;
    padding-top: 4%;
    padding-bottom: 5%;
  }
}

.ui_header {
  max-width: 34em;
  margin-bottom: 2.5em;
}

.ui_header :last-child {
  margin: 0;
}

.color_grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.color_grid .color_group {
  width: 100%;
}

.color_grid .color_group .color_block {
  width: 100%;
}

.color_grid .color_block {
  width: 100%;
  margin-bottom: 2em;
  border-radius: .5em;
  padding: 4em 1.5em 1.5em;
  color: #FFFFFF;
}

.color_grid .color_block h5 {
  margin-bottom: .2em;
}

.color_grid .color_block p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.color_grid .color_block.blue {
  background: #387CDF;
}

.color_grid .color_block.light_blue {
  background: #DFEAFA;
  color: #387CDF;
}

.color_grid .color_block.light_blue p {
  color: rgba(56, 124, 223, 0.7);
}

.color_grid .color_block.dark_blue {
  background: #151C34;
}

.color_grid .color_block.white {
  background: #FFFFFF;
  color: #151C34;
  border: 1px solid #EEEEEE;
}

.color_grid .color_block.white p {
  color: rgba(21, 28, 52, 0.7);
}

.color_grid .color_block.dark_gray {
  background: #6D6D6D;
}

.color_grid .color_block.gray {
  background: #888888;
}

.color_grid .color_block.med_gray {
  background: #D3D3D3;
  color: #6D6D6D;
}

.color_grid .color_block.med_gray p {
  color: rgba(109, 109, 109, 0.7);
}

.color_grid .color_block.light_gray {
  background: #EEEEEE;
  color: #6D6D6D;
}

.color_grid .color_block.light_gray p {
  color: rgba(109, 109, 109, 0.7);
}

.color_grid .color_block.gradient_45 {
  background: linear-gradient(135deg, #EEEEEE 0%, #FFFFFF 100%);
  color: #6D6D6D;
}

.color_grid .color_block.gradient_45 p {
  color: rgba(109, 109, 109, 0.7);
}

.color_grid .color_block.gradient_90 {
  background: linear-gradient(to bottom, #EEEEEE 0%, #FFFFFF 100%);
  color: #6D6D6D;
}

.color_grid .color_block.gradient_90 p {
  color: rgba(109, 109, 109, 0.7);
}

.color_grid .color_block.dark_teal {
  background: #44BAAB;
}

.color_grid .color_block.teal {
  background: #E1F4F2;
  color: #44BAAB;
}

.color_grid .color_block.teal p {
  color: rgba(68, 186, 171, 0.7);
}

.color_grid .color_block.dark_maroon {
  background: #43042F;
}

.color_grid .color_block.maroon {
  background: #E9D8E2;
  color: #43042F;
}

.color_grid .color_block.maroon p {
  color: rgba(67, 4, 47, 0.7);
}

.color_grid .color_block.dark_orange {
  background: #DD5B46;
}

.color_grid .color_block.orange {
  background: #FAE5E1;
  color: #DD5B46;
}

.color_grid .color_block.orange p {
  color: rgba(221, 91, 70, 0.7);
}

.color_grid .color_block.dark_yellow {
  background: #F5B61C;
}

.color_grid .color_block.yellow {
  background: #F9F0DA;
  color: #F5B61C;
}

.color_grid .color_block.yellow p {
  color: rgba(245, 182, 28, 0.7);
}

@media (min-width: 30em) {
  .color_grid .color_block, .color_grid .color_group {
    width: 47.5%;
  }
  .color_grid .color_block.half, .color_grid .color_group.half {
    width: 100%;
  }
}

@media (min-width: 55em) {
  .color_grid .color_block, .color_grid .color_group {
    width: 23%;
  }
  .color_grid .color_block.half, .color_grid .color_group.half {
    width: 48.5%;
  }
}

.type_header {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5em;
}

.type_header h3 {
  margin: 0;
}

.type_header p {
  display: none;
  color: #151C34;
  margin: 0;
}

@media (min-width: 50em) {
  .type_header h3 {
    flex: 1;
  }
  .type_header p {
    display: block;
    width: 8.5em;
    margin: 0 0 0 3%;
  }
  .type_header p:first-of-type {
    width: 7em;
  }
  .type_header p:last-child {
    width: 7em;
  }
}

.type_list .type_block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.5em 0;
  border-bottom: 1px solid #EEEEEE;
}

.type_list .type_block p {
  width: 100%;
  margin-bottom: .75em;
}

.type_list .type_block p span {
  font-weight: 600;
}

.type_list .type_block p:last-child {
  margin-bottom: 0;
}

.type_list .type_block .type_style {
  margin-bottom: 1em;
}

.type_list .type_block .type_style h1, .type_list .type_block .type_style h2, .type_list .type_block .type_style h3, .type_list .type_block .type_style h4, .type_list .type_block .type_style h5, .type_list .type_block .type_style h6, .type_list .type_block .type_style p {
  margin-bottom: 0;
}

.type_list .type_block .type_style p {
  display: block;
  color: #151C34;
}

@media (min-width: 50em) {
  .type_list .type_block {
    flex-wrap: nowrap;
  }
  .type_list .type_block p {
    width: 8.5em;
    margin: 0 0 0 3%;
  }
  .type_list .type_block p span {
    display: none;
  }
  .type_list .type_block p:first-of-type {
    width: 7em;
  }
  .type_list .type_block p:last-child {
    width: 7em;
  }
  .type_list .type_block .type_style {
    flex: 1;
    margin: 0;
  }
  .type_list .type_block .type_style p {
    width: 100%;
    margin: 0;
    max-width: 28rem;
  }
}

.btn_example_contain {
  display: flex;
  flex-wrap: wrap;
}

.btn_example_contain .btn_example {
  display: flex;
  align-items: center;
  width: auto;
  border: 1px solid #EEEEEE;
  border-radius: .5em;
  padding: 1.5em;
  margin-right: 1.5em;
}

.btn_example_contain .btn_example.dark {
  background: #151C34;
  border-color: #151C34;
}

.btn_example_contain .btn_example .log_in_btn {
  padding: .7em 1.4em;
  border-radius: 3em;
  font-weight: 600;
  color: #151C34;
  background: #EEEEEE;
}

.btn_example_contain .btn_example .log_in_btn:hover {
  color: #FFFFFF;
  background-color: #387CDF;
  box-shadow: 0 4px 8px 0 rgba(43, 47, 57, 0.16);
  transform: translateY(-2px);
}

.link_example_contain {
  display: flex;
  flex-wrap: wrap;
}

.link_example_contain .link_example {
  display: flex;
  align-items: center;
  width: auto;
  border: 1px solid #EEEEEE;
  border-radius: .5em;
  padding: 1.5em;
  margin-right: 1.5em;
}

.pagination_contain {
  border: 1px solid #EEEEEE;
  border-radius: .5em;
  padding: 1.5em;
  max-width: 34em;
}

.pagination_contain .pagination {
  margin-bottom: 2em;
}

.pagination_contain .pagination:last-child {
  margin-bottom: 0;
}

.nav--on {
  overflow: hidden;
}

@media (min-width: 56em) {
  .nav--on {
    overflow: inherit;
  }
}

header.main {
  position: absolute;
  z-index: 500;
  top: 0;
  left: 50%;
  width: 100%;
  padding: 2em 0;
  background-color: #FFFFFF;
  transform: translateX(-50%);
}

.home header.main {
  opacity: 0;
  transition: opacity 1.5s .1s ease;
}

.home.loaded header.main {
  opacity: 1;
}

header.main .contain {
  display: flex;
  align-items: center;
  justify-content: center;
}

header.main .logo svg path {
  fill: #387CDF;
  transition: fill .3s ease;
}

header.main .main_nav {
  position: absolute;
  top: 0;
  left: 50%;
  display: none;
  transform: translateX(-50%);
}

header.main .main_nav ul.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

header.main .main_nav ul.nav > li {
  position: relative;
  padding: 2.68em 1.5em;
  cursor: pointer;
}

header.main .main_nav ul.nav > li .nav_item {
  text-transform: uppercase;
  font-size: .875em;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(21, 28, 52, 0.5);
  transition: color .3s ease;
}

header.main .main_nav ul.nav > li a.arrow {
  white-space: nowrap;
  padding-right: 1em;
  margin-bottom: 0;
}

header.main .main_nav ul.nav > li a.arrow .icon {
  min-width: 3.625em;
}

header.main .main_nav ul.nav > li a.arrow .arrow_icon {
  min-width: .4375em;
}

header.main .main_nav ul.nav > li .dropdown {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
  top: 85%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  padding: 3em 2.5em;
  background: #FFFFFF;
  border-radius: .5em;
  border: 1px solid #EEEEEE;
  box-shadow: 0 1.5em 2.5em 0 rgba(43, 47, 57, 0.24);
  transition: opacity .3s ease;
}

header.main .main_nav ul.nav > li .dropdown .drop_arrow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(1.25em);
  transition: transform .3s ease;
}

header.main .main_nav ul.nav > li .dropdown .drop_arrow::before, header.main .main_nav ul.nav > li .dropdown .drop_arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2em;
  height: 2em;
  border-radius: .375em;
  border: 1px solid #EEEEEE;
  background: #FFFFFF;
  transform: rotate(45deg) translateX(-75%);
}

header.main .main_nav ul.nav > li .dropdown .drop_arrow::after {
  transform: none;
  background: #FFFFFF;
  border-radius: 0;
  border: none;
  width: 3em;
  transform: translate(-50%, -0.75em);
}

header.main .main_nav ul.nav > li .dropdown .nav_section {
  max-height: 0;
  overflow: hidden;
  transform: translateY(-0.75em);
  transition: transform .3s ease, max-height .3s ease;
}

header.main .main_nav ul.nav > li .dropdown .nav_section ul li {
  margin-bottom: 1.25em;
}

header.main .main_nav ul.nav > li .dropdown .nav_section ul li:last-child {
  margin-bottom: 0;
}

header.main .main_nav ul.nav > li .dropdown ul:last-child {
  margin-bottom: 0;
}

header.main .main_nav ul.nav > li:hover .nav_item {
  color: #151C34;
}

header.main .main_nav ul.nav > li:hover .dropdown {
  opacity: 1;
  pointer-events: inherit;
}

header.main .main_nav ul.nav > li:hover .dropdown .drop_arrow {
  transform: translateY(0.75em);
}

header.main .main_nav ul.nav > li:hover .dropdown .nav_section {
  max-height: 37em;
  transform: translateY(0);
  transition: transform .5s ease, max-height .4s ease;
}

header.main .log_in_btn {
  display: none;
  padding: .7em 1.4em;
  border-radius: 3em;
  font-weight: 600;
  color: #151C34;
  background: #EEEEEE;
}

header.main .log_in_btn:hover {
  color: #FFFFFF;
  background-color: #387CDF;
  box-shadow: 0 4px 8px 0 rgba(43, 47, 57, 0.16);
  transform: translateY(-2px);
}

.dark_header header.main {
  background-color: rgba(255, 255, 255, 0);
}

.dark_header header.main .logo svg path {
  fill: #FFFFFF;
}

.dark_header header.main .main_nav ul.nav > li .nav_item {
  color: rgba(255, 255, 255, 0.6);
}

.dark_header header.main .main_nav ul.nav > li:hover .nav_item {
  color: #FFFFFF;
}

.dark_header header.main .log_in_btn {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.16);
}

.dark_header header.main .log_in_btn:hover {
  color: #FFFFFF;
  background-color: #387CDF;
  box-shadow: 0 4px 8px 0 rgba(43, 47, 57, 0.16);
  transform: translateY(-2px);
}

.trans_header header.main {
  background-color: rgba(255, 255, 255, 0);
}

@media (min-width: 62em) {
  header.main .contain {
    display: flex;
    justify-content: space-between;
  }
  header.main .main_nav {
    display: block;
  }
  header.main .log_in_btn {
    display: block;
  }
}

.nav_section ul {
  list-style-type: none;
  margin: 0 0 3.5em;
  padding: 0;
}

.nav_section ul li {
  display: block;
  margin-bottom: 1.125em;
}

.nav_section ul li a {
  padding-left: 3.625em;
  color: #6D6D6D;
}

.nav_section ul li a:hover {
  color: #151C34;
}

.nav_section ul li a.arrow {
  padding-left: 0;
  margin-bottom: 2em;
}

.nav_section ul li a.arrow .icon {
  width: 3.625em;
}

.nav_section ul li a.arrow .text {
  color: #151C34;
  font-size: 1.25em;
}

.nav_section ul li:last-child {
  margin: 0;
}

.mobile_header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 50%;
  width: 100%;
  padding: 2em 0;
  background-color: #FFFFFF;
  transform: translate(-50%, -100%);
  transition: transform .4s ease;
}

.mobile_header .contain {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile_header .logo svg path {
  fill: #387CDF;
  transition: fill .3s ease;
}

.nav--on .mobile_header {
  box-shadow: 0 0.5em 0.5em 0 rgba(255, 255, 255, 0.9);
  transform: translate(-50%, 0);
  transition: transform .3s ease, box-shadow .3s .3s ease;
}

@media (min-width: 62em) {
  .mobile_header {
    display: none;
  }
}

.mobile_nav {
  position: fixed;
  z-index: 999;
  top: 5.8125em;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  padding: 2em 0 7.75em;
  overflow: scroll;
  transform: translateY(100%);
  transition: transform .35s ease;
}

.mobile_nav .heading {
  position: relative;
  width: 100%;
  margin-bottom: 1.875em;
}

.mobile_nav .heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(21, 28, 52, 0.2);
}

.mobile_nav .heading h6 {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-size: .75em;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.5;
  margin: 0;
  color: #888888;
  background: #FFFFFF;
  padding-right: .5rem;
}

.mobile_nav .log_in_btn {
  display: block;
  padding: 1.2em 1.4em;
  border-radius: 3em;
  font-weight: 600;
  color: #151C34;
  text-align: center;
  background: #EEEEEE;
}

.mobile_nav .log_in_btn:hover {
  color: #FFFFFF;
  background-color: #387CDF;
  box-shadow: 0 4px 8px 0 rgba(43, 47, 57, 0.16);
  transform: translateY(-2px);
}

.nav--on .mobile_nav {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 62em) {
  .mobile_nav {
    display: none;
  }
}

.nav_trigger {
  position: fixed;
  z-index: 2000;
  bottom: 2.5em;
  left: 50%;
  width: 3.5em;
  height: 3.5em;
  border-radius: 50%;
  background: #387CDF;
  transform: translateX(-50%);
  transition: box-shadow .3s ease;
}

.nav_trigger img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease;
}

.nav_trigger img.close_nav {
  opacity: 0;
}

.nav--on .nav_trigger {
  box-shadow: 0 1em 1.25em 0 rgba(43, 47, 57, 0.24);
}

.nav--on .nav_trigger .open_nav {
  opacity: 0;
}

.nav--on .nav_trigger .close_nav {
  opacity: 1;
}

@media (min-width: 62em) {
  .nav_trigger {
    display: none;
  }
}

.contact_bg .contact_block {
  background: #151C34 url(/resources/img/footer/footer_bg.jpg) no-repeat bottom center;
  background-size: cover;
}

.contact_bg.bg_2 .contact_block {
  background-image: url(/resources/img/footer/footer_bg_2.jpg);
}

.contact_bg.bg_3 .contact_block {
  background-image: url(/resources/img/footer/footer_bg_3.jpg);
}

.contact_bg.bg_4 .contact_block {
  background-image: url(/resources/img/footer/footer_bg_4.jpg);
}

.contact_bg.bg_5 .contact_block {
  background-image: url(/resources/img/footer/footer_bg_5.jpg);
}

.contact_bg.bg_6 .contact_block {
  background-image: url(/resources/img/footer/footer_bg_6.jpg);
}

.contact_bg.bg_7 .contact_block {
  background-image: url(/resources/img/footer/footer_bg_7.jpg);
}

.contact_bg.bg_8 .contact_block {
  background-image: url(/resources/img/footer/footer_bg_8.jpg);
}

.contact_bg.bg_9 .contact_block {
  background-image: url(/resources/img/footer/footer_bg_9.jpg);
}

.contact_bg.bg_10 .contact_block {
  background-image: url(/resources/img/footer/footer_bg_10.jpg);
}

.contact_bg.bg_11 .contact_block {
  background-image: url(/resources/img/footer/footer_bg_11.jpg);
}

.contact_bg.bg_12 .contact_block {
  background-image: url(/resources/img/footer/footer_bg_12.jpg);
}

.contact_block {
  padding: 5.5em 0 0;
  color: #FFFFFF;
}

.contact_block .section_header {
  text-align: center;
  padding-bottom: 3em;
}

.contact_block .section_header h2 {
  margin: 0;
}

@media (min-width: 50em) {
  .contact_block {
    padding-top: 6.5em;
  }
}

@media (min-width: 60em) {
  .contact_block {
    padding-top: 7.5em;
  }
}

.contact_form, .gated_form {
  background: #FFFFFF;
  padding: 8% 10%;
  border-radius: .5em;
  color: #2B2F39;
  width: 110%;
  margin: 0 -5%;
}

.contact_form .form_heading, .gated_form .form_heading {
  width: 100%;
  margin-bottom: 2.5em;
}

.contact_form .form_heading h5, .gated_form .form_heading h5 {
  margin: 0;
}

.contact_form .form_heading h4, .gated_form .form_heading h4 {
  margin: 0;
}

@media (min-width: 45em) {
  .contact_form, .gated_form {
    width: 100%;
    margin: 0;
  }
}

.success_message {
  display: none;
  background: #FFFFFF;
  padding: 8% 10%;
  border-radius: .5em;
  color: #2B2F39;
  width: 110%;
  margin: 0 -5%;
  text-align: center;
}

.success_message p {
  margin: 0;
}

@media (min-width: 45em) {
  .success_message {
    width: 100%;
    margin: 0;
  }
}

.success .contact_form {
  display: none;
}

.success .success_message {
  display: block;
}

footer {
  background: #151C34;
  padding: 5.5em 0;
}

@media (min-width: 50em) {
  footer {
    padding-top: 6.5em;
  }
}

@media (min-width: 60em) {
  footer {
    padding-top: 7.5em;
  }
}

.footer_content .footer_contact {
  margin-bottom: 3.5em;
}

.footer_content .footer_contact img {
  margin-bottom: 2.5em;
}

.footer_content .footer_contact address {
  font-style: normal;
}

.footer_content .footer_contact address p {
  color: rgba(255, 255, 255, 0.6);
}

.footer_content .footer_contact .social {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.footer_content .footer_contact .social li {
  display: block;
  margin-right: .75em;
}

.footer_content .footer_contact .social li a, .footer_content .footer_contact .social li img {
  display: block;
}

@media (min-width: 30em) {
  .footer_content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer_content .footer_contact {
    width: 40%;
  }
  .footer_content .footer_nav {
    flex: 1;
  }
}

@media (min-width: 60em) {
  .footer_content .footer_contact {
    width: 25%;
  }
}

.footer_nav .heading {
  position: relative;
  width: 100%;
  margin-bottom: 1.875em;
}

.footer_nav .heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_nav .heading h5, .footer_nav .heading h6 {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  color: #FFFFFF;
  background: #151C34;
  padding-right: .5rem;
}

.footer_nav .heading h5 {
  font-size: .875em;
  line-height: 1.285714286;
}

.footer_nav .heading h6 {
  font-size: .75em;
  line-height: 1.5;
}

.footer_nav ul {
  list-style-type: none;
  margin: 0 0 3.5em;
  padding: 0;
}

.footer_nav ul li {
  display: block;
  margin-bottom: 1.5em;
}

.footer_nav ul li:last-child {
  margin-bottom: 0;
}

.footer_nav ul li a {
  color: rgba(255, 255, 255, 0.6);
}

.footer_nav ul li a.arrow {
  color: #FFFFFF;
}

.footer_nav ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 60em) {
  .footer_nav ul {
    margin-bottom: 7.5em;
  }
  .footer_nav .nav_columns {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer_nav .nav_columns .column {
    width: 30%;
  }
}

.copyright .logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3.5em;
}

.copyright .logos a {
  margin-top: 2em;
}

.copyright .logos .b_corp {
  width: 2.5em;
  margin-right: 2em;
}

.copyright .logos .bbbseal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright .logos .bbbseal img {
  opacity: .5;
  max-height: 65px;
}

.copyright .logos .bbbseal p {
  margin: 0;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

@media (min-width: 30em) {
  .copyright {
    padding-left: 40%;
  }
}

@media (min-width: 60em) {
  .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
  }
  .copyright .logos {
    margin: 0;
  }
  .copyright .logos a {
    margin: 0;
  }
}

.body_content {
  position: relative;
}

.body_content.white {
  background: #FFFFFF;
}

.contact .body_content {
  padding-bottom: 5.5em;
}

.page_nav {
  display: none;
  position: -webkit-sticky;
  position: sticky;
  z-index: 100;
  top: 0;
  left: 0;
  background: #FFFFFF;
}

.page_nav::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(43, 47, 57, 0.1);
}

.page_nav ul {
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.page_nav ul li {
  overflow: hidden;
  padding: 0 1%;
  text-align: center;
}

.page_nav ul li a {
  display: block;
  padding: 2rem 1em;
}

.page_nav ul li.active a {
  opacity: 1;
  color: #387CDF;
}

.page_nav ul li.active a::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 50%;
  width: 1.25rem;
  height: 1.25rem;
  background: #387CDF;
  border-radius: 50%;
  transform: translate(-50%, -35%);
}

@media (min-width: 62em) {
  .page_nav {
    display: block;
  }
}

.content_block {
  padding: 3em 0;
}

.content_block.white {
  background: #FFFFFF;
}

.content_block.img_bg {
  padding: 25% 0 18%;
  background: no-repeat center;
  background-size: cover;
  color: #FFFFFF;
}

.content_block.img_bg p {
  color: rgba(255, 255, 255, 0.7);
}

.content_block.img_bg.allblue {
  background-image: url(/resources/img/homepage/allblue_bg.jpg);
}

.content_block.img_bg.about {
  background-image: url(/resources/img/homepage/about_bg.jpg);
}

.content_block.img_bg.development_history {
  background-image: url(/resources/img/community_solar/development_history_bg.jpg);
}

.content_block .section_header {
  padding: 12% 0;
}

.content_block .section_header.underline {
  border-bottom: 1px solid rgba(43, 47, 57, 0.1);
}

.content_block .section_header.center {
  text-align: center;
}

.content_block .section_header.center p {
  max-width: 33.777777778em;
  margin: 0 auto;
}

.content_block .section_header.center h2 {
  max-width: 20em;
  margin: 0 auto 1em;
}

.content_block .section_header.center h3 {
  max-width: 20.125em;
  margin: 0 auto;
}

.content_block .more_link {
  padding: 1em 0 2em;
  text-align: center;
}

.content_block.allblue .content {
  max-width: 28em;
}

.content_block.allblue .content h3 {
  max-width: 14em;
}

.content_block.allblue .content p {
  max-width: 22em;
}

.content_block.about .content .main_content, .content_block.development_history .content .main_content, .content_block.two_col_links .content .main_content {
  max-width: 34em;
  margin-bottom: 3.5em;
}

.content_block.about .content .main_content h2, .content_block.development_history .content .main_content h2, .content_block.two_col_links .content .main_content h2 {
  max-width: 13.6em;
}

.content_block.about .content .main_content p, .content_block.development_history .content .main_content p, .content_block.two_col_links .content .main_content p {
  max-width: 22em;
}

.content_block.about .content .main_content .actions, .content_block.development_history .content .main_content .actions, .content_block.two_col_links .content .main_content .actions {
  display: flex;
  align-items: center;
}

.content_block.about .content .main_content .actions .b_corp, .content_block.development_history .content .main_content .actions .b_corp, .content_block.two_col_links .content .main_content .actions .b_corp {
  width: 2.125em;
  margin-left: 1.625em;
}

.content_block.about .content .links, .content_block.development_history .content .links, .content_block.two_col_links .content .links {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.content_block.about .content .links li, .content_block.development_history .content .links li, .content_block.two_col_links .content .links li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2em;
}

.content_block.about .content .links li:last-child, .content_block.development_history .content .links li:last-child, .content_block.two_col_links .content .links li:last-child {
  margin: 0;
}

.content_block.about .content .links li img, .content_block.development_history .content .links li img, .content_block.two_col_links .content .links li img {
  margin-right: 1em;
}

.content_block.about .content .links li div, .content_block.development_history .content .links li div, .content_block.two_col_links .content .links li div {
  max-width: 21.4375em;
  margin: 0;
}

.content_block.about .content .links li div p:last-child, .content_block.development_history .content .links li div p:last-child, .content_block.two_col_links .content .links li div p:last-child {
  margin: 0;
}

.content_block.about .content .links li div a, .content_block.development_history .content .links li div a, .content_block.two_col_links .content .links li div a {
  margin-bottom: 1em;
}

.content_block.about, .content_block.development_history {
  padding: 6em 0 3em;
}

@media (min-width: 50em) {
  .content_block {
    padding: 0 0 5em;
  }
  .content_block.img_bg {
    padding: 18% 0 14%;
  }
  .content_block .section_header {
    padding: 7% 0;
  }
  .content_block.about, .content_block.development_history {
    padding: 12em 0 6em;
  }
}

@media (min-width: 62em) {
  .content_block {
    padding: 5em 0 7em;
  }
  .content_block.img_bg {
    padding: 12% 0;
  }
  .content_block .section_header {
    padding: 7% 0;
  }
  .content_block.about .content, .content_block.development_history .content, .content_block.two_col_links .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .content_block.about .content .main_content, .content_block.development_history .content .main_content, .content_block.two_col_links .content .main_content {
    margin: 0;
  }
  .content_block.about .content .main_content p:last-child, .content_block.development_history .content .main_content p:last-child, .content_block.two_col_links .content .main_content p:last-child {
    margin-bottom: 0;
  }
  .content_block.about .content .links, .content_block.development_history .content .links, .content_block.two_col_links .content .links {
    margin: 0 8%;
  }
  .content_block.about, .content_block.development_history {
    padding: 20% 0 9%;
  }
}

.solution_block, .about_block, .value_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 4.5em 0;
}

.solution_block .main_img, .about_block .main_img, .value_block .main_img {
  display: block;
  width: 28em;
  border-radius: .5em;
  margin-bottom: 3em;
}

.solution_block .content, .about_block .content, .value_block .content {
  max-width: 28em;
}

.solution_block .content .heading, .about_block .content .heading, .value_block .content .heading {
  display: flex;
  align-items: center;
  margin-bottom: 1.875em;
}

.solution_block .content .heading img, .about_block .content .heading img, .value_block .content .heading img {
  margin-right: 1.5em;
}

.solution_block .content .heading h3, .about_block .content .heading h3, .value_block .content .heading h3 {
  margin: 0;
}

.solution_block .content p:last-child, .about_block .content p:last-child, .value_block .content p:last-child {
  margin: 0;
}

.solution_block .content .btn, .about_block .content .btn, .value_block .content .btn {
  margin: 2.5em 0 3.25em;
}

.solution_block .content .btn:last-child, .about_block .content .btn:last-child, .value_block .content .btn:last-child {
  margin-bottom: 0;
}

.solution_block .content .solution_links, .about_block .content .solution_links, .value_block .content .solution_links {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.solution_block .content .solution_links li, .about_block .content .solution_links li, .value_block .content .solution_links li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2em;
}

.solution_block .content .solution_links li:last-child, .about_block .content .solution_links li:last-child, .value_block .content .solution_links li:last-child {
  margin-bottom: 0;
}

.solution_block .content .solution_links li img, .about_block .content .solution_links li img, .value_block .content .solution_links li img {
  margin-right: 1em;
}

.solution_block .content .solution_links li div, .about_block .content .solution_links li div, .value_block .content .solution_links li div {
  max-width: 21.4375em;
  margin: 0;
}

.solution_block .content .solution_links li div p:last-child, .about_block .content .solution_links li div p:last-child, .value_block .content .solution_links li div p:last-child {
  margin: 0;
}

.solution_block .content .solution_links li div a, .about_block .content .solution_links li div a, .value_block .content .solution_links li div a {
  margin-bottom: 1em;
}

@media (min-width: 40em) {
  .solution_block, .about_block, .value_block {
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .solution_block .main_img, .about_block .main_img, .value_block .main_img {
    width: 30%;
    margin: 0 2em 0 0;
  }
}

@media (min-width: 60em) {
  .solution_block, .about_block, .value_block {
    align-items: center;
  }
  .solution_block.right_img, .about_block.right_img, .value_block.right_img {
    flex-direction: row-reverse;
  }
  .solution_block.right_img .main_img, .about_block.right_img .main_img, .value_block.right_img .main_img {
    margin: 0 0 0 2em;
  }
  .solution_block .main_img, .about_block .main_img, .value_block .main_img {
    width: 28em;
    max-width: 40%;
  }
}

@media (min-width: 72em) {
  .solution_block.right_img .main_img, .about_block.right_img .main_img, .value_block.right_img .main_img {
    margin: 0;
  }
  .solution_block .main_img, .about_block .main_img, .value_block .main_img {
    margin: 0;
  }
  .solution_block .content, .about_block .content, .value_block .content {
    margin: 0 8%;
  }
}

.value_block:first-child {
  padding-top: 0;
}

.value_block .content {
  max-width: 34em;
}

.value_block .content h6 {
  color: #6D6D6D;
}

.value_block .content h3.wrap {
  max-width: 11.03125em;
}

.value_block .content .actions {
  display: flex;
  align-items: center;
}

.value_block .content .actions .btn {
  margin: 0;
}

.value_block .content .actions .b_corp {
  width: 2.125em;
  margin-left: 1.5em;
}

@media (min-width: 72em) {
  .value_block .content {
    margin: 0 0 0 8%;
  }
  .value_block.right_img .content {
    margin: 0 8% 0 0;
  }
}

.bw_difference {
  background: #FFFFFF;
  padding: 5.5em 0;
}

.bw_difference .heading {
  display: flex;
  align-items: center;
  margin-bottom: 2.5em;
}

.bw_difference .heading img {
  margin-right: 1.5em;
}

.bw_difference .heading h5 {
  margin: 0;
}

.bw_difference .content p {
  color: #6D6D6D;
}

.bw_difference .content p:last-child {
  margin: 0;
}

@media (min-width: 60em) {
  .bw_difference {
    padding: 7.5em 0;
  }
  .bw_difference .contain {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .bw_difference .contain .heading {
    margin-right: 12%;
  }
  .bw_difference .contain .content {
    flex: 1;
    margin-top: .5em;
  }
}

.block {
  padding: 5.5em 0;
}

.block .contain {
  position: relative;
}

.block.no_pad {
  padding: 0;
}

.block.no_top {
  padding-top: .01em;
}

.block.no_bottom {
  padding-bottom: .01em;
}

.block.no_overflow {
  overflow: hidden;
}

.block.white {
  background: #FFFFFF;
}

.block.light_gray {
  background: #EEEEEE;
}

.block.light_gray_45 {
  background: linear-gradient(135deg, #F2F2F2 0%, #FFFFFF 100%);
}

.block.light_gray_90 {
  background: linear-gradient(to bottom, #F2F2F2 0%, #FFFFFF 100%);
}

.block.light_gray_90_flip {
  background: linear-gradient(to top, #F2F2F2 0%, #FFFFFF 100%);
}

.block.dark_blue, .block.dark {
  background: #151C34;
}

.block.dark_blue .heading h1, .block.dark_blue .heading h2, .block.dark_blue .heading h3, .block.dark_blue .heading h5, .block.dark_blue .content h1, .block.dark_blue .content h2, .block.dark_blue .content h3, .block.dark_blue .content h5, .block.dark .heading h1, .block.dark .heading h2, .block.dark .heading h3, .block.dark .heading h5, .block.dark .content h1, .block.dark .content h2, .block.dark .content h3, .block.dark .content h5 {
  color: #FFFFFF;
}

.block.dark_blue .heading p, .block.dark_blue .content p, .block.dark .heading p, .block.dark .content p {
  color: rgba(255, 255, 255, 0.6);
}

.block.dark_blue .content h2, .block.dark .content h2 {
  max-width: 12em;
}

.block.dark_blue .card, .block.dark .card {
  border: none;
}

.block.dark_blue .card h5, .block.dark .card h5 {
  color: #151C34;
}

.block.dark_blue .card p, .block.dark .card p {
  color: #6D6D6D;
}

.block.img_bg {
  position: relative;
  background: #FFFFFF;
  padding-bottom: 25%;
}

.block.img_bg .bg {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.block.img_bg .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to bottom, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.block.img_bg .bg img {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
}

.block.img_bg.dark {
  background: #151C34;
}

.block.img_bg.dark .bg::after {
  background: linear-gradient(to bottom, #151C34 0%, rgba(21, 28, 52, 0) 100%);
}

.block.full_img_bg {
  position: relative;
  background: #FFFFFF no-repeat left top;
  background-size: contain;
}

.block.full_img_bg.dark {
  background: #151C34;
}

.block.dual_use_img {
  padding: 0;
  margin: -8% 0 -4%;
}

.block.dual_use_img img {
  display: block;
}

.block .heading.left {
  text-align: left;
  padding-bottom: 3.5em;
}

.block .heading.left :last-child {
  margin-bottom: 0;
}

.block .heading.center {
  text-align: center;
  max-width: 50em;
  margin: 0 auto;
  padding-bottom: 3.5em;
}

.block .heading.center :last-child {
  margin-bottom: 0;
}

.block .heading.center p {
  max-width: 36.555555556em;
  margin: 0 auto 1em;
}

.block .heading.center h2 {
  max-width: 13.6em;
  margin: 0 auto .75em;
}

.block .heading.center h2.wide {
  max-width: 19.35em;
}

.block .heading.center .btn {
  margin-top: 1.5em;
}

.block .heading.center.push_bottom {
  margin-bottom: 3em;
}

.block .heading .heading_btn {
  margin-bottom: 3.5em;
}

.block .more_link {
  text-align: center;
}

@media (min-width: 45em) {
  .block .heading .heading_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .block .heading .heading_btn h2 {
    margin: 0;
  }
  .block .heading .heading_btn .btn {
    white-space: nowrap;
    margin-left: 10%;
  }
  .block .heading.center.push_bottom {
    margin-bottom: 4.5em;
  }
}

@media (min-width: 60em) {
  .block {
    padding: 7.5em 0;
  }
  .block .heading.center.push_bottom {
    margin-bottom: 10em;
  }
}

.products .product_columns p {
  color: rgba(255, 255, 255, 0.6);
}

.products .product_columns p.large {
  color: #FFFFFF;
}

.products .content, .how_it_works .content, .management_platform .content {
  max-width: 34.25em;
}

.products .content h2, .how_it_works .content h2, .management_platform .content h2 {
  margin-bottom: 2em;
}

.products .product_columns .column, .how_it_works .product_columns .column, .management_platform .product_columns .column {
  margin-bottom: 3em;
}

.products .product_columns .heading, .how_it_works .product_columns .heading, .management_platform .product_columns .heading {
  display: flex;
  align-items: center;
  margin-bottom: 1.5em;
  padding: 0;
}

.products .product_columns .heading img, .how_it_works .product_columns .heading img, .management_platform .product_columns .heading img {
  margin-right: 1em;
}

.products .product_columns .heading h3, .how_it_works .product_columns .heading h3, .management_platform .product_columns .heading h3 {
  margin: 0;
}

.products .how_list, .how_it_works .how_list, .management_platform .how_list {
  list-style-type: none;
  margin: 0 0 3em;
  padding: 0;
}

.products .how_list li, .how_it_works .how_list li, .management_platform .how_list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3em;
}

.products .how_list li:last-child, .how_it_works .how_list li:last-child, .management_platform .how_list li:last-child {
  margin-bottom: 0;
}

.products .how_list li .numeral, .how_it_works .how_list li .numeral, .management_platform .how_list li .numeral {
  width: 3rem;
  min-width: 3rem;
  margin-right: 2rem;
  font-size: 3.5em;
  color: #387CDF;
  font-weight: 200;
  line-height: 1em;
}

.products .how_list li p, .how_it_works .how_list li p, .management_platform .how_list li p {
  margin-bottom: 0;
}

.products .card, .how_it_works .card, .management_platform .card {
  max-width: 28em;
  margin: 3em 0 0;
}

.products .card ul.benefit_list, .products .card ul.how_benefits, .products .card ul.feature_list, .how_it_works .card ul.benefit_list, .how_it_works .card ul.how_benefits, .how_it_works .card ul.feature_list, .management_platform .card ul.benefit_list, .management_platform .card ul.how_benefits, .management_platform .card ul.feature_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.products .card ul.benefit_list li, .products .card ul.how_benefits li, .products .card ul.feature_list li, .how_it_works .card ul.benefit_list li, .how_it_works .card ul.how_benefits li, .how_it_works .card ul.feature_list li, .management_platform .card ul.benefit_list li, .management_platform .card ul.how_benefits li, .management_platform .card ul.feature_list li {
  position: relative;
  margin-bottom: 1.5em;
  padding: .125em 0 0 2.75em;
}

.products .card ul.benefit_list li::before, .products .card ul.how_benefits li::before, .products .card ul.feature_list li::before, .how_it_works .card ul.benefit_list li::before, .how_it_works .card ul.how_benefits li::before, .how_it_works .card ul.feature_list li::before, .management_platform .card ul.benefit_list li::before, .management_platform .card ul.how_benefits li::before, .management_platform .card ul.feature_list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.75em;
  height: 1.75em;
  background: url(/resources/img/icons/check.min.svg) no-repeat center;
}

.products .card ul.benefit_list li:last-child, .products .card ul.how_benefits li:last-child, .products .card ul.feature_list li:last-child, .how_it_works .card ul.benefit_list li:last-child, .how_it_works .card ul.how_benefits li:last-child, .how_it_works .card ul.feature_list li:last-child, .management_platform .card ul.benefit_list li:last-child, .management_platform .card ul.how_benefits li:last-child, .management_platform .card ul.feature_list li:last-child {
  margin-bottom: 0;
}

.products .card ul.benefit_list li p, .products .card ul.how_benefits li p, .products .card ul.feature_list li p, .how_it_works .card ul.benefit_list li p, .how_it_works .card ul.how_benefits li p, .how_it_works .card ul.feature_list li p, .management_platform .card ul.benefit_list li p, .management_platform .card ul.how_benefits li p, .management_platform .card ul.feature_list li p {
  margin: 0;
}

@media (min-width: 32em) {
  .products .product_columns, .how_it_works .product_columns, .management_platform .product_columns {
    display: flex;
    justify-content: space-between;
  }
  .products .product_columns .column, .how_it_works .product_columns .column, .management_platform .product_columns .column {
    width: 45%;
    margin-bottom: 3.25em;
  }
  .products .card .content, .how_it_works .card .content, .management_platform .card .content {
    padding: 4em;
  }
}

@media (min-width: 58em) {
  .products .contain, .how_it_works .contain, .management_platform .contain {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .products .contain .content, .how_it_works .contain .content, .management_platform .contain .content {
    width: 50%;
  }
  .products .how_list li .numeral, .how_it_works .how_list li .numeral, .management_platform .how_list li .numeral {
    width: 4rem;
    min-width: 4rem;
  }
  .products .card, .how_it_works .card, .management_platform .card {
    min-width: 31%;
    max-width: 40%;
    margin: 0;
  }
  .products .card .content, .how_it_works .card .content, .management_platform .card .content {
    width: 100%;
    padding: 14%;
  }
}

@media (min-width: 58em) {
  .management_platform {
    background: #FFFFFF no-repeat center !important;
    background-size: cover !important;
  }
  .management_platform.dark {
    background: #151C34 no-repeat center !important;
    background-size: cover !important;
  }
  .management_platform.bg_1 {
    background-image: url(/resources/img/installers/management_platform_bg.jpg) !important;
  }
  .management_platform.bg_2 {
    background-image: url(/resources/img/installers/management_platform_bg_2.jpg) !important;
  }
  .management_platform.bg_3 {
    background-image: url(/resources/img/installers/management_platform_bg_3.jpg) !important;
  }
}

.card_right .content {
  max-width: 34.25em;
}

.card_right .content h2 {
  margin-bottom: 1em;
}

.card_right .content p strong {
  color: #151C34;
}

.card_right .card {
  max-width: 28em;
  margin: 3em 0 0;
}

.card_right .card ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.card_right .card ul li {
  position: relative;
  margin-bottom: 1.5em;
  padding: .125em 0 0 2.75em;
}

.card_right .card ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.75em;
  height: 1.75em;
  background: url(/resources/img/icons/check.min.svg) no-repeat center;
}

.card_right .card ul li:last-child {
  margin-bottom: 0;
}

.card_right .card ul li p {
  margin: 0;
}

@media (min-width: 32em) {
  .card_right .card .content {
    padding: 4em;
  }
}

@media (min-width: 58em) {
  .card_right .contain {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .card_right .contain .content {
    width: 50%;
  }
  .card_right .card {
    min-width: 31%;
    max-width: 40%;
    margin: 0;
  }
  .card_right .card .content {
    width: 100%;
    padding: 14%;
  }
}

.centered_cta {
  text-align: center;
  max-width: 45.9375em;
  margin: 5em auto;
}

.dark_blue .centered_cta h3, .dark .centered_cta h3 {
  color: #FFFFFF;
}

@media (min-width: 50em) {
  .centered_cta {
    margin: 10% auto;
  }
}

.testimonial {
  position: relative;
  margin: 10% 0 0;
  padding: 0 0 0 3.75em;
}

.testimonial:first-child {
  margin-top: 0;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-left: 0.25em solid rgba(56, 124, 223, 0.16);
}

.testimonial .quote {
  padding: 0;
}

.testimonial .quote p {
  position: relative;
  font-style: italic;
  font-size: 2em;
  font-weight: 200;
  color: #151C34;
  margin-bottom: 1.125em;
  max-width: 20.8em;
}

.testimonial .quote p:first-child::before {
  content: "“";
  position: absolute;
  top: 0;
  left: -.5em;
}

.testimonial .quote p:last-of-type::after {
  content: "”";
}

.testimonial .quote cite {
  display: block;
  font-style: normal;
  font-size: .875em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6D6D6D;
}

.testimonial.video .quote, .testimonial.image .quote {
  max-width: 29.25em;
  padding: 5% 0;
  margin-bottom: 2.5em;
}

.testimonial.video .quote p, .testimonial.image .quote p {
  font-size: 1.5em;
}

.dark_blue .testimonial .quote p {
  color: #FFFFFF;
}

.dark_blue .testimonial .quote cite {
  color: rgba(255, 255, 255, 0.6);
}

.testimonial figure {
  position: relative;
  display: block;
  width: 22em;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.testimonial figure img {
  display: block;
  border-radius: .5em;
}

.testimonial figure a {
  display: block;
}

.testimonial figure a .play_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.testimonial figure a .play_icon img {
  transition: transform .3s ease;
}

.testimonial figure a:hover .play_icon img {
  transform: scale(1.05);
}

@media (min-width: 45em) {
  .testimonial {
    display: flex;
    align-items: center;
  }
  .testimonial .quote p {
    font-size: 2.5em;
  }
  .testimonial.video .quote, .testimonial.image .quote {
    padding: 0;
    margin: 0 4.75% 0 0;
  }
}

.actions .arrow {
  margin-top: 2em;
}

@media (min-width: 30em) {
  .actions {
    display: flex;
    align-items: center;
  }
  .actions .arrow {
    margin: 0 0 0 1.5em;
  }
}

.resources_preview {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.resources_preview li {
  display: block;
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #EEEEEE;
}

.resources_preview li:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.resources_preview li a {
  display: block;
}

.resources_preview li a img {
  display: none;
  min-width: 7.5em;
  width: 7.5em;
  margin-bottom: 1.5em;
  border-radius: 50%;
}

.resources_preview li h5 {
  color: #151C34;
  margin: 0;
}

@media (min-width: 30em) {
  .resources_preview li a {
    display: flex;
    align-items: flex-start;
  }
  .resources_preview li a img {
    display: block;
    min-width: 23.25%;
    width: 23.25%;
    margin-right: 10%;
  }
}

.columns .column {
  max-width: 34em;
  margin-bottom: 3.5em;
}

.columns .column.content {
  max-width: 28em;
}

.columns .column:last-child {
  margin-bottom: 0;
}

@media (min-width: 60em) {
  .columns {
    display: flex;
    justify-content: space-between;
  }
  .columns .column {
    width: 47.5%;
    margin: 0;
  }
}

.impact .content {
  max-width: 34.25em;
}

.impact .content h2 {
  margin-bottom: .75em;
}

.impact .content p {
  color: rgba(255, 255, 255, 0.6);
}

.impact .content .btn {
  margin-top: 2em;
}

.impact .impact_stats {
  position: relative;
  max-width: 28em;
  margin: 3em 0 0;
}

.impact .impact_stats::before {
  content: "";
  position: absolute;
  top: -2em;
  left: 50%;
  width: 120%;
  height: 100%;
  background: url(/resources/img/usa.min.svg) no-repeat top center;
  background-size: contain;
  transform: translateX(-50%);
}

.impact .impact_stats .heading {
  text-align: left;
  padding: 0;
  margin: 0;
}

.impact .impact_stats .heading h6 {
  color: #FFFFFF;
  margin-bottom: 2.5em;
}

.impact .impact_stats .stats {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.impact .impact_stats .stats li {
  display: block;
  margin-bottom: 3em;
}

.impact .impact_stats .stats li h2 {
  color: #387CDF;
  margin: 0;
}

.impact .impact_stats .stats li p {
  color: #FFFFFF;
  margin: 0;
}

.impact .impact_stats .stats li.disclaimer {
  width: 100%;
}

.impact .impact_stats .stats li.disclaimer p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

@media (min-width: 25em) {
  .impact .impact_stats .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .impact .impact_stats .stats li {
    width: 45%;
  }
}

@media (min-width: 58em) {
  .impact .contain {
    padding-right: 50%;
  }
  .impact .impact_stats {
    width: 31%;
    position: absolute;
    top: 3em;
    right: 11.125%;
    margin: 0;
  }
  .impact .impact_stats::before {
    top: -4em;
    width: 140%;
    height: 100%;
  }
}

.partners .content {
  margin-bottom: 2.5em;
}

.partners .content p {
  max-width: 30em;
  margin: 0;
}

.partners .partners_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.partners .partners_list li {
  display: block;
  margin: 2em 10% 0 0;
}

.awards {
  text-align: center;
}

.awards strong {
  color: #151C34;
}

.awards .awards_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.awards .awards_list li {
  display: block;
  margin-bottom: 1.5em;
}

.awards .awards_list li:last-child {
  margin-bottom: 0;
}

.awards .awards_list li p {
  margin: 0;
}

.newsletter .content {
  margin-bottom: 2em;
}

.newsletter .content h5 {
  max-width: 17.6em;
  margin: 0;
}

.newsletter .newsletter_signup input[type=email] {
  background: none;
}

.newsletter .newsletter_signup .btn {
  width: 100%;
}

.newsletter .newsletter_signup p {
  margin: 2em 0 0;
}

@media (min-width: 35em) {
  .newsletter .signup_contain {
    display: flex;
    justify-content: space-between;
  }
  .newsletter .signup_contain .input_group {
    flex: 1;
    margin: 0;
  }
  .newsletter .signup_contain .btn {
    width: auto;
    margin-left: 1em;
  }
}

@media (min-width: 70em) {
  .newsletter .contain {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .newsletter .contain .content {
    margin: 0;
    padding-top: .35em;
  }
  .newsletter .contain .newsletter_signup {
    min-width: 58%;
    margin-left: 5%;
  }
  .newsletter .contain .newsletter_signup p {
    margin: 1.25em 0 0;
  }
}

.resources_grid_contain .sidebar h1 {
  margin-bottom: 1.25em;
}

.resources_grid_contain .sidebar_nav {
  position: -webkit-sticky;
  position: sticky;
  top: 1em;
}

.resources_grid_contain .main {
  padding-bottom: 3em;
}

.resources_grid_contain .main .no_results {
  position: relative;
  margin-top: 4.5em;
  padding-bottom: 16%;
}

.resources_grid_contain .main .no_results p {
  position: relative;
}

.resources_grid_contain .main .no_results::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 40em;
  background: url(/resources/img/no_results_bg.jpg) no-repeat top center;
  background-size: contain;
}

.resources_grid_contain .main .heading {
  margin-bottom: 1.5625em;
}

.resources_grid_contain .main .heading h5 {
  margin: 0;
}

@media (min-width: 50em) {
  .resources_grid_contain .main {
    padding-bottom: 6em;
  }
}

@media (min-width: 62em) {
  .resources_grid_contain {
    display: flex;
    justify-content: flex-end;
  }
  .resources_grid_contain .sidebar {
    max-width: 28%;
    margin-right: auto;
  }
  .resources_grid_contain .main {
    width: 65%;
  }
  .resources_grid_contain .main .no_results {
    margin-top: 0;
  }
}

.sidebar_nav {
  display: block;
  z-index: 101;
  width: 110%;
  margin: 0 -5% 2em;
  background: #FFFFFF;
}

.sidebar_nav .heading {
  cursor: pointer;
  position: relative;
  z-index: 11;
  display: flex;
  align-items: center;
  padding: 1em 1.5em;
  border-radius: .5em;
  border: 1px solid rgba(43, 47, 57, 0.1);
  transition: color .3s ease, border-radius .3s ease;
}

.sidebar_nav .heading img {
  margin-right: 1em;
}

.sidebar_nav .heading h5 {
  margin: 0;
  transition: color .3s ease;
}

.sidebar_nav .heading .drop_arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 1.5em;
  width: .75em;
  height: .75em;
  transform: translateY(-50%);
  transition: transform .3s ease;
}

.sidebar_nav .heading .drop_arrow svg path {
  transition: stroke .3s ease;
}

.sidebar_nav .links {
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  z-index: 10;
  top: 100%;
  left: 0;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  opacity: 0;
  transition: all .3s ease;
  border-radius: 0 0 .5em .5em;
  border: 1px solid rgba(43, 47, 57, 0.1);
  border-top: none;
}

.sidebar_nav .links li {
  display: block;
  padding: 0 1.5em;
  transform: translateY(-0.5em);
  transition: all .3s ease;
}

.sidebar_nav .links li a {
  display: block;
  padding: 1em 0;
  color: #387CDF;
}

.sidebar_nav .links li.active {
  background-color: rgba(56, 124, 223, 0.1);
}

.sidebar_nav .links li:hover {
  background-color: rgba(56, 124, 223, 0.2);
}

.sidebar_nav--on .sidebar_nav .heading {
  border-radius: .5em .5em 0 0;
}

.sidebar_nav--on .sidebar_nav .heading .drop_arrow {
  transform: translateY(-50%) rotate(-180deg);
}

.sidebar_nav--on .sidebar_nav .links {
  pointer-events: inherit;
  opacity: 1;
  transform: none;
}

.sidebar_nav--on .sidebar_nav .links li {
  transform: translateY(0);
}

@media (min-width: 30em) {
  .sidebar_nav {
    width: 100%;
    margin: 0 0 2em;
  }
}

@media (min-width: 62em) {
  .sidebar_nav {
    background: none;
    padding: 0 0 6em;
  }
  .sidebar_nav .heading {
    cursor: inherit;
    padding: 0;
    margin-bottom: .5em;
    border: none;
  }
  .sidebar_nav .heading .drop_arrow {
    display: none;
  }
  .sidebar_nav .links {
    pointer-events: inherit;
    position: static;
    top: auto;
    left: auto;
    width: auto;
    opacity: 1;
    transform: none;
    border-radius: 0;
    border: none;
  }
  .sidebar_nav .links li {
    display: block;
    padding: .75em 0;
    transform: none;
  }
  .sidebar_nav .links li a {
    display: block;
    padding: 0;
    font-size: .75em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6D6D6D;
    white-space: nowrap;
  }
  .sidebar_nav .links li a.active {
    color: #387CDF;
  }
  .sidebar_nav .links li a:hover {
    color: #151C34;
  }
  .sidebar_nav .links li.active {
    background: none;
  }
  .sidebar_nav .links li.active a {
    color: #387CDF;
  }
  .sidebar_nav .links li:hover {
    background-color: rgba(56, 124, 223, 0);
  }
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pagination .pagination_links {
  list-style-type: none;
  margin: 0 5%;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pagination .pagination_links li {
  display: block;
  padding: 0 2%;
  color: #888888;
}

.pagination .pagination_links li a {
  display: block;
  color: #888888;
  padding: .25em;
}

.pagination .pagination_links li a:hover {
  color: #2B2F39;
}

.pagination .pagination_links li.active a {
  color: #387CDF;
}

@media (min-width: 35em) {
  .pagination .pagination_links {
    margin: 0 10%;
  }
  .pagination .pagination_links li {
    display: block;
    padding: 0 .75em;
  }
}

.arrow_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: rgba(56, 124, 223, 0.08);
  transition: all .4s ease;
}

.arrow_btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.arrow_btn svg path {
  fill: #387CDF;
  transition: fill .4s ease;
}

.arrow_btn.disabled, .arrow_btn.slick-disabled {
  pointer-events: none;
  background: #EEEEEE;
}

.arrow_btn.disabled svg path, .arrow_btn.slick-disabled svg path {
  fill: #888888;
}

.arrow_btn:hover {
  background: #387CDF;
  box-shadow: 0 4px 8px 0 rgba(43, 47, 57, 0.16);
}

.arrow_btn:hover svg path {
  fill: #FFFFFF;
}

.dark_bg .arrow_btn {
  background: #FFFFFF;
}

.dark_bg .arrow_btn svg path {
  fill: #387CDF;
}

.dark_bg .arrow_btn.disabled, .dark_bg .arrow_btn.slick-disabled {
  pointer-events: none;
  background: rgba(255, 255, 255, 0.2);
}

.dark_bg .arrow_btn.disabled svg path, .dark_bg .arrow_btn.slick-disabled svg path {
  fill: rgba(255, 255, 255, 0.6);
}

.dark_bg .arrow_btn:hover {
  background: #387CDF;
  box-shadow: 0 4px 8px 0 rgba(43, 47, 57, 0.16);
}

.dark_bg .arrow_btn:hover svg path {
  fill: #FFFFFF;
}

@media (min-width: 35em) {
  .arrow_btn {
    width: 3.5em;
    height: 3.5em;
  }
}

.post_content {
  background: #FFFFFF;
  padding-bottom: 5em;
}

.post_content .content_contain {
  position: relative;
  padding-bottom: 5em;
}

.post_content .sidebar .author {
  display: flex;
  align-items: center;
  margin-bottom: 3.5em;
}

.post_content .sidebar .author img {
  display: block;
  width: 3.5em;
  border-radius: 50%;
  box-shadow: 0 4px 8px 0 rgba(43, 47, 57, 0.16);
  margin-right: 1.5em;
}

.post_content .sidebar .author p {
  color: #888888;
  margin: 0;
}

.post_content .sidebar .author p.author_name {
  font-size: .875em;
  margin-bottom: .25em;
}

.post_content .sidebar .share {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.post_content .sidebar .share h6 {
  color: #888888;
  margin: 0 2em 0 0;
}

.post_content .sidebar .share .share_links {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.post_content .sidebar .share .share_links li {
  margin-right: 1em;
}

.post_content .sidebar .share .share_links li img {
  display: block;
}

.post_content .sidebar .share .share_links li:last-child {
  margin-right: 0;
}

.post_content .main .intro_image {
  margin-bottom: 4.1875em;
}

.post_content .main .intro_image img {
  display: block;
  border-radius: .5em;
}

.post_content .main .content {
  position: relative;
}

.post_content .main .content .content_block {
  padding: 0;
  margin-bottom: 2.5em;
}

.post_content .main .content .content_block q.inline_quote, .post_content .main .content .content_block blockquote.inline_quote {
  margin-bottom: 2.5em;
}

.post_content .main .content .content_block q.inline_quote :last-child, .post_content .main .content .content_block blockquote.inline_quote :last-child {
  margin-bottom: 0;
}

.post_content .main .content .content_block figure.inline_image {
  margin-bottom: 2.5em;
}

.post_content .main .content .content_block :last-child {
  margin-bottom: 0;
}

.post_content .main .content .content_block:last-of-type {
  margin-bottom: 0;
}

.post_content .main .content .content_block:first-child > p:first-child:first-letter {
  float: left;
  font-size: 5.25em;
  font-weight: 600;
  color: #151C34;
  padding-right: .25em;
  line-height: .85em;
}

.post_content .main .author_bio {
  border: 1px solid #EEEEEE;
  border-radius: .5em;
  padding: 1.5em;
  margin-top: 3.5em;
}

.post_content .main .author_bio .avatar {
  display: none;
  margin-bottom: 1.5em;
}

.post_content .main .author_bio .avatar img {
  display: block;
  width: 3.5em;
  border-radius: 50%;
  box-shadow: 0 4px 8px 0 rgba(43, 47, 57, 0.16);
}

.post_content .main .author_bio .bio .author_name {
  margin-bottom: 1em;
}

.post_content .main .author_bio .bio p:last-child {
  margin-bottom: 0;
}

.post_content .main .author_bio.avatar .avatar {
  display: block;
}

.post_content .main .partners {
  width: 10em;
  color: #888888 !important;
}

.post_content .main .partners h6 {
  margin-bottom: .75em;
}

.post_content .main .partners .partner_logos {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.post_content .main .partners .partner_logos li {
  display: block;
  margin-bottom: 1em;
}

.post_content .main .partners .partner_logos li img {
  display: block;
}

.post_content .main .partners .partner_logos li:last-child {
  margin: 0;
}

@media (min-width: 35em) {
  .post_content .main .author_bio {
    padding: 2.5em;
  }
  .post_content .main .author_bio.avatar {
    display: flex;
  }
  .post_content .main .author_bio.avatar .avatar {
    min-width: 5.5em;
  }
  .post_content .main .author_bio.avatar .bio {
    padding-top: 1em;
  }
}

@media (min-width: 50em) {
  .post_content .main .content {
    position: relative;
  }
  .post_content .main .content .content_block {
    padding-right: 31%;
  }
  .post_content .main .content .content_block.full {
    padding-right: 0;
  }
  .post_content .main .partners {
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media (min-width: 65em) {
  .post_content .content_contain {
    display: flex;
    padding-bottom: 0;
  }
  .post_content .sidebar {
    width: 19%;
  }
  .post_content .sidebar .author {
    display: block;
    margin-bottom: 5em;
  }
  .post_content .sidebar .author img {
    margin-right: 0;
    margin-bottom: 1.5em;
  }
  .post_content .sidebar .share {
    position: -webkit-sticky;
    position: sticky;
    top: 2em;
    bottom: auto;
    left: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .post_content .sidebar .share h6 {
    transform: rotate(90deg);
  }
  .post_content .sidebar .share .share_links {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2em;
  }
  .post_content .sidebar .share .share_links li {
    margin-right: 0;
    margin-bottom: 1em;
  }
  .post_content .sidebar .share .share_links li:last-child {
    margin-bottom: 0;
  }
  .post_content .main {
    flex: 1;
  }
}

figure {
  margin: 0;
  padding: 0;
}

figure img {
  display: block;
  border-radius: .5em;
}

figure figcaption {
  margin-top: 1em;
}

figure figcaption p:last-child {
  margin-bottom: 0;
}

figure.video div {
  border-radius: .5em;
  overflow: hidden;
}

.dual_use {
  margin-bottom: 5.5em;
}

.dual_use .content {
  max-width: 21.25em;
  text-align: center;
  margin: 0 auto;
}

.dual_use .graphic {
  text-align: center;
  margin-bottom: 2.5em;
}

.dual_use .graphic .divider {
  margin: -1em 0;
  transform: rotate(90deg);
}

.dual_use .graphic p.x_small {
  color: rgba(255, 255, 255, 0.5);
  max-width: 25em;
  margin: 0 auto;
}

@media (min-width: 50em) {
  .dual_use .graphic {
    text-align: left;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .dual_use .graphic .divider {
    transform: none;
    margin: 0 1em;
    min-width: 1em;
  }
  .dual_use .graphic p.x_small {
    margin: 0;
  }
}

@media (min-width: 60em) {
  .dual_use {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .dual_use .content {
    text-align: left;
    margin-right: 10%;
  }
  .dual_use .graphic {
    flex: 1;
    text-align: center;
    display: block;
  }
  .dual_use .graphic .divider {
    transform: rotate(90deg);
    margin: -1em 0;
  }
  .dual_use .graphic p.x_small {
    margin: 0 auto;
  }
}

@media (min-width: 84em) {
  .dual_use .graphic {
    text-align: left;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .dual_use .graphic .divider {
    transform: none;
    margin: 0 1em;
    min-width: 1em;
  }
  .dual_use .graphic p.x_small {
    margin: 0;
  }
}

.dual_use_benefits {
  list-style-type: none;
  margin: 0 0 5.5em;
  padding: 0;
}

.dual_use_benefits li {
  position: relative;
  display: block;
  margin-bottom: 1.5em;
  padding-left: 3.25em;
}

.dual_use_benefits li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.75em;
  height: 1.75em;
  background: url(/resources/img/icons/check.min.svg) no-repeat center;
}

.dual_use_benefits li:last-child {
  margin: 0;
}

.dual_use_benefits li p {
  color: #FFFFFF;
  margin: 0;
}

@media (min-width: 35em) {
  .dual_use_benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .dual_use_benefits li {
    width: 45%;
  }
}

@media (min-width: 75em) {
  .dual_use_benefits li {
    width: 23%;
  }
}

.community_savings {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.community_savings li {
  display: block;
  margin-bottom: 2.5em;
}

.community_savings li:last-child {
  margin: 0;
}

.community_savings li h1 {
  color: #387CDF;
  margin-bottom: .25em;
}

@media (min-width: 30em) {
  .community_savings {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .community_savings li {
    width: 45%;
  }
}

@media (min-width: 75em) {
  .community_savings li {
    width: 23%;
    margin: 0;
  }
}

.community_savings_bg {
  margin: -5em 0;
}

@media (min-width: 50em) {
  .community_savings_bg {
    margin: -8em 0;
  }
}

@media (min-width: 70em) {
  .community_savings_bg {
    margin: -11em 0;
  }
}

.project_map_contain .map_container {
  position: relative;
  overflow: hidden;
  border: 1px solid #EEEEEE;
  border-radius: .5em;
  padding-top: 58%;
  margin-bottom: 1.5em;
}

.project_map_contain #map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.project_map_contain p.x_small {
  max-width: 47.916666667em;
  margin: 0;
}

.map_key {
  margin-top: 2.5em;
}

.map_key div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5em;
}

.map_key div:last-child {
  margin: 0;
}

.map_key div img {
  margin-right: .5em;
}

.map_key div h6 {
  margin: 0;
  color: #6D6D6D;
}

@media (min-width: 35em) {
  .map_key {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5em;
  }
  .map_key div {
    margin: 0 2em 0 0;
  }
  .map_key div:last-child {
    margin: 0;
  }
}

.careers_content {
  text-align: center;
}

.careers_content .careers_list {
  list-style-type: none;
  text-align: left;
  margin: 0 0 3.5em;
  padding: 0;
}

.careers_content .careers_list li {
  display: block;
  padding: 1em 0;
  border-bottom: 1px solid #D3D3D3;
}

.careers_content .careers_list li h5, .careers_content .careers_list li p {
  margin: 0;
}

.careers_content .careers_list li a {
  color: #387CDF;
  font-weight: 600;
  border-bottom: 1px solid rgba(56, 124, 223, 0);
}

.careers_content .careers_list li a:hover {
  border-bottom: 1px solid #387CDF;
}

@media (min-width: 45em) {
  .careers_content .careers_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .careers_content .careers_list li h5 {
    flex: 1;
  }
  .careers_content .careers_list li p {
    width: 35%;
    margin: 0 2%;
  }
}

.hero, .hero_animate {
  position: relative;
  padding-top: 6.5em;
}

.hero .bg, .hero_animate .bg {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100%;
}

.hero .bg img, .hero_animate .bg img {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100%;
  max-width: 200%;
}

.hero .hero_content, .hero_animate .hero_content {
  position: relative;
}

@media (min-width: 40em) {
  .hero .bg img, .hero_animate .bg img {
    max-width: 110%;
  }
}

.home .hero, .hero_animate {
  background: #151C34;
}

.home .hero .hero_content, .hero_animate .hero_content {
  max-width: 40em;
  padding: 18% 10% 40%;
  text-align: center;
  color: white;
}

.home .hero .hero_content p, .hero_animate .hero_content p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
}

.home .hero .hero_content p a, .hero_animate .hero_content p a {
  color: #FFFFFF;
  position: relative;
  display: inline-block;
  padding: 0 2px;
}

.home .hero .hero_content p a::before, .hero_animate .hero_content p a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  transition: height .3s ease;
}

.home .hero .hero_content p a:hover::before, .hero_animate .hero_content p a:hover::before {
  height: 100%;
}

@media (min-width: 40em) {
  .home .hero .hero_content, .hero_animate .hero_content {
    padding: 8% 2em 16%;
  }
}

@media (min-width: 55em) {
  .home .hero .hero_content p, .hero_animate .hero_content p {
    font-size: 1.125em;
  }
}

.hero_animate {
  background: #151C34;
  overflow: hidden;
}

.hero_animate .bg {
  opacity: 0;
  transform: translateX(-54%) scale(1.1);
  transition: transform .9s .2s ease, opacity 1.5s .2s ease;
}

.hero_animate .trees {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 2em) scale(1.1);
  min-width: 100%;
  min-height: 100%;
  opacity: 0;
  -webkit-filter: blur(1px);
  /* Safari */
  filter: blur(1px);
  transition: transform .8s .6s ease, opacity 1s .6s ease;
}

.hero_animate .trees img {
  display: block;
  position: absolute;
  bottom: 0;
  left: -30%;
  min-width: 100%;
  width: 160%;
  max-width: 160%;
}

.hero_animate .panels {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 3em) scale(1.2);
  min-width: 100%;
  min-height: 100%;
  opacity: 0;
  transition: transform 1.2s .3s ease, opacity .6s .3s ease;
}

.hero_animate .panels img {
  display: block;
  position: absolute;
  bottom: 0;
  left: -30%;
  min-width: 100%;
  width: 160%;
  max-width: 160%;
}

.hero_animate .hero_content {
  max-width: 40em;
  padding: 18% 10% 40%;
  text-align: center;
  color: white;
  opacity: 0;
  transform: translateY(2em);
  transition: opacity .9s .7s ease, transform 1.1s .7s ease;
}

.hero_animate .hero_content p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
}

.hero_animate .hero_content p a {
  color: #FFFFFF;
  position: relative;
  display: inline-block;
  padding: 0 2px;
}

.hero_animate .hero_content p a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  transition: height .3s ease;
}

.hero_animate .hero_content p a:hover::before {
  height: 100%;
}

.loaded .hero_animate .bg {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.loaded .hero_animate .panels, .loaded .hero_animate .trees {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.loaded .hero_animate .hero_content {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 40em) {
  .hero_animate .panels img, .hero_animate .trees img {
    left: -5%;
    width: 110%;
    max-width: 110%;
  }
  .hero_animate .hero_content {
    padding: 8% 2em 16%;
  }
}

@media (min-width: 55em) {
  .hero_animate .hero_content p {
    font-size: 1.125em;
  }
}

@media (min-width: 65em) {
  .hero_animate .panels img, .hero_animate .trees img {
    left: 0;
    width: 100%;
    max-width: 100%;
  }
}

.about .hero, .allblue .hero, .projects .hero {
  background: #151C34;
}

.about .hero .hero_content, .allblue .hero .hero_content, .projects .hero .hero_content {
  max-width: 58em;
  padding: 12% 10% 30%;
  text-align: center;
  color: white;
}

.about .hero .hero_content h1, .allblue .hero .hero_content h1, .projects .hero .hero_content h1 {
  max-width: 13.142857143em;
  margin: 0 auto;
}

.about .hero .hero_content p, .allblue .hero .hero_content p, .projects .hero .hero_content p {
  margin: 2em 0 1em;
  color: rgba(255, 255, 255, 0.7);
}

.about .hero .hero_content .btn, .allblue .hero .hero_content .btn, .projects .hero .hero_content .btn {
  margin-top: 1.5em;
}

@media (min-width: 40em) {
  .about .hero .hero_content, .allblue .hero .hero_content, .projects .hero .hero_content {
    padding: 8% 2em 12%;
  }
}

.projects .hero .hero_content {
  padding-bottom: 40%;
}

@media (min-width: 40em) {
  .projects .hero .hero_content {
    padding-bottom: 20%;
  }
}

.team .hero {
  background: #FFFFFF;
}

.team .hero .bg {
  bottom: 0;
  left: 0;
  right: 0;
  transform: none;
  min-width: 100%;
  min-height: 100%;
}

.team .hero .bg img {
  bottom: 0;
  left: 0;
  right: 0;
  transform: none;
  min-width: 100%;
  min-height: 0;
  max-width: 100%;
}

.team .hero .hero_content {
  max-width: 58em;
  padding: 12% 10% 35%;
  text-align: center;
}

.team .hero .hero_content h1 {
  max-width: 13.142857143em;
  margin: 0 auto;
}

@media (min-width: 40em) {
  .team .hero .hero_content {
    padding: 8% 2em 30%;
  }
}

.solution_hero {
  position: relative;
  padding-top: 5.875em;
  background: linear-gradient(to bottom, #F2F2F2 0%, #FFFFFF 100%);
}

.solution_hero .hero_content {
  width: 100%;
  padding-top: 10%;
  padding-bottom: 10%;
}

.solution_hero .hero_content div, .solution_hero .hero_content img {
  position: relative;
}

.solution_hero .hero_content .bg_element {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 60%;
}

.solution_hero .hero_content .bg_element img {
  display: block;
}

.solution_hero .hero_content .content {
  max-width: 34em;
}

.solution_hero .hero_content .content p:last-child {
  margin-bottom: 0;
}

.solution_hero .hero_content .content .btn {
  margin: 0 0 3.5em;
}

.solution_hero .hero_content .content .btn.no_bottom {
  margin-bottom: 0;
}

.solution_hero .hero_content .hero_img {
  display: block;
  margin: 3.5em 0 0;
  border-radius: .5em;
  width: 28em;
}

.solution_hero .hero_content h1 {
  max-width: 9.714285714em;
}

@media (min-width: 45em) {
  .solution_hero .hero_content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .solution_hero .hero_content .hero_img {
    width: 40%;
    max-width: 28em;
    margin: 0 0 0 10%;
  }
}

@media (min-width: 62em) {
  .solution_hero {
    padding-top: 6.6875em;
  }
  .solution_hero .hero_content {
    padding-top: 7%;
    padding-bottom: 8%;
  }
}

@media (min-width: 75em) {
  .solution_hero .hero_content {
    align-items: center;
    padding-top: 4%;
    padding-bottom: 5%;
  }
}

.resources_hero {
  position: relative;
  padding-top: 5.875em;
  padding-bottom: 3.5em;
  background: linear-gradient(to bottom, #F2F2F2 0%, #FFFFFF 100%);
}

.resources_hero .hero_content {
  width: 100%;
  padding-top: 3.5em;
}

.resources_hero .hero_content h1:last-child, .resources_hero .hero_content h2:last-child {
  margin: 0;
}

.resources_hero .hero_content h2 {
  max-width: 20.8em;
}

.resources_hero .hero_content p:last-child {
  margin: 0;
}

.resources_hero .hero_content .event_details {
  margin-bottom: 1.5em;
}

.resources_hero .hero_content .event_details .event_info {
  color: #151C34;
  margin: 0;
}

.resources_hero .hero_content .event_details .event_info span {
  color: #6D6D6D;
}

@media (min-width: 35em) {
  .resources_hero .hero_content .event_details {
    display: flex;
    align-items: center;
  }
  .resources_hero .hero_content .event_details .tag {
    margin: 0;
  }
  .resources_hero .hero_content .event_details .event_info {
    margin-left: 1.5em;
  }
}

@media (min-width: 55em) {
  .resources_hero {
    padding-bottom: 7%;
  }
  .resources_hero .hero_content {
    padding-top: 7%;
  }
}

@media (min-width: 62em) {
  .resources_hero {
    padding-top: 6.6875em;
  }
}

.featured_resources {
  overflow: hidden;
  padding-bottom: 3.5em;
  background: #FFFFFF;
}

@media (min-width: 55em) {
  .featured_resources {
    padding-bottom: 7%;
  }
}

.contact_hero {
  position: relative;
  padding-top: 5.875em;
  padding-bottom: 3.5em;
  background: #FFFFFF url(/resources/img/contact_bg.jpg) no-repeat top center;
  background-size: 150%;
}

.contact_hero .hero_content {
  width: 100%;
  padding-top: 3.5em;
  text-align: center;
}

.contact_hero .hero_content p {
  max-width: 35.5em;
  margin: 0 auto 1.5em;
}

.contact_hero .hero_content p:last-child {
  margin-bottom: 0;
}

.contact_hero .hero_content p a {
  color: #387CDF;
  position: relative;
  display: inline-block;
  padding: 0 2px;
}

.contact_hero .hero_content p a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(56, 124, 223, 0.16);
  transition: height .3s ease;
}

.contact_hero .hero_content p a:hover::before {
  height: 100%;
}

@media (min-width: 55em) {
  .contact_hero {
    padding-bottom: 7%;
    background-size: contain;
  }
  .contact_hero .hero_content {
    padding-top: 7%;
  }
}

@media (min-width: 62em) {
  .contact_hero {
    padding-top: 6.6875em;
  }
}

.sub_nav_contain {
  display: block;
  position: relative;
  z-index: 102;
  max-width: 90em;
  margin: 0 auto;
  transition: background-color .3s ease;
}

.sub_nav_contain .heading {
  cursor: pointer;
  position: relative;
  z-index: 11;
  display: flex;
  align-items: center;
  padding: 1.5em 11.125%;
  border-bottom: 1px solid rgba(43, 47, 57, 0.1);
  transition: color .3s ease, border-bottom-color .3s ease;
}

.sub_nav_contain .heading img {
  margin-right: 1em;
}

.sub_nav_contain .heading .icon {
  margin-right: 1em;
  transition: opacity .3s ease;
}

.sub_nav_contain .heading .icon svg path {
  transition: stroke .3s ease;
}

.sub_nav_contain .heading .icon.white svg path {
  stroke: #FFFFFF;
}

.sub_nav_contain .heading .icon.gray {
  opacity: .5;
}

.sub_nav_contain .heading .icon.gray svg path {
  stroke: #FFFFFF;
}

.sub_nav_contain .heading h5 {
  margin: 0;
  transition: color .3s ease;
}

.sub_nav_contain .heading .drop_arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 11.125%;
  width: .75em;
  height: .75em;
  transform: translateY(-50%);
  transition: transform .3s ease;
}

.sub_nav_contain .heading .drop_arrow svg path {
  transition: stroke .3s ease;
}

.sub_nav_contain .links {
  pointer-events: none;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  opacity: 0;
  transition: all .3s ease;
  border-bottom: 1px solid rgba(43, 47, 57, 0.1);
}

.sub_nav_contain .links li {
  display: block;
  padding: 0 11.125%;
  transform: translateY(-0.5em);
  transition: all .3s ease;
}

.sub_nav_contain .links li a {
  display: block;
  padding: 1em 0;
  color: #387CDF;
}

.sub_nav_contain .links li.active {
  background-color: rgba(56, 124, 223, 0.1);
}

.sub_nav_contain .links li:hover {
  background-color: rgba(56, 124, 223, 0.2);
}

.sub_nav--on .sub_nav_contain {
  background: #FFFFFF;
}

.sub_nav--on .sub_nav_contain .heading .icon.white svg path {
  stroke: #387CDF;
}

.sub_nav--on .sub_nav_contain .heading .icon.gray {
  opacity: 1;
}

.sub_nav--on .sub_nav_contain .heading .icon.gray svg path {
  stroke: #387CDF;
}

.sub_nav--on .sub_nav_contain .heading .drop_arrow {
  transform: translateY(-50%) rotate(-180deg);
}

.sub_nav--on .sub_nav_contain .links {
  pointer-events: inherit;
  opacity: 1;
  transform: none;
}

.sub_nav--on .sub_nav_contain .links li {
  transform: translateY(0);
}

.dark_header .sub_nav_contain .heading {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dark_header .sub_nav_contain .heading h5 {
  color: #FFFFFF;
}

.dark_header .sub_nav_contain .heading .drop_arrow svg path {
  stroke: #FFFFFF;
}

.sub_nav--on .dark_header .sub_nav_contain .heading {
  border-bottom-color: rgba(43, 47, 57, 0.1);
}

.sub_nav--on .dark_header .sub_nav_contain .heading h5 {
  color: #151C34;
}

.sub_nav--on .dark_header .sub_nav_contain .heading .drop_arrow svg path {
  stroke: #151C34;
}

.sub_nav_contain.no_drop {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 11.125% 0;
  background: none;
}

.sub_nav_contain.no_drop .underline {
  width: 100%;
  padding-top: 1.5em;
  border-bottom: 1px solid rgba(43, 47, 57, 0.2);
}

.sub_nav_contain.no_drop .heading {
  cursor: inherit;
  padding: 0;
  border: none;
}

.sub_nav_contain.no_drop .heading .drop_arrow {
  display: none;
}

.sub_nav_contain.no_drop .links {
  flex: 1;
  pointer-events: inherit;
  position: static;
  top: auto;
  left: auto;
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: none;
  opacity: 1;
  transform: none;
  border-bottom: none;
}

.sub_nav_contain.no_drop .links li {
  display: block;
  padding: 0 0 0 5%;
  transform: none;
  transition: background-color .3s ease;
}

.sub_nav_contain.no_drop .links li a {
  padding: 0;
  font-size: .75em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6D6D6D;
  white-space: nowrap;
}

.sub_nav_contain.no_drop .links li a .full {
  display: none;
}

.sub_nav_contain.no_drop .links li a.active {
  color: #387CDF;
}

.sub_nav_contain.no_drop .links li a:hover {
  color: #151C34;
}

.sub_nav_contain.no_drop .links li.active {
  background: none;
}

.sub_nav_contain.no_drop .links li.active a {
  color: #387CDF;
}

.sub_nav_contain.no_drop .links li:hover {
  background-color: rgba(56, 124, 223, 0);
}

@media (min-width: 30em) {
  .sub_nav_contain.no_drop .links li a .mobile {
    display: none;
  }
  .sub_nav_contain.no_drop .links li a .full {
    display: block;
  }
}

@media (min-width: 62em) {
  .sub_nav_contain {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.5em 11.125% 0;
    background: none;
  }
  .sub_nav_contain .underline {
    width: 100%;
    padding-top: 1.5em;
    border-bottom: 1px solid rgba(43, 47, 57, 0.2);
  }
  .sub_nav_contain .heading {
    cursor: inherit;
    padding: 0;
    border: none;
    white-space: nowrap;
    width: auto;
  }
  .sub_nav_contain .heading .icon.white svg path {
    stroke: #FFFFFF !important;
  }
  .sub_nav_contain .heading .icon.gray {
    opacity: .5 !important;
  }
  .sub_nav_contain .heading .icon.gray svg path {
    stroke: #FFFFFF !important;
  }
  .sub_nav_contain .heading .drop_arrow {
    display: none;
  }
  .sub_nav_contain .links {
    pointer-events: inherit;
    position: inherit;
    top: auto;
    left: auto;
    display: flex;
    width: auto;
    margin-left: auto;
    align-items: center;
    background: none;
    opacity: 1;
    transform: none;
    border-bottom: none;
  }
  .sub_nav_contain .links li {
    display: block;
    width: auto;
    padding: 0 0 0 2.5em;
    transform: none;
    transition: background-color .3s ease;
  }
  .sub_nav_contain .links li a {
    display: block;
    width: auto;
    padding: 0;
    font-size: .75em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6D6D6D;
    white-space: nowrap;
  }
  .sub_nav_contain .links li a.active {
    color: #387CDF;
  }
  .sub_nav_contain .links li a:hover {
    color: #151C34;
  }
  .sub_nav_contain .links li.active {
    background: none;
  }
  .sub_nav_contain .links li.active a {
    color: #387CDF;
  }
  .sub_nav_contain .links li:hover {
    background-color: rgba(56, 124, 223, 0);
  }
  .sub_nav--on .sub_nav_contain {
    background: none;
  }
  .dark_header .sub_nav_contain .underline {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .dark_header .sub_nav_contain .heading {
    border: none;
  }
  .dark_header .sub_nav_contain .heading h5 {
    color: #FFFFFF;
  }
  .dark_header .sub_nav_contain .heading .drop_arrow {
    display: none;
  }
  .dark_header .sub_nav_contain .links li a {
    color: rgba(255, 255, 255, 0.5);
  }
  .dark_header .sub_nav_contain .links li a:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .dark_header .sub_nav_contain .links li.active a {
    color: #FFFFFF;
  }
  .dark_header .sub_nav_contain .links li:hover {
    background-color: rgba(56, 124, 223, 0);
  }
  .sub_nav--on .dark_header .sub_nav_contain {
    background: none;
  }
  .sub_nav--on .dark_header .sub_nav_contain .heading {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }
  .sub_nav--on .dark_header .sub_nav_contain .heading h5 {
    color: #FFFFFF;
  }
}

.card_grid {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.card_grid li {
  display: block;
  margin-bottom: 2em;
}

@media (min-width: 30em) {
  .card_grid.four_up {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.5em;
  }
  .card_grid.four_up li {
    width: 47%;
    margin-bottom: 1em;
  }
}

@media (min-width: 43.75em) {
  .card_grid.two_up {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3.5em;
  }
  .card_grid.two_up li {
    margin: 1.5em 0 0;
    width: 49%;
  }
  .card_grid.two_up li:first-child, .card_grid.two_up li:nth-child(2) {
    margin-top: 0;
  }
  .card_grid.two_up:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 56em) {
  .card_grid.three_up {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3.5em;
  }
  .card_grid.three_up li {
    margin: 1.5emem 0 0;
    width: 32%;
  }
  .card_grid.three_up li:first-child, .card_grid.three_up li:nth-child(2), .card_grid.three_up li:nth-child(3) {
    margin-top: 0;
  }
  .card_grid.three_up:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 72em) {
  .card_grid.four_up {
    margin-bottom: 3.5em;
  }
  .card_grid.four_up li {
    margin: 0;
    width: 23.5%;
  }
}

.card {
  overflow: hidden;
  border: 1px solid rgba(43, 47, 57, 0.1);
  border-radius: .5em;
  max-width: 34em;
  width: 110%;
  margin: 0 -5%;
  background: #FFFFFF;
}

.card.full {
  width: 100%;
  max-width: none;
  margin: 0;
}

.card .img_contain {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: .5em .5em 0 0;
}

.card .img_contain img {
  position: relative;
  z-index: 1;
  display: block;
  transition: transform .6s ease;
}

.card .content {
  padding: 2em;
}

.card .content .card_heading {
  display: flex;
  align-items: center;
  margin-bottom: 1.5em;
}

.card .content .card_heading img {
  margin-right: 1em;
}

.card .content .card_heading h4 {
  margin: 0;
}

.card .content p a {
  position: relative;
  display: inline-block;
  color: #387CDF;
}

.card .content p a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #DFEAFA;
}

.card .content p:last-child {
  margin: 0;
}

.card .content a.arrow {
  display: flex;
}

.card a {
  display: block;
  height: 100%;
}

.card a h4 {
  color: #151C34;
}

.card a:hover .img_contain img {
  transform: scale(1.05);
  transition: transform 3s ease;
}

.card.with_btn {
  position: relative;
}

.card.with_btn .content {
  padding-bottom: 6em;
}

.card.with_btn .btn {
  position: absolute;
  bottom: 2em;
  left: 2em;
  right: 2em;
  height: auto;
  text-align: center;
}

.card.image_card {
  position: relative;
  border: none;
}

.card.image_card::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: .5em;
  background: linear-gradient(to bottom, rgba(21, 28, 52, 0) 0%, #151c34 100%);
}

.card.image_card .img_contain {
  border-radius: .5em;
}

.card.image_card .content {
  position: absolute;
  text-align: center;
  z-index: 4;
  padding-bottom: 3em;
  bottom: 0;
  left: 0;
  right: 0;
}

.card.image_card .content h3 {
  color: #FFFFFF;
  margin-bottom: .65em;
}

.card.image_card .content .arrow {
  justify-content: center;
}

.card.image_card a:hover .img_contain img {
  transform: scale(1.05);
  transition: transform 3s ease;
}

.card.gated_content {
  position: relative;
  border: none;
  background: #FFFFFF no-repeat center;
  background-size: cover;
}

.card.gated_content::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: .5em;
  background: linear-gradient(to bottom, rgba(238, 238, 238, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}

.card.gated_content .content {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  z-index: 4;
  height: 100%;
}

.card.gated_content .content h3 {
  color: #2B2F39;
  margin-bottom: 2.5em;
}

.card.gated_content .content .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.card.gated_content a {
  height: auto;
}

.card.gated_content.dark {
  background: #151C34 no-repeat center;
  background-size: cover;
}

.card.gated_content.dark::before {
  background: linear-gradient(to bottom, rgba(21, 28, 52, 0.8) 0%, rgba(21, 28, 52, 0) 100%);
}

.card.gated_content.dark .content h3 {
  color: #FFFFFF;
}

@media (min-width: 30em) {
  .card {
    width: 100%;
    margin: 0 auto;
  }
}

@media (min-width: 50em) {
  .card.full a {
    display: flex;
  }
  .card.full a .img_contain {
    width: 50%;
    border-radius: .5em 0 0 .5em;
  }
  .card.full a .img_contain img {
    position: absolute;
    top: 0;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    max-height: 100%;
    max-width: none;
    transform: translateX(-50%);
  }
  .card.full a .content {
    flex: 1;
  }
  .card.full a:hover .img_contain img {
    transform: translateX(-50%) scale(1.05);
  }
}

@media (min-width: 68em) {
  .card.full a .img_contain {
    width: 67%;
  }
}

.log_in_content {
  position: relative;
  padding-top: 5.875em;
  padding-bottom: 3.5em;
  background: linear-gradient(to bottom, #F2F2F2 0%, #FFFFFF 100%);
}

.log_in_content .page_title {
  width: 100%;
  padding-top: 1.5em;
  text-align: center;
  margin-bottom: 1.5em;
}

.log_in_content .log_in_cards .card {
  margin-bottom: 2em;
}

.log_in_content .log_in_cards .card:last-child {
  margin-bottom: 0;
}

.log_in_content .log_in_cards .heading {
  text-align: center;
  padding: 0 0 1.5em;
  border-bottom: 1px solid #EEEEEE;
}

.log_in_content .log_in_cards .heading h6 {
  margin: 0;
}

.log_in_content .log_in_cards .links {
  list-style-type: none;
  margin: 2em 0 0;
  padding: 0;
}

.log_in_content .log_in_cards .links li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5em;
}

.log_in_content .log_in_cards .links li .icon {
  display: none;
  text-align: right;
  min-width: 2.125em;
  max-width: 2.125em;
  margin-right: 1.5em;
}

.log_in_content .log_in_cards .links li .arrow {
  color: #151C34;
  margin-bottom: .75rem;
}

.log_in_content .log_in_cards .links li .arrow .arrow_icon {
  display: none;
}

.log_in_content .log_in_cards .links li:first-child .arrow {
  font-size: 1.25em;
}

.log_in_content .log_in_cards .links li:last-child {
  margin-bottom: 0;
}

@media (min-width: 30em) {
  .log_in_content .log_in_cards .links li .icon {
    display: block;
  }
}

@media (min-width: 36em) {
  .log_in_content .log_in_cards .links li .arrow .arrow_icon {
    display: block;
  }
}

@media (min-width: 55em) {
  .log_in_content {
    padding-bottom: 7%;
  }
  .log_in_content .page_title {
    padding-top: 7%;
  }
}

@media (min-width: 62em) {
  .log_in_content {
    padding-top: 6.6875em;
  }
}

@media (min-width: 68em) {
  .log_in_content .log_in_cards {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .log_in_content .log_in_cards .card {
    width: 48%;
  }
}

.four04_content {
  position: relative;
  padding-top: 5.875em;
  padding-bottom: 3.5em;
  background: linear-gradient(to bottom, #F2F2F2 0%, #FFFFFF 100%);
}

.four04_content .page_content {
  width: 100%;
  padding-top: 3.5em;
  text-align: center;
  margin-bottom: 3.5em;
}

.four04_content .page_content p {
  margin: 0 auto;
  max-width: 29.944444444em;
}

.four04_content .page_content p a {
  color: #387CDF;
  position: relative;
  display: inline-block;
  padding: 0 2px;
}

.four04_content .page_content p a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(56, 124, 223, 0.16);
  transition: height .3s ease;
}

.four04_content .page_content p a:hover::before {
  height: 100%;
}

@media (min-width: 55em) {
  .four04_content {
    padding-bottom: 7%;
  }
  .four04_content .page_content {
    padding-top: 10%;
  }
}

@media (min-width: 62em) {
  .four04_content {
    padding-top: 6.6875em;
  }
}

.privacy_header {
  position: relative;
  padding-top: 5.875em;
  padding-bottom: 3.5em;
  background: #FFFFFF;
}

.privacy_header .page_intro {
  width: 100%;
  padding-top: 1.5em;
  text-align: center;
  margin-bottom: 1.5em;
}

.privacy_header .page_intro p:last-child {
  margin: 0;
}

@media (min-width: 55em) {
  .privacy_header {
    padding-bottom: 7%;
  }
  .privacy_header .page_intro {
    padding-top: 7%;
  }
}

@media (min-width: 62em) {
  .privacy_header {
    padding-top: 6.6875em;
  }
}

.privacy_content {
  position: relative;
  padding: 5.5em 0;
  background: linear-gradient(to bottom, #F2F2F2 0%, #FFFFFF 100%);
}

.privacy_content .privacy_nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.privacy_content .privacy_nav ul li {
  display: block;
  font-size: 1.125em;
  padding: .25em 0;
}

.privacy_content .privacy_nav ul li a {
  color: #387CDF;
}

.privacy_content .privacy_block {
  margin: 3.5em 0 0;
  padding: 3.5em 0 0;
  border-top: 1px solid #EEEEEE;
}

.gm-style {
  font: inherit !important;
}

.gm-style .gm-style-iw {
  font-weight: 400;
}

.info_content {
  padding: 1em;
  max-width: 300px;
}

.info_content h6 {
  font-size: 12px;
  margin-bottom: 1em;
  color: #44BAAB;
}

.info_content h6.cs {
  color: #387CDF;
}

.info_content .details ul {
  list-style-type: none;
  margin: 0 0 1.5em;
  padding: 0;
}

.info_content .details ul li {
  display: flex;
  justify-content: space-between;
  font-size: 1.125em;
  margin-bottom: .8125em;
  line-height: 1em;
  border-bottom: 1px dotted #888888;
}

.info_content .details ul li span {
  background: #FFFFFF;
  margin-bottom: -.125em;
  color: #888888;
  padding: 0 .25em 0 0;
}

.info_content .details ul li span:last-child {
  color: #151C34;
  margin-left: 10%;
  padding: 0 0 0 .25em;
}

.info_content .details ul li:last-child {
  margin: 0;
}

.info_content .details p {
  margin-bottom: 0;
  color: #151C34;
}

.info_content .details p span {
  display: block;
  color: #888888;
}

.form_contain {
  margin-top: 2.5em;
}

.form_contain .contact_form {
  text-align: left;
  border: 1px solid #EEEEEE;
}

.form_contain .success_message {
  border: 1px solid #EEEEEE;
}

.contact_pre_footer {
  background: #151C34;
}

.contact_pre_footer .bg {
  margin-bottom: -10%;
}

.contact_content {
  padding: 4.5em 0;
}

.contact_content .heading {
  margin-bottom: 3.5em;
}

.contact_content .heading h5 {
  margin: 0;
  color: #FFFFFF;
}

@media (min-width: 30em) {
  .contact_content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .contact_content .heading {
    width: 40%;
  }
  .contact_content .location_columns {
    flex: 1;
  }
}

@media (min-width: 60em) {
  .contact_content .heading {
    width: 25%;
  }
}

.location_columns .location {
  margin-bottom: 3.5em;
}

.location_columns .location:last-child {
  margin-bottom: 0;
}

.location_columns .location h3 {
  color: #FFFFFF;
  margin-bottom: .5em;
}

.location_columns .location h3 span {
  font-size: .75rem;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.location_columns .location address {
  font-style: normal;
}

.location_columns .location address p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.location_columns .location .number {
  margin: .5em 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.location_columns .phone_numbers {
  width: 100%;
  margin-top: 5em;
}

.location_columns .phone_numbers .number {
  display: flex;
  align-items: center;
  margin-bottom: 1.5em;
}

.location_columns .phone_numbers .number:last-child {
  margin: 0;
}

.location_columns .phone_numbers .number img {
  display: block;
  margin-right: 1em;
}

.location_columns .phone_numbers .number h5 {
  color: #FFFFFF;
  margin: 0;
}

.location_columns .phone_numbers .number h5 span {
  color: #387CDF;
}

@media (min-width: 60em) {
  .location_columns {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .location_columns .location {
    width: 50%;
    padding-right: 1.5em;
  }
}

.team_grid_contain {
  width: 106%;
  margin-left: -3%;
}

.team_grid_contain .avatar {
  display: block;
  border-radius: 50%;
  box-shadow: 0 8px 8px 0 rgba(21, 28, 52, 0.16);
}

.team_grid_contain .team_grid {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.team_grid_contain .team_grid li {
  position: relative;
  display: block;
  margin: 0 0 2em;
  padding: 0 3%;
  width: 33.333%;
}

.team_grid_contain .team_grid li .avatar {
  width: 4em;
  margin: 0 auto;
  filter: grayscale(100%);
  transition: transform .3s ease, filter .3s ease;
}

.team_grid_contain .team_grid li .info_drop {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  width: 16.625em;
  opacity: 0;
  top: 93%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  padding: 2em;
  text-align: center;
  border: 1px solid #EEEEEE;
  border-radius: .5em;
  box-shadow: 0 1.5em 2.5em 0 rgba(43, 47, 57, 0.24);
  transition: opacity .3s ease;
}

.team_grid_contain .team_grid li .info_drop .drop_arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(1.25em);
  transition: transform .3s ease;
}

.team_grid_contain .team_grid li .info_drop .drop_arrow::before, .team_grid_contain .team_grid li .info_drop .drop_arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2em;
  height: 2em;
  border-radius: .375em;
  border: 1px solid #EEEEEE;
  background: #FFFFFF;
  transform: rotate(45deg) translateX(-75%);
}

.team_grid_contain .team_grid li .info_drop .drop_arrow::after {
  transform: none;
  background: #FFFFFF;
  border-radius: 0;
  border: none;
  width: 3em;
  transform: translate(-50%, -0.75em);
}

.team_grid_contain .team_grid li .info_drop .content {
  transform: translateY(-0.75em);
  transition: transform .3s ease;
}

.team_grid_contain .team_grid li .info_drop h5 {
  margin-bottom: .5em;
}

.team_grid_contain .team_grid li .info_drop p {
  margin-bottom: 1em;
}

.team_grid_contain .team_grid li .info_drop a {
  display: inline-block;
  color: #387CDF;
  font-size: .875em;
  font-weight: 600;
  border-bottom: 1px solid #FFFFFF;
}

.team_grid_contain .team_grid li .info_drop a:hover {
  border-bottom: 1px solid #387CDF;
}

.team_grid_contain .team_grid li:nth-child(3n+1) .info_drop {
  transform: translateX(-12%);
}

.team_grid_contain .team_grid li:nth-child(3n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(3n+1) .info_drop .drop_arrow::after {
  left: 12%;
}

.team_grid_contain .team_grid li:nth-child(3n+1):last-child .info_drop, .team_grid_contain .team_grid li:nth-child(3n+1):nth-last-child(2) .info_drop {
  transform: translateX(-50%);
}

.team_grid_contain .team_grid li:nth-child(3n+1):last-child .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(3n+1):last-child .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(3n+1):nth-last-child(2) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(3n+1):nth-last-child(2) .info_drop .drop_arrow::after {
  left: 50%;
}

.team_grid_contain .team_grid li:nth-child(3n) .info_drop {
  transform: translateX(-88%);
}

.team_grid_contain .team_grid li:nth-child(3n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(3n) .info_drop .drop_arrow::after {
  left: 89%;
}

.team_grid_contain .team_grid li:hover .avatar {
  filter: none;
  transform: translateY(-0.5em);
}

.team_grid_contain .team_grid li:hover .info_drop {
  opacity: 1;
  pointer-events: inherit;
}

.team_grid_contain .team_grid li:hover .info_drop .drop_arrow {
  transform: translateY(0.75em);
}

.team_grid_contain .team_grid li:hover .info_drop .content {
  transform: translateY(0);
  transition: transform .5s ease;
}

.team_grid_contain .team_grid.large li {
  width: 50%;
}

.team_grid_contain .team_grid.large li .avatar {
  width: 10em;
}

.team_grid_contain .team_grid.large li:nth-child(3n+1) .info_drop, .team_grid_contain .team_grid.large li:nth-child(3n) .info_drop {
  transform: translateX(-50%);
}

.team_grid_contain .team_grid.large li:nth-child(3n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(3n+1) .info_drop .drop_arrow::after, .team_grid_contain .team_grid.large li:nth-child(3n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(3n) .info_drop .drop_arrow::after {
  left: 50%;
}

.team_grid_contain .team_grid.large li:nth-child(2n+1) .info_drop {
  transform: translateX(-22%);
}

.team_grid_contain .team_grid.large li:nth-child(2n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(2n+1) .info_drop .drop_arrow::after {
  left: 22%;
}

.team_grid_contain .team_grid.large li:nth-child(2n+1):last-child .info_drop {
  transform: translateX(-50%);
}

.team_grid_contain .team_grid.large li:nth-child(2n+1):last-child .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(2n+1):last-child .info_drop .drop_arrow::after {
  left: 50%;
}

.team_grid_contain .team_grid.large li:nth-child(2n) .info_drop {
  transform: translateX(-76%);
}

.team_grid_contain .team_grid.large li:nth-child(2n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(2n) .info_drop .drop_arrow::after {
  left: 77%;
}

@media (min-width: 25em) {
  .team_grid_contain {
    width: 104%;
    margin-left: -2%;
  }
  .team_grid_contain .team_grid li {
    padding: 0 2%;
    width: 25%;
  }
  .team_grid_contain .team_grid li:nth-child(3n+1) .info_drop, .team_grid_contain .team_grid li:nth-child(3n) .info_drop {
    transform: translateX(-50%);
  }
  .team_grid_contain .team_grid li:nth-child(3n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(3n+1) .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(3n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(3n) .info_drop .drop_arrow::after {
    left: 50%;
  }
  .team_grid_contain .team_grid li:nth-child(4n+1) .info_drop {
    transform: translateX(-12%);
  }
  .team_grid_contain .team_grid li:nth-child(4n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(4n+1) .info_drop .drop_arrow::after {
    left: 12%;
  }
  .team_grid_contain .team_grid li:nth-child(4n+1):last-child .info_drop, .team_grid_contain .team_grid li:nth-child(4n+1):nth-last-child(2) .info_drop, .team_grid_contain .team_grid li:nth-child(4n+1):nth-last-child(3) .info_drop {
    transform: translateX(-50%);
  }
  .team_grid_contain .team_grid li:nth-child(4n+1):last-child .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(4n+1):last-child .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(4n+1):nth-last-child(2) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(4n+1):nth-last-child(2) .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(4n+1):nth-last-child(3) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(4n+1):nth-last-child(3) .info_drop .drop_arrow::after {
    left: 50%;
  }
  .team_grid_contain .team_grid li:nth-child(4n) .info_drop {
    transform: translateX(-88%);
  }
  .team_grid_contain .team_grid li:nth-child(4n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(4n) .info_drop .drop_arrow::after {
    left: 89%;
  }
  .team_grid_contain .team_grid.large li {
    width: 33.333%;
  }
  .team_grid_contain .team_grid.large li:nth-child(2n+1) .info_drop, .team_grid_contain .team_grid.large li:nth-child(2n) .info_drop {
    transform: translateX(-50%);
  }
  .team_grid_contain .team_grid.large li:nth-child(2n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(2n+1) .info_drop .drop_arrow::after, .team_grid_contain .team_grid.large li:nth-child(2n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(2n) .info_drop .drop_arrow::after {
    left: 50%;
  }
  .team_grid_contain .team_grid.large li:nth-child(3n+1) .info_drop {
    transform: translateX(-22%);
  }
  .team_grid_contain .team_grid.large li:nth-child(3n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(3n+1) .info_drop .drop_arrow::after {
    left: 22%;
  }
  .team_grid_contain .team_grid.large li:nth-child(3n+1):last-child .info_drop, .team_grid_contain .team_grid.large li:nth-child(3n+1):nth-last-child(2) .info_drop {
    transform: translateX(-50%);
  }
  .team_grid_contain .team_grid.large li:nth-child(3n+1):last-child .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(3n+1):last-child .info_drop .drop_arrow::after, .team_grid_contain .team_grid.large li:nth-child(3n+1):nth-last-child(2) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(3n+1):nth-last-child(2) .info_drop .drop_arrow::after {
    left: 50%;
  }
  .team_grid_contain .team_grid.large li:nth-child(3n) .info_drop {
    transform: translateX(-76%);
  }
  .team_grid_contain .team_grid.large li:nth-child(3n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(3n) .info_drop .drop_arrow::after {
    left: 77%;
  }
}

@media (min-width: 40em) {
  .team_grid_contain .team_grid li {
    width: 16.666%;
  }
  .team_grid_contain .team_grid li:nth-child(4n+1) .info_drop, .team_grid_contain .team_grid li:nth-child(4n) .info_drop {
    transform: translateX(-50%);
  }
  .team_grid_contain .team_grid li:nth-child(4n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(4n+1) .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(4n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(4n) .info_drop .drop_arrow::after {
    left: 50%;
  }
  .team_grid_contain .team_grid li:nth-child(6n+1) .info_drop {
    transform: translateX(-12%);
  }
  .team_grid_contain .team_grid li:nth-child(6n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(6n+1) .info_drop .drop_arrow::after {
    left: 12%;
  }
  .team_grid_contain .team_grid li:nth-child(6n+1):last-child .info_drop, .team_grid_contain .team_grid li:nth-child(6n+1):nth-last-child(2) .info_drop, .team_grid_contain .team_grid li:nth-child(6n+1):nth-last-child(3) .info_drop, .team_grid_contain .team_grid li:nth-child(6n+1):nth-last-child(4) .info_drop, .team_grid_contain .team_grid li:nth-child(6n+1):nth-last-child(5) .info_drop {
    transform: translateX(-50%);
  }
  .team_grid_contain .team_grid li:nth-child(6n+1):last-child .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(6n+1):last-child .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(6n+1):nth-last-child(2) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(6n+1):nth-last-child(2) .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(6n+1):nth-last-child(3) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(6n+1):nth-last-child(3) .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(6n+1):nth-last-child(4) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(6n+1):nth-last-child(4) .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(6n+1):nth-last-child(5) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(6n+1):nth-last-child(5) .info_drop .drop_arrow::after {
    left: 50%;
  }
  .team_grid_contain .team_grid li:nth-child(6n) .info_drop {
    transform: translateX(-88%);
  }
  .team_grid_contain .team_grid li:nth-child(6n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(6n) .info_drop .drop_arrow::after {
    left: 89%;
  }
}

@media (min-width: 55em) {
  .team_grid_contain .team_grid li {
    width: 12.5%;
  }
  .team_grid_contain .team_grid li:nth-child(6n+1) .info_drop, .team_grid_contain .team_grid li:nth-child(6n) .info_drop {
    transform: translateX(-50%);
  }
  .team_grid_contain .team_grid li:nth-child(6n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(6n+1) .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(6n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(6n) .info_drop .drop_arrow::after {
    left: 50%;
  }
  .team_grid_contain .team_grid li:nth-child(8n+1) .info_drop {
    transform: translateX(-12%);
  }
  .team_grid_contain .team_grid li:nth-child(8n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(8n+1) .info_drop .drop_arrow::after {
    left: 12%;
  }
  .team_grid_contain .team_grid li:nth-child(8n+1):last-child .info_drop, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(2) .info_drop, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(3) .info_drop, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(4) .info_drop, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(5) .info_drop, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(6) .info_drop, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(7) .info_drop {
    transform: translateX(-50%);
  }
  .team_grid_contain .team_grid li:nth-child(8n+1):last-child .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(8n+1):last-child .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(2) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(2) .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(3) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(3) .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(4) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(4) .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(5) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(5) .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(6) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(6) .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(7) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(8n+1):nth-last-child(7) .info_drop .drop_arrow::after {
    left: 50%;
  }
  .team_grid_contain .team_grid li:nth-child(8n) .info_drop {
    transform: translateX(-88%);
  }
  .team_grid_contain .team_grid li:nth-child(8n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(8n) .info_drop .drop_arrow::after {
    left: 89%;
  }
  .team_grid_contain .team_grid.large li {
    width: 25%;
  }
  .team_grid_contain .team_grid.large li:nth-child(3n+1) .info_drop, .team_grid_contain .team_grid.large li:nth-child(3n) .info_drop {
    transform: translateX(-50%);
  }
  .team_grid_contain .team_grid.large li:nth-child(3n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(3n+1) .info_drop .drop_arrow::after, .team_grid_contain .team_grid.large li:nth-child(3n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(3n) .info_drop .drop_arrow::after {
    left: 50%;
  }
  .team_grid_contain .team_grid.large li:nth-child(4n+1) .info_drop {
    transform: translateX(-22%);
  }
  .team_grid_contain .team_grid.large li:nth-child(4n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(4n+1) .info_drop .drop_arrow::after {
    left: 22%;
  }
  .team_grid_contain .team_grid.large li:nth-child(4n+1):last-child .info_drop, .team_grid_contain .team_grid.large li:nth-child(4n+1):nth-last-child(2) .info_drop, .team_grid_contain .team_grid.large li:nth-child(4n+1):nth-last-child(3) .info_drop {
    transform: translateX(-50%);
  }
  .team_grid_contain .team_grid.large li:nth-child(4n+1):last-child .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(4n+1):last-child .info_drop .drop_arrow::after, .team_grid_contain .team_grid.large li:nth-child(4n+1):nth-last-child(2) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(4n+1):nth-last-child(2) .info_drop .drop_arrow::after, .team_grid_contain .team_grid.large li:nth-child(4n+1):nth-last-child(3) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(4n+1):nth-last-child(3) .info_drop .drop_arrow::after {
    left: 50%;
  }
  .team_grid_contain .team_grid.large li:nth-child(4n) .info_drop {
    transform: translateX(-76%);
  }
  .team_grid_contain .team_grid.large li:nth-child(4n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(4n) .info_drop .drop_arrow::after {
    left: 77%;
  }
}

@media (min-width: 78em) {
  .team_grid_contain .team_grid li {
    width: 10%;
  }
  .team_grid_contain .team_grid li:nth-child(8n+1) .info_drop, .team_grid_contain .team_grid li:nth-child(8n) .info_drop {
    transform: translateX(-50%);
  }
  .team_grid_contain .team_grid li:nth-child(8n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(8n+1) .info_drop .drop_arrow::after, .team_grid_contain .team_grid li:nth-child(8n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid li:nth-child(8n) .info_drop .drop_arrow::after {
    left: 50%;
  }
  .team_grid_contain .team_grid.large li {
    width: 16.666%;
  }
  .team_grid_contain .team_grid.large li:nth-child(4n+1) .info_drop, .team_grid_contain .team_grid.large li:nth-child(4n) .info_drop {
    transform: translateX(-50%);
  }
  .team_grid_contain .team_grid.large li:nth-child(4n+1) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(4n+1) .info_drop .drop_arrow::after, .team_grid_contain .team_grid.large li:nth-child(4n) .info_drop .drop_arrow::before, .team_grid_contain .team_grid.large li:nth-child(4n) .info_drop .drop_arrow::after {
    left: 50%;
  }
}

@media (min-width: 94em) {
  .team_grid_contain {
    width: 102.5%;
    margin-left: -1.25%;
  }
  .team_grid_contain .team_grid li {
    padding: 0 1.25%;
    width: 8.333%;
  }
}

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