/*! Lity - v2.4.0 - 2019-08-10
* http://sorgalla.com/lity/
* Copyright (c) 2015-2019 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

.lity.lity-opened {
  opacity: 1; }

.lity.lity-closed {
  opacity: 0; }

.lity * {
  box-sizing: border-box; }

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important; }

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em; }

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

.lity-loading .lity-loader {
  opacity: 1; }

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important; }

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; }

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  transform: scale(0.8); }

.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none; }

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0; }

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none; }

.lity-close:active {
  top: 1px; }

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0; }

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px; }

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch; }

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

.lity-hide {
  display: none; }

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
html,
body {
  font-size: 16px; }

body,
button,
input,
select,
optgroup,
textarea {
  color: #4A4A4A;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 20px; }

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin: 1.5rem 0; }

h2,
h3,
h4,
h5,
h6 {
  font-weight: 300; }

h1,
h2,
.h2,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif; }
  h1.light,
  h2.light,
  .h2.light,
  h4.light,
  h5.light,
  h6.light {
    font-weight: normal; }

h1,
.h1 {
  font-size: 2rem;
  line-height: 2.3rem;
  font-weight: normal; }

.entry-header h1 {
  margin-bottom: 4rem; }

h2,
.h2 {
  font-size: 2.12rem;
  line-height: 2.42rem; }

h3,
.h3 {
  font-size: 2.37rem;
  line-height: 2.67rem; }

h4,
.h4 {
  font-size: 1.75rem;
  line-height: 2rem; }

h5,
.h5 {
  font-size: 1.31rem;
  line-height: 1.51rem; }

.label {
  font-size: .75rem; }

p {
  margin-bottom: 1.5rem;
  line-height: 20px; }

dfn,
cite,
em,
i {
  font-style: italic; }

blockquote {
  color: #171F3A;
  font-size: 24px;
  font-style: bold;
  margin: 0;
  padding: 0; }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem; }

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark,
ins {
  background: #fff9c0;
  text-decoration: none; }

big {
  font-size: 125%; }

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box; }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit; }

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */ }

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em; }

ul,
ol {
  margin: 0 0 1.5em 0em; }

ul {
  list-style: disc; }
  ul li {
    margin-bottom: 5px; }

.site-main ul li {
  margin-bottom: 12px; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

dt {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */ }

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */ }

table {
  margin: 0 0 1.5em;
  width: 100%; }

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed; }

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both; }

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */ }

.widget select {
  max-width: 100%; }

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #171F3A;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  text-decoration: none; }
  .site-main a {
    text-decoration: underline;
    font-weight: 600; }

