@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name: Insource
Author: BrightByte Studio

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * 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.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 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;
}

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

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: 0;
}

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

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

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

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

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

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

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: "";
  content: none;
}

small, .small {
  font-size: 75%;
}

/**
 * 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;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

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

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

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * 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.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
}

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

/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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;
}

/**
 * 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 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 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 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf, .comment-respond {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
  content: "";
  display: table;
}
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

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

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
@font-face {
  font-family: "apercu-light";
  src: url("../fonts/aperculight3.eot");
  src: url("../fonts/aperculight3.eot?#iefix") format("embedded-opentype"), url("../fonts/aperculight3.woff") format("woff"), url("../fonts/aperculight3.ttf") format("truetype"), url("../fonts/aperculight3.svg#aperculight3") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "apercu-light";
    src: url("../fonts/aperculight3.svg") format("svg");
  }
}
@font-face {
  font-family: "FontAwesomeBrandsV6";
  src: url("../fonts/free-fa-brands-400.woff2");
}
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: keep-all;
  word-break: keep-all;
  word-wrap: keep-all;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

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

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
.landing-page {
  display: flex;
  margin-bottom: 100px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .landing-page {
    margin-bottom: 50px;
  }
}
.landing-page--top {
  margin-bottom: 50px;
}
.landing-page--top h2 {
  color: #175BA9;
}
.landing-page--top h3 {
  color: #000000;
}
.landing-page--bottom h2 {
  color: #9DCB47;
}
.landing-page--bottom h3 {
  color: #000000;
}
.landing-page h2 {
  margin-top: 0;
}
.landing-page .button {
  background: #9DCB47 !important;
  border-radius: 50px !important;
  color: #fff !important;
  border: 0;
  outline: 0;
  padding: 5px 20px;
  transition: 0.5s;
}
.landing-page .button:hover, .landing-page .button:active, .landing-page .button:focus {
  background: #000 !important;
}
.landing-page ul {
  margin-top: 40px;
}
.landing-page ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}
.landing-page ul li:before {
  content: "";
  background: #9DCB47;
  border-radius: 100%;
  height: 5px;
  width: 5px;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
}
.landing-page__right {
  position: relative;
  width: 50%;
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width: 768px) {
  .landing-page__right {
    width: 100%;
  }
}
.landing-page__right img {
  width: 100%;
}
.landing-page__left {
  width: 50%;
  padding-right: 5%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .landing-page__left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.landing-page form {
  position: relative;
}
.landing-page form .gf-recaptcha-div {
  position: absolute;
  bottom: -150px;
  left: 0;
}

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-success, .alert-error, .alert-info, .alert-help {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

.alert-help {
  border-color: rgb(231.8902439024, 220.3353658537, 88.6097560976);
  background: #ebe16f;
}

.alert-info {
  border-color: rgb(191.1428571429, 227.6326530612, 244.3571428571);
  background: #d5edf8;
}

.alert-error {
  border-color: rgb(247.8125, 204.6875, 206.484375);
  background: #fbe3e4;
}

.alert-success {
  border-color: rgb(221.7207792208, 233.7012987013, 173.7987012987);
  background: #e6efc2;
}

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

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
#home_section_1 a,
#home_section_1 a:visited, #gform_submit_button_1, #gform_submit_button_1:visited, .white-global-btn, .white-global-btn:visited, .global-btn, .global-btn:visited, .blue-btn, #submit, .comment-reply-link {
  display: inline-block;
  position: relative;
  font-family: "utopia-std-display", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #000;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.9em;
  line-height: 30px;
  font-weight: normal;
  padding: 0 24px;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  -ms-border-radius: 200px;
  -o-border-radius: 200px;
  border-radius: 200px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out, color 0.14s ease-in-out, border 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out, color 0.14s ease-in-out, border 0.14s ease-in-out;
}
#home_section_1 a:hover, #gform_submit_button_1:hover, .white-global-btn:hover, .global-btn:hover, .blue-btn:hover, #submit:hover, .comment-reply-link:hover {
  color: #fff;
  text-decoration: none;
}
#home_section_1 a:active, #gform_submit_button_1:active, .white-global-btn:active, .global-btn:active, .blue-btn:active, #submit:active, .comment-reply-link:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn, #submit, .comment-reply-link {
  background-color: #00ccff;
}
.blue-btn:hover, #submit:hover, .comment-reply-link:hover, .blue-btn:focus, #submit:focus, .comment-reply-link:focus {
  background-color: rgb(0, 187.68, 234.6);
}
.blue-btn:active, #submit:active, .comment-reply-link:active {
  background-color: rgb(0, 183.6, 229.5);
}

.global-btn, .global-btn:visited {
  background-color: transparent;
}
.global-btn:hover, .global-btn:visited:hover {
  background-color: #000;
  border: 2px solid #000;
}
.global-btn:active, .global-btn:visited:active {
  background-color: #000;
  border: 2px solid #000;
}

.green-btn {
  background-color: #99cc33;
  padding: 5px 24px;
  border-radius: 30px;
  color: #fff !important;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border: 2px solid #99cc33;
}
.green-btn:hover {
  color: #000 !important;
  background: transparent;
}

.white-btn {
  background-color: #fff;
  padding: 5px 24px;
  border-radius: 30px;
  color: #0259af;
  border: 2px solid #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.white-btn:hover {
  color: #fff !important;
  background: transparent;
}

.white-global-btn, .white-global-btn:visited {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.white-global-btn:hover, .white-global-btn:visited:hover {
  background-color: #fff;
  border: 2px solid #fff;
  color: #000;
}
.white-global-btn:active, .white-global-btn:visited:active {
  background-color: #fff;
  border: 2px solid #fff;
  color: #000;
}

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

Stylesheet: Form Styles

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

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

******************************************************************/
/*********************
INPUTS
*********************/
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea {
  display: block;
  height: 50px;
  line-height: normal;
  padding: 0 20px;
  margin: 0;
  font-size: 1em;
  color: #000;
  vertical-align: middle;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 0;
  width: 100%;
  font-family: "utopia-std-display", Helvetica, Arial, sans-serif;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
  -webkit-appearance: none;
}
input[type=text].error, input[type=text].is-invalid,
input[type=password].error,
input[type=password].is-invalid,
input[type=datetime].error,
input[type=datetime].is-invalid,
input[type=datetime-local].error,
input[type=datetime-local].is-invalid,
input[type=date].error,
input[type=date].is-invalid,
input[type=month].error,
input[type=month].is-invalid,
input[type=time].error,
input[type=time].is-invalid,
input[type=week].error,
input[type=week].is-invalid,
input[type=number].error,
input[type=number].is-invalid,
input[type=email].error,
input[type=email].is-invalid,
input[type=url].error,
input[type=url].is-invalid,
input[type=search].error,
input[type=search].is-invalid,
input[type=tel].error,
input[type=tel].is-invalid,
input[type=color].error,
input[type=color].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
input[type=text].success, input[type=text].is-valid,
input[type=password].success,
input[type=password].is-valid,
input[type=datetime].success,
input[type=datetime].is-valid,
input[type=datetime-local].success,
input[type=datetime-local].is-valid,
input[type=date].success,
input[type=date].is-valid,
input[type=month].success,
input[type=month].is-valid,
input[type=time].success,
input[type=time].is-valid,
input[type=week].success,
input[type=week].is-valid,
input[type=number].success,
input[type=number].is-valid,
input[type=email].success,
input[type=email].is-valid,
input[type=url].success,
input[type=url].is-valid,
input[type=search].success,
input[type=search].is-valid,
input[type=tel].success,
input[type=tel].is-valid,
input[type=color].success,
input[type=color].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
input[type=text][disabled], input[type=text].is-disabled,
input[type=password][disabled],
input[type=password].is-disabled,
input[type=datetime][disabled],
input[type=datetime].is-disabled,
input[type=datetime-local][disabled],
input[type=datetime-local].is-disabled,
input[type=date][disabled],
input[type=date].is-disabled,
input[type=month][disabled],
input[type=month].is-disabled,
input[type=time][disabled],
input[type=time].is-disabled,
input[type=week][disabled],
input[type=week].is-disabled,
input[type=number][disabled],
input[type=number].is-disabled,
input[type=email][disabled],
input[type=email].is-disabled,
input[type=url][disabled],
input[type=url].is-disabled,
input[type=search][disabled],
input[type=search].is-disabled,
input[type=tel][disabled],
input[type=tel].is-disabled,
input[type=color][disabled],
input[type=color].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type=text][disabled]:focus, input[type=text][disabled]:active, input[type=text].is-disabled:focus, input[type=text].is-disabled:active,
input[type=password][disabled]:focus,
input[type=password][disabled]:active,
input[type=password].is-disabled:focus,
input[type=password].is-disabled:active,
input[type=datetime][disabled]:focus,
input[type=datetime][disabled]:active,
input[type=datetime].is-disabled:focus,
input[type=datetime].is-disabled:active,
input[type=datetime-local][disabled]:focus,
input[type=datetime-local][disabled]:active,
input[type=datetime-local].is-disabled:focus,
input[type=datetime-local].is-disabled:active,
input[type=date][disabled]:focus,
input[type=date][disabled]:active,
input[type=date].is-disabled:focus,
input[type=date].is-disabled:active,
input[type=month][disabled]:focus,
input[type=month][disabled]:active,
input[type=month].is-disabled:focus,
input[type=month].is-disabled:active,
input[type=time][disabled]:focus,
input[type=time][disabled]:active,
input[type=time].is-disabled:focus,
input[type=time].is-disabled:active,
input[type=week][disabled]:focus,
input[type=week][disabled]:active,
input[type=week].is-disabled:focus,
input[type=week].is-disabled:active,
input[type=number][disabled]:focus,
input[type=number][disabled]:active,
input[type=number].is-disabled:focus,
input[type=number].is-disabled:active,
input[type=email][disabled]:focus,
input[type=email][disabled]:active,
input[type=email].is-disabled:focus,
input[type=email].is-disabled:active,
input[type=url][disabled]:focus,
input[type=url][disabled]:active,
input[type=url].is-disabled:focus,
input[type=url].is-disabled:active,
input[type=search][disabled]:focus,
input[type=search][disabled]:active,
input[type=search].is-disabled:focus,
input[type=search].is-disabled:active,
input[type=tel][disabled]:focus,
input[type=tel][disabled]:active,
input[type=tel].is-disabled:focus,
input[type=tel].is-disabled:active,
input[type=color][disabled]:focus,
input[type=color][disabled]:active,
input[type=color].is-disabled:focus,
input[type=color].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active {
  background-color: #d5edf8;
}

input[type=password] {
  letter-spacing: 0.3em;
}

textarea {
  padding: 15px 20px;
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

select {
  -webkit-appearance: none; /* 1 */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  transition: color 0.6s;
}

:-moz-placeholder { /* Firefox 18- */
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  transition: color 0.6s;
}

::-moz-placeholder { /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  transition: color 0.6s;
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  transition: color 0.6s;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #000;
}

input:focus:-moz-placeholder, textarea:focus:-moz-placeholder { /* Firefox 18- */
  color: #000;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder { /* Firefox 19+ */
  color: #000;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #000;
}

.gform_wrapper.two-column_wrapper {
  position: relative;
}
.gform_wrapper.two-column_wrapper .gform_footer {
  padding: 0;
  margin: 0;
  clear: none;
}

.gform_wrapper.two-column_wrapper .top_label li.gfield.gf_right_half input.large, .gform_wrapper.two-column_wrapper .top_label textarea.textarea, .gform_wrapper.two-column_wrapper textarea.medium {
  width: 100%;
}

.gform_wrapper.two-column_wrapper li.hidden_label input {
  margin: 0;
}

#gform_submit_button_1, #gform_submit_button_1:visited {
  background-color: transparent;
  float: right;
  padding: 0 34px;
  margin: 40px 0 0 0;
}
@media (max-width: 640px) {
  #gform_submit_button_1, #gform_submit_button_1:visited {
    margin: 100px 0 0 0;
  }
}
#gform_submit_button_1:hover, #gform_submit_button_1:visited:hover {
  background-color: #000;
  border: 2px solid #000;
}
#gform_submit_button_1:active, #gform_submit_button_1:visited:active {
  background-color: #000;
  border: 2px solid #000;
}

.gf-recaptcha-div {
  position: absolute;
  bottom: 100px;
  left: 52%;
}
@media (max-width: 1029px) {
  .gf-recaptcha-div {
    bottom: 5px;
    left: 0;
  }
}
@media (max-width: 640px) {
  .gf-recaptcha-div {
    bottom: 50px;
  }
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
html {
  height: 100%;
  width: 100%;
}
html #CybotCookiebotDialog {
  width: auto !important;
  transform: none !important;
  bottom: 32px !important;
  left: 32px !important;
  top: auto !important;
  min-width: auto !important;
  max-width: 750px !important;
  border-radius: 10px !important;
  font-family: "utopia-std-display", Helvetica, Arial, sans-serif !important;
  background-color: #fff !important;
  color: #2659a9;
}
html #CybotCookiebotDialog .CybotCookiebotFader.CybotCookiebotDialogActive {
  display: none !important;
}
html #CybotCookiebotDialog .CybotCookiebotScrollContainer {
  max-height: 75vh !important;
}
html #CybotCookiebotDialog.CybotEdge {
  padding: 16px;
}
html #CybotCookiebotDialog.CybotEdge .CybotCookiebotScrollContainer {
  border-bottom: none !important;
  display: flex;
  flex: auto;
  height: auto;
}
@media only screen and (max-width: 600px) {
  html #CybotCookiebotDialog.CybotEdge .CybotCookiebotScrollContainer {
    min-height: auto !important;
    padding: 0 !important;
  }
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogTabContent {
  max-height: 95px;
}
@media only screen and (max-width: 600px) {
  html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogTabContent {
    max-height: none !important;
  }
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyContent {
  height: auto;
  padding: 0 1.125em 0 0;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyLevelButtonAccept {
  padding: 6px 10px !important;
  border-radius: 32px !important;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyContentTitle {
  font-size: 1.25rem;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 600px) {
  html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyContentTitle {
    padding-bottom: 0px !important;
  }
}
html #CybotCookiebotDialog.CybotEdge .CybotCookiebotDialogContentWrapper {
  min-width: 400px;
  display: block !important;
  position: relative;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogHeader {
  display: none;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyButtons {
  max-width: 400px;
  align-items: flex-end !important;
  flex-direction: column-reverse !important;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter {
  padding: 0 !important;
  width: auto !important;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
  width: 130px !important;
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 600px) {
  html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
    width: 100% !important;
  }
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogTabContent {
  margin: 0 !important;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogTabContent .CybotCookiebotDialogTabPanel {
  overflow: visible;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyButtonsWrapper {
  flex-direction: row !important;
  position: absolute !important;
  right: 0 !important;
  width: auto !important;
}
@media only screen and (max-width: 600px) {
  html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyButtonsWrapper {
    position: relative !important;
    width: 100% !important;
  }
}
html #CybotCookiebotDialog.CybotEdge .CybotCookiebotDialogBodyBottomWrapper {
  margin-top: 0;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails {
  position: absolute;
  right: 4px;
  display: block;
  width: auto;
  margin-top: 0;
  top: 10px;
  height: 2em;
  margin: 0;
}
@media only screen and (max-width: 600px) {
  html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails {
    position: relative !important;
    right: 0 !important;
    top: 0 !important;
    height: auto !important;
    padding: 10px 0;
  }
}
html #CybotCookiebotDialog.CybotEdge .CybotCookiebotDialogArrow {
  display: none !important;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyContentText {
  font-size: 12px;
  color: #2659a9;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyContentText p a {
  color: #2659a9 !important;
  text-decoration: underline !important;
  transition: opacity 0.5s linear !important;
  margin-right: 20px;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyContentText p a:hover {
  opacity: 0.5 !important;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyButtonDecline {
  margin-bottom: 0.5em !important;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
  border: 2px solid #fff;
  background-color: #fff;
  color: #2659a9;
  border-radius: 32px;
  padding: 5px 20px !important;
  width: auto !important;
  line-height: 1 !important;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyButtonDecline, html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyLevelButtonCustomize {
  border: 1px solid #ffffff;
  background-color: #2659a9;
  color: #fff;
  border-radius: 32px;
  padding: 5px 20px !important;
  width: auto !important;
  line-height: 1 !important;
}
html #CybotCookiebotDialog.CybotEdge .CybotCookiebotFader {
  background-color: none;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a {
  color: #2659a9;
}
html #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a:after {
  color: #2659a9;
  margin-left: 0.25rem;
}
html #CybotCookiebotDialog.CybotEdge .CybotCookiebotScrollContainer {
  max-height: none !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogHide {
  padding: 0 !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper {
  max-width: 380px;
  min-width: 380px;
}
@media only screen and (max-width: 768px) {
  html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper {
    max-width: calc(100vw - 64px);
    min-width: auto !important;
  }
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper a {
  color: #2659a9 !important;
  transition: opacity 0.3s linear;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper a:hover {
  opacity: 0.5;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper .CybotExternalLinkArrow {
  filter: invert(1);
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogHeader {
  display: none !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogPoweredbyCybot svg {
  fill: #fff !important;
  opacity: 1 !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper .CybotCookiebotDialogBodyLevelButtonSliderWrapper {
  height: 18px !important;
  width: 34px !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper .CybotCookiebotDialogBodyLevelButtonSliderWrapper input:checked ~ span {
  background-color: #2659a9 !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper .CybotCookiebotDialogBodyLevelButtonSliderWrapper input:checked ~ span:before {
  transform: translateX(16px) !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper .CybotCookiebotDialogBodyLevelButtonSliderWrapper .CybotCookiebotDialogBodyLevelButtonSlider:before {
  bottom: 3px !important;
  height: 12px !important;
  width: 12px !important;
  left: 3px !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper .CybotCookiebotDialogDetailBodyContentCookieContainerButton:before {
  margin-right: 1rem !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper .CybotCookiebotDialogDetailBodyContentCookieTypeIntro {
  padding-left: 1.675rem;
  color: #1E1E1E !important;
  font-size: 12px !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper .CookieCard {
  border-bottom: 1px solid #0259AF !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper .CookieCard label {
  font-size: 12px !important;
  line-height: 14px !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogDetailFooter {
  font-size: 12px !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogDetailFooter a {
  font-size: 12px !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogDetailBodyContentTextAbout p, html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogDetailBodyContentTextAbout a {
  font-size: 12px !important;
  color: rgba(0, 0, 0, 0.5019607843);
  line-height: 14px !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogBodyLevelButtonAccept {
  width: 100% !important;
  padding: 4px !important;
  border-radius: 32px !important;
}
html #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper .CybotCookiebotDialogDetailBulkConsentCount {
  background-color: #0259AF;
  color: #fff;
  line-height: 1 !important;
}
html #CybotCookiebotDialog #CybotCookiebotDialogPoweredByText {
  display: none !important;
}

body {
  font-family: "utopia-std-display", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 1.8;
  color: rgb(0, 0, 0);
  color: rgba(0, 0, 0, 0.5);
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

@-moz-document url-prefix() {
  body {
    font-weight: lighter !important;
  }
}
#home_container {
  position: relative;
  background: #fff;
  overflow: hidden;
}

#page_container {
  background: #fff;
}
#page_container.margin_top {
  margin-top: 78px;
}

b,
strong,
.strong {
  font-weight: normal;
  color: #000;
}

.main_content h1 {
  color: #0259af;
}
.main_content h2 {
  color: #99cc33;
}
.main_content h3 {
  color: #00ccff;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 85%;
  max-width: 485px;
  margin: 0 auto;
}

.outer-wrap {
  width: 100%;
  margin: 0 auto;
}

/*********************
LINK STYLES
*********************/
a,
a:visited {
  color: rgb(0, 0, 0);
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:link,
a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  text-rendering: optimizelegibility;
  font-weight: normal;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}

h1,
.h1 {
  font-size: 2.5em;
  line-height: 1.1em;
}

h2,
.h2 {
  font-size: 1.75em;
  line-height: 1.2em;
  margin-bottom: 0.375em;
}

h3,
.h3 {
  font-size: 1.4em;
}

h4,
.h4 {
  font-size: 1.1em;
}

h5,
.h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*********************
HEADER STYLES
*********************/
.alert-banner {
  display: none;
}

.page-template-careers-new .alert-banner {
  display: block;
  width: 100%;
  background-color: #0259af;
  color: #fff;
  text-align: center;
  padding: 0.5rem 1.5rem;
}
.page-template-careers-new .alert-banner p {
  margin: 0;
}
.page-template-careers-new .alert-banner a {
  text-decoration: underline;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s linear;
}
.page-template-careers-new .alert-banner a:hover {
  opacity: 0.5;
}

.masterhead {
  background-image: url(../images/hero_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  -webkit-backface-visibility: hidden;
  padding: 60px 0 100px 0;
}
.masterhead .alert-banner {
  position: absolute;
  top: 0;
}
.masterhead .wrap {
  position: relative;
  height: 100%;
}
.masterhead .hero_text {
  color: #fff;
  opacity: 0;
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.masterhead .hero_text.fading_in {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  opacity: 1;
}
.masterhead .hero_text p {
  font-size: 1.1em;
}
.masterhead .hero_text .home-hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin-top: 16px;
}
.masterhead .hero_text .home-hero-cta .global-btn {
  flex-grow: 1;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.masterhead .hero_text .home-hero-cta .global-btn:first-child {
  background-color: #00ccff;
  border-color: #00ccff;
}
.masterhead .hero_text .home-hero-cta .global-btn:last-child {
  background-color: #0259af;
  border-color: #0259af;
}
.masterhead .hero_text .home-hero-cta .global-btn:hover {
  background-color: transparent;
}
.masterhead span {
  color: #00ccff;
}

.masterhead.mobile {
  display: block;
  background-position: center left 42%;
  padding: 40px 0 80px 0;
}
.masterhead.mobile h1 {
  font-size: 2.3em;
}

.header {
  padding: 20px 0;
  background-color: #fff;
  width: 100%;
  position: relative;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

#logo {
  float: right;
  width: 180px;
}

#page_header {
  background-color: #f9f9f9;
}

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
.desktopnav {
  display: none;
}

.mobilenav .nav {
  width: 100%;
}

#home_header .icon.open {
  position: fixed;
  top: 20px;
  left: 20px;
}

#page_header .icon.open {
  position: fixed;
}

.nav {
  border-bottom: 0;
  margin: 0;
  float: left;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
.nav li {
  /*
  so you really have to rethink your dropdowns for mobile.
  you don't want to have it expand too much because the
  screen is so small. How you manage your menu should
  depend on the project. Here's some great info on it:
  http://www.alistapart.com/articles/organizing-mobile/
  */
}
.nav li a {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 3px 1em;
  /*
  remember this is for mobile ONLY, so there's no need
  to even declare hover styles here, you can do it in
  the style.scss file where it's relevant. We want to
  keep this file as small as possible!
  */
}
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}
/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
.posts-title {
  color: #2659A9 !important;
}

.posts-wrap .latest_post_container .post-image {
  background-size: cover;
  background-position: center;
}
.posts-wrap .latest_post_container .post-image::after {
  display: block;
  padding-top: 68%;
  content: "";
}

#content {
  margin-top: 0;
}

.hentry header {
  position: absolute;
  width: 100%;
  height: 360px;
  left: 0;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hentry header .wrap {
  position: relative;
}
.hentry header #post_info {
  position: absolute;
  bottom: 60px;
  width: 100%;
  left: 0;
}
.hentry footer p {
  margin: 0;
}

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0;
}

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  margin: 0;
}
.author_info_container {
  position: relative;
  margin-bottom: 60px;
}
.author_info_container .avatar_container {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 25px;
  display: inline-block;
  float: left;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.author_info_container .author_info {
  display: inline-block;
  text-align: left;
  position: absolute;
  top: 50%;
  font-size: 0.9em;
  float: left;
  margin-top: -24px;
}
.author_info_container .author_info p {
  margin: 0;
  line-height: 1.5;
}

#side_column {
  margin-top: 360px;
  padding-bottom: 0;
}

#social_share {
  margin: 30px 0;
}
#social_share li {
  margin: 10px 0;
}

/* entry content */
.entry-content {
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
}
.entry-content p {
  margin: 0 0 1.5em;
}
.entry-content .author_info_container {
  margin-bottom: 0;
}
.entry-content table {
  width: 100%;
  border: 1px solid #28282e;
  margin-bottom: 1.5em;
}
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-content tr {
  border-bottom: 1px solid #28282e;
}
.entry-content tr:nth-child(even) {
  background-color: #f8f9fa;
}
.entry-content td {
  padding: 7px;
  border-right: 1px solid #28282e;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #28282e;
  border-right: 1px solid #28282e;
}
.entry-content th:last-child {
  border-right: 0;
}
.entry-content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid #99cc33;
  font-style: italic;
  color: #9fa6b4;
}
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #000;
  color: #f8f9fa;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0;
}

.pagination {
  text-align: center;
}
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #28282e;
}
.pagination a,
.pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: #00ccff;
}
.pagination a:hover, .pagination a:focus,
.pagination span:hover,
.pagination span:focus {
  background-color: #00ccff;
  color: #fff;
}
.pagination .current {
  cursor: default;
  color: #5c6b80;
}
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #5c6b80;
}

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #f8f9fa;
  /* number of comments span */
}
.commentlist {
  margin: 0;
  list-style-type: none;
}

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
.comment .comment-author {
  padding: 7px;
  border: 0;
}
.comment .vcard {
  margin-left: 50px;
}
.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}
.comment .vcard time a {
  color: #9fa6b4;
  text-decoration: none;
}
.comment .vcard time a:hover {
  text-decoration: underline;
}
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
.comment:last-child {
  margin-bottom: 0;
}
.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
.comment[class*=depth-] {
  margin-top: 1.1em;
}
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}
.comment.odd {
  background-color: #fff;
}
.comment.even {
  background: #f8f9fa;
}
/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
} /* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa;
}

#reply-title {
  margin: 0;
}

.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
.logged-in-as a {
  color: #5c6b80;
}

.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: 0.9em;
}

/* comment submit button */
#submit {
  float: right;
  font-size: 1em;
}

/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
  /* deep nesting */
}
.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  padding: 60px 0;
  background-color: rgba(0, 0, 0, 0.01);
  font-size: 0.95em;
  text-align: center;
}
.footer .contact_info h3 {
  color: #000;
  margin-bottom: 20px;
  margin-top: 0;
}
.footer .contact_info p {
  margin: 0;
}
.footer .footer_social #footer_logo, .footer .footer_social svg {
  width: 230px;
  margin: 20px 0;
}
.footer .footer_social_icons {
  display: none;
  float: right;
  margin: 40px 0;
}
.footer .footer_social_icons .facebook_icon {
  margin: 0 10px;
}

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */
.copyright {
  font-family: "apercu-light", Arial;
  font-size: 0.9em;
}

/* Global */
section {
  padding: 40px 0;
  -webkit-font-smoothing: antialiased;
}

.full_link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.section {
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  position: relative;
  background: #fff;
}

.left_panel,
.right_panel {
  float: left;
  width: 100%;
}

.slick-prev,
.slick-next {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 0.6em;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: 2px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  outline: none;
  z-index: 980;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.2;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  opacity: 1;
  width: 4px;
  height: 7px;
  top: 50%;
  left: 0;
  right: 0;
  margin: -3px auto 0 auto;
}

.slick-prev:before {
  background-image: url(../images/arrow-left.png);
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.slick-next:before {
  background-image: url(../images/arrow-right.png);
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.white_gradient {
  background: -moz-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0.4) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgb(255, 255, 255)), color-stop(20%, rgb(255, 255, 255)), color-stop(100%, rgba(255, 255, 255, 0.4))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0.4) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0.4) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0.4) 100%); /* IE10+ */
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0.4) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#66ffffff",GradientType=1 ); /* IE6-9 */
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.fade {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.65) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(30%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.65))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.65) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.65) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.65) 100%); /* IE10+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.65) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#a6000000",GradientType=0 ); /* IE6-9 */
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.button_arrow {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 0.6em;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: 2px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  outline: none;
  z-index: 980;
}
.button_arrow:before {
  content: "";
  opacity: 1;
  width: 4px;
  height: 7px;
  top: 50%;
  left: 0;
  right: 0;
  margin: -3px auto 0 auto;
  background-image: url(../images/arrow-right.png);
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.twitter_icon,
.facebook_icon,
.linkedin_icon {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 0;
  background: transparent;
  color: transparent;
  padding: 0;
  border: 2px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  color: #000;
  -webkit-transition: background-color 0.14s ease-in-out, color 0.14s ease-in-out, border 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out, color 0.14s ease-in-out, border 0.14s ease-in-out;
}
.twitter_icon:hover,
.facebook_icon:hover,
.linkedin_icon:hover {
  background-color: #000;
  border: 2px solid #000;
  color: #fff;
}
.twitter_icon ul,
.facebook_icon ul,
.linkedin_icon ul {
  margin: 0;
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}
.twitter_icon ul li,
.facebook_icon ul li,
.linkedin_icon ul li {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}

#dots {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 103;
  margin-top: -120px;
  display: none;
}
#dots li {
  width: 12px;
  height: 12px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  margin: 30px 0;
  position: relative;
}
#dots li a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#dots #dot_1 {
  border: 2px solid #99cc33;
}
#dots #dot_1.current {
  background-color: #99cc33;
}
#dots #dot_2 {
  border: 2px solid #00ccff;
}
#dots #dot_2.current {
  background-color: #00ccff;
}
#dots #dot_3 {
  border: 2px solid #0259af;
}
#dots #dot_3.current {
  background-color: #0259af;
}
#dots #dot_4 {
  border: 2px solid #99cc33;
}
#dots #dot_4.current {
  background-color: #99cc33;
}
#dots #dot_5 {
  border: 2px solid #00ccff;
}
#dots #dot_5.current {
  background-color: #00ccff;
}

