@import url("../libs/custom/icomoon/style.css");
/*
PARTIAL DIRECTORIES:
-Variables - Store all Sass variables here
-Mixins - Store all Sass mixins here
-Overrides - Store all partials related to direct overrides of default vendor CSS here
-Base - Store core themeing of base typography, inputs, buttons, along with static utility classes here
-Layout - Store top-level scaffolding of header, footer here
-Components - Store all other styles here, breaking into intuitive subdirectories as needed.

RULES OF THUMB:
-When creating core styles related to a particular subdirectory, create a __base.scss file within that subdirectory. This will ensure it is compiled first.
-The same is true for sibling subdirectories - you can prepend a directory name with '_' to make it compile prior to its siblings
*/
/*
  Mobile-first - use Breakpoint Sass library, already included via style.scss (http://breakpoint-sass.com/)
  Example usage:
  .test-component-responsive-font-size {
    font-size: 1rem;
    @include breakpoint($phablet) {
      font-size: 1.2rem;
    }
    @include breakpoint($tablet) {
      font-size: 1.6rem;
    }
    @include breakpoint($desktop) {
      font-size: 22rem;
    }
  }
*/
/*
 Z-indexing values
 Think of these z-index maps indices as "tiers".
 When an element needs a higher z-index, bump up the value in increments of 1 until things work (z(1), z(2), etc.),
 keeping the minimum  value necessary to get the job done. This level of abstraction can help, in that you are writing
 your custom z-index  values with relative tiers that will always be correct, BUT if a new  toolkit is introduced with
 some wacky z-indices  that you need to account for, you can just change the actual z-index values in the map to make
 things work, making sure  that they remain in ascending order relative to the keys.
*/
/*-------------------------------------------------------------------------------------------*/
/* BOOTSTRAP OVERRIDES */
/*-------------------------------------------------------------------------------------------*/
/**
  * Custom Bootstrap 3 grid for 480-767px layout
  *
  * A new set of column classes (with class prefix .col-ms- ) for Bootstrap 3
  * to make Medium Small grids for supporting 480-767px
  *
  * This will push the default Bootstrap 3 Extra Small column (class prefix .col-xs- )
  * to support 1-479px instead of 1-767px
  */