a:visited {
  color: #171F3A; }

a:hover,
a:focus,
a:active {
  color: #171F3A; }

a:focus {
  outline: thin dotted; }

a:hover,
a:active {
  outline: 0; }

.button, .button:visited {
  background: #009DCC;
  color: #fff;
  padding: .75rem 3.12rem;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.8);
  display: inline-block; }
  .button:hover, .button:visited:hover {
    background: #fff;
    color: #009DCC; }
  .button.pill, .button:visited.pill {
    border-radius: 100px; }

sup {
  font-size: .8rem;
  vertical-align: super; }

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

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

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

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

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

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

.text-right {
  text-align: right; }

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

.inline {
  list-style: none; }
  .inline li {
    display: inline-block; }

.padding {
  padding-top: 50px;
  padding-bottom: 50px; }

.no-indent {
  margin-left: 0;
  padding-left: 0;
  list-style: none; }

.inline {
  margin-left: 0;
  padding-left: 0; }

.underline-title {
  border-bottom: 1px solid rgba(223, 223, 223, 0.8); }

.mobile-hide {
  display: block; }
  @media (max-width: 992px) {
    .mobile-hide {
      display: none; } }

.mobile-show {
  display: none; }
  @media (max-width: 992px) {
    .mobile-show {
      display: block; } }

.noSpace {
  margin-bottom: 0; }

@media (max-width: 992px) {
  .padBotMob {
    margin-bottom: 100px; } }

.blue-link {
  color: #009DCC; }

.blueText {
  color: #0099d9;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300; }
  .blueText::after {
    content: '';
    width: 200px;
    height: 2px;
    display: block;
    border-bottom: 2px solid #0099d9;
    margin: 1rem auto 0; }

.red-Text {
  color: #ff595e;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300; }
  .red-Text::after {
    content: '';
    width: 200px;
    height: 2px;
    display: block;
    border-bottom: 2px solid #ff595e;
    margin: 1rem auto 0; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative; }

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none; }

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block; }

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.owl-height {
  -webkit-transition: height .5s ease-in-out;
  transition: height .5s ease-in-out; }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease; }

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .1s ease;
  transition: -webkit-transform .1s ease;
  transition: transform .1s ease;
  transition: transform .1s ease, -webkit-transform .1s ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

@media (max-width: 992px) {
  .owl-carousel img {
    margin: 0 auto;
    max-width: 450px; }
  .owl-carousel .owl-item {
    padding: 0 40px; } }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

@media (min-width: 768px) {
  .container {
    width: 750px; } }

@media (min-width: 992px) {
  .container {
    width: 970px; } }

@media (min-width: 1200px) {
  .container {
    width: 1140px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

.row {
  margin-left: -15px;
  margin-right: -15px; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

.col-xs-9 {
  width: 75%; }

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

.col-xs-6 {
  width: 50%; }

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

.col-xs-3 {
  width: 25%; }

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-pull-11 {
  right: 91.66666667%; }

.col-xs-pull-10 {
  right: 83.33333333%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-8 {
  right: 66.66666667%; }

.col-xs-pull-7 {
  right: 58.33333333%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-5 {
  right: 41.66666667%; }

.col-xs-pull-4 {
  right: 33.33333333%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-2 {
  right: 16.66666667%; }

.col-xs-pull-1 {
  right: 8.33333333%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-push-11 {
  left: 91.66666667%; }

.col-xs-push-10 {
  left: 83.33333333%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-8 {
  left: 66.66666667%; }

.col-xs-push-7 {
  left: 58.33333333%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-5 {
  left: 41.66666667%; }

.col-xs-push-4 {
  left: 33.33333333%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-2 {
  left: 16.66666667%; }

.col-xs-push-1 {
  left: 8.33333333%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-12 {
  margin-left: 100%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-0 {
  margin-left: 0%; }

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

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

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

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table; }

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

.site-footer {
  background: #171F3A;
  color: #fff;
  padding: 4rem 0 2rem;
  font-size: 1.2rem; }
  @media (max-width: 992px) {
    .site-footer {
      text-align: center; } }
  .site-footer .footer-logo img {
    width: 200px;
    max-width: 100%; }
    @media (max-width: 992px) {
      .site-footer .footer-logo img {
        margin-bottom: 30px; } }
  .site-footer #footer-menu {
    list-style: none;
    margin-left: 0;
    padding-left: 0; }
    @media (min-width: 992px) {
      .site-footer #footer-menu {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2; } }
    .site-footer #footer-menu a {
      color: #fff;
      display: block;
      padding-bottom: 10px; }
  .site-footer #custom_html-2 p {
    line-height: 30px;
    margin-top: 0; }
  .site-footer .widget h2 {
    font-size: 1.1rem; }
  .site-footer .widget-title a, .site-footer .widget-title a:visited {
    color: #fff; }
  .site-footer .copyright {
    padding-top: 2rem;
    font-size: .9rem; }
    .site-footer .copyright a {
      color: #fff; }

.grey-section {
  background: #DFDFDF;
  padding: 2rem 0;
  margin: 4rem 0 2rem; }

.site-header {
  background: #03112f;
  background: -webkit-gradient(linear, left top, right top, from(#03112f), to(#1b476b));
  background: linear-gradient(90deg, #03112f 0%, #1b476b 100%);
  color: #fff;
  padding: 15px 0 5px;
  position: relative;
  z-index: 999; }
  .site-header .main-logo img {
    width: 250px;
    max-width: 100%; }

.page-hero {
  height: 250px;
  position: relative; }
  @media (max-width: 768px) {
    .page-hero {
      height: auto; } }
  .page-hero.sub-title {
    height: 400px; }
    @media (max-width: 768px) {
      .page-hero.sub-title {
        height: auto; } }
    .page-hero.sub-title:before {
      height: 100%;
      width: 100%;
      background: rgba(223, 223, 223, 0.5);
      position: absolute;
      top: 0;
      left: 0;
      content: ''; }
      @media (max-width: 768px) {
        .page-hero.sub-title:before {
          background: rgba(223, 223, 223, 0.8); } }
  .page-hero .side-angle-boxes {
    max-width: 70%;
    position: absolute;
    bottom: 25px;
    left: 15%;
    right: 15%;
    font-size: 2.5rem;
    line-height: 2.9rem;
    color: #171F3A; }
    @media (max-width: 768px) {
      .page-hero .side-angle-boxes {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: auto;
        max-width: none;
        margin: 20px; } }
    @media (max-width: 500px) {
      .page-hero .side-angle-boxes {
        font-size: 2.1rem;
        line-height: 2.4rem; } }
    @media (max-width: 576px) {
      .page-hero .side-angle-boxes {
        font-size: 1.5rem;
        line-height: 1.8rem; } }
    .page-hero .side-angle-boxes span {
      font-weight: bold; }

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em; }

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa; }

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px; }

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

#gform_1 {
  max-width: 600px; }
  #gform_1 input,
  #gform_1 textarea {
    width: 100%;
    background: #DFDFDF;
    border-color: #171F3A; }
  #gform_1 input[type=submit] {
    background: #009DCC;
    color: #fff;
    padding: .75rem 3.12rem;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.8);
    width: auto;
    border-radius: 100px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear; }
    #gform_1 input[type=submit]:hover {
      background: #fff;
      color: #009DCC; }

.side-angle-boxes {
  background: url(../images/Top-Bracket.svg) no-repeat top left/40px 40px, url(../images/Bottom-Bracket.svg) no-repeat bottom right/40px 40px;
  padding: 2rem; }
  .side-angle-boxes.lb-side-angle {
    background: url(../images/Top-Bracket-LB.svg) no-repeat top left/40px 40px, url(../images/Bottom-Bracket-LB.svg) no-repeat bottom right/40px 40px; }
  .side-angle-boxes span {
    font-weight: bold; }

#additionalBox a {
  text-decoration: none; }

.sideImgCard {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.8); }
  .sideImgCard .imageArea {
    width: 30%; }
  .sideImgCard .contentArea {
    width: 70%;
    padding: 15px; }
    .sideImgCard .contentArea h4 {
      margin-top: 0; }
    .sideImgCard .contentArea p {
      color: #009DCC; }

.alternating-row {
  display: -webkit-box;
  display: flex;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(74, 74, 74, 0.5); }
  .alternating-row:last-child {
    border-bottom: none; }
  @media (max-width: 992px) {
    .alternating-row {
      display: block; }
      .alternating-row .alternateImg {
        height: 250px; } }
  .alternating-row .alternate-content {
    padding: 0 25px; }
    .alternating-row .alternate-content h3 {
      color: #171F3A; }

.component-accordion h3 {
  background: #DFDFDF;
  color: #4A4A4A;
  font-size: 1.2rem;
  padding: 5px 15px;
  margin: 15px 0 0;
  border-radius: 6px;
  outline: none;
  position: relative; }
  .component-accordion h3:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f067";
    position: absolute;
    top: 5px;
    right: 15px; }
  .component-accordion h3.ui-state-active {
    border-radius: 6px 6px 0 0; }
    .component-accordion h3.ui-state-active:before {
      content: "\f068"; }
  .component-accordion h3:hover {
    cursor: pointer; }

.component-accordion .ui-accordion-content {
  background: #DFDFDF;
  padding: 5px 15px;
  border-radius: 0 0 6px 6px; }
  .component-accordion .ui-accordion-content h4 {
    font-size: 1rem; }
  .component-accordion .ui-accordion-content p {
    margin: 0; }
  .component-accordion .ui-accordion-content ul {
    margin-left: 0; }

.history-timeline .content-before {
  height: 200px;
  margin-left: 50px; }
  @media (max-width: 992px) {
    .history-timeline .content-before {
      height: auto;
      display: none; } }
  .history-timeline .content-before ul {
    margin-left: 0; }

.history-timeline .content-after {
  min-height: 150px;
  margin-left: 30px; }
  @media (max-width: 992px) {
    .history-timeline .content-after {
      min-height: none; } }
  .history-timeline .content-after ul {
    margin-left: 0;
    padding-top: 20px; }

.history-timeline .row div[class^="col-"]:nth-child(even) .content-after {
  border-left: 1px solid #DFDFDF; }

.history-timeline .row div[class^="col-"]:nth-child(odd) .content-after {
  display: none; }
  @media (max-width: 992px) {
    .history-timeline .row div[class^="col-"]:nth-child(odd) .content-after {
      display: block;
      border-left: 1px solid #DFDFDF; } }

.history-timeline .row div[class^="col-"]:nth-child(odd) .content-before {
  border-left: 1px solid #DFDFDF; }

.history-timeline .time-arrow {
  padding: 5px 5px 5px 20%;
  min-height: 100px;
  position: relative;
  width: 98%;
  margin-left: -30px; }
  @media (max-width: 1200px) {
    .history-timeline .time-arrow {
      width: 102%;
      margin-left: -9px;
      padding: 5px 5px 5px 27%; } }
  @media (max-width: 992px) {
    .history-timeline .time-arrow {
      width: 100%;
      padding: 20px 5px 5px 14%; } }
  @media (max-width: 768px) {
    .history-timeline .time-arrow {
      width: 90%;
      padding-left: 18%; } }
  .history-timeline .time-arrow:after {
    width: 0;
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    z-index: 9; }
  .history-timeline .time-arrow:before {
    content: "";
    position: absolute;
    left: -23.5%;
    top: 8px;
    width: 0;
    height: 0;
    border-bottom: 85px solid #fff;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
    @media (max-width: 992px) {
      .history-timeline .time-arrow:before {
        left: -75px; } }
  .history-timeline .time-arrow.blue {
    background: #009DCC;
    color: #fff; }
    .history-timeline .time-arrow.blue:after {
      border-left: 50px solid #009DCC; }
  .history-timeline .time-arrow.dkblue {
    background: #171F3A;
    color: #fff; }
    .history-timeline .time-arrow.dkblue:after {
      border-left: 50px solid #171F3A; }
  .history-timeline .time-arrow.grey {
    background: #DFDFDF; }
    .history-timeline .time-arrow.grey:after {
      border-left: 50px solid #DFDFDF; }
  .history-timeline .time-arrow span {
    display: block;
    font-size: 1.4rem; }

.card-cs {
  box-shadow: 5px 4px 15px 0 rgba(0, 0, 0, 0.18);
  padding: 0 50px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 20px;
  width: 300px;
  min-height: 350px; }
  .card-cs.show-cs-card:hover {
    cursor: pointer; }
  @media (max-width: 992px) {
    .card-cs {
      display: block;
      width: 90%;
      text-align: center;
      margin: 20px auto 0;
      min-height: auto;
      padding: 50px; } }
  .card-cs.active .hidden-content {
    display: block; }
  @media (min-width: 992px) {
    .card-cs.active {
      width: auto;
      padding: 0 25px 0 0; } }
  .card-cs h5,
  .card-cs img {
    display: block;
    text-align: center; }
  .card-cs h5 {
    margin-bottom: 0;
    max-width: 300px; }
    @media (max-width: 992px) {
      .card-cs h5 {
        margin-bottom: 15px; } }
  .card-cs img {
    height: 100px; }

.cs-card-row {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center; }
  @media (max-width: 992px) {
    .cs-card-row {
      display: block; } }

.card-front-container,
.hidden-content {
  display: inline-block; }

.card-front-container {
  padding: 0 20px; }
  @media (min-width: 992px) {
    .card-front-container {
      width: 300px; } }
  .card-front-container img {
    margin: 0 auto; }

.hidden-content {
  vertical-align: top;
  display: none; }
  .hidden-content h5 {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 10px; }
  @media (min-width: 992px) {
    .hidden-content {
      border-left: 1px solid #DFDFDF;
      width: 60%;
      padding-left: 15px; }
      .hidden-content h5 {
        text-align: left; } }
  .hidden-content ul {
    margin-left: 0; }

#portfolioIcon {
  max-width: 750px;
  margin: 3rem auto;
  display: block; }

.arrowGraphic:hover {
  cursor: pointer; }
  .arrowGraphic:hover > path {
    opacity: .7; }

.arrowGraphic.active text {
  fill: #fff; }

.port-section {
  display: none; }
  .port-section h4 {
    font-size: 1.2rem;
    background: #DFDFDF;
    padding: 5px 10px;
    border: 1px solid #4A4A4A; }
  .port-section ul {
    margin-left: 0;
    padding-left: 15px;
    font-size: .9rem; }
  .port-section.active {
    display: block; }

.highlighttab h4 {
  font-size: 1.2rem;
  background: #DFDFDF;
  padding: 5px 10px;
  border: 1px solid #4A4A4A; }

.highlighttab h5 {
  color: #009DCC; }

.highlighttab ul {
  margin-left: 0;
  padding-left: 15px;
  font-size: .9rem; }

.overlay {
  position: fixed;
  top: -100%;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  z-index: 999; }
  .overlay.active {
    top: 0; }
  .overlay .port-content {
    width: 600px;
    background: #fff;
    margin: 20px 0;
    padding: 25px;
    overflow: scroll;
    max-height: 90%; }
    @media (max-width: 768px) {
      .overlay .port-content {
        width: 80%; } }

.grey-box {
  border-radius: 6px;
  background: #DFDFDF;
  padding: 1rem;
  display: block;
  margin-bottom: 1rem; }
  .grey-box h4 {
    margin-top: 0px;
    font-size: 1.55rem;
    line-height: 1.85rem; }
  .grey-box ul {
    margin-left: 0; }

.main-navigation {
  text-align: right;
  -webkit-transition: all .3s linear;
  transition: all .3s linear; }
  @media (max-width: 992px) {
    .main-navigation {
      position: fixed;
      top: -200%;
      left: 0;
      width: 100%;
      height: 100%;
      background: #171F3A;
      text-align: center;
      padding: 2rem 0;
      z-index: 99;
      overflow: scroll; }
      .main-navigation.active {
        top: 0; }
      .main-navigation img {
        margin-left: 5%;
        width: 150px;
        margin-bottom: 25px; }
      .main-navigation .close-nav {
        float: right;
        margin-top: -45px;
        margin-right: 5%;
        font-size: 1.5rem; }
        .main-navigation .close-nav:hover {
          cursor: pointer; } }
  @media (min-width: 992px) {
    .main-navigation .close-nav {
      display: none; } }
  .main-navigation ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0; }
    .main-navigation ul li {
      display: inline-block;
      position: relative; }
      .main-navigation ul li .show-sub {
        position: absolute;
        right: 15%;
        top: 8px;
        padding: 5px 8px;
        display: none; }
      @media (max-width: 992px) {
        .main-navigation ul li {
          display: block; }
          .main-navigation ul li .show-sub {
            display: block; } }
      @media (min-width: 992px) {
        .main-navigation ul li:hover {
          background: #fff; }
          .main-navigation ul li:hover a {
            color: #171F3A; }
          .main-navigation ul li:hover ul {
            display: block; } }
      .main-navigation ul li a {
        color: #fff;
        display: block; }
      .main-navigation ul li ul {
        position: absolute;
        top: 38px;
        left: 0;
        background: #fff;
        padding: 0 15px;
        min-width: 150px;
        z-index: 9;
        display: none;
        text-align: left; }
        @media (max-width: 992px) {
          .main-navigation ul li ul {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            display: none;
            text-align: center; } }
        .main-navigation ul li ul li {
          display: block; }
          .main-navigation ul li ul li a {
            color: #171F3A;
            display: block;
            padding: 15px 0; }
            .main-navigation ul li ul li a:hover {
              text-decoration: underline; }
  .main-navigation div > ul > li {
    margin-bottom: 0; }
    .main-navigation div > ul > li a {
      padding: 10px; }

.menu-toggle {
  display: none;
  color: #fff;
  background: transparent;
  border: none;
  float: right;
  font-size: 1.3rem; }
  @media (max-width: 992px) {
    .menu-toggle {
      display: block; } }

.home-hero .hero-box {
  margin-top: 50px;
  margin-bottom: 50px;
  color: #fff;
  text-align: center; }
  .home-hero .hero-box p {
    font-size: 23px;
    line-height: 38px; }
    @media (max-width: 576px) {
      .home-hero .hero-box p {
        font-size: 20px;
        line-height: 28px; } }
  .home-hero .hero-box h1 {
    font-size: 74px;
    line-height: 85px;
    font-weight: 300; }
    @media (max-width: 992px) {
      .home-hero .hero-box h1 {
        font-size: 60px;
        line-height: 70px; } }
    @media (max-width: 576px) {
      .home-hero .hero-box h1 {
        font-size: 40px;
        line-height: 50px; } }

.home .top-copy p {
  color: #002554;
  font-size: 23px;
  line-height: 38px; }
  @media (max-width: 576px) {
    .home .top-copy p {
      font-size: 20px;
      line-height: 28px; } }

@media (max-width: 768px) {
  .home .site-main h4 {
    font-size: 1.25rem;
    line-height: 1.45rem;
    text-align: center; } }

.divider-blocks {
  padding-top: 2rem;
  padding-bottom: 2rem;
  z-index: 99;
  position: relative; }
  .divider-blocks__main {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap; }
    @media (max-width: 768px) {
      .divider-blocks__main {
        display: block; } }
  .divider-blocks .item {
    background-color: #ebebeb;
    padding-top: 2rem;
    padding-bottom: 2rem;
    -webkit-box-flex: 1;
            flex: 1; }
    @media (max-width: 768px) {
      .divider-blocks .item {
        margin: 0 0 1rem 0;
        width: 100%; } }
    .divider-blocks .item:first-child {
      margin-right: 1rem; }
      .divider-blocks .item:first-child h3 {
        color: #ff595e; }
        .divider-blocks .item:first-child h3::after {
          border-color: #ff595e; }
    .divider-blocks .item:last-child h3 {
      color: #0099d9; }
      .divider-blocks .item:last-child h3::after {
        border-color: #0099d9; }
    .divider-blocks .item h3 {
      text-align: center;
      margin-top: 0;
      font-weight: 300;
      font-size: 30px;
      text-transform: uppercase; }
      @media (max-width: 768px) {
        .divider-blocks .item h3 {
          font-size: 25px; } }
      .divider-blocks .item h3::after {
        content: '';
        width: 200px;
        height: 2px;
        display: block;
        border-bottom: 2px solid;
        margin: 1rem auto 0; }
    .divider-blocks .item ul {
      list-style: none;
      font-size: 25px;
      line-height: 30px;
      margin-left: 50px;
      margin-right: 50px;
      padding-left: 0; }
      @media (max-width: 768px) {
        .divider-blocks .item ul {
          font-size: 20px;
          line-height: 25px; } }
      .divider-blocks .item ul > li {
        margin-bottom: 1.2rem;
        color: #002554; }
        .divider-blocks .item ul > li:before {
          font-family: "Font Awesome 5 Free";
          content: "\f04d";
          font-size: .8rem;
          font-weight: 900;
          height: 100%;
          width: 10px;
          margin-left: -25px;
          margin-right: 10px;
          vertical-align: top;
          color: #ccc; }

.financial-section h3 {
  font-size: 36px;
  color: #002554;
  font-weight: 500; }
  @media (max-width: 768px) {
    .financial-section h3 {
      font-size: 30px; } }

.financial-section .fin-num h3 {
  font-size: 58px;
  font-weight: normal;
  margin-bottom: 2rem; }
  @media (max-width: 768px) {
    .financial-section .fin-num h3 {
      font-size: 45px; } }

.financial-section .fin-num p {
  font-size: 23px;
  line-height: 29px;
  color: #002554; }
  @media (max-width: 768px) {
    .financial-section .fin-num p {
      font-size: 18px;
      line-height: 22px; } }

.financial-section .fin-num div[class^="col-"]:nth-child(1) h3 {
  color: #4ab973; }

.financial-section .fin-num div[class^="col-"]:nth-child(2) h3 {
  color: #0099d9; }

.financial-section .fin-num div[class^="col-"]:nth-child(3) h3 {
  color: #1350b9; }

.financial-section .fin-num div[class^="col-"]:nth-child(4) h3 {
  color: #ff595e; }

#additionalBox {
  border-top: 1px solid rgba(74, 74, 74, 0.5);
  padding-top: 4rem;
  margin-top: 4rem; }

#hero-video {
  position: absolute;
  width: 100%; }

.site-main {
  padding-top: 3rem;
  padding-bottom: 3rem; }

.page-id-20 .main-content {
  text-align: center; }

.team-member {
  text-align: center;
  margin-bottom: 2rem; }
  .team-member a {
    text-decoration: none; }
  .team-member img {
    width: 250px; }
  .team-member .team-name {
    color: #009DCC;
    font-size: 1.2rem;
    margin-bottom: 0; }
  .team-member .team-title {
    margin-top: .5rem; }

#bod-section .row {
  margin-bottom: 15px; }

#bod-section .name {
  font-weight: bold;
  margin-bottom: 0;
  font-size: 1.2rem; }

#bod-section .title {
  margin-top: .5rem;
  color: #009DCC; }

.reports-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0; }
  .reports-list .title {
    font-weight: bold; }

.equal-height {
  display: -webkit-box;
  display: flex;
  margin-bottom: 1rem; }
  .equal-height .grey-box {
    height: 100%; }

.news-card {
  text-align: center;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.8);
  color: #171F3A;
  font-size: 2rem;
  font-weight: bold;
  min-height: 250px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background: #DFDFDF; }
  .news-card:hover {
    background: #009DCC;
    color: #fff; }
  .news-card a {
    display: block; }

.new-card-section {
  margin-bottom: 25px; }
  .new-card-section a {
    text-decoration: none; }

.single-team h2 {
  font-size: 1.4rem;
  font-weight: normal; }

.team-info {
  max-width: 300px;
  margin: 1.5rem auto 1.5rem; }
  .team-info h1 {
    font-size: 1rem;
    line-height: 1.3rem;
    color: #009DCC;
    margin-bottom: 0; }
  .team-info .team-title {
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: normal;
    margin-top: .5rem; }
  .team-info img {
    width: 200px;
    max-width: 100%; }

.news-article {
  padding-bottom: 2rem;
  margin-top: 2rem;
  border-bottom: 1px solid #DFDFDF; }
  .news-article a {
    color: #4A4A4A; }
  .news-article h2 {
    font-size: 1.1rem;
    line-height: 1.3rem;
    margin-bottom: 10px; }
  .news-article .sourceInfo {
    margin-top: 10px;
    font-weight: normal;
    font-style: italic; }

.single h1 {
  margin-bottom: 0; }