/* Home */
#home_section_1 {
  padding-bottom: 0;
  padding-top: 0;
}
#home_section_1.margin_top {
  margin-top: 82px;
}
#home_section_1 .topic {
  display: none;
}
#home_section_1 .topic.active {
  display: block;
}
#home_section_1 .right_panel ul,
#home_section_1 .left_panel ul {
  margin: 15px 0 0 0;
  list-style-image: url(../images/green_list_circle.png);
  padding-left: 10px;
}
#home_section_1 .right_panel ul li,
#home_section_1 .left_panel ul li {
  padding-left: 15px;
  margin: 10px 0;
}
#home_section_1 .right_panel .contact-button,
#home_section_1 .left_panel .contact-button {
  background-color: #99CC33;
  border: 2px solid #99CC33;
  color: #fff;
}
#home_section_1 .right_panel .contact-button:hover,
#home_section_1 .left_panel .contact-button:hover {
  color: #99CC33;
  background-color: #fff;
  border: 2px solid #99CC33;
}
#home_section_1 #hr .right_panel ul,
#home_section_1 #hr .left_panel ul {
  list-style-image: url(../images/blue_list_circle.png);
}
#home_section_1 #technology .right_panel ul,
#home_section_1 #technology .left_panel ul {
  list-style-image: url(../images/dark_blue_list_circle.png);
}
#home_section_1 img {
  margin-top: 40px;
  width: 100%;
}
#home_section_1 img.desktop {
  display: none;
}
#home_section_1 img.mobile {
  margin-top: 40px;
  width: 120%;
  margin-left: -10%;
  display: block;
}
#home_section_1 a,
#home_section_1 a:visited {
  background-color: transparent;
  margin-top: 30px;
}
#home_section_1 a:hover,
#home_section_1 a:visited:hover {
  background-color: #000;
  border: 2px solid #000;
}
#home_section_1 a:active,
#home_section_1 a:visited:active {
  background-color: #000;
  border: 2px solid #000;
}

#topics_destkop {
  display: none;
}

.top_section_container,
.services_section_container {
  float: left;
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-backface-visibility: hidden;
}

#topics_nav {
  text-align: center;
  /*background-color: rgba(0,0,0,0.05);*/
  padding: 0;
  position: relative;
  overflow: hidden;
  background: white;
  z-index: 980;
}
#topics_nav.fixed {
  position: fixed;
  top: 116px;
  left: 0;
}
#topics_nav #topics_slider,
#topics_nav .wrap {
  position: relative;
}
#topics_nav .topic_link_container {
  font-size: 1.1em;
  vertical-align: middle;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  /*
  &:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  visibility: hidden;
  opacity: 0;
  @include transition(opacity 0.3s ease-in-out, border-color 0.3s ease-in-out);
  }
  */
}
#topics_nav .topic_link_container.active {
  background-color: #fff;
}
#topics_nav .topic_link_container.active a {
  -ms-transform: scale(1.4);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}
#topics_nav .topic_link_container.active:before {
  opacity: 1;
  visibility: visible;
}
#topics_nav .topic_link_container a {
  display: block;
  height: 80px;
  line-height: 80px;
  /*border-right: 2px solid rgba(0,0,0,0.1);*/
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#topics_nav #welcome_container {
  /*&:before {
  border-bottom: 5px solid #959595;
  }*/
}
#topics_nav #welcome_container.active {
  border-bottom: 2px solid #959595;
}
#topics_nav #welcome_container.active a,
#topics_nav #welcome_container.active a:visited {
  color: #959595;
}
#topics_nav #finance_container {
  /*&:before {
  border-bottom: 5px solid $green;
  }*/
}
#topics_nav #finance_container.active {
  border-bottom: 2px solid #99cc33;
}
#topics_nav #finance_container.active a,
#topics_nav #finance_container.active a:visited {
  color: #99cc33;
}
#topics_nav #training_container {
  /*&:before {
  border-bottom: 5px solid $green;
  }*/
}
#topics_nav #training_container.active {
  border-bottom: 2px solid #043f90;
}
#topics_nav #training_container.active a,
#topics_nav #training_container.active a:visited {
  color: #043f90;
}
#topics_nav #technology_container {
  /*&:before {
  border-bottom: 5px solid $dark-blue;
  }*/
}
#topics_nav #technology_container.active {
  border-bottom: 2px solid #0259af;
}
#topics_nav #technology_container.active a,
#topics_nav #technology_container.active a:visited {
  color: #0259af;
}
#topics_nav #hr_container {
  /*&:before {
  border-bottom: 5px solid $blue;
  }*/
}
#topics_nav #hr_container.active {
  border-bottom: 2px solid #00ccff;
}
#topics_nav #hr_container.active a,
#topics_nav #hr_container.active a:visited {
  color: #00ccff;
}
#topics_nav .slick-prev,
#topics_nav .slick-next {
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
#topics_nav .slick-prev {
  left: 20px;
}
#topics_nav .slick-next {
  right: 20px;
}

#home_section_2 {
  position: relative;
}
#home_section_2 #believe_slider {
  background-color: #0259af;
}
#home_section_2 #believe_slider .believe-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  background-size: cover;
  background-position: center;
  display: none;
}
#home_section_2 #believe_slider .slick-track {
  display: flex !important;
}
#home_section_2 #believe_slider .slick-track .slick-slide {
  height: inherit !important;
}
#home_section_2 .slider_item {
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right -180px top;
  padding: 72px 0;
  position: relative;
  transition: all 500ms linear;
  height: 100%;
}
#home_section_2 .slider_item .slider_content {
  padding-bottom: 50px;
}
#home_section_2 .slider_item .wrap {
  position: relative;
}
#home_section_2 .slider_item h2 {
  color: #99cc33;
  margin-top: 0;
}
#home_section_2 .slider_item p {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 2rem;
  color: #fff;
  border-left: 3px solid #99cc33;
  padding-left: 24px;
}
#home_section_2 .global-btn {
  background-color: #fff;
  color: #0259af;
  border-color: #fff;
}
#home_section_2 .global-btn:hover {
  background-color: #0259af;
  color: #fff;
}
#home_section_2 #buttons_container {
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
}
#home_section_2 #buttons_container .global-btn {
  float: left;
  margin-left: 15px;
}
#home_section_2 .slick-prev:before,
#home_section_2 .slick-next:before {
  width: 8px;
  height: 12px;
  margin: -10px auto 0 auto;
}
#home_section_2 .slick-prev,
#home_section_2 .slick-next {
  width: 35px;
  height: 35px;
  position: relative;
  background-color: transparent;
  float: left;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
#home_section_2 .slick-prev {
  left: 0;
}
#home_section_2 .slick-prev:before {
  content: url(../images/left.png);
  background-image: none;
  margin: -10px 15px 0 11px;
}
#home_section_2 .slick-next {
  margin-left: 10px;
}
#home_section_2 .slick-next:before {
  content: url(../images/right.png);
  background-image: none;
}

.profiles_section {
  background-color: rgba(0, 0, 0, 0.02);
}
.profiles_section #new_leadership_container {
  display: none;
}

#profiles_section #intro_container .right_panel.mobile > div {
  width: 100%;
}

.profiles_page {
  position: relative;
  float: left;
  width: 100%;
}

#profiles_wrap {
  position: relative;
  margin-bottom: 0;
}
#profiles_wrap.loading {
  padding-bottom: 100%;
}

#leadership_container {
  position: relative;
}
#leadership_container.loading {
  padding-bottom: 60%;
}

#leadership_team {
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 60%;
  background-position: center;
  display: none;
  position: relative;
  margin-bottom: 20px;
}
#leadership_team .leader_profile {
  position: absolute;
  padding: 6% 5%;
}
#leadership_team .leader_profile a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#leadership_team .leader_profile.leader_profile_1 {
  left: 35%;
  top: 30px;
}
#leadership_team .leader_profile.leader_profile_1 .insource_circle {
  background: #00ccff;
}
#leadership_team .leader_profile.leader_profile_2 {
  left: 52%;
  top: 43px;
}
#leadership_team .leader_profile.leader_profile_2 .insource_circle {
  background: #0259af;
}
#leadership_team .leader_profile.leader_profile_3 {
  left: 72.5%;
  top: 25px;
}
#leadership_team .leader_profile.leader_profile_3 .insource_circle {
  background: #99cc33;
}
#leadership_team .leader_profile .insource_circle {
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 10px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}

.profile_lightbox {
  display: none;
}
.profile_lightbox.visible {
  display: flex;
}
.profile_lightbox.visible .left_content {
  position: static;
  height: auto;
}
.profile_lightbox.visible .left_content .profile_basic_info {
  padding: 20px;
}
.profile_lightbox.visible .left_content .profile_basic_info .thumbnail {
  position: relative;
  cursor: pointer;
  background-color: #141417;
}
.profile_lightbox.visible .left_content .profile_basic_info .thumbnail img {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.profile_lightbox.visible .left_content .profile_basic_info .thumbnail svg {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.profile_lightbox.visible .left_content .profile_basic_info .thumbnail svg > * {
  transition: all 0.2s linear;
}
.profile_lightbox.visible .left_content .profile_basic_info .thumbnail span {
  display: none;
  font-size: 15px;
  line-height: 132%;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.profile_lightbox.visible .left_content .profile_basic_info .thumbnail:hover svg circle {
  fill: #141417;
}
.profile_lightbox.visible .left_content .profile_basic_info .thumbnail:hover svg path {
  fill: #97c83b;
}
.profile_lightbox.visible .left_content .profile_basic_info .thumbnail.active svg {
  display: none;
}
.profile_lightbox.visible .left_content .profile_basic_info .thumbnail.active img {
  opacity: 25%;
}
.profile_lightbox.visible .left_content .profile_basic_info .thumbnail.active span {
  display: block;
}
.profile_lightbox.visible .right_content {
  height: auto;
}
.profile_lightbox.visible .right_content .video-content {
  padding: 60px 40px;
  display: none;
}
.profile_lightbox .video-close {
  background-color: #28282E;
  color: #fff;
  border-radius: 32px;
  padding: 6px 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.3s linear;
  cursor: pointer;
  margin: 12px auto;
  display: block;
  overflow: hidden;
  width: fit-content;
}
.profile_lightbox .video-close:hover {
  color: #28282E;
  background-color: #fff;
}

.mobile-video-content {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.mobile-video-content .video-container {
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  left: 50%;
}
.mobile-video-content .video-close {
  background-color: #28282E;
  color: #fff;
  border-radius: 32px;
  padding: 6px 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.3s linear;
  cursor: pointer;
  margin: 12px auto;
  display: block;
  overflow: hidden;
  width: fit-content;
}
.mobile-video-content .video-close:hover {
  color: #28282E;
  background-color: #fff;
}

#profile_content {
  display: flex;
}
#profile_content .left_content {
  position: static;
  height: auto;
}
#profile_content .left_content .profile_basic_info {
  padding: 24px;
}
#profile_content .left_content .profile_basic_info .thumbnail, #profile_content .left_content .profile_basic_info .mobile-thumbnail {
  display: none;
  position: relative;
  cursor: pointer;
  background-color: #141417;
}
#profile_content .left_content .profile_basic_info .thumbnail img, #profile_content .left_content .profile_basic_info .mobile-thumbnail img {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
#profile_content .left_content .profile_basic_info .thumbnail svg, #profile_content .left_content .profile_basic_info .mobile-thumbnail svg {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
#profile_content .left_content .profile_basic_info .thumbnail svg > *, #profile_content .left_content .profile_basic_info .mobile-thumbnail svg > * {
  transition: all 0.2s linear;
}
#profile_content .left_content .profile_basic_info .thumbnail span, #profile_content .left_content .profile_basic_info .mobile-thumbnail span {
  display: none;
  font-size: 15px;
  line-height: 132%;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
#profile_content .left_content .profile_basic_info .thumbnail:hover svg circle, #profile_content .left_content .profile_basic_info .mobile-thumbnail:hover svg circle {
  fill: #141417;
}
#profile_content .left_content .profile_basic_info .thumbnail:hover svg path, #profile_content .left_content .profile_basic_info .mobile-thumbnail:hover svg path {
  fill: #97c83b;
}
#profile_content .left_content .profile_basic_info .thumbnail.active svg, #profile_content .left_content .profile_basic_info .mobile-thumbnail.active svg {
  display: none;
}
#profile_content .left_content .profile_basic_info .thumbnail.active img, #profile_content .left_content .profile_basic_info .mobile-thumbnail.active img {
  opacity: 25%;
}
#profile_content .left_content .profile_basic_info .thumbnail.active span, #profile_content .left_content .profile_basic_info .mobile-thumbnail.active span {
  display: block;
}
#profile_content .left_content .profile_basic_info .mobile-thumbnail {
  display: block;
}
#profile_content .right_content {
  height: auto;
}
#profile_content .right_content .video-content {
  padding: 60px 40px;
  display: none;
}
#profile_content .video-close {
  background-color: #28282E;
  color: #fff;
  border-radius: 32px;
  padding: 6px 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.3s linear;
  cursor: pointer;
  margin: 12px auto;
  display: block;
  overflow: hidden;
  width: fit-content;
}
#profile_content .video-close:hover {
  color: #28282E;
  background-color: #fff;
}
#profile_content .profile_basic_info {
  float: none;
}

:is(vimeo-embed, youtube-embed) {
  aspect-ratio: 16/9;
  border-radius: 4px;
  display: grid;
  inline-size: 100%;
  position: relative;
}

:is(vimeo-embed, youtube-embed) :is(iframe, img) {
  block-size: 100%;
  border: 0;
  border-radius: inherit;
  inline-size: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
}

:is(vimeo-embed, youtube-embed) button {
  background-color: #97C83B;
  block-size: var(--button-h, 50px);
  border: 0;
  border-radius: 100px;
  display: grid;
  width: 50px;
  height: 50px;
  position: absolute;
  place-self: center;
  transition: all 0.2s ease-in;
}
:is(vimeo-embed, youtube-embed) button:hover {
  background-color: #000;
}
:is(vimeo-embed, youtube-embed) button:hover:before {
  background: #97C83B;
}