.col-ms-1,
.col-ms-2,
.col-ms-3,
.col-ms-4,
.col-ms-5,
.col-ms-6,
.col-ms-7,
.col-ms-8,
.col-ms-9,
.col-ms-10,
.col-ms-11,
.col-ms-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 480px) and (max-width: 767px) {
  .container {
    max-width: 748px;
  }
  .hidden-xs {
    display: block !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .col-ms-1,
  .col-ms-2,
  .col-ms-3,
  .col-ms-4,
  .col-ms-5,
  .col-ms-6,
  .col-ms-7,
  .col-ms-8,
  .col-ms-9,
  .col-ms-10,
  .col-ms-11,
  .col-ms-12 {
    float: left;
  }
  .col-ms-12 {
    width: 100%;
  }
  .col-ms-11 {
    width: 91.66666667%;
  }
  .col-ms-10 {
    width: 83.33333333%;
  }
  .col-ms-9 {
    width: 75%;
  }
  .col-ms-8 {
    width: 66.66666667%;
  }
  .col-ms-7 {
    width: 58.33333333%;
  }
  .col-ms-6 {
    width: 50%;
  }
  .col-ms-5 {
    width: 41.66666667%;
  }
  .col-ms-4 {
    width: 33.33333333%;
  }
  .col-ms-3 {
    width: 25%;
  }
  .col-ms-2 {
    width: 16.66666667%;
  }
  .col-ms-1 {
    width: 8.33333333%;
  }
  .col-ms-pull-12 {
    right: 100%;
  }
  .col-ms-pull-11 {
    right: 91.66666667%;
  }
  .col-ms-pull-10 {
    right: 83.33333333%;
  }
  .col-ms-pull-9 {
    right: 75%;
  }
  .col-ms-pull-8 {
    right: 66.66666667%;
  }
  .col-ms-pull-7 {
    right: 58.33333333%;
  }
  .col-ms-pull-6 {
    right: 50%;
  }
  .col-ms-pull-5 {
    right: 41.66666667%;
  }
  .col-ms-pull-4 {
    right: 33.33333333%;
  }
  .col-ms-pull-3 {
    right: 25%;
  }
  .col-ms-pull-2 {
    right: 16.66666667%;
  }
  .col-ms-pull-1 {
    right: 8.33333333%;
  }
  .col-ms-pull-0 {
    right: auto;
  }
  .col-ms-push-12 {
    left: 100%;
  }
  .col-ms-push-11 {
    left: 91.66666667%;
  }
  .col-ms-push-10 {
    left: 83.33333333%;
  }
  .col-ms-push-9 {
    left: 75%;
  }
  .col-ms-push-8 {
    left: 66.66666667%;
  }
  .col-ms-push-7 {
    left: 58.33333333%;
  }
  .col-ms-push-6 {
    left: 50%;
  }
  .col-ms-push-5 {
    left: 41.66666667%;
  }
  .col-ms-push-4 {
    left: 33.33333333%;
  }
  .col-ms-push-3 {
    left: 25%;
  }
  .col-ms-push-2 {
    left: 16.66666667%;
  }
  .col-ms-push-1 {
    left: 8.33333333%;
  }
  .col-ms-push-0 {
    left: auto;
  }
  .col-ms-offset-12 {
    margin-left: 100%;
  }
  .col-ms-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-ms-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-ms-offset-9 {
    margin-left: 75%;
  }
  .col-ms-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-ms-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-ms-offset-6 {
    margin-left: 50%;
  }
  .col-ms-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-ms-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-ms-offset-3 {
    margin-left: 25%;
  }
  .col-ms-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-ms-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-ms-offset-0 {
    margin-left: 0%;
  }
}

.visible-xs,
.visible-ms {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-ms-block,
.visible-ms-inline,
.visible-ms-inline-block {
  display: none !important;
}

@media (max-width: 479px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 479px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 479px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 479px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .visible-ms {
    display: block !important;
  }
  table.visible-ms {
    display: table;
  }
  tr.visible-ms {
    display: table-row !important;
  }
  th.visible-ms,
  td.visible-ms {
    display: table-cell !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .visible-ms-block {
    display: block !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .visible-ms-inline {
    display: inline !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .visible-ms-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 479px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .hidden-ms {
    display: none !important;
  }
}

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

html {
  font-size: 62.5%;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.shadow {
  box-shadow: 0px 0px 35px 1px rgba(0, 0, 0, 0.2) !important;
}

/* .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
} */

.leaders.first {
  padding-top: 0rem !important;
}

.container {
  padding-top: 0;
  padding-bottom: 0;
}

body.media {
  display: block;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.wp-caption .wp-caption-text {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 30px;
}

table {
  border: 1px solid #4a4a4a;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #4a4a4a;
  padding: 4px 16px;
}

th {
  background-color: #4a4a4a;
  color: #fdfdfd;
}

body {
  color: #4a4a4a;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat",
    "Montserrat Regular", Helvetica, _sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 2;
  background-color: #fdfdfd;
}
@media (min-width: 992px) {
  body {
    font-size: 1.6rem;
    line-height: 2;
  }
}

a {
  color: #233835;
  font-weight: 700;
  transition: color 0.3s;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
a:hover,
a:focus {
  color: #536788;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #4a4a4a;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat",
    "Montserrat Regular", Helvetica, _sans-serif;
  font-weight: normal;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
  margin: 0 0 1.6rem;
}
@media (min-width: 992px) {
  h1,
  h2,
  h3,
  .h1,
  .h2,
  .h3 {
    margin: 0 0 1.8rem;
  }
}
@media (min-width: 1200px) {
  h1,
  h2,
  h3,
  .h1,
  .h2,
  .h3 {
    margin: 0 0 2rem;
  }
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  margin: 0 0 1.2rem;
}

h1,
.h1 {
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 700;
}
@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 8rem;
    line-height: 1.1;
  }
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 10.4rem;
    line-height: 1.07692;
  }
}

h2,
.h2 {
  font-size: 1.8rem;
  line-height: 1.33333;
  font-weight: 600;
}
@media (min-width: 992px) {
  h2,
  .h2 {
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 2.8rem;
    line-height: 1.33333;
  }
}

h3,
.h3 {
  font-size: 1.8rem;
  line-height: 1.33333;
  font-weight: 600;
}
@media (min-width: 992px) {
  h3,
  .h3 {
    font-size: 2rem;
    line-height: 1.4;
  }
}

@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 2.2rem;
    line-height: 1.33333;
  }
}

h4,
.h4 {
  font-size: 1.8rem;
  line-height: 1.33333;
  font-weight: 600;
}
@media (min-width: 992px) {
  h4,
  .h4 {
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media (min-width: 1200px) {
  h4,
  .h4 {
    font-size: 1.8rem;
    line-height: 1.33333;
  }
}

h5,
.h5 {
  font-size: 1.8rem;
  line-height: 1.33333;
  font-weight: 600;
}
@media (min-width: 992px) {
  h5,
  .h5 {
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media (min-width: 1200px) {
  h5,
  .h5 {
    font-size: 1.6rem;
    line-height: 1.33333;
  }
}

h6,
.h6 {
  font-family: "Montserrat", "Montserrat Regular", "Montserrat",
    "Montserrat Regular", Helvetica, _sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.33333;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
}

h1.h3,
h1.h6,
h2.h3,
h2.h6,
h4.h3,
h4.h6,
h5.h3,
h5.h6 {
  text-transform: none;
}

h3.h1,
h3.h2,
h3.h4,
h3.h5,
h6.h1,
h6.h2,
h6.h4,
h6.h5 {
  text-transform: none;
}

.fancy-underline,
.panel-team .filter-reset:hover .fancy-underline,
.panel-team .facetwp-radio:hover .fancy-underline,
.panel-team .filter-reset.checked .fancy-underline,
.panel-team .facetwp-radio.checked .fancy-underline {
  padding-left: 4px;
  padding-right: 12px;
  margin-left: -4px;
  margin-right: -12px;
  background: linear-gradient(to top, #eaeaec 40%, transparent 40%);
}
.big-heading .fancy-underline,
.big-heading .panel-team .filter-reset:hover .fancy-underline,
.panel-team .filter-reset:hover .big-heading .fancy-underline,
.big-heading .panel-team .facetwp-radio:hover .fancy-underline,
.panel-team .facetwp-radio:hover .big-heading .fancy-underline,
.big-heading .panel-team .filter-reset.checked .fancy-underline,
.panel-team .filter-reset.checked .big-heading .fancy-underline,
.big-heading .panel-team .facetwp-radio.checked .fancy-underline,
.panel-team .facetwp-radio.checked .big-heading .fancy-underline {
  background: linear-gradient(
    to top,
    transparent 15%,
    #eaeaec 15%,
    #eaeaec 40%,
    transparent 40%
  );
}
.panel-masthead .fancy-underline,
.panel-slideshow .image-block .fancy-underline,
.panel-masthead .panel-team .filter-reset:hover .fancy-underline,
.panel-team .filter-reset:hover .panel-masthead .fancy-underline,
.panel-masthead .panel-team .facetwp-radio:hover .fancy-underline,
.panel-team .facetwp-radio:hover .panel-masthead .fancy-underline,
.panel-masthead .panel-team .filter-reset.checked .fancy-underline,
.panel-team .filter-reset.checked .panel-masthead .fancy-underline,
.panel-masthead .panel-team .facetwp-radio.checked .fancy-underline,
.panel-team .facetwp-radio.checked .panel-masthead .fancy-underline,
.panel-slideshow .image-block .panel-team .filter-reset:hover .fancy-underline,
.panel-team .filter-reset:hover .panel-slideshow .image-block .fancy-underline,
.panel-slideshow .image-block .panel-team .facetwp-radio:hover .fancy-underline,
.panel-team .facetwp-radio:hover .panel-slideshow .image-block .fancy-underline,
.panel-slideshow
  .image-block
  .panel-team
  .filter-reset.checked
  .fancy-underline,
.panel-team
  .filter-reset.checked
  .panel-slideshow
  .image-block
  .fancy-underline,
.panel-slideshow
  .image-block
  .panel-team
  .facetwp-radio.checked
  .fancy-underline,
.panel-team
  .facetwp-radio.checked
  .panel-slideshow
  .image-block
  .fancy-underline {
  background: linear-gradient(to top, #536788 40%, transparent 40%);
}
.panel-masthead .big-heading .fancy-underline,
.panel-masthead .big-heading .panel-team .filter-reset:hover .fancy-underline,
.panel-team .filter-reset:hover .panel-masthead .big-heading .fancy-underline,
.panel-masthead .big-heading .panel-team .facetwp-radio:hover .fancy-underline,
.panel-team .facetwp-radio:hover .panel-masthead .big-heading .fancy-underline,
.panel-masthead .big-heading .panel-team .filter-reset.checked .fancy-underline,
.panel-team .filter-reset.checked .panel-masthead .big-heading .fancy-underline,
.panel-masthead
  .big-heading
  .panel-team
  .facetwp-radio.checked
  .fancy-underline,
.panel-team
  .facetwp-radio.checked
  .panel-masthead
  .big-heading
  .fancy-underline {
  background: linear-gradient(
    to top,
    transparent 15%,
    #536788 15%,
    #536788 40%,
    transparent 40%
  );
}

p,
ul,
ol,
dl,
pre,
table,
blockquote,
address {
  margin: 0 0 2rem;
}
@media (min-width: 992px) {
  p,
  ul,
  ol,
  dl,
  pre,
  table,
  blockquote,
  address {
    margin: 0 0 2.2rem;
  }
}
@media (min-width: 1200px) {
  p,
  ul,
  ol,
  dl,
  pre,
  table,
  blockquote,
  address {
    margin: 0 0 2.4rem;
  }
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

blockquote {
  padding: 8px 16px;
  font-size: 2.4rem;
  line-height: 1.66667;
  border-left: 5px solid #e9625c;
  color: #233835;
}
@media (min-width: 992px) {
  blockquote {
    padding: 12px 20px;
    font-size: 2.8rem;
    line-height: 1.57143;
  }
}

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

blockquote footer {
  display: block;
  font-size: 1.6rem;
  line-height: 1.76rem;
}

small,
.small,
.validation_error,
.gfield_description,
.footer .gform_confirmation_wrapper {
  font-size: 80%;
  line-height: 1.5;
}

mark,
.mark {
  padding: 0.32rem;
  background-color: #fffa64;
}

address {
  font-style: normal;
}

.hide {
  display: none !important;
}

/* Selective hides */
@media (min-width: 0) and (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hide-phablet {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-phablet-up {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hide-tablet-up {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hide-desktop-up {
    display: none !important;
  }
}

@media (min-width: 0) and (max-width: 767px) {
  .hide-mobile-down {
    display: none !important;
  }
}

@media (min-width: 0) and (max-width: 991px) {
  .hide-phablet-down {
    display: none !important;
  }
}

@media (min-width: 0) and (max-width: 1199px) {
  .hide-tablet-down {
    display: none !important;
  }
}

.sr-text,
.screen-reader-text,
.facetwp-pager .facetwp-pager-label {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

.alignleft {
  float: left;
  margin: 0 10px 0 0;
}

.alignright {
  float: right;
  margin: 0 0 0 10px;
}

.aligncenter {
  display: block;
  margin: 0 auto 30px;
}

button,
.button,
input[type="submit"],
input.button[type="submit"] {
  display: inline-block;
  margin: 0;
  border: 0;
  background-color: #e9625c;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s;
}
button,
button:hover,
button:focus,
.button,
.button:hover,
.button:focus,
input[type="submit"],
input.button[type="submit"],
input:hover[type="submit"],
input:focus[type="submit"] {
  color: #fdfdfd;
}
button:hover,
button:focus,
.button:hover,
.button:focus,
input:hover[type="submit"],
input:focus[type="submit"] {
  background-color: #da5852;
  text-decoration: none;
}

.button-blue {
  background-color: #233835;
}
.button-blue:hover,
.button-blue:focus {
  background-color: #536788;
}

.btn {
  font-weight: 500;
  font-size: 14px;
  border-radius: 0;
  text-transform: uppercase;
  padding: 10px 25px;
}

[class*="btn-outline-"] {
  border-width: 2px;
}

.btn-outline-dark {
  border-color: #144f2a;
}
.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background-color: transparent;
  color: #144f2a;
}

div.facetwp-facet {
  margin-bottom: 32px;
}

.facetwp-search-wrap .facetwp-search {
  height: 40px;
  padding-right: 32px;
}

.facetwp-search-wrap .facetwp-btn {
  font-size: 1.2rem;
  right: 8px;
}

@media (min-width: 992px) {
  .facetwp-search-wrap .facetwp-btn {
    top: 2px;
  }
}

.fancybox-button {
  min-width: 0;
  background-color: #e9625c;
  color: #fdfdfd;
  transition: background-color 0.3s, color 0.3s;
}
.fancybox-button:hover,
.fancybox-button:focus {
  background-color: #da5852;
}

/*-------------------------------------------------------------------------------------------*/
/* FORMS */
/*-------------------------------------------------------------------------------------------*/
input,
textarea,
select {
  border: 1px solid #ddd;
  padding: 5px 16px;
  background-color: #fdfdfd;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat",
    "Montserrat Regular", Helvetica, _sans-serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  width: 100%;
  min-height: 40px;
  transition: border-color 0.3s;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #bababa;
}
input:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  color: #bababa;
}
input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: #bababa;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #bababa;
}
input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  border-color: #9b9b9b;
}
.gfield_error input,
.gfield_error textarea,
.gfield_error select {
  border-color: #d0021b;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 40px;
}
select::-ms-expand {
  display: none;
}

.ginput_container_select {
  position: relative;
}
.ginput_container_select .icon-caret-down {
  position: absolute;
  right: 0;
  top: 50%;
  padding: 0 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #bababa;
  transition: color 0.3s;
}
.ginput_container_select:hover .icon-caret-down {
  color: #9b9b9b;
}

input[type="checkbox"],
input[type="radio"],
input[type="submit"] {
  width: auto;
}

input[type="file"] {
  padding-left: 0;
  padding-right: 0;
  border: 0;
}

input[type="submit"],
input[type="submit"].button {
  font-style: normal;
}

input[type="submit"],
input[type="submit"]:hover,
input[type="submit"]:focus {
  border: 0;
}

.gform_wrapper {
  text-align: left;
}

.gform_description {
  display: block;
  margin: 2.8rem 0;
  font-weight: 700;
}

.ginput_container_textarea {
  line-height: 0;
  height: 80px;
}
.ginput_container_textarea textarea {
  line-height: 2;
  max-height: 100%;
}

.gform_fields,
.gfield_checkbox,
.gfield_radio {
  padding-left: 0;
  list-style: none;
}

.gfield_label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: #223746;
}

.gfield {
  margin-bottom: 24px;
}

.name_first,
.name_last {
  font-size: 13px;
}

.gfield_checkbox,
.gfield_radio {
  font-size: 1.6rem;
}
.gfield_checkbox label,
.gfield_radio label {
  margin-left: 8px;
  vertical-align: middle;
}

.validation_error,
.validation_message,
.gfield_required {
  color: #d0021b;
}

.validation_error {
  margin-bottom: 16px;
}

.placeholder-selected {
  color: #bababa;
}

.gform_validation_container {
  display: none !important;
}
.gform_body {
  overflow: hidden;
}

.gform_footer .gform_button.button {
  background-color: #273745;
  border-radius: 0;
  padding: 10px 20px;
  font-size: 16px;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif;
  font-weight: 600 !important;
  line-height: 2rem;
  color: white;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #b0c3d4;
  opacity: 0;
  transition: opacity 0.3s, background-color 0.3s;
}

.slick-dots {
  margin: 0 0 20px;
  padding: 0;
  text-align: center;
}
.slick-dots,
.slick-dots button {
  font-size: 0;
}
.slick-dots li {
  display: inline-block;
  margin: 6px;
}
.slick-dots button {
  padding: 0;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  min-width: 0;
  background-color: #b0c3d4;
}
.slick-dots .slick-active button {
  background-color: #233835;
}

.slick-arrow {
  display: inline-block !important;
  font-size: 1.6rem;
}
.slick-arrow .slick-arrow-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f2f2f5;
  color: #9b9b9b;
  font-size: 4em;
  transition: background-color 0.3s, color 0.3s;
}
.slick-arrow .slick-arrow-inner:hover,
.slick-arrow .slick-arrow-inner:focus {
  background-color: #e1e1e7;
  color: #4a4a4a;
}
.slick-arrow.slick-prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.container,
.container-wide,
.container-fluid {
  width: 100%;
}
.container:after,
.container-wide:after,
.container-fluid:after {
  content: "";
  display: table;
  clear: both;
}

.container,
.container-wide {
  margin: 0 auto;
}

.nv-psh {
  padding: 0 0 0 15px;
}

.container {
  max-width: 1200px;
}

.container-wide {
  max-width: 1500px;
}

main {
  display: block;
  margin-top: 8rem;
}

.page-content {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 0;
  background-color: #fdfdfd;
  overflow: hidden;
  padding: 0;
  min-height: 500px;
}

.centr-all {
  margin: 0 auto;
}

@media (min-width: 992px) {
  .page-template-default .content-main,
  .single .content-main {
    max-width: 900px;
  }
}

.page-template-default h2,
.page-template-default h3,
.single h2,
.single h3 {
  color: #223746;
}

.content-main {
  margin: 0 10% 60px 10%;
  max-width: 1200px;
}
@media (max-width: 992px) {
  .content-main {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.page-numbers {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-numbers.current {
  background-color: #92cca1;
  color: white;
  font-weight: bold;
}

#wrapper {
  overflow-x: hidden;
}

body.has-mtsnb #wrapper {
  margin-top: 41px;
}

body.has-mtsnb header {
  top: 41px;
}

body.has-mtsnb.admin-bar header {
  top: 73px;
}

.dark-blue-cont a.blue-cont-l {
  font-size: 1rem !important;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 500 !important;
  line-height: 2rem !important;
  color: #7faed2 !important;
  margin-top: 1rem !important;
  display: inline-block !important;
  font-size: 16px !important;
  margin: 10px 0 !important;
}

a:hover.blue-cont-l {
  color: white !important;
}

.services-section {
  background-image: url(../images/healthcare-abstract-background.gif);
  background-repeat: repeat-x;
  background-position-x: center;
  background-position-y: top;
  background-color: #fafafa;
  padding: 3rem 0 0 0;
}

.accordion .fa {
  position: absolute;
  right: 10px;
  margin-right: 0.5rem;
  color: #7faed2;
}

.wbser {
  background: none;
}
.wbser .card-header {
  background-color: transparent;
  border-radius: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.wbser .card-header.active {
  background-color: #1d2935;
}
.wbser .card-body {
  padding: 10px 20px;
}

.ac {
  background: #1d2935;
}

.wht-txt {
  color: white;
}

.wht-txt-accord {
  color: white;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 400;
  line-height: 2rem;
  font-size: 14px;
}
.wht-txt-accord p {
  color: white !important;
  font-size: 14px !important;
}
.wht-txt-accord ul {
  padding-left: 18px;
}
.wht-txt-accord a {
  color: white;
  text-decoration: underline;
}
.wht-txt-accord a:hover,
.wht-txt-accord a:focus {
  color: #94cca2 !important;
}

.wb-accord-title,
.wb-accord-title:active,
.wb-accord-title:visited {
  color: white;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 500;
  line-height: 1.5;
  font-size: 16px;
  text-decoration: none !important;
  text-transform: none !important;
  text-align: left;
  padding: 5px 8px;
}

.wb-accord-title:hover,
.wb-accord-title:focus,
.card-header.active .wb-accord-title {
  color: #94cca2 !important;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  text-decoration: none !important;
  background: none !important;
}
.wb-accord-title:hover .fa,
.wb-accord-title:focus .fa,
.card-header.active .wb-accord-title .fa {
  color: #94cca2 !important;
}

@media (min-width: 992px) {
  .services-container-3rd {
    margin-bottom: -80px;
  }
}

.services-container-3rd .dropdown-toggle:after {
  display: none;
}

.services-container-3rd .dropdown-toggle {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 20px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.services-container-3rd .dropdown-toggle:hover,
.services-container-3rd .dropdown-toggle:focus {
  background-color: rgba(255, 255, 255, 0.2);
}

.services-container-3rd-pad {
  padding: 5rem;
}
.services-container-3rd-pad + .services-container-3rd-pad {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  margin-top: -2.5rem;
}
.services-container-3rd-pad p:last-child {
  margin-bottom: 0;
}

.services-container-3rd h3 {
  color: #263744;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 600;
  font-size: 3.2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.services-container-3rd p {
  color: #7c7c80;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 200;
  font-size: 16px !important;
  line-height: 24px !important;
}

.scrollable-menu {
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
}

.grbck {
  background-color: #94cca2;
}

.crsp {
  display: block;
  border: 2px solid #263744;
  border-radius: 0;
  padding: 4% 10% 4% 10%;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  line-height: 2rem;
  width: 100%;
}

.pm-downloads {
  padding: 20px 0;
  width: 100%;
  border-radius: 0;
}

.pm-downloads a {
  color: #263744;
  font-size: 16px;
  font-weight: 500;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  padding: 2px 20px;
  display: block;
}
.pm-downloads a:hover,
.pm-downloads a:focus {
  background-color: #f2f2f2;
  color: #263744;
}

@media (min-width: 768px) {
  .leaders.first {
    padding-top: 0rem !important;
  }
}

.leaders .card {
  margin-bottom: 30px;
}

.leaders p {
  color: #7c7c80;
  font-size: 16px !important;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif !important;
  font-weight: 200 !important;
  line-height: 24px !important;
}

.leaders h4 {
  color: #263744;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 600;
  font-size: 3.2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.leaders h5 {
  color: white !important;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 600 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  margin-bottom: 0.2rem !important;
  letter-spacing: 1px;
}

.leaders h6 {
  color: #adb5bd;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

@media (min-width: 992px) {
  .leaders .card-horizontal {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}

.b-card-grn {
  background-color: #304a46;
}

.leaders .card-text {
  color: white;
}

.leaders .img-square-wrapper {
  display: block;
  overflow: hidden;
}
@media (min-width: 992px) {
  .leaders .img-square-wrapper {
    width: 50%;
    height: 100%;
  }
}

.leaders .card-body p,
.leaders .card-body a,
.leaders .card-body a:hover {
  color: #adb5bd !important;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 500 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  margin-bottom: 5px !important;
}

.leaders .card-body {
  padding: 3.25rem;
}
@media (min-width: 992px) {
  .leaders .card-body {
    width: 60%;
  }
}

.leaders .card-body a.square-link-blue {
  background: none;
  border: 2px solid #7faed2;
  font-family: Montserrat, "Montserrat Regular", Montserrat,
    "Montserrat Regular", Helvetica, _sans-serif;
  font-weight: 600;
  line-height: 1.8em;
  color: #7faed2 !important;
  padding: 6px 26px;
  margin-top: 8%;
  clear: both;
  font-size: 12px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
}

a:hover.square-link-blue {
  border: 2px solid white;
}

/* p {
  color: #444 !important;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
} */

p {
  color: #444;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 460px) {
  .card-horizontal {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.footer {
  position: relative;
  z-index: 20;
  padding: 80px 0 20px !important;
  background: none;
  background-size: 120%;
  text-align: center;
  border-top: 1px solid #ccc;
}
.footer,
.footer h2,
.footer a {
  color: #233835;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat",
    "Montserrat Regular", Helvetica, _sans-serif;
}
.footer h2 {
  margin-bottom: 0.4rem;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
}
.footer .footer-section {
  margin: 0 auto;
  max-width: 350px;
}
.footer .footer-block + .footer-block {
  margin-top: 2.4rem;
}
.footer .logo-social-block {
  margin: 0 auto;
  max-width: 200px;
  color: #233835;
}
.footer .logo-wrap-footer {
  display: block;
  margin-bottom: 2rem;
}
.footer .social-media-icons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.footer .locations-footer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat",
    "Montserrat Regular", Helvetica, _sans-serif;
}
.footer .location-details a {
  color: inherit;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat",
    "Montserrat Regular", Helvetica, _sans-serif;
}
.footer .location-details a:hover,
.footer .location-details a:focus {
  color: inherit;
  text-decoration: underline;
}
.footer .location-details li {
  margin: 1.6rem 0;
}
.footer .location-detail a {
  font-weight: normal;
}
.footer .location-detail .icon {
  display: block;
  margin-bottom: 4px;
  font-weight: bold;
}
.gfield_error .footer input,
.gfield_error .footer textarea,
.gfield_error .footer select {
  border-color: #e9625c;
}
.footer .validation_error,
.footer .validation_message,
.footer .gfield_required {
  color: #e9625c;
}
.footer .gform_confirmation_wrapper {
  color: #fdfdfd;
  font-weight: bold;
}
.footer .footer-block.footer-block-menu {
  margin: 5rem 0;
}
.footer .copyright {
  font-size: 1.2rem;
  text-align: center;
}
.footer
  li#menu-item-114.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-114
  a,
.footer
  li#menu-item-115.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-115
  a {
  border: 1px solid #2c2d33;
  min-width: 125px;
  text-transform: uppercase;
  border-radius: 7px;
  font-size: 1.3rem;
  margin-top: 5px;
  margin-bottom: 5px;
  text-decoration: none;
  text-align: center;
}
.footer
  li#menu-item-114.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-114
  a:hover,
.footer
  li#menu-item-115.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-115
  a:hover {
  border: 1px solid #5f9ec1;
  color: #5f9ec1;
}

/*SEO Footer*/
.footer .secondary-seo-footer p{
  font-size: 1.2rem;
  /*text-align: center;*/
  font-weight: 400;
  line-height: 1.5;
  padding-top:30px;
  color: #233835;
}
/*SEO Footer Ends*/

@media (min-width: 992px) {
  .footer {
    background-position: -50px -50px;
    background-size: 50%;
    text-align: left;
  }
  .footer .footer-section {
    margin: 0;
    max-width: none;
  }
  .footer .footer-block + .footer-block {
    margin-top: 0;
  }
  .footer .footer-section-first {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .footer .footer-section-first:after {
    content: "";
    display: table;
    clear: both;
  }
  .footer .footer-section-first .footer-block {
    width: calc(20% - 40px);
    float: left;
    margin-left: 32px;
  }
  .footer .footer-section-first .footer-block:nth-child(2) {
    width: calc(18% - 40px);
  }
  .footer .footer-section-first .footer-block:nth-child(3) {
    width: calc(24% - 40px);
  }
  .footer .footer-section-first .footer-block:nth-child(4) {
    width: calc(18% - 40px);
  }
  .footer .footer-section-first > .footer-block:first-child {
    margin-left: 0;
  }
  .footer .footer-section-second {
    margin-top: 3rem;
  }
  .footer .logo-social-block {
    margin: 0 auto 0 0;
  }
  .footer address {
    margin-bottom: 0;
  }
  .footer .locations-footer {
    display: block;
  }
  .footer .location-detail {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .footer .location-detail .icon {
    width: 24px;
    padding-top: 4px;
  }
  .footer .footer-block.footer-block-menu {
    margin-bottom: 0;
  }
}

.mobile-nav-open {
  overflow: hidden;
}

.header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  height: 8rem;
  transition: background-color 0.3s, top 0.3s ease-in-out;
}
.header .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background-color: #fdfdfd;
}
.header .container-fluid {
  position: relative;
}
.header.transparent .background {
  background-color: rgba(253, 253, 253, 0.4);
}
.header.nav-up {
  top: -8rem;
}

.admin-bar .header,
.admin-bar .header .header-nav {
  top: 46px;
}

.admin-bar .header .nav-search-wrap {
  top: 12.6rem;
}

.admin-bar .header.nav-up {
  top: -3.4rem;
}

@media (min-width: 783px) {
  .admin-bar .header,
  .admin-bar .header .header-nav {
    top: 32px;
  }
  .admin-bar .header .nav-search-wrap {
    top: 11.2rem;
  }
  .admin-bar .header.nav-up {
    top: -4.8rem;
  }
}

@media (min-width: 1200px) {
  .admin-bar .header .header-nav,
  .admin-bar .header .nav-search-wrap {
    top: auto;
  }
}

.navigation {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 8rem;
}

.header-logo {
  line-height: 0;
}
.header-logo,
.header-logo .home-link {
  display: inline-block;
  max-width: 315px;
}
@media (max-width: 1199px) {
  .header-logo,
  .header-logo .home-link {
    max-width: 260px;
  }
}

@media only screen and (max-width: 1370px) and (min-width: 1200px) {
  a.home-link.home-link-white {
    display: inline-block;
    max-width: 82px;
  }
  a.home-link.home-link-default {
    display: none;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 320px) {
  a.home-link.home-link-white {
    display: none;
  }
  a.home-link.home-link-default {
    display: inline-block;
  }
}

@media only screen and (max-width: 5000px) and (min-width: 1371px) {
  a.home-link.home-link-white {
    display: none;
  }
  a.home-link.home-link-default {
    display: inline-block;
  }
}

@media only screen and (max-width: 1499px) and (min-width: 1200px) {
  .nav-header .sub-menu > li > a {
    font-size: 1.4rem !important;
  }
}

.nav-search-wrap {
  padding: 32px;
  background-color: #304a46 !important;
  position: fixed;
  top: 8rem;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 75%;
  height: auto;
  visibility: hidden;
  opacity: 1;
  transition: top 0.3s, opacity 0.3s ease-in-out, background-color 0.3s;
}
.mobile-nav-open .nav-search-wrap {
  visibility: visible;
  opacity: 1;
}
.nav-search-wrap .nav-search-wrap-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
}
@media (min-width: 1200px) {
  .nav-search-wrap {
    position: relative;
    top: auto;
    padding: 0;
    max-width: 90%;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
  }
  .nav-search-wrap .nav-search-wrap-inner {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: visible;
  }
}

@media (min-width: 1200px) {
  .nav-search-wrap {
    padding: 1px !important;
  }
}

@media (min-width: 1500px) {
  .nav-search-wrap {
    padding: 0px !important;
  }
}

li#menu-item-pay.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-pay
  a
  li#menu-item-share.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-share
  a,
.pay,
.share {
  border: 1px solid white !important;
  padding-left: 9px !important;
  text-transform: uppercase !important;
  border-radius: 7px !important;
  font-size: 1.35rem !important;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
  margin-right: 5px !important;
  text-decoration: none !important;
  padding: 6px 10px 6px 11px !important;
}

@media (min-width: 1500px) {
  .nav-search-wrap .nav-search-wrap-inner {
    margin-left: 32px;
  }
}

.search-form {
  position: relative;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}
.search-form input {
  margin-bottom: 24px;
  padding-right: 40px;
  border: 0;
  border-radius: 20px;
  color: #fdfdfd;
  font-weight: 500;
  font-style: normal;
  background-color: rgba(155, 155, 155, 0.2);
}
.search-form input::-webkit-input-placeholder {
  color: #e1e1e7;
  font-weight: 500;
  font-style: normal;
}
.search-form input:-moz-placeholder {
  color: #e1e1e7;
  font-weight: 500;
  font-style: normal;
}
.search-form input::-moz-placeholder {
  color: #e1e1e7;
  font-weight: 500;
  font-style: normal;
}
.search-form input:-ms-input-placeholder {
  color: #e1e1e7;
  font-weight: 500;
  font-style: normal;
}
.search-form .search-button {
  position: absolute;
  top: 5px;
  right: 0;
  padding: 0 12px;
  color: #e1e1e7;
}
.search-form .search-button:hover,
.search-form .search-button:focus {
  color: #fdfdfd;
}
@media (min-width: 1200px) {
  .search-form {
    display: inline-block;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    width: 150px;
    margin: 0 5px -7px 0;
  }
  .search-form input {
    color: #e1e1e7;
    margin-bottom: 0;
  }
  .search-form input::-webkit-input-placeholder {
    color: #eaeaec;
  }
  .search-form input:-moz-placeholder {
    color: #eaeaec;
  }
  .search-form input::-moz-placeholder {
    color: #eaeaec;
  }
  .search-form input:-ms-input-placeholder {
    color: #eaeaec;
  }
  .search-form .search-button {
    color: #eaeaec;
  }
  .search-form .search-button:hover,
  .search-form .search-button:focus {
    color: #86d19c;
  }
}

.mobile-navbar-toggle {
  background-color: #304a46;
  padding: 6px 8px;
  min-width: 0;
  color: #fdfdfd;
  line-height: 0;
}
@media (max-width: 1199px) {
  .mobile-navbar-toggle {
    margin-right: 15px;
  }
}
.mobile-navbar-toggle:hover,
.mobile-navbar-toggle:focus {
  background-color: #86d19c;
}
.mobile-navbar-toggle .bars {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  cursor: pointer;
  transition: opacity 0.15s, -webkit-filter 0.15s;
  transition: opacity 0.15s, filter 0.15s;
  transition: opacity 0.15s, filter 0.15s, -webkit-filter 0.15s;
  text-transform: none;
  border: 0;
  background-color: transparent;
  text-align: center;
}
.mobile-navbar-toggle .bars-box {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 26px;
}
.mobile-navbar-toggle .bars-inner {
  top: 50%;
  display: block;
  margin-top: -1px;
}
.mobile-navbar-toggle .bars-inner,
.mobile-navbar-toggle .bars-inner:before,
.mobile-navbar-toggle .bars-inner:after {
  position: absolute;
  width: 28px;
  height: 2px;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  background-color: #fdfdfd;
}
.mobile-navbar-toggle .bars-inner:before,
.mobile-navbar-toggle .bars-inner:after {
  display: block;
  content: "";
}
.mobile-navbar-toggle .bars-inner:before {
  top: -10px;
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}
.mobile-navbar-toggle .bars-inner:after {
  bottom: -10px;
  transition: bottom 75ms ease 0.12s,
    -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s,
    transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s,
    transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.mobile-navbar-toggle.active .bars-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-duration: 75ms;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mobile-navbar-toggle.active .bars-inner:before {
  top: 0;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}
.mobile-navbar-toggle.active .bars-inner:after {
  bottom: 0;
  transition: bottom 75ms ease,
    -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease,
    transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease,
    transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s,
    -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media (min-width: 1200px) {
  .mobile-navbar-toggle {
    display: none !important;
  }
}

ul#menu-wb-headermenu.nav.nav-header.list-unstyled {
  display: block;
}

ul#menu-wb-headermenu2.nav.nav-header.list-unstyled {
  display: inline-block !important;
}

@media only screen and (max-width: 1199px) and (min-width: 200px) {
  ul#menu-wb-headermenu2.nav.nav-header.list-unstyled {
    display: block !important;
    width: 100%;
  }
}

li#menu-item-pay.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-pay
  a,
li#menu-item-share.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-share
  a,
.pay,
.share {
  border: 1px solid white !important;
  padding-left: 9px !important;
  text-transform: uppercase !important;
  border-radius: 7px !important;
  font-size: 1.35rem !important;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
  margin-right: 5px !important;
  text-decoration: none !important;
  padding: 6px 10px 6px 11px !important;
}
@media (min-width: 992px) {
  li#menu-item-pay.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-pay
    a,
  li#menu-item-share.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-share
    a,
  .pay,
  .share {
    font-size: 2.1rem !important;
    margin-bottom: 15px !important;
    max-width: 30%;
  }
}
@media (min-width: 480px) {
  li#menu-item-pay.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-pay
    a,
  li#menu-item-share.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-share
    a,
  .pay,
  .share {
    font-size: 2.1rem !important;
    margin-bottom: 15px !important;
    max-width: 60%;
  }
}
@media (min-width: 1500px) {
  li#menu-item-pay.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-pay
    a,
  li#menu-item-share.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-share
    a,
  .pay,
  .share {
    font-size: 1.3rem !important;
    margin-bottom: 15px !important;
    max-width: 106px;
  }
}
@media (min-width: 1200px) {
  li#menu-item-pay.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-pay
    a,
  li#menu-item-share.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-share
    a,
  .pay,
  .share {
    font-size: 1.3rem !important;
    margin-bottom: 15px !important;
    max-width: 106px;
  }
}

@media (max-width: 1199px) {
  .nav-search-wrap .search-form > label {
    width: 100%;
  }
}

@media (min-width: 1450px) {
  .header-logo,
  .header-logo .home-link {
    max-width: 400px;
  }
}

@media (min-width: 1425px) {
  .header-logo,
  .header-logo .home-link {
    max-width: 375px;
  }
}

.cassie-special1 {
  max-width: 1650px;
}

.cassie-special2 {
  max-width: 1400px;
}

h1 {
  color: #fff;
}

.hpbph {
  background-image: url(../images/WB_Home-Image.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 580px;
  background-position-x: center;
  background-position-y: bottom;
  margin-top: 110px;
  padding-top: 4%;
}

.bg-blue{
   background-color: #5f9ec1 !important;
}

.services-container .bg-blue a{
    color: #fff !important;
}

.titl-hp-container {
  background: rgba(39, 55, 69, 0.6);
  padding: 3% 8% 3% 4%;
  display: block;  
  height: 420px;
}
@media (max-width: 768px) {
  .titl-hp-container {
    padding-top: 6%;
  }
  .visual_block {
    margin-bottom: 20px;
  }
}

.titl-hp-container p {
  color: #fff !important;
  line-height: 3rem !important;
  letter-spacing: 1.5px !important;
}

a.hp-intro,
a:hover.hp-intro {
  color: #fff;
  font-size: 20px;
  line-height: 3rem;
  letter-spacing: 1.5px;
}

.titl-hp-container H1 {
  text-transform: uppercase;
  font-size: 52px;
  font-family: Montserrat, "Montserrat Regular", Montserrat,
    "Montserrat Regular", Helvetica, _sans-serif;
  font-weight: 600;
  line-height: 1.07em;
  letter-spacing: 3px;
}

.services-container {
  padding: 3%;
  margin: 0 auto;
}

.mwlft {
  margin-left: -15%;
  /* margin-right: 3%; */
}

.bw {
  margin: 10px;
  max-width: 75%;
  line-height: 100px;
  height: 120px;
  background-repeat: no-repeat !important;
  background-position: 10px 20px !important;

}

.mwlft .bg_box {
  color: #fff;
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: inherit;
}
.mwlft .bg_box {
  background-image: none;
}
.mwlft .bg_box {
    height: inherit;
}
.mwlft .bg_box .hidden {
  background: rgba(95, 158, 193, 0.7);
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: inherit;
  transition: all 500ms ease;
  padding: 0px 15px;
}
.mwlft .bg_box .hidden a {
  margin: 0;
  font-size: 16px !important;
  color: #fff;
  word-break: break-word;
}
mwlft .bg_box:hover .hidden {
  top: 0;
}

.pu {
  margin-bottom: -35px;
}

/* Home Page 6 Services Buttons with Icons */
a.brand {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-right: 0;
  padding-left: 90px;
  color: #2d2d2d;
  font-size: 2rem;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

a.advisory {
  position: relative;
  float: left;
  display: block;
  width: 95%;
  height: 120px;
  margin-right: 0;
  background: url(../images/advisory.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  padding: 46px 0 0 90px;
  color: #2d2d2d;
  font-size: 2rem;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: 0.5px;
}

a:hover.advisory {
  background: url(../images/advisory-over.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  color: #2d2d2d;
  text-decoration: none;
}

a.assurance {
  position: relative;
  float: left;
  display: block;
  width: 95%;
  height: 120px;
  margin-right: 0;
  background: url(../images/assurance.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  padding: 46px 0 0 90px;
  color: #2d2d2d;
  font-size: 2rem;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: 0.5px;
}

a:hover.bookkeeping {
  background: url(../images/assurance-blue-over.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  color: #2d2d2d;
  text-decoration: none;
}

a.bookkeeping {
  position: relative;
  float: left;
  display: block;
  width: 100%;
  height: 120px;
  margin-right: 0;
  background: url(../images/assurance-blue.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  padding: 20px 0 0 90px;
  color: #2d2d2d;
  font-size: 2rem;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: 0.5px;
}

a:hover.assurance {
  background: url(../images/assurance-over.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  color: #2d2d2d;
  text-decoration: none;
}

a.tax {
  position: relative;
  float: left;
  display: block;
  width: 95%;
  height: 120px;
  margin-right: 0;
  background: url(../images/taxes.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  padding: 46px 0 0 90px;
  color: #2d2d2d;
  font-size: 2rem;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: 0.5px;
}

a:hover.tax {
  background: url(../images/taxes-over.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  color: #2d2d2d;
  text-decoration: none;
}

a.caccounting {
  position: relative;
  float: left;
  display: block;
  width: 95%;
  height: 120px;
  margin-right: 0;
  background: url(../images/client-accounting.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  padding: 46px 0 0 90px;
  color: #2d2d2d;
  font-size: 2rem;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: 0.5px;
}

a:hover.caccounting {
  background: url(../images/client-accounting-over.jpg);
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: 0 20px;
  color: #2d2d2d;
  text-decoration: none;
}

a.international {
  position: relative;
  float: left;
  display: block;
  width: 95%;
  height: 120px;
  margin-right: 0;
  background: url(../images/international.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  padding: 46px 0 0 90px;
  color: #2d2d2d;
  font-size: 2rem;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: 0.5px;
}

a:hover.international {
  background: url(../images/international-over.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  color: #2d2d2d;
  text-decoration: none;
}

a.industries {
  position: relative;
  float: left;
  display: block;
  width: 95%;
  height: 120px;
  margin-right: 0;
  background: url(../images/industries.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  padding: 46px 0 0 90px;
  color: #2d2d2d;
  font-size: 2rem;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: 0.5px;
}

a:hover.industries {
  background: url(../images/industries-over.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  color: #2d2d2d;
  text-decoration: none;
}

.services-container a {
  font-size: 1.75rem !important;
  font-weight: 600 !important;
  color: #5f9ec1 !important;
}
.services-container a br {
  display: none;
}

/* Dark Blue & Light Blue Boxed Content - HP and reuse on other pages */
.dark-blue-cont {
  background-color: #273745;
}

.dark-blue-cont p {
  color: #fff !important;
  font-size: 28px !important;
  font-family: Montserrat, "Montserrat Regular", Montserrat,
    "Montserrat Regular", Helvetica, _sans-serif;
  font-weight: 200 !important;
  line-height: 1.6em !important;
  margin: 3% 8% 3% 5%;
}

.lght-blue-cont {
  background-color: #5f9ec1;
  padding: 0;
}

.lght-blue-cont p {
  color: #fff !important;
  font-size: 1.6rem;
  font-family: Montserrat, "Montserrat Regular", Montserrat,
    "Montserrat Regular", Helvetica, _sans-serif;
  font-weight: 400;
  line-height: 1.8em;
  padding: 0 5%;
  letter-spacing: 0.5px;
  margin: 0 3% 0 3%;
}

.lght-blue-cont p.company {
  color: #5f9ec1 !important;
  font-size: 1.6rem !important;
  font-family: Montserrat, "Montserrat Regular", Montserrat,
    "Montserrat Regular", Helvetica, _sans-serif;
  font-weight: 700 !important;
  line-height: 1.4em !important;
  width: 85px;
  height: 85px;
  background: white;
  border-radius: 50%;
  margin: 5% auto !important;
  text-transform: uppercase;
  padding-top: 31px;
  padding-left: 13px;
  letter-spacing: 1px;
}

.lght-blue-cont p.founder {
  color: #fff;
  font-size: 1.5rem;
  font-family: Montserrat, "Montserrat Regular", Montserrat,
    "Montserrat Regular", Helvetica, _sans-serif;
  font-weight: 200;
  line-height: 1.8em;
  clear: both;
  font-style: italic;
  padding: 0;
}

.lght-blue-cont + p.see-mre {
  display: block;
  width: 100%;
  text-align: left;
  margin-top: 10px;
}
.lght-blue-cont + p.see-mre a {
  font-weight: 500;
  color: #5f9ec1;
}

.lght-blue-cont a {
  color: #5f9ec1;
  clear: both;
  font-weight: 400;
}

.lght-blue-cont .quote p {
  font-weight: 600 !important;
  font-size: 18px !important;
  padding: 0 !important;
}

.lght-blue-cont p.founder {
  margin-top: 30px;
}

/* STARTING TEAM SLIDER */
.team-hp {
  margin: 0 auto;
}

/* Latest News Home Page */
.latest-news-title {
  color: #273745;
  font-size: 3.2rem;
  text-transform: uppercase;
  font-family: Montserrat, "Montserrat Regular", Montserrat,
    "Montserrat Regular", Helvetica, _sans-serif;
  font-weight: 600;
  line-height: 1.8em;
  letter-spacing: 2.5px;
}

.square-link {
  background: none;
  border: 2px solid #273745;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif !important;
  line-height: 1;
  color: #273745;
  font-size: 16px !important;
  padding: 12px 26px !important;
  margin-bottom: 15px !important;
  margin-right: -30px;
  text-decoration: none !important;
  font-weight: 500;
  letter-spacing: 1px;
  display: block;
  float: right;
  width: auto;
}

.news-cont {
  display: inline-block;
  width: 60% !important;
  color: #6d6e71 !important;
  font-size: 18px !important;
  line-height: 3rem !important;
  letter-spacing: 1.5px !important;
}

/* Home Page Blog Feed Section */
.even-news-bx {
  height: 240px;
  overflow: hidden;
  list-style: none;
  background: black;
}

.card-img-top {
  opacity: 0.5;
  transition: opacity 300ms ease;
}

.cto {
  display: block;
  background: #fff;
  position: absolute;
  padding: 2% 4%;
  width: auto;
  top: 20px;
  right: 15px;
  text-transform: uppercase;
  font-size: small;
  opacity: 0.8;
}

.card {
  border: none !important;
}

.cpo {
  display: block;
  color: #414042;
  width: 100%;
  margin-top: -72px;
  position: relative;
}

.cpo .card-text-inner {
  font-family: Montserrat, "Montserrat Regular", Montserrat,
    "Montserrat Regular", Helvetica, _sans-serif;
  background: #fff;
  padding: 10px 15px;
}
.cpo .card-text-inner .pub-date {
  color: #5f9ec1;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.cpo .card-text-inner a {
  line-height: 1.2em;
  color: #414042;
  font-size: 22px;
  font-weight: 600;
  transition: color 200ms ease;
}

.card:hover .even-news-bx img {
  opacity: 0.7;
}

.card:hover .card-text-inner a {
  color: #275e3e;
}

/* Community Section */
.community {
  background-image: url(../images/community-image-alternative-size.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 600px;
  background-position-x: center;
  background-position-y: bottom;
}

.community h2 {
  text-transform: uppercase;
  color: white;
  display: inline-block;
  width: auto;
  max-width: 527px;
  font-family: Montserrat, "Montserrat Regular", Montserrat,
    "Montserrat Regular", Helvetica, _sans-serif;
  font-weight: 400;
  font-size: 4.4rem;
  line-height: 42px;
}

.community h5 {
  color: #94cca2;
  margin-top: 20px;
  margin-bottom: 20px;
}

.community p {
  color: white !important;
  display: block;
  max-width: 1000px;
  margin: 0 25%;
  font-size: 16px !important;
  line-height: 2.5rem !important;
  letter-spacing: 1.5px;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif;
}

.stripes {
  background-image: url(../images/stripes.png);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 610px;
  background-position-x: left;
  background-position-y: top;
}

.hp-com-blurb {
  padding-top: 10%;
  color: white;
  margin: 0 auto;
  text-align: center;
}

/* Custom Media Query for HP Masthead Section */
@media only screen and (max-width: 995px) and (min-width: 300px) {
  .bw {
    margin: 5px;
    max-width: 100%;
  }
  .mwlft {
    margin-left: 0;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 300px) {
  .titl-hp-container H1 {
    font-size: 40px;
  }
  .hpbph {
    min-height: 600px;
  }
}

@media only screen and (max-width: 991px) and (min-width: 200px) {
  .dark-blue-cont {
    margin-right: 0 !important;
    margin-bottom: 30px;
  }
  .dark-blue-cont.dark-blue-cont-up {
    margin-top: -12%;
  }
  .dark-blue-cont p,
  .dark-blue-cont a {
    font-size: 20px !important;
  }
  .lght-blue-cont p {
    margin: 0 8% 3% 8% !important;
  }
  .lght-blue-cont p.see-mre {
    bottom: -16%;
  }
  .news-cont {
    width: 100% !important;
  }
  .square-link {
    float: left;
  }
}

@media (min-width: 992px) {
  .home-team-grid .flex-item {
    width: 20%;
    padding-bottom: calc(20% - 12px);
    height: 0;
    border: 6px solid white;
    margin: 0;
  }
  .home-team-grid .empty {
    width: 40%;
    padding-bottom: calc(20% - 12px);
    height: 0;
    margin: 0;
    border: 6px solid white;
    margin: 0;
    max-width: none;
  }
}

.home-team-grid .empty {
  min-height: auto;
}

.home-team-grid .empty a.team-button {
  font-size: 16px !important;
  padding: 10px 20px !important;
  line-height: 1;
}

.home-team-grid .empty h2 {
  font-size: 3.2rem;
  font-weight: 700;
}

.home-team-grid .empty p {
  font-size: 13px !important;
  line-height: 1.4 !important;
  margin-bottom: 30px !important;
}

.home-section {
  margin-bottom: 4rem !important;
}
@media (min-width: 992px) {
  .home-section {
    margin-bottom: 10rem !important;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 768px) {
  .home-team-grid .flex-item {
    width: calc(25% - 12px);
    padding-bottom: calc(25% - 12px);
    height: 0;
  }
  .home-team-grid .empty {
    width: 75%;
  }
}

@media only screen and (max-width: 609px) and (min-width: 200px) {
  .home-team-grid .flex-item {
    width: calc(50% - 12px) !important;
    padding-bottom: calc(50% - 12px) !important;
    height: 0 !important;
  }
}

@media only screen and (min-width: 1500px) {
  .home-team-grid .empty p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}

.community-slider .carousel-indicators {
  position: static;
}

.landing-top-i {
  background-size: cover;
  background-repeat: no-repeat;
  height: 370px;
  background-position-x: center;
  background-position-y: bottom;
}
.landing-top-i > .container {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.titl-lp-container {
  background: rgba(39, 55, 69, 0.6);
  margin-top: 50px;
}

.titl-lp-container H1 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 3px;
  font-weight: 600;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif;
  padding: 20px;
  margin: 0;
}
@media (max-width: 480px) {
  .titl-lp-container H1 {
    font-size: 26px;
    line-height: 1.4;
  }
}

.dark-blue-cont H2 {
  color: white;
  margin: 3% 8% 3% 5%;
  font-size: 26px;
  text-transform: uppercase;
  font-family: Montserrat, "Montserrat Regular", Montserrat,
    "Montserrat Regular", Helvetica, _sans-serif;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: 2.5px;
}

.dark-blue-cont p.internal {
  font-size: 16px !important;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif !important;
  font-weight: 200 !important;
  line-height: 24px !important;
  color: white !important;
}
.dark-blue-cont p.internal a {
  color: white !important;
  text-decoration: underline;
}

.dark-blue-cont-up {
  display: inline-block;
  margin-top: 0%;
}

.contact-cta {
  background: #fafafa;
}

.contact-cta a {
  background: #273745;
  margin: 2% 1%;
  padding: 15px 30px;
  font-size: 16px;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif;
  font-weight: 500;
  line-height: 2rem;
  color: white;
  text-decoration: none;
  width: auto;
  display: inline-block;
}

.contact-cta a:hover {
  background: #94cca2;
}

.lpbph {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 800px;
  background-position-x: center;
  background-position-y: bottom;
}

.titl-lp-container p {
  color: #fff !important;
  font-size: 16px !important;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif !important;
  font-weight: 200 !important;
  line-height: 24px !important;
}

.titl-lp-container h3 {
  color: #fff;
  font-size: 34px;
  text-transform: uppercase;
  font-family: Montserrat, "Montserrat Regular", Montserrat,
    "Montserrat Regular", Helvetica, _sans-serif;
  font-weight: 600;
}

/* General White Button with Arrow Icon */
a.arrow {
  position: relative;
  float: left;
  display: block;
  width: 95%;
  height: 80px;
  margin-right: 0;
  background: url(../images/arrow.jpg);
  background-repeat: no-repeat;
  padding: 29px 0 0 86px;
  color: #7faed2;
  font-size: 0.9rem;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif;
  font-weight: 400;
}

a:hover.arrow {
  background: url(../images/arrow-over.jpg);
  background-repeat: no-repeat;
  color: #9ed8b3;
  text-decoration: none;
}

/* About Page */
.titl-lp-about-container {
  background: #304a46;
  padding: 3% 8% 3% 4%;
}

.titl-lp-about-container-r {
  background: #273745;
  padding: 3% 4% 3% 8%;
}

.titl-lp-about-container p,
.titl-lp-about-container-r p {
  color: #fff;
}

.titl-lp-about-container H3,
.titl-lp-about-container-r H3 {
  text-transform: uppercase;
  font-size: 3.7rem;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif;
  font-weight: 200;
  line-height: 4rem;
  margin-bottom: 1.5rem;
}

.shadow-c {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3) !important;
  padding: 0;
}
.shadow-c > .row {
  margin-left: 0;
  margin-right: 0;
}

.mwrt {
  margin-right: -15%;
  z-index: 2;
  position: relative;
}

a.square-link-wt {
  background: none;
  border: 2px solid white;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif;
  font-weight: 400;
  line-height: 1.8em;
  color: white;
  padding: 15px 26px;
  margin-top: 2%;
}

a:hover.square-link-wt {
  background: none;
  border: 2px solid white;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif;
  font-weight: 400;
  line-height: 1.8em;
  color: white;
  padding: 15px 26px;
}

div#tm-paging {
  margin-top: 20px;
  margin-bottom: 40px;
  padding-left: 21px;
  padding-right: 21px;
}

/* Services Landing Page General Button with Icon */
a.industry-general {
  position: relative;
  float: left;
  display: block;
  width: 95%;
  height: 120px;
  margin-right: 0;
  background: url(../images/generic-icon-blue.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  padding: 46px 0 0 90px;
  color: #2d2d2d;
  font-size: 2rem;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: 0.5px;
}

a:hover.industry-general {
  background: url(../images/generic-icon-green.jpg);
  background-repeat: no-repeat;
  background-position: 0 20px;
  color: #2d2d2d;
  text-decoration: none;
}

.card-no-date .cpo {
  margin-top: -48px;
}

.card-no-date .card-body {
  padding-top: 0;
  padding-bottom: 0;
}

#media-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 800px) and (min-width: 300px) {
  #media-grid {
    display: block;
  }
}

.media-filters-wrapper {
  padding: 0 10px;
  margin: 45px 0;
}
.media-filters-wrapper input[type="button"] {
  font-weight: 500;
  font-style: normal;
  padding-left: 20px;
  padding-right: 20px;
  width: auto;
}
.media-filters-wrapper input[type="button"]:hover {
  background-color: #f2f2f2;
}
.media-filters-wrapper input[type="button"].active {
  background-color: #304a46;
  border-color: #304a46;
  color: white;
}

.filters-wrapper input[type="radio"] {
  vertical-align: middle;
  margin-top: -6px;
}

@media (max-width: 560px) {
  .filters-wrapper .form-check-inline,
  .media-filters-wrapper .form-check-inline {
    display: block;
  }
  .filters-wrapper .radio-inline,
  .media-filters-wrapper .radio-inline {
    display: block;
  }
  .filters-wrapper input[type="radio"],
  .media-filters-wrapper input[type="radio"] {
    vertical-align: middle;
  }
}

a.advisory {
  background-image: url(../images/advisory.jpg);
}

a:hover.advisory {
  background-image: url(../images/advisory-over.jpg);
}

a#Assurance {
  background-image: url(../images/assurance.jpg);
}

a:hover#Assurance {
  background-image: url(../images/assurance-over.jpg);
}

a#Tax-Services {
  background-image: url(../images/taxes.jpg);
}

a:hover#Tax-Services {
  background-image: url(../images/taxes-over.jpg);
}

a#Client-Accounting {
  background-image: url(../images/client-accounting.jpg);
}

a:hover#Client-Accounting {
  background-image: url(../images/client-accounting-over.jpg);
}

a#International {
  background-image: url(../images/international.jpg);
}

a:hover#International {
  background-image: url(../images/international-over.jpg);
}

a#Industries {
  background-image: url(../images/industries.jpg);
}

a:hover#Industries {
  background-image: url(../images/industries-over.jpg);
}

@media (min-width: 992px) {
  .post-type-archive-service .services-container,
  .post-type-archive-industry .services-container {
    margin-top: 50px;
  }
  .services-landing-pg-services {
    min-height: 600px !important;
  }
  .services-landing-pg-services .titl-lp-container {
    padding-right: 100px !important;
  }
  .post-type-archive-industry .services-landing-pg-services {
    min-height: 700px !important;
  }
}

body.expansive-masthead .page-content {
  margin-top: 0;
}

body.transparent-header .header .background {
  display: none;
}

body.transparent-header .header-logo,
body.transparent-header .mobile-navbar-toggle {
  position: relative;
  z-index: 10;
}

body.transparent-header .nav-search-wrap {
  overflow: visible;
}
body.transparent-header .nav-search-wrap,
body.transparent-header .nav-search-wrap:before {
  background-color: rgba(35, 56, 53, 0.95);
}
body.transparent-header .nav-search-wrap:before {
  content: "";
  display: block;
  position: absolute;
  top: -8rem;
  left: 0;
  height: 8rem;
  width: 100%;
}

@media (min-width: 1200px) {
  body.transparent-header .nav-search-wrap {
    background-color: inherit;
  }
  body.transparent-header .nav-header > li > a {
    color: #fdfdfd;
  }
  body.transparent-header .search-form input,
  body.transparent-header .search-form .search-button {
    color: #fdfdfd;
  }
  body.transparent-header .search-form input {
    background-color: rgba(253, 253, 253, 0.2);
  }
  body.transparent-header .search-form input::-webkit-input-placeholder {
    color: rgba(253, 253, 253, 0.6);
  }
  body.transparent-header .search-form input:-moz-placeholder {
    color: rgba(253, 253, 253, 0.6);
  }
  body.transparent-header .search-form input::-moz-placeholder {
    color: rgba(253, 253, 253, 0.6);
  }
  body.transparent-header .search-form input:-ms-input-placeholder {
    color: rgba(253, 253, 253, 0.6);
  }
}

.biotop-im {
  background-image: url(/wp-content/themes/wwframework/images/bio-top-bckgr-im.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 580px;
  background-position-x: center;
  background-position-y: bottom;
}

.heidi-col {
  height: 580px;
}

.co {
  background: none;
}
@media (max-width: 768px) {
  .co {
    width: calc(100% + 30px);
  }
}

.even-staff-bx {
  height: 580px;
  overflow: hidden;
  list-style: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.card-img-heidi {
  width: 100%;
  object-fit: cover;
}

.business-c-col {
  height: 25px;
}

.individual-bio-photo {
  border: 1px solid #000;
  background: #9ed8b3;
}

.cassie-special2 {
  max-width: 1400px;
}

.info-heii {
  background: white;
  display: block;
  height: auto;
  min-height: 250px;
  z-index: 2;
  position: relative;
  margin-top: -14%;
  width: 100%;
  max-width: 910px;
  padding: 0;
}

.my-row-s {
  min-height: 250px;
  height: auto;
}

.d-col {
  background-color: #273745;
  width: auto;
  padding: 4%;
}
@media (max-width: 768px) {
  .d-col {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.d-col h1 {
  margin-bottom: 5px;
  font-size: 3rem;
  line-height: 1.3em;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif;
}

.d-col h2 {
  font-size: 2rem;
  line-height: 1.3em;
  letter-spacing: 1px;
  font-weight: 600;
  color: #929ba1;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif;
  margin-bottom: 30px;
}

.d-col p {
  display: block;
  width: 120px;
  float: left;
  font-size: 18px !important;
  line-height: 30px !important;
  letter-spacing: 1px;
  font-weight: 500 !important;
  color: #929ba1 !important;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif;
  height: 100%;
}

.d-col ul {
  display: block;
}

.d-col li {
  list-style: none;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1px;
  font-weight: 600;
  color: white;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat Regular",
    Helvetica, _sans-serif;
  margin-bottom: 6px;
}

.s-col {
  background-color: white;
  width: auto;
  padding: 3% 20px;
}

.s-col .card {
  border-radius: 0 !important;
}

.s-col h5.card-title {
  color: #3f3f3f;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.s-col h6,
.s-col p,
.s-col .card-text,
.s-col .card-text a {
  color: #7c7c80 !important;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  margin-bottom: 0 !important;
}

a.square-link-green {
  background: none;
  border: 2px solid #275e3e;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif !important;
  line-height: 1.8em;
  color: black;
  font-size: 14px !important;
  margin-bottom: 15px !important;
  text-decoration: none !important;
  padding: 10px 20px !important;
  font-weight: 500;
  letter-spacing: 1px;
}

a:hover.square-link-green {
  color: #275e3e;
}

.warm-light {
  background-color: #fafafa;
  margin-top: -104px;
  padding-top: 180px;
}

.r-side {
  width: 100%;
}

.r-side h3 {
  color: #232323 !important;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif !important;
  line-height: 32px;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.r-side ul {
  border-bottom: 1px solid lightgray;
  padding-left: 0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.r-side ul i {
  color: #232323;
  margin-right: 10px;
}
.r-side ul:last-child {
  border-bottom: 0;
}

.r-side li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 30px;
  margin-right: 0;
  padding: 10px 0 0 0;
  color: #275e3e;
  font-size: 14px;
  font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica,
    _sans-serif;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.5px;
}

.r-side li a {
  color: #275e3e;
  font-weight: 500;
}

@media (min-width: 768px) {
  .content-main--has-sidebar {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: none !important;
  }
}

@media (min-width: 768px) {
  .sidebar {
    width: 33.3333%;
  }
}

.sidebar form {
  background-color: #f2f3f4;
  padding: 30px;
}

.sidebar .gform_title {
  text-align: center;
}

.sidebar .gform_description {
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  margin-top: 0;
}

.sidebar .gform_button {
  background-color: #2d4a47 !important;
  width: 100%;
}

.sidebar input,
.sidebar textarea {
  border: none !important;
}

@media (min-width: 768px) {
  .content-main-body {
    width: 66.66666%;
    padding-right: 75px;
  }
}

.accordion .accordion-header {
  position: relative;
  padding-left: 1.5em;
  color: #233835;
  cursor: pointer;
}
.accordion .accordion-header:before {
  font-family: "icomoon";
  content: "\e923";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 0.75em;
  line-height: 0;
  color: #e9625c;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.accordion .accordion-header.active:before {
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

.accordion .accordion-content {
  margin: 12px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-in-out;
  font-size: 87.5%;
  line-height: 1.71429;
}

.archive-reel .facetwp-facet-search {
  width: 100%;
}

.archive-reel .filter-search-wrap {
  position: relative;
  margin-bottom: 32px;
}

.archive-reel .filters {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  margin-top: 4px;
  padding: 32px;
  width: 100%;
  background-color: #f2f2f5;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.16);
  opacity: 0;
  transition: opacity 0.3s;
}
.archive-reel .filters.active {
  z-index: 20;
  opacity: 1;
}

.archive-reel .filter-facets {
  padding-bottom: 32px;
}
.archive-reel .filter-facets .facetwp-facet {
  margin-bottom: 0;
}

.archive-reel .facet-wrap {
  max-height: 50vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.archive-reel .filter-actions {
  margin-bottom: 0;
}

.archive-reel .facetwp-checkbox {
  margin: 16px 0;
  line-height: 1.4;
  background-position: 0 0;
}

.archive-reel .teaser {
  margin: 0 -32px 32px;
}
.archive-reel .teaser:last-child {
  margin-bottom: 0;
}

.archive-reel .teaser-resource {
  margin: 0 0 32px;
}

/* Our teams filter  */

.find-input-sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.input-fields {
  width: 16%;
}

.filter__actions {
  display: flex;
}

.filter__actions button {
  margin: 15px;
  padding: 6px;
  border-radius: 5px;
}

.filter__actions button.reset_btn {
  background: grey;
  border: grey 0.1px solid;
}
.filter__actions button.reset_btn:hover {
  background: white;
  color: black;
  border: black 0.1px solid;
}

.filter__actions button.prim_btn {
  background: #273745;
  border: #273745 0.1px solid;
}

.filter__actions button.prim_btn:hover {
  background: white;
  color: black;
  border: black 0.1px solid;
}

.search-ln .alpha_letter.active {
  background: gray;
  padding: 5px;
  color: white;
  border-radius: 4px;
}

/* Our teams filter ends  */

@media (min-width: 480px) {
  .archive-reel .filter-search-wrap-inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 32px;
  }
  .archive-reel .filter-toggle {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    margin: 0 32px 0 0;
  }
  .archive-reel .facetwp-facet-search {
    margin: 0;
  }
}

@media (min-width: 768px) {
  .archive-reel .facetwp-facet-topics,
  .archive-reel .grid-wrap {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .archive-reel .facetwp-facet-topics:after,
  .archive-reel .grid-wrap:after {
    content: "";
    display: table;
    clear: both;
  }
  .archive-reel .facetwp-checkbox {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .archive-reel .grid-wrap {
    margin-bottom: -32px;
  }
  .archive-reel .teaser {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
    margin-right: auto;
  }
  .archive-reel .teaser:last-child {
    margin-bottom: 32px;
  }
  .archive-reel .empty-state {
    width: calc(100% - 64px);
    float: left;
    margin-left: 32px;
  }
  .archive-reel.archive-reel-resource .grid-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .archive-reel.archive-reel-resource .teaser-resource {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (min-width: 992px) {
  .archive-reel .filter-search-wrap {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .archive-reel .filter-search-wrap:after {
    content: "";
    display: table;
    clear: both;
  }
  .archive-reel .filter-search-wrap-inner,
  .archive-reel .filters {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
  }
  .archive-reel .facetwp-checkbox {
    background-position: 0 2px;
  }
}

@media (min-width: 1200px) {
  .archive-reel .facetwp-checkbox {
    width: calc(33.33333% - 42.66667px);
    float: left;
    margin-left: 32px;
  }
  .archive-reel .teaser {
    width: calc(33.33333% - 42.66667px);
    float: left;
    margin-left: 32px;
  }
}

.cta-block {
  position: relative;
  display: block;
  background-size: cover;
  height: 300px;
}
.cta-block,
.cta-block:hover,
.cta-block:focus,
.cta-block .big-label {
  color: #fdfdfd;
}
.cta-block:hover .overlay,
.cta-block:focus .overlay {
  opacity: 0.32;
}
.cta-block .content {
  position: absolute;
  z-index: 10;
  top: 32px;
  bottom: 32px;
  left: 32px;
  right: 32px;
}
.cta-block .big-label,
.cta-block .learn-more {
  position: absolute;
}
.cta-block .big-label {
  margin: 0;
  bottom: 0;
  left: 0;
}
.cta-block .learn-more {
  top: 0;
  right: 0;
}
@media (min-width: 992px) {
  .cta-block {
    height: 350px;
  }
  .cta-block .big-label {
    width: 50%;
    max-width: 400px;
  }
}
@media (min-width: 1200px) {
  .cta-block {
    height: 400px;
  }
}

.insights-blocks {
  margin-bottom: 32px;
}
.insights-blocks .tile {
  margin-bottom: 32px;
}
.insights-blocks .tile:last-child {
  margin-bottom: 0;
}
.insights-blocks + .panel-newsletter-block {
  margin-top: 0;
}
@media (min-width: 768px) {
  .insights-blocks .container {
    margin-bottom: -32px;
  }
  .insights-blocks .grid-wrap {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .insights-blocks .grid-wrap:after {
    content: "";
    display: table;
    clear: both;
  }
  .insights-blocks .tile {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
  }
  .insights-blocks .tile:last-child {
    margin-bottom: 32px;
  }
}
@media (min-width: 992px) {
  .panel-masthead-basic + .insights-blocks {
    margin-top: calc(9rem + (160px * 0.75));
  }
  .insights-blocks .tile {
    width: calc(33.33333% - 42.66667px);
    float: left;
    margin-left: 32px;
  }
}
@media (min-width: 1200px) {
  .panel-masthead-basic + .insights-blocks {
    margin-top: calc(16rem + (216px * 0.5));
  }
}

.learn-more {
  font-family: "Montserrat", "Montserrat Regular", "Montserrat",
    "Montserrat Regular", Helvetica, _sans-serif;
}

.pagination,
.ww-pagination {
  margin: 64px 0 32px;
  text-align: center;
}

.facetwp-pager {
  margin-bottom: -16px;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat",
    "Montserrat Regular", Helvetica, _sans-serif;
}
.facetwp-pager a {
  margin: 0 8px 16px;
  width: 32px;
  height: 32px;
  background-color: #e1e1e7;
  color: #9b9b9b;
  transition: background-color 0.3s, color 0.3s;
}
.facetwp-pager a:hover,
.facetwp-pager a:focus,
.facetwp-pager a.active {
  background-color: #233835;
  color: #fdfdfd;
}
.facetwp-pager a.disabled,
.facetwp-pager a.disabled:hover,
.facetwp-pager a.disabled:focus {
  background-color: #e1e1e7;
  color: #9b9b9b;
  opacity: 0.48;
  cursor: default;
  pointer-events: none;
}
.facetwp-pager a.facetwp-page-previous i {
  display: inline-block;
  padding-bottom: 1px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.facetwp-pager .first-page,
.facetwp-pager .last-page {
  display: none;
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.share-icons {
  margin: 16px 0;
}
.share-icons li,
.share-icons a {
  display: inline-block;
}
.share-icons li {
  margin-right: 24px;
}
.share-icons a {
  font-size: 2.4rem;
  line-height: 1;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.share-icons a:hover,
.share-icons a:focus {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

.linkedin,
.linkedin:hover,
.linkedin:focus {
  color: #007bb6;
}

.facebook,
.facebook:hover,
.facebook:focus {
  color: #3b5998;
}

.twitter,
.twitter:hover,
.twitter:focus {
  color: #00aced;
}

.email,
.email:hover,
.email:focus {
  color: #233835;
}

.social-media-icons {
  font-size: 2rem;
}
.social-media-icons li {
  display: inline-block;
}

.tile {
  position: relative;
  display: block;
  border-radius: 4px;
  background-color: #b0c3d4;
  background-size: cover;
  background-position: center;
  padding: 32px;
  min-height: 200px;
}
.tile,
.tile:hover,
.tile:focus,
.tile h2 {
  color: #fdfdfd;
}
.tile i,
.tile .label {
  color: #233835;
}
.tile i {
  font-size: 2em;
}
.tile h2 {
  margin: 6px 0 0;
}
.tile .body {
  margin-top: 8px;
  line-height: 1.5;
}
.tile.tile-default {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.tile.tile-link:hover,
.tile.tile-link:focus,
.tile.tile-video:hover,
.tile.tile-video:focus {
  color: #fdfdfd;
}
.tile.tile-link .content,
.tile.tile-link .content-main-wrap,
.tile.tile-link .learn-more,
.tile.tile-video .content,
.tile.tile-video .content-main-wrap,
.tile.tile-video .learn-more {
  position: absolute;
}
.tile.tile-link .content,
.tile.tile-video .content {
  z-index: 10;
  top: 32px;
  bottom: 32px;
  left: 32px;
  right: 32px;
}
.tile.tile-link .content-main-wrap,
.tile.tile-video .content-main-wrap {
  bottom: 0;
  left: 0;
}
.tile.tile-link .learn-more,
.tile.tile-video .learn-more {
  top: 0;
  right: 0;
}
.tile.tile-link:hover .overlay,
.tile.tile-link:focus .overlay {
  opacity: 0.32;
}
.tile.tile-video {
  border-radius: 0;
}
.tile.tile-video .overlay {
  opacity: 0.32;
  background-color: #020202;
}
.tile.tile-video:hover .overlay,
.tile.tile-video:focus .overlay {
  opacity: 0.64;
}
.tile.tile-style-reverse h2 {
  color: #233835;
}
.tile.tile-style-reverse i {
  color: #fdfdfd;
}
.tile.tile-style-all-white h2,
.tile.tile-style-all-white i,
.tile.tile-style-all-white .learn-more {
  color: #fdfdfd;
}
.tile .learn-more {
  font-size: 0.8em;
}
@media (min-width: 992px) {
  .tile.tile-link {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .tile {
    min-height: 250px;
  }
  .tile.tile-link {
    height: 350px;
  }
}

.newsletter-footer .description {
  margin: 1.4rem 0 1.6rem;
}

.newsletter-footer .gform_button {
  width: 100%;
}

.footer-nav a {
  color: inherit;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat",
    "Montserrat Regular", Helvetica, _sans-serif;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: inherit;
  text-decoration: underline;
}

.footer-nav a {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 2.33333;
  color: #233835;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat",
    "Montserrat Regular", Helvetica, _sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
}

@media (min-width: 992px) {
  .footer-nav a {
    text-align: left;
  }
  .footer-nav .nav {
    margin-top: -4px;
    display: block;
  }
}

ul#menu-wb-footer-menu.nav.nav-footer.list-unstyled,
ul#menu-social-menu.nav.nav-footer.list-unstyled {
  display: block;
}

.navbar {
  padding: 0 1rem;
}

@media (min-width: 1200px) {
  .header-nav {
    display: inline-block;
  }
}

.nav-header a {
  display: block;
  margin: 0;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat",
    "Montserrat Regular", Helvetica, _sans-serif;
  color: #fdfdfd;
}

.nav-header > li {
  margin-bottom: 4px;
}

.nav-header > li > a {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.33333;
  padding: 8px 0;
}
@media (min-width: 1500px) {
  .nav-header > li > a {
    font-size: 1.6rem !important;
  }
}

.nav-header > li.current-menu-item > a,
.nav-header > li:hover > a,
.nav-header > li > a:focus {
  text-decoration: underline;
}

.nav-header .sub-menu {
  margin-bottom: 8px;
  padding: 0;
  list-style: none;
}

.nav-header .sub-menu > li > a {
  padding: 8px 0 8px 32px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.33333;
}

.nav-header .sub-menu > li li > a {
  padding-left: 64px;
}

.nav-header .sub-menu > li.current-menu-item > a,
.nav-header .sub-menu > li:hover > a,
.nav-header .sub-menu > li > a:focus {
  text-decoration: underline;
}

@media (min-width: 1200px) {
  .nav-header {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 0;
    font-size: 0;
  }
  .nav-header a {
    transition: color 0.3s, background-color 0.3s;
  }
  .nav-header > li {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
  }
  .nav-header > li li {
    position: relative;
  }
  .nav-header > li > a {
    font-size: 1.4rem;
    color: #fdfdfd;
    padding: 30px 10px;
    font-family: "Montserrat", "Montserrat Regular", "Montserrat",
      "Montserrat Regular", Helvetica, _sans-serif;
    font-weight: 500;
  }
  .nav-header > li.menu-item-has-children > a:after {
    display: inline-block;
    margin-left: 8px;
    font-family: "icomoon";
    content: "\e904";
    font-size: 0.5em;
  }
  .nav-header > li.menu-item-has-children li.menu-item-has-children > a:after {
    font-family: "icomoon";
    content: "\e905";
    font-size: 0.5em;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .nav-header > li.current-menu-item > a,
  .nav-header > li:hover > a,
  .nav-header > li > a:focus {
    text-decoration: none;
    color: #fdfdfd;
    background-color: #233835;
  }
  .nav-header li:hover > .sub-menu {
    display: block;
  }
  .nav-header .sub-menu {
    display: none;
    position: absolute;
    z-index: 10;
    top: calc(100% - 1px);
    right: 0;
    margin: 0;
    min-width: 230px;
  }
  .nav-header .sub-menu > li > a {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 12px 24px;
    background-color: #233835;
    text-align: center;
  }
  .nav-header .sub-menu > li:hover > a,
  .nav-header .sub-menu > li > a:focus {
    text-decoration: none;
    background-color: #86d19c;
  }
  .nav-header .sub-menu > li.current-menu-item > a {
    text-decoration: none !important;
  }
  .nav-header .sub-menu .sub-menu {
    left: 100%;
    top: 0;
  }
  .nav-header .sub-menu > li li > a {
    padding: 12px 24px;
  }
}

.panel,
.panel + .panel.panel-form-block.panel-padding {
  margin: 6.4rem 0;
}
@media (min-width: 992px) {
  .panel,
  .panel + .panel.panel-form-block.panel-padding {
    margin: 9rem 0;
  }
}
@media (min-width: 1200px) {
  .panel,
  .panel + .panel.panel-form-block.panel-padding {
    margin: 16rem 0;
  }
}

.panel-padding {
  padding: 6.4rem 0;
}
@media (min-width: 992px) {
  .panel-padding {
    padding: 9rem 0;
  }
}
@media (min-width: 1200px) {
  .panel-padding {
    padding: 16rem 0;
  }
}

.panel + .panel.panel-padding {
  margin-top: 0;
}

.panel-masthead + .panel.panel-padding {
  margin-top: -6.4rem;
}
@media (min-width: 992px) {
  .panel-masthead + .panel.panel-padding {
    margin-top: -9rem;
  }
}
@media (min-width: 1200px) {
  .panel-masthead + .panel.panel-padding {
    margin-top: -16rem;
  }
}

.panel-awards-list h3 {
  margin-bottom: 8px;
}

.panel-awards-list .intro {
  margin-bottom: 32px;
}

.panel-awards-list .image-wrap {
  margin-bottom: 16px;
  font-size: 0;
}

.panel-awards-list .content-wrap > *:last-child {
  margin-bottom: 0;
}

.panel-awards-list .teaser-award + .teaser-award {
  margin-top: calc(32px - 8px);
  padding-top: 32px;
  border-top: 1px solid #e1e1e7;
}

@media (min-width: 768px) {
  .panel-awards-list .intro,
  .panel-awards-list .awards {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .panel-awards-list .intro:after,
  .panel-awards-list .awards:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-awards-list .intro {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
  }
  .panel-awards-list .awards {
    width: calc(100% - 64px);
    float: left;
    margin-left: 32px;
  }
  .panel-awards-list .flex-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .panel-awards-list .image-wrap {
    margin: 0 16px 0 0;
    min-width: 150px;
  }
}

@media (min-width: 1200px) {
  .panel-awards-list .intro {
    width: calc(41.66667% - 45.33333px);
    float: left;
    margin-left: 32px;
  }
  .panel-awards-list .awards {
    width: calc(83.33333% - 58.66667px);
    float: left;
    margin-left: 32px;
  }
  .panel-awards-list .intro,
  .panel-awards-list .awards {
    margin-left: calc(8.33333% - 34.66667px + 64px);
  }
}

.panel-contact {
  margin-bottom: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.panel-contact + .panel {
  margin-top: 0;
}
.panel-contact .teaser-location {
  margin-bottom: 64px;
}
.panel-contact .teaser-location:last-child {
  margin-bottom: 0;
}
.panel-contact .tile {
  margin-bottom: 32px;
}
.panel-contact .tile:last-child {
  margin-bottom: 0;
}
.panel-contact .contact-fallback-info {
  margin-top: 64px;
}
.panel-contact .contact-fallback-info h3,
.panel-contact .contact-fallback-info .cta-wrap {
  text-align: center;
}
.panel-contact .contact-fallback-info .body {
  margin-top: 32px;
  font-size: 1.4rem;
}
@media (min-width: 480px) {
  .panel-contact .locations {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .panel-contact .locations:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-contact .teaser-location {
    width: calc(100% - 64px);
    float: left;
    margin-left: 32px;
  }
}
@media (min-width: 768px) {
  .panel-contact .emails,
  .panel-contact .contact-fallback-info {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .panel-contact .emails:after,
  .panel-contact .contact-fallback-info:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-contact .teaser-location,
  .panel-contact .contact-fallback-info-inner {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
    margin-left: calc(16.66667% - 37.33333px + 64px);
  }
  .panel-contact .tile {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
  }
}
@media (min-width: 992px) {
  .panel-contact {
    margin-top: calc(9rem + (160px * 0.75));
  }
  .panel-contact .teaser-location {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
  }
  .panel-contact .teaser-location:last-child {
    margin-bottom: 64px;
  }
  .panel-contact .tile {
    width: calc(33.33333% - 42.66667px);
    float: left;
    margin-left: 32px;
  }
  .panel-contact .locations {
    margin-bottom: calc(-32px * 2);
  }
}
@media (min-width: 1200px) {
  .panel-contact {
    margin-top: calc(16rem + (216px * 0.5));
  }
}

.panel-cta-blocks .cta-block {
  margin: 0 -32px 32px;
}
.panel-cta-blocks .cta-block:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .panel-cta-blocks .grid-wrap {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .panel-cta-blocks .grid-wrap:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-cta-blocks .cta-block {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
    margin-left: calc(16.66667% - 37.33333px + 64px);
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .panel-cta-blocks .container {
    margin-bottom: -32px;
  }
  .panel-cta-blocks .cta-block:last-child {
    margin-bottom: 32px;
  }
  .panel-cta-blocks .grid-wrap {
    margin-bottom: -32px;
  }
  .panel-cta-blocks.panel-1-column .cta-block {
    width: calc(100% - 64px);
    float: left;
    margin-left: 32px;
  }
  .panel-cta-blocks.panel-2-column .cta-block {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
  }
}

.panel-cta-video-blocks .grid-wrap {
  margin-left: -32px;
  margin-right: -32px;
  width: calc(100% + 64px);
}
.panel-cta-video-blocks .grid-wrap:after {
  content: "";
  display: table;
  clear: both;
}

.panel-cta-video-blocks .intro,
.panel-cta-video-blocks .tile {
  width: calc(100% - 64px);
  float: left;
  margin-left: 32px;
}

.panel-cta-video-blocks .intro p {
  margin-bottom: 0;
}

.panel-cta-video-blocks .tile {
  margin-bottom: 32px;
}

.panel-cta-video-blocks .grid-wrap-intro {
  margin-bottom: 32px;
}

.panel-cta-video-blocks .container {
  margin-bottom: -32px;
}

@media (min-width: 480px) {
  .panel-cta-video-blocks .tile-video {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
  }
}

@media (min-width: 768px) {
  .panel-cta-video-blocks .intro {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
  }
  .panel-cta-video-blocks .tile-link {
    width: calc(33.33333% - 42.66667px);
    float: left;
    margin-left: 32px;
  }
}

@media (min-width: 992px) {
  .panel-cta-video-blocks .tile-video {
    width: calc(25% - 40px);
    float: left;
    margin-left: 32px;
  }
  .panel-cta-video-blocks .tile-video h2 {
    font-size: 1em;
  }
}

@media (min-width: 1200px) {
  .panel-cta-video-blocks .intro {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
  }
}

.panel-form-block .container {
  position: relative;
}

.panel-form-block .background {
  position: absolute;
  top: -6.4rem;
  bottom: -6.4rem;
  left: -32px;
  width: 100%;
  background-color: #b0c3d4;
  background-size: cover;
  background-position: center;
}

.panel-form-block .form-wrap {
  position: relative;
  z-index: 10;
  margin-left: auto;
  margin-right: -32px;
}

.panel-form-block h2,
.panel-form-block .intro,
.panel-form-block .gform_confirmation_wrapper {
  color: #fdfdfd;
}

.panel-form-block .intro {
  max-width: 80%;
}

.panel-form-block h2 {
  font-weight: 600;
}

.panel-form-block .description {
  margin-bottom: 3.6rem;
  font-weight: 700;
}

@media (min-width: 480px) {
  .panel-form-block .background {
    background-position: 30% center;
  }
  .panel-form-block .form-wrap {
    margin-left: auto;
    max-width: 90%;
  }
}

@media (min-width: 768px) {
  .panel-form-block .form-wrap {
    max-width: 70%;
  }
}

@media (min-width: 992px) {
  .panel-form-block .background {
    top: -9rem;
    bottom: -9rem;
    left: -10%;
  }
  .panel-form-block .form-wrap {
    max-width: 75%;
  }
  .panel-form-block .form-wrap-inner {
    max-width: 95%;
  }
}

@media (min-width: 1200px) {
  .panel-form-block .background {
    top: -16rem;
    bottom: -16rem;
    left: -20%;
    background-position: left center;
  }
  .panel-form-block .form-wrap-inner {
    max-width: 85%;
  }
}

.panel-iconed-benefits .ib-title {
  margin-bottom: 32px;
}

.panel-iconed-benefits.panel-style-default .tile {
  border-radius: 0;
}

.panel-iconed-benefits.panel-style-tiled .tile {
  margin-bottom: 32px;
}
.panel-iconed-benefits.panel-style-tiled .tile:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .panel-iconed-benefits .grid-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .panel-iconed-benefits.panel-style-default .container-grid {
    position: relative;
  }
  .panel-iconed-benefits.panel-style-default .container-grid:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 32px;
    right: 32px;
    background-color: #b0c3d4;
  }
  .panel-iconed-benefits.panel-style-default .tile {
    width: 50%;
  }
  .panel-iconed-benefits.panel-style-tiled .grid-wrap {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .panel-iconed-benefits.panel-style-tiled .grid-wrap:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-iconed-benefits.panel-style-tiled .tile {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
  }
  .panel-iconed-benefits.panel-style-tiled .container-grid {
    margin-bottom: -32px;
  }
  .panel-iconed-benefits.panel-style-tiled .tile:last-child {
    margin-bottom: 32px;
  }
}

@media (min-width: 1200px) {
  .panel-iconed-benefits .tile h2 {
    font-size: 1.8rem;
  }
  .panel-iconed-benefits.panel-style-default .tile {
    width: 25%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .panel-iconed-benefits.panel-style-default .tile .body {
    min-height: 100px;
  }
  .panel-iconed-benefits.panel-style-tiled .tile {
    width: calc(25% - 40px);
    float: left;
    margin-left: 32px;
  }
}

.panel-image-simple-content .img-wrap {
  margin: 0 -32px 32px;
  text-align: center;
  font-size: 0;
}

@media (min-width: 768px) {
  .panel-image-simple-content .grid-wrap {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .panel-image-simple-content .grid-wrap:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-image-simple-content .img-wrap,
  .panel-image-simple-content .content-wrap {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
    margin-left: calc(16.66667% - 37.33333px + 64px);
  }
  .panel-image-simple-content .img-wrap {
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .panel-image-simple-content .img-wrap,
  .panel-image-simple-content .content-wrap {
    margin-left: calc(0% - 32px + 64px);
  }
  .panel-image-simple-content .content-wrap {
    margin-top: 12px;
  }
  .panel-image-simple-content.panel-image-col-width-small .img-wrap {
    width: calc(41.66667% - 45.33333px);
    float: left;
    margin-left: 32px;
  }
  .panel-image-simple-content.panel-image-col-width-small .content-wrap {
    width: calc(58.33333% - 50.66667px);
    float: left;
    margin-left: 32px;
  }
  .panel-image-simple-content.panel-image-col-width-small.panel-image-right
    .img-wrap {
    left: calc(58.33333% - 50.66667px + 32px);
    position: relative;
  }
  .panel-image-simple-content.panel-image-col-width-small.panel-image-right
    .content-wrap {
    left: calc(-41.66667% - 18.66667px + 32px);
    position: relative;
  }
  .panel-image-simple-content.panel-image-col-width-wide .img-wrap {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
  }
  .panel-image-simple-content.panel-image-col-width-wide .content-wrap {
    width: calc(33.33333% - 42.66667px);
    float: left;
    margin-left: 32px;
  }
  .panel-image-simple-content.panel-image-col-width-wide.panel-image-right
    .img-wrap {
    left: calc(33.33333% - 42.66667px + 32px);
    position: relative;
  }
  .panel-image-simple-content.panel-image-col-width-wide.panel-image-right
    .content-wrap {
    left: calc(-66.66667% - 10.66667px + 32px);
    position: relative;
  }
}

.panel-image-tiles .intro {
  margin-bottom: 32px;
}

.panel-image-tiles .container {
  margin-bottom: -32px;
}

.panel-image-tiles .tile {
  margin-bottom: 32px;
  min-height: 300px;
}

@media (min-width: 768px) {
  .panel-image-tiles .intro,
  .panel-image-tiles .tiles {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .panel-image-tiles .intro:after,
  .panel-image-tiles .tiles:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-image-tiles .intro-inner {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
  }
  .panel-image-tiles .tile {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
  }
}

@media (min-width: 1200px) {
  .panel-image-tiles .intro-inner {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
  }
  .panel-image-tiles .tile {
    width: calc(33.33333% - 42.66667px);
    float: left;
    margin-left: 32px;
  }
}

.panel-intro-cta-blocks .content-main > * {
  margin-bottom: 0;
}

.panel-intro-cta-blocks .cta-blocks {
  margin: 32px -32px 0;
}

@media (min-width: 768px) {
  .panel-intro-cta-blocks .grid-wrap {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .panel-intro-cta-blocks .grid-wrap:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-intro-cta-blocks .content-wrap,
  .panel-intro-cta-blocks .cta-blocks {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
    margin-left: calc(16.66667% - 37.33333px + 64px);
  }
  .panel-intro-cta-blocks .cta-blocks {
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .panel-intro-cta-blocks .content-wrap {
    width: calc(25% - 40px);
    float: left;
    margin-left: 32px;
    margin-top: 12px;
  }
  .panel-intro-cta-blocks .cta-blocks {
    width: calc(75% - 56px);
    float: left;
    margin-left: 32px;
    margin-top: 0;
  }
  .panel-intro-cta-blocks.panel-intro-right .content-wrap {
    left: calc(75% - 56px + 32px);
    position: relative;
  }
  .panel-intro-cta-blocks.panel-intro-right .cta-blocks {
    left: calc(-25% - 24px + 32px);
    position: relative;
  }
}

.panel-jobs-list .intro {
  margin-bottom: 32px;
}

.panel-jobs-list .accordion-header {
  font-size: 2rem;
}

.panel-jobs-list .accordion-content-inner {
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .panel-jobs-list .intro {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
  }
  .panel-jobs-list .jobs {
    width: calc(100% - 64px);
    float: left;
    margin-left: 32px;
  }
}

@media (min-width: 992px) {
  .panel-jobs-list .accordion-header {
    font-size: 2.4rem;
  }
}

@media (min-width: 1200px) {
  .panel-jobs-list .intro {
    width: calc(41.66667% - 45.33333px);
    float: left;
    margin-left: 32px;
  }
  .panel-jobs-list .jobs {
    width: calc(83.33333% - 58.66667px);
    float: left;
    margin-left: 32px;
  }
  .panel-jobs-list .intro,
  .panel-jobs-list .jobs {
    margin-left: calc(8.33333% - 34.66667px + 64px);
  }
}

.panel-masthead {
  position: relative;
  margin-top: 0;
  min-height: 240px;
}
.panel-masthead .flex-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.panel-masthead .container {
  position: relative;
}
.panel-masthead .content > *:last-child {
  margin-bottom: 0;
}
.panel-masthead,
.panel-masthead .mh-title {
  color: #fdfdfd;
}
.panel-masthead .mh-title {
  font-weight: 600;
}
.panel-masthead .background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-color: #233835;
}
.panel-masthead.panel-masthead-expansive {
  margin-top: 0;
  height: 100vh;
  min-height: 600px;
}
@media (min-width: 992px) {
  .panel-masthead .container {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .panel-masthead .container:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-masthead.panel-masthead-basic {
    min-height: calc(160px * 2);
  }
  .panel-masthead.panel-masthead-basic .background {
    width: 70%;
    right: auto;
  }
  .panel-masthead.panel-masthead-basic .flourish-blocks {
    position: absolute;
    top: 100%;
    left: 70%;
    font-size: 0;
    z-index: 10;
  }
  .panel-masthead.panel-masthead-basic .flourish-blocks-inner {
    position: relative;
  }
  .panel-masthead.panel-masthead-basic .flourish-block {
    display: inline-block;
  }
  .panel-masthead.panel-masthead-basic .flourish-block-large {
    width: 160px;
    height: 160px;
    opacity: 0.8;
    background-color: #b0c3d4;
  }
  .panel-masthead.panel-masthead-basic .flourish-block-small {
    position: absolute;
    top: 0;
    left: 160px;
    width: calc(160px / 2);
    height: calc(160px / 2);
    background-color: #233835;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .panel-masthead.panel-masthead-basic .content {
    width: calc(75% - 56px);
    float: left;
    margin-left: 32px;
  }
  .panel-masthead.panel-masthead-expansive .content {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
    margin-left: calc(8.33333% - 34.66667px + 64px);
  }
}
@media (min-width: 1200px) {
  .panel-masthead.panel-masthead-basic {
    min-height: calc(216px * 2);
  }
  .panel-masthead.panel-masthead-basic .flourish-block-large {
    width: 216px;
    height: 216px;
  }
  .panel-masthead.panel-masthead-basic .flourish-block-small {
    left: 216px;
    width: calc(216px / 2);
    height: calc(216px / 2);
  }
  .panel-masthead.panel-masthead-expansive .content {
    width: calc(41.66667% - 45.33333px);
    float: left;
    margin-left: 32px;
    margin-left: calc(8.33333% - 34.66667px + 64px);
  }
}

.panel-masthead-hm {
  position: relative;
  margin-top: 0;
  min-height: 600px;
}

.panel-newsletter-block .container-inner {
  margin: 0 -32px;
  padding: 32px;
  background: url("../images/shell-blue-light.png") no-repeat #536788 center -50px;
  background-size: 120%;
}

.panel-newsletter-block,
.panel-newsletter-block h2 {
  color: #fdfdfd;
}

.panel-newsletter-block,
.panel-newsletter-block input,
.panel-newsletter-block .gform_footer {
  text-align: center;
}

.panel-newsletter-block .description {
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .panel-newsletter-block .content-wrap {
    margin: 0 auto;
    max-width: 400px;
  }
}

@media (min-width: 992px) {
  .panel-newsletter-block .content-wrap {
    max-width: 650px;
  }
  .panel-newsletter-block input[type="text"] {
    display: block;
    margin: 0 auto;
    max-width: 400px;
  }
}

@media (min-width: 1200px) {
  .panel-newsletter-block,
  .panel-newsletter-block input,
  .panel-newsletter-block .gform_footer {
    text-align: left;
  }
  .panel-newsletter-block .container-inner {
    margin: 0;
    background-position: -50px -50px;
    background-size: 50%;
  }
  .panel-newsletter-block .content-wrap {
    max-width: 58.33333%;
    margin: 0 auto 0 0;
  }
  .panel-newsletter-block input[type="text"] {
    display: inline-block;
  }
}

.panel-post-teasers .intro-block {
  margin-bottom: 32px;
}

.panel-post-teasers .teaser {
  margin: 0 -32px 32px;
}
.panel-post-teasers .teaser:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .panel-post-teasers .container {
    margin-bottom: -32px;
  }
  .panel-post-teasers .intro-block,
  .panel-post-teasers .teasers {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .panel-post-teasers .intro-block:after,
  .panel-post-teasers .teasers:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-post-teasers .intro {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
  }
  .panel-post-teasers .teaser {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
    margin-right: auto;
  }
  .panel-post-teasers .teaser:last-child {
    margin-bottom: 32px;
  }
}

@media (min-width: 1200px) {
  .panel-post-teasers .intro {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
  }
  .panel-post-teasers .teaser {
    width: calc(33.33333% - 42.66667px);
    float: left;
    margin-left: 32px;
  }
}

.panel-search-results {
  margin-top: 0;
  background-size: contain;
  background-position: center;
}
.panel-search-results .search-results {
  margin-top: 48px;
}
.panel-search-results .teaser + .teaser {
  margin-top: 22px;
  padding-top: 32px;
  border-top: 1px solid #e1e1e7;
}
@media (min-width: 768px) {
  .panel-search-results .grid-wrap {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .panel-search-results .grid-wrap:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-search-results .content {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
    margin-left: calc(16.66667% - 37.33333px + 64px);
  }
}
@media (min-width: 992px) {
  .panel-search-results .content {
    margin-left: calc(8.33333% - 34.66667px + 64px);
  }
  .panel-search-results .content-header {
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  .panel-search-results .content {
    width: calc(58.33333% - 50.66667px);
    float: left;
    margin-left: 32px;
    margin-left: calc(8.33333% - 34.66667px + 64px);
  }
}

.panel-simple-content {
  margin: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.panel + .panel-simple-content,
.panel-simple-content + .panel {
  margin-top: 0;
}
.panel-simple-content .content > *:last-child {
  margin-bottom: 0;
}
.panel-simple-content .column-wrap > .button {
  margin-top: 2rem;
}
.panel-simple-content .grid-wrap-video {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .panel-simple-content .grid-wrap {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .panel-simple-content .grid-wrap:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-simple-content .column-wrap,
  .panel-simple-content .video-wrap {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
    margin-left: calc(16.66667% - 37.33333px + 64px);
  }
}
@media (min-width: 992px) {
  .panel-masthead-basic + .panel-simple-content h2 {
    max-width: 80%;
  }
  .panel-simple-content .column-wrap > .button {
    margin-top: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .panel-masthead-basic + .panel-simple-content .column-wrap {
    width: calc(58.33333% - 50.66667px);
    float: left;
    margin-left: 32px;
    margin-left: calc(8.33333% - 34.66667px + 64px);
  }
  .panel-masthead-basic + .panel-simple-content h2 {
    max-width: 100%;
  }
  .panel-simple-content .video-wrap {
    width: calc(83.33333% - 58.66667px);
    float: left;
    margin-left: 32px;
    margin-left: calc(8.33333% - 34.66667px + 64px);
  }
  .panel-simple-content .column-wrap > .button {
    margin-top: 2.4rem;
  }
}

.panel-slideshow {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 1500px;
}
.panel-slideshow .image-block,
.panel-slideshow .content-block {
  padding: 32px;
}
.panel-slideshow .image-block {
  min-height: 300px;
  background-size: cover;
  background-position: center;
}
.panel-slideshow .image-block,
.panel-slideshow .image-block h2 {
  color: #fdfdfd;
}
.panel-slideshow .image-block-inner > *:last-child {
  margin-bottom: 0;
}
.panel-slideshow .content-block > *:last-child {
  margin-bottom: 0;
}
.panel-slideshow .ib-body > *:last-child,
.panel-slideshow .cb-body > *:last-child {
  margin-bottom: 0;
}
.panel-slideshow .arrows,
.panel-slideshow .slide-index {
  display: none;
}
@media (min-width: 992px) {
  .panel-slideshow .image-block,
  .panel-slideshow .content-block {
    min-height: 80vh;
    max-height: 80vh;
  }
  .panel-slideshow .slide {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .panel-slideshow .image-block {
    min-width: 65vw;
    max-width: 65vw;
  }
  .panel-slideshow .dots {
    display: none;
  }
  .panel-slideshow .arrows {
    display: block;
    position: absolute;
    bottom: 0;
    left: 65vw;
    width: 35vw;
    line-height: 0;
  }
  .panel-slideshow .slick-arrow {
    max-width: 50%;
  }
  .panel-slideshow .slick-arrow-inner {
    width: calc(35vw / 2);
    height: calc(35vw / 2);
  }
  .panel-slideshow .slide-index {
    position: absolute;
    display: inline-block;
    bottom: 0;
    right: 35vw;
    padding: 32px;
  }
  .panel-slideshow .slide-index-inner {
    position: relative;
    width: 28px;
    height: 28px;
    font-family: "Montserrat", "Montserrat Regular", "Montserrat",
      "Montserrat Regular", Helvetica, _sans-serif;
    font-size: 2rem;
    line-height: 0;
    color: #fdfdfd;
  }
  .panel-slideshow .slide-index-inner .slide-current,
  .panel-slideshow .slide-index-inner .slide-total {
    position: absolute;
  }
  .panel-slideshow .slide-index-inner .slide-current {
    top: 0;
    left: 0;
  }
  .panel-slideshow .slide-index-inner .slide-total {
    bottom: 0;
    right: 0;
  }
  .panel-slideshow .slide-index-inner:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    border-top: 2px solid;
    width: calc(100% + 16px);
  }
}
@media (min-width: 1200px) {
  .panel-slideshow .image-block {
    min-width: 70vw;
    max-width: 70vw;
  }
  .panel-slideshow .image-block-inner {
    max-width: 75%;
  }
  .panel-slideshow .arrows {
    width: 30vw;
    left: 70vw;
  }
  .panel-slideshow .slick-arrow-inner {
    width: calc(30vw / 2);
    height: calc(30vw / 2);
  }
  .panel-slideshow .slide-index {
    right: 30vw;
    padding: 40px;
  }
}
@media (min-width: 1500px) {
  .panel-slideshow .image-block {
    min-width: calc(1500px * 0.75);
    max-width: calc(1500px * 0.75);
  }
  .panel-slideshow .arrows {
    left: calc(1500px * 0.75);
    width: calc(1500px * 0.25);
  }
  .panel-slideshow .slick-arrow-inner {
    width: calc((1500px * 0.25) / 2);
    height: calc((1500px * 0.25) / 2);
  }
  .panel-slideshow .slide-index {
    right: calc(1500px * 0.25);
  }
}

.panel-team .filters {
  margin: 32px 0 64px;
}

.panel-team .facetwp-facet {
  margin: 0;
}

.panel-team .facetwp-radio {
  padding: 0;
}
.panel-team .facetwp-radio,
.panel-team .facetwp-radio.checked {
  background: none;
}

.panel-team .option-wrap {
  display: inline-block;
  font-family: "Montserrat", "Montserrat Regular", "Montserrat",
    "Montserrat Regular", Helvetica, _sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #9b9b9b;
  cursor: pointer;
  background: none;
}

.panel-team .filter-reset .fancy-underline,
.panel-team .facetwp-radio .fancy-underline {
  background: none;
  transition: color 0.3s;
}

.panel-team .filter-reset:hover .fancy-underline,
.panel-team .facetwp-radio:hover .fancy-underline,
.panel-team .filter-reset.checked .fancy-underline,
.panel-team .facetwp-radio.checked .fancy-underline {
  color: #233835;
}

.panel-team .facetwp-counter {
  display: none;
}

.panel-team .teaser {
  margin-bottom: 32px;
}
.panel-team .teaser:last-child {
  margin-bottom: 0;
}

.panel-team .filter-reset,
.panel-team .facetwp-facet {
  line-height: 1.5;
}

.panel-team .filter-reset {
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .panel-team .filters {
    margin-bottom: 0;
  }
  .panel-team .title-wrap,
  .panel-team .facetwp-facet-department,
  .panel-team .grid-wrap {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .panel-team .title-wrap:after,
  .panel-team .facetwp-facet-department:after,
  .panel-team .grid-wrap:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-team .title-wrap-inner {
    width: calc(100% - 64px);
    float: left;
    margin-left: 32px;
  }
  .panel-team .teaser {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
  }
  .panel-team .teaser:nth-child(2n + 1) {
    clear: left;
  }
  .panel-team .teaser:last-child {
    margin-bottom: 32px;
  }
  .panel-team .teaser-inner {
    max-width: 75%;
  }
  .panel-team .facetwp-facet-department {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .panel-team .filter-reset,
  .panel-team .facetwp-radio {
    width: calc(33.33333% - 42.66667px);
    float: left;
    margin-left: 32px;
    min-height: 75px;
  }
  .panel-team .container {
    margin-bottom: -32px;
  }
}

@media (min-width: 992px) {
  .panel-team .teaser {
    width: calc(33.33333% - 42.66667px);
    float: left;
    margin-left: 32px;
  }
  .panel-team .teaser:nth-child(2n + 1) {
    clear: none;
  }
  .panel-team .teaser:nth-child(3n + 1) {
    clear: left;
  }
  .panel-team .filter-reset,
  .panel-team .facetwp-radio {
    width: calc(25% - 40px);
    float: left;
    margin-left: 32px;
  }
}

.testimonial.py-5 {
  padding-bottom: calc(6rem + 16px) !important;
}
.testimonial.py-5 div.company {
  border-radius: 50%;
  -webkit-display: flex;
  -moz-display: flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 3rem;
  width: calc(100px + 2rem);
  height: calc(100px + 2rem);
  padding: 1rem;
  overflow: hidden;
  background: white;
}
.testimonial.py-5 div.company img {
  margin: auto;
}

.single .content-meta {
  margin: 8px 0;
}
.single .content-meta .meta-divider {
  display: none;
}

.single .content-thumbnail,
.single .content-share {
  margin: 32px 0;
}

@media (min-width: 480px) {
  .single .content-meta div {
    display: inline-block;
  }
  .single .content-meta .meta-divider {
    display: inline;
    margin: 0 8px;
  }
}

.content-post {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (min-width: 768px) {
  .content-post .grid-wrap {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .content-post .grid-wrap:after {
    content: "";
    display: table;
    clear: both;
  }
  .content-post .column-main {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
    margin-left: calc(16.66667% - 37.33333px + 64px);
  }
}
@media (min-width: 992px) {
  .content-post .column-main {
    margin-left: calc(8.33333% - 34.66667px + 64px);
  }
  .content-post .content-header {
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  .content-post .column-main {
    width: calc(58.33333% - 50.66667px);
    float: left;
    margin-left: 32px;
    margin-left: calc(8.33333% - 34.66667px + 64px);
  }
}

.content-team-member {
  background-size: cover;
  background-position: center;
}
.content-team-member .content-thumbnail {
  margin-top: 0;
}
.content-team-member .meta-social-connect {
  margin: 16px 0;
  line-height: 1;
}
.content-team-member .meta-social-connect li,
.content-team-member .meta-social-connect a {
  display: inline-block;
}
.content-team-member .meta-social-connect li {
  margin-right: 24px;
}
.content-team-member .meta-social-connect a {
  font-size: 2.4rem;
}
.content-team-member .column-accordion {
  margin-top: 32px;
}
.content-team-member .accordion-header {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .content-team-member .grid-wrap {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .content-team-member .grid-wrap:after {
    content: "";
    display: table;
    clear: both;
  }
  .content-team-member .column {
    width: calc(66.66667% - 53.33333px);
    float: left;
    margin-left: 32px;
    margin-left: calc(16.66667% - 37.33333px + 64px);
  }
}
@media (min-width: 992px) {
  .content-team-member .column {
    width: calc(50% - 48px);
    float: left;
    margin-left: 32px;
  }
  .content-team-member .column-accordion {
    margin-top: 120px;
  }
}
@media (min-width: 1200px) {
  .content-team-member .column-accordion {
    margin-top: 108px;
  }
}

.teaser {
  display: block;
  position: relative;
}

.teaser-post,
.teaser-resource {
  min-height: 300px;
}
.teaser-post,
.teaser-post:hover,
.teaser-post:focus,
.teaser-post h3,
.teaser-resource,
.teaser-resource:hover,
.teaser-resource:focus,
.teaser-resource h3 {
  color: #fdfdfd;
}
.teaser-post .details-wrap,
.teaser-resource .details-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
}
.teaser-post .learn-more,
.teaser-resource .learn-more {
  float: right;
}

.teaser-location img {
  width: 100%;
}

.teaser-location .img-wrap {
  margin: 0 -32px 32px;
  font-size: 0;
}

.teaser-location .phone-numbers {
  margin-bottom: 0;
}
.teaser-location .phone-numbers li {
  margin-bottom: 12px;
}
.teaser-location .phone-numbers li:last-child {
  margin-bottom: 0;
}

.teaser-location address > a,
.teaser-location .number {
  color: #4a4a4a;
  font-weight: normal;
}
.teaser-location address > a:hover span,
.teaser-location address > a:focus span,
.teaser-location .number:hover span,
.teaser-location .number:focus span {
  text-decoration: underline;
}
.teaser-location address > a .icon,
.teaser-location .number .icon {
  margin-right: 16px;
  font-size: 1.5em;
  width: 1.5em;
  vertical-align: middle;
}

@media (min-width: 480px) {
  .teaser-location .teaser-inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .teaser-location .img-wrap,
  .teaser-location .details-wrap {
    width: calc(50% - (32px / 2));
  }
  .teaser-location .img-wrap {
    margin: 0;
  }
}

.teaser-post {
  background-color: #233835;
  background-size: cover;
  background-position: center;
}
.teaser-post:hover .overlay,
.teaser-post:focus .overlay {
  opacity: 0.32;
}

.teaser-resource {
  min-height: 0;
}
.teaser-resource:nth-child(1n) {
  background-color: #233835;
}
.teaser-resource:nth-child(2n) {
  background-color: #e9625c;
}
.teaser-resource:nth-child(3n) {
  background-color: #a43047;
}
.teaser-resource .details-wrap {
  display: block;
  position: relative;
}
.teaser-resource .overlay {
  background-color: #020202;
}
.teaser-resource .learn-more {
  float: none;
  text-align: right;
}
.teaser-resource:hover .overlay,
.teaser-resource:focus .overlay {
  opacity: 0.32;
}

.teaser-search-result img {
  min-width: 150px;
}

.teaser-search-result .details > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 480px) {
  .teaser-search-result img {
    margin-right: 16px;
  }
  .teaser-search-result .flex-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.teaser-team-member h3 {
  margin-bottom: 0;
}
.teaser-team-member h3 a {
  color: #020202;
}

.teaser-team-member .image-wrap {
  position: relative;
  display: inline-block;
  font-size: 0;
  max-width: 100%;
}
.teaser-team-member .image-wrap:hover .overlay,
.teaser-team-member .image-wrap:focus .overlay {
  opacity: 0.32;
}

.teaser-team-member .details-wrap {
  margin-top: 12px;
}

.teaser-team-member .linkedin {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1;
  float: right;
}

.teaser-team-member .job-title {
  font-weight: 700;
  line-height: 1.5;
  color: #b0c3d4;
}

@media (min-width: 992px) {
  .teaser-team-member .linkedin {
    margin-top: 2px;
  }
}

@media (min-width: 1200px) {
  .teaser-team-member h3 {
    font-size: 2.2rem;
  }
  .teaser-team-member .linkedin {
    margin-top: 4px;
  }
}

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

/* Updated CSS Dec 2020 */
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  transition: all 500ms ease;
}
/* body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #7c7c80;
} */
h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 25px;
  color: 263744;
  text-transform: uppercase;
  margin-bottom: 40px;
}
header {
  padding: 20px;
  background: #fff;
  box-shadow: 0px -3px 8px 0px rgb(0, 0, 0);
}
header h3 {
  display: flex;
  float: right;
  align-items: center;
  margin: 0;
  font-size: 23px;
}
header h3 img {
  margin-right: 15px;
}
.banner {
  height: 585px;
}
.banner .title_box {
  padding: 60px;
  color: #fff;
  /* background: rgba(39, 55, 69, 0.6); */
  width: 40%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner {
  background-size: cover;
  position: relative;
}
.banner .title_box h1 {
  font-size: 51px;
  line-height: 55px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 20px;
}
.banner .title_box a {
  padding: 18px 25px;
  font-size: 17px;
  line-height: 25px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #fff;
}
.banner .title_box a:hover {
  color: #fff;
  background: #94cca2;
  border-color: #94cca2;
}
.section {
  padding: 60px 20px;
}
.outsourced h2 {
  line-height: 42px;
}
.outsourced ul {
  margin-top: -12px;
}
.outsourced ul li {
  display: inline-block;
  width: 45%;
  margin: 12px;
  vertical-align: top;
}
.bg_box {
  height: 224px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bg_box h3 {
  z-index: 9;
  font-size: 22px;
  line-height: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.bg_box .hidden {
  background: rgba(95, 158, 193, 0.7);
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  padding: 35px;
}
.bg_box .hidden p {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  word-break: break-word;
}
.bg_box:hover .hidden {
  top: 0;
}
.bg_box:hover h3 {
  display: none;
}
.bg_box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
.bg_box:hover .overlay {
  display: none;
}
.bg_box {
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.serving_industries {
  background: #a0dab3;
  position: relative;
}
.darkgreen_block {
  background: #577871;
  width: 50%;
  padding: 60px 100px 60px 30px;
  color: #fff;
}
.darkgreen_block p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.darkgreen_block h2 {
  color: #fff;
}
.icon_box {
  display: table;
  padding: 24px 16px;
  width: 100%;
  box-shadow: 0px 0px 10px 0px rgb(110 108 108);
}
.serving_industries ul {
  position: absolute;
  top: 0;
  left: 0;
  top: 50%;
  left: 45%;
  transform: translateY(-50%);
}
.serving_industries ul li {
  display: inline-block;
  width: 45%;
  margin: 10px;
  vertical-align: top;
}
.icon_box > div {
  display: table-cell;
  vertical-align: middle;
}
.icon_box h3 {
  color: #5f9ec1;
  font-size: 18px;
  /* line-height: 34px; */
  line-height: normal;
  margin: 0;
  font-weight: 700;
}
.icon_box h3 img {
  padding-right: 20px;
}
.learning {
  font-size: 16px;
  line-height: 24px;
}
.learning .para {
  text-align: center;
}
.learning h3 {
  color: #263744;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
}
.learning ul li {
  line-height: 31px;
}
.learning ul {
  margin-bottom: 70px;
}
.visual_block {
  display: inline-block;
  position: relative;
}
.visual_block h4 {
  font-size: 26px;
  line-height: 34px;
  color: #fff;
  font-weight: 800;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  width: 75%;
  text-align: center;
}
.banner a {
  display: inline-block;
}
.icon_box > div:last-child {
  width: 80%;
  padding-left: 20px;
  text-align: left;
}
header a {
  display: inline-block;
}

/*Recent css*/

body.has-mtsnb #wrapper {
  margin-top: 0;
}
.form_block {
  background: #f2f3f4;
  padding: 35px 30px;
}
.form_block .gform_footer .gform_button.button {
  background: #2d4a47;
  display: block;
  padding: 15px;
  width: 100%;
  transition: all 500ms ease;
}
.form_block .gform_footer .gform_button.button:hover {
  background: #478f88;
}
.learning ul {
  margin-bottom: 40px;
}

.footer {
  padding: 80px 0;
}
header h3 {
  padding: 10px 0;
}

/*15-3-2021*/

.banner-landing{
  /*height: auto;*/
}
.banner-landing .title_box {
    padding: 60px;
    color: #fff;
     background: rgba(39, 55, 69, 0.6); 
    width: 40%;
    position: unset;
    top: 50%;
    /*transform: translateY(-50%);*/
}
.banner-landing .title_box h3, .banner-landing .title_box p{
  color: #fff;
}
/*.banner {
  height: 585px;
}*/
.banner-landing {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
  padding: 50px 0;
}

.banner-landing .title_box{
  background: transparent;
  padding: 0;
}
.banner-landing .bg-color{
  padding: 60px;
  max-width: 90%;
  height: 100%;
}
.banner-landing .title_box h1 {
  font-size: 51px;
  line-height: 55px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 20px;
}
.download_section .download {
  text-align: center;
  padding: 80px 0;
}
.download_section h2{
  color: #fff;
  margin-bottom: 50px;
}
.download_section a {
    padding: 18px 25px;
    font-size: 17px;
    line-height: 25px;
    font-weight: 600;
    color: #fff;
    border: 2px solid #fff;
    display: inline-block;
}
/*15-03-2021*/
@media screen and (orientation: landscape) {
  .outsourced ul li {
    width: 45%;
    margin: 4px 4px;
  }
  .outsourced ul {
    text-align: center;
  }
  .serving_industries ul li {
    width: 45%;
  }
}

@media (max-width: 1600px) {
  header h3 {
    font-size: 18px;
  }
  header h3 img {
    max-width: 30px;
  }
  .banner .title_box h1 {
    font-size: 40px;
    line-height: 50px;
  }
  .banner .title_box a {
    line-height: 30px;
    margin-top: 10px;
  }
  .banner {
    height: 485px;
  }
  body {
    font-size: 16px;
    line-height: 24px;
  }
  h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .bg_box {
    height: 150px;
  }
  .bg_box .hidden {
    padding: 10px;
    top: 150%;
  }
  .bg_box .hidden p {
    font-size: 13px;
    line-height: 16px;
  }
  .bg_box h3 {
    font-size: 18px;
  }
  .icon_box h3 {
    font-size: 16px;
  }
  .icon_box {
    padding: 14px 16px;
  }
  .serving_industries ul li {
    margin: 5px 9px 5px 5px;
  }
  /* .outsourced ul li {
    margin: 6px;
  } */
}

@media (max-width: 1440px) {
  .visual_block h4 {
    font-size: 24px;
    line-height: 34px;
  }
  .icon_box h3 {
    line-height: normal;
  }
}

@media (max-width: 1200px) {
  .outsourced ul li {
    width: 42%;
    margin: 8px;
  }
  .banner .title_box h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .banner .title_box a {
    line-height: normal;
    padding: 10px 20px;
    font-size: 15px;
  }
  body {
    font-size: 14px;
    line-height: 22px;
  }
  .darkgreen_block {
    width: 60%;
  }
  .serving_industries ul {
    left: 50%;
  }
  .visual_block h4 {
    font-size: 18px;
  }
  .banner .title_box {
    width: 50%;
  }
  .learning {
    font-size: 14px;
    line-height: 22px;
  }
  h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .darkgreen_block p {
    font-size: 14px;
    line-height: 22px;
  }
  .learning ul {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .footer .footer-section-first > .footer-block:first-child {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .banner {
    height: 400px;
  }
  .banner .title_box h1 {
    font-size: 24px;
    line-height: 34px;
  }
  .banner .title_box {
    padding: 40px;
  }
  .banner {
    height: 300px;
  }
  .outsourced ul li {
    width: 100%;
  }
  .outsourced h2 {
    line-height: normal;
  }
  .darkgreen_block {
    width: 100%;
  }
  .serving_industries ul {
    left: auto;
    position: relative;
    top: auto;
    transform: none;
    text-align: center;
    margin-top: 30px;
  }
  .footer-block .nav-footer li {
    display: block;
    width: 100%;
  }
  p {
    font-size: 14px;
    line-height: 21px;
  }
  .section {
    padding: 20px;
  }
  #contact_form {
    padding: 50px 20px;
  }

  .serving_industries ul {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .banner {
    height: auto;
    padding: 30px;
  }
  .banner .title_box {
    padding: 20px;
    position: relative;
    width: 100%;
    top: auto;
    transform: none;
  }
  .banner .title_box h1 {
    font-size: 20px;
    line-height: 30px;
  }
  .banner .title_box a {
    line-height: normal;
    padding: 8px 10px;
    font-size: 12px;
    margin: 0;
  }

/*15-03-2021*/
  .banner-landing .title_box {
    padding: 20px;
    position: relative;
    width: 100%;
    top: auto;
    transform: none;
  }
  .banner-landing .bg-color {
    max-width: 100%;
  }
  .banner-landing .title_box h1 {
    font-size: 20px;
    line-height: 30px;
  }
  /*15-03-2021*/
  .section {
    padding: 20px;
  }
  .outsourced ul {
    margin-top: 0;
  }
  .outsourced ul li {
    margin: 0 0 8px 0;
  }
  .darkgreen_block {
    padding: 20px;
  }
  .serving_industries ul li {
    width: 100%;
  }
  .visual_block h4 {
    font-size: 14px;
    line-height: normal;
  }
  header h3 {
    display: inline-block;
    float: none;
    margin-top: 20px;
  }
  h2 {
    font-size: 20px;
  }
  header {
    text-align: center;
  }
}
@media (max-width: 700px) {
  #contact_form {
    padding: 80px 20px;
  }
}

.mtsnb .mtsnb-container{ padding: 4px 60px; }

#howwehelp-section .howwehelp-section .hwh-div .hwh-cnt .hwh-img img {
  width: 120px !important;
  height: 120px;
}

#servicesecond-section .servicesecond-section .ss-div .ss-cnt .ss-para a {
  text-transform: uppercase !important;
}

#servicesecond-section .servicesecond-section .ss-div .ss-cnt {
  width: 100%;
}

.mobile-navbar-toggle {
  background-color: transparent !important;
}
.mobile-navbar-toggle .bars-inner, .mobile-navbar-toggle .bars-inner:before, .mobile-navbar-toggle .bars-inner:after{
  background-color: #7bafd5 !important;
}
.navigation .mobile-navbar-toggle:hover, .navigation .mobile-navbar-toggle:focus {
  background: transparent !important;
}
.nv-psh .navigation .mobile-navbar-toggle:hover .bars-inner {
  background-color: #9abdc1 !important;
}
.nv-psh .navigation .mobile-navbar-toggle:hover .bars-inner:before {
  background-color: #9abdc1 !important;
}
.nv-psh .navigation .mobile-navbar-toggle:hover .bars-inner:after {
  background-color: #9abdc1 !important;
}

/* 18-jul-2023*/
#our-team-section-filters .gallery .desc{
    background-color: #1c4f7899 !important;
    padding: 10px 0px !important;;
}
#our-team-section-filters .gallery .desc h5{
    text-transform: uppercase;  
    font-size: 23px;
    margin-bottom: :-6px;
 
    line-height: 22px;
}
#our-team-section-filters .gallery .desc p{
    font-size: 14px !important;
       line-height: 17px !important;

}
.sidebar-area .sidebar > img{
    height: 600px;
    object-fit: cover;
}
.u_details h2{
    text-transform: capitalize !important;
}
.industry-service ul li img{
    width: 50% !important;
    width: 69px !important;
    height: 69px !important;
    object-fit: cover;
}
.industry-service ul li h5{
     text-transform: uppercase !important;
}
.info_list.industry-service > h1 {
    text-transform: capitalize !important;
}
body #serviceintro-section .serviceintro-section .si-border .blue3{
    font-weight: 900;
}
@media(min-width:1550px){
  .info_list > ul li::before{
    top: 50% !important;
        transform: translateY(-50%);
  }
}

@media(max-width:767px){
  #our-team-section-filters .gallery .desc h5{
  margin-bottom: 5px;
  }
}

#banner.team_banner{
  background-size: cover;
    background-position: center;
}
/*Ramkumar CSSS ------------------------*/

body{
    font-family: Montserrat, "Montserrat Regular", "Montserrat Regular", Helvetica, _sans-serif;
}
.sec_bottom{
    margin-bottom: 30px !important;
}
.about-wrapper p{
    font-size: 16px !important;
    line-height: 28px;
}
.office_partner{
    margin: 0px auto;
    display: block;
    text-align: center;
}
.office_partner h4{
    font-size: 22px !important;
    font-weight: 700;
    color: #696969 !important;
    text-align: center;
}
.office_img {
    width: 100%;
    margin-top: 25px;
    position: relative;
}
.office_img img{
    max-width: 100%;
}
.designation{
    margin: 0px auto;
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 270px;
    right: 0;
    background: #0000006b;
    text-align: CENTER;
    display: block;
}
.designation h4 {
    font-size: 22px !important;
    font-weight: 700;
    color: #fff !important;
    text-align: center;
    margin-bottom: 0;
    padding-top: 5px;
}
.designation p {
    font-size: 13px !important;
    font-weight: 500;
    color: #fff !important;
    text-align: center;
    margin-bottom: 6px;
}
.about_map img{
    max-width: 100%;
}
.contact_data {
    margin: 64px 0px;
}
.contact_data h4 {
    color: #004e85;
    font-size: 18px;
    font-weight: 700;
}
.contact_data p {
    margin-bottom: 5px;
    font-size: 13px;
}
.contact_data p span {
    color: #004e85;
}
.new_btn{
    background: #004e85;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 40px;
    padding: 3px 20px;
    margin-top: 10px;
    cursor: pointer;
}
.new_btn:hover{
    color: #fff;  
}

#industries-section .fluent-section .fs-div {
    margin-bottom: 50px;
}#industries-section .fluent-section .fs-div:hover img {
    transform: scale(1.05);
}
#industries-section .fluent-section .fs-div .fs-img a img {
    margin-left: auto;
    margin-right: auto;
    transition: transform .2s;
}
#industries-section .fluent-section .fs-img img {
    width: 100px !important;
    margin-bottom: 8px;
}
#industries-section .fluent-section .fs-head h1 {
    font-size: 30px;
    font-weight: 700;
    color: #2B499D !important;
}
#industries-section .fluent-section .fs-head h1 a {
    color: #2B499D !important;
    font-size: 22px;
    text-transform: uppercase;
}
#industries-section .fluent-section .fs-head p {
    font-size: 30px;
    font-weight: 700;
    color: #2B499D !important;
}
#industries-section .fluent-section .fs-head p a {
    color: #2B499D !important;
    font-size: 22px;
    text-transform: uppercase;
    text-decoration: none;
}
p{
    color: #444;
}


@media (max-width: 992px) {
.flex_row{
    display: block !important;
}
    .about_map, .contact_data{
        text-align: center;
    }
}
@media (max-width: 768px) {
.community li{    margin-bottom: 1rem;}
}