:is(vimeo-embed, youtube-embed) button::before {
  aspect-ratio: 1;
  transition: all 0.2s ease-in;
  background: #000;
  block-size: 1.5em;
  clip-path: polygon(20% 0%, 20% 100%, 100% 50%);
  content: "";
  place-self: center;
}

vimeo-embed button {
  --button-bgc: #00adef;
}

:is(vimeo-embed, youtube-embed) iframe:not([src=""]) + button {
  display: none;
}

#profiles_container,
#profiles_container_1 {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #1e1e1e;
}

.profiles_row {
  flex-wrap: wrap;
}

#profiles_section {
  padding: 0;
  text-align: center;
  overflow: visible;
}
#profiles_section .slick-prev,
#profiles_section .slick-next {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  background-color: #959595;
}
#profiles_section .slick-prev {
  left: 20px;
}
#profiles_section .slick-next {
  right: 20px;
}
#profiles_section .profile {
  position: relative;
  float: left;
  width: 100%;
  min-height: 150px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  cursor: pointer;
  text-align: left;
  /*&:hover .profile_content, &:hover .profile_info {
  visibility: visible;
  opacity: 1;
  @include transition(opacity 0.3s ease-in-out);
  }*/
}
#profiles_section .profile.no_thumb {
  background-size: inherit;
}
#profiles_section .profile.text_content {
  display: flex;
  align-items: center;
  justify-content: center;
}
#profiles_section .profile.text_content .text {
  width: 64%;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
#profiles_section .profile.text_content .text .headline {
  color: #99CC33;
  margin: 0;
  font-weight: 600;
}
#profiles_section .profile .profile_content {
  display: block;
  visibility: visible;
  opacity: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 2;
  padding: 20px;
  font-size: 0.95em;
  background-color: #000;
  cursor: auto;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
  overflow: hidden;
  line-height: 1.2;
  z-index: 100;
}
#profiles_section .profile .profile_content ul {
  margin: 0;
  padding: 0;
  display: table;
  width: 100%;
  height: 100%;
}
#profiles_section .profile .profile_content ul li {
  display: table-cell;
  vertical-align: middle;
}
#profiles_section .profile .profile_content.visible {
  visibility: visible;
  opacity: 1;
}
#profiles_section .profile #profile_content_1 {
  right: -100%;
}
#profiles_section .profile #profile_content_2 {
  right: -200%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8em;
}
#profiles_section .profile .profile_info {
  position: absolute;
  width: 100%;
  bottom: 30px;
  padding: 0 30px;
  line-height: 1.2;
  visibility: visible;
  opacity: 1;
}
#profiles_section .profile .profile_info p {
  margin: 0;
}
#profiles_section .profile .profile_info .job_title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9em;
}
#profiles_section .show_more {
  margin: 20px 0;
  position: relative;
}
#profiles_section .show_more img {
  position: relative;
  width: 25px;
  display: inline-block;
  margin-right: 10px;
  top: -1px;
}
#profiles_section .show_more .image_2 {
  display: none;
}
#profiles_section .show_more:hover .image_1 {
  display: none;
}
#profiles_section .show_more:hover .image_2 {
  display: inline-block;
}
#profiles_section #intro_container {
  text-align: left;
  padding-bottom: 60px;
}
#profiles_section #intro_container .left_panel {
  margin-bottom: 30px;
}
#profiles_section #intro_container .right_panel {
  text-align: left;
}
#profiles_section #intro_container .right_panel.desktop {
  display: none;
}
#profiles_section #intro_container .right_panel.mobile {
  display: flex;
  text-align: left;
  float: none;
  flex-wrap: wrap;
  justify-content: space-between;
}
#profiles_section #intro_container .right_panel.mobile .profiles_selector_1 {
  margin-left: 0;
}
#profiles_section #intro_container .right_panel.mobile .profiles_selector_3 {
  margin-left: 0;
  margin-top: 0;
}
#profiles_section #intro_container .right_panel.mobile .profiles_selector_2 {
  margin-left: 0;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}
#profiles_section #intro_container .right_panel.mobile .team-members-search {
  width: 100%;
}
#profiles_section #intro_container h2,
#profiles_section #intro_container p {
  color: #000;
}
#profiles_section #intro_container .profiles_selector {
  margin-left: 15px;
}
#profiles_section #intro_container .profiles_selector:hover, #profiles_section #intro_container .profiles_selector.active {
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0);
}
#profiles_section #intro_container .profiles_selector_1 {
  margin-left: 5px;
}
#profiles_section #intro_container .profiles_selector_2 {
  margin-top: 15px;
}
#profiles_section .full_link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 888;
}
#profiles_section #leadership_team .profile {
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  padding-bottom: 33.33%;
}
#profiles_section #leadership_team .profile.active .profile_info,
#profiles_section #leadership_team .profile.active .profile_content {
  visibility: visible;
  opacity: 1;
}

#initial_loader,
#leadership_loader {
  margin: -9px auto 50px auto;
  position: absolute;
  text-indent: -9999em;
  left: 0;
  right: 0;
  top: 50%;
}

.loader:before,
.loader:after,
.loader {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  display: none;
  margin: 0 auto 50px auto;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}

@-webkit-keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em rgba(0, 0, 0, 0.2);
  }
  40% {
    box-shadow: 0 2.5em 0 0 rgba(0, 0, 0, 0.2);
  }
}
@keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em rgba(0, 0, 0, 0.2);
  }
  40% {
    box-shadow: 0 2.5em 0 0 rgba(0, 0, 0, 0.2);
  }
}
#testimonials_container {
  padding: 0;
  position: relative;
  background: #0259af;
}
#testimonials_container h2 {
  margin-bottom: 40px;
}
#testimonials_container .testimonial {
  position: relative;
  padding: 60px 0 210px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: none;
  text-align: center;
}
#testimonials_container .testimonial.active {
  display: block;
}
#testimonials_container .testimonial .wrap {
  position: relative;
  z-index: 2;
}
#testimonials_container .testimonial .testimonial_excerpt_1 {
  font-size: 1.1em;
  float: left;
  width: 100%;
  margin-bottom: 40px;
}
#testimonials_container .testimonial .testimonial_excerpt_2 {
  font-style: italic;
  float: left;
  width: 100%;
}
#testimonials_container .fade#blue_fade {
  background: #00ccff;
  z-index: 0;
  display: none;
  opacity: 0.8;
}
#testimonials_container .fade {
  display: none;
  z-index: 1;
}
#testimonials_container #play_button {
  display: none;
}
#testimonials_container .outer-wrap {
  position: relative;
}

.testimonials_nav {
  position: absolute;
  width: 100%;
  z-index: 5;
  bottom: 60px;
  text-align: center;
}
.testimonials_nav .testimonial_button {
  opacity: 0.2;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.testimonials_nav .testimonial_button:hover {
  opacity: 1;
}
.testimonials_nav .testimonial_button.active {
  opacity: 1;
}
.testimonials_nav .slick-prev,
.testimonials_nav .slick-next {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.testimonials_nav .slick-prev {
  left: 20px;
}
.testimonials_nav .slick-next {
  right: 20px;
}
.testimonials_nav .slick-prev:before {
  background-image: url(../images/arrow-left-white.png);
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.testimonials_nav .slick-next:before {
  background-image: url(../images/arrow-right-white.png);
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonial_selector {
  color: #fff;
  text-align: center;
  display: inline-block;
  padding: 0 30px;
  max-width: 80%;
}
.testimonial_selector .photo_container {
  width: 70px;
  height: 70px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  float: left;
  margin-right: 10px;
  display: table-cell;
}
.testimonial_selector .testimonial_author_info {
  display: table-cell;
  text-align: left;
  position: relative;
  top: 10px;
}
.testimonial_selector .testimonial_author_info p {
  margin: 0;
  line-height: 1.2;
}
.testimonial_selector .testimonial_author_info p.author_company {
  font-family: "apercu-light", Arial;
  color: #fff;
  font-size: 0.9em;
}

#play_button {
  position: absolute;
  top: 50%;
  margin-top: -27px;
  left: 15%;
  width: 55px;
  height: 55px;
  border: 2px solid #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  background-image: url(../images/triangle.png);
  background-repeat: no-repeat;
  background-size: 16px 25px;
  background-position: center left 20px;
}

#play_button_2 {
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  display: block;
  position: relative;
}
#play_button_2:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
  position: absolute;
  top: 50%;
  left: 5px;
  right: 0;
  margin: -12px auto 0 auto;
}

#play_button_3,
.play_button_3 {
  width: 60px;
  height: 60px;
  border: 2px solid #99cc33;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#play_button_3:after,
.play_button_3:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #99cc33;
  position: absolute;
  top: 50%;
  left: 5px;
  right: 0;
  margin: -12px auto 0 auto;
}

#social_section h2 {
  color: #000;
  float: left;
  margin-bottom: 20px;
}
#social_section h3 {
  color: #2659A9;
  line-height: 1.4;
  margin-bottom: 0;
}
#social_section .global-btn {
  margin-bottom: 30px;
}
#social_section .date {
  font-family: "apercu-light", Arial;
  font-size: 0.75em;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
}
#social_section .title_container {
  float: left;
  width: 100%;
}
#social_section .post-wrapper {
  overflow: hidden;
}
#social_section .posts-wrap .posts-title {
  margin-top: 0;
  margin-bottom: 20px;
  width: 100%;
}
#social_section .posts-wrap .global-btn {
  float: left;
  margin-bottom: 30px;
}
#social_section .post_excerpt {
  float: left;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px 0 50px 0;
  line-height: 1.6;
}
#social_section .post_excerpt .excerpt-read-more {
  display: none;
}
#social_section .post_excerpt .read_more {
  color: #000;
}
#social_section .post_excerpt .read_more .button_arrow {
  margin-right: 15px;
  float: left;
}
#social_section .post_excerpt .read_more .btn_text {
  float: left;
}
#social_section .twitter_icon {
  float: left;
  margin-right: 15px;
  margin-top: 26px;
}

#twitter_feed {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#twitter_feed .tweet {
  font-style: italic;
  color: #000;
  margin-bottom: 10px;
}
#twitter_feed .timePosted {
  font-family: "apercu-light", Arial;
  font-size: 0.9em;
  margin-top: 0;
}
#twitter_feed ul {
  margin: 0;
}
#twitter_feed li {
  margin: 30px 0;
}

#twitter_section {
  background-color: #2659A9;
}
#twitter_section .twitter-heading {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 26px;
}
#twitter_section .twitter-heading h2 {
  color: #fff;
}
#twitter_section h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.4rem;
  color: #fff;
  margin-left: 12px;
}
#twitter_section .twitter-link {
  display: flex;
  align-items: center;
}
#twitter_section .twitter-link .twitter_icon {
  border-color: #fff;
}
#twitter_section .twitter-link .twitter_icon i {
  color: #fff;
}
#twitter_section #twitter_feed {
  border-color: #fff;
}
#twitter_section #twitter_feed ul {
  justify-content: space-between;
}
#twitter_section #twitter_feed ul li p {
  color: #fff;
  font-style: normal !important;
  line-height: 1.6;
  word-wrap: break-word;
}
#twitter_section #twitter_feed ul li p a {
  color: #97C83B;
}
#twitter_section #twitter_feed ul li p.timePosted a {
  color: #fff;
  font-style: normal;
  opacity: 0.6;
  margin-top: 32px;
  font-size: 14px;
  display: block;
}

/* About */
#about_section h2 {
  color: #99cc33;
  margin-bottom: 30px;
}
#about_section h1 {
  color: #99cc33;
  margin-bottom: 30px;
  font-size: 1.75em;
  line-height: 1.2em;
}
#about_section .about_us_image {
  margin-top: 40px;
  width: 100%;
}
#about_section .about_us_image.desktop {
  display: none;
}
#about_section .person_video_container {
  position: relative;
  padding: 50px 0 0 0;
}
#about_section .person_video_container a {
  position: relative;
  padding-left: 70px;
  line-height: 1.5;
  display: inline-block;
}
#about_section .photo_container {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 0;
  margin-top: -25px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.2);
  display: inline-block;
}
#about_section .photo_container.no_thumb {
  background-size: inherit;
  background-size: 20px auto;
}
#about_section #play_button {
  position: absolute;
  margin-top: -15px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-size: 10px auto;
  background-position: center;
  background-position: center left 10px;
}
#about_section .fade {
  background: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}

#history_section {
  background-color: rgba(0, 0, 0, 0.02);
}
#history_section h2 {
  color: #00ccff;
  margin-bottom: 30px;
}

.about_page_section#profiles_section #intro_container {
  padding-top: 60px;
}
.about_page_section#profiles_section #intro_container h2 {
  color: #00ccff;
  margin-bottom: 30px;
}
.about_page_section#profiles_section #intro_container .right_panel {
  padding-top: 30px;
}

#non_profit_container {
  padding: 0;
  position: relative;
}
#non_profit_container .non_profit_section {
  position: relative;
  padding: 60px 0 100px 0;
  background-color: #0259af;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  color: #fff;
}
#non_profit_container .non_profit_section .wrap {
  position: relative;
}
#non_profit_container .non_profit_section .non_profit_content {
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
#non_profit_container .non_profit_section .non_profit_content h2 {
  margin-bottom: 30px;
}
#non_profit_container .fade {
  background: #0259af;
}
#non_profit_container .white-global-btn {
  margin-top: 30px;
}
#non_profit_container #play_button_2 {
  margin: 0 auto;
}

#partners_logo_section {
  padding-top: 0;
}

.logos_container {
  margin-top: 10px;
  text-align: center;
  justify-content: center;
  margin-bottom: 60px;
}
.logos_container .logo a {
  display: block;
}
.logos_container .logo img {
  float: none;
  margin-top: 30px;
  width: auto;
  max-width: 60%;
}
.logos_container .logo.last img {
  margin-top: 30px;
  max-width: 80%;
}

#small_business_section h2 {
  color: #99cc33;
}
#small_business_section img {
  margin-top: 55px;
}
#small_business_section img.desktop {
  display: none;
}
#small_business_section img.mobile {
  margin-top: 40px;
  width: 100%;
  display: block;
}
#small_business_section .logos_wrapper {
  margin: 0 0 40px;
}
#small_business_section .person_video_container {
  position: relative;
  padding: 30px 0 20px 0;
}
#small_business_section .person_video_container a {
  position: relative;
  padding-left: 70px;
  line-height: 1.5;
  display: inline-block;
}
#small_business_section .photo_container {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 0;
  margin-top: -25px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.2);
  display: inline-block;
}
#small_business_section .photo_container.no_thumb {
  background-size: inherit;
  background-size: 20px auto;
}
#small_business_section #play_button {
  position: absolute;
  margin-top: -15px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-size: 10px auto;
  background-position: center;
  background-position: center left 10px;
}
#small_business_section .fade {
  background: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}

/* Services */
.single-service #services_nav .service_button {
  text-align: left;
}
.single-service #services_nav .service_button.active a {
  font-size: 1.4em;
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.single-service #services_nav .service_button.active a h1 {
  font-size: 1.4em;
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

#services_intro_section {
  padding-bottom: 0;
}
#services_intro_section h2 {
  color: #00ccff;
  margin-bottom: 30px;
}
#services_intro_section h1 {
  color: #00ccff;
  margin-bottom: 30px;
  font-size: 1.75em;
  line-height: 1.2em;
}
#services_intro_section .services_image {
  margin-top: 40px;
  width: 100%;
  float: left;
}
#services_intro_section .services_image.desktop {
  display: none;
}
#services_intro_section .btn_container {
  height: 34px;
  float: left;
}
#services_intro_section #read_more_text {
  display: none;
  float: left;
}

/*
#services_nav {
height: 80px;
text-align: center;
/*background-color: rgba(0,0,0,0.05);*/
/*padding: 0;
background: white;
z-index: 980;
overflow: hidden;

&.fixed {
position: fixed;
top: 78px;
left: 0;
}

.wrap {
position: relative;
}

.slick-prev,
.slick-next {
position: absolute;
top: 50%;
margin-top: -15px;
}

.slick-prev {
left: 20px;
}

.slick-next {
right: 20px;
}

#services_nav_container {

}

.border_line {
height: 2px;
position: absolute;
bottom: 0;
left: 0;
border-bottom: 2px solid #959595;
@include transition(all 0.2s ease-in-out);
width: 100%;
z-index: 2;
display: none;
}


.service_button {
font-size: 1.1em;
vertical-align: middle;
position: relative;
@include transition(all 0.2s ease-in-out);
border-bottom: 2px solid rgba(0,0,0,0.1);

&.no_border {
a {
border-color: transparent;
}
}

&.active {
background-color: #fff;
a {
-ms-transform: scale(1.4);
  -webkit-transform: scale(1.4);
   transform: scale(1.4);
}
}


a {
  display: block;
height: 80px;
line-height: 80px;
/*border-right: 2px solid rgba(0,0,0,0.1);*/
/*position: relative;
  @include transition(all 0.2s ease-in-out);
}
}/*


#finance_button {
&.active {
border-bottom: 2px solid $green;

a, a:visited {
color: $green;
}
}
}

#technology_button {
&.active {
border-bottom: 2px solid $dark-blue;

a, a:visited {
color: $dark-blue;
}
}

}

#hr_button {
&.active {
border-bottom: 2px solid $blue;

a, a:visited {
color: $blue;
}
}
}

}*/
#services_nav {
  text-align: center;
  /*background-color: rgba(0,0,0,0.05);*/
  padding: 0;
  overflow: hidden;
  background: white;
  z-index: 980;
}
#services_nav.fixed {
  position: fixed;
  top: 78px;
  left: 0;
}
#services_nav #services_nav_container,
#services_nav .wrap {
  position: relative;
}
#services_nav .service_button {
  font-size: 1.1em;
  vertical-align: middle;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  /*
  &:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  visibility: hidden;
  opacity: 0;
  @include transition(opacity 0.3s ease-in-out, border-color 0.3s ease-in-out);
  }
  */
}
#services_nav .service_button.active {
  background-color: #fff;
}
#services_nav .service_button.active a {
  -ms-transform: scale(1.4);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}
#services_nav .service_button.active a {
  border-color: transparent;
}
#services_nav .service_button.active:before {
  opacity: 1;
  visibility: visible;
}
#services_nav .service_button a {
  display: block;
  height: 80px;
  line-height: 80px;
  /*border-right: 2px solid rgba(0,0,0,0.1);*/
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#services_nav #finance_button {
  /*&:before {
  border-bottom: 5px solid $green;
  }*/
}
#services_nav #finance_button.active {
  border-bottom: 2px solid #99cc33;
}
#services_nav #finance_button.active a,
#services_nav #finance_button.active a:visited {
  color: #99cc33;
}
#services_nav #technology_button {
  /*&:before {
  border-bottom: 5px solid $dark-blue;
  }*/
}
#services_nav #technology_button.active {
  border-bottom: 2px solid #0259af;
}
#services_nav #technology_button.active a,
#services_nav #technology_button.active a:visited {
  color: #0259af;
}
#services_nav #training_button {
  /*&:before {
  border-bottom: 5px solid $dark-blue;
  }*/
}
#services_nav #training_button.active {
  border-bottom: 2px solid #043f90;
}
#services_nav #training_button.active a,
#services_nav #training_button.active a:visited {
  color: #0259af;
}
#services_nav #hr_button {
  /*&:before {
  border-bottom: 5px solid $blue;
  }*/
}
#services_nav #hr_button.active {
  border-bottom: 2px solid #00ccff;
}
#services_nav #hr_button.active a,
#services_nav #hr_button.active a:visited {
  color: #00ccff;
}
#services_nav .slick-prev,
#services_nav .slick-next {
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
#services_nav .slick-prev {
  left: 20px;
}
#services_nav .slick-next {
  right: 20px;
}

#services_section {
  padding-top: 30px;
}
#services_section.margin_top {
  margin-top: 82px;
}
#services_section .service_container {
  display: none;
}
#services_section .service_container.active {
  display: block;
}
#services_section .service_container h1 {
  padding-bottom: 60px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}
#services_section .service_container .left_panel ul {
  margin: 0;
}
#services_section .service_container .left_panel ul li {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
#services_section .service_container .left_panel ul li.active a {
  color: #000;
}
#services_section .service_container .left_panel ul li a {
  display: block;
  padding: 20px 0;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  font-size: 1.1em;
}
#services_section .service_container .left_panel ul li a:hover {
  color: #000;
}
#services_section .right_panel {
  margin-top: 60px;
}
#services_section .right_panel h3 {
  color: #000;
  margin-top: 19px;
}
#services_section .finance_content ul {
  margin-top: 40px;
  list-style-image: url(../images/green_list_circle.png);
  padding-left: 10px;
}
#services_section .finance_content ul li {
  padding-left: 20px;
  margin: 15px 0;
  opacity: 0;
  display: none;
}
#services_section .training_content ul {
  margin-top: 40px;
  list-style-image: url(../images/green_list_circle.png);
  padding-left: 10px;
}
#services_section .training_content ul li {
  padding-left: 20px;
  margin: 15px 0;
  opacity: 0;
  display: none;
}
#services_section .hr_content ul {
  margin-top: 40px;
  list-style-image: url(../images/blue_list_circle.png);
  padding-left: 10px;
}
#services_section .hr_content ul li {
  padding-left: 20px;
  margin: 15px 0;
  opacity: 0;
  display: none;
}
#services_section .technology_content ul {
  margin-top: 40px;
  list-style-image: url(../images/dark_blue_list_circle.png);
  padding-left: 10px;
}
#services_section .technology_content ul li {
  padding-left: 20px;
  margin: 15px 0;
  opacity: 0;
  display: none;
}
#services_section #finance_section h1 {
  color: #99cc33;
}
#services_section #finance_section .expand::before {
  border-left: 6px solid #99cc33;
}
#services_section #finance_section .expand:hover,
#services_section #finance_section .expand strong:hover {
  color: #99cc33;
}
#services_section #finance_section .expand.active, #services_section #finance_section .expand.active strong {
  color: #99cc33;
}
#services_section #hr_section h1 {
  color: #00ccff;
}
#services_section #hr_section .expand::before {
  border-left: 6px solid #00ccff;
}
#services_section #hr_section .expand:hover,
#services_section #hr_section .expand strong:hover {
  color: #00ccff;
}
#services_section #hr_section .expand.active, #services_section #hr_section .expand.active strong {
  color: #00ccff;
}
#services_section #technology_section h1 {
  color: #0259af;
}
#services_section #technology_section .expand::before {
  border-left: 6px solid #0259af;
}
#services_section #technology_section .expand:hover,
#services_section #technology_section .expand strong:hover {
  color: #0259af;
}
#services_section #technology_section .expand.active, #services_section #technology_section .expand.active strong {
  color: #0259af;
}
#services_section .service_content {
  display: none;
}
#services_section .service_content.active {
  display: block;
}
#services_section .service_content .expand {
  cursor: pointer;
  padding-left: 15px;
  position: relative;
  line-height: 1.2;
}
#services_section .service_content .expand::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
  -webkit-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
#services_section .service_content .expand strong {
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
#services_section .service_content .expand.active::before {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
#services_section .service_content .expand_text {
  display: none;
}
#services_section #insource_people {
  float: left;
  width: 100%;
  margin-top: 40px;
}
#services_section #insource_people h4 {
  color: #000;
  font-size: 1.3em;
  font-weight: 600;
}
#services_section #insource_people a {
  position: relative;
  padding-left: 70px;
  padding-right: 10px;
  /*
  span {
  line-height: $line-height;
  font-size: $font-size;
  display: block; /* Fallback for non-webkit */ /*
display: -webkit-box;
width: 100%;
height: $font-size*$line-height*$lines-to-show; /* Fallback for non-webkit */ /*
-webkit-line-clamp: $lines-to-show;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 0;
max-width: 250px;
}*/
}
#services_section #insource_people a p {
  margin: 0;
  line-height: 1.2;
}
#services_section #insource_people a p.person_name {
  font-size: 0.9em;
}
#services_section #insource_people a p.job_title {
  font-size: 0.8em;
}
#services_section #insource_people .photo_container {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 0;
  margin-top: -25px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.2);
  margin-right: 20px;
  display: inline-block;
}
#services_section #insource_people .photo_container.no_thumb {
  background-size: inherit;
  background-size: 20px auto;
}
#services_section #insource_people #play_button {
  position: absolute;
  margin-top: -15px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-size: 10px auto;
  background-position: center;
  background-position: center left 10px;
}
#services_section #insource_people .fade {
  background: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}

/* Careers */
#careers_intro_section,
.careers_section {
  padding: 80px 0;
  width: 100%;
  float: left;
}
@supports not (-ms-high-contrast: none) {
  #careers_intro_section .grid,
  .careers_section .grid {
    /* Non-IE styles here */
    display: -ms-grid;
    display: grid;
  }
}
#careers_intro_section .grid figure,
.careers_section .grid figure {
  max-height: 400px;
}
#careers_intro_section .grid .image-holder,
.careers_section .grid .image-holder {
  float: right;
}
#careers_intro_section h2,
.careers_section h2 {
  color: #99cc33;
  margin-bottom: 30px;
  margin-top: 0;
}
#careers_intro_section h1,
.careers_section h1 {
  color: #99cc33;
  margin-bottom: 30px;
  margin-top: 0;
  font-size: 1.75em;
  line-height: 1.2em;
}
#careers_intro_section img,
.careers_section img {
  vertical-align: bottom;
}
#careers_intro_section h3,
.careers_section h3 {
  opacity: 1;
  color: #000;
  margin: 0;
  font-size: 1.3em;
}
#careers_intro_section .careers_image,
.careers_section .careers_image {
  width: 100%;
  float: left;
}
#careers_intro_section--grey,
.careers_section--grey {
  background-color: #f8f9fa;
}
#careers_intro_section .careers_image.desktop,
.careers_section .careers_image.desktop {
  display: none;
}
#careers_intro_section .left_panel p:last-of-type,
.careers_section .left_panel p:last-of-type {
  padding-bottom: 40px;
}

.careers_section:last-of-type {
  padding-bottom: 50px !important;
}
.careers_section--top .grid figure {
  display: none;
}
.careers_section .grid {
  grid-gap: 30px;
}
.careers_section .grid .text {
  -ms-grid-row: 1;
}

#inside_insource_container {
  padding: 0;
  position: relative;
}
#inside_insource_container .outer-wrap {
  position: relative;
}
#inside_insource_container h2.green {
  color: #99cc33;
  margin-bottom: 40px;
  margin-top: 0;
}
#inside_insource_container .inside_insource {
  position: relative;
  padding: 100px 0 190px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: none;
  text-align: center;
}
#inside_insource_container .inside_insource.active {
  display: block;
}
#inside_insource_container .inside_insource .wrap {
  position: relative;
}
#inside_insource_container .inside_insource .white-global-btn {
  margin-top: 50px;
}
#inside_insource_container #play_button {
  left: auto;
  right: 15%;
}
#inside_insource_container .fade {
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(255, 255, 255, 0))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 100%); /* IE10+ */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#cc000000", endColorstr="#00ffffff",GradientType=1 ); /* IE6-9 */
}
#inside_insource_container #play_button_3 {
  position: relative;
  margin: 0 auto 40px auto;
}

.careers_videos_nav {
  position: absolute;
  width: 100%;
  z-index: 5;
  bottom: 40px;
  text-align: center;
}
.careers_videos_nav .careers_video_button {
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.careers_videos_nav .careers_video_button:hover {
  opacity: 1;
}
.careers_videos_nav .careers_video_button.active {
  opacity: 1;
}
.careers_videos_nav .video_link_item {
  display: inline-block;
}
.careers_videos_nav .slick-prev,
.careers_videos_nav .slick-next {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.careers_videos_nav .slick-prev {
  left: 0;
}
.careers_videos_nav .slick-next {
  right: 0;
}
.careers_videos_nav .slick-prev:before {
  background-image: url(../images/arrow-left-white.png);
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.careers_videos_nav .slick-next:before {
  background-image: url(../images/arrow-right-white.png);
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.careers_video_selector {
  color: #fff;
  text-align: center;
  display: inline-block;
  padding: 0 40px;
}
.careers_video_selector .photo_container {
  width: 70px;
  height: 70px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  float: left;
  margin-right: 20px;
  display: table-cell;
}
.careers_video_selector .careers_video_info {
  display: table-cell;
  text-align: left;
  position: relative;
  top: 10px;
}
.careers_video_selector .careers_video_info p {
  margin: 0;
  line-height: 1.5;
}

#jobs_section h4 {
  color: #000;
  font-size: 1.3em;
}
#jobs_section .left_panel ul {
  margin: 0;
}
#jobs_section .left_panel ul li {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
#jobs_section .left_panel ul li.active a {
  color: #000;
}
#jobs_section .left_panel ul li a {
  display: block;
  padding: 20px 0;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  font-size: 1.1em;
}
#jobs_section .left_panel ul li a:hover {
  color: #000;
}
#jobs_section .right_panel h3 {
  color: #000;
  margin-top: 29px;
}
#jobs_section .job_1 ul {
  margin-top: 40px;
  list-style-image: url(../images/green_list_circle.png);
  padding-left: 10px;
}
#jobs_section .job_1 ul li {
  padding-left: 20px;
  margin: 15px 0;
}
#jobs_section .job_2 ul {
  margin-top: 40px;
  list-style-image: url(../images/blue_list_circle.png);
  padding-left: 10px;
}
#jobs_section .job_2 ul li {
  padding-left: 20px;
  margin: 15px 0;
}
#jobs_section .job_3 ul {
  margin-top: 40px;
  list-style-image: url(../images/dark_blue_list_circle.png);
  padding-left: 10px;
}
#jobs_section .job_3 ul li {
  padding-left: 20px;
  margin: 15px 0;
}
#jobs_section .job_content {
  display: none;
}
#jobs_section .job_content.active {
  display: block;
}
#jobs_section .job_content .btn_container {
  margin-top: 30px;
}
#jobs_section .job_content .btn_container .global-btn {
  padding: 0 34px;
}

/* Contact */
#contact_section h2 {
  color: #0259af;
  margin-bottom: 40px;
}
#contact_section h1 {
  color: #0259af;
  margin-bottom: 40px;
  font-size: 1.75em;
  line-height: 1.2em;
}
#contact_section .right_panel ul {
  margin: 30px 0 0 0;
  float: left;
  width: 100%;
}
#contact_section .right_panel ul li {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
#contact_section .right_panel ul li a {
  display: block;
  padding: 20px 0;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  padding-left: 50px;
  font-size: 0.9em;
}
#contact_section .right_panel ul li a:hover {
  color: #000;
}
#contact_section .icon_container {
  position: absolute;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 0;
  background: transparent;
  color: transparent;
  padding: 0;
  border: 2px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  color: #000;
  -webkit-transition: background-color 0.14s ease-in-out, color 0.14s ease-in-out, border 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out, color 0.14s ease-in-out, border 0.14s ease-in-out;
  top: 50%;
  margin-top: -18px;
  left: 0;
}
#contact_section .icon_container ul {
  margin: 0;
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}
#contact_section .icon_container ul li {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  border: 0;
}
#contact_section #email_icon {
  border: 2px solid #99cc33;
  color: #99cc33;
}
#contact_section #phone_icon {
  border: 2px solid #00ccff;
  color: #00ccff;
}
#contact_section #location_icon {
  border: 2px solid #0259af;
  color: #0259af;
  top: auto;
  margin-top: 0;
}
#contact_section .location_info {
  position: relative;
  padding: 20px 0;
}
#contact_section .addresses_container {
  float: left;
  padding-left: 50px;
  width: 100%;
}
#contact_section .addresses_container p {
  margin: 0;
  list-style: 1.2;
  font-size: 0.9em;
}
#contact_section .addresses_container .location_title {
  font-weight: 600;
  color: #000;
}
#contact_section .addresses_container #address_3,
#contact_section .addresses_container #address_2 {
  margin-top: 30px;
}
#contact_section .addresses_container .address {
  float: left;
  width: 100%;
}

#form_section {
  padding-top: 0;
  overflow: hidden;
}
#form_section [type=checkbox] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px !important;
}
#form_section label {
  float: left;
  text-align: center;
  width: 31.33%;
  margin: 20px 1%;
  cursor: pointer;
  z-index: 500;
}
#form_section label p {
  font-size: 0.85em;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: normal;
  font-size: 1.1rem;
  margin: auto 0;
}
#form_section .gfield_checkbox {
  float: left;
  width: 100%;
}
#form_section .radio_label {
  padding: 0 20px;
  margin-top: 0;
  line-height: normal;
}
#form_section [type=checkbox] + span::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: -0.25em;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid #99cc33;
  transition: 0.3s ease all;
}
#form_section [type=checkbox]:checked + span::before {
  background: #99cc33;
}
#form_section [type=checkbox]:focus + span::after {
  content: "";
  font-size: 1.5em;
  line-height: 1;
  vertical-align: -0.125em;
}
#form_section #input_1_12 [type=checkbox] + span::before {
  border-radius: 5px;
  width: 27px;
  height: 27px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}
#form_section #input_1_12 label {
  align-items: center;
}
#form_section #input_1_12 label p {
  margin: auto 0;
  font-size: 1.1rem;
}
#form_section #input_1_12 label span {
  height: 27px;
}
#form_section #input_1_12 [type=checkbox]:checked + span::before {
  border: 3px solid #99cc33;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='11' viewBox='0 0 15 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.7254 0.268485C15.0915 0.626466 15.0915 1.20687 14.7254 1.56485L5.35041 10.7315C4.9843 11.0895 4.3907 11.0895 4.02459 10.7315L0.274587 7.06485C-0.0915291 6.70687 -0.0915291 6.12647 0.274587 5.76849C0.640704 5.41051 1.2343 5.41051 1.60041 5.76849L4.6875 8.78697L13.3996 0.268485C13.7657 -0.0894952 14.3593 -0.0894952 14.7254 0.268485Z' fill='white'/%3E%3C/svg%3E%0A");
  background-color: #99cc33;
}
#form_section #input_1_12 [type=checkbox]:checked ~ p {
  color: rgb(0, 0, 0);
}
#form_section #hr + span::before,
#form_section #choice_12_1 + span::before {
  border: 2px solid #00ccff;
}
#form_section #technology + span::before,
#form_section #choice_12_2 + span::before {
  border: 2px solid #0259af;
}
#form_section #careers + span::before,
#form_section #choice_12_3 + span::before {
  border: 2px solid #000;
}
#form_section #other + span::before,
#form_section #choice_12_4 + span::before {
  border: 2px solid #ccc;
}
#form_section #hr:checked + span::before,
#form_section #choice_12_1:checked + span::before {
  background: #00ccff;
}
#form_section #technology:checked + span::before,
#form_section #choice_12_2:checked + span::before {
  background: #0259af;
}
#form_section #careers:checked + span::before,
#form_section #choice_12_3:checked + span::before {
  background: #000;
}
#form_section #other:checked + span::before,
#form_section #choice_12_4:checked + span::before {
  background: #ccc;
}
#form_section .gform_wrapper.two-column_wrapper li#field_1_12 {
  float: left;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 20px 0;
}
#form_section .gform_wrapper.two-column_wrapper .top_label input.large {
  width: 100%;
}
#form_section .gform_wrapper {
  overflow: hidden;
}
#form_section .gform_wrapper.two-column_wrapper .gsection {
  border: 0;
  margin: 0;
  padding: 0;
}
#form_section .gform_wrapper.two-column_wrapper ul.gform_fields.gform_column {
  display: block;
  float: left;
  width: 100%;
}
#form_section .gform_wrapper.two-column_wrapper .top_label textarea.textarea {
  border-top: 0;
}
#form_section .gform_wrapper.two-column_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li,
#form_section .gform_wrapper.two-column_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li {
  list-style-type: none !important;
}
#form_section .gform_wrapper ul li.gfield {
  position: relative;
}
#form_section span.gfield_error {
  color: red;
  font-family: "apercu-light", Arial;
  font-size: 0.7em;
  position: absolute;
  right: 20px;
  left: auto;
  top: 50%;
  margin-top: -8px;
  line-height: 1.2;
  text-align: right;
  width: auto;
}
#form_section #field_1_12 span.gfield_error {
  top: 40px;
  margin-top: 0;
  line-height: 1.8;
}
#form_section #field_1_8 span.gfield_error {
  top: 20px;
  margin-top: 0;
  line-height: 1.8;
}

/* News */
#latest_news .excerpt-read-more {
  display: none;
}
#latest_news .article-header {
  position: relative;
  height: auto;
}
#latest_news .entry-content {
  margin-top: 0;
  padding-bottom: 0;
}
#latest_news .read_more {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  right: 0;
}
#latest_news .single-title {
  font-size: 1.5em;
}
#latest_news #single-title-1 {
  color: #99cc33;
}
#latest_news #single-title-2 {
  color: #00ccff;
}
#latest_news #single-title-3 {
  color: #0259af;
}
#latest_news .byline {
  color: #000;
}
#latest_news .featured_image {
  padding-bottom: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#latest_news #post_content .entry-content .author_info_container {
  margin-bottom: 60px;
}
#latest_news .post_excerpt {
  margin-bottom: 60px;
}
#latest_news article {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding: 60px 0;
}
#latest_news .loader {
  margin-top: 30px;
}
#latest_news .load_more {
  display: none;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.02);
  color: #000;
  line-height: 60px;
  margin-top: 60px;
}
#latest_news .author_info_container .author_info {
  display: none;
}

/* Author Bio */
.author-bio .entry-content {
  margin: 0;
}
.author-bio h2 {
  color: black;
}
.author-bio h1 {
  margin-top: 0;
  font-size: 1.75em;
  line-height: 1.2em;
  margin-bottom: 0.375em;
}
.author-bio .avatar_container {
  width: 160px;
  height: 160px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.author-bio .author_left_panel,
.author-bio .author_right_panel {
  float: left;
  width: 100%;
}
.author-bio .linkedin_icon {
  margin: 20px 0;
}

#scroll_up {
  position: fixed;
  bottom: 5%;
  right: 5%;
  display: none;
}
#scroll_up img {
  width: 40px;
}

#gform_wrapper_1 div.validation_error {
  color: red !important;
  font-size: 1em !important;
  font-family: "apercu-light", Arial !important;
  font-weight: normal !important;
}

#gform_wrapper_1 li.gfield.gfield_error,
#gform_wrapper_1 li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: transparent;
  margin-bottom: 0 !important;
  padding: 0 !important;
  border-top: 0;
  border-bottom: 0;
}

#gform_wrapper_1 .gfield_description {
  padding: 0 20px;
  width: 100% !important;
  color: red;
  font-family: "apercu-light", Arial;
  font-size: 0.7em;
}

#gform_wrapper_1 .top_label .gfield_error .ginput_container {
  max-width: 100% !important;
}

#gform_wrapper_1 .top_label .gfield_error {
  width: 100% !important;
}

#gform_wrapper_1.gf_browser_chrome .gform_body ul.gform_fields li.gfield .ginput_container #recaptcha_widget_div #recaptcha_area {
  width: 100% !important;
}

#gform_wrapper_1 textarea.large {
  height: 232px;
  border-bottom: 0 !important;
}

.gform_footer.top_label {
  float: left;
  width: 100%;
}

#recaptcha_widget_div {
  float: left;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  overflow: auto;
}
#recaptcha_widget_div #recaptcha_table,
#recaptcha_widget_div #recaptcha_area {
  width: 100% !important;
}
#recaptcha_widget_div #recaptcha_table {
  border: 0 !important;
}
#recaptcha_widget_div input {
  height: 25px;
  line-height: 25px;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding: 0 10px;
}
#recaptcha_widget_div #recaptcha_privacy a,
#recaptcha_widget_div #recaptcha_privacy a:visited {
  color: #0259af;
  font-size: 0.7em;
}

.captcha_error {
  float: left;
  width: 100%;
  text-align: left;
}

.article_content ul {
  margin: 1.5em 0;
  list-style-image: url(../images/green_list_circle.png);
  padding-left: 25px;
}
.article_content ul li {
  padding-left: 15px;
  margin: 10px 0;
}

#profile_content {
  background: #000;
  text-align: left;
  color: #fff;
  display: block;
  padding: 60px 0;
}
#profile_content .profile_image {
  width: 100%;
  padding-bottom: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.1);
}
#profile_content .profile_image.no_thumb {
  background-size: inherit;
}
#profile_content .profile_basic_info {
  width: 100%;
  padding: 30px;
  background-color: #28282e;
  line-height: 1.2;
}
#profile_content .profile_basic_info ul {
  margin: 0;
}
#profile_content .profile_basic_info p {
  margin: 0;
}
#profile_content .profile_basic_info .name {
  font-size: 1.2em;
}
#profile_content .profile_basic_info .job_title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
#profile_content .profile_basic_info .linkedin_icon {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-right: 10px;
  display: inline-block;
}
#profile_content .profile_basic_info .linkedin_icon:hover {
  border-color: #fff;
  background-color: #fff;
  color: #000;
}
#profile_content .profile_basic_info #play_button {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0;
  left: 0;
  background-size: 12px auto;
  background-position: center left 14px;
  display: inline-block;
  border-color: rgba(255, 255, 255, 0.2);
}
#profile_content .left_content,
#profile_content .right_content {
  display: block;
}
#profile_content .left_content {
  width: 100%;
  float: left;
}
#profile_content .right_content {
  font-size: 1em;
  line-height: 1.3;
  overflow: hidden;
  z-index: 2;
  margin-top: 30px;
  width: 100%;
  float: left;
}
#profile_content .profile_desc_1 {
  float: left;
  width: auto;
  width: 100%;
}
#profile_content .profile_desc_2 {
  font-size: 0.9em;
  float: left;
  width: 100%;
}
#profile_content blockquote {
  margin: 0 0 1.5em 0;
  padding: 0 0 0 1.5em;
  border-left: 3px solid #99cc33;
  font-style: italic;
  color: #fff;
}
#profile_content blockquote p {
  margin-top: 20px;
}
#profile_content .back {
  color: #99cc33;
}
#profile_content .btn_container {
  margin-bottom: 40px;
}

.careers_section {
  float: left;
  position: relative;
  overflow: hidden;
}
.careers_section:nth-of-type(3) .float_left {
  width: 100%;
}
.careers_section h2 {
  color: #99cc33;
}
.careers_section h3 {
  color: #000;
  font-size: 1.3em;
}
.careers_section--top .text a {
  margin-top: 50px;
  display: table;
}
.careers_section figure {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
}
.careers_section figure:after {
  display: block;
  content: "";
  width: 100%;
  padding-bottom: 80%;
}
.careers_section figure .play-button {
  position: absolute !important;
  top: 50%;
  left: 50%;
  -moz-transform: perspective(1px) translate(-50%, -50%);
  -o-transform: perspective(1px) translate(-50%, -50%);
  -ms-transform: perspective(1px) translate(-50%, -50%);
  -webkit-transform: perspective(1px) translate(-50%, -50%);
  transform: perspective(1px) translate(-50%, -50%);
}

.careers_benefits {
  background: #0259af;
  position: relative;
  clear: both;
}
.careers_benefits .white-btn {
  clear: both;
  margin-top: 30px;
  display: table-cell;
  float: left;
}
.careers_benefits h2 {
  color: #fff;
  margin-bottom: 30px;
}
.careers_benefits #thenSome {
  display: none;
}
.careers_benefits ul {
  margin-top: 40px;
  list-style: circle;
  max-width: 80%;
  margin-left: 30px;
}
.careers_benefits ul:last-of-type {
  margin-top: 0;
}
.careers_benefits ul:last-of-type li {
  margin-top: 0;
}
.careers_benefits ul li {
  color: #fff;
  font-size: 1em;
  opacity: 0.6;
  margin: 20px 0;
}

.careers_promise {
  position: relative;
  background-color: #f8f9fa;
}
.careers_promise h2 {
  color: #99cc33;
}
.careers_promise p {
  margin: 40px 0 60px 0;
  font-style: italic;
}
.careers_promise img {
  float: right !important;
  position: absolute;
  top: 50% !important;
  right: 0;
  -moz-transform: perspective(1px) translate(-25%, -50%);
  -o-transform: perspective(1px) translate(-25%, -50%);
  -ms-transform: perspective(1px) translate(-25%, -50%);
  -webkit-transform: perspective(1px) translate(-25%, -50%);
  transform: perspective(1px) translate(-25%, -50%);
  max-width: 35%;
  display: none;
}

.careers_vacancies {
  position: relative;
}
.careers_vacancies h2 {
  color: #99cc33;
}
.careers_vacancies ul li {
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.careers_vacancies ul li a {
  display: block;
  padding: 20px 0;
}
.careers_vacancies ul li a:hover a {
  color: #000;
  opacity: 1;
}

* {
  outline: none !important;
}

/* Equality Section */
.equality-button {
  margin-left: 1rem;
}

.equality p {
  line-height: 26px;
}
.equality#equality_section {
  padding-bottom: 0px;
}
.equality#equality_section h2 {
  color: black;
  margin-bottom: 2rem;
  font-size: 2rem;
  letter-spacing: 0.1rem;
}
.equality#equality_section h1 {
  color: black;
  margin-bottom: 2rem;
  font-size: 2rem;
  letter-spacing: 0.1rem;
}
.equality#equality_section p {
  margin-top: 0rem;
  margin-bottom: 2rem;
  line-height: 26px;
}
.equality#commitment_section {
  padding-top: 0;
  padding-bottom: 0;
}
.equality#commitment_section h2 {
  color: black;
  margin-bottom: 2rem;
  margin-top: 0;
  font-size: 2rem;
  letter-spacing: 0.1rem;
}
.equality#commitment_section p {
  margin-top: 0px;
}
.equality#commitment_section .left_panel ul {
  margin-top: 2rem;
}
.equality#commitment_section .right_panel ul {
  margin-top: 0;
}
.equality#commitment_section .right_panel ul li:first-child {
  margin-top: 0;
}
.equality#closing_section {
  padding-top: 0;
  padding-bottom: 0;
}
.equality ul {
  margin-left: 1rem;
}
.equality ul li {
  padding-left: 1rem;
  margin: 1em 0;
  line-height: 26px;
  position: relative;
}
.equality ul li:before {
  position: absolute;
  left: -1rem;
  content: "•";
  font-size: 32px;
  color: #808080;
}
.equality#video_section {
  padding-top: 0px;
}
.equality#video_section h2 {
  color: black;
  margin-bottom: 2rem;
  font-size: 2rem;
  letter-spacing: 0.1rem;
}
.equality#video_section p {
  margin-top: 0rem;
  margin-bottom: 2rem;
  line-height: 26px;
}
.equality#video_section .embedded-video iframe {
  padding-top: 10px;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

input[type=text].team-members-search {
  height: 34px;
  border-radius: 200px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background-image: url("../images/search-icon.svg");
  background-repeat: no-repeat;
  background-position: 95% 50%;
}

input[type=text].team-members-search.searching {
  background-color: #FAFAFA;
}

.team-members-search__form {
  position: relative;
  margin-top: 20px;
}

@media (min-width: 767px) {
  input[type=text].team-members-search {
    margin-left: 6px;
  }
  .team-members-search__form {
    margin-top: 0;
  }
}
.team-members-search__reset {
  position: absolute;
  right: 35px;
  top: 0;
  font-weight: 900;
  border-radius: 100%;
  border: 0;
  background: none;
  font-size: 1.5rem;
  display: none;
}

/* autocomplete */
.ui-widget.ui-widget-content {
  position: absolute;
  list-style: none;
  z-index: 1000;
  background-color: #FAFAFA;
  border-radius: 10px;
  border-color: #FAFAFA;
  padding: 2px 22px;
  font-size: 16px;
  max-width: 450px;
}

@media only screen and (max-width: 768px) {
  .ui-widget.ui-widget-content {
    max-width: 320px;
  }
}
li.ui-menu-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(101, 101, 101, 0.5);
  color: #656565;
  font-weight: 600;
  cursor: pointer;
}

li.ui-menu-item:last-child {
  border-bottom: none;
}

.ui-menu .ui-menu-item-wrapper {
  opacity: 0;
  padding: 0 15px 0 0;
  position: relative;
  background: url("../images/arrow.svg") no-repeat 100% 50%;
}

/* Partners logos */
.text-black {
  color: #000;
}

.partners_logos {
  margin-top: 0;
}

.flex {
  display: block;
}

.data_security_section {
  background-color: rgba(0, 0, 0, 0.02);
}

.data_security_section h2 {
  color: #0259af;
}

.data_security_section .left_text_panel {
  width: 100%;
}

.data_security_section .right_image {
  width: 100%;
  text-align: center;
}

.data_security_section .right_image img {
  max-width: 175px;
}

#dots #dot_6 {
  border: 2px solid #0259af;
}

.logos_wrapper .logo-img-div {
  background-repeat: no-repeat;
  background-position: center center;
  height: 200px;
  margin: 25px;
  background-size: contain;
}

.logos_wrapper .logo-img-div {
  height: 75px;
  width: 60%;
  margin-bottom: 0;
  display: inline-block;
}

.page-template-services .technology_partners {
  float: right;
  width: 50%;
  padding-top: 20px;
}

.page-template-services .technology_partners h4 {
  margin: 0 0 40px 0;
  font-size: 1.45rem;
}

.page-template-services .logos_wrapper .logo-img-div {
  width: 100%;
  margin: 0;
  background-position: left center;
}

.page-template-services .technology_partners .logo.dropbox a {
  max-width: 189px;
  margin-bottom: 30px;
}

.page-template-services .technology_partners .logo.aws a {
  max-width: 173px;
}

.page-template-services .technology_partners .logo.ms a {
  max-width: 196px;
}

.page-template-services .technology_partners .logo.mimecast a {
  max-width: 259px;
}

@media (min-width: 767px) {
  .flex {
    display: flex;
    align-items: flex-start;
  }
  .data_security_section .left_text_panel {
    width: 70%;
  }
  .data_security_section .right_image {
    width: 30%;
    text-align: right;
  }
  .page-template-about .logos_wrapper .logo-img-div {
    width: auto;
    display: block;
    margin-bottom: 25px;
  }
}
.page-template-privacy #main {
  justify-content: space-between;
}
.page-template-privacy #main .main_content {
  width: 100%;
  margin-right: 0;
}
.page-template-privacy #main .main_content h1 {
  font-size: 32px;
}
.page-template-privacy #main .main_content h1:not(.page-title) {
  line-height: 44px;
  border-bottom: 1px solid #0259af;
  padding-bottom: 12px;
}
.page-template-privacy #main .main_content p, .page-template-privacy #main .main_content h2 {
  font-size: 18px;
  line-height: 28px;
}
.page-template-privacy #main .main_content h2 {
  font-weight: 700;
  color: #0259af;
  padding-bottom: 12px;
}
.page-template-privacy #main .main_content li {
  padding-bottom: 24px;
  list-style-image: url(../../library/images/dark-blue_list_circle.png);
  margin-left: 1rem;
}
.page-template-privacy #main .main_content li strong {
  color: #0259af;
}
.page-template-privacy #main aside {
  width: 20%;
  padding: 60px 0;
}
.page-template-privacy #main aside ul {
  margin: 0;
}
.page-template-privacy #main aside ul li {
  border-bottom: 1px solid #0259af;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.page-template-privacy #main aside ul li a {
  display: block;
  font-size: 16px;
  line-height: 28px;
}
.page-template-privacy #main aside ul li a.indexH1 {
  color: #016AF2;
}

.page-id-3900 .landing-page--bottom {
  flex-direction: column-reverse;
}

#inner-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 16px;
}
#inner-footer .footer_image img {
  width: 100%;
  max-width: 377px;
  margin: 0 auto;
}

#logo_section {
  padding-top: 60px;
  padding-bottom: 0px;
}
#logo_section .wrap {
  padding-top: 8px;
  padding-bottom: 48px;
  padding-left: 32px;
  padding-right: 32px;
  text-align: center;
}
#logo_section .wrap h2 {
  color: #000;
  margin: 32px auto;
}
#logo_section .wrap img {
  max-width: 333px;
  margin: 0 auto;
}

@media only screen and (max-width: 960px) {
  footer {
    text-align: center !important;
  }
  footer #inner-footer {
    width: 85%;
    max-width: 485px;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }
  footer #inner-footer .footer_image {
    padding-top: 16px;
  }
  .footer {
    clear: both;
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.01);
    font-size: 0.95em;
    text-align: center;
  }
  .footer .contact_info h3 {
    color: #000;
    margin-bottom: 20px;
    margin-top: 0;
  }
  .footer .contact_info p {
    margin: 0;
  }
  .footer .footer_social #footer_logo, .footer .footer_social svg {
    width: 230px;
    margin: 20px auto !important;
    float: none !important;
  }
  .footer .footer_social .copyright {
    text-align: center !important;
  }
  .footer .footer_social_icons {
    display: none !important;
    float: right;
    margin: 40px 0;
  }
  .footer .footer_social_icons .facebook_icon {
    margin: 0 10px;
  }
}
.post-cta-box {
  background-color: #2559A9;
  margin-bottom: 140px;
  display: flex;
  flex-direction: column;
}
.post-cta-box .content {
  padding: 32px 32px 40px 40px;
}
.post-cta-box .content p {
  font-size: 18px;
  padding-bottom: 32px;
  color: #fff;
  margin: 0;
  line-height: 1.28;
}
.post-cta-box .content p.cta_title {
  font-size: 24px;
  padding-bottom: 20px;
  line-height: 1.2;
}
.post-cta-box .content a {
  font-size: 16px;
  color: #fff;
  border: 2px solid #97C83B;
  border-radius: 200px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.5s;
}
.post-cta-box .content a:hover {
  background-color: #97C83B;
  color: #2559A9;
}
.post-cta-box .image {
  border-bottom: 1px solid #97C83B;
  height: auto;
  background-size: cover;
  min-height: 60vw;
}

.single-post hr.line {
  background-color: #E5E5E5;
  border: none;
  height: 2px;
}

#contributions {
  background-color: #f7f7f7;
}
#contributions .head {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#contributions .head #buttons_container {
  display: flex;
}
#contributions .head button {
  height: 35px;
  width: 35px;
  background-color: #fff;
  top: 0;
  border: none;
  margin-left: 8px;
}
#contributions .head button.slick-prev:before {
  margin: 0;
  position: relative;
  height: 36px;
  width: 36px;
  display: block;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='18' cy='18' r='18' transform='rotate(-180 18 18)' fill='white'/%3E%3Cpath d='M21 25L14 18.4667L21 11' stroke='%232559A9' stroke-width='2'/%3E%3C/svg%3E%0A");
}
#contributions .head button.slick-next:before {
  margin: 0;
  position: relative;
  height: 36px;
  width: 36px;
  display: block;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='18' cy='18' r='18' fill='white'/%3E%3Cpath d='M15 11L22 17.5333L15 25' stroke='%232559A9' stroke-width='2'/%3E%3C/svg%3E%0A");
}
#contributions .head h3 {
  height: 36px;
  color: #000;
  margin: 0;
}
#contributions .slick-list {
  margin: 0 -10px;
}
#contributions .link-box {
  min-height: 215px;
  background-color: #2559A9;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#contributions .link-box.slick-slide {
  opacity: 1 !important;
  position: initial !important;
  margin: 0 10px;
}
#contributions .link-box h4 {
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
  max-width: 190px;
  margin: 0;
  margin-bottom: 24px;
}
#contributions .link-box a {
  font-size: 16px;
  line-height: 1;
  border: 2px solid #97C83B;
  border-radius: 200px;
  padding: 10px 20px;
  color: #fff;
  width: fit-content;
}

.page-id-3900 .landing-page--bottom {
  flex-direction: column-reverse;
}

.fab {
  font-family: FontAwesomeBrandsV6 !important;
}

.fa-x-twitter:before {
  content: "\e61b" !important;
}

.page-template-contact #form_section .gfield--width-half, .page-template-home #form_section .gfield--width-half {
  grid-column: span 12;
}
.page-template-contact #form_section .gform_heading, .page-template-home #form_section .gform_heading {
  display: none;
}
.page-template-contact #form_section .ginput_container input, .page-template-contact #form_section .ginput_container textarea, .page-template-contact #form_section .ginput_container select, .page-template-home #form_section .ginput_container input, .page-template-home #form_section .ginput_container textarea, .page-template-home #form_section .ginput_container select {
  background-color: #F7F7F7;
  border: 1px solid #D9D9D9 !important;
  border-radius: 4px;
  color: #7F7F7F;
  font-size: 18px;
  padding-left: 16px;
  padding-right: 16px;
}
.page-template-contact #form_section .ginput_container label, .page-template-home #form_section .ginput_container label {
  color: #7F7F7F;
}
.page-template-contact #form_section .gform-field-label, .page-template-contact #form_section .radio_label, .page-template-home #form_section .gform-field-label, .page-template-home #form_section .radio_label {
  font-size: 16px;
  color: #7f7f7f !important;
  font-family: "proxima_nova_rgregular", Helvetica, Arial, sans-serif;
  width: 100%;
  margin: 0;
  font-weight: 400;
  text-align: left;
  line-height: 1;
  margin-bottom: 6px;
  padding-left: 0;
  min-height: auto;
}
.page-template-contact #form_section #gform_fields_1, .page-template-home #form_section #gform_fields_1 {
  grid-column-gap: 32px;
  grid-row-gap: 12px;
}
.page-template-contact .gform_footer, .page-template-home .gform_footer {
  justify-content: end;
  align-items: center;
  margin-top: 104px !important;
  padding-top: 0 !important;
  padding-bottom: 26px !important;
}
.page-template-contact .gform_footer .button, .page-template-home .gform_footer .button {
  background-color: #97C83B !important;
  color: #fff !important;
  border-radius: 32px !important;
  font-size: 18px !important;
  border: 1px solid #97C83B !important;
  transition: all 0.5s linear !important;
  margin-top: 0 !important;
  width: 100%;
}
.page-template-contact .gform_footer .button:hover, .page-template-home .gform_footer .button:hover {
  background-color: #ffffff !important;
  color: #97C83B !important;
}
.page-template-contact .gf-recaptcha-div, .page-template-home .gf-recaptcha-div {
  left: 0;
  bottom: 82px;
}
.page-template-contact .gfield_checkbox, .page-template-home .gfield_checkbox {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  padding-left: 0 !important;
}
.page-template-contact .gfield_checkbox label, .page-template-home .gfield_checkbox label {
  margin: 0 !important;
  display: block !important;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  background-color: #F7F7F7;
  border-radius: 200px;
  width: auto !important;
  font-size: 18px !important;
  position: relative;
  min-height: auto !important;
}
.page-template-contact .gfield_checkbox label span, .page-template-home .gfield_checkbox label span {
  width: calc(100% + 2px);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 200px;
  height: calc(100% + 2px) !important;
  border: 1px solid #D9D9D9;
  transition: all 0.5s linear;
}
.page-template-contact .gfield_checkbox label span:before, .page-template-home .gfield_checkbox label span:before {
  content: "";
  position: absolute;
  width: 18px !important;
  height: 18px !important;
  left: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='17' height='17' rx='3.5' fill='white' stroke='%237B7B7B'/%3E%3Cpath d='M12.6954 12.7254C12.5042 12.8983 12.2448 12.9954 11.9744 12.9954C11.7039 12.9954 11.4445 12.8983 11.2533 12.7254L9.00043 10.3975L6.74757 12.7246C6.65316 12.8114 6.54068 12.8804 6.41663 12.9277C6.29257 12.9749 6.1594 12.9995 6.02478 13C5.89016 13.0005 5.75677 12.9769 5.63229 12.9305C5.50782 12.8842 5.39472 12.816 5.29954 12.73C5.20435 12.6439 5.12895 12.5417 5.07768 12.4291C5.02642 12.3166 5.00031 12.196 5.00086 12.0743C5.00141 11.9526 5.0286 11.8322 5.08088 11.7201C5.13315 11.6079 5.20947 11.5062 5.30543 11.4209L7.64922 9.00077L5.30458 6.57914C5.20862 6.49379 5.1323 6.3921 5.08003 6.27995C5.02775 6.1678 5.00056 6.0474 5.00001 5.92569C4.99946 5.80399 5.02557 5.6834 5.07683 5.57086C5.1281 5.45833 5.2035 5.35609 5.29869 5.27003C5.39388 5.18397 5.50697 5.11581 5.63144 5.06946C5.75592 5.02312 5.88931 4.99951 6.02393 5.00001C6.15855 5.0005 6.29172 5.02509 6.41578 5.07235C6.53983 5.11961 6.65231 5.18861 6.74672 5.27536L9.00043 7.60403L11.2533 5.27536C11.3477 5.18861 11.4602 5.11961 11.5842 5.07235C11.7083 5.02509 11.8415 5.0005 11.9761 5.00001C12.1107 4.99951 12.2441 5.02312 12.3686 5.06946C12.493 5.11581 12.6061 5.18397 12.7013 5.27003C12.7965 5.35609 12.8719 5.45833 12.9232 5.57086C12.9744 5.6834 13.0005 5.80399 13 5.92569C12.9994 6.0474 12.9722 6.1678 12.92 6.27995C12.8677 6.3921 12.7914 6.49379 12.6954 6.57914L10.3516 9.00077L12.6954 11.4209C12.7902 11.5065 12.8655 11.6082 12.9168 11.7201C12.9681 11.832 12.9945 11.952 12.9945 12.0731C12.9945 12.1943 12.9681 12.3143 12.9168 12.4262C12.8655 12.5381 12.7902 12.6398 12.6954 12.7254Z' fill='black' fill-opacity='0.5'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  border: 0 !important;
  border-radius: 4px !important;
  background-size: cover !important;
  top: 50%;
  transform: translateY(-50%);
}
.page-template-contact .gfield_checkbox label input, .page-template-home .gfield_checkbox label input {
  display: none;
}
.page-template-contact .gfield_checkbox label input:checked + span, .page-template-home .gfield_checkbox label input:checked + span {
  border-color: #97C83B;
}
.page-template-contact .gfield_checkbox label input:checked + span:before, .page-template-home .gfield_checkbox label input:checked + span:before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='18' height='18' rx='4' fill='%2399CC33'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.7803 3.76849C15.0732 4.12647 15.0732 4.70687 14.7803 5.06485L7.28033 14.2315C6.98744 14.5895 6.51256 14.5895 6.21967 14.2315L3.21967 10.5648C2.92678 10.2069 2.92678 9.62647 3.21967 9.26849C3.51256 8.91051 3.98744 8.91051 4.28033 9.26849L6.75 12.287L13.7197 3.76849C14.0126 3.4105 14.4874 3.4105 14.7803 3.76849Z' fill='%23F7F7F7'/%3E%3C/svg%3E%0A") !important;
}
.page-template-contact .gfield_checkbox label p, .page-template-home .gfield_checkbox label p {
  margin-top: 0 !important;
}
.page-template-contact .gfield_checkbox input:checked + label:before, .page-template-home .gfield_checkbox input:checked + label:before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='18' height='18' rx='4' fill='%2399CC33'/%3E%3C/svg%3E%0A") !important;
}

.page-id-5369 form .gfield--width-half {
  grid-column: span 12;
}
.page-id-5369 form .gform_heading {
  display: none;
}
.page-id-5369 form .ginput_container input, .page-id-5369 form .ginput_container textarea, .page-id-5369 form .ginput_container select {
  background-color: #F7F7F7;
  border: 1px solid #D9D9D9 !important;
  border-radius: 4px;
  color: #7F7F7F;
  font-size: 18px;
  padding-left: 16px;
  padding-right: 16px;
}
.page-id-5369 form .ginput_container label {
  color: #7F7F7F;
}
.page-id-5369 form .gform-field-label, .page-id-5369 form .radio_label {
  font-size: 16px;
  color: #7f7f7f !important;
  font-family: "proxima_nova_rgregular", Helvetica, Arial, sans-serif;
  width: 100%;
  margin: 0;
  font-weight: 400;
  text-align: left;
  line-height: 1;
  margin-bottom: 6px;
  padding-left: 0;
  min-height: auto;
}
.page-id-5369 form #gform_fields_1 {
  grid-column-gap: 32px;
  grid-row-gap: 12px;
}
.page-id-5369 .gform_footer {
  justify-content: end;
  align-items: center;
  margin-top: 104px !important;
  padding-top: 0 !important;
  padding-bottom: 26px !important;
}
.page-id-5369 .gform_footer .button {
  background-color: #97C83B !important;
  color: #fff !important;
  border-radius: 32px !important;
  font-size: 18px !important;
  border: 1px solid #97C83B !important;
  transition: all 0.5s linear !important;
  margin-top: 0 !important;
  width: 100%;
}
.page-id-5369 .gform_footer .button:hover {
  background-color: #ffffff !important;
  color: #97C83B !important;
}
.page-id-5369 .gf-recaptcha-div {
  left: 0;
  bottom: 82px;
}
.page-id-5369 .gfield_checkbox, .page-id-5369 .ginput_container_consent {
  padding-bottom: 20px;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  padding-left: 0 !important;
}
.page-id-5369 .gfield_checkbox label, .page-id-5369 .ginput_container_consent label {
  margin: 0 !important;
  display: block !important;
  padding-left: 24px;
  border-radius: 200px;
  width: auto !important;
  font-size: 18px !important;
  position: relative;
  min-height: auto !important;
}
.page-id-5369 .gfield_checkbox label:before, .page-id-5369 .ginput_container_consent label:before {
  content: "";
  position: absolute;
  width: 18px !important;
  height: 18px !important;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='17' height='17' rx='3.5' fill='white' stroke='%237B7B7B'/%3E%3Cpath d='M12.6954 12.7254C12.5042 12.8983 12.2448 12.9954 11.9744 12.9954C11.7039 12.9954 11.4445 12.8983 11.2533 12.7254L9.00043 10.3975L6.74757 12.7246C6.65316 12.8114 6.54068 12.8804 6.41663 12.9277C6.29257 12.9749 6.1594 12.9995 6.02478 13C5.89016 13.0005 5.75677 12.9769 5.63229 12.9305C5.50782 12.8842 5.39472 12.816 5.29954 12.73C5.20435 12.6439 5.12895 12.5417 5.07768 12.4291C5.02642 12.3166 5.00031 12.196 5.00086 12.0743C5.00141 11.9526 5.0286 11.8322 5.08088 11.7201C5.13315 11.6079 5.20947 11.5062 5.30543 11.4209L7.64922 9.00077L5.30458 6.57914C5.20862 6.49379 5.1323 6.3921 5.08003 6.27995C5.02775 6.1678 5.00056 6.0474 5.00001 5.92569C4.99946 5.80399 5.02557 5.6834 5.07683 5.57086C5.1281 5.45833 5.2035 5.35609 5.29869 5.27003C5.39388 5.18397 5.50697 5.11581 5.63144 5.06946C5.75592 5.02312 5.88931 4.99951 6.02393 5.00001C6.15855 5.0005 6.29172 5.02509 6.41578 5.07235C6.53983 5.11961 6.65231 5.18861 6.74672 5.27536L9.00043 7.60403L11.2533 5.27536C11.3477 5.18861 11.4602 5.11961 11.5842 5.07235C11.7083 5.02509 11.8415 5.0005 11.9761 5.00001C12.1107 4.99951 12.2441 5.02312 12.3686 5.06946C12.493 5.11581 12.6061 5.18397 12.7013 5.27003C12.7965 5.35609 12.8719 5.45833 12.9232 5.57086C12.9744 5.6834 13.0005 5.80399 13 5.92569C12.9994 6.0474 12.9722 6.1678 12.92 6.27995C12.8677 6.3921 12.7914 6.49379 12.6954 6.57914L10.3516 9.00077L12.6954 11.4209C12.7902 11.5065 12.8655 11.6082 12.9168 11.7201C12.9681 11.832 12.9945 11.952 12.9945 12.0731C12.9945 12.1943 12.9681 12.3143 12.9168 12.4262C12.8655 12.5381 12.7902 12.6398 12.6954 12.7254Z' fill='black' fill-opacity='0.5'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  border: 0 !important;
  border-radius: 4px !important;
  background-size: cover !important;
  top: 50%;
  transform: translateY(-50%);
}
.page-id-5369 .gfield_checkbox input, .page-id-5369 .ginput_container_consent input {
  display: none;
}
.page-id-5369 .gfield_checkbox input:checked + label, .page-id-5369 .ginput_container_consent input:checked + label {
  border-color: #97C83B;
}
.page-id-5369 .gfield_checkbox input:checked + label:before, .page-id-5369 .ginput_container_consent input:checked + label:before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='18' height='18' rx='4' fill='%2399CC33'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.7803 3.76849C15.0732 4.12647 15.0732 4.70687 14.7803 5.06485L7.28033 14.2315C6.98744 14.5895 6.51256 14.5895 6.21967 14.2315L3.21967 10.5648C2.92678 10.2069 2.92678 9.62647 3.21967 9.26849C3.51256 8.91051 3.98744 8.91051 4.28033 9.26849L6.75 12.287L13.7197 3.76849C14.0126 3.4105 14.4874 3.4105 14.7803 3.76849Z' fill='%23F7F7F7'/%3E%3C/svg%3E%0A") !important;
}
.page-id-5369 .gfield_checkbox input p, .page-id-5369 .ginput_container_consent input p {
  margin-top: 0 !important;
}
.page-id-5369 .gfield_checkbox input:checked + label:before, .page-id-5369 .ginput_container_consent input:checked + label:before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='18' height='18' rx='4' fill='%2399CC33'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.7803 3.76849C15.0732 4.12647 15.0732 4.70687 14.7803 5.06485L7.28033 14.2315C6.98744 14.5895 6.51256 14.5895 6.21967 14.2315L3.21967 10.5648C2.92678 10.2069 2.92678 9.62647 3.21967 9.26849C3.51256 8.91051 3.98744 8.91051 4.28033 9.26849L6.75 12.287L13.7197 3.76849C14.0126 3.4105 14.4874 3.4105 14.7803 3.76849Z' fill='%23F7F7F7'/%3E%3C/svg%3E%0A") !important;
}
.page-id-5369 .gf-recaptcha-div {
  bottom: -70px;
}

.page-template-home #form_section {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 40px;
  background-color: #2559a9;
  margin-top: 64px;
  position: relative;
}
.page-template-home #form_section .gf-recaptcha-div {
  bottom: 90px;
}
.page-template-home #form_section .form-wrapper {
  padding-top: 10px;
  padding-bottom: 40px;
}
.page-template-home #form_section .form-wrapper h2 {
  font-size: 26px;
  line-height: 32px;
  color: #97C83B;
  margin-bottom: 28px;
  margin-top: 0;
}
.page-template-home #form_section .form-wrapper .gform_footer .gform_button {
  font-size: 18px !important;
  color: #2559a9 !important;
  height: 36px !important;
  width: 125px !important;
}
.page-template-home #form_section .wrap {
  background-color: #2559a9;
  padding: 0;
  padding-top: 0;
}
.page-template-home #form_section .wrap .ginput_container_text input, .page-template-home #form_section .wrap .ginput_container_text textarea, .page-template-home #form_section .wrap .ginput_container_text select, .page-template-home #form_section .wrap .ginput_container_email input, .page-template-home #form_section .wrap .ginput_container_email textarea, .page-template-home #form_section .wrap .ginput_container_email select, .page-template-home #form_section .wrap .ginput_container_textarea input, .page-template-home #form_section .wrap .ginput_container_textarea textarea, .page-template-home #form_section .wrap .ginput_container_textarea select, .page-template-home #form_section .wrap .ginput_container_select input, .page-template-home #form_section .wrap .ginput_container_select textarea, .page-template-home #form_section .wrap .ginput_container_select select {
  background-color: #406CB2;
  border-color: rgba(255, 255, 255, 0.5019607843);
  color: #ffffff;
}
.page-template-home #form_section .wrap .ginput_container_text input::placeholder, .page-template-home #form_section .wrap .ginput_container_text input .gf_placeholder, .page-template-home #form_section .wrap .ginput_container_text textarea::placeholder, .page-template-home #form_section .wrap .ginput_container_text textarea .gf_placeholder, .page-template-home #form_section .wrap .ginput_container_text select::placeholder, .page-template-home #form_section .wrap .ginput_container_text select .gf_placeholder, .page-template-home #form_section .wrap .ginput_container_email input::placeholder, .page-template-home #form_section .wrap .ginput_container_email input .gf_placeholder, .page-template-home #form_section .wrap .ginput_container_email textarea::placeholder, .page-template-home #form_section .wrap .ginput_container_email textarea .gf_placeholder, .page-template-home #form_section .wrap .ginput_container_email select::placeholder, .page-template-home #form_section .wrap .ginput_container_email select .gf_placeholder, .page-template-home #form_section .wrap .ginput_container_textarea input::placeholder, .page-template-home #form_section .wrap .ginput_container_textarea input .gf_placeholder, .page-template-home #form_section .wrap .ginput_container_textarea textarea::placeholder, .page-template-home #form_section .wrap .ginput_container_textarea textarea .gf_placeholder, .page-template-home #form_section .wrap .ginput_container_textarea select::placeholder, .page-template-home #form_section .wrap .ginput_container_textarea select .gf_placeholder, .page-template-home #form_section .wrap .ginput_container_select input::placeholder, .page-template-home #form_section .wrap .ginput_container_select input .gf_placeholder, .page-template-home #form_section .wrap .ginput_container_select textarea::placeholder, .page-template-home #form_section .wrap .ginput_container_select textarea .gf_placeholder, .page-template-home #form_section .wrap .ginput_container_select select::placeholder, .page-template-home #form_section .wrap .ginput_container_select select .gf_placeholder {
  color: rgba(255, 255, 255, 0.5019607843);
}
.page-template-home #form_section .wrap label.gform-field-label {
  color: #fff !important;
}
.page-template-home #form_section .wrap p.radio_label {
  color: #ffffff !important;
}
.page-template-home #form_section .wrap .gfield_checkbox label {
  background-color: rgba(255, 255, 255, 0.1019607843);
  border-color: rgba(255, 255, 255, 0.5019607843);
  color: #fff;
}
.page-template-home #form_section .wrap .gfield_checkbox label span:before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='18' height='18' rx='4' fill='white' fill-opacity='0.2'/%3E%3Crect x='0.5' y='0.5' width='17' height='17' rx='3.5' stroke='white' stroke-opacity='0.4'/%3E%3Cpath d='M12.6954 12.7254C12.5042 12.8983 12.2448 12.9954 11.9744 12.9954C11.7039 12.9954 11.4445 12.8983 11.2533 12.7254L9.00043 10.3975L6.74757 12.7246C6.65316 12.8114 6.54068 12.8804 6.41663 12.9277C6.29257 12.9749 6.1594 12.9995 6.02478 13C5.89016 13.0005 5.75677 12.9769 5.63229 12.9305C5.50782 12.8842 5.39472 12.816 5.29954 12.73C5.20435 12.6439 5.12895 12.5417 5.07768 12.4291C5.02642 12.3166 5.00031 12.196 5.00086 12.0743C5.00141 11.9526 5.0286 11.8322 5.08088 11.7201C5.13315 11.6079 5.20947 11.5062 5.30543 11.4209L7.64922 9.00077L5.30458 6.57914C5.20862 6.49379 5.1323 6.3921 5.08003 6.27995C5.02775 6.1678 5.00056 6.0474 5.00001 5.92569C4.99946 5.80399 5.02557 5.6834 5.07683 5.57086C5.1281 5.45833 5.2035 5.35609 5.29869 5.27003C5.39388 5.18397 5.50697 5.11581 5.63144 5.06946C5.75592 5.02312 5.88931 4.99951 6.02393 5.00001C6.15855 5.0005 6.29172 5.02509 6.41578 5.07235C6.53983 5.11961 6.65231 5.18861 6.74672 5.27536L9.00043 7.60403L11.2533 5.27536C11.3477 5.18861 11.4602 5.11961 11.5842 5.07235C11.7083 5.02509 11.8415 5.0005 11.9761 5.00001C12.1107 4.99951 12.2441 5.02312 12.3686 5.06946C12.493 5.11581 12.6061 5.18397 12.7013 5.27003C12.7965 5.35609 12.8719 5.45833 12.9232 5.57086C12.9744 5.6834 13.0005 5.80399 13 5.92569C12.9994 6.0474 12.9722 6.1678 12.92 6.27995C12.8677 6.3921 12.7914 6.49379 12.6954 6.57914L10.3516 9.00077L12.6954 11.4209C12.7902 11.5065 12.8655 11.6082 12.9168 11.7201C12.9681 11.832 12.9945 11.952 12.9945 12.0731C12.9945 12.1943 12.9681 12.3143 12.9168 12.4262C12.8655 12.5381 12.7902 12.6398 12.6954 12.7254Z' fill='white' fill-opacity='0.5'/%3E%3C/svg%3E%0A");
}
.page-template-home #form_section .wrap [type=checkbox]:checked ~ p {
  color: #fff !important;
}
.page-template-home #form_section .wrap input:checked + span:before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='18' height='18' rx='4' fill='%2399CC33'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.7803 3.76849C15.0732 4.12647 15.0732 4.70687 14.7803 5.06485L7.28033 14.2315C6.98744 14.5895 6.51256 14.5895 6.21967 14.2315L3.21967 10.5648C2.92678 10.2069 2.92678 9.62647 3.21967 9.26849C3.51256 8.91051 3.98744 8.91051 4.28033 9.26849L6.75 12.287L13.7197 3.76849C14.0126 3.4105 14.4874 3.4105 14.7803 3.76849Z' fill='%232559A9'/%3E%3C/svg%3E%0A") !important;
}
.page-template-home #form_section .form_image {
  background-size: cover;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-top: 4px solid #99CC33;
  background-position: center;
}
.page-template-home #form_section .form_image:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.page-template-home .expanding-header {
  border-top: 2px solid #99CC33;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px !important;
  cursor: pointer;
}
.page-template-home .expanding-header:hover rect {
  fill: #fff;
}
.page-template-home .expanding-header:hover svg {
  fill: #fff;
}
.page-template-home .expanding-header .half {
  width: calc(100% - 48px);
  display: flex;
  gap: 20px;
  align-items: center;
}
.page-template-home .expanding-header .half .tick {
  height: 40px;
}
.page-template-home .expanding-header .half h3 {
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}
.page-template-home .expanding-header svg {
  transition: all 0.5s;
}
.page-template-home .expanding-header .plus-minus {
  position: relative;
  width: 28px;
  height: 28px;
}
.page-template-home .expanding-header .plus-minus svg {
  position: absolute;
}
.page-template-home .expanding-header .plus-minus svg rect {
  transition: all 0.5s;
}
.page-template-home .expanding-header .plus-minus svg.minus {
  top: 50%;
  transform: translate(0, -50%);
}
.page-template-home .expanding-header .plus-minus svg.plus {
  left: 50%;
  transform: translate(-50%, 0);
}

.post-cta-box {
  background-color: #2559A9;
  margin-bottom: 140px;
  display: flex;
  flex-direction: column;
}
.post-cta-box .content {
  padding: 32px 32px 40px 40px;
}
.post-cta-box .content p {
  font-size: 18px;
  padding-bottom: 32px;
  color: #fff;
  margin: 0;
  line-height: 1.28;
}
.post-cta-box .content p.cta_title {
  font-size: 24px;
  padding-bottom: 20px;
  line-height: 1.2;
}
.post-cta-box .content a {
  font-size: 16px;
  color: #fff;
  border: 2px solid #97C83B;
  border-radius: 200px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.5s;
}
.post-cta-box .content a:hover {
  background-color: #97C83B;
  color: #2559A9;
}
.post-cta-box .image {
  border-bottom: 1px solid #97C83B;
  height: auto;
  background-size: cover;
  min-height: 60vw;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: 481px and Up Stylesheet

  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.

  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.

  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */
  }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }
  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
  /*
  #profiles_section {
  	.profile {
  		width: 50%;
  	}
  }

  #profiles_wrap {
  	&.loading {
  		padding-bottom: 400%;
  	}
  }
  */
  .masterhead.mobile {
    background-position: center left;
    padding: 60px 0 100px 0;
  }
  #contact_section .right_panel ul li a {
    font-size: 1em;
    padding-left: 80px;
  }
  #contact_section .icon_container {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    left: 10px;
  }
  #contact_section .addresses_container {
    padding-left: 80px;
  }
  #profile_content .profile_image {
    width: 100%;
    padding-bottom: 100%;
    float: left;
  }
  #profile_content .profile_basic_info {
    width: 100%;
    float: left;
  }
  #home_section_2 .slider_content p {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .logos_container {
    margin: 0;
    text-align: center;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
  }
  .logos_container .logo {
    display: block;
    flex: 1 33%;
    padding-right: 20px;
  }
  .logos_container .logo img {
    max-width: 150px;
  }
  .logos_container .logo.last img {
    max-width: 302px;
  }
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tablet & Small Desktop Stylesheet

  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!

  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    width: 85%;
    max-width: 760px;
  }
  /*********************
  HEADER STYLES
  *********************/
  .masterhead {
    padding: 200px 0 80px 0;
  }
  .masterhead .hero_text {
    max-width: 410px;
    float: right;
  }
  #logo {
    width: 250px;
    margin: 20px 0px;
  }
  /*********************
  NAVIGATION STYLES
  *********************/
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .nav ul {
    background: #000;
    margin-top: 0;
  }
  .nav li {
    position: relative;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  .nav li a {
    border-bottom: 0;
    color: #000;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    transition: color 0.2s;
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  .nav li a:hover, .nav li a:focus {
    color: #00ccff;
  }
  .nav li ul.sub-menu,
  .nav li ul.children {
    margin-top: 0;
    border: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    /* highlight sub-menu current page */
  }
  .nav li ul.sub-menu li,
  .nav li ul.children li {
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  .nav li ul.sub-menu li a,
  .nav li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: 180px;
    border-bottom: 1px solid #ccc;
  }
  .nav li ul.sub-menu li:last-child a,
  .nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  .nav li ul.sub-menu li ul,
  .nav li ul.children li ul {
    top: 0;
    left: 100%;
  }
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }
  /* end .nav */
  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin-top: 2.2em;
  }
  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em;
  }
  .widget {
    padding: 0 10px;
    margin: 2.2em 0;
  }
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */
  }
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */
  }
  /* end .footer-links */
  .footer {
    text-align: left;
  }
  .footer .contact_info {
    float: left;
  }
  .footer .copyright {
    text-align: right;
  }
  .footer .footer_social {
    display: block;
    float: right;
  }
  .footer .footer_social svg {
    float: right;
    margin: 0;
  }
  .footer .footer_social .footer_social_icons {
    display: block;
  }
  .footer .footer_social .footer_social_icons a {
    display: inline-block;
  }
  .footer .footer_social #footer_logo {
    float: right;
  }
  /* Global */
  section {
    padding: 60px 0;
  }
  .white_gradient {
    background: -moz-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgb(255, 255, 255)), color-stop(30%, rgb(255, 255, 255)), color-stop(65%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%); /* IE10+ */
    background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 ); /* IE6-9 */
  }
  .left_panel {
    width: 48%;
  }
  .right_panel {
    width: 45%;
    float: right;
  }
  .entry-content {
    margin-top: 360px;
  }
  #social_share {
    margin-top: 60px;
  }
  #side_column {
    padding-bottom: 60px;
  }
  #dots {
    display: block;
  }
  /* Home */
  #topics_nav .topic_link_container.active a {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  #topics_nav .topic_link_container a {
    font-size: 1rem;
  }
  /*
  #topics_slider {
  display: table;
  overflow: hidden;

  .topic_link_container {
  display: table-cell;
  width: 1%;
  }
  }

  #topics_slider {
  display: none;
  }

  #topics_destkop {
  display: block;
  }*/
  #topics_nav {
    width: 100%;
    /*
    .topic_link_container {
    font-size: 1.3em;
    vertical-align: middle;
    position: relative;
    @include transition(background-color 0.3s ease-in-out);

    &:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid black;
    position: absolute;
    top: 50%;
    right: auto;
    left: 0;
    bottom: auto;
    margin: -6px auto 0 auto;
    visibility: hidden;
    opacity: 0;
    @include transition(opacity 0.3s ease-in-out, border-color 0.3s ease-in-out);
    }

    &.no_border {
    a {
    border-color: transparent;
    }
    }

    &.active {
    background-color: $white;

    a {
    border-color: transparent;
    }
    }

    &.active {
    &:before {
    opacity: 1;
    visibility: visible;
    }
    }

    a {
    display: block;
    height: 160px;
    line-height: 160px;
    border-right: 0;
    position: relative;
    right: -1px;
    }
    }

    #welcome_container {
    border-left: 4px solid #959595;
    border-bottom: 0;

    &:before {
    border-left: 5px solid #959595;
    border-bottom: 6px solid transparent;
    }
    }

    #finance_container {
    border-left: 4px solid $green;
    border-bottom: 0;

    &:before {
    border-left: 5px solid $green;
    border-bottom: 6px solid transparent;
    }
    }

    #technology_container {
    border-left: 4px solid $dark-blue;
    border-bottom: 0;

    &:before {
    border-left: 5px solid $dark-blue;
    border-bottom: 6px solid transparent;
    }
    }

    #hr_container {
    border-left: 4px solid $blue;
    border-bottom: 0;

    &:before {
    border-left: 5px solid $blue;
    border-bottom: 6px solid transparent;
    }
    }
    */
  }
  #topics_nav .border_line {
    width: 25%;
    display: block;
  }
  #home_section_1 {
    padding-bottom: 60px;
    padding-top: 40px;
    width: 100%;
  }
  #home_section_1 img {
    margin-top: 20px;
  }
  #home_section_1 img.desktop {
    display: block;
    float: right;
    width: 100%;
    max-width: 460px;
  }
  #home_section_1 img.mobile {
    display: none;
  }
  #home_section_1 .right_panel {
    width: 48%;
    float: right;
  }
  #home_section_1 .right_panel ul {
    padding-left: 20px;
  }
  #home_section_1 .left_panel {
    width: 48%;
    float: left;
  }
  #home_section_2 {
    padding-top: 0;
    /*
    .slick-next, .slick-prev {
    position: absolute;
    float: none;
    top:50%;
    margin-top: -15px;
    }

    .slick-next {
    right: 15px;
    }

    .slick-prev {
    left: 15px;
    }
    */
  }
  #home_section_2 .slider_item {
    background-size: cover;
    background-position: center top;
  }
  #home_section_2 .slider_item .slider_content {
    max-width: 350px;
  }
  #home_section_2 .slider_item .slider_content p {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
  #home_section_2 .slider_item .believe-image {
    display: block !important;
  }
  #home_section_2 #buttons_container {
    bottom: 132px;
  }
  #home_section_2 #buttons_container .global-btn {
    float: none;
  }
  #home_section_2 .slick-next {
    right: auto;
  }
  #home_section_2 .slick-prev {
    left: auto;
  }
  #leadership_team {
    padding-bottom: 60%;
  }
  #profiles_section {
    position: relative;
  }
  #profiles_section #new_leadership_container {
    padding-bottom: 56.25%;
    background-image: url(../images/executives.jpg);
    background-size: cover;
    position: relative;
  }
  #profiles_section #new_leadership_container .columns {
    padding: 0 11.1125%;
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  #profiles_section #new_leadership_container .columns .column {
    width: 33.33%;
    height: 100%;
    position: relative;
  }
  #profiles_section #new_leadership_container .columns .column:hover .link {
    opacity: 1;
  }
  #profiles_section #new_leadership_container .columns .column .link {
    transition: opacity 0.3s linear;
    opacity: 0;
    position: absolute;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
    background-color: #0258AF;
    border-radius: 170px;
    bottom: 10%;
    font-size: 17px;
    line-height: 24px;
    color: white;
    font-weight: 600;
    cursor: pointer;
  }
  #profiles_section #new_leadership_container .columns .column .link span {
    font-weight: 400;
    color: #959595;
  }
  #profiles_section #intro_container .profiles_selector_1 {
    margin-bottom: 20px;
  }
  #profiles_section .profile {
    width: 33.33%;
  }
  #profiles_section .profile .profile_content {
    display: block;
  }
  #profiles_section .profile .fade {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  #profiles_section .profile:hover .fade {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  #profiles_section .profile:hover .profile_info {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  #profiles_section .profile .profile_content {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  #profiles_section .profile .profile_info {
    visibility: hidden;
    opacity: 0;
  }
  #profiles_section .profile_3 #profile_content_1,
  #profiles_section .profile_6 #profile_content_1,
  #profiles_section .profile_9 #profile_content_1,
  #profiles_section .profile_12 #profile_content_1,
  #profiles_section .profile_15 #profile_content_1 {
    left: -100%;
    right: auto;
  }
  #profiles_section .profile_3 #profile_content_2,
  #profiles_section .profile_6 #profile_content_2,
  #profiles_section .profile_9 #profile_content_2,
  #profiles_section .profile_12 #profile_content_2,
  #profiles_section .profile_15 #profile_content_2 {
    left: -200%;
    right: auto;
  }
  #profiles_section .profile_2 #profile_content_1,
  #profiles_section .profile_5 #profile_content_1,
  #profiles_section .profile_8 #profile_content_1 {
    left: auto;
    right: auto;
    top: 100%;
  }
  #profiles_section .profile_2 #profile_content_2,
  #profiles_section .profile_5 #profile_content_2,
  #profiles_section .profile_8 #profile_content_2 {
    left: auto;
    right: auto;
    top: 200%;
  }
  #profiles_section .profile_11 #profile_content_1,
  #profiles_section .profile_14 #profile_content_1 {
    left: auto;
    right: auto;
    top: -100%;
  }
  #profiles_section .profile_11 #profile_content_2,
  #profiles_section .profile_14 #profile_content_2 {
    left: auto;
    right: auto;
    top: -200%;
  }
  #profiles_section #intro_container .left_panel {
    width: 58%;
  }
  #profiles_section #intro_container .right_panel {
    text-align: right;
    width: 42%;
    float: right;
    padding-top: 70px;
  }
  #profiles_section #intro_container .right_panel.desktop {
    display: block;
  }
  #profiles_section #intro_container .right_panel.mobile {
    display: none;
  }
  .profiles_overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 80;
    display: none;
  }
  .close_lightbox {
    position: absolute;
    right: 10px;
    top: 0;
    color: #fff;
    font-size: 2.5em;
    line-height: normal;
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    transform: rotate(45deg);
    cursor: pointer;
    z-index: 10;
  }
  .close_lightbox:before {
    content: "+";
    padding: 0;
  }
  .profile_lightbox {
    position: absolute;
    z-index: 999;
    width: 760px;
    top: 50%;
    margin-top: -400px;
    left: 50%;
    margin-left: -380px;
    background: #000;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease-in-out;
    transition: opacity 0.6s ease-in-out;
    text-align: left;
    color: #fff;
    display: block;
  }
  .profile_lightbox.visible {
    visibility: visible;
    opacity: 1;
  }
  .profile_lightbox .profile_image {
    width: 200px;
    height: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .profile_lightbox .profile_image.no_thumb {
    background-size: inherit;
  }
  .profile_lightbox .profile_basic_info {
    width: 200px;
    height: calc(100% - 200px);
    padding: 30px;
    background-color: #28282e;
    line-height: 1.2;
  }
  .profile_lightbox .profile_basic_info p {
    margin: 0;
  }
  .profile_lightbox .profile_basic_info .name {
    font-size: 1.2em;
  }
  .profile_lightbox .profile_basic_info .job_title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .profile_lightbox .profile_basic_info .linkedin_icon {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    margin-right: 20px;
    float: left;
  }
  .profile_lightbox .profile_basic_info .linkedin_icon:hover {
    border-color: #fff;
    background-color: #fff;
    color: #000;
  }
  .profile_lightbox .profile_basic_info #play_button {
    position: relative;
    float: left;
    width: 40px;
    height: 40px;
    margin: 0;
    left: 0;
    background-size: 12px auto;
    background-position: center left 14px;
    display: inline-block;
    border-color: rgba(255, 255, 255, 0.2);
  }
  .profile_lightbox .left_content,
  .profile_lightbox .right_content {
    float: left;
  }
  .profile_lightbox .left_content {
    width: 200px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .profile_lightbox .right_content {
    width: 560px;
    font-size: 1em;
    line-height: 1.3;
    overflow: hidden;
    z-index: 2;
    background-color: rgba(40, 40, 46, 0.5);
    height: 100%;
    float: right;
  }
  .profile_lightbox .profile_desc_1 {
    float: left;
    width: 100%;
    padding: 20px 20px 0 20px;
  }
  .profile_lightbox .profile_desc_2 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    float: left;
    width: 100%;
    padding: 0 20px 20px 20px;
  }
  .profile_lightbox blockquote {
    margin: 0 0 1.5em 0;
    padding: 0 0 0 1.5em;
    border-left: 3px solid #99cc33;
    font-style: italic;
    color: #fff;
  }
  .profile_lightbox blockquote p {
    margin-top: 20px;
  }
  #profiles_wrap.loading {
    padding-bottom: 166.65%;
  }
  #testimonials_container {
    padding: 0;
  }
  #testimonials_container h2 {
    margin-bottom: 60px;
  }
  #testimonials_container .testimonial {
    text-align: left;
  }
  #testimonials_container .testimonial .testimonial_content {
    width: 100%;
    float: left;
  }
  #testimonials_container .testimonial .testimonial_content .read_full_story {
    margin-right: 20px;
  }
  #testimonials_container .testimonial .testimonial_excerpt_1 {
    float: left;
    width: 35%;
    text-align: right;
    border-right: 1px solid #fff;
    padding-right: 5%;
    margin-bottom: 0;
  }
  #testimonials_container .testimonial .testimonial_excerpt_2 {
    float: right;
    width: 60%;
  }
  #testimonials_container .fade#blue_fade {
    display: none;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(64, 217, 255) 75%, rgb(0, 204, 255) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(75%, rgb(64, 217, 255)), color-stop(100%, rgb(0, 204, 255))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(64, 217, 255) 75%, rgb(0, 204, 255) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(64, 217, 255) 75%, rgb(0, 204, 255) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(64, 217, 255) 75%, rgb(0, 204, 255) 100%); /* IE10+ */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(64, 217, 255) 75%, rgb(0, 204, 255) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#00ccff",GradientType=1 ); /* IE6-9 */
    z-index: 0;
    opacity: 1;
  }
  #testimonials_container .fade {
    display: none;
  }
  #testimonials_container #play_button {
    display: block;
  }
  #social_section .left_panel {
    width: 55%;
  }
  #social_section .right_panel {
    width: 40%;
    float: right;
  }
  #social_section .posts-title {
    width: auto !important;
  }
  #social_section h2 {
    float: left;
    margin-bottom: 40px;
    margin-top: 0;
  }
  #social_section .global-btn {
    float: right !important;
    margin-top: 5px;
    margin-bottom: 0;
  }
  .testimonial_selector {
    padding: 0;
  }
  .testimonial_selector .photo_container {
    margin-right: 20px;
  }
  #twitter_section .twitter-heading {
    display: flex;
  }
  #twitter_section #twitter_feed ul {
    display: flex;
  }
  #twitter_section #twitter_feed ul li {
    width: 45%;
  }
  /* About */
  #about_section .left_panel {
    width: 55%;
  }
  #about_section .about_us_image {
    max-width: 40%;
    float: right;
    margin-top: -50px;
    max-height: 590px;
    width: auto;
  }
  #about_section .about_us_image.desktop {
    display: block;
  }
  #about_section .about_us_image.mobile {
    display: none;
  }
  #non_profit_container {
    padding: 0;
  }
  #non_profit_container .non_profit_section {
    padding: 60px 0 100px 0;
  }
  #non_profit_container .non_profit_section .non_profit_content {
    float: right;
    width: 45%;
    text-align: left;
    margin-top: 0;
  }
  #non_profit_container .fade {
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(65, 131, 195) 75%, rgb(2, 89, 175) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(75%, rgb(65, 131, 195)), color-stop(100%, rgb(2, 89, 175))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(65, 131, 195) 75%, rgb(2, 89, 175) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(65, 131, 195) 75%, rgb(2, 89, 175) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(65, 131, 195) 75%, rgb(2, 89, 175) 100%); /* IE10+ */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(65, 131, 195) 75%, rgb(2, 89, 175) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#0259af",GradientType=1 ); /* IE6-9 */
  }
  #non_profit_container #play_button_2 {
    position: absolute;
    left: 25%;
    margin-left: -23px;
    top: 50%;
    margin-top: -20px;
  }
  #small_business_section .right_panel {
    width: 50%;
  }
  #small_business_section .right_panel h2 {
    margin-top: 0;
  }
  #small_business_section .small_business_image {
    max-width: 44%;
    float: left;
    margin: 0;
    max-height: 590px;
    width: auto;
  }
  #small_business_section img.desktop {
    display: block;
  }
  #small_business_section img.mobile {
    display: none;
  }
  #small_business_section .logos_container {
    margin: 0;
    text-align: center;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
  }
  #small_business_section .logos_container .logo {
    display: block;
    flex: 1 33%;
  }
  #small_business_section .logos_container .logo img {
    max-width: 150px;
  }
  #small_business_section .logos_container .logo.last img {
    max-width: 302px;
  }
  /* Services */
  .single-service #services_nav .service_button {
    width: 40%;
  }
  #services_intro_section {
    padding-bottom: 60px;
  }
  #services_intro_section .left_panel {
    width: 55%;
  }
  #services_intro_section .services_image {
    max-width: 40%;
    float: right;
    margin-top: -50px;
  }
  #services_intro_section .services_image.desktop {
    display: block;
  }
  #services_intro_section .services_image.mobile {
    display: none;
  }
  #services_nav {
    width: 100%;
  }
  #services_nav .border_line {
    width: 33.33%;
    display: block;
  }
  #services_section .left_panel {
    width: 40%;
  }
  #services_section .right_panel {
    float: right;
    width: 55%;
    margin-top: 0;
  }
  #services_section .finance_content ul {
    padding-left: 40px;
  }
  #services_section .training_content ul {
    padding-left: 40px;
  }
  #services_section .hr_content ul {
    padding-left: 40px;
  }
  #services_section .technology_content ul {
    padding-left: 40px;
  }
  #services_section #insource_people a {
    padding-left: 80px;
  }
  /* Careers */
  /* Contact */
  /* Author Bio */
  /* News */
}
@media only screen and (min-width: 768px) and (-ms-high-contrast: active), only screen and (min-width: 768px) and (-ms-high-contrast: none) {
  #careers_intro_section,
  .careers_section:not(.careers_promise) {
    /* Non-IE styles here */
  }
  #careers_intro_section .text,
  .careers_section:not(.careers_promise) .text {
    width: 40%;
    display: inline-block;
  }
  #careers_intro_section .image,
  #careers_intro_section figure,
  .careers_section:not(.careers_promise) .image,
  .careers_section:not(.careers_promise) figure {
    width: 40%;
    display: inline-block;
  }
  #careers_intro_section .image figure,
  #careers_intro_section figure figure,
  .careers_section:not(.careers_promise) .image figure,
  .careers_section:not(.careers_promise) figure figure {
    width: 100%;
  }
  #careers_intro_section:nth-of-type(odd) .image,
  #careers_intro_section:nth-of-type(odd) figure,
  .careers_section:not(.careers_promise):nth-of-type(odd) .image,
  .careers_section:not(.careers_promise):nth-of-type(odd) figure {
    float: right;
  }
  #careers_intro_section:nth-of-type(even) .text,
  .careers_section:not(.careers_promise):nth-of-type(even) .text {
    float: right !important;
  }
  #careers_intro_section:nth-of-type(even) figure,
  .careers_section:not(.careers_promise):nth-of-type(even) figure {
    float: left !important;
  }
  #careers_intro_section.absolute-ie .grid figure,
  .careers_section:not(.careers_promise).absolute-ie .grid figure {
    position: absolute;
    width: 35%;
    top: 50%;
    -moz-transform: perspective(1px) translate(0, -50%);
    -o-transform: perspective(1px) translate(0, -50%);
    -ms-transform: perspective(1px) translate(0, -50%);
    -webkit-transform: perspective(1px) translate(0, -50%);
    transform: perspective(1px) translate(0, -50%);
  }
}
@media only screen and (min-width: 768px) {
  #careers_intro_section .grid,
  .careers_section:not(.careers_promise) .grid {
    grid-gap: 200px;
    grid-template-columns: repeat(2, 1fr);
  }
  #careers_intro_section .left_panel,
  .careers_section:not(.careers_promise) .left_panel {
    width: 55%;
  }
  #careers_intro_section .careers_image,
  .careers_section:not(.careers_promise) .careers_image {
    max-width: 40%;
    float: right;
    margin-top: -40px;
  }
  #careers_intro_section .image_holder,
  .careers_section:not(.careers_promise) .image_holder {
    width: 40%;
  }
  #careers_intro_section .careers_image.desktop,
  .careers_section:not(.careers_promise) .careers_image.desktop {
    display: block;
  }
  #careers_intro_section .careers_image.mobile,
  .careers_section:not(.careers_promise) .careers_image.mobile {
    display: none;
  }
  #inside_insource_container #play_button_3,
  #inside_insource_container .play_button_3 {
    position: absolute;
    right: 25%;
    margin-right: -23px;
    top: 50%;
    margin-top: -20px;
  }
  #inside_insource_container .inside_insource {
    text-align: left;
    padding: 170px 0;
  }
  #inside_insource_container .inside_insource .inside_insource_content {
    float: left;
    max-width: 390px;
  }
  #inside_insource_container .inside_insource .inside_insource_content.inside_insource_content_2 {
    max-width: 420px;
  }
}
@media only screen and (min-width: 768px) and (-ms-high-contrast: active), only screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .careers_benefits .left,
  .careers_benefits .right {
    width: 40%;
  }
  .careers_benefits .left {
    float: left;
  }
  .careers_benefits .right {
    float: right;
  }
}
@media only screen and (min-width: 768px) {
  .careers_promise .grid {
    grid-gap: 200px;
  }
}
@media only screen and (min-width: 768px) and (-ms-high-contrast: active), only screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .careers_promise .image {
    float: right !important;
    width: 40%;
  }
  .careers_promise .text {
    float: left !important;
    width: 40%;
  }
}
@media only screen and (min-width: 768px) {
  .careers_video_selector {
    padding: 0 0 20px 0;
  }
  .careers_videos_nav .slick-prev {
    left: 20px;
  }
  .careers_videos_nav .slick-next {
    right: 20px;
  }
  #jobs_section .left_panel {
    width: 40%;
  }
  #jobs_section .right_panel {
    float: right;
    width: 55%;
  }
  #jobs_section .job_1 ul {
    padding-left: 40px;
  }
  #jobs_section .job_2 ul {
    padding-left: 40px;
  }
  #jobs_section .job_3 ul {
    padding-left: 40px;
  }
  #form_section label,
  #form_section label[for=choice_12_4],
  #form_section label[for=choice_12_5] {
    width: 18%;
    margin: 0 1%;
  }
  #form_section #field_1_12 span.gfield_error,
  #form_section #field_1_8 span.gfield_error {
    top: 20px;
    right: 20px;
    margin-top: 0;
    line-height: 1.8;
  }
  #contact_section .addresses_container #address_2 {
    margin-top: 0;
  }
  #contact_section .addresses_container .address {
    width: 50%;
  }
  .author-bio h2 {
    margin-top: 0;
  }
  .author-bio .avatar_container {
    float: left;
  }
  .author-bio .author_left_panel {
    width: 30%;
  }
  .author-bio .author_right_panel {
    width: 70%;
  }
  #latest_news .single-title {
    font-size: 2em;
  }
  #latest_news .read_more {
    right: 0;
  }
  #latest_news .author_info_container .author_info {
    display: inline-block;
  }
  body #profile_content .right_content {
    width: 100% !important;
  }
  .mobile-video-content {
    display: none !important;
  }
  #profile_content {
    background: #000;
    text-align: left;
    color: #fff;
    display: table;
    padding: 60px 0;
  }
  #profile_content .right_content {
    width: 100% !important;
  }
  #profile_content .profile_image {
    width: 240px;
    height: 240px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.1);
    display: block;
    float: none;
    padding-bottom: 0;
  }
  #profile_content .profile_image.no_thumb {
    background-size: inherit;
  }
  #profile_content .thumbnail {
    display: block !important;
  }
  #profile_content .mobile-thumbnail {
    display: none !important;
  }
  #profile_content .mobile-video {
    display: none;
  }
  #profile_content .profile_basic_info {
    width: 240px;
    padding: 30px;
    background-color: #28282e;
    line-height: 1.2;
    display: block;
  }
  #profile_content .profile_basic_info p {
    margin: 0;
  }
  #profile_content .profile_basic_info .name {
    font-size: 1.2em;
  }
  #profile_content .profile_basic_info .job_title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  #profile_content .profile_basic_info .linkedin_icon {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    margin-right: 20px;
    float: left;
  }
  #profile_content .profile_basic_info .linkedin_icon:hover {
    border-color: #fff;
    background-color: #fff;
    color: #000;
  }
  #profile_content .profile_basic_info #play_button {
    position: relative;
    float: left;
    width: 40px;
    height: 40px;
    margin: 0;
    left: 0;
    background-size: 12px auto;
    background-position: center left 14px;
    display: inline-block;
    border-color: rgba(255, 255, 255, 0.2);
  }
  #profile_content .left_content,
  #profile_content .right_content {
    display: table-cell;
    vertical-align: top;
    float: none !important;
    width: auto !important;
  }
  #profile_content .left_content {
    max-width: none;
    margin: 0;
  }
  #profile_content .right_content {
    font-size: 1em;
    line-height: 1.3;
    overflow: hidden;
    z-index: 2;
    padding-left: 30px;
  }
  #profile_content .profile_desc_1 {
    float: left;
    width: auto;
    width: 100%;
    padding: 0 20px 0 20px;
  }
  #profile_content .profile_desc_2 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    float: left;
    width: 100%;
    padding: 0 20px 20px 20px;
  }
  #profile_content blockquote {
    margin: 0 0 1.5em 0;
    padding: 0 0 0 1.5em;
    border-left: 3px solid #99cc33;
    font-style: italic;
    color: #fff;
  }
  #profile_content blockquote p {
    margin-top: 20px;
  }
  .careers_vacancies ul {
    margin-top: 30px;
    float: left;
    display: inline-block;
    width: 100%;
  }
  .careers_vacancies ul li {
    float: left;
    width: 46%;
  }
  .careers_vacancies ul li:nth-child(even) {
    float: right;
  }
  .careers_vacancies ul li a:hover {
    opacity: 1;
    color: #000;
  }
  .careers_section--top .grid figure {
    display: block;
  }
  .careers_section:nth-of-type(even) .grid {
    -ms-grid-columns: 1fr 1.25fr;
    grid-template-columns: 1fr 1.25fr;
  }
  .careers_section .grid {
    align-items: center;
    grid-auto-flow: dense;
  }
  .careers_section .image-holder {
    margin-left: 0;
    max-width: 100%;
    max-height: 50%;
  }
  .careers_section .image-holder.mobile {
    display: none;
  }
  .careers_section .image-holder.desktop {
    display: block;
  }
  .careers_benefits {
    padding: 100px 0;
  }
  .careers_benefits .grid {
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 100px;
  }
  .careers_benefits h2 {
    margin-bottom: 0px;
  }
  .careers_benefits h2:last-of-type {
    display: block;
  }
  .careers_benefits #thenSome {
    display: block;
  }
  .careers_benefits ul {
    margin-left: 0;
  }
  .careers_benefits ul li {
    margin: 20px 0 20px 18px !important;
  }
  .careers_benefits ul:last-of-type {
    margin-top: 60px;
  }
  .careers_benefits ul:last-of-type li {
    margin: 20px 0 20px 18px;
  }
  .careers_promise {
    padding: 100px 0;
  }
  .careers_promise img {
    display: block;
  }
  #careers_intro_section,
  .careers_section {
    padding: 120px 0;
  }
  #careers_intro_section.no-padding-bottom-mobile,
  .careers_section.no-padding-bottom-mobile {
    padding-bottom: 120px;
  }
  .page-template-privacy #main .main_content {
    width: 66%;
    margin-right: 14%;
  }
  .page-template-privacy #main aside {
    display: block;
  }
  .page-id-3900 .landing-page--bottom {
    flex-direction: row;
  }
  .page-template-contact #form_section .gfield--width-half, .page-template-home #form_section .gfield--width-half {
    grid-column: span 6;
  }
  .page-template-contact #form_section .ginput_container input, .page-template-contact #form_section .ginput_container textarea, .page-template-home #form_section .ginput_container input, .page-template-home #form_section .ginput_container textarea {
    font-size: 20px;
  }
  .page-template-contact #form_section #gform_fields_1, .page-template-home #form_section #gform_fields_1 {
    grid-row-gap: 24px;
  }
  .page-template-contact #form_section .gform-field-label, .page-template-contact #form_section .radio_label, .page-template-home #form_section .gform-field-label, .page-template-home #form_section .radio_label {
    color: #000 !important;
  }
  .page-template-contact #form_section .gfield_checkbox, .page-template-home #form_section .gfield_checkbox {
    flex-direction: row;
    justify-content: flex-start !important;
    gap: 8px;
  }
  .page-template-contact #form_section .gform_footer, .page-template-home #form_section .gform_footer {
    margin-top: 26px !important;
  }
  .page-template-contact #form_section .gform_footer .button, .page-template-home #form_section .gform_footer .button {
    width: auto;
  }
  .page-template-contact #form_section .gf-recaptcha-div, .page-template-home #form_section .gf-recaptcha-div {
    bottom: 12px;
  }
  .page-id-5369 form .gfield--width-half {
    grid-column: span 6;
  }
  .page-id-5369 form .ginput_container input, .page-id-5369 form .ginput_container textarea {
    font-size: 20px;
  }
  .page-id-5369 form #gform_fields_1 {
    grid-row-gap: 24px;
  }
  .page-id-5369 form .gform-field-label, .page-id-5369 form .radio_label {
    color: #000 !important;
  }
  .page-id-5369 form .gfield_checkbox {
    flex-direction: row;
    justify-content: flex-start !important;
    gap: 8px;
  }
  .page-id-5369 form .gform_footer {
    margin-top: 26px !important;
  }
  .page-id-5369 form .gform_footer .button {
    width: auto;
  }
  .page-template-home #form_section {
    padding-bottom: 60px;
    padding-top: 60px;
    margin-top: 0;
  }
  .page-template-home #form_section .form-wrapper {
    padding-top: 10px;
    padding-bottom: 40px;
    max-width: 57%;
  }
  .page-template-home #form_section .form-wrapper h2 {
    font-size: 28px;
  }
  .page-template-home #form_section .form_image {
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 36%;
    border-left: 4px solid #99CC33;
    background-position: center;
    border-top: 0;
  }
  .page-template-home #form_section .expanding-header .half {
    width: 50%;
  }
  .page-template-home #form_section .expanding-header .half h3 {
    font-size: 28px;
  }
  .post-cta-box {
    flex-direction: row;
    margin-bottom: 80px;
  }
  .post-cta-box .content {
    width: 56%;
    padding: 32px 32px 40px 40px;
  }
  .post-cta-box .content p {
    font-size: 18px;
    padding-bottom: 60px;
    line-height: 1.4;
  }
  .post-cta-box .content p.cta_title {
    font-size: 28px;
    padding-bottom: 28px;
    line-height: 1.2;
  }
  .post-cta-box .content a {
    font-size: 16px;
    border: 1px solid #97C83B;
    border-radius: 200px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.5s;
  }
  .post-cta-box .image {
    width: 44%;
    border-right: 1px solid #97C83B;
    border-bottom: 0px;
    min-height: auto;
  }
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Desktop Stylsheet

  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.

  ******************************************************************/
  .wrap {
    width: 85%;
    max-width: 1040px;
  }
  /* Header */
  .masterhead {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    padding: 0;
  }
  .masterhead .hero_text {
    max-width: 440px;
    bottom: 20%;
    right: 0;
    position: absolute;
    float: none;
  }
  #home_container {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 5;
    -webkit-backface-visibility: hidden;
    margin-top: -100px;
  }
  #page_container {
    z-index: 5;
    -webkit-backface-visibility: hidden;
  }
  .masterhead.desktop {
    display: block;
  }
  .masterhead.mobile {
    display: none;
  }
  .nav {
    margin-left: -1em;
  }
  .nav li {
    float: left;
  }
  .nav li a {
    padding: 3px 1em;
    font-size: 1rem;
  }
  .desktopnav {
    display: block;
  }
  .header {
    z-index: 999;
  }
  .header .icon {
    display: none;
  }
  /* Global */
  .left_panel {
    width: 47%;
  }
  .right_panel {
    width: 43%;
  }
  #dots {
    right: 2.5%;
  }
  .white_gradient {
    background: -moz-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgb(255, 255, 255)), color-stop(30%, rgb(255, 255, 255)), color-stop(75%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%); /* IE10+ */
    background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 ); /* IE6-9 */
  }
  /* Home */
  .posts-wrap .latest_post_container {
    display: flex;
    justify-content: space-between;
  }
  .posts-wrap .latest_post_container .post-wrapper {
    width: 31%;
  }
  #topics_nav .topic_link_container.active a {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  #topics_nav .topic_link_container a {
    font-size: 1.1rem;
  }
  #topics_nav .topic_link_container.active a {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  #topics_nav .topic_link_container a {
    font-size: 1.1rem;
  }
  #home_section_2 {
    /*
    	.slick-next {
    		right: 20px;
    	}

    	.slick-prev {
    		left: 20px;
    	}

    	*/
  }
  #home_section_2 .slider_item {
    background-position: center top -90px;
  }
  #home_section_2 .slider_item .slider_content {
    max-width: 470px;
  }
  #home_section_2 .we_believe_item_3 {
    background-position: center top;
  }
  #home_section_2 .slick-next {
    right: auto;
  }
  #home_section_2 .slick-prev {
    left: auto;
  }
  #leadership_team {
    padding-bottom: 50%;
    background-position: center top -50px;
  }
  #leadership_team .leader_profile.leader_profile_1 {
    top: 5%;
  }
  #leadership_team .leader_profile.leader_profile_2 {
    top: 8%;
  }
  #leadership_team .leader_profile.leader_profile_3 {
    top: 3%;
  }
  #profiles_section .profile {
    width: 20%;
  }
  #profiles_section .profile #profile_content_1 {
    right: -100%;
    bottom: auto;
    top: auto;
    left: auto;
  }
  #profiles_section .profile #profile_content_2 {
    right: -200%;
    bottom: auto;
    top: auto;
    left: auto;
  }
  #profiles_section .profile.profile_1 #profile_content_1, #profiles_section .profile.profile_1 #profile_content_2,
  #profiles_section .profile.profile_2 #profile_content_1,
  #profiles_section .profile.profile_2 #profile_content_2,
  #profiles_section .profile.profile_3 #profile_content_1,
  #profiles_section .profile.profile_3 #profile_content_2,
  #profiles_section .profile.profile_4 .profile.profile_5 #profile_content_1,
  #profiles_section .profile.profile_4 .profile.profile_5 #profile_content_2,
  #profiles_section .profile.profile_6 #profile_content_1,
  #profiles_section .profile.profile_6 #profile_content_2,
  #profiles_section .profile.profile_7 #profile_content_1,
  #profiles_section .profile.profile_7 #profile_content_2,
  #profiles_section .profile.profile_8 #profile_content_1,
  #profiles_section .profile.profile_8 #profile_content_2,
  #profiles_section .profile.profile_9 #profile_content_1,
  #profiles_section .profile.profile_9 #profile_content_2,
  #profiles_section .profile.profile_10 #profile_content_1,
  #profiles_section .profile.profile_10 #profile_content_2,
  #profiles_section .profile.profile_11 #profile_content_1,
  #profiles_section .profile.profile_11 #profile_content_2,
  #profiles_section .profile.profile_12 #profile_content_1,
  #profiles_section .profile.profile_12 #profile_content_2,
  #profiles_section .profile.profile_13 #profile_content_1,
  #profiles_section .profile.profile_13 #profile_content_2,
  #profiles_section .profile.profile_14 #profile_content_1,
  #profiles_section .profile.profile_14 #profile_content_2,
  #profiles_section .profile.profile_15 #profile_content_1,
  #profiles_section .profile.profile_15 #profile_content_2 {
    bottom: auto;
    top: auto;
  }
  #profiles_section .profile.profile_4 #profile_content_1,
  #profiles_section .profile.profile_5 #profile_content_1,
  #profiles_section .profile.profile_9 #profile_content_1,
  #profiles_section .profile.profile_10 #profile_content_1,
  #profiles_section .profile.profile_14 #profile_content_1,
  #profiles_section .profile.profile_15 #profile_content_1 {
    left: -100%;
    right: auto;
  }
  #profiles_section .profile.profile_4 #profile_content_2,
  #profiles_section .profile.profile_5 #profile_content_2,
  #profiles_section .profile.profile_9 #profile_content_2,
  #profiles_section .profile.profile_10 #profile_content_2,
  #profiles_section .profile.profile_14 #profile_content_2,
  #profiles_section .profile.profile_15 #profile_content_2 {
    left: -200%;
    right: auto;
  }
  #profiles_section .profile.full_width_text #profile_content_1 {
    right: -200%;
    left: auto;
    width: 200%;
  }
  #profiles_section .profile.profile_4.full_width_text #profile_content_1,
  #profiles_section .profile.profile_5.full_width_text #profile_content_1,
  #profiles_section .profile.profile_9.full_width_text #profile_content_1,
  #profiles_section .profile.profile_10.full_width_text #profile_content_1,
  #profiles_section .profile.profile_14.full_width_text #profile_content_1,
  #profiles_section .profile.profile_15.full_width_text #profile_content_1 {
    left: -200%;
    right: auto;
    width: 200%;
  }
  #profiles_section #leadership_team .profile {
    left: 20%;
    padding-bottom: 20%;
  }
  .profile_lightbox {
    width: 960px;
    margin-left: -470px;
    margin-top: -340px;
  }
  .profile_lightbox .profile_image {
    width: 250px;
    height: 250px;
  }
  .profile_lightbox .profile_basic_info {
    width: 250px;
    height: calc(100% - 250px);
  }
  .profile_lightbox .left_content {
    width: 250px;
  }
  .profile_lightbox .right_content {
    width: 710px;
    font-size: 1.02em;
  }
  .profile_lightbox .profile_desc_1 {
    width: 50%;
    padding: 40px 20px 40px 40px;
  }
  .profile_lightbox .profile_desc_2 {
    width: 50%;
    padding: 40px 40px 40px 20px;
  }
  #social_section .left_panel {
    width: 53%;
  }
  #social_section .right_panel {
    width: 37%;
  }
  #profiles_wrap.loading {
    padding-bottom: 100%;
  }
  /* About */
  #about_section .left_panel {
    width: 50%;
  }
  #small_business_section .right_panel {
    width: 50%;
  }
  /* Services */
  .single-service #services_nav .service_button {
    width: 40%;
  }
  #services_intro_section .left_panel {
    width: 50%;
  }
  #services_section .left_panel {
    width: 40%;
  }
  #services_section .right_panel {
    width: 50%;
  }
  #services_section #insource_people a {
    padding-left: 90px;
  }
  /* Careers */
  #careers_intro_section .left_panel {
    width: 50%;
  }
  #jobs_section .left_panel {
    width: 40%;
  }
  #jobs_section .right_panel {
    width: 50%;
  }
  #inside_insource_container .inside_insource {
    text-align: left;
    padding: 190px 0;
  }
  #inside_insource_container .inside_insource .inside_insource_content.inside_insource_content_2 {
    max-width: 580px;
  }
  /* Contact */
  #contact_section .left_panel {
    width: 40%;
  }
  #contact_section .right_panel {
    width: 50%;
  }
  #contact_section .addresses_container .address {
    width: 33.33%;
  }
  #contact_section .addresses_container #address_3 {
    margin-top: 0;
  }
  #form_section .gform_wrapper.two-column_wrapper ul.gform_fields.gform_column_1 {
    width: 48%;
  }
  #form_section .gform_wrapper.two-column_wrapper ul.gform_fields.gform_column_2 {
    width: 48%;
    float: right;
  }
  #form_section .gform_wrapper.two-column_wrapper .top_label textarea.textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  /* News */
  #latest_news .featured_image {
    padding-bottom: 40%;
  }
  #latest_news #post_content {
    padding-right: 2.5em;
  }
  #latest_news #post_content .entry-content .author_info_container {
    margin-bottom: 0;
  }
  /* About */
  #non_profit_container .non_profit_section .non_profit_content {
    width: 43%;
  }
  /* Equality */
  .equality .left_panel {
    width: 49%;
  }
  .equality .right_panel {
    width: 41%;
  }
  .equality#equality_section {
    padding-bottom: 1.5rem;
  }
  .equality#closing_section {
    padding-bottom: 1.5rem;
  }
  .equality#video_section {
    padding-bottom: 7.5rem;
  }
  .logos_wrapper {
    justify-content: space-between;
  }
  .logos_wrapper .logo {
    display: block;
    flex: 1 20%;
    text-align: center;
  }
  .logos_wrapper .logo:nth-child(5n+1):not(.last_row) {
    text-align: left;
  }
  .logos_wrapper .logo:nth-child(5n+5) {
    text-align: right;
    margin-right: -20px;
  }
  .logos_wrapper .logo img {
    width: auto;
    max-width: 75%;
  }
  .partners_logos.logos_wrapper .logo {
    display: block;
    flex: 1 40%;
    text-align: center;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Desktop Stylsheet

  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.

  ******************************************************************/
  .wrap {
    width: 85%;
    max-width: 1040px;
  }
  /* Header */
  .masterhead {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    padding: 0;
  }
  .masterhead .hero_text {
    max-width: 440px;
    bottom: 20%;
    right: 0;
    position: absolute;
    float: none;
  }
  #home_container {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 5;
    -webkit-backface-visibility: hidden;
    margin-top: -110px;
  }
  #page_container {
    z-index: 5;
    -webkit-backface-visibility: hidden;
  }
  .masterhead.desktop {
    display: block;
  }
  .masterhead.mobile {
    display: none;
  }
  .nav {
    margin-left: -1em;
    margin-top: 1.25rem;
  }
  .nav li {
    float: left;
  }
  .nav li a {
    padding: 3px 1em;
    font-size: 1rem;
  }
  .desktopnav {
    display: block;
  }
  .header {
    z-index: 999;
  }
  .header .icon {
    display: none;
  }
  /* Global */
  .left_panel {
    width: 47%;
  }
  .right_panel {
    width: 43%;
  }
  #dots {
    right: 2.5%;
  }
  .white_gradient {
    background: -moz-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgb(255, 255, 255)), color-stop(30%, rgb(255, 255, 255)), color-stop(75%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%); /* IE10+ */
    background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 ); /* IE6-9 */
  }
  /* Home */
  #topics_nav .topic_link_container.active a {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  #topics_nav .topic_link_container a {
    font-size: 1.1rem;
  }
  #topics_nav .topic_link_container.active a {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  #topics_nav .topic_link_container a {
    font-size: 1.1rem;
  }
  #home_section_2 {
    /*
    .slick-next {
    right: 20px;
    }

    .slick-prev {
    left: 20px;
    }

    */
  }
  #home_section_2 .slider_item {
    background-position: center top -90px;
  }
  #home_section_2 .slider_item .slider_content {
    max-width: 500px;
  }
  #home_section_2 .we_believe_item_3 {
    background-position: center top;
  }
  #home_section_2 .slick-next {
    right: auto;
  }
  #home_section_2 .slick-prev {
    left: auto;
  }
  #leadership_team {
    padding-bottom: 50%;
    background-position: center top -50px;
  }
  #leadership_team .leader_profile.leader_profile_1 {
    top: 5%;
  }
  #leadership_team .leader_profile.leader_profile_2 {
    top: 8%;
  }
  #leadership_team .leader_profile.leader_profile_3 {
    top: 3%;
  }
  #profiles_section .profile {
    width: 20%;
  }
  #profiles_section .profile #profile_content_1 {
    right: -100%;
    bottom: auto;
    top: auto;
    left: auto;
  }
  #profiles_section .profile #profile_content_2 {
    right: -200%;
    bottom: auto;
    top: auto;
    left: auto;
  }
  #profiles_section .profile.profile_1 #profile_content_1, #profiles_section .profile.profile_1 #profile_content_2,
  #profiles_section .profile.profile_2 #profile_content_1,
  #profiles_section .profile.profile_2 #profile_content_2,
  #profiles_section .profile.profile_3 #profile_content_1,
  #profiles_section .profile.profile_3 #profile_content_2,
  #profiles_section .profile.profile_4 .profile.profile_5 #profile_content_1,
  #profiles_section .profile.profile_4 .profile.profile_5 #profile_content_2,
  #profiles_section .profile.profile_6 #profile_content_1,
  #profiles_section .profile.profile_6 #profile_content_2,
  #profiles_section .profile.profile_7 #profile_content_1,
  #profiles_section .profile.profile_7 #profile_content_2,
  #profiles_section .profile.profile_8 #profile_content_1,
  #profiles_section .profile.profile_8 #profile_content_2,
  #profiles_section .profile.profile_9 #profile_content_1,
  #profiles_section .profile.profile_9 #profile_content_2,
  #profiles_section .profile.profile_10 #profile_content_1,
  #profiles_section .profile.profile_10 #profile_content_2,
  #profiles_section .profile.profile_11 #profile_content_1,
  #profiles_section .profile.profile_11 #profile_content_2,
  #profiles_section .profile.profile_12 #profile_content_1,
  #profiles_section .profile.profile_12 #profile_content_2,
  #profiles_section .profile.profile_13 #profile_content_1,
  #profiles_section .profile.profile_13 #profile_content_2,
  #profiles_section .profile.profile_14 #profile_content_1,
  #profiles_section .profile.profile_14 #profile_content_2,
  #profiles_section .profile.profile_15 #profile_content_1,
  #profiles_section .profile.profile_15 #profile_content_2 {
    bottom: auto;
    top: auto;
  }
  #profiles_section .profile.profile_4 #profile_content_1,
  #profiles_section .profile.profile_5 #profile_content_1,
  #profiles_section .profile.profile_9 #profile_content_1,
  #profiles_section .profile.profile_10 #profile_content_1,
  #profiles_section .profile.profile_14 #profile_content_1,
  #profiles_section .profile.profile_15 #profile_content_1 {
    left: -100%;
    right: auto;
  }
  #profiles_section .profile.profile_4 #profile_content_2,
  #profiles_section .profile.profile_5 #profile_content_2,
  #profiles_section .profile.profile_9 #profile_content_2,
  #profiles_section .profile.profile_10 #profile_content_2,
  #profiles_section .profile.profile_14 #profile_content_2,
  #profiles_section .profile.profile_15 #profile_content_2 {
    left: -200%;
    right: auto;
  }
  #profiles_section .profile.full_width_text #profile_content_1 {
    right: -200%;
    left: auto;
    width: 200%;
  }
  #profiles_section .profile.profile_4.full_width_text #profile_content_1,
  #profiles_section .profile.profile_5.full_width_text #profile_content_1,
  #profiles_section .profile.profile_9.full_width_text #profile_content_1,
  #profiles_section .profile.profile_10.full_width_text #profile_content_1,
  #profiles_section .profile.profile_14.full_width_text #profile_content_1,
  #profiles_section .profile.profile_15.full_width_text #profile_content_1 {
    left: -200%;
    right: auto;
    width: 200%;
  }
  #profiles_section #leadership_team .profile {
    left: 20%;
    padding-bottom: 20%;
  }
  .profile_lightbox {
    width: 960px;
    margin-left: -470px;
    margin-top: -340px;
  }
  .profile_lightbox .profile_image {
    width: 250px;
    height: 250px;
  }
  .profile_lightbox .profile_basic_info {
    width: 250px;
    height: calc(100% - 250px);
  }
  .profile_lightbox .left_content {
    width: 250px;
  }
  .profile_lightbox .right_content {
    width: 710px;
    font-size: 1.02em;
  }
  .profile_lightbox .profile_desc_1 {
    width: 50%;
    padding: 40px 20px 40px 40px;
  }
  .profile_lightbox .profile_desc_2 {
    width: 50%;
    padding: 40px 40px 40px 20px;
  }
  #social_section .left_panel {
    width: 53%;
  }
  #social_section .right_panel {
    width: 37%;
  }
  #profiles_wrap.loading {
    padding-bottom: 100%;
  }
  /* About */
  #about_section .left_panel {
    width: 50%;
  }
  #small_business_section {
    padding: 100px 0px;
  }
  #small_business_section .right_panel {
    width: 51%;
  }
  #small_business_section .right_panel h2 {
    margin-top: 0;
    margin-bottom: 0;
  }
  /* Services */
  .single-service #services_nav .service_button {
    width: 40%;
  }
  #services_intro_section .left_panel {
    width: 50%;
  }
  #services_section .left_panel {
    width: 40%;
  }
  #services_section .right_panel {
    width: 50%;
  }
  #services_section #insource_people a {
    padding-left: 90px;
  }
  /* Careers */
  #careers_intro_section .left_panel {
    width: 50%;
  }
  #jobs_section .left_panel {
    width: 40%;
  }
  #jobs_section .right_panel {
    width: 50%;
  }
  #inside_insource_container .inside_insource {
    text-align: left;
    padding: 190px 0;
  }
  #inside_insource_container .inside_insource .inside_insource_content.inside_insource_content_2 {
    max-width: 580px;
  }
  /* Contact */
  #contact_section .left_panel {
    width: 40%;
  }
  #contact_section .right_panel {
    width: 50%;
  }
  #contact_section .addresses_container .address {
    width: 33.33%;
  }
  #contact_section .addresses_container #address_3 {
    margin-top: 0;
  }
  #form_section .gform_wrapper.two-column_wrapper ul.gform_fields.gform_column_1 {
    width: 48%;
  }
  #form_section .gform_wrapper.two-column_wrapper ul.gform_fields.gform_column_2 {
    width: 48%;
    float: right;
  }
  #form_section .gform_wrapper.two-column_wrapper .top_label textarea.textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  /* News */
  #latest_news .featured_image {
    padding-bottom: 40%;
  }
  #latest_news #post_content {
    padding-right: 2.5em;
  }
  #latest_news #post_content .entry-content .author_info_container {
    margin-bottom: 0;
  }
  /* About */
  #non_profit_container .non_profit_section .non_profit_content {
    width: 43%;
  }
  /* Equality */
  .equality .left_panel {
    width: 46%;
  }
  .equality .right_panel {
    width: 46%;
  }
  .equality#video_section {
    padding-bottom: 7.5rem;
  }
  .page-template-home .latest_post_container h3, .single-post .latest_post_container h3 {
    min-height: 71px;
  }
  .single-post #social_section {
    padding-top: 48px;
  }
  .single-post #social_section .posts-wrap .posts-title {
    margin-bottom: 48px;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Retina Screens & Devices Stylesheet

  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.

  ******************************************************************/
  /* 

  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 

  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

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