@charset "UTF-8";
/*--------------------------------------------------------------
# Variables and Mixins
--------------------------------------------------------------*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
  List of CSS3 Sass Mixins File to be @imported and @included as you need
  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files
  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties
------------------------------------------------------------- */
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

section, div {
  position: relative;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

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

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 6em;
  margin: 0.67em 0;
}

.h1, h1 {
  font-weight: 400;
}

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

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 12.6px;
  font-weight: 300;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

h1 sup, h2 sup, h3 sup {
  top: -0.9em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Benchmark has decided that the Bootstrap widths are not optimal for them and they need additional padding on the Container */
.container {
  padding-left: 80px;
  padding-right: 80px;
}

header.site-header .container, body.page-template-tpl-LandingPage2 section.global-hero .container, #top-navigation .container {
  padding: 0 !important;
}

@media only screen and (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .page-template-tpl-CustomPanels .container {
    max-width: 1140px;
  }
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #4d4d4d;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6em;
}

li,
p {
  font-size: 1rem;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.6em;
  text-align: left;
  color: #4d4d4d;
}
li b, li strong,
p b,
p strong {
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
}

h1.hero-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  padding: 5px 0;
}

h2.hero-subtext {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
}

.global-hero h1.hero-title,
.global-hero h2.hero-subtext {
  text-align: center;
}
.global-hero h1.hero-title {
  margin: 0;
}

.section-headings {
  text-align: center;
}
.section-headings h1.section-title {
  font-weight: 400;
  font-size: 36px;
}
@media (max-width: 767.98px) {
  .section-headings h1.section-title {
    font-size: 28px;
  }
  .section-headings h1.section-title br {
    content: "";
  }
}
.section-headings h2.section-title {
  font-weight: 400;
  font-size: 32px;
}
@media (max-width: 767.98px) {
  .section-headings h2.section-title {
    font-size: 26px;
  }
  .section-headings h2.section-title br {
    content: "";
  }
}
.section-headings h3.section-subtitle {
  font-size: 1.75rem;
  font-weight: 300;
}
@media (max-width: 767.98px) {
  .section-headings h3.section-subtitle {
    font-size: 22px;
  }
  .section-headings h3.section-subtitle br {
    content: "";
  }
}
.section-headings p.section-subtitle {
  font-size: 0.9rem;
}

@media screen and (min-width: 1200px) {
  h1.hero-title {
    font-size: 3rem;
  }
  h2.hero-subtext {
    font-size: 2rem;
  }
}
header .section-headings {
  padding: 0 !important;
  margin-bottom: 45px;
}
header .section-headings.text-center {
  width: 100%;
  display: block;
}
header .section-headings.text-left {
  width: auto;
  display: inline-block;
}
header .section-headings.text-left h1:not([class*=bg-color-none]),
header .section-headings.text-left h2:not([class*=bg-color-none]) {
  padding: 15px 90px 15px 45px;
}
@media (min-width: 768px) {
  header .section-headings.with-number {
    margin-bottom: 120px;
  }
}
header .section-headings h1 {
  margin: 0;
  font-size: 1.875rem;
  line-height: 1.4;
}
header .section-headings h1:not([class*=bg-color-none]) {
  padding: 15px 0;
  border-radius: 10px;
}
header .section-headings h2 > .headline {
  font-size: 1.875rem;
  line-height: 1.4;
}
header .section-headings h2 {
  margin: 0;
  display: flex;
  position: relative;
  z-index: 7;
  flex-direction: column;
}
@media (min-width: 768px) {
  header .section-headings h2 {
    flex-direction: row;
  }
}
header .section-headings h2:not([class*=bg-color-none]) {
  padding: 15px 0;
  border-radius: 10px;
}
@media (min-width: 992px) {
  header .section-headings h2.underlined .number-icon {
    z-index: 8;
  }
  header .section-headings h2.underlined .number-icon:before {
    content: "";
    position: absolute;
    width: 4500px;
    height: 5px;
    left: -1500px;
    display: block;
    bottom: 40px;
    z-index: -1;
  }
  header .section-headings h2.underlined-white .number-icon:before {
    background-color: #fff;
  }
  header .section-headings h2.underlined-green .number-icon:before, header .section-headings h2.underlined-core-brand-color .number-icon:before {
    background-color: #32a485;
  }
  header .section-headings h2.underlined-blue .number-icon:before, header .section-headings h2.underlined-sea-blue .number-icon:before {
    background-color: #0c6794;
  }
}
header .section-headings h2 .number-icon {
  display: block;
  text-align: center;
  height: 100px;
  width: 100px;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 768px) {
  header .section-headings h2 .number-icon {
    position: absolute;
    margin: 0;
  }
}
@media (min-width: 992px) {
  header .section-headings h2 .number-icon {
    height: 120px;
    width: 120px;
    top: 10px;
    z-index: 10;
  }
}
@media (min-width: 1200px) {
  header .section-headings h2 .number-icon {
    top: 0;
  }
}
header .section-headings h2 .number-icon img {
  max-width: 100%;
}
@media (min-width: 768px) {
  header .section-headings h2 .headline {
    padding-left: 150px;
  }
}
header .section-headings h4 {
  margin: 15px 0 0;
}
header .section-headings div,
header .section-headings div > * {
  margin: 0;
  line-height: 1.5;
}

p {
  margin-bottom: 1.5em;
}

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

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 1.125rem;
  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: 0.05859375rem;
}

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

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

big {
  font-size: 125%;
}

.txt-100 {
  font-weight: 100 !important;
}

.txt-300 {
  font-weight: 300 !important;
}

.txt-400 {
  font-weight: 400 !important;
}

.txt-500 {
  font-weight: 400 !important;
}

.txt-700 {
  font-weight: 700 !important;
}

.txt-900 {
  font-weight: 900 !important;
}

/*--------------------------------------------------------------
# Atom Colors
--------------------------------------------------------------*/
section.bg-color-white,
div.bg-color-white,
span.bg-color-white,
.container.bg-color-white,
.card-title.bg-color-white,
p.bg-color-white {
  background-color: white;
}
section.bg-color-white + .card-content li:before,
div.bg-color-white + .card-content li:before,
span.bg-color-white + .card-content li:before,
.container.bg-color-white + .card-content li:before,
.card-title.bg-color-white + .card-content li:before,
p.bg-color-white + .card-content li:before {
  background-color: white;
}
section.bg-color-grey,
div.bg-color-grey,
span.bg-color-grey,
.container.bg-color-grey,
.card-title.bg-color-grey,
p.bg-color-grey {
  background-color: #686868;
}
section.bg-color-grey + .card-content li:before,
div.bg-color-grey + .card-content li:before,
span.bg-color-grey + .card-content li:before,
.container.bg-color-grey + .card-content li:before,
.card-title.bg-color-grey + .card-content li:before,
p.bg-color-grey + .card-content li:before {
  background-color: #686868;
}
section.bg-color-lightgrey,
div.bg-color-lightgrey,
span.bg-color-lightgrey,
.container.bg-color-lightgrey,
.card-title.bg-color-lightgrey,
p.bg-color-lightgrey {
  background-color: #f2f2f1;
}
section.bg-color-lightgrey + .card-content li:before,
div.bg-color-lightgrey + .card-content li:before,
span.bg-color-lightgrey + .card-content li:before,
.container.bg-color-lightgrey + .card-content li:before,
.card-title.bg-color-lightgrey + .card-content li:before,
p.bg-color-lightgrey + .card-content li:before {
  background-color: #f2f2f1;
}
section.bg-color-darkgrey,
div.bg-color-darkgrey,
span.bg-color-darkgrey,
.container.bg-color-darkgrey,
.card-title.bg-color-darkgrey,
p.bg-color-darkgrey {
  background-color: #4a4a4a;
}
section.bg-color-darkgrey + .card-content li:before,
div.bg-color-darkgrey + .card-content li:before,
span.bg-color-darkgrey + .card-content li:before,
.container.bg-color-darkgrey + .card-content li:before,
.card-title.bg-color-darkgrey + .card-content li:before,
p.bg-color-darkgrey + .card-content li:before {
  background-color: #4a4a4a;
}
section.bg-color-headinggrey,
div.bg-color-headinggrey,
span.bg-color-headinggrey,
.container.bg-color-headinggrey,
.card-title.bg-color-headinggrey,
p.bg-color-headinggrey {
  background-color: #818286;
}
section.bg-color-headinggrey + .card-content li:before,
div.bg-color-headinggrey + .card-content li:before,
span.bg-color-headinggrey + .card-content li:before,
.container.bg-color-headinggrey + .card-content li:before,
.card-title.bg-color-headinggrey + .card-content li:before,
p.bg-color-headinggrey + .card-content li:before {
  background-color: #818286;
}
section.bg-color-core-brand-color,
div.bg-color-core-brand-color,
span.bg-color-core-brand-color,
.container.bg-color-core-brand-color,
.card-title.bg-color-core-brand-color,
p.bg-color-core-brand-color {
  background-color: #81b10d;
}
section.bg-color-core-brand-color + .card-content li:before,
div.bg-color-core-brand-color + .card-content li:before,
span.bg-color-core-brand-color + .card-content li:before,
.container.bg-color-core-brand-color + .card-content li:before,
.card-title.bg-color-core-brand-color + .card-content li:before,
p.bg-color-core-brand-color + .card-content li:before {
  background-color: #81b10d;
}
section.bg-color-secondary-brand-color,
div.bg-color-secondary-brand-color,
span.bg-color-secondary-brand-color,
.container.bg-color-secondary-brand-color,
.card-title.bg-color-secondary-brand-color,
p.bg-color-secondary-brand-color {
  background-color: #2083B6;
}
section.bg-color-secondary-brand-color + .card-content li:before,
div.bg-color-secondary-brand-color + .card-content li:before,
span.bg-color-secondary-brand-color + .card-content li:before,
.container.bg-color-secondary-brand-color + .card-content li:before,
.card-title.bg-color-secondary-brand-color + .card-content li:before,
p.bg-color-secondary-brand-color + .card-content li:before {
  background-color: #2083B6;
}
section.bg-color-black,
div.bg-color-black,
span.bg-color-black,
.container.bg-color-black,
.card-title.bg-color-black,
p.bg-color-black {
  background-color: #000;
}
section.bg-color-black + .card-content li:before,
div.bg-color-black + .card-content li:before,
span.bg-color-black + .card-content li:before,
.container.bg-color-black + .card-content li:before,
.card-title.bg-color-black + .card-content li:before,
p.bg-color-black + .card-content li:before {
  background-color: #000;
}
section.bg-color-navyblue,
div.bg-color-navyblue,
span.bg-color-navyblue,
.container.bg-color-navyblue,
.card-title.bg-color-navyblue,
p.bg-color-navyblue {
  background-color: #184784;
}
section.bg-color-navyblue + .card-content li:before,
div.bg-color-navyblue + .card-content li:before,
span.bg-color-navyblue + .card-content li:before,
.container.bg-color-navyblue + .card-content li:before,
.card-title.bg-color-navyblue + .card-content li:before,
p.bg-color-navyblue + .card-content li:before {
  background-color: #184784;
}
section.bg-color-easternblue,
div.bg-color-easternblue,
span.bg-color-easternblue,
.container.bg-color-easternblue,
.card-title.bg-color-easternblue,
p.bg-color-easternblue {
  background-color: #199496;
}
section.bg-color-easternblue + .card-content li:before,
div.bg-color-easternblue + .card-content li:before,
span.bg-color-easternblue + .card-content li:before,
.container.bg-color-easternblue + .card-content li:before,
.card-title.bg-color-easternblue + .card-content li:before,
p.bg-color-easternblue + .card-content li:before {
  background-color: #199496;
}
section.bg-color-brandgreen,
div.bg-color-brandgreen,
span.bg-color-brandgreen,
.container.bg-color-brandgreen,
.card-title.bg-color-brandgreen,
p.bg-color-brandgreen {
  background-color: #8bc040;
}
section.bg-color-brandgreen + .card-content li:before,
div.bg-color-brandgreen + .card-content li:before,
span.bg-color-brandgreen + .card-content li:before,
.container.bg-color-brandgreen + .card-content li:before,
.card-title.bg-color-brandgreen + .card-content li:before,
p.bg-color-brandgreen + .card-content li:before {
  background-color: #8bc040;
}

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

.pt-xxl {
  padding-top: 80px !important;
}
.pt-xxxl {
  padding-top: 120px !important;
}

.pb-xxl {
  padding-bottom: 80px !important;
}
.pb-xxxl {
  padding-bottom: 120px !important;
}

.block-quote blockquote {
  margin: 0 0 15px;
}
.block-quote blockquote > * {
  font-weight: 400;
  margin-bottom: 0;
}
.block-quote blockquote + p {
  font-weight: 300;
}
.block-quote-green p,
.block-quote-green blockquote > * {
  color: #0c7e74;
}
.block-quote-green + .block-quote-blue {
  margin-top: 15px;
}
.block-quote-blue p,
.block-quote-blue blockquote > * {
  color: #096d9a;
}

ul, ol {
  margin: 0 0 0.8rem 0;
  padding-inline-start: 2rem;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1rem;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 0.8rem 2rem;
}

/* General-list is for the basic cpt lists we create */
.general-list ul {
  list-style-type: none;
  margin: 10px 0 0;
  padding: 0;
}

#content ul li {
  padding-bottom: 12px;
}

ul.big-checkmarks li {
  position: relative;
  padding-left: 33px;
  list-style-type: none;
}
ul.big-checkmarks li::before {
  content: "";
  position: absolute;
  top: 26%;
  left: 0;
  transform: translate(0, -50%);
  background-image: url("/wp-content/uploads/2020/03/checkmark.png");
  background-position: center;
  background-size: cover;
  width: 30px;
  height: 30px;
}

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

@media (min-width: 992px) {
  .fb-33 {
    flex-basis: 33%;
    max-width: 33%;
  }
  .fb-40 {
    flex-basis: 40%;
    max-width: 40%;
  }
  .fb-45 {
    flex-basis: 45%;
    max-width: 45%;
  }
  .fb-50 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .fb-55 {
    flex-basis: 55%;
    max-width: 55%;
  }
  .fb-60 {
    flex-basis: 60%;
    max-width: 60%;
  }
  .fb-66 {
    flex-basis: 66%;
    max-width: 66%;
  }
}
.v-align-top {
  justify-content: flex-start;
}
.v-align-center {
  justify-content: center;
}
.v-align-bottom {
  justify-content: flex-end;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.base-buttons, .site-header .navbar .navbar-nav > li.request-demo a, .btn, input[type=reset], .button,
button,
input[type=button],
input[type=submit] {
  display: inline-block;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  color: #fff;
  background-color: #2083B6;
  border-color: #2083B6;
  padding: 0.59rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1;
  border-radius: 0;
  transition: all 0.3s;
}
.base-buttons:hover, .site-header .navbar .navbar-nav > li.request-demo a:hover, .btn:hover, input[type=reset]:hover, .button:hover,
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  color: #fff;
  background-color: #2083B6;
  border-color: #18648b;
}
.base-buttons:focus, .site-header .navbar .navbar-nav > li.request-demo a:focus, .btn:focus, input[type=reset]:focus, .button:focus,
button:focus,
input[type=button]:focus,
input[type=submit]:focus, .base-buttons.focus, .site-header .navbar .navbar-nav > li.request-demo a.focus, .focus.btn, input.focus[type=reset], .focus.button,
button.focus,
input.focus[type=button],
input.focus[type=submit] {
  color: #fff;
  background-color: #2083B6;
  border-color: #18648b;
  box-shadow: 0 0 0 0.2rem rgba(65, 150, 193, 0.5);
}
.base-buttons.disabled, .site-header .navbar .navbar-nav > li.request-demo a.disabled, .disabled.btn, input.disabled[type=reset], .disabled.button,
button.disabled,
input.disabled[type=button],
input.disabled[type=submit], .base-buttons:disabled, .site-header .navbar .navbar-nav > li.request-demo a:disabled, .btn:disabled, input[type=reset]:disabled, .button:disabled,
button:disabled,
input[type=button]:disabled,
input[type=submit]:disabled {
  color: #fff;
  background-color: #2083B6;
  border-color: #2083B6;
}
.base-buttons:not(:disabled):not(.disabled):active, .site-header .navbar .navbar-nav > li.request-demo a:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled):active, input[type=reset]:not(:disabled):not(.disabled):active, .button:not(:disabled):not(.disabled):active,
button:not(:disabled):not(.disabled):active,
input[type=button]:not(:disabled):not(.disabled):active,
input[type=submit]:not(:disabled):not(.disabled):active, .base-buttons:not(:disabled):not(.disabled).active, .site-header .navbar .navbar-nav > li.request-demo a:not(:disabled):not(.disabled).active, .btn:not(:disabled):not(.disabled).active, input[type=reset]:not(:disabled):not(.disabled).active, .button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled).active,
input[type=button]:not(:disabled):not(.disabled).active,
input[type=submit]:not(:disabled):not(.disabled).active, .show > .base-buttons.dropdown-toggle, .site-header .navbar .navbar-nav > li.request-demo .show > a.dropdown-toggle, .show > .dropdown-toggle.btn, .show > input.dropdown-toggle[type=reset], .show > .dropdown-toggle.button,
.show > button.dropdown-toggle,
.show > input.dropdown-toggle[type=button],
.show > input.dropdown-toggle[type=submit] {
  color: #fff;
  background-color: #18648b;
  border-color: #165c80;
}
.base-buttons:not(:disabled):not(.disabled):active:focus, .site-header .navbar .navbar-nav > li.request-demo a:not(:disabled):not(.disabled):active:focus, .btn:not(:disabled):not(.disabled):active:focus, input[type=reset]:not(:disabled):not(.disabled):active:focus, .button:not(:disabled):not(.disabled):active:focus,
button:not(:disabled):not(.disabled):active:focus,
input[type=button]:not(:disabled):not(.disabled):active:focus,
input[type=submit]:not(:disabled):not(.disabled):active:focus, .base-buttons:not(:disabled):not(.disabled).active:focus, .site-header .navbar .navbar-nav > li.request-demo a:not(:disabled):not(.disabled).active:focus, .btn:not(:disabled):not(.disabled).active:focus, input[type=reset]:not(:disabled):not(.disabled).active:focus, .button:not(:disabled):not(.disabled).active:focus,
button:not(:disabled):not(.disabled).active:focus,
input[type=button]:not(:disabled):not(.disabled).active:focus,
input[type=submit]:not(:disabled):not(.disabled).active:focus, .show > .base-buttons.dropdown-toggle:focus, .site-header .navbar .navbar-nav > li.request-demo .show > a.dropdown-toggle:focus, .show > .dropdown-toggle.btn:focus, .show > input.dropdown-toggle[type=reset]:focus, .show > .dropdown-toggle.button:focus,
.show > button.dropdown-toggle:focus,
.show > input.dropdown-toggle[type=button]:focus,
.show > input.dropdown-toggle[type=submit]:focus {
  box-shadow: 0 0 0 0.2rem rgba(65, 150, 193, 0.5);
}
@media (min-width: 768px) {
  .base-buttons, .site-header .navbar .navbar-nav > li.request-demo a, .btn, input[type=reset], .button,
  button,
  input[type=button],
  input[type=submit] {
    padding: 0.59rem 0.75rem;
    font-size: 1rem;
    line-height: 1;
    border-radius: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .base-buttons, .site-header .navbar .navbar-nav > li.request-demo a, .btn, input[type=reset], .button,
  button,
  input[type=button],
  input[type=submit] {
    transition: none;
  }
}
.base-buttons:hover, .site-header .navbar .navbar-nav > li.request-demo a:hover, .btn:hover, input[type=reset]:hover, .button:hover,
button:hover,
input[type=button]:hover,
input[type=submit]:hover, .base-buttons:focus, .site-header .navbar .navbar-nav > li.request-demo a:focus, .btn:focus, input[type=reset]:focus, .button:focus,
button:focus,
input[type=button]:focus,
input[type=submit]:focus {
  text-decoration: none;
}
.base-buttons:focus, .site-header .navbar .navbar-nav > li.request-demo a:focus, .btn:focus, input[type=reset]:focus, .button:focus,
button:focus,
input[type=button]:focus,
input[type=submit]:focus, .base-buttons.focus, .site-header .navbar .navbar-nav > li.request-demo a.focus, .focus.btn, input.focus[type=reset], .focus.button,
button.focus,
input.focus[type=button],
input.focus[type=submit] {
  outline: 0;
  box-shadow: none;
}
.base-buttons.disabled, .site-header .navbar .navbar-nav > li.request-demo a.disabled, .disabled.btn, input.disabled[type=reset], .disabled.button,
button.disabled,
input.disabled[type=button],
input.disabled[type=submit], .base-buttons:disabled, .site-header .navbar .navbar-nav > li.request-demo a:disabled, .btn:disabled, input[type=reset]:disabled, .button:disabled,
button:disabled,
input[type=button]:disabled,
input[type=submit]:disabled {
  opacity: 0.8%;
}
.base-buttons:not(:disabled):not(.disabled), .site-header .navbar .navbar-nav > li.request-demo a:not(:disabled):not(.disabled), .btn:not(:disabled):not(.disabled), input[type=reset]:not(:disabled):not(.disabled), .button:not(:disabled):not(.disabled),
button:not(:disabled):not(.disabled),
input[type=button]:not(:disabled):not(.disabled),
input[type=submit]:not(:disabled):not(.disabled) {
  cursor: pointer;
}
input[type=reset] {
  color: #fff;
  background-color: red;
  border-color: red;
}
input[type=reset]:hover {
  color: #fff;
  background-color: #d90000;
  border-color: #cc0000;
}
input[type=reset]:focus, input[type=reset].focus {
  color: #fff;
  background-color: #d90000;
  border-color: #cc0000;
  box-shadow: 0 0 0 0.2rem rgba(255, 38, 38, 0.5);
}
input[type=reset].disabled, input[type=reset]:disabled {
  color: #fff;
  background-color: red;
  border-color: red;
}
input[type=reset]:not(:disabled):not(.disabled):active, input[type=reset]:not(:disabled):not(.disabled).active, .show > input[type=reset].dropdown-toggle {
  color: #fff;
  background-color: #cc0000;
  border-color: #bf0000;
}
input[type=reset]:not(:disabled):not(.disabled):active:focus, input[type=reset]:not(:disabled):not(.disabled).active:focus, .show > input[type=reset].dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 38, 38, 0.5);
}

.transparent-button {
  color: #2083B6;
  background-color: transparent;
  text-decoration: none;
}
.transparent-button::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 16px solid #2083B6;
  border-right: 8px solid transparent;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
@media (max-width: 991.98px) {
  .transparent-button::before {
    left: 200px;
  }
}
@media (max-width: 767.98px) {
  .transparent-button::before {
    left: 30px;
  }
}
.transparent-button:hover {
  background-color: transparent;
  opacity: 0.8;
}

a.medium-button {
  padding: 12px 26px;
}
a.large-button {
  padding: 16px 30px;
}

.medium-button {
  padding: 12px 26px;
}

.large-button {
  padding: 16px 30px;
}

[role=button] {
  cursor: pointer;
}

.btn {
  border-radius: 0;
  font-weight: 400;
  text-transform: uppercase;
}
.btn.btn-success {
  background: #81b10d;
  border-color: #81b10d;
}
.btn.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: #81b10d;
}

.brand-button {
  display: inline-block;
  background: transparent;
  text-transform: uppercase;
  position: relative;
  color: #81b10d;
  padding-right: 30px;
  transition: color 0.3s;
}
.brand-button:hover, .brand-button:focus {
  text-decoration: none;
  color: #184784;
}
.brand-button:hover:before, .brand-button:hover:after, .brand-button:focus:before, .brand-button:focus:after {
  background: #184784;
}
.brand-button:before, .brand-button:after {
  content: "";
  background: #81b10d;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: background-color 0.3s;
}
.brand-button:before {
  right: 0;
  width: 25px;
  height: 2px;
}
.brand-button:after {
  right: -1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.white-button {
  background-color: #fff;
  border-color: #fff;
  color: #2083B6;
}
.white-button:hover, .white-button:focus {
  background-color: #ebebeb;
  border-color: #ebebeb;
}

.core-brand-color-button {
  background-color: #81b10d;
  border-color: #81b10d;
  color: #2083B6;
}
.core-brand-color-button:hover, .core-brand-color-button:focus {
  background-color: #658b0a;
  border-color: #658b0a;
}

.secondary-brand-color-button {
  background-color: #2083B6;
  border-color: #2083B6;
  color: #2083B6;
}
.secondary-brand-color-button:hover, .secondary-brand-color-button:focus {
  background-color: #1a6a93;
  border-color: #1a6a93;
}

.black-button {
  background-color: #000;
  border-color: #000;
  color: #2083B6;
}
.black-button:hover, .black-button:focus {
  background-color: black;
  border-color: black;
}

.lightblue-button {
  background-color: #36aef3;
  border-color: #36aef3;
  color: #2083B6;
}
.lightblue-button:hover, .lightblue-button:focus {
  background-color: #0f9ef1;
  border-color: #0f9ef1;
}

.red-button {
  background-color: #FD5D4B;
  border-color: #FD5D4B;
  color: #2083B6;
}
.red-button:hover, .red-button:focus {
  background-color: #fd3923;
  border-color: #fd3923;
}

.navyblue-button {
  background-color: #184784;
  border-color: #184784;
  color: #2083B6;
}
.navyblue-button:hover, .navyblue-button:focus {
  background-color: #123461;
  border-color: #123461;
}

.grey-button {
  background-color: #686868;
  border-color: #686868;
  color: #2083B6;
}
.grey-button:hover, .grey-button:focus {
  background-color: #545454;
  border-color: #545454;
}

.darkgrey-button {
  background-color: #4a4a4a;
  border-color: #4a4a4a;
  color: #2083B6;
}
.darkgrey-button:hover, .darkgrey-button:focus {
  background-color: #363636;
  border-color: #363636;
}

.lightgrey-button {
  background-color: #f2f2f1;
  border-color: #f2f2f1;
  color: #2083B6;
}
.lightgrey-button:hover, .lightgrey-button:focus {
  background-color: #dededc;
  border-color: #dededc;
}

.headinggrey-button {
  background-color: #818286;
  border-color: #818286;
  color: #2083B6;
}
.headinggrey-button:hover, .headinggrey-button:focus {
  background-color: #6d6e71;
  border-color: #6d6e71;
}

.secondary-brand-color-button {
  color: #fff;
}

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

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

.hbspt-form {
  padding: 10px;
  border: 1px solid #f2f2f1;
}

/*--------------------------------------------------------------
# layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## header
--------------------------------------------------------------*/
header.site-header {
  background-color: #fff;
  position: relative;
  z-index: 99;
}
header.site-header a.navbar-brand .logo-container {
  width: 250px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
}
header.site-header nav#site-navigation.toggled li {
  padding-left: 16px;
}
@media (max-width: 1199.98px) {
  header.site-header nav#site-navigation.toggled li {
    padding-left: 0;
  }
}
header.site-header nav#site-navigation.toggled li a {
  padding: 10px 0;
  font-size: 20px;
  line-height: 3;
}
@media (max-width: 767.98px) {
  header.site-header nav#site-navigation.toggled li a {
    font-size: 1rem;
    line-height: 1.2;
  }
}
header.site-header nav#site-navigation .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
header.site-header nav#site-navigation #navbarCollapse .menu-main-menu-container ul#main-menu > li {
  transition-duration: 1s;
}
header.site-header nav#site-navigation #navbarCollapse .menu-main-menu-container ul#main-menu > li > a {
  font-size: 16px;
  font-weight: 400;
  padding: 15px 15px;
}
header.site-header nav#site-navigation #navbarCollapse .menu-main-menu-container ul#main-menu > li.header-cta a {
  padding: 10px 12px;
}

body.scrolled header.site-header {
  box-shadow: 0px 0px 5px 0px rgb(234, 234, 234);
  position: fixed;
  z-index: 1030;
  transition: height 0.5s, line-height 0.5s, top 0.5s;
  border: none;
  background: rgb(255, 255, 255);
  top: 0;
  left: 0;
  right: 0;
}

@media screen and (min-width: 992px) {
  header.site-header .site-branding a.navbar-brand {
    padding: 15px 15px;
  }
  header.site-header nav#site-navigation ul#main-menu > li.header-cta {
    margin-left: 75px;
  }
  header.site-header nav#site-navigation ul#main-menu > li.header-cta a {
    padding: 10px 24px;
  }
}
/*--------------------------------------------------------------
/*--------------------------------------------------------------
## event header with countdown
--------------------------------------------------------------*/
.top-bar-section {
  background-color: #104583;
  padding: 5px 0;
}
@media (min-width: 768px) {
  .top-bar-section {
    padding: 15px 0;
  }
}
.top-bar-section.event-broadcasting {
  transition: top 0.3s ease 0s;
  top: 0;
}
.top-bar-section.event-broadcasting .top-bar-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .top-bar-section.event-broadcasting .top-bar-content {
    flex-direction: row;
  }
}
.top-bar-section.event-broadcasting .top-bar-content .event-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
  margin-right: 12px;
}
@media (min-width: 992px) {
  .top-bar-section.event-broadcasting .top-bar-content .event-title {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .top-bar-section.event-broadcasting .top-bar-content .event-title {
    font-size: 18px;
  }
}
.top-bar-section.event-broadcasting .top-bar-content #event-countdown span .count {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width: 992px) {
  .top-bar-section.event-broadcasting .top-bar-content #event-countdown span .count {
    font-size: 34px;
  }
}
@media (min-width: 768px) {
  .top-bar-section.event-broadcasting .top-bar-content #event-countdown span .count {
    font-size: 24px;
  }
}
.top-bar-section.event-broadcasting .top-bar-content #event-countdown span .label {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
  margin-right: 8px;
}
@media (min-width: 992px) {
  .top-bar-section.event-broadcasting .top-bar-content #event-countdown span .label {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .top-bar-section.event-broadcasting .top-bar-content #event-countdown span .label {
    font-size: 20px;
  }
}
.top-bar-section.event-broadcasting .top-bar-content .happening-now-wrapper .title {
  flex: 1 0 auto;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  background-color: #ed1e24;
  border: 1px solid #ed1e24;
  padding: 4px 15px;
  margin-right: 15px;
  transition: all 0.3s;
}
.top-bar-section.event-broadcasting .top-bar-content .happening-now-wrapper .title a {
  color: #fff;
  text-decoration: none;
}
.top-bar-section.event-broadcasting .top-bar-content .happening-now-wrapper .title:hover {
  border-color: #fff;
}
.top-bar-section.event-broadcasting .top-bar-content .happening-now-wrapper .session-title {
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
@media (min-width: 576px) {
  .top-bar-section.event-broadcasting .top-bar-content .happening-now-wrapper .session-title {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .top-bar-section.event-broadcasting .top-bar-content .happening-now-wrapper .session-title {
    font-size: 20px;
  }
}

.event-notification-bar {
  position: relative;
  background-color: #81b10d;
  color: #fff;
  padding: 30px 0;
  transition: top 0.3s ease 0s;
  top: 0;
}
.event-notification-bar.shadow-bar {
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.event-notification-bar .close-notification-bar {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  color: #696969;
}
.event-notification-bar .event-logo-container {
  max-width: 100px;
  margin-bottom: 10px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .event-notification-bar .event-logo-container {
    max-width: 150px;
    margin-bottom: 15px;
  }
}
.event-notification-bar .event-logo-container .event-logo {
  max-width: 100%;
  height: auto;
}
.event-notification-bar .event-description * {
  color: #fff;
  text-align: center;
}
.event-notification-bar .event-description p {
  margin-bottom: 10px;
}
.event-notification-bar .event-description a {
  color: #fff;
  text-decoration: underline;
}
.event-notification-bar .buttons-block .btn {
  font-weight: 300;
  border: 1px solid #2083B6;
  margin: 0 10px;
}
.event-notification-bar .buttons-block .btn.event-schedule-link {
  background-color: #259496;
  border-color: #259496;
}
.event-notification-bar .buttons-block .btn:hover {
  border-color: #fff;
}

.event-notification-top-bar {
  background-color: #0c6d5d;
  padding: 30px 0;
  box-shadow: 0 -2px 6px 0 rgba(0, 0, 0, 0.5) inset;
}
.event-notification-top-bar .single-banner:first-child {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .event-notification-top-bar .single-banner:first-child {
    margin-bottom: 0;
  }
}
.event-notification-top-bar .single-banner a:focus {
  outline: none;
}

.event-menu-wrapper {
  background: #00496c;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to right, #00496c 0%, #048a93 49%, #97be3d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00496c", endColorstr="#97be3d", GradientType=1);
  padding: 30px 30px;
  position: relative;
  height: 100px;
  transition: height 0.3s linear;
}
.event-menu-wrapper.show-menu {
  height: auto;
}
.event-menu-wrapper.show-menu .event-menu-in .event-menu .event-menu-list {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 992px) {
  .event-menu-wrapper {
    padding: 30px 70px;
  }
}
.event-menu-wrapper .event-menu-in .logo-wrapper {
  flex: 1 0 180px;
  max-width: 180px;
  margin: -4px auto auto 0;
}
.event-menu-wrapper .event-menu-in .logo-wrapper .logo {
  max-width: 180px;
}
.event-menu-wrapper .event-menu-in .event-menu {
  margin: 0 0 auto auto;
}
@media (min-width: 992px) {
  .event-menu-wrapper .event-menu-in .event-menu {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .event-menu-wrapper .event-menu-in .event-menu .event-menu-toggler {
    display: none;
  }
}
.event-menu-wrapper .event-menu-in .event-menu .event-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 70px;
  left: 0;
  width: 100%;
  transition: opacity 0.3s linear;
}
@media (min-width: 992px) {
  .event-menu-wrapper .event-menu-in .event-menu .event-menu-list {
    position: relative;
    visibility: visible;
    opacity: 1;
    top: auto;
    left: auto;
    width: auto;
  }
}
.event-menu-wrapper .event-menu-in .event-menu .event-menu-list .menu-item {
  margin: 0 auto;
}
@media (min-width: 992px) {
  .event-menu-wrapper .event-menu-in .event-menu .event-menu-list .menu-item {
    margin: 0;
  }
}
.event-menu-wrapper .event-menu-in .event-menu .event-menu-list .menu-item:first-child .menu-item-link {
  background-color: #5ea746;
  border: 1px solid #5ea746;
}
.event-menu-wrapper .event-menu-in .event-menu .event-menu-list .menu-item:nth-child(2) .menu-item-link {
  background-color: #006e96;
  border: 1px solid #006e96;
}
.event-menu-wrapper .event-menu-in .event-menu .event-menu-list .menu-item:last-child .menu-item-link {
  background-color: #104583;
  border: 1px solid #104583;
}
.event-menu-wrapper .event-menu-in .event-menu .event-menu-list .menu-item.demo-link-wrapper {
  display: block;
}
@media (min-width: 992px) {
  .event-menu-wrapper .event-menu-in .event-menu .event-menu-list .menu-item.demo-link-wrapper {
    display: none;
  }
}
.event-menu-wrapper .event-menu-in .event-menu .event-menu-list .menu-item .menu-item-link {
  min-width: 300px;
  font-weight: 300;
  margin: 10px 15px;
}
@media (min-width: 992px) {
  .event-menu-wrapper .event-menu-in .event-menu .event-menu-list .menu-item .menu-item-link {
    min-width: 1px;
    margin: 0 15px;
  }
}
@media (min-width: 1200px) {
  .event-menu-wrapper .event-menu-in .event-menu .event-menu-list .menu-item .menu-item-link {
    min-width: 220px;
  }
}
.event-menu-wrapper .event-menu-in .event-menu .event-menu-list .menu-item .menu-item-link:hover {
  border-color: #fff;
}
.event-menu-wrapper .event-menu-in .demo-link-wrapper {
  display: none;
}
@media (min-width: 992px) {
  .event-menu-wrapper .event-menu-in .demo-link-wrapper {
    display: flex;
    width: 72px;
    height: 72px;
    text-align: center;
    background-color: #00698b;
    border: 1px solid #fff;
    border-radius: 36px;
    margin: -15px 0 auto auto;
  }
}
.event-menu-wrapper .event-menu-in .demo-link-wrapper .demo-link {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  margin: auto;
}

/*--------------------------------------------------------------
## hero
--------------------------------------------------------------*/
.global-hero {
  background-position: top center;
  background-size: cover;
  margin-bottom: 20px;
}

.hero .hero-wrapper {
  padding: 60px;
}
.hero #home-hero-wrapper {
  text-align: center;
}
.hero #home-hero-wrapper .home-hero-right {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .hero .hero-content-wrapper {
    max-width: 65%;
    margin: 0 auto;
  }
}
.hero .section-cta-wrapper {
  margin-top: 40px;
}

/* Alert Announcemnt Hero Compenents */
#announcement-hero {
  margin-bottom: 0;
}
#announcement-hero #alert-hero-wrapper {
  padding: 49px 0 !important;
  margin: 0;
}
@media (min-width: 1616px) {
  #announcement-hero #alert-hero-wrapper {
    padding: 75px 0 !important;
  }
}
@media (min-width: 1900px) {
  #announcement-hero #alert-hero-wrapper {
    padding: 125px 0 !important;
  }
}
@media (min-width: 2001px) {
  #announcement-hero #alert-hero-wrapper {
    padding: 175px 0 !important;
  }
}
#announcement-hero #alert-hero-wrapper .container {
  max-width: 100%;
  margin: 0;
}
#announcement-hero #alert-hero-wrapper .hero-content-wrapper h1.hero-title {
  color: #184784;
  text-shadow: none;
}
@media (max-width: 1200px) {
  #announcement-hero #alert-hero-wrapper::before {
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    z-index: 0;
  }
}

.global-hero.alert-announcement-enabled {
  background-position: center 0px !important;
  margin-top: 0 !important;
}

@media (min-width: 768px) {
  /* Larger than 768 */
  .hero .hero-wrapper {
    padding: 60px 0;
  }
  .hero #home-hero-wrapper {
    padding-top: 80px;
    text-align: left;
  }
  .hero #home-hero-wrapper .home-hero-left {
    padding-top: 0;
  }
  .hero #home-hero-wrapper .home-hero-right {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .hero .hero-wrapper {
    padding: 60px 0;
  }
  .hero #home-hero-wrapper {
    padding-top: 130px;
    text-align: left;
  }
  .hero #home-hero-wrapper .home-hero-left {
    padding-top: 30px;
  }
  .hero #home-hero-wrapper .home-hero-right {
    padding-top: 0;
  }
}
@media (min-width: 1200px) {
  .hero #home-hero-wrapper .home-hero-left {
    padding-top: 0;
  }
  .hero #home-hero-wrapper h1.hero-title {
    margin-bottom: 20px;
  }
}
.event-broadcasting-hero {
  background: #00496c;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to right, #00496c 0%, #048a93 49%, #97be3d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00496c", endColorstr="#97be3d", GradientType=1);
  padding: 80px 0;
}
.event-broadcasting-hero .logos > div {
  padding: 0 30px;
}

.bms-subtitle {
  padding: 80px 0;
  margin: 80px 0 120px 0;
  z-index: 10;
  max-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bms-subtitle:before {
  content: "";
  position: absolute;
  z-index: 0;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00496c;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to right, #00496c 0%, #048a93 49%, #97be3d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00496c", endColorstr="#97be3d", GradientType=1);
  margin: 0 calc(50% - 50vw);
}
@media (max-width: 1200px) {
  .bms-subtitle {
    flex-direction: column;
    max-height: 100%;
    margin: 40px 0 20px 0;
    padding: 40px 0;
  }
}
.bms-subtitle .bms-subtitle-image {
  height: 320px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .bms-subtitle .bms-subtitle-image {
    height: auto;
    margin-top: 40px;
  }
}
.bms-subtitle h2 {
  line-height: 1.75;
  max-width: 540px;
  margin: 0 40px 0 0;
  padding: 0 !important;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .bms-subtitle h2 {
    padding: 0 40px !important;
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .bms-subtitle h2 {
    font-size: 1.375rem;
  }
}
.bms-subtitle p {
  margin: 0;
}

.hero-number-icon {
  text-align: left !important;
  margin-bottom: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}
.hero-number-icon h1 {
  margin-bottom: 0 !important;
}
.hero-number-icon:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  background-size: 80px 80px;
  flex: 0 0 80px;
  z-index: 2;
}
.hero-number-icon h1 {
  margin-top: 0;
}

/*--------------------------------------------------------------
## footer
--------------------------------------------------------------*/
footer.entry-footer .cat-links,
footer.entry-footer .comments-link {
  padding-right: 10px;
}

footer.site-footer {
  background: #fff;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #f7f5f2;
}
footer.site-footer .site-info {
  padding-bottom: 30px;
}
footer.site-footer .navbar-footer {
  padding: 0;
}
footer.site-footer .menu-footer-menu-container {
  line-height: 1;
}
footer.site-footer ul#menu-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 767.98px) {
  footer.site-footer ul#menu-footer-menu {
    justify-content: space-evenly;
  }
}
footer.site-footer ul#menu-footer-menu > li > a {
  padding: 0 15px;
  font-weight: 300;
  color: #4d4d4d;
  background: transparent;
  transition: all 0.3s;
  line-height: 20px;
  position: relative;
  display: block;
}
@media (max-width: 767.98px) {
  footer.site-footer ul#menu-footer-menu > li > a {
    line-height: 1.6;
  }
}
footer.site-footer ul#menu-footer-menu > li > a:hover {
  background: transparent;
  text-decoration: underline;
}
footer.site-footer .social {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer.site-footer .social li a {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  background: #2083B6;
  padding: 6px;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  margin-right: 3px;
  transition: all 0.3s;
}
footer.site-footer .social li a:hover {
  background: #2083B6;
}
footer.site-footer .social li:last-child a {
  margin-right: 0;
}
footer.site-footer .social + .copyright {
  margin-top: 15px;
}
footer.site-footer .copyright {
  font-weight: 300;
  font-size: 12px;
}
footer.site-footer .copyright span + span {
  display: block;
}
@media (min-width: 576px) {
  footer.site-footer .copyright span + span {
    display: inline-block;
    position: relative;
    padding-left: 6px;
    margin-left: 6px;
  }
  footer.site-footer .copyright span + span:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -3px;
    transform: translate(0, -50%);
    height: 4px;
    width: 4px;
    border-radius: 2px;
    background-color: #4d4d4d;
  }
}

.iacp-news-feed-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #104583;
  color: #fff;
  font-style: italic;
  padding: 15px;
}
@media (min-width: 768px) {
  .iacp-news-feed-bar {
    padding: 15px 60px;
  }
}

/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 23, 2019, 3:39:08 PM
    Author     : tim
*/
.w-33 {
  width: 33% !important;
}

.w-40 {
  width: 40% !important;
}

.w-45 {
  width: 45% !important;
}

.w-66 {
  width: 66% !important;
}

.w-85 {
  width: 85% !important;
}

.alignleft {
  float: left;
}

.tlir-image-col.w-25,
.tril-image-col.w-25 {
  flex: 0 0 75% !important;
}
@media (max-width: 992px) {
  .tlir-image-col.w-25,
  .tril-image-col.w-25 {
    width: 100% !important;
  }
}
.tlir-image-col.w-25 img,
.tril-image-col.w-25 img {
  width: 100% !important;
}
.tlir-image-col.w-33,
.tril-image-col.w-33 {
  flex: 0 0 66% !important;
}
@media (max-width: 992px) {
  .tlir-image-col.w-33,
  .tril-image-col.w-33 {
    width: 100% !important;
  }
}
.tlir-image-col.w-33 img,
.tril-image-col.w-33 img {
  width: 100% !important;
}
.tlir-image-col.w-40,
.tril-image-col.w-40 {
  flex: 0 0 60% !important;
}
@media (max-width: 992px) {
  .tlir-image-col.w-40,
  .tril-image-col.w-40 {
    width: 100% !important;
  }
}
.tlir-image-col.w-40 img,
.tril-image-col.w-40 img {
  width: 100% !important;
}
.tlir-image-col.w-50,
.tril-image-col.w-50 {
  flex: 0 0 50% !important;
}
@media (max-width: 992px) {
  .tlir-image-col.w-50,
  .tril-image-col.w-50 {
    width: 100% !important;
  }
}
.tlir-image-col.w-50 img,
.tril-image-col.w-50 img {
  width: 100% !important;
}
.tlir-image-col.w-60,
.tril-image-col.w-60 {
  flex: 0 0 40% !important;
}
@media (max-width: 992px) {
  .tlir-image-col.w-60,
  .tril-image-col.w-60 {
    width: 100% !important;
  }
}
.tlir-image-col.w-60 img,
.tril-image-col.w-60 img {
  width: 100% !important;
}
.tlir-image-col.w-66,
.tril-image-col.w-66 {
  flex: 0 0 33% !important;
}
@media (max-width: 992px) {
  .tlir-image-col.w-66,
  .tril-image-col.w-66 {
    width: 100% !important;
  }
}
.tlir-image-col.w-66 img,
.tril-image-col.w-66 img {
  width: 100% !important;
}
.tlir-image-col.w-75,
.tril-image-col.w-75 {
  flex: 0 0 25% !important;
}
@media (max-width: 992px) {
  .tlir-image-col.w-75,
  .tril-image-col.w-75 {
    width: 100% !important;
  }
}
.tlir-image-col.w-75 img,
.tril-image-col.w-75 img {
  width: 100% !important;
}

.main-wrapper {
  max-width: 1442px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 82px;
  padding-right: 16px;
  padding-bottom: 82px;
  padding-left: 16px;
}
@media (max-width: 1024px) {
  .main-wrapper {
    max-width: 622px;
  }
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #09547f;
}
a:visited {
  /* color: $color__link-visited; */
}
a:hover, a:focus, a:active {
  color: #171a81;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

a.cta-button, li.cta-button a {
  padding: 10px 14px;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  vertical-align: middle;
  line-height: 20px;
  border: 1px solid #fff;
}
a.cta-button.cta-button-normal, li.cta-button a.cta-button-normal {
  font-size: 1.25rem;
}
a.cta-button.cta-button-big, li.cta-button a.cta-button-big {
  font-size: 2.5rem;
}
@media (max-width: 991.98px) {
  a.cta-button.cta-button-big, li.cta-button a.cta-button-big {
    font-size: 1.25rem;
  }
}
a.cta-button:hover, li.cta-button a:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
/* Small menu. */
/*@media screen and (min-width: 37.5em) {*/
@media screen and (min-width: 992px) {
  nav#site-navigation {
    margin-top: 0;
  }
}
@media (max-width: 1199.98px) {
  body.scrolled .site-header .navbar .navbar-collapse {
    margin-top: 0;
  }
}

body:not(.scrolled) #page .event-notification-bar:not([style*="display: none"]) + #top-navigation + #masthead #site-navigation.toggled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
body:not(.scrolled) #page .event-notification-bar:not([style*="display: none"]) + #top-navigation + #masthead #site-navigation.toggled .navbar-collapse {
  margin-top: 0;
}

.site-header .navbar {
  padding: 0;
}
@media (max-width: 1199.98px) {
  .site-header .navbar .navbar-collapse {
    position: fixed;
    display: block;
    margin-top: 35px;
    padding-top: 0;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100% !important;
    z-index: 999;
    -khtml-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    transition: all 0.3s ease-in-out;
    background-color: rgb(255, 255, 255);
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .site-header .navbar .navbar-collapse {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .site-header .navbar.toggled .navbar-collapse {
    -khtml-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.site-header .navbar .navbar-nav {
  position: relative;
  align-items: center;
}
@media (max-width: 992px) {
  .site-header .navbar .navbar-nav .menu-item-has-children .menu-item-has-children > ul {
    display: block;
  }
}
.site-header .navbar .navbar-nav .menu-item-has-children .menu-item-has-children > a:after {
  background-image: url(../images/dropdown-arrow.png);
  background-size: 23px 20px;
  content: "";
  position: relative;
  top: 3px;
  left: 7px;
  width: 23px;
  height: 20px;
  display: inline-block;
}
@media (max-width: 992px) {
  .site-header .navbar .navbar-nav .menu-item-has-children .menu-item-has-children > a:after {
    background: transparent;
  }
}
.site-header .navbar .navbar-nav > li {
  z-index: 2;
  transition: all 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .site-header .navbar .navbar-nav > li {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .site-header .navbar .navbar-nav > li {
    text-align: left;
    width: 100%;
  }
}
.site-header .navbar .navbar-nav > li.request-demo {
  margin-left: 8px;
}
@media (max-width: 1199.98px) {
  .site-header .navbar .navbar-nav > li.request-demo {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .site-header .navbar .navbar-nav > li.request-demo {
    padding: 15px !important;
    margin: 0 auto;
  }
}
.site-header .navbar .navbar-nav > li.request-demo a {
  display: block;
}
.site-header .navbar .navbar-nav > li.request-demo a:hover {
  border-color: #2083B6;
  background: transparent;
  color: #2083B6;
}
.site-header .navbar .navbar-nav > li.request-demo a:focus {
  background: #2083B6;
}
.site-header .navbar .navbar-nav > li.disabled > a {
  color: #6d6f71 !important;
  font-size: 18px;
  vertical-align: middle;
  background-color: transparent;
}
.site-header .navbar .navbar-nav > li.disabled > a:focus, .site-header .navbar .navbar-nav > li.disabled > a:hover {
  color: #777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.site-header .navbar .navbar-nav > li > a {
  position: relative;
  color: #6d6f71;
  line-height: 20px;
  display: block;
  padding: 35px 15px;
}
@media (max-width: 1199.98px) {
  .site-header .navbar .navbar-nav > li > a {
    font-size: 0.8rem;
  }
}
@media (max-width: 991.98px) {
  .site-header .navbar .navbar-nav > li > a {
    padding: 22px 10px;
  }
}
@media (max-width: 1199.98px) {
  .site-header .navbar .navbar-nav > li > a {
    font-size: 1rem;
    padding: 15px 0;
  }
}
.site-header .navbar .navbar-nav > li > a:hover, .site-header .navbar .navbar-nav > li > a:focus {
  text-decoration: none;
  background-color: transparent;
}
.site-header .navbar .navbar-nav > li > a.dropdown-toggle::after {
  display: none;
}
.site-header .navbar .navbar-nav > li > a .caret {
  display: none;
}
.site-header .navbar .navbar-nav > li.menu-item-has-children > .dropdown-menu > li.menu-item > a {
  font-weight: 400;
}
.site-header .navbar .navbar-nav > li > .dropdown-menu {
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 8px;
  -moz-border-radius-bottomleft: 8px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.75);
}
@media (max-width: 1199.98px) {
  .site-header .navbar .navbar-nav > li > .dropdown-menu {
    position: relative;
    padding: 15px 5px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 0 30px -12px rgba(0, 0, 0, 0.75);
    text-align: center;
  }
  .site-header .navbar .navbar-nav > li > .dropdown-menu::before, .site-header .navbar .navbar-nav > li > .dropdown-menu::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    -khtml-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
  }
  .site-header .navbar .navbar-nav > li > .dropdown-menu li a {
    white-space: normal;
  }
}
@media (max-width: 575.98px) {
  .site-header .navbar .navbar-nav > li > .dropdown-menu {
    padding: 15px;
  }
}
.site-header .navbar .navbar-nav li.open > a {
  border-color: transparent;
}
.site-header .navbar .navbar-nav li.open > a:focus, .site-header .navbar .navbar-nav li.open > a:hover {
  border-color: transparent;
}
.site-header .navbar .navbar-nav .dropdown-menu {
  background-color: #fff;
  margin-top: 0;
  border: none;
  border-radius: 0;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
}
.site-header .navbar .navbar-nav .dropdown-menu li {
  display: block;
  text-transform: uppercase;
}
.site-header .navbar .navbar-nav .dropdown-menu li a {
  font-size: 16px;
  font-weight: 300;
  text-transform: none;
  color: #6e6f71;
  white-space: nowrap;
  padding: 3px 20px;
}
@media (max-width: 1199.98px) {
  .site-header .navbar .navbar-nav .dropdown-menu li a {
    font-size: 14px;
    padding: 6px 0;
  }
}
.site-header .navbar .navbar-nav .dropdown-menu > li.menu-item > a:focus, .site-header .navbar .navbar-nav .dropdown-menu > li.menu-item > a:hover {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.site-header .navbar .navbar-nav .dropdown-menu > .active > a {
  background-color: #f5f5f5;
}
.site-header .navbar .navbar-nav .dropdown-menu > .active > a:focus, .site-header .navbar .navbar-nav .dropdown-menu > .active > a:hover {
  background-color: #f5f5f5;
}
.site-header .navbar .navbar-nav .dropdown-menu > .active .active > a {
  background-color: #fff;
}
.site-header .navbar .navbar-nav .dropdown-menu .dropdown-menu {
  position: static;
  display: none;
  top: auto;
  left: auto;
  float: none;
  min-width: 1px;
  box-shadow: none;
  padding-left: 4px;
  padding-top: 0;
  margin-top: 0;
  width: 100%;
}
.site-header .navbar .navbar-nav .dropdown-menu .dropdown-menu li:before {
  margin-left: 20px;
  margin-right: 10px;
  content: "—";
  display: inline-block;
  position: relative;
}
.site-header .navbar .navbar-nav .dropdown-menu .dropdown-menu li a {
  font-weight: 400;
  display: inline-block;
  padding-left: 0;
}
.site-header .navbar .navbar-nav .dropdown-menu .dropdown-menu li a:hover {
  background-color: transparent;
}
.site-header .navbar .navbar-nav > li#magic-line {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 0;
  margin: 0;
  width: 100px;
  height: 5px;
  background: #2083B6;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
@media (max-width: 1199.98px) {
  .site-header .navbar .navbar-nav > li#magic-line {
    display: none;
  }
}
.site-header .navbar-brand {
  padding: 15px 0;
  margin: 0;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .site-header .navbar-brand {
    padding: 13px 0;
  }
}
.site-header .navbar-toggler {
  padding: 0.2rem 0.7rem;
  font-size: 1rem;
  border-radius: 0;
  border: none;
  z-index: 2;
}
.site-header .navbar-toggler.collapsed span {
  background-color: #2083B6;
}
.site-header .navbar-toggler.collapsed span::before, .site-header .navbar-toggler.collapsed span::after {
  transition-delay: 0.2s, 0s;
  -khtml-transform: rotate(0);
  transform: rotate(0);
}
.site-header .navbar-toggler.collapsed span::before {
  margin-top: -0.6rem;
}
.site-header .navbar-toggler.collapsed span::after {
  margin-top: 0.6rem;
}
.site-header .navbar-toggler:hover, .site-header .navbar-toggler:focus, .site-header .navbar-toggler:active {
  background-color: transparent !important;
  box-shadow: none;
  outline: none;
  border: none;
}
.site-header .navbar-toggler:active:hover, .site-header .navbar-toggler:active:focus {
  box-shadow: none !important;
  border: none;
  outline: none;
}
.site-header .navbar-toggler span {
  transition-duration: 0s;
  transition-delay: 0.2s;
  display: inline-block;
  top: -0.4rem;
  width: 2rem;
  height: 0.3rem;
  background-color: rgba(0, 0, 0, 0);
  position: relative;
}
.site-header .navbar-toggler span::before, .site-header .navbar-toggler span::after {
  transition-delay: 0s, 0.2s;
  transition-duration: 0.2s;
  transition-property: margin, transform;
  display: block;
  content: "";
  position: absolute;
  width: 2rem;
  height: 0.3rem;
  background-color: #2083B6;
  margin-top: 0;
}
.site-header .navbar-toggler span::before {
  -khtml-transform: rotate(45deg);
  transform: rotate(45deg);
}
.site-header .navbar-toggler span::after {
  -khtml-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.site-header .navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}

#main-menu > li > a:after {
  display: none;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation, .site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

body.single .navigation.post-navigation {
  display: none;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

@media (max-width: 1199.98px) {
  .site-header .site-menu-item {
    float: left;
    margin: 0;
  }
  .site-header .site-menu-item > li {
    float: left;
  }
  .site-header .site-menu-item > li > a {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 1150px) {
  .site-header .site-menu-item > li > a {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .navbar-brand > img {
    display: block;
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .site-header .site-menu-item > li > a {
    font-size: 16px;
    padding: 5px 7px;
  }
}
@media (max-width: 1056px) {
  .site-header .site-menu-item > li > a {
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 1199.98px) {
  .site-header .navbar-brand {
    flex: 50%;
    text-align: right;
    padding: 10px 0;
  }
  .site-header .navbar .navbar-nav {
    align-items: initial;
    float: none;
  }
  .site-header .navbar .navbar-nav > li#magic-line {
    display: none !important;
  }
  .site-header .navbar .navbar-nav li a {
    padding: 0.5rem 1rem;
  }
  .site-header .navbar .navbar-nav li ul.dropdown-menu {
    background-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
    position: relative;
    float: none;
    top: auto;
    left: auto;
    width: 100%;
    padding: 0;
  }
  .site-header .navbar .navbar-nav li ul.dropdown-menu > li.menu-item {
    width: 100%;
  }
  .site-header .navbar .navbar-nav li ul.dropdown-menu > li.menu-item > a:focus, .site-header .navbar .navbar-nav li ul.dropdown-menu > li.menu-item > a:hover {
    color: #333333;
    background-color: rgba(0, 0, 0, 0.25);
  }
  .site-header .navbar .navbar-nav li ul.dropdown-menu > li.menu-item.active > a {
    color: #333333;
    background-color: rgba(0, 0, 0, 0.25);
  }
  .site-header .navbar .navbar-nav li ul.dropdown-menu > li.menu-item.active > a:focus, .site-header .navbar .navbar-nav li ul.dropdown-menu > li.menu-item.active > a:hover {
    color: #333333;
    background-color: rgba(0, 0, 0, 0.25);
  }
  .site-header .navbar .navbar-nav li ul.dropdown-menu li a {
    padding: 10px !important;
    color: #333333;
    font-size: 14px !important;
  }
  .site-header .navbar .navbar-nav > li > ul.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.2) !important;
  }
  .site-header .navbar .navbar-nav > li > a:active, .site-header .navbar .navbar-nav > li > a:hover {
    background: #2083B6;
    color: #fff;
  }
  .site-header .navbar .navbar-nav > li.current-menu-ancestor > a, .site-header .navbar .navbar-nav > li.current-menu-item > a {
    background: #2083B6;
    color: #fff;
  }
  .site-header .navbar .navbar-nav > li.current-menu-ancestor > a:active, .site-header .navbar .navbar-nav > li.current-menu-ancestor > a:hover, .site-header .navbar .navbar-nav > li.current-menu-item > a:active, .site-header .navbar .navbar-nav > li.current-menu-item > a:hover {
    background: #2083B6;
    color: #fff;
  }
  .site-header .navbar-collapse {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 1199.98px) {
  .site-header nav {
    padding: 0;
  }
  .site-header .site-menu-item > li.current-menu-ancestor > a, .site-header .site-menu-item > li.current-menu-item > a {
    background: #2083B6;
  }
  .site-header .site-menu-item > li.current-menu-ancestor > a:hover, .site-header .site-menu-item > li.current-menu-item > a:hover {
    background: #2083B6;
  }
  .site-header .site-menu-item > li > a {
    width: 100%;
    display: block;
    height: auto;
    padding: 15px;
  }
  .site-header .site-menu-item > li > a:active, .site-header .site-menu-item > li > a:hover {
    background: #2083B6;
  }
}
@media (max-width: 1199.98px) {
  .site-header .site-menu-item {
    display: block;
    float: left;
    margin: 0;
    width: 100%;
  }
  .site-header nav .menu-menu-container {
    display: block;
    float: none;
    padding-right: 0;
    width: 100%;
  }
  .site-header .site-menu-item > li#magic-line {
    display: none !important;
  }
  .site-header .site-menu-item > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1;
  }
  .site-header .site-menu-item > li > a::after {
    display: none;
  }
  .site-header .site-menu-item > li > ul.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.2) !important;
  }
  .site-header .site-menu-item li ul.dropdown-menu {
    background-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
    position: relative;
    float: none;
    top: auto;
    left: auto;
    width: 100%;
  }
  .site-header .site-menu-item li ul.dropdown-menu li a {
    color: #fff;
    font-size: 14px;
  }
  .site-header .site-menu-item .dropdown-menu > .active > a,
  .site-header .site-menu-item .dropdown-menu > .active > a:focus,
  .site-header .site-menu-item .dropdown-menu > .active > a:hover,
  .site-header .site-menu-item .dropdown-menu > li > a:focus,
  .site-header .site-menu-item .dropdown-menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .navbar-nav .open .dropdown-menu > li > a {
    padding-left: 20px;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-brand {
    padding: 5px 15px;
  }
  .navbar-brand > img {
    width: auto;
    height: 40px;
  }
  .navbar-toggle {
    border: 1px solid #fff;
  }
  .navbar-toggle .icon-bar {
    background-color: #fff;
  }
}
#top-navigation {
  background: #2083B6;
  padding: 5px 0;
}
#top-navigation #menu-top-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
}
#top-navigation #menu-top-menu a {
  color: #fff;
}
#top-navigation #menu-top-menu > li {
  position: relative;
  list-style-type: none;
}
#top-navigation #menu-top-menu > li:before {
  content: "​";
}
#top-navigation #menu-top-menu > li + li {
  margin-left: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  #top-navigation #menu-top-menu > li + li {
    padding-right: 0;
  }
}
#top-navigation #menu-top-menu > li + li:after {
  content: "|";
  position: absolute;
  left: 0;
  color: #fff;
}

/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Apr 28, 2020, 2:10:28 AM
    Author     : tim
*/
#hero-tabs-wrapper {
  background-color: #fff;
  padding: 0;
  border: 0.5px solid #ccc;
  border-left: 0;
  border-right: 0;
  flex-wrap: nowrap;
  margin: 0 !important;
  flex-direction: row !important;
  justify-content: center !important;
}
@media (min-width: 768px) {
  #hero-tabs-wrapper {
    padding: 0 25px;
  }
}
#hero-tabs-wrapper > a {
  border: 0.5px solid #ccc;
  font-family: Lato, sans-serif;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: center;
  color: #2083b6;
  border-top: 0;
  border-bottom: 0;
  padding: 25px;
  font-size: 24px;
}
#hero-tabs-wrapper > a:nth-of-type(2) {
  border-left: 0;
}
#hero-tabs-wrapper > a:hover {
  text-decoration: none;
}
#hero-tabs-wrapper > a.active, #hero-tabs-wrapper > a:focus, #hero-tabs-wrapper > a:hover {
  box-shadow: 0 0 18px #676868;
}
@media (min-width: 768px) {
  #hero-tabs-wrapper > a {
    padding: 30px 50px;
    font-size: 31.5px;
  }
}
@media (min-width: 992px) {
  #hero-tabs-wrapper > a {
    padding: 32px 105px;
  }
}
@media (max-width: 767.98px) {
  #hero-tabs-wrapper > a:nth-of-type(1) {
    border-left: 0;
  }
  #hero-tabs-wrapper > a:nth-of-type(2) {
    border-right: 0;
  }
}

#breadcrumbs-container {
  position: relative;
  height: 38px;
  margin-top: 25px;
  margin-bottom: 0;
  z-index: 10;
}

#breadcrumbs {
  position: absolute;
  background-color: #f1f1f1;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  padding: 8px 12px;
  white-space: nowrap;
}
#breadcrumbs .breadcrumb_last,
#breadcrumbs a {
  margin: 0 5px;
}

body.hide-header #breadcrumbs-row {
  display: none;
}

.nav.nav-tabs {
  list-style: none;
}

.hg-pagination {
  display: block;
}
.hg-pagination .page-numbers {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 15px;
  border-radius: 8px;
  background-color: transparent;
  transition: background-color, 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .hg-pagination .page-numbers {
    transition: none;
  }
}
.hg-pagination .page-numbers:not(.prev).current, .hg-pagination .page-numbers:not(.next).current {
  color: #000;
  background-color: #eaeaea;
}
.hg-pagination .page-numbers.prev {
  padding-left: 0;
}
.hg-pagination .page-numbers.next {
  padding-right: 0;
}

@media (max-width: 767.98px) {
  .contact-tabs .nav.nav-tabs {
    flex-direction: column;
    overflow: unset;
    border-bottom: none;
    border-left: 1px solid #dee2e6;
    padding: 6px;
  }
}
@media (max-width: 767.98px) {
  .contact-tabs .nav.nav-tabs .nav-item {
    padding-bottom: 0 !important;
    margin-left: 6px;
  }
}
@media (max-width: 767.98px) {
  .contact-tabs .nav.nav-tabs .nav-item .nav-link {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
}
@media (max-width: 767.98px) {
  .contact-tabs .nav.nav-tabs .nav-item .nav-link:focus, .contact-tabs .nav.nav-tabs .nav-item .nav-link:hover, .contact-tabs .nav.nav-tabs .nav-item .nav-link.active {
    border-color: #dee2e6 #dee2e6 #dee2e6 #fff;
  }
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f9f9f9;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.0546875rem;
  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;
}

@media (max-width: 1200px) {
  .single-post .alignright {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

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

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

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-timing-function: ease-in-out;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

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

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 800ms;
}

.animated.faster {
  animation-duration: 500ms;
}

.animated.slow {
  animation-duration: 2s;
}

.animated.slower {
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    animation: unset !important;
    transition: none !important;
  }
}
/*--------------------------------------------------------------
# HUbspot
--------------------------------------------------------------*/
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jun 12, 2019, 4:18:50 PM
    Author     : tim
*/
.hbspt-form {
  border: 2px solid #cad5e2;
  padding: 20px;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
body.no-hero .site-content {
  padding-top: 97px;
}
body.no-hero .site-header {
  background: #1050a8;
}

h1.entry-title,
h1.page-title {
  font-size: 2rem;
}

.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

section.grey-section {
  background-color: #f9f9f9;
}

section.white-section {
  background-color: #fff;
}

section.orange-section {
  background: url("/wp-content/uploads/2018/02/orange_bg.jpg") no-repeat center center;
  background-size: cover;
  background-position: right;
  color: #fff;
}

.nopacity {
  opacity: 0;
}

section.big-section:not(.image-text-repeater-panel) {
  padding: 30px 0;
}
@media screen and (min-width: 991px) {
  section.big-section:not(.image-text-repeater-panel) {
    padding: 80px 0;
  }
}

.text-sm {
  font-size: 14px;
}

.txt-chart {
  width: 40%;
  position: absolute;
  bottom: 20px;
  left: 70px;
}
@media (max-width: 767.98px) {
  .txt-chart {
    position: relative;
    width: 40%;
    top: -90px;
    left: 30px;
    margin-bottom: -60px;
  }
}
@media (max-width: 575.98px) {
  .txt-chart {
    position: relative;
    width: 50%;
    top: -60px;
    left: 10px;
    margin-bottom: -60px;
  }
}
@media (min-width: 768px) {
  .txt-chart {
    position: relative;
    width: 40%;
    top: -150px;
    margin-bottom: -100px;
  }
}

@media (max-width: 575.98px) {
  img.mb-mobile {
    margin-bottom: 10px;
  }
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-title {
  font-size: 1.6rem;
}

h3#reply-title {
  font-size: 1.4rem;
}

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}
.widget .widget-title {
  font-size: 1.6rem;
}
.widget select {
  max-width: 100%;
}

/*
GDPR Consent Plugin
*/
#cookie-law-info-bar a {
  color: #fff !important;
  text-decoration: underline;
}
#cookie-law-info-bar a.cli-plugin-button {
  padding: 6px 16px 11px;
}
#cookie-law-info-bar a.cli-plugin-button, #cookie-law-info-bar a.cli-plugin-main-link {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jun 17, 2019, 11:57:19 PM
    Author     : tim
*/
#upcoming-events {
  padding: 40px 0;
}
#upcoming-events .headline {
  color: #1a3c6a;
}
#upcoming-events .upcoming-events-in .events .slick-slide img {
  display: unset;
}
#upcoming-events .slick-arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(0, -70%);
  width: 45px;
  height: 100px;
}
#upcoming-events .slick-arrow::before, #upcoming-events .slick-arrow::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 8px;
  background: #afd86d;
}
#upcoming-events .slick-arrow.slick-arrow-prev {
  left: -15px;
}
@media (max-width: 575.98px) {
  #upcoming-events .slick-arrow.slick-arrow-prev {
    left: -5px;
  }
}
#upcoming-events .slick-arrow.slick-arrow-prev:before {
  top: 66px;
  left: -20px;
  transform: rotate(45deg);
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
#upcoming-events .slick-arrow.slick-arrow-prev::after {
  top: 28px;
  left: -20px;
  transform: rotate(-45deg);
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
#upcoming-events .slick-arrow.slick-arrow-next {
  right: -15px;
}
@media (max-width: 575.98px) {
  #upcoming-events .slick-arrow.slick-arrow-next {
    right: -5px;
  }
}
#upcoming-events .slick-arrow.slick-arrow-next:before {
  top: 66px;
  left: 0px;
  transform: rotate(-45deg);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
#upcoming-events .slick-arrow.slick-arrow-next::after {
  top: 28px;
  left: 0px;
  transform: rotate(45deg);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 4px;
}

/*--------------------------------------------------------------
Modal for Wistia Videos
--------------------------------------------------------------*/
/**
* Fixed issue with Wistia native popup.
* by default with Bootstrap every div's position is set relative
* and this will make the Wistia video popup to be embed inside a div with relative position
* which is injected by Wistia inside the body tag. This div is injected after all other div
* that's why the popup was loading at the end of the page.
*/
div[role=dialog][id^=wistia] {
  position: initial;
}

#modal-box .modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}
#modal-box .modal-body {
  position: relative;
  padding: 0;
}
#modal-box .close {
  position: absolute;
  right: -30px;
  top: 0;
  z-index: 999;
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
  opacity: 1;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

@media screen and (max-width: 769px) {
  .bms-image-right {
    padding: 0 !important;
    margin: auto;
    text-align: center;
    margin-bottom: 15px;
    float: none;
    display: block;
  }
}
/*--------------------------------------------------------------
# Template Specific Styles
--------------------------------------------------------------*/
.main {
  min-height: 715px;
}

body.page-template-front-page section#home-cta {
  padding: 30px 0;
}
body.page-template-front-page section#home-cta .section-cta-wrapper {
  margin: 40px 0;
}

body.home .hero .hero-wrapper {
  padding: 50px 0 50px;
}
@media (min-width: 768px) {
  body.home .hero .hero-wrapper {
    padding: 100px 0 50px;
  }
}
@media (min-width: 1200px) {
  body.home .hero .hero-wrapper {
    padding: 190px 0 50px;
  }
}
body.home .hero .button {
  min-width: 260px;
}
@media (min-width: 768px) {
  body.home .hero .button {
    min-width: 300px;
  }
}
@media (min-width: 1200px) {
  body.home .hero .hero-content-wrapper {
    max-width: unset;
    width: auto;
  }
}
body.home body.page-id-189 .hero-wrapper .container {
  max-width: 100%;
  margin: 0;
}
body.home .global-hero .hero-wrapper {
  padding: 100px 0;
}
body.home .global-hero .justify-content-center {
  justify-content: left !important;
}
body.home .global-hero .hero-content-wrapper {
  max-width: 600px;
  width: auto;
  margin: 0 !important;
}
body.home .global-hero .hero-content-wrapper h2.hero-subtext {
  text-shadow: 3px 3px 3px rgba(79, 80, 80, 0.79);
  -moz-transform: scale(1, 1.053);
  -webkit-transform: scale(1, 1.053);
  -ms-transform: scale(1, 1.053);
  text-align: left;
  color: #fff;
  font-size: 1.6rem;
}
body.home .global-hero .hero-content-wrapper h1.hero-title {
  text-shadow: 3px 3px 3px rgba(79, 80, 80, 0.79);
  -moz-transform: scale(1, 1.053);
  -webkit-transform: scale(1, 1.053);
  -ms-transform: scale(1, 1.053);
  font-size: 1.6rem;
  text-align: left;
  color: #dcb46c;
  font-size: 2.8rem;
}
body.home .global-hero .section-cta-wrapper .bd-highlight:first-child {
  padding-left: 0 !important;
  margin-left: 0 !important;
}
@media only screen and (max-width: 574px) {
  body.home .global-hero .section-cta-wrapper .bd-highlight {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
}
body.home section .headline {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1050a8;
}
@media (min-width: 768px) {
  body.home section .headline {
    font-size: 2.3rem;
  }
}
@media (max-width: 767.98px) {
  body.home section .headline br {
    content: "";
  }
}
body.home #solutions {
  padding: 40px 0 60px;
}
body.home #solutions .card {
  flex: 0 0 30%;
}
body.home #solutions .card .card-title {
  font-weight: 400;
  color: #074a7c;
}
body.home #solutions .card .card-text {
  font-size: 22px;
  font-weight: 400;
  color: #2083B6;
}
body.home #solutions .card .card-img-top {
  width: 150px;
  margin: 0 auto;
  padding: 15px 0;
}
body.home #solutions .card .card-body {
  display: flex;
}
body.home #solutions .card .card-body .brand-button {
  place-self: center;
}
body.home #partners {
  padding: 60px 0 140px;
  background: #f2f2f1;
}
body.home #partners .partner-logos {
  background: #fff;
}
body.home #testimonials {
  padding: 40px 0;
}
body.home #testimonials .quote {
  font-size: 20px;
  font-weight: 300;
}
@media (min-width: 768px) {
  body.home #testimonials .quote {
    margin: 0 auto;
    width: 80%;
  }
}
body.home #testimonials .quote p + p {
  margin: 0;
}
body.home #testimonials .quote strong {
  color: #2083B6;
}
body.home #testimonials .testimonial-info {
  margin: 0 auto;
}
@media (min-width: 992px) {
  body.home #testimonials .testimonial-info {
    width: 80%;
  }
}
@media (min-width: 1200px) {
  body.home #testimonials .testimonial-info {
    width: 60%;
  }
}
body.home #testimonials .testimonial-info .image {
  flex: 0 0 23%;
  align-self: stretch;
  background-position: center;
  background-size: cover;
}
body.home #testimonials .testimonial-info .testimonial-description {
  font-weight: 300;
}
body.home #testimonials .testimonial-info .testimonial-description h3 {
  font-weight: 300;
  font-size: 18px;
}
body.home #testimonials .testimonial-info .testimonial-description p {
  margin: 0;
  line-height: 1.2;
}
body.home #home-cta {
  color: #ffffff;
}
body.home #home-cta:not(.has-background-image) {
  background: #00496c;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to right, #00496c 0%, #048a93 49%, #97be3d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00496c", endColorstr="#97be3d", GradientType=1);
}
body.home #home-cta .has-background-image {
  background-size: cover;
  background-position: center;
}
body.home #home-cta a {
  display: block;
  font-size: 1.875rem;
  font-weight: 300;
  text-transform: capitalize;
  line-height: 1.2;
}
body.home #home-cta a.cta-button-normal {
  font-size: 1.25rem;
}
body.home #home-cta a.cta-button-big {
  font-size: 2.5rem;
}
@media (max-width: 767.98px) {
  body.home #home-cta a.cta-button-big {
    font-size: 1.875rem;
  }
}
body.home #home-cta a:hover {
  text-decoration: none;
}

@media screen and (min-width: 991px) {
  body.page-template-front-page section#home-how-it-works #how-it-works-cols .hiw-col {
    margin-bottom: 5px;
  }
  body.page-template-front-page section#home-how-it-works .section-cta-wrapper {
    margin-top: 45px;
  }
  body.page-template-front-page section#home-cta {
    padding: 120px 0;
  }
  body.page-template-front-page section#home-cta .section-cta-wrapper {
    margin-top: 40px;
  }
}
.page-template-tpl-management-system #panel-1 {
  background: #2083B6;
  color: #fff;
}
.page-template-tpl-management-system #panel-1 .section-headings {
  position: relative;
  padding: 0;
}
.page-template-tpl-management-system #panel-1 .section-headings:before, .page-template-tpl-management-system #panel-1 .section-headings:after {
  content: "";
  position: absolute;
}
.page-template-tpl-management-system #panel-1 .section-headings:before {
  top: 10px;
  left: 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80px 80px;
  width: 80px;
  height: 80px;
  z-index: 2;
}
@media (max-width: 1300px) {
  .page-template-tpl-management-system #panel-1 .section-headings:before {
    left: 0;
  }
}
.page-template-tpl-management-system #panel-1 .section-headings:after {
  top: 45px;
  left: -100%;
  width: 95%;
  height: 2px;
  background: #c1c3c6;
  z-index: 1;
  display: none;
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system #panel-1 .section-headings:after {
    display: none;
  }
}
@media (max-width: 1300px) {
  .page-template-tpl-management-system #panel-1 .section-headings:after {
    left: -90%;
  }
}
.page-template-tpl-management-system #panel-1 .section-headings .section-title {
  font-size: 28px;
  font-weight: 400;
  text-align: left !important;
  margin: 0;
  padding: 29px 0 48px;
}
@media (max-width: 1300px) {
  .page-template-tpl-management-system #panel-1 .section-headings .section-title {
    padding-left: 90px;
  }
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system #panel-1 .section-headings .section-title {
    padding: 20px 0;
  }
}
@media (max-width: 767.98px) {
  .page-template-tpl-management-system #panel-1 .section-headings .section-title {
    font-size: 22px;
  }
  .page-template-tpl-management-system #panel-1 .section-headings .section-title br {
    content: "";
  }
}
.page-template-tpl-management-system #panel-1 .section-headings .section-subtitle {
  font-size: 28px;
  font-weight: 300;
  text-align: left;
  margin: 6px 0 20px;
}
@media (max-width: 767.98px) {
  .page-template-tpl-management-system #panel-1 .section-headings .section-subtitle {
    font-size: 22px;
  }
  .page-template-tpl-management-system #panel-1 .section-headings .section-subtitle br {
    content: "";
  }
}
.page-template-tpl-management-system #seven-modules {
  background: #f2f2f1;
  padding: 60px 0;
  overflow-x: hidden;
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system #seven-modules {
    padding: 60px 15px;
  }
  .page-template-tpl-management-system #seven-modules .container {
    padding: 0;
  }
}
.page-template-tpl-management-system #seven-modules .modules-header .headline {
  font-size: 32px;
  font-weight: 300;
  color: #09547f;
}
@media (max-width: 767.98px) {
  .page-template-tpl-management-system #seven-modules .modules-header .headline {
    font-size: 22px;
  }
  .page-template-tpl-management-system #seven-modules .modules-header .headline br {
    content: "";
  }
}
.page-template-tpl-management-system #wheel-main-wrapper {
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system #wheel-main-wrapper {
    overflow: visible;
  }
}
.page-template-tpl-management-system #wheel-main-wrapper .img-wheel-mobile {
  display: none;
}
@media (max-width: 992px) {
  .page-template-tpl-management-system #wheel-main-wrapper .img-wheel-mobile {
    display: block;
  }
}
.page-template-tpl-management-system #wheel-main-wrapper .img-wheel-desktop {
  display: block;
}
@media (max-width: 992px) {
  .page-template-tpl-management-system #wheel-main-wrapper .img-wheel-desktop {
    display: none;
  }
}
.page-template-tpl-management-system .wrap-wheel-window {
  position: static;
  color: #fff;
}
@media (max-width: 992px) {
  .page-template-tpl-management-system .wrap-wheel-window {
    position: relative;
  }
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop {
  position: absolute;
  width: 250px;
  height: 72px;
  font-size: 16px;
  text-align: left;
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop {
    width: 100px;
    height: 100px;
    overflow: hidden;
    font-size: 2vw;
    line-height: 1.2;
  }
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop span {
  color: #4d4d4d;
  display: block;
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop span + span {
  color: #2083B6;
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop span + span {
    font-size: 2vw;
    line-height: 1;
  }
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop span + span:hover {
  text-decoration: underline;
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop:hover, .page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop:active {
  text-decoration: none;
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop.link_BMS_Training {
  top: 10%;
  left: 55%;
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop.link_BMS_Training {
    top: 5%;
  }
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop.link_BMS_Activity {
  top: 40%;
  left: 74%;
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop.link_BMS_Activity {
    top: 35%;
  }
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop.link_BMS_Force {
  top: 70%;
  left: 70%;
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop.link_BMS_Internal_Affairs {
  top: 83%;
  left: 37%;
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop.link_BMS_Community_Engagement {
  top: 70%;
  left: 5%;
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop.link_BMS_Performance_Evaluation {
  top: 40%;
  left: 0%;
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop.link_BMS_Performance_Evaluation {
    top: 35%;
  }
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop.link_BMS_Officer_Profile {
  top: 10%;
  left: 20%;
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-desktop.link_BMS_Officer_Profile {
    top: 5%;
  }
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-mobile {
  color: #4d4d4d;
  text-decoration: none;
  padding: 45px 0;
  border-top: 1px solid #cdcdcd;
  display: flex;
  align-items: center;
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-mobile img {
  margin: 0 15px;
  width: 76px;
  flex: 0 0 76px;
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-mobile div span {
  display: block;
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-mobile div span:nth-child(1) {
  font-size: 20px;
  color: #09547f;
  font-weight: 400;
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-mobile div span:nth-child(2) {
  margin: 5px 0;
}
.page-template-tpl-management-system .wrap-wheel-window > a.wrap-wheel-mobile div span:nth-child(3) {
  text-transform: uppercase;
  color: #2083B6;
}
.page-template-tpl-management-system .wrap-wheel-window a.wrap-wheel-desktop {
  display: block;
}
@media (max-width: 992px) {
  .page-template-tpl-management-system .wrap-wheel-window a.wrap-wheel-desktop {
    display: none;
  }
}
.page-template-tpl-management-system .wrap-wheel-window a.wrap-wheel-mobile {
  display: none;
}
@media (max-width: 992px) {
  .page-template-tpl-management-system .wrap-wheel-window a.wrap-wheel-mobile {
    display: flex;
  }
}
.page-template-tpl-management-system .wrap-wheel-window .wheel-window {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  opacity: 0;
  animation-duration: 400ms;
  animation-fill-mode: both;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system .wrap-wheel-window .wheel-window {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .page-template-tpl-management-system .wrap-wheel-window .wheel-window {
    top: 30px;
    transform: translate(100%, 0);
  }
}
.page-template-tpl-management-system .wrap-wheel-window .wheel-window.go {
  animation-name: fadeInRightCustom;
}
.page-template-tpl-management-system .wrap-wheel-window .wheel-window.goAway {
  animation-name: fadeOutRight;
}
.page-template-tpl-management-system .gradient-branded {
  color: #ffffff;
  background: #00496c;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to right, #00496c 0%, #048a93 49%, #97be3d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00496c", endColorstr="#97be3d", GradientType=1);
}
.page-template-tpl-management-system .module-image {
  flex: 1;
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system .module-image {
    display: none;
  }
}
.page-template-tpl-management-system .module-info {
  font-weight: 300;
  line-height: 1.6em;
  background-color: #2083b6;
  flex: 1;
  position: relative;
  padding: 25px 40px !important;
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system .module-info {
    padding: 20px;
    width: 100% !important;
  }
  .page-template-tpl-management-system .module-info ul {
    padding-inline-start: 0.25rem;
  }
}
.page-template-tpl-management-system .module-info .module-description p,
.page-template-tpl-management-system .module-info .module-description ul > li {
  color: #fff;
}
.page-template-tpl-management-system .module-info .module-description ul {
  margin-left: 0;
}
.page-template-tpl-management-system .module-info .btn-branded {
  border-color: #199496;
  background-color: #199496;
}
.page-template-tpl-management-system .module-info .btn-branded:hover {
  border-color: #78b650;
  background-color: #78b650;
}
.page-template-tpl-management-system .module-content {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page-template-tpl-management-system .module-content .module-title {
  padding: 1rem 0;
  margin: 2rem 0;
  text-align: center;
  font-weight: 300;
  color: #ffffff;
  background: #00496c;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to right, #00496c 0%, #048a93 49%, #97be3d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00496c", endColorstr="#97be3d", GradientType=1);
}
.page-template-tpl-management-system .triggerSlide.display-off,
.page-template-tpl-management-system .main-image-container.display-off {
  animation: fadeOutCustom 0.5s ease 0s normal forwards 1;
  -webkit-animation: fadeOutCustom 0.5s ease 0s normal forwards 1;
}
.page-template-tpl-management-system .triggerSlide.display-on,
.page-template-tpl-management-system .main-image-container.display-on {
  animation: fadeInCustom 0.5s ease 0s normal forwards 1;
  -webkit-animation: fadeInCustom 0.5s ease 0s normal forwards 1;
}
.page-template-tpl-management-system #dashboard.panel-background-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-template-tpl-management-system #dashboard .main-image {
  max-width: 85%;
  margin: 0 auto;
}
.page-template-tpl-management-system #dashboard .dashboard-header h2 {
  font-weight: 300;
  color: #09547f;
}
@media (max-width: 767.98px) {
  .page-template-tpl-management-system #dashboard .dashboard-header h2 {
    font-size: 22px;
  }
  .page-template-tpl-management-system #dashboard .dashboard-header h2 br {
    content: "";
  }
}
.page-template-tpl-management-system #dashboard .checkmarks {
  list-style: none;
  padding: 0;
  margin: 15px 0 30px;
}
.page-template-tpl-management-system #dashboard .checkmarks li {
  position: relative;
  padding-left: 33px;
}
.page-template-tpl-management-system #dashboard .checkmarks li:before {
  content: "";
  position: absolute;
  top: 26%;
  left: 0;
  transform: translate(0, -50%);
  background-image: url("../images/check.png");
  background-position: center;
  background-size: cover;
  width: 30px;
  height: 25px;
}
.page-template-tpl-management-system .dashboard_options {
  margin-top: 80px;
}
.page-template-tpl-management-system .dashboard_options .dashboard_option {
  flex: 1 1 33%;
}
.page-template-tpl-management-system .dashboard_options .dashboard_option img {
  max-width: 85%;
  margin: 0 auto;
}
.page-template-tpl-management-system .dashboard_options .dashboard_option .modal-content {
  background-color: #2083b6;
}
.page-template-tpl-management-system .dashboard_options .dashboard_option .option_link {
  padding: 0 20px;
  position: relative;
}
.page-template-tpl-management-system .dashboard_options .dashboard_option .option_link > span {
  font-size: 1.0625rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f4f4f;
  font-weight: 400;
  line-height: 1.3;
  flex-direction: column;
  padding: 30px 100px 0 100px;
}
.page-template-tpl-management-system .dashboard_options .dashboard_option .option_link > span span {
  color: #27a7f8;
  font-size: 13px;
  text-transform: uppercase;
  display: block;
  margin-top: 10px;
}
.page-template-tpl-management-system .dashboard_options .dashboard_option .modal-footer {
  border: none;
}
.page-template-tpl-management-system .dashboard_options .dashboard_option .modal-footer .btn-branded {
  border-color: #199496;
  background-color: #199496;
  padding: 12px;
}
.page-template-tpl-management-system .dashboard_options .dashboard_option .modal-footer .btn-branded:hover {
  border-color: #78b650;
  background-color: #78b650;
}
.page-template-tpl-management-system .modal-dialog {
  max-width: 800px;
}
@media (max-width: 991.98px) {
  .page-template-tpl-management-system .modal-dialog {
    max-width: 500px;
  }
}

@keyframes fadeInRightCustom {
  0% {
    opacity: 1;
    transform: translate(100%, -50%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  100% {
    opacity: 0;
    transform: translate(100%, -50%);
  }
}
@keyframes fadeOutCustom {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInCustom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 23, 2019, 3:19:14 PM
    Author     : tim
*/
/**
New blog page
*/
body.blog .global-hero {
  margin-bottom: 0;
}

.hg-blog-wrap {
  padding: 60px 0;
}
.hg-blog-wrap article {
  border-radius: 8px;
  margin-bottom: 40px;
}
.hg-blog-wrap article img {
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-topright: 8px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.hg-blog-wrap article.featured-item .post-title {
  max-width: 100%;
}
.hg-blog-wrap article.featured-item .post-title a {
  display: unset;
}
.hg-blog-wrap article.post .post-title {
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.hg-blog-wrap article .post-title {
  font-size: 24px;
  font-weight: 400;
  padding: 20px 2px 0;
  margin: 0 0 15px 0;
}
.hg-blog-wrap article .post-title a {
  display: block;
  color: #000;
  transition: "color .3s";
}
@media (prefers-reduced-motion: reduce) {
  .hg-blog-wrap article .post-title a {
    transition: none;
  }
}
.hg-blog-wrap article .post-title a:hover {
  color: #2083B6;
  text-decoration: none;
}
.hg-blog-wrap article .post-data {
  padding: 0 0 30px;
}
.hg-blog-wrap article .post-data .post-categories {
  text-transform: capitalize;
}
.hg-blog-wrap article .post-data .post-categories > a {
  color: #000;
}
.hg-blog-wrap article .post-data .post-categories,
.hg-blog-wrap article .post-data .time-to-read {
  color: #000;
  line-height: 1;
}
.hg-blog-wrap article .post-data .post-categories + .time-to-read {
  margin-left: 15px;
  padding-left: 15px;
  position: relative;
}
.hg-blog-wrap article .post-data .post-categories + .time-to-read::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #000;
}
.hg-blog-wrap article .post-thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-topright: 8px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.hg-blog-wrap article .post-thumbnail.image-alignment-top img {
  top: 0;
  left: 0;
}
.hg-blog-wrap article .post-thumbnail.image-alignment-middle img {
  top: 49%;
  left: 50%;
  -khtml-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hg-blog-wrap article .post-thumbnail.image-alignment-bottom img {
  left: 0;
  bottom: 0;
}
.hg-blog-wrap article .post-thumbnail img {
  position: absolute;
  width: 100%;
  height: auto !important;
}
.hg-blog-wrap article.featured-item .post-thumbnail {
  height: 250px;
}
.hg-blog-wrap article:not(.featured-item) .post-thumbnail {
  height: 250px;
}
.hg-blog-wrap .category-dropdown {
  margin-bottom: 20px;
}
.hg-blog-wrap .category-dropdown select {
  border: 1px solid #b2b2b2;
  border-radius: 8px;
  padding: 8px;
  width: 100%;
  background: #fff;
}
.hg-blog-wrap .category-dropdown select option {
  text-transform: capitalize;
}
.hg-blog-wrap .popular-posts {
  margin-bottom: 20px;
}
.hg-blog-wrap .popular-posts + .popular-posts {
  margin-bottom: 40px;
}
.hg-blog-wrap .popular-posts .sidebar-label {
  background: #f2f2f1;
  padding: 6px 15px;
  text-transform: uppercase;
  font-size: 14px;
}
.hg-blog-wrap .popular-posts > a {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  display: block;
  padding: 8px;
  margin-top: 10px;
  border: 1px solid #b2b2b2;
  border-radius: 8px;
  line-height: 1.3;
}
.hg-blog-wrap .feature-resource {
  background-color: #81b10d;
  padding: 30px 40px 50px;
  position: relative;
  color: white;
  /*
  &::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .6);
    z-index: 1;
  }
  */
}
.hg-blog-wrap .feature-resource header {
  position: relative;
  z-index: 2;
}
.hg-blog-wrap .feature-resource .label {
  display: block;
  text-align: center;
  text-transform: uppercase;
}
.hg-blog-wrap .feature-resource .post-title {
  overflow: unset;
  max-height: unset;
  display: block;
  text-align: center;
  padding: 30px 0 0;
  margin: 0 0 15px 0;
}
.hg-blog-wrap .feature-resource .post-title a {
  color: white;
}
.hg-blog-wrap .feature-resource .post-title a:hover {
  color: #686868;
}
.hg-blog-wrap .feature-resource .description {
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}
.hg-blog-wrap .resource-banner {
  padding: 60px 86px;
  min-height: 395px;
}
.hg-blog-wrap .resource-banner .post-title {
  font-size: 24px;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 20px;
  overflow: unset;
  text-overflow: unset;
  display: unset;
  line-height: 1.6;
  max-height: unset;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}
.hg-blog-wrap .resource-banner .post-title a {
  color: #FD5D4B;
  font-size: 44px;
  font-weight: 400;
  line-height: 56px;
}
.hg-blog-wrap .resource-banner .post-title a:hover {
  color: #2083B6;
}
.hg-blog-wrap .resource-banner a.red-button.button {
  color: white;
}

.blog-post-container .blog-post {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
  margin: auto;
}
.blog-post-container .blog-post header {
  padding: 1% 0;
}
.blog-post-container .blog-post header h1 {
  margin: 10px 0 15px;
  padding: 0;
}
.blog-post-container .blog-post header a {
  color: #4d4d4d;
}
.blog-post-container .blog-post header p {
  font-size: 0.8em;
  margin-bottom: 3px;
}
.blog-post-container .blog-post header time {
  font-weight: 700;
  text-transform: uppercase;
}
.blog-post-container .blog-post header .credit {
  text-align: right;
}
.blog-post-container .blog-post #blog-time-holder {
  padding: 8px 0 8px 4px;
  /*background-color: #4192CA;*/
  color: #4a4a4a;
}
.blog-post-container .blog-post #social-icons-holder {
  padding-top: 15px;
}
.blog-post-container .blog-post #social-icons-holder h5 {
  margin: 0;
  text-transform: uppercase;
  padding-bottom: 5px;
  padding-left: 5px;
}
.blog-post-container .blog-post .entry-content img {
  max-width: 100% !important;
}
.blog-post-container .blog-post .post-image img {
  max-width: 100%;
  max-height: 320px;
}
.blog-post-container .blog-post ul {
  list-style-image: none;
}
.blog-post-container .blog-post p {
  margin-bottom: 1em;
}

/* CSS for the new In Post Resource CTA */
.in-post-cta-box {
  display: block;
  border: 2px solid #2083B6;
  border-left: 0;
  border-right: 0;
  padding: 16px 8px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
  color: #2083B6;
}
.in-post-cta-box h3, .in-post-cta-box h4 {
  margin: 0 0 10px;
  color: #2083B6;
}
.in-post-cta-box h3.ipc-title {
  font-size: 25px;
  font-weight: 400;
  margin-top: 8px;
  padding-left: 10px;
}
.in-post-cta-box img#ipc-featured-image {
  max-width: 110px !important;
  margin-right: 10px;
  border-radius: 6px;
}

.cta-bottom-placement .in-post-cta-box {
  border-bottom: 0;
}

.in-post-cta-box.no-thumb a.ipc-button {
  margin-top: 3px;
}

body.single-post #content.site-content {
  border-top: 2px solid #BABABA;
  padding-top: 46px;
}

body.page-template-page-events .global-hero {
  margin-bottom: 0;
}

#upcoming-events .single-event a.event-link {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#upcoming-events .single-event a > img {
  max-height: 140px;
  width: auto;
}

.single-event .hero .hero-image-container {
  background-position: 0 5%;
}
.single-event #event-meta .event-sidebar-section {
  line-height: 1.3;
}
.single-event #event-meta .event-sidebar-section label {
  font-weight: 400;
  display: block;
  float: left;
  margin-right: 5px;
}
.single-event #event-meta .event-sidebar-section br {
  clear: both;
}
.single-event #upcoming-events {
  margin-top: 10px;
  padding: 8px 0;
  background-color: #184784;
}
.single-event #upcoming-events .headline {
  color: #fff;
}
.single-event #upcoming-events .upcoming-events-in .events {
  padding: 5px;
}
.single-event #upcoming-events .single-event a {
  color: white;
}
.single-event #upcoming-events .slick-arrow::before, .single-event #upcoming-events .slick-arrow::after {
  position: absolute;
  background: none;
  width: 10px;
  height: 10px;
  content: "";
  top: 50px;
  left: 14px;
  transform: rotate(0);
  border-radius: 0;
  color: #fff;
}
.single-event #upcoming-events .slick-arrow.slick-arrow-prev::after,
.single-event #upcoming-events .slick-arrow.slick-arrow-next::after {
  content: "\f137";
  font-family: FontAwesome;
  top: 50px;
  border: 0;
  border-radius: 0;
  background: none;
  width: 10px;
  height: 10px;
}
.single-event #upcoming-events .slick-arrow.slick-arrow-next::after {
  content: "\f138";
  left: 18px;
}

.event-col img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.event-col h3,
.event-col h4 {
  max-width: 400px;
  font-size: 24px;
  font-weight: 400;
  padding: 20px 2px 0;
  margin: 0 0 15px 0;
  min-height: 4.5em;
}
.event-col h4 {
  font-size: 16px;
  padding: 5px 2px 0;
  margin: 0 0 5px 0;
  min-height: 1em;
}
.event-col .event-excerpt {
  margin-top: 15px;
}

@media (max-width: 767.98px) {
  section#upcoming-events header {
    width: 100%;
    clear: both;
    padding-bottom: 10px;
  }
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jun 12, 2019, 4:04:26 PM
    Author     : tim
*/
.page-id-197 #panel-1 .section-headings::before,
.page-id-198 #panel-1 h3::before {
  top: -21px;
  left: -89px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  z-index: 2;
  content: "";
  position: absolute;
}
@media (max-width: 1199.98px) {
  .page-id-197 #panel-1 .section-headings::before,
  .page-id-198 #panel-1 h3::before {
    display: none;
  }
}

.page-id-197 #panel-1 .section-headings::after,
.page-id-198 #panel-1 h3::after {
  content: "";
  position: absolute;
  top: 16px;
  left: -100%;
  width: 95%;
  height: 2px;
  background: #fff;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .page-id-197 #panel-1 .section-headings::after,
  .page-id-198 #panel-1 h3::after {
    display: none;
  }
}

body.home .global-hero,
body.page-template-tpl-LandingPage2 .global-hero {
  background-position: center 50px;
  margin-top: 20px;
  background-repeat: no-repeat;
  /*
  #hero-tabs-wrapper {
    background-color: $white;
    padding: 0;
    border: 0.5px solid #ccc;

    @include media-breakpoint-up(md) {
      padding: 0 25px;
    }

    border-left: 0;
    border-right: 0;

    flex-wrap: nowrap;
    margin: 0 !important;
    flex-direction: row !important;
    justify-content: center !important;

    > a {
      border: 0.5px solid #ccc;

      font-family: Lato, sans-serif;
      font-weight: 300;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.13;
      letter-spacing: normal;
      text-align: center;
      color: #2083b6;

      border-top: 0;
      border-bottom: 0;

      &:nth-of-type(2) {
        border-left: 0;
      }

      &:hover {
        text-decoration: none;
      }

      &.active,
      &:focus {
        box-shadow: 0 0 18px #676868;
      }

      padding: 25px;
      font-size: 24px;

      @include media-breakpoint-up(md) {
        padding: 30px 50px;
        font-size: 31.5px;
      }

      @include media-breakpoint-up(lg) {
        padding: 32px 105px;
      }

      @include media-breakpoint-down(sm) {
        &:nth-of-type(1) {
          border-left: 0;
        }

        &:nth-of-type(2) {
          border-right: 0;
        }

      }

    }

  }*/
}
@media (min-width: 768px) {
  body.home .global-hero,
  body.page-template-tpl-LandingPage2 .global-hero {
    background-position: center 80px;
    background-size: cover;
  }
}
body.home .global-hero .hero-wrapper,
body.page-template-tpl-LandingPage2 .global-hero .hero-wrapper {
  margin-top: 100px;
}
@media (min-width: 992px) {
  body.home .global-hero .hero-wrapper,
  body.page-template-tpl-LandingPage2 .global-hero .hero-wrapper {
    margin-top: 0px;
    padding: 80px 0 !important;
  }
}
@media screen and (min-width: 1600px) {
  body.home .global-hero .hero-wrapper,
  body.page-template-tpl-LandingPage2 .global-hero .hero-wrapper {
    margin-top: 0px;
    padding: 120px 0 240px !important;
  }
}
body.home .global-hero #hero-tabs-wrapper,
body.page-template-tpl-LandingPage2 .global-hero #hero-tabs-wrapper {
  flex-direction: row !important;
  justify-content: center !important;
}

@media screen and (min-width: 992px) {
  body.page-template-tpl-LandingPage2 .global-hero {
    background-size: contain !important;
  }
}
@media screen and (max-width: 992px) {
  body.page-template-tpl-LandingPage2 .global-hero {
    background-position: right 80px;
  }
  body.page-template-tpl-LandingPage2 .global-hero::before {
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    z-index: 0;
  }
}
@media (min-width: 768px) {
  body.page-template-tpl-LandingPage2 .global-hero .hero-wrapper .hero-content-wrapper {
    padding: 20px 0 100px;
  }
}
body.page-template-tpl-LandingPage2 .global-hero .hero-wrapper .hero-content-wrapper h1.hero-title {
  font-weight: 300;
  text-shadow: none;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0.27px;
  color: #1854a9 !important;
}
@media (min-width: 576px) {
  body.page-template-tpl-LandingPage2 .global-hero .hero-wrapper .hero-content-wrapper h1.hero-title {
    max-width: 330px;
  }
}
body.page-template-tpl-LandingPage2 .global-hero .hero-wrapper .hero-content-wrapper h2.hero-subtext {
  font-size: 27px;
  font-weight: 300;
  line-height: 1.52;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.38px;
  text-align: left;
  color: #167c7d !important;
  text-shadow: none;
}
body.page-template-tpl-LandingPage2 .simple-flex-section {
  padding-bottom: 50px;
}
body.page-template-tpl-LandingPage2 .simple-flex-section .headline {
  font-family: Lato, sans-serif;
  color: #1050a8;
  font-size: 37.5px;
  line-height: 1.39;
  font-weight: 300;
  margin-bottom: 0;
}
body.page-template-tpl-LandingPage2 .simple-flex-section .flex-col {
  flex: 1 1 calc(33% - 25px);
  margin: 0 25px;
  padding: 20px 10px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  body.page-template-tpl-LandingPage2 .simple-flex-section .flex-col {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  body.page-template-tpl-LandingPage2 .simple-flex-section .flex-col {
    padding: 35px 10px;
  }
}
body.page-template-tpl-LandingPage2 .simple-flex-section .flex-col .title-holder {
  height: 100px;
}
body.page-template-tpl-LandingPage2 .simple-flex-section .flex-col .title-holder h3 {
  font-family: Lato, sans-serif;
  color: #2e4392;
  font-size: 18px;
  line-height: 1.36;
  letter-spacing: 0.23px;
  font-weight: 400;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  body.page-template-tpl-LandingPage2 .simple-flex-section .flex-col .title-holder h3 {
    font-size: 22px;
  }
}
body.page-template-tpl-LandingPage2 .simple-flex-section .flex-col .img-holder {
  height: auto;
}
@media (min-width: 576px) {
  body.page-template-tpl-LandingPage2 .simple-flex-section .flex-col .img-holder {
    height: 180px;
  }
}
@media (min-width: 992px) {
  body.page-template-tpl-LandingPage2 .simple-flex-section .flex-col .img-holder {
    height: 300px;
  }
}
body.page-template-tpl-LandingPage2 #partners {
  padding: 30px 0 70px !important;
}
body.page-template-tpl-LandingPage2 #partners .headline {
  font-family: Lato, sans-serif;
  color: #1050a8 !important;
  font-size: 37.5px;
  line-height: 1.51;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}
body.page-template-tpl-LandingPage2 .caterpillars-section {
  padding: 40px 0 100px;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillars-wrapper {
  z-index: 1;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .headline {
  font-family: Lato, sans-serif;
  max-width: 700px;
  color: #1050a8;
  margin: 0 auto;
  font-size: 37.1px;
  line-height: 1.35;
  font-weight: 300;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col {
  flex: 1 1 20%;
  border: 0;
  padding-top: 40px;
  max-width: 250px;
  margin: 35px auto;
  /*  .circles {
      position: relative;

      .big-circle {
        left: calc(50% - 25px);
        width: 50px;
        height: 50px;
        border: 7px solid;
        border-radius: 50%;
        background-color: $white;

        &:before,
        &:after {
          position: absolute;
          content: '';
        }

        &:before {
          top: -25px;
          left: 17px;
          height: 20px;
          border-left: 3px solid #e7e7e7;
          z-index: -1;
        }

        &:after {
          top: 22px;
          border-left: 3px solid;
          border-image-source: linear-gradient(0deg, #fff, #e7e7e7);
          border-image-slice: 1;
          z-index: 0;
          height: 0;

          @include media-breakpoint-up(md) {
            left: 72px;
            height: 370px;
          }

          @include media-breakpoint-up(lg) {
            left: 95px;
            height: 350px;
          }

          @media screen and (min-width: 1200px) {
            left: 115px;
            height: 320px;
          }

        }

        .small-circle {
          left: 6px;
          top: 6px;
          border-radius: 50%;
          width: 25px;
          height: 25px;

          &:before {
            position: absolute;
            content: '';

            height: 10px;
            top: 8px;
            z-index: -1;

            background: none;

            @include media-breakpoint-up(md) {
              background: url("/wp-content/themes/benchmarkanalytics2019/assets/dev/images/dots.png");
              background-position-y: center;
              background-repeat: repeat-x;
              background-size: auto;

              width: 110px;
              background-position-x: -3px;
            }

            @include media-breakpoint-up(lg) {
              width: 180px;
              background-position-x: 0;
            }

            @media screen and (min-width: 1200px) {
              background-position-x: 0;
            }

          }

        }

      }

    }  */
}
@media (min-width: 768px) {
  body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col {
    max-width: 100%;
    margin: 0;
  }
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(2n+1) .img-holder:before {
  border-bottom-color: transparent;
  border-right-color: transparent;
  z-index: -2;
  top: 1.5px;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(2n+1) .img-holder:after {
  z-index: -3;
  border-bottom-color: #e7e7e7;
  border-right-color: #e7e7e7;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(2n) .img-holder:after {
  border-top-color: #e7e7e7;
  border-left-color: #e7e7e7;
  z-index: -3;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(2n) .img-holder:before {
  z-index: -2;
  border-top-color: transparent;
  border-left-color: transparent;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(1) .img-holder:after, body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(1) .img-holder:before {
  border-top-color: #014964;
  border-left-color: #014964;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(1) .circles .big-circle {
  border-color: #014964;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(1) .circles .small-circle {
  background-color: #014964;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(2) .img-holder > img {
  padding: 30px 29.5px;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(2) .img-holder:after, body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(2) .img-holder:before {
  border-bottom-color: #006890;
  border-right-color: #006890;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(2) .circles .big-circle {
  border-color: #006890;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(2) .circles .small-circle {
  background-color: #006890;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(3) .img-holder:after, body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(3) .img-holder:before {
  border-top-color: #007F6D;
  border-left-color: #007F6D;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(3) .circles .big-circle {
  border-color: #007F6D;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(3) .circles .small-circle {
  background-color: #007F6D;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(4) .img-holder > img {
  padding: 30px 29.75px;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(4) .img-holder:after, body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(4) .img-holder:before {
  border-bottom-color: #86C53F;
  border-right-color: #86C53F;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(4) .circles .big-circle {
  border-color: #86C53F;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(4) .circles .small-circle {
  background-color: #86C53F;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(5) .img-holder:after, body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(5) .img-holder:before {
  border-top-color: #86C53F;
  border-left-color: #86C53F;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(5) .circles .big-circle {
  border-color: #86C53F;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(5) .circles .big-circle:after {
  display: none;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(5) .circles .small-circle {
  background-color: #86C53F;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col:nth-of-type(5) .circles .small-circle:before {
  display: none;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .img-holder {
  position: relative;
  border: 0;
  margin: auto;
}
@media (min-width: 768px) {
  body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .img-holder {
    margin: -15px;
  }
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .img-holder:before, body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .img-holder:after {
  position: absolute;
  content: "";
  transform: translateZ(1px) rotate(45deg);
  border-radius: 50%;
  border-style: solid;
  border-width: 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .img-holder > img {
  border: 15px solid transparent;
  border-radius: 50%;
  padding: 30px;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .img-holder .img-shadow {
  background: url("/wp-content/themes/benchmarkanalytics2019/assets/dev/images/shadow.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-28%, -15%);
  width: 100%;
  height: 97%;
  z-index: -2;
}
@media all and (max-width: 992px) and (min-width: 776px) {
  body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .img-holder .img-shadow {
    display: none;
    background: none;
  }
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .title-holder {
  height: 70px;
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .title-holder h4 {
  height: 100%;
  width: 100%;
  font-family: Lato, sans-serif;
  font-size: 17px;
  line-height: 1.07;
  color: #005baa;
  letter-spacing: normal;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
}
@media (min-width: 992px) {
  body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .title-holder h4 {
    font-size: 22.5px;
  }
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .content h6 {
  font-family: Lato, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: #005baa;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .content h6 {
    font-size: 16.5px;
  }
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .content > p {
  font-family: Lato, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.49;
  font-style: oblique;
  color: #005baa;
  margin-top: 5px;
}
@media (min-width: 992px) {
  body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .content > p {
    font-size: 15px;
    margin-top: 0;
  }
}
body.page-template-tpl-LandingPage2 .caterpillars-section .caterpillar-col .description {
  font-family: Lato, sans-serif;
  font-size: 12px;
}
@media (min-width: 768px) {
  body.page-template-tpl-LandingPage2 #caterpillar-text-wrapper {
    padding-left: 10%;
    padding-right: 10%;
  }
  body.page-template-tpl-LandingPage2 #caterpillar-text-wrapper p.bottom-text {
    font-size: 20px;
  }
}

/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Apr 28, 2020, 2:03:19 AM
    Author     : tim
*/
body.page-template-tpl-Tabbed-Form .container .main-content-row {
  padding-top: 30px;
}
body.page-template-tpl-Tabbed-Form .container .main-content-row h1 {
  margin-top: 0;
  font-size: 28px;
}

body.post-type-archive-in_the_news #content .featured-in-the-news {
  padding: 80px 0;
  margin-bottom: 80px;
  border-bottom: 2px solid #4a4a4a;
}
body.post-type-archive-in_the_news #content .featured-in-the-news .item {
  flex: 1 0 20%;
  max-width: 20%;
}
@media screen and (max-width: 993px) {
  body.post-type-archive-in_the_news #content .featured-in-the-news .item {
    flex: 1 0 48%;
    max-width: 48%;
  }
}
body.post-type-archive-in_the_news #content .featured-in-the-news .item .source-logo {
  max-height: 80px;
}
@media screen and (max-width: 498px) {
  body.post-type-archive-in_the_news #content .featured-in-the-news .item .source-logo {
    margin: auto;
  }
}
body.post-type-archive-in_the_news #content .in-the-news-list {
  margin-bottom: 100px;
}
body.post-type-archive-in_the_news #content .in-the-news-list .press-news-listing {
  margin-bottom: 30px;
  padding: 0;
  border-bottom: 1px solid #4d4d4d;
  padding-bottom: 15px;
}
body.post-type-archive-in_the_news #content .in-the-news-list .press-news-listing:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
body.post-type-archive-in_the_news #content .in-the-news-list .press-news-listing .news-date {
  margin-bottom: 0;
}
body.post-type-archive-in_the_news #content .in-the-news-list .press-news-listing .source-logo {
  max-height: 45px;
  display: block;
  margin-bottom: 15px;
}
body.post-type-archive-in_the_news #content .in-the-news-list .press-news-listing .news-link-title {
  margin-bottom: 15px;
  line-height: 1;
  font-size: 1.5rem;
}
body.post-type-archive-in_the_news #content .posts-navigation {
  margin-bottom: 45px;
}
body.post-type-archive-in_the_news #content .posts-navigation .nav-links {
  display: flex;
  justify-content: space-between;
}
body.post-type-archive-in_the_news #content .posts-navigation .nav-links .nav-previous {
  margin-left: auto;
  text-align: right;
  order: 2;
}
body.post-type-archive-in_the_news #content .posts-navigation .nav-links .nav-next {
  margin-right: auto;
  text-align: left;
  order: 1;
}
body.post-type-archive-in_the_news #content .posts-navigation .nav-links .nav-previous,
body.post-type-archive-in_the_news #content .posts-navigation .nav-links .nav-next {
  float: none;
}
body.post-type-archive-in_the_news #content .posts-navigation .nav-links .page-numbers {
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  color: #4a4a4a;
}
body.post-type-archive-in_the_news #content .posts-navigation .nav-links .page-numbers.next {
  padding-right: 15px;
}
body.post-type-archive-in_the_news #content .posts-navigation .nav-links .page-numbers.next:after {
  content: "❯";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
body.post-type-archive-in_the_news #content .posts-navigation .nav-links .page-numbers.previous {
  padding-left: 15px;
}
body.post-type-archive-in_the_news #content .posts-navigation .nav-links .page-numbers.previous:before {
  content: "❮";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

body.single-in_the_news .wp-audio-shortcode {
  height: 80px !important;
  border-radius: 40px;
  padding: 0 40px;
  background-color: #184784;
}
body.single-in_the_news .wp-audio-shortcode .mejs-inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
body.single-in_the_news .wp-audio-shortcode .mejs-controls {
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  background-color: #184784;
}

.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  height: calc(100vh - 60px);
  width: 100%;
  z-index: 1;
}
.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .iacp-event-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00496c;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to right, #00496c 0%, #048a93 49%, #97be3d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00496c", endColorstr="#97be3d", GradientType=1);
  z-index: 1;
  opacity: 0.8;
}
.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .container {
  margin: auto;
}
.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .logos-holder {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .logos-holder .site-logo {
  height: 75px;
  padding: 15px;
}
@media (min-width: 768px) {
  .live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .logos-holder .site-logo {
    height: 150px;
    padding: 30px;
  }
}
.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .logos-holder .event-logo {
  height: 75px;
  padding: 15px;
}
@media (min-width: 768px) {
  .live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .logos-holder .event-logo {
    height: 150px;
    padding: 30px;
  }
}
.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .headline-holder {
  position: relative;
  margin: 0 auto 30px;
  max-width: 600px;
  z-index: 2;
}
.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .headline-holder .overlay-headline {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 576px) {
  .live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .headline-holder .overlay-headline {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .headline-holder .overlay-headline {
    font-size: 60px;
    line-height: 60px;
  }
}
.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .description-holder {
  position: relative;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 30px;
  z-index: 2;
}
@media (min-width: 768px) {
  .live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .description-holder {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .live_events-template-tpl-iacpMainEventPage #iacp-event-overlay .description-holder {
    font-size: 32px;
  }
}
.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay #overlay-close-button {
  position: relative;
  z-index: 1;
  color: #fff;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  margin: 0 auto;
}
.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay #overlay-close-button .line-one,
.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay #overlay-close-button .line-two {
  position: absolute;
  height: 1px;
  width: 30px;
  background-color: #fff;
  top: 18px;
  left: 4px;
}
.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay #overlay-close-button .line-one {
  transform: rotate(45deg);
}
.live_events-template-tpl-iacpMainEventPage #iacp-event-overlay #overlay-close-button .line-two {
  transform: rotate(-45deg);
}
.live_events-template-tpl-iacpMainEventPage .headline-section {
  padding: 80px 0;
}
@media (max-width: 414px) {
  .live_events-template-tpl-iacpMainEventPage .headline-section {
    padding: 40px 0;
  }
}
.live_events-template-tpl-iacpMainEventPage .headline-section .headline {
  font-size: 52px;
  line-height: 1.4;
  color: #104584;
  margin: 0;
  font-weight: 300;
}
@media (max-width: 414px) {
  .live_events-template-tpl-iacpMainEventPage .headline-section .headline {
    font-size: 30px;
  }
}
.live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper {
  background-color: #f1f1f2;
  padding: 90px 150px;
}
@media (max-width: 991px) {
  .live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper {
    padding: 20px 15px;
  }
}
.live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper .event-schedule-in header.section-header .section-headline {
  font-size: 35px;
  color: #104584;
  line-height: 1.5;
  margin-bottom: 28px;
  padding: 0 11%;
}
@media (max-width: 414px) {
  .live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper .event-schedule-in header.section-header .section-headline {
    font-size: 25px;
  }
}
.live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper .event-schedule-in .event-schedule {
  flex: 1 0 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper .event-schedule-in .event-schedule {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
.live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper .event-schedule-in .leadership-series {
  flex: 1 0 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper .event-schedule-in .leadership-series {
    flex: 1 0 100%;
    max-width: 100%;
    margin-top: 50px;
  }
}
.live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper .event-schedule-in .leadership-series .leadership-series-in {
  border: 1px solid #cbcbca;
  background-color: #fff;
  padding: 28px 20px 33px;
  max-height: 510px;
  overflow-x: scroll;
  margin-left: 50px;
}
@media (max-width: 991px) {
  .live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper .event-schedule-in .leadership-series .leadership-series-in {
    margin-left: 0;
  }
}
.live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper .event-schedule-in .leadership-series .leadership-series-in .series-wrap {
  height: auto;
  margin: 0 0 60px;
}
.live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper .event-schedule-in .leadership-series .leadership-series-in .series-wrap .series {
  position: relative;
  height: 165px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  max-width: 165px;
  margin: 0 auto;
}
.live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper .event-schedule-in .leadership-series .leadership-series-in .series-wrap .series:hover {
  cursor: pointer;
}
.live_events-template-tpl-iacpMainEventPage .event-schedule-wrapper .event-schedule-in .leadership-series .leadership-series-in .series-wrap .series .speakers_name {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  font-size: 14px;
  color: #fff;
  background-color: #104583;
}
.live_events-template-tpl-iacpMainEventPage .live-session-video-wrapper {
  position: relative;
  padding-bottom: calc(100vh - 211px);
  height: 0;
}
.live_events-template-tpl-iacpMainEventPage .live-session-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.live_events-template-tpl-iacpMainEventPage .modal-dialog .modal-footer {
  border: none;
}
.live_events-template-tpl-iacpMainEventPage .modal-dialog .modal-footer .btn-branded {
  border-color: #199496;
  background-color: #199496;
  padding: 12px;
}
.live_events-template-tpl-iacpMainEventPage .modal-dialog .modal-footer .btn-branded:hover {
  border-color: #78b650;
  background-color: #78b650;
}
@media (min-width: 768px) {
  .live_events-template-tpl-iacpMainEventPage .leadershipModal .modal-dialog {
    transform: translate(0, 50%);
  }
}
.live_events-template-tpl-iacpMainEventPage .leadershipModal .modal-dialog .speaker-title {
  font-weight: bold;
  display: flex;
}
.live_events-template-tpl-iacpMainEventPage .leadershipModal .modal-dialog .speaker-title.last {
  padding-bottom: 20px;
}
.live_events-template-tpl-iacpMainEventPage .leadershipModal .modal-dialog .close:hover {
  background-color: #fff;
}
.live_events-template-tpl-iacpMainEventPage .leadershipModal .modal-dialog .session-description {
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  .live_events-template-tpl-iacpMainEventPage #sessionModal .modal-dialog {
    transform: translate(0, 50%);
  }
}
.live_events-template-tpl-iacpMainEventPage #sessionModal .modal-title {
  font-weight: 400;
  width: 100%;
}

.live_events-template-tpl-iacpEventSchdule .schedule-tab-wrapper {
  max-height: calc(100vh - 240px);
  margin-bottom: 90px;
}

.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content {
  padding: 80px 0;
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content header {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .live_events-template-tpl-iacpLeadershipSeries .leadership-series-content header {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .live_events-template-tpl-iacpLeadershipSeries .leadership-series-content header {
    margin-bottom: 60px;
  }
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content header .headline {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  color: #104584;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .live_events-template-tpl-iacpLeadershipSeries .leadership-series-content header .headline {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .live_events-template-tpl-iacpLeadershipSeries .leadership-series-content header .headline {
    font-size: 50px;
  }
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content header .headline small {
  font-size: 20px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .live_events-template-tpl-iacpLeadershipSeries .leadership-series-content header .headline small {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .live_events-template-tpl-iacpLeadershipSeries .leadership-series-content header .headline small {
    font-size: 40px;
  }
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper {
  border: 1px solid #cbcbca;
  max-height: 1000px;
  overflow-y: scroll;
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series {
  padding: 20px 30px;
  background-color: #fff;
}
@media (min-width: 992px) {
  .live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series {
    padding: 40px 60px;
  }
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series:nth-of-type(2n + 1) {
  background-color: #f1f1f2;
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series .leadership-avatar-holder {
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto 15px;
}
@media (min-width: 992px) {
  .live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series .leadership-avatar-holder {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    margin: 0 30px 0 0;
  }
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series .series-content {
  flex: 1 0 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series .series-content {
    flex: 1 0 50%;
    max-width: calc(100% - 245px);
    margin: 0 0 0 30px;
  }
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series .series-content .leadership-info .leadership-name {
  font-weight: 400;
  color: #104584;
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series .series-content .session-info .session-title {
  font-weight: 400;
  color: #5f6062;
  margin-bottom: 20px;
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series .series-content .session-info .session-description {
  font-weight: 400;
  color: #5f6062;
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series .session-cta {
  margin: auto 0 auto 15px;
}
@media (min-width: 992px) {
  .live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series .session-cta {
    margin: auto 0 auto 30px;
  }
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series .session-cta .session-video-popup-trigger {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  background-color: #fff;
  color: #aeb0b2;
  border: 1px solid #aeb0b2;
  border-radius: 25px;
  box-shadow: 0 0 10px 0 rgba(174, 176, 178, 0.75);
}
.live_events-template-tpl-iacpLeadershipSeries .leadership-series-content .leadership-series-wrapper .leadership-series .session-cta .session-video-popup-trigger i.fa {
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 49%;
  left: 54%;
  transform: translate(-50%, -50%);
}
.live_events-template-tpl-iacpLeadershipSeries div[role=dialog][id^=wistia] {
  position: absolute;
  top: 0;
  left: 0;
}

.global-hero.iacp-lp {
  margin-bottom: 0;
}
.global-hero.iacp-lp .hero-wrapper {
  padding-bottom: 220px;
}
.global-hero.iacp-lp .hero-content-wrapper .hero-title {
  display: none;
}
.flexible-columns-panel.iacp-lp {
  background-color: #041145 !important;
}
.flexible-columns-panel.iacp-lp .section-headings .section-title {
  display: inline-block;
  padding: 10px 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #D8EF89 !important;
  border-radius: 4px;
  margin-bottom: 20px;
}
.flexible-columns-panel.iacp-lp .section-subtitle {
  font-weight: 400;
}
.flexible-columns-panel.iacp-lp .section-content {
  max-width: 550px;
  margin: 20px auto 40px;
}
.flexible-columns-panel.iacp-lp .section-content * {
  font-size: 1.25rem;
}
.flexible-columns-panel.iacp-lp .fc-panel-column h3 {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}
.flexible-columns-panel.iacp-lp .fc-panel-column .text-center {
  width: 100%;
  margin: auto;
  text-align: center;
}
.flexible-columns-panel.iacp-lp .fc-panel-column .text-center * {
  text-align: center;
}
.flexible-columns-panel.iacp-lp .fc-panel-column .text-center a {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 400;
  color: #D8EF89;
  text-transform: uppercase;
  background-color: #5415A0;
  padding: 8px 15px;
  border-radius: 4px;
  margin-top: 5px;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
.carousel-caption {
  position: relative;
  left: 0;
  right: 0;
  color: #4d4d4d;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  background: none;
  position: relative;
}

.carousel-control-prev-icon:before, .carousel-control-next-icon:before {
  font-family: FontAwesome;
  color: #4d4d4d;
  left: -5px;
  position: absolute;
  top: 0;
  content: "\f053";
}

.carousel-control-next-icon:before {
  content: "\f054";
}

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

.slick-dots {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  line-height: 1;
}
.slick-dots li + li {
  margin-left: 10px;
}
.slick-dots button {
  font-size: 0;
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 8px;
  border-color: transparent;
  background-color: rgba(32, 131, 182, 0.6);
}
.slick-dots button:hover {
  background-color: #2083b6;
}
.slick-dots li.slick-active button {
  background-color: #2083b6;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
.bg-color-white {
  background-color: #fff !important;
}

.bg-color-core-brand-color {
  background-color: #81b10d !important;
}

.bg-color-secondary-brand-color {
  background-color: #2083B6 !important;
}

.bg-color-black {
  background-color: #000 !important;
}

.bg-color-lightblue {
  background-color: #36aef3 !important;
}

.bg-color-red {
  background-color: #FD5D4B !important;
}

.bg-color-grey {
  background-color: #686868 !important;
}

.bg-color-darkgrey {
  background-color: #4a4a4a !important;
}

.bg-color-navyblue {
  background-color: #184784 !important;
}

.bg-color-lightgrey {
  background-color: #f2f2f1 !important;
}

.bg-color-headinggrey {
  background-color: #818286 !important;
}

.bg-color-royal-blue {
  background-color: #1050a8 !important;
}

.bg-color-deep-blue {
  background-color: #264ca0 !important;
}

.bg-color-sea-blue {
  background-color: #118bc9 !important;
}

.bg-color-mint {
  background-color: #009497 !important;
}

.bg-color-dark-cerulean {
  background-color: #09547f !important;
}

.text-color-white *:not(.cta-button):not(a) {
  color: #fff;
}

h1.text-color-white {
  color: #fff !important;
}

h2.text-color-white {
  color: #fff !important;
}

h3.text-color-white {
  color: #fff !important;
}

.text-color-core-brand-color *:not(.cta-button):not(a) {
  color: #81b10d;
}

h1.text-color-core-brand-color {
  color: #81b10d !important;
}

h2.text-color-core-brand-color {
  color: #81b10d !important;
}

h3.text-color-core-brand-color {
  color: #81b10d !important;
}

.text-color-secondary-brand-color *:not(.cta-button):not(a) {
  color: #2083B6;
}

h1.text-color-secondary-brand-color {
  color: #2083B6 !important;
}

h2.text-color-secondary-brand-color {
  color: #2083B6 !important;
}

h3.text-color-secondary-brand-color {
  color: #2083B6 !important;
}

.text-color-black *:not(.cta-button):not(a) {
  color: #000;
}

h1.text-color-black {
  color: #000 !important;
}

h2.text-color-black {
  color: #000 !important;
}

h3.text-color-black {
  color: #000 !important;
}

.text-color-lightblue *:not(.cta-button):not(a) {
  color: #36aef3;
}

h1.text-color-lightblue {
  color: #36aef3 !important;
}

h2.text-color-lightblue {
  color: #36aef3 !important;
}

h3.text-color-lightblue {
  color: #36aef3 !important;
}

.text-color-red *:not(.cta-button):not(a) {
  color: #FD5D4B;
}

h1.text-color-red {
  color: #FD5D4B !important;
}

h2.text-color-red {
  color: #FD5D4B !important;
}

h3.text-color-red {
  color: #FD5D4B !important;
}

.text-color-grey *:not(.cta-button):not(a) {
  color: #686868;
}

h1.text-color-grey {
  color: #686868 !important;
}

h2.text-color-grey {
  color: #686868 !important;
}

h3.text-color-grey {
  color: #686868 !important;
}

.text-color-darkgrey *:not(.cta-button):not(a) {
  color: #4a4a4a;
}

h1.text-color-darkgrey {
  color: #4a4a4a !important;
}

h2.text-color-darkgrey {
  color: #4a4a4a !important;
}

h3.text-color-darkgrey {
  color: #4a4a4a !important;
}

.text-color-navyblue *:not(.cta-button):not(a) {
  color: #184784;
}

h1.text-color-navyblue {
  color: #184784 !important;
}

h2.text-color-navyblue {
  color: #184784 !important;
}

h3.text-color-navyblue {
  color: #184784 !important;
}

.text-color-lightgrey *:not(.cta-button):not(a) {
  color: #f2f2f1;
}

h1.text-color-lightgrey {
  color: #f2f2f1 !important;
}

h2.text-color-lightgrey {
  color: #f2f2f1 !important;
}

h3.text-color-lightgrey {
  color: #f2f2f1 !important;
}

.text-color-headinggrey *:not(.cta-button):not(a) {
  color: #818286;
}

h1.text-color-headinggrey {
  color: #818286 !important;
}

h2.text-color-headinggrey {
  color: #818286 !important;
}

h3.text-color-headinggrey {
  color: #818286 !important;
}

.text-color-royal-blue *:not(.cta-button):not(a) {
  color: #1050a8;
}

h1.text-color-royal-blue {
  color: #1050a8 !important;
}

h2.text-color-royal-blue {
  color: #1050a8 !important;
}

h3.text-color-royal-blue {
  color: #1050a8 !important;
}

.text-color-deep-blue *:not(.cta-button):not(a) {
  color: #264ca0;
}

h1.text-color-deep-blue {
  color: #264ca0 !important;
}

h2.text-color-deep-blue {
  color: #264ca0 !important;
}

h3.text-color-deep-blue {
  color: #264ca0 !important;
}

.text-color-sea-blue *:not(.cta-button):not(a) {
  color: #118bc9;
}

h1.text-color-sea-blue {
  color: #118bc9 !important;
}

h2.text-color-sea-blue {
  color: #118bc9 !important;
}

h3.text-color-sea-blue {
  color: #118bc9 !important;
}

.text-color-mint *:not(.cta-button):not(a) {
  color: #009497;
}

h1.text-color-mint {
  color: #009497 !important;
}

h2.text-color-mint {
  color: #009497 !important;
}

h3.text-color-mint {
  color: #009497 !important;
}

.text-color-dark-cerulean *:not(.cta-button):not(a) {
  color: #09547f;
}

h1.text-color-dark-cerulean {
  color: #09547f !important;
}

h2.text-color-dark-cerulean {
  color: #09547f !important;
}

h3.text-color-dark-cerulean {
  color: #09547f !important;
}

.bg-color-gradient-branded {
  background: #00496c;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwNDk2YyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ5JSIgc3RvcC1jb2xvcj0iIzA0OGE5MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM5N2JlM2QiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to right, #00496c 0%, #048a93 49%, #97be3d 100%);
}

section.panel-section .section-headings h1.section-title,
section.panel-section .section-headings h2.section-title {
  margin-bottom: 60px;
}
section.panel-section .section-headings h3.section-subtitle {
  margin: 40px 0;
}
section.panel-section ul {
  margin: 0 0 1.5em 0;
  overflow: auto;
}
section.panel-section ul li {
  padding-bottom: 12px;
}

@media (max-width: 991.98px) {
  .cta-panel h2 {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .cta-panel h2 {
    font-size: 18px;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .cta-panel .link {
    text-align: center;
  }
}

.custom-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.text-left-image-right-panel.panel-background-image {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.text-left-image-right-panel .second-background {
  padding: 86px 84px 100px 100px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
}
@media (max-width: 992px) {
  .text-left-image-right-panel .container .container-after {
    margin-top: 25px;
  }
}
.text-left-image-right-panel .container .container-after .tlir-cta {
  margin-top: 25px;
}
.text-left-image-right-panel .container .container-after .tlir-cta a {
  font-weight: 300;
  line-height: 1.29;
  color: #fff;
}
@media (min-width: 992px) {
  .text-left-image-right-panel .container .container-after .tlir-cta {
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .text-left-image-right-panel .container .tlir-container .mw-150 {
    flex: 1 1 80% !important;
  }
}
@media (min-width: 992px) {
  .text-left-image-right-panel .container .tlir-container .tlir-text-col {
    flex: 1 1 50%;
    margin-top: 0;
  }
}
.text-left-image-right-panel .container .tlir-container .tlir-text-col.top {
  justify-content: flex-start;
}
.text-left-image-right-panel .container .tlir-container .tlir-text-col.center {
  justify-content: center;
}
.text-left-image-right-panel .container .tlir-container .tlir-text-col .tlir-title h1 {
  font-size: 2rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: normal;
  text-align: left;
  color: #184784;
  margin: 0;
}
.text-left-image-right-panel .container .tlir-container .tlir-text-col .tlir-subtitle h2 {
  font-size: 27px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  font-weight: 300;
  text-align: left;
  color: #184784;
  margin: 0;
}
.text-left-image-right-panel .container .tlir-container .tlir-image-col {
  flex: 1 1 50%;
}
@media (max-width: 992px) {
  .text-left-image-right-panel .container .tlir-container .tlir-image-col {
    order: 1;
  }
}
.text-left-image-right-panel .container .tlir-container .tlir-image-col.top {
  justify-content: flex-start;
}
.text-left-image-right-panel .container .tlir-container .tlir-image-col.center {
  justify-content: center;
}
.text-left-image-right-panel img.img-mobile {
  display: none;
  max-width: 540px;
  width: auto !important;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .text-left-image-right-panel img.img-mobile {
    display: block;
  }
  .text-left-image-right-panel img.img-mobile + img {
    display: none;
  }
}

.page-id-197 .text-left-image-right-classic-panel .content-holder h3 + p {
  margin-top: 40px;
}
.page-id-197 .text-left-image-right-classic-panel .rl-after-columns-text {
  margin-top: 20px;
}
.page-id-197 #panel-1.text-left-image-right-panel .panel-text p {
  padding: 0;
}

.text-right-image-left-panel {
  position: relative;
}
.text-right-image-left-panel .panel-background-image {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.text-right-image-left-panel .text-color-white p, .text-right-image-left-panel .text-color-white ul, .text-right-image-left-panel .text-color-white li, .text-right-image-left-panel .text-color-white h1, .text-right-image-left-panel .text-color-white h2, .text-right-image-left-panel .text-color-white h3 {
  color: #fff;
}
@media (max-width: 992px) {
  .text-right-image-left-panel .container .container-after {
    margin-top: 25px;
  }
}
.text-right-image-left-panel .container .container-after .tril-cta {
  margin-top: 25px;
}
.text-right-image-left-panel .container .container-after .tril-cta a {
  font-weight: 300;
  line-height: 1.29;
  color: #fff;
}
@media (min-width: 992px) {
  .text-right-image-left-panel .container .container-after .tril-cta {
    margin-top: 50px;
  }
}
.text-right-image-left-panel .container .tril-container .tril-image-col {
  flex: 1 1 50%;
}
@media (max-width: 992px) {
  .text-right-image-left-panel .container .tril-container .tril-image-col {
    order: 1;
  }
}
.text-right-image-left-panel .container .tril-container .tril-image-col.top {
  justify-content: flex-start;
}
.text-right-image-left-panel .container .tril-container .tril-image-col.center {
  justify-content: center;
}
@media (min-width: 992px) {
  .text-right-image-left-panel .container .tril-container .tril-text-col {
    flex: 1 1 50%;
    margin-top: 0;
  }
}
.text-right-image-left-panel .container .tril-container .tril-text-col.top {
  justify-content: flex-start;
}
.text-right-image-left-panel .container .tril-container .tril-text-col.center {
  justify-content: center;
}
.text-right-image-left-panel .container .tril-container .tril-text-col .tril-title h1 {
  font-size: 2rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: normal;
  text-align: left;
  color: #184784;
  margin: 0;
}
.text-right-image-left-panel .container .tril-container .tril-text-col .tril-subtitle h2 {
  font-size: 1.6875rem;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  font-weight: 300;
  text-align: left;
  color: #184784;
  margin: 0;
}
.text-right-image-left-panel .container .tril-container .tril-image-comp-col {
  flex: 1 1 33%;
}
.text-right-image-left-panel .container .tril-container .tril-text-comp-col {
  flex: 1 1 66%;
}
@media (min-width: 992px) {
  .text-right-image-left-panel.tree-section .container .tril-container .tril-image-col {
    flex-basis: 40% !important;
  }
}
@media (min-width: 992px) {
  .text-right-image-left-panel.tree-section .container .tril-container .tril-text-col {
    margin-left: 30px;
    flex-basis: calc(60% - 30px) !important;
  }
}
.text-right-image-left-panel.tree-section .container .tril-container .tril-text-col .tril-title h1 {
  font-size: 2rem;
  font-weight: 300;
}
.text-right-image-left-panel img.img-mobile {
  display: none;
  max-width: 540px;
  width: auto !important;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .text-right-image-left-panel img.img-mobile {
    display: block;
  }
  .text-right-image-left-panel img.img-mobile + img {
    display: none;
  }
}

.three-columns-panel .three-columns-panel-column {
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .three-columns-panel .three-columns-panel-column {
    margin-bottom: 0;
  }
}

/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Dec 20, 2018, 1:46:37 PM
    Author     : tim
*/
section.resources-panel .resource-col {
  display: flex;
}
section.resources-panel .resource-col .resource-card {
  margin-bottom: 20px;
  width: 100%;
  border: 1px solid #000;
  position: relative;
}
section.resources-panel .resource-col .resource-card .text-holder {
  padding-left: 0 !important;
}
section.resources-panel .resource-col .resource-card .text-holder .resource-type {
  color: #37828C;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  padding-bottom: 9px;
}
section.resources-panel .resource-col .resource-card .text-holder .card-title {
  line-height: 22px;
}
section.resources-panel .resource-col .resource-card .text-holder .card-title a {
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  display: block;
  color: #184784 !important;
}
section.resources-panel .resource-col .resource-card .text-holder .card-title a:hover {
  color: #36aef3;
  text-decoration: none;
}
section.resources-panel .resource-col .resource-card .description, section.resources-panel .resource-col .resource-card a.res-link-for-resource {
  line-height: 1.2;
  font-weight: 300;
  font-size: 14px;
}
section.resources-panel .resource-col .resource-card a.res-link-for-resource {
  display: block;
  padding-top: 8px;
  color: #37828C;
  text-transform: uppercase;
  position: absolute;
  bottom: 0.5em;
  width: 100%;
}

/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jan 16, 2019, 3:11:52 PM
    Author     : tim
*/
.faqs-panel .faq-row {
  margin-bottom: 20px;
}
.faqs-panel .faq-row a.faq-question-button {
  text-transform: none;
}

/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 24, 2019, 2:06:59 PM
    Author     : tim
*/
.core-pillars .fc-panel-column {
  background: #eeeded;
}
.core-pillars .fc-panel-column .bg-white-full {
  background: #fff;
  margin: -12px -12px 30px;
  padding: 12px;
}

/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Nov 15, 2018, 4:13:03 PM
    Author     : tim
*/
section.our-people-panel {
  /* Other style */
}
section.our-people-panel h2 {
  color: #184784;
  margin-bottom: 30px !important;
  padding-bottom: 0 !important;
}
@media (max-width: 992px) {
  section.our-people-panel h2 {
    margin-bottom: 0 !important;
  }
}
section.our-people-panel .read-more-state {
  display: none;
}
section.our-people-panel .read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
  transition: 0.25s ease;
  overflow: hidden;
}
section.our-people-panel .read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}
section.our-people-panel .read-more-state ~ .read-more-trigger:before {
  content: "Learn more";
}
section.our-people-panel .read-more-state:checked ~ .read-more-trigger:before {
  content: "Show less";
}
section.our-people-panel .read-more-trigger {
  cursor: pointer;
  display: inline-block;
  padding: 0 0.5em;
  color: #666;
  font-size: 1rem;
  line-height: 2;
  border: 2px solid #464547;
  color: #464547;
  border-radius: 0.25em;
  margin-top: 10px;
  z-index: 10000;
  position: relative;
}
section.our-people-panel .person-col {
  margin: 0 !important;
  padding: 30px;
  background-color: #fff;
  border-bottom: 2px solid #cacaca;
  border-right: 2px solid #cacaca;
  text-align: center;
}
section.our-people-panel .person-col:nth-child(3n) {
  border-right: 0;
}
section.our-people-panel .person-col:nth-child(10), section.our-people-panel .person-col:nth-child(11), section.our-people-panel .person-col:nth-child(12) {
  border-bottom: 0;
}
@media (max-width: 992px) {
  section.our-people-panel .person-col {
    border-right: 0;
    border-bottom: 2px solid #cacaca !important;
  }
}
section.our-people-panel .person-col .person-content-col {
  /* 
  blockquote.person-quote {
    margin-bottom: 18px;
    margin-left: 0;
    @include font-size(18);
    line-height: 24px;
    font-family: "Oswald", "Open Sans", sans-serif;
    font-weight: 300;
    background-color: $color__brand-darkgrey;
    border-radius: 6px;
    padding: 16px 20px 20px;
    width: 85%;
    color: #fff;

    &:before {
      font-family: FontAwesome;
      content: '\f10d';
      color: $color__brand-green;
      padding-right: 4px;
    }

    &:after {
      font-family: FontAwesome;
      content: '\f10e';
      color: $color__brand-green;
      padding-left: 4px;
    }
  }
  */
}
section.our-people-panel .person-col .person-content-col h4 {
  padding: 18px 0 9px 0;
  font-size: 1.625rem;
  color: #184784;
  font-weight: 300;
  margin-bottom: 0;
  white-space: nowrap;
}
@media (max-width: 992px) {
  section.our-people-panel .person-col .person-content-col h4 {
    font-size: 1.375rem;
  }
}
section.our-people-panel .person-col .person-content-col h5 {
  padding: 2px 0;
  font-size: 1.125rem;
  color: #808285;
}
@media (max-width: 992px) {
  section.our-people-panel .person-col .person-content-col h5 {
    font-size: 1rem;
  }
}
section.our-people-panel .modal-body,
section.our-people-panel .modal-title {
  font-weight: 400;
}
section.our-people-panel .modal-body {
  padding: 30px 30px 0 30px;
}
section.our-people-panel .modal-footer button {
  font-size: 0.875rem;
}

/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jun 12, 2019, 12:53:04 PM
    Author     : tim
*/
.two-column-table-panel .grid-table {
  padding: 6px;
  background: #b8c4d0;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2I4YzRkMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzZjN2I5NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiOGM0ZDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to right, #b8c4d0 0%, #6c7b94 50%, #b8c4d0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b8c4d0", endColorstr="#b8c4d0",GradientType=1 );
}
.two-column-table-panel .grid-table table {
  margin-bottom: 0;
}
.two-column-table-panel .grid-table table td {
  background-color: #fff;
}
@media (max-width: 991.98px) {
  .two-column-table-panel .grid-table table td {
    vertical-align: top;
  }
}
.two-column-table-panel .grid-table table td.tdleft {
  width: 120px;
  padding: 30px 10px 30px 20px;
}
.two-column-table-panel .grid-table table td.tdright {
  max-width: 300px;
  padding: 30px 20px 30px 10px;
}

body.page-template-tpl-CustomPanels .global-hero.lms-global-hero {
  background-color: #f2f2f1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  background-position-y: 380px;
}
@media screen and (min-width: 348px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero {
    background-position-y: 320px;
  }
}
@media screen and (min-width: 376px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero {
    background-position-y: 270px;
  }
}
@media screen and (min-width: 420px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero {
    background-position-y: 260px;
  }
}
@media screen and (min-width: 471px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero {
    background-position-y: 220px;
  }
}
@media (min-width: 768px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero {
    background-size: auto;
    background-position-y: 160px;
  }
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero {
    background-size: 50%;
    background-position: right center;
  }
}
@media screen and (min-width: 1250px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero {
    background-size: auto;
  }
}
@media screen and (min-width: 1600px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero {
    background-position-x: 85%;
  }
}
@media screen and (min-width: 1800px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero {
    background-position-x: 75%;
  }
}
body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero {
  padding: 0;
  padding-top: 170px;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero {
    padding-top: 0;
  }
}
body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .hero-wrapper {
  padding: 30px 0;
}
body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container {
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 1200px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container {
    padding-left: 0;
  }
}
body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper {
  max-width: 100%;
  margin: 0;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper {
    padding: 0 15px 0 0;
    margin: 0 auto 0 0;
    max-width: 50%;
  }
}
body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
  text-align: left;
  text-shadow: none;
  font-family: "Lato", sans-serif;
  font-size: 38.3px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: 0.38px;
  padding: 30px 0 0;
  color: #0b487c !important;
  margin-top: -200px;
  margin-bottom: 300px;
}
@media screen and (min-width: 360px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
    margin-bottom: 320px;
  }
}
@media screen and (min-width: 380px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
    margin-bottom: 350px;
  }
}
@media screen and (min-width: 410px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
    margin-bottom: 370px;
  }
}
@media screen and (min-width: 460px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
    margin-bottom: 400px;
  }
}
@media screen and (min-width: 475px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
    margin-bottom: 430px;
  }
}
@media screen and (min-width: 510px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
    margin-bottom: 460px;
  }
}
@media screen and (min-width: 550px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
    margin-bottom: 500px;
  }
}
@media screen and (min-width: 600px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
    margin-bottom: 540px;
  }
}
@media screen and (min-width: 640px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
    margin-bottom: 580px;
  }
}
@media screen and (min-width: 700px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
    margin-bottom: 630px;
  }
}
@media (min-width: 768px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
    margin-bottom: 600px;
  }
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
    margin: 0 0 20px;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper .hero-title {
    max-width: 355px;
  }
}
@media (min-width: 1200px) {
  body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper p {
    max-width: 460px;
  }
}
body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper p b, body.page-template-tpl-CustomPanels .global-hero.lms-global-hero.hero .container .hero-content-wrapper p strong {
  font-weight: 400;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .section-headings,
body.page-template-tpl-CustomPanels .lms-repeater-block .section-headings {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .section-headings,
  body.page-template-tpl-CustomPanels .lms-repeater-block .section-headings {
    padding-bottom: 40px;
  }
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .section-headings h2,
body.page-template-tpl-CustomPanels .lms-repeater-block .section-headings h2 {
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  color: #184784;
  margin-bottom: 30px;
  font-size: 25px;
  text-align: center !important;
}
@media (min-width: 768px) {
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .section-headings h2,
  body.page-template-tpl-CustomPanels .lms-repeater-block .section-headings h2 {
    font-size: 27px;
    max-width: 550px;
    margin: 0 auto;
  }
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .section-headings .section-content,
body.page-template-tpl-CustomPanels .lms-repeater-block .section-headings .section-content {
  max-width: 765px;
  margin: 45px auto 0;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .section-headings .section-content p,
body.page-template-tpl-CustomPanels .lms-repeater-block .section-headings .section-content p {
  text-align: left;
}
body.page-template-tpl-CustomPanels .lms-text-right-image-left .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-text-right-image-left .container .tril-container .tril-image-col {
    flex: 1 1 calc(35% - 25px);
    margin-right: 25px;
  }
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-text-right-image-left .container .tril-container .tril-image-col .tril-image {
    padding: 0 25px 0 0;
  }
}
body.page-template-tpl-CustomPanels .lms-text-right-image-left .container .tril-container .tril-text-col {
  margin-top: 0;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-text-right-image-left .container .tril-container .tril-text-col {
    flex: 1 1 calc(65% - 25px);
    margin-left: 25px;
  }
}
body.page-template-tpl-CustomPanels .lms-text-right-image-left .container .tril-container .tril-text-col .tril-title h1 {
  font-size: 2rem;
}
body.page-template-tpl-CustomPanels .lms-text-right-image-left .container .tril-container .tril-text-col .tril-subtitle h2 {
  font-size: 1.6875rem;
}
body.page-template-tpl-CustomPanels .lms-text-right-image-left .container .tril-container .tril-text-col .tril-content p strong {
  font-weight: 400;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .section-headings h2 {
  font-size: 19px;
}
@media (min-width: 576px) {
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .section-headings h2 {
    font-size: 25px;
  }
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .section-headings .section-content p {
  text-align: left;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder {
  margin: 30px 0;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder {
    margin: 0;
  }
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column {
  width: 280px;
  padding: 0 0 10px;
  margin: 0 0 20px;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column {
    flex: 1 1 calc(33% - 5px);
    margin: 0 10px;
  }
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column:before {
  content: "";
  position: absolute;
  z-index: 1;
  height: 100%;
  background-color: #e6e6e6;
  left: 40px;
  width: calc(100% - 80px);
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column:before {
    left: 20px;
    width: calc(100% - 40px);
  }
}
@media (min-width: 1200px) {
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column:before {
    left: 40px;
    width: calc(100% - 80px);
  }
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-title {
  z-index: 2;
  padding: 20px 0 0;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-title h2 {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.42;
  color: #32449E;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-title h2 {
    font-size: 27px;
  }
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-title h2:hover {
  cursor: pointer;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-title h2::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "FontAwesome";
  font-weight: 400;
  content: "\f106";
  color: #32449e;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-title h2.collapsed::after {
  content: "\f107";
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container {
  z-index: 2;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder {
  text-align: center;
  margin: 15px 0 35px;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder .fcr-subtitle {
  padding: 10px 20px;
  margin-bottom: 0;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder .fcr-subtitle .triangle-bottom,
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder .fcr-subtitle .triangle-top {
  position: absolute;
  width: 40px;
  height: 20px;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder .fcr-subtitle .triangle-bottom,
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder .fcr-subtitle .triangle-top {
    width: 20px;
  }
}
@media (min-width: 1200px) {
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder .fcr-subtitle .triangle-bottom,
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder .fcr-subtitle .triangle-top {
    width: 40px;
  }
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder .fcr-subtitle .triangle-bottom {
  right: 0;
  bottom: -20px;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder .fcr-subtitle .triangle-top {
  left: 0;
  top: -20px;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder .fcr-subtitle h3 {
  color: #fff;
  line-height: 1.42;
  letter-spacing: normal;
  text-align: center;
  text-transform: capitalize;
  white-space: nowrap;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 20px;
}
@media (min-width: 1200px) {
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder .fcr-subtitle h3 {
    font-size: 25px;
  }
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder .fcr-subtitle h3::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "FontAwesome";
  font-weight: 400;
  content: "\f106";
  color: #fff;
  position: absolute;
  right: 9px;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder .fcr-subtitle h3.collapsed::after {
  content: "\f107";
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(1) .fcr-subtitle {
  background-color: #0084AA;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(1) .fcr-subtitle .triangle-top {
  background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #007074 50%, #003E4E 100%);
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(1) .fcr-subtitle .triangle-bottom {
  background: linear-gradient(to top left, transparent 0%, transparent 50%, #007074 50%, #003E4E 100%);
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(2) .fcr-subtitle {
  background-color: #1C8586;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(2) .fcr-subtitle .triangle-top {
  background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #326A6F 50%, #133739 100%);
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(2) .fcr-subtitle .triangle-bottom {
  background: linear-gradient(to top left, transparent 0%, transparent 50%, #326A6F 50%, #133739 100%);
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(3) .fcr-subtitle {
  background-color: #5CAE7E;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(3) .fcr-subtitle .triangle-top {
  background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #4C8472 50%, #284A3F 100%);
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(3) .fcr-subtitle .triangle-bottom {
  background: linear-gradient(to top left, transparent 0%, transparent 50%, #4C8472 50%, #284A3F 100%);
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(4) .fcr-subtitle {
  background-color: #84BC64;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(4) .fcr-subtitle .triangle-top {
  background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #76915D 50%, #3A4C2A 100%);
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(4) .fcr-subtitle .triangle-bottom {
  background: linear-gradient(to top left, transparent 0%, transparent 50%, #76915D 50%, #3A4C2A 100%);
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(5) .fcr-subtitle {
  background-color: #A2CF50;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(5) .fcr-subtitle .triangle-top {
  background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #69864E 50%, #3D4E2B 100%);
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content-container .fcr-content-holder:nth-child(5) .fcr-subtitle .triangle-bottom {
  background: linear-gradient(to top left, transparent 0%, transparent 50%, #69864E 50%, #3D4E2B 100%);
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-title-content,
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content {
  z-index: 2;
  padding: 0 20px;
  margin: 20px 0 0;
  max-width: calc(100% - 80px);
  margin-left: 40px;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-title-content,
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content {
    max-width: calc(100% - 40px);
    margin-left: 20px;
  }
}
@media (min-width: 1200px) {
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-title-content,
  body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content {
    max-width: calc(100% - 80px);
    margin-left: 40px;
  }
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-title-content ul,
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content ul {
  margin: 0;
}
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-title-content ul li,
body.page-template-tpl-CustomPanels .lms-flexible-columns-repeater .fcr-container .fcr-columns-holder .fcr-column .fcr-content ul li {
  color: #424242;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-repeater-block .section-headings {
    margin-left: 0;
  }
}
body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-items {
  margin: 0 auto;
  max-width: 800px;
}
body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-items .repeater-item {
  background-color: #fff;
  margin: 0 0 15px;
}
body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-items .repeater-item .repeater-head {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  height: 100px;
}
@media (min-width: 768px) {
  body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-items .repeater-item .repeater-head {
    flex: 1 1 40%;
    background-size: auto;
    height: auto;
  }
}
body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-items .repeater-item .repeater-head .repeater-title {
  flex: 1 1 55%;
  padding: 0 0 0 20px;
}
body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-items .repeater-item .repeater-head .repeater-title h3 {
  font-size: 18.8px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.16;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
}
body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-items .repeater-item .repeater-head .repeater-icon {
  text-align: center;
  flex: 1 1 45%;
}
@media (min-width: 768px) {
  body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-items .repeater-item .repeater-head .repeater-icon {
    text-align: left;
  }
}
@media (min-width: 768px) {
  body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-items .repeater-item .repeater-body {
    flex: 1 1 60%;
  }
}
body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-items .repeater-item .repeater-body .repeater-content {
  padding: 20px;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-items .repeater-item .repeater-body .repeater-content {
    padding: 20px 100px 20px 20px;
  }
}
body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-items .repeater-item .repeater-body .repeater-content p {
  line-height: 1.25;
  color: #4d4d4d;
  margin-bottom: 0;
}
body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-texts {
  margin-top: 55px;
}
body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-texts a.repeater-text {
  background-color: #9bd000;
  max-width: 480px;
  margin: 0 auto 25px;
  border-radius: 20px;
  padding: 8px 0;
  font-weight: 400;
  line-height: 1.88;
  text-align: center;
  color: #3b3b3b;
  font-size: 14px;
}
@media screen and (min-width: 400px) {
  body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-texts a.repeater-text {
    min-width: 380px;
  }
}
@media (min-width: 576px) {
  body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-texts a.repeater-text {
    min-width: 480px;
  }
}
@media (min-width: 768px) {
  body.page-template-tpl-CustomPanels .lms-repeater-block .repeater-block-container .repeater-texts a.repeater-text {
    font-size: 16.7px;
  }
}
body.page-template-tpl-CustomPanels .lms-text-left-image-right {
  padding: 50px 0;
}
body.page-template-tpl-CustomPanels .lms-text-left-image-right .section-headings {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-text-left-image-right .section-headings {
    padding-bottom: 60px;
    margin-left: 50px;
  }
}
body.page-template-tpl-CustomPanels .lms-text-left-image-right .section-headings h2 {
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  color: #184784;
  margin-bottom: 30px;
  font-size: 25px;
}
@media (min-width: 768px) {
  body.page-template-tpl-CustomPanels .lms-text-left-image-right .section-headings h2 {
    font-size: 27px;
  }
}
body.page-template-tpl-CustomPanels .lms-text-left-image-right .section-headings h3 {
  font-size: 16.7px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #4d4d4d;
  margin: 0;
}
body.page-template-tpl-CustomPanels .lms-text-left-image-right .section-headings h3 b {
  font-weight: 400;
}
body.page-template-tpl-CustomPanels .lms-text-left-image-right .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-text-left-image-right .container .tlir-container .tlir-image-col {
    flex: 1 1 calc(50% - 25px);
    margin-left: 25px;
    justify-content: start !important;
  }
}
body.page-template-tpl-CustomPanels .lms-text-left-image-right .container .tlir-container .tlir-text-col {
  justify-content: start !important;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-text-left-image-right .container .tlir-container .tlir-text-col {
    flex: 1 1 calc(50% - 25px);
    margin-right: 25px;
  }
}
body.page-template-tpl-CustomPanels .lms-text-left-image-right .container .tlir-container .tlir-text-col .tlir-title h1 {
  font-size: 2rem;
}
body.page-template-tpl-CustomPanels .lms-text-left-image-right .container .tlir-container .tlir-text-col .tlir-subtitle h2 {
  font-size: 1.6875rem;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-text-left-image-right .container .tlir-container .tlir-text-col .tlir-content p {
    padding: 0 50px;
  }
}
body.page-template-tpl-CustomPanels .lms-text-left-image-right .container .tlir-container .tlir-text-col .tlir-content ul {
  padding-left: 0;
  list-style: none;
}
body.page-template-tpl-CustomPanels .lms-text-left-image-right .container .tlir-container .tlir-text-col .tlir-content ul li {
  position: relative;
  padding: 0 50px 30px !important;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-text-left-image-right .container .tlir-container .tlir-text-col .tlir-content ul li {
    padding-right: 0 !important;
  }
  body.page-template-tpl-CustomPanels .lms-text-left-image-right .container .tlir-container .tlir-text-col .tlir-content ul li:last-child {
    padding-bottom: 0 !important;
  }
}
body.page-template-tpl-CustomPanels .lms-text-left-image-right .container .tlir-container .tlir-text-col .tlir-content ul li:before {
  content: url("/wp-content/themes/benchmarkanalytics2019/assets/dev/images/checkmark.png");
  position: absolute;
  left: 0;
  top: 0;
}
body.page-template-tpl-CustomPanels .lms-text-left-image-right .container .lr-after-columns-text {
  margin-top: 50px;
}
@media (min-width: 992px) {
  body.page-template-tpl-CustomPanels .lms-text-left-image-right .container .lr-after-columns-text p {
    margin: 0 0 0 50px;
  }
}
body.page-template-tpl-CustomPanels .lms-cta-button {
  margin-bottom: 30px;
  padding: 25px 0;
}
body.page-template-tpl-CustomPanels .lms-cta-button .button {
  padding: 0;
  background-color: transparent;
  border-color: transparent;
  color: #fff;
}
body.page-template-tpl-CustomPanels .global-hero.procurement-global-hero {
  background-color: #fff !important;
  margin: 0;
}
body.page-template-tpl-CustomPanels .global-hero.procurement-global-hero .hero-wrapper {
  padding: 30px 0;
}
body.page-template-tpl-CustomPanels .global-hero.procurement-global-hero .hero-wrapper .hero-content-wrapper {
  max-width: 100%;
}
body.page-template-tpl-CustomPanels .global-hero.procurement-global-hero .hero-wrapper .hero-content-wrapper p {
  margin-bottom: 0;
}
body.page-template-tpl-CustomPanels .global-hero.procurement-global-hero .hero-wrapper .hero-content-wrapper h1 {
  display: none;
}
body.page-template-tpl-CustomPanels .panel-img-before-title {
  box-shadow: 8px 14px 17px 1px rgba(36, 48, 72, 0.75);
  background-color: #fff;
  max-width: 480px;
  padding: 0 60px;
  margin: 0 auto 60px auto;
}

section.flexible-cards-panel .flexible-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  section.flexible-cards-panel .flexible-cards {
    margin-bottom: 50px;
  }
}
section.flexible-cards-panel .flexible-cards .flexible-card {
  background-color: #fff;
  margin: 0 20px 50px;
  box-shadow: 0 1px 15px 5px #d4d4d4;
  padding-bottom: 40px;
  position: relative;
  max-width: 100%;
}
@media (min-width: 576px) {
  section.flexible-cards-panel .flexible-cards .flexible-card {
    max-width: 70%;
  }
}
@media (min-width: 768px) {
  section.flexible-cards-panel .flexible-cards .flexible-card {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(33.33% - 40px);
    max-width: 50%;
  }
  section.flexible-cards-panel .flexible-cards .flexible-card:nth-of-type(4) {
    order: 5;
    max-width: 100%;
  }
  section.flexible-cards-panel .flexible-cards .flexible-card:nth-of-type(5) {
    order: 4;
  }
}
@media (min-width: 992px) {
  section.flexible-cards-panel .flexible-cards .flexible-card {
    max-width: calc(50% - 40px);
  }
  section.flexible-cards-panel .flexible-cards .flexible-card:nth-of-type(n+4) {
    margin-bottom: 0;
  }
  section.flexible-cards-panel .flexible-cards .flexible-card:nth-of-type(4) {
    order: 4;
    max-width: calc(50% - 40px);
  }
  section.flexible-cards-panel .flexible-cards .flexible-card:nth-of-type(5) {
    order: 5;
    flex-grow: 0;
  }
}
section.flexible-cards-panel .flexible-cards .flexible-card-title {
  background-color: #177AAD;
}
section.flexible-cards-panel .flexible-cards .flexible-card-title h4 {
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin: 0;
  font-weight: 300;
  line-height: 1.13;
  font-size: 24px;
}
section.flexible-cards-panel .flexible-cards .flexible-card-content {
  padding: 20px;
}
section.flexible-cards-panel .flexible-cards .flexible-card-content p {
  text-align: center;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #545454;
}
section.flexible-cards-panel .flexible-cards .flexible-card-icon {
  text-align: center;
}
section.flexible-cards-panel .flexible-cards .flexible-card-link {
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 0 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
section.flexible-cards-panel .flexible-cards .flexible-card-link a {
  color: #8acf1c;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
}
section.flexible-cards-panel .flexible-cards .flexible-card-link-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 3px;
  margin-left: 5px;
}
section.flexible-cards-panel .flexible-cards .flexible-card-link-icon:after, section.flexible-cards-panel .flexible-cards .flexible-card-link-icon:before {
  content: "";
  position: relative;
  background-color: #8acf1c;
  display: inline-block;
}
section.flexible-cards-panel .flexible-cards .flexible-card-link-icon:before {
  height: 2px;
  width: 20px;
}
section.flexible-cards-panel .flexible-cards .flexible-card-link-icon:after {
  height: 6px;
  width: 6px;
  border-radius: 50%;
}
section.flexible-cards-panel .post-column-content {
  max-width: 650px;
  margin: 0 auto;
}
section.flexible-cards-panel .post-column-content .section-headings {
  padding: 0;
}
section.flexible-cards-panel .post-column-content .section-headings .section-title {
  text-align: center !important;
}

.global-section-big-video #video-section-title {
  padding: 5rem 0 4rem;
  background-color: #2083B6;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .global-section-big-video #video-section-title {
    padding: 2rem 0rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 850px) {
  .global-section-big-video #video-section-title {
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .global-section-big-video #video-section-title {
    padding-left: 0;
  }
}
.global-section-big-video #video-section-title h2 {
  text-align: left;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .global-section-big-video #video-section-title h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 425px) {
  .global-section-big-video #video-section-title h2 {
    font-size: 1.25rem;
  }
}
.global-section-big-video #video-section-title h4 {
  text-align: left;
  color: #fff;
  letter-spacing: -0.18px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .global-section-big-video #video-section-title h4 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 425px) {
  .global-section-big-video #video-section-title h4 {
    font-size: 0.6875rem;
  }
}
.global-section-big-video .container .video-container {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .global-section-big-video .container .video-container {
    background-size: contain;
  }
}
.global-section-big-video .container .video-container .video-holder {
  min-height: 400px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .global-section-big-video .container .video-container .video-holder {
    min-height: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .global-section-big-video .container .video-container .video-holder {
    min-height: 725px;
  }
}
.global-section-big-video .container .video-container .video-holder img {
  width: calc(115px + 30%);
  height: auto;
  cursor: pointer;
}

div[role=dialog][id^=wistia] {
  position: initial;
}

.screenshot-scroller-panel {
  padding-bottom: 0 !important;
}
.screenshot-scroller-panel .section-headings {
  padding: 0 0 40px;
}
.screenshot-scroller-panel .section-headings h2 {
  font-size: 28px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  text-align: center !important;
  color: #424141;
}
.screenshot-scroller-panel .section-headings h3 {
  font-size: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.44;
  letter-spacing: normal;
  color: #4d4d4d;
  text-align: center !important;
}
.screenshot-scroller-panel .section-headings h3 strong {
  font-weight: 400;
  letter-spacing: 0.18px;
}
.screenshot-scroller-panel .section-headings .section-content {
  margin-top: 40px;
  text-align: center !important;
}
.screenshot-scroller-panel .section-headings .section-content p {
  font-size: 18px;
  text-align: left !important;
}
.screenshot-scroller-panel .scroller-image {
  position: relative;
}
@media screen and (min-device-aspect-ratio: 16/9) {
  .screenshot-scroller-panel .scroller-image img {
    max-width: 80%;
    margin: 0 auto;
  }
}
.screenshot-scroller-panel .scroller-item {
  bottom: -10px;
}
@media (min-width: 768px) {
  .screenshot-scroller-panel .scroller-item {
    bottom: -6px;
  }
}
.screenshot-scroller-panel .slick-arrow {
  position: absolute;
  z-index: 5;
  top: calc(50% - 25px);
}
.screenshot-scroller-panel .slick-arrow:hover {
  cursor: pointer;
}
.screenshot-scroller-panel .slick-arrow svg {
  height: 50px;
}
@media (min-width: 992px) {
  .screenshot-scroller-panel .slick-arrow {
    top: calc(50% - 50px);
  }
  .screenshot-scroller-panel .slick-arrow svg {
    height: 100px;
  }
}
@media (max-width: 991.98px) {
  .screenshot-scroller-panel .slick-arrow img {
    max-height: 50px;
  }
}
.screenshot-scroller-panel .slick-prev {
  left: 25px;
}
.screenshot-scroller-panel .slick-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .screenshot-scroller-panel .slick-prev {
    left: 10px;
  }
  .screenshot-scroller-panel .slick-next {
    right: 10px;
  }
}

.bg-fruit-salad {
  background: #8bc040;
}
.bg-sushi {
  background: #4ca84d;
}
.bg-eastern-blue {
  background: #199496;
}
.bg-deep-cerulean {
  background: #0087A8;
}
.bg-matisse {
  background: #2367ac;
}
.bg-tory-blue {
  background: #145096;
}

.horizontal-tab-section {
  background: linear-gradient(#eceded, #fff);
  /* added after from code pen*/
}
@media (max-width: 991.98px) {
  .horizontal-tab-section .slick-list {
    padding: 0 0 0 50px !important;
  }
}
.horizontal-tab-section.panel-background-image {
  background-color: #eee;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
}
.horizontal-tab-section .container {
  padding-left: 15px;
  padding-right: 15px;
}
.horizontal-tab-section .section-headings h2 {
  font-size: 32px;
  letter-spacing: normal;
  text-align: center;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  margin: 0 0 40px 0 !important;
  padding: 0;
  position: initial;
  color: #09547f;
}
.horizontal-tab-section .section-headings h3 {
  font-size: 24px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.35;
  margin: 0 0 40px 0;
  letter-spacing: normal;
  text-align: center !important;
  color: #1050a8;
}
.horizontal-tab-section .nav-tabs {
  border: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  position: relative;
  z-index: 2;
}
.horizontal-tab-section .nav-tabs .nav-item {
  padding-bottom: 0;
  min-height: 190px;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link {
  width: 135px;
  min-height: 95px;
  font-size: 18px;
  line-height: 1.22;
  color: #fff;
  border: 0;
  border-radius: 0;
  position: relative;
  padding: 20px 5px 0;
  text-align: center;
  padding-bottom: 9px;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link span {
  position: relative;
  top: 0;
  transition: top 0.3s ease;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link span.sign {
  position: relative;
  display: block;
  top: 0;
  transition: top 0.3s ease;
  margin-top: 10px;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link span.sign:before, .horizontal-tab-section .nav-tabs .nav-item .nav-link span.sign:after {
  content: "";
  display: inline-block;
  position: relative;
  background-color: #fff;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link span.sign:before {
  width: 11px;
  height: 1px;
  bottom: 5px;
  left: 0;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link span.sign:after {
  height: 11px;
  width: 1px;
  bottom: 0;
  left: -6px;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link.active.bg-fruit-salad, .horizontal-tab-section .nav-tabs .nav-item .nav-link.bg-fruit-salad {
  background: #8bc040;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link.active.bg-sushi, .horizontal-tab-section .nav-tabs .nav-item .nav-link.bg-sushi {
  background: #4ca84d;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link.active.bg-eastern-blue, .horizontal-tab-section .nav-tabs .nav-item .nav-link.bg-eastern-blue {
  background: #199496;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link.active.bg-deep-cerulean, .horizontal-tab-section .nav-tabs .nav-item .nav-link.bg-deep-cerulean {
  background: #0087A8;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link.active.bg-matisse, .horizontal-tab-section .nav-tabs .nav-item .nav-link.bg-matisse {
  background: #2367ac;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link.active.bg-tory-blue, .horizontal-tab-section .nav-tabs .nav-item .nav-link.bg-tory-blue {
  background: #145096;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link:before, .horizontal-tab-section .nav-tabs .nav-item .nav-link:after {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link:focus {
  outline: 0;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link.active {
  padding-bottom: 53px;
  transition: padding-bottom 0.3s ease;
  font-size: 22px;
  line-height: 1.16;
  outline: 0;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link.active span {
  top: 20px;
  transition: top 0.3s ease;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link.active span.sign:after {
  display: none;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link.active:after, .horizontal-tab-section .nav-tabs .nav-item .nav-link.active:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 55px solid #fff;
  opacity: 1;
  transition: opacity 0.1s ease 5s;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link.active:before {
  left: 0;
  border-right: 67px solid transparent;
}
.horizontal-tab-section .nav-tabs .nav-item .nav-link.active:after {
  right: 0;
  border-left: 67px solid transparent;
}
.horizontal-tab-section .nav-tabs .nav-item:not(:first-of-type) .nav-link.bg-fruit-salad {
  background: #8bc040;
}
.horizontal-tab-section .nav-tabs .nav-item:not(:first-of-type) .nav-link.bg-sushi {
  background: #4ca84d;
}
.horizontal-tab-section .nav-tabs .nav-item:not(:first-of-type) .nav-link.bg-eastern-blue {
  background: #199496;
}
.horizontal-tab-section .nav-tabs .nav-item:not(:first-of-type) .nav-link.bg-deep-cerulean {
  background: #0087A8;
}
.horizontal-tab-section .nav-tabs .nav-item:not(:first-of-type) .nav-link.bg-matisse {
  background: #2367ac;
}
.horizontal-tab-section .nav-tabs .nav-item:not(:first-of-type) .nav-link.bg-tory-blue {
  background: #145096;
}
.horizontal-tab-section .mobile-tabs {
  padding: 25px 0 4px;
}
.horizontal-tab-section .mobile-tabs-label {
  margin: 0;
  display: inline-flex;
  position: relative;
  cursor: pointer;
  width: 100%;
}
.horizontal-tab-section .mobile-tabs-picklist {
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  position: relative;
  font-size: 14px;
  color: #333333;
  line-height: 2.42;
  background-color: transparent;
  width: 100%;
  min-width: 250px;
  padding: 0 25px;
  text-decoration: none;
  font-weight: 400;
  background-color: #fff;
  text-align: center;
  font-size: 20px;
}
.horizontal-tab-section .mobile-tabs-picklist::-ms-expand {
  display: none;
}
.horizontal-tab-section .mobile-tabs-picklist.open + i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.horizontal-tab-section .mobile-tabs i {
  position: absolute;
  top: 20px;
  right: 11px;
  padding: 0;
  color: #333333;
  transition: transform 0.3s ease;
}
.horizontal-tab-section .tab-content {
  border-radius: 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 25px 15px 15px 15px;
  box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
  .horizontal-tab-section .tab-content {
    transform: translateY(-94px);
    padding: 100px 40px 20px 40px;
  }
}
.horizontal-tab-section #cp-collapsible-mobile {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  padding-top: 30px;
}
.horizontal-tab-section #cp-collapsible-mobile .collapse-content {
  border: 1px solid #000;
  margin: auto;
}
.horizontal-tab-section #cp-collapsible-mobile .cp-collapse {
  background: #fff;
}
.horizontal-tab-section #cp-collapsible-mobile .cp-collapse a {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  padding: 0 1.8rem 0.9rem 0;
  color: #fff;
  position: relative;
}
.horizontal-tab-section #cp-collapsible-mobile .cp-collapse a span {
  padding-left: 2.5rem;
  padding-top: 7px;
  display: block;
}
.horizontal-tab-section #cp-collapsible-mobile .cp-collapse a .number {
  opacity: 0.4;
  font-size: 16px;
  position: absolute;
  font-style: normal;
  height: 100%;
  background-color: #666;
  width: 1.9rem;
  text-align: center;
  padding-top: 7px;
}
.horizontal-tab-section #cp-collapsible-mobile .cp-collapse a:before {
  content: "";
  border-top: 7px solid #fff;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  position: absolute;
  top: 18px;
  right: 30px;
  transform: rotate(-90deg);
}
.horizontal-tab-section #cp-collapsible-mobile .inner-content {
  padding: 1.8rem;
}
.horizontal-tab-section #cp-collapsible-mobile .content {
  max-height: 0em;
  transition: 0.3s linear 0s;
  overflow: hidden;
}
.horizontal-tab-section #cp-collapsible-mobile .cp-collapse + .cp-collapse a {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}
.horizontal-tab-section #cp-collapsible-mobile h3 {
  margin-bottom: 15px;
}
.horizontal-tab-section #cp-collapsible-mobile .cp-collapse.open .content {
  max-height: 150em;
}
.horizontal-tab-section #cp-collapsible-mobile .cp-collapse.open a:before {
  transform: rotate(0deg);
}
@media (max-width: 425px) {
  .horizontal-tab-section #cp-collapsible-mobile body {
    line-height: 1.3;
  }
  .horizontal-tab-section #cp-collapsible-mobile .inner-content {
    padding: 1.2rem;
  }
  .horizontal-tab-section #cp-collapsible-mobile .inner-content h3 {
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 320px) {
  .horizontal-tab-section #cp-collapsible-mobile body {
    line-height: 1.3;
  }
  .horizontal-tab-section #cp-collapsible-mobile .collapse-content {
    width: 80vw;
  }
  .horizontal-tab-section #cp-collapsible-mobile .inner-content {
    padding: 0.8rem;
  }
  .horizontal-tab-section #cp-collapsible-mobile .inner-content h3 {
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 1199.98px) {
  .horizontal-tab-section .hide-mobile {
    display: none;
  }
  .horizontal-tab-section .show-mobile {
    display: block;
  }
}
@media (min-width: 992px) {
  .horizontal-tab-section .hide-mobile {
    display: block;
  }
  .horizontal-tab-section .show-mobile {
    display: none;
  }
}

.content-with-mini-boxes-and-counter-panel .top-text {
  margin-bottom: 30px;
}
.content-with-mini-boxes-and-counter-panel .show_hide_three_boxes {
  display: none;
}
.content-with-mini-boxes-and-counter-panel .mini-boxes {
  width: 100%;
  margin-bottom: 30px;
}
.content-with-mini-boxes-and-counter-panel .mini-boxes .mini-box {
  padding: 13px 26px;
  flex-basis: calc(33% - 15px);
  border: 1px solid #dee2e6;
  line-height: 1.4;
}
.content-with-mini-boxes-and-counter-panel .mini-boxes .mini-box:nth-of-type(2) {
  margin: 25px 0;
}
@media screen and (min-width: 992px) {
  .content-with-mini-boxes-and-counter-panel .mini-boxes .mini-box {
    padding: 13px 15px;
  }
  .content-with-mini-boxes-and-counter-panel .mini-boxes .mini-box:nth-of-type(2) {
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .content-with-mini-boxes-and-counter-panel .mini-boxes .mini-box {
    padding: 13px 40px;
  }
}
.content-with-mini-boxes-and-counter-panel .mini-boxes .mini-box .icon-holder {
  margin-right: 20px;
}
.content-with-mini-boxes-and-counter-panel .mini-boxes .mini-box .icon-holder img {
  min-width: 55px;
}
.content-with-mini-boxes-and-counter-panel .text-box-2 {
  margin-bottom: 30px;
}
.content-with-mini-boxes-and-counter-panel .simple-numbers .counter-item {
  padding: 17px 0 !important;
  background-position: left !important;
  background-size: auto !important;
  width: auto !important;
  margin-left: 0 !important;
}
.content-with-mini-boxes-and-counter-panel .simple-numbers .counter-item span {
  color: #000 !important;
}
@media (max-width: 991.98px) {
  .content-with-mini-boxes-and-counter-panel .simple-numbers .counter-item {
    padding: 5px !important;
  }
}
.content-with-mini-boxes-and-counter-panel .counter-items {
  margin-bottom: 30px;
}
.content-with-mini-boxes-and-counter-panel .counter-items .counter-item {
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto 20px;
  padding: 10px;
  width: 100%;
  padding: 0;
}
@media (min-width: 576px) {
  .content-with-mini-boxes-and-counter-panel .counter-items .counter-item {
    padding: 6px;
  }
}
@media (min-width: 768px) {
  .content-with-mini-boxes-and-counter-panel .counter-items .counter-item {
    padding: 8px;
  }
}
@media (min-width: 992px) {
  .content-with-mini-boxes-and-counter-panel .counter-items .counter-item {
    padding: 12px;
    background-position: center;
    background-size: contain;
    width: 660px;
  }
}
.content-with-mini-boxes-and-counter-panel .counter-items .counter-item span {
  color: #fff;
  padding-left: 90px;
}
@media (min-width: 992px) {
  .content-with-mini-boxes-and-counter-panel .counter-items .counter-item span {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
}
.content-with-mini-boxes-and-counter-panel .counter-items .counter-item:nth-last-of-type {
  margin-bottom: 0;
}

.horizontal-tabs-v2-panel {
  /* added after from code pen*/
}
@media (min-width: 992px) {
  .horizontal-tabs-v2-panel .section-headings {
    padding-bottom: 0;
  }
}
.horizontal-tabs-v2-panel .section-headings h2 {
  text-align: center !important;
  color: #09547f;
  font-size: 2.25rem;
  line-height: 1.2;
}
.horizontal-tabs-v2-panel .bg-blue {
  background: #234B82;
}
.horizontal-tabs-v2-panel .bg-darkblue {
  background: #1C75BC;
}
.horizontal-tabs-v2-panel .bg-skyblue {
  background: #00A1CB;
}
.horizontal-tabs-v2-panel .container {
  padding-left: 0;
  padding-right: 0;
}
.horizontal-tabs-v2-panel .nav-tabs {
  border: 0;
  overflow: hidden;
  margin: 0;
  position: relative;
  z-index: 2;
}
.horizontal-tabs-v2-panel .nav-tabs li.nav-item {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .horizontal-tabs-v2-panel .nav-tabs li.nav-item {
    flex-basis: calc(33% - 15px);
    align-items: center;
    min-width: 300px;
  }
  .horizontal-tabs-v2-panel .nav-tabs li.nav-item:nth-of-type(2) {
    margin: 0 15px;
  }
}
.horizontal-tabs-v2-panel .nav-tabs li.nav-item a.nav-link {
  width: 100%;
  font-size: 18px;
  line-height: 1.22;
  color: #234c82;
  border: 0;
  border-radius: 0;
  position: relative;
  text-align: center;
  height: 100%;
  outline: none;
  padding: 0;
}
.horizontal-tabs-v2-panel .nav-tabs li.nav-item a.nav-link.active .bg-blue,
.horizontal-tabs-v2-panel .nav-tabs li.nav-item a.nav-link .bg-blue {
  background: #234B82;
}
.horizontal-tabs-v2-panel .nav-tabs li.nav-item a.nav-link.active .bg-darkblue,
.horizontal-tabs-v2-panel .nav-tabs li.nav-item a.nav-link .bg-darkblue {
  background: #1C75BC;
}
.horizontal-tabs-v2-panel .nav-tabs li.nav-item a.nav-link.active .bg-skyblue,
.horizontal-tabs-v2-panel .nav-tabs li.nav-item a.nav-link .bg-skyblue {
  background: #00A1CB;
}
.horizontal-tabs-v2-panel .nav-tabs li.nav-item a.nav-link.active .title-holder span.green-arrow img {
  transform: rotate(180deg);
}
.horizontal-tabs-v2-panel .nav-tabs li.nav-item a.nav-link .icon-holder {
  padding: 30px 0;
}
.horizontal-tabs-v2-panel .nav-tabs li.nav-item a.nav-link .title-holder {
  background-color: #fff;
  border: 1px solid #E9E9EA;
  width: 100%;
  height: 100%;
  padding: 15px 20px 0;
}
.horizontal-tabs-v2-panel .nav-tabs li.nav-item a.nav-link .title-holder span.for {
  display: block;
  text-align: center;
  font-size: 2rem;
}
.horizontal-tabs-v2-panel .nav-tabs li.nav-item a.nav-link .title-holder span.title {
  font-size: 2.625rem;
  line-height: 1.2;
}
.horizontal-tabs-v2-panel .nav-tabs li.nav-item a.nav-link .title-holder span.green-arrow {
  margin: 45px 0;
}
.horizontal-tabs-v2-panel .mobile-tabs {
  padding: 25px 0 4px;
}
.horizontal-tabs-v2-panel .mobile-tabs-label {
  margin: 0;
  display: inline-flex;
  position: relative;
  cursor: pointer;
  width: 100%;
}
.horizontal-tabs-v2-panel .mobile-tabs-picklist {
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  position: relative;
  color: #333333;
  line-height: 2.42;
  width: 100%;
  min-width: 250px;
  padding: 0 25px;
  text-decoration: none;
  font-weight: 400;
  background-color: #fff;
  text-align: center;
  font-size: 20px;
}
.horizontal-tabs-v2-panel .mobile-tabs-picklist::-ms-expand {
  display: none;
}
.horizontal-tabs-v2-panel .mobile-tabs-picklist.open + i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.horizontal-tabs-v2-panel .mobile-tabs i {
  position: absolute;
  top: 20px;
  right: 11px;
  padding: 0;
  color: #333333;
  transition: transform 0.3s ease;
}
.horizontal-tabs-v2-panel .tab-content {
  margin-top: 70px;
  border-radius: 0;
  position: relative;
  z-index: 1;
  color: #000;
}
.horizontal-tabs-v2-panel .tab-content ul {
  padding-left: 24px;
  list-style-type: disc;
}
.horizontal-tabs-v2-panel #cp-collapsible-mobile {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  padding-top: 30px;
}
.horizontal-tabs-v2-panel #cp-collapsible-mobile .collapse-content {
  border: 1px solid #000;
  margin: auto;
}
.horizontal-tabs-v2-panel #cp-collapsible-mobile .cp-collapse {
  background: #fff;
}
.horizontal-tabs-v2-panel #cp-collapsible-mobile .cp-collapse a {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  padding: 0 1.8rem 0.9rem 0;
  color: #fff;
  position: relative;
}
.horizontal-tabs-v2-panel #cp-collapsible-mobile .cp-collapse a span {
  padding-left: 2.5rem;
  padding-top: 7px;
  display: block;
}
.horizontal-tabs-v2-panel #cp-collapsible-mobile .cp-collapse a .number {
  opacity: 0.4;
  font-size: 16px;
  position: absolute;
  font-style: normal;
  height: 100%;
  background-color: #666;
  width: 1.9rem;
  text-align: center;
  padding-top: 7px;
}
.horizontal-tabs-v2-panel #cp-collapsible-mobile .cp-collapse a:before {
  content: "";
  border-top: 7px solid #fff;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  position: absolute;
  top: 18px;
  right: 30px;
}
.horizontal-tabs-v2-panel #cp-collapsible-mobile .inner-content {
  padding: 1.8rem;
}
.horizontal-tabs-v2-panel #cp-collapsible-mobile .content {
  max-height: 0em;
  transition: 0.3s linear 0s;
  overflow: hidden;
}
.horizontal-tabs-v2-panel #cp-collapsible-mobile .cp-collapse + .cp-collapse a {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}
.horizontal-tabs-v2-panel #cp-collapsible-mobile h3 {
  margin-bottom: 15px;
}
.horizontal-tabs-v2-panel #cp-collapsible-mobile .cp-collapse.open .content {
  max-height: 150em;
}
.horizontal-tabs-v2-panel #cp-collapsible-mobile .cp-collapse.open a:before {
  transform: rotate(-90deg);
}
@media (max-width: 425px) {
  .horizontal-tabs-v2-panel #cp-collapsible-mobile body {
    line-height: 1.3;
  }
  .horizontal-tabs-v2-panel #cp-collapsible-mobile .inner-content {
    padding: 1.2rem;
  }
  .horizontal-tabs-v2-panel #cp-collapsible-mobile .inner-content h3 {
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 320px) {
  .horizontal-tabs-v2-panel #cp-collapsible-mobile body {
    line-height: 1.3;
  }
  .horizontal-tabs-v2-panel #cp-collapsible-mobile .collapse-content {
    width: 80vw;
  }
  .horizontal-tabs-v2-panel #cp-collapsible-mobile .inner-content {
    padding: 0.8rem;
  }
  .horizontal-tabs-v2-panel #cp-collapsible-mobile .inner-content h3 {
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 1199.98px) {
  .horizontal-tabs-v2-panel .hide-mobile {
    display: none;
  }
  .horizontal-tabs-v2-panel .show-mobile {
    display: block;
  }
}
@media (min-width: 992px) {
  .horizontal-tabs-v2-panel .hide-mobile {
    display: block;
  }
  .horizontal-tabs-v2-panel .show-mobile {
    display: none;
  }
}

.dashboard-panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.dashboard-panel .section-headings {
  position: absolute;
  top: 15px;
  z-index: 2;
  width: 100%;
  padding: 0 30px;
  margin-left: -15px;
}
@media (min-width: 1200px) {
  .dashboard-panel .section-headings {
    top: 110px;
  }
}
.dashboard-panel .section-headings h2 {
  text-align: center !important;
  line-height: 1.2;
  margin: 0;
  font-size: 1.75rem;
  color: #1050a8;
}
@media (min-width: 992px) {
  .dashboard-panel .section-headings h2 {
    font-size: 2.3rem;
  }
}
.dashboard-panel .section-headings h3 {
  text-align: center !important;
  font-size: 1.375rem;
  line-height: 1.29;
  margin-top: 30px;
}
.dashboard-panel .section-headings .section-content {
  padding-top: 10px;
  max-width: 1140px;
  margin: auto;
}
.dashboard-panel .section-headings .section-content,
.dashboard-panel .section-headings .section-content * {
  text-align: center;
}
.dashboard-panel .dashboard-image {
  text-align: center;
  padding-top: 150px;
}
@media (min-width: 576px) {
  .dashboard-panel .dashboard-image {
    padding-top: 0;
  }
}
@media (min-width: 1200px) {
  .dashboard-panel .dashboard-image {
    top: 0;
  }
}

.wysiwyg-panel .section-headings h2 {
  text-align: center !important;
  font-size: 2.3rem;
  line-height: 1.2;
}
.wysiwyg-panel .content-holder ul {
  padding-left: 24px;
  list-style-type: disc;
}
.wysiwyg-panel .content-holder ul li {
  padding-bottom: 12px;
}

.carousel-caption.section-headings {
  padding: 20px 0;
}
@media (max-width: 992px) {
  .carousel-caption.section-headings img, .carousel-caption.section-headings a, .carousel-caption.section-headings p {
    width: 75% !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.custom-hero .hero-content img:last-child {
  margin: 0 auto;
}
.custom-hero .custom-text {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .custom-hero .custom-text {
    margin-bottom: 60px;
  }
}
.custom-hero .custom-text span {
  flex-basis: 33%;
  line-height: 1.26;
  color: #1b3e6f;
  font-weight: 300;
  text-align: center;
  font-size: 2.5rem;
}
@media (min-width: 992px) {
  .custom-hero .custom-text span {
    font-size: 3.71875rem;
  }
}

.image-text-repeater-panel .image-text-row .text-holder h2 {
  font-size: 1.625rem;
  line-height: 1.4;
  font-weight: 400;
  color: #0a5aa2;
  margin-bottom: 15px;
}
.image-text-repeater-panel .image-text-row .text-holder p a {
  color: #0a5aa2;
  font-weight: 400;
}
.image-text-repeater-panel .image-text-row .text-holder p strong {
  color: #0a5aa2;
}

.product-selector-panel h2 {
  margin-bottom: 60px;
  color: #234c82;
}
.product-selector-panel .container {
  padding: 0 15px;
}
.product-selector-panel ul#productBadges {
  margin: 0 0 30px;
  padding: 0;
  overflow: unset;
  height: 100%;
}
.product-selector-panel ul#productBadges li.product-item {
  flex-basis: calc(33% - 15px);
  margin: 0 15px 30px;
  padding: 30px 35px;
  position: relative;
  max-width: 280px;
}
@media (min-width: 992px) {
  .product-selector-panel ul#productBadges li.product-item {
    margin-bottom: 0;
  }
}
.product-selector-panel ul#productBadges li.product-item:before, .product-selector-panel ul#productBadges li.product-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  border-style: solid;
  border-color: transparent;
  border-top-width: 0;
  border-bottom-width: 90px;
  border-bottom-color: #fff;
}
.product-selector-panel ul#productBadges li.product-item:before {
  left: 0;
  border-right-color: transparent;
  border-right-width: 150px;
  border-left-width: 0;
}
.product-selector-panel ul#productBadges li.product-item:after {
  right: 0;
  border-left-width: 150px;
  border-right-width: 0;
  border-left-color: transparent;
}
.product-selector-panel ul#productBadges li.product-item span.title-holder {
  color: #fff;
  font-weight: 300;
  line-height: 1.37;
  font-size: 28px;
  margin-bottom: 20px;
  padding: 0 5px;
}
@media (min-width: 768px) {
  .product-selector-panel ul#productBadges li.product-item span.title-holder {
    padding: 0 35px;
  }
}
.product-selector-panel ul#productBadges li.product-item .product-badge {
  padding: 15px 35px 55px;
  background-image: url("/wp-content/themes/benchmarkanalytics2019/assets/dist/images/product-badge.png");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.product-selector-panel ul#productBadges li.product-item .product-badge .subtitle-holder {
  font-size: 22px;
  font-weight: 300;
  color: #0084AA;
  line-height: 1.37;
}
.product-selector-panel .product-content {
  position: relative;
}
.product-selector-panel .product-content .product-content-background {
  background-image: url("/wp-content/themes/benchmarkanalytics2019/assets/dist/images/product-selector-rectangle.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  height: 100%;
  width: 100%;
  transform: translateY(-50%);
  padding: 100px 0;
  z-index: -1;
}
.product-selector-panel .product-content .product-selector {
  max-width: 850px;
  margin: 50px auto;
  width: 100%;
  padding: 0 15px;
}
.product-selector-panel .product-content .product-selector label {
  color: #234c82;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .product-selector-panel .product-content .product-selector label {
    margin-right: 30px;
    margin-bottom: 0;
    flex-basis: calc(80% - 30px);
  }
}
@media (min-width: 768px) {
  .product-selector-panel .product-content .product-selector .select-container {
    flex-basis: 20%;
  }
}
.product-selector-panel .product-content .product-selector .select-container select {
  background-color: #bbe400;
  color: #000;
  border-radius: 50px;
  padding: 10px;
  border: 0;
  font-size: 22px;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("/wp-content/themes/benchmarkanalytics2019/assets/dist/images/product-selector-chevrons.png");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position-y: center;
  background-position-x: calc(100% - 25px);
  min-width: 200px;
}
@media (min-width: 768px) {
  .product-selector-panel .product-content .product-selector .select-container select {
    max-width: 250px;
  }
}
.product-selector-panel .product-description {
  margin: 50px auto 0;
  padding: 0 15px;
  max-width: 930px;
  display: none;
}
.product-selector-panel .product-description h3,
.product-selector-panel .product-description h4,
.product-selector-panel .product-description h5 {
  color: #81b10d;
  display: inline-block;
  margin-left: 5px;
}
.product-selector-panel .product-description h3 + p,
.product-selector-panel .product-description h4 + p,
.product-selector-panel .product-description h5 + p {
  display: initial;
}
.product-selector-panel .product-description.show {
  display: block;
}
.container .cards-container h2 {
  color: #fff;
  padding-bottom: 40px;
}
.container .cards-container .card-title + .card-content li {
  position: relative;
  list-style: none;
}
.container .cards-container .card-title + .card-content li::marker {
  display: none;
}
.container .cards-container .card-title + .card-content li:before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  border-radius: 50%;
  left: -15px;
  top: 10px;
}
.container .cards-container .card-title h5 {
  padding: 13px 0;
}
@media (min-width: 992px) {
  .container .cards-container .first-card {
    flex-basis: 33%;
  }
}
.container .cards-container .first-card .card {
  margin-right: 15px;
  height: 100%;
}
@media (max-width: 1199.98px) {
  .container .cards-container .first-card .card {
    margin-top: 20px;
  }
}
.container .cards-container .first-card .card .card-title {
  text-align: center;
  padding: 10px;
  height: 100px;
  color: #fff;
}
.container .cards-container .first-card .card .card-content {
  text-align: center;
  padding: 10px;
}
@media (min-width: 992px) {
  .container .cards-container .card-double {
    flex-basis: 60%;
  }
}
@media (min-width: 992px) {
  .container .cards-container .card-double .first-card {
    flex-basis: 50%;
  }
}
.container .cards-container .card-double .card {
  margin-right: 15px;
  height: 100%;
}
@media (max-width: 1199.98px) {
  .container .cards-container .card-double .card {
    margin-top: 20px;
  }
}
.container .cards-container .card-double .card .card-title {
  text-align: center;
  padding: 10px;
  height: 100px;
  color: #fff;
}
.container .cards-container .card-double .card .card-title h5 {
  padding: 13px 0;
}
.container .cards-container h3 {
  color: #1050a8;
  line-height: 1.3;
  padding-top: 20px;
}
@media (min-width: 992px) {
  .container .cards-container h3 {
    padding-left: 20px;
  }
}

.cta-panel.cta-button-panel-horizontal h2 {
  font-size: 1.75rem;
}
@media (max-width: 991.98px) {
  .cta-panel.cta-button-panel-horizontal h2 {
    margin-bottom: 30px !important;
    line-height: 1;
  }
}
.cta-panel.cta-button-panel-horizontal .button {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
  border: none;
  text-transform: none;
  transition: all 400ms ease-in-out;
}
.cta-panel.cta-button-panel-horizontal .button.cta-button-normal {
  font-size: 1rem;
}
.cta-panel.cta-button-panel-horizontal .button.cta-button-big {
  font-size: 1.5rem;
}
@media (max-width: 991.98px) {
  .cta-panel.cta-button-panel-horizontal .button.cta-button-big {
    font-size: 1rem;
  }
}
.cta-panel.cta-button-panel-horizontal .button:hover, .cta-panel.cta-button-panel-horizontal .button:active {
  color: #fff;
  background-color: #234c82 !important;
}
.cta-panel .section-headings h2 {
  padding-bottom: 0;
}
.cta-panel .cta-link {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 300;
  color: #fff;
  text-decoration: underline;
}

.panel-cta-button {
  font-size: 1rem;
  font-weight: 300;
  border: none;
  text-transform: none;
  border: 1px solid #fff;
  white-space: normal;
  line-height: 1.3;
}
.panel-cta-button.cta-button-normal {
  font-size: 1rem;
}
.panel-cta-button.cta-button-big {
  font-size: 1.5rem;
  padding: 15px 30px;
}
@media (max-width: 991.98px) {
  .panel-cta-button.cta-button-big {
    font-size: 1rem;
  }
}
.panel-cta-button.button-blue {
  background-color: #2083B6;
}
.panel-cta-button.button-white {
  color: #2083B6 !important;
  background-color: #fff !important;
}
.panel-cta-button.button-orange {
  background-color: #FD5D4B;
}
.panel-cta-button.button-transparent {
  background-color: transparent;
}
.panel-cta-button:hover, .panel-cta-button:active {
  color: #fff !important;
  background-color: #234c82 !important;
}

#mbs-cta .cta-link {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 300;
  color: #fff;
  text-decoration: underline;
}
#mbs-cta .ctab-h2 {
  margin: 0 20px 0 120px;
  padding: 0;
}
@media (max-width: 992px) {
  #mbs-cta .ctab-h2 {
    margin: 20px 20px 0 20px;
  }
}
#mbs-cta .ctab-link {
  text-align: center;
}
@media (max-width: 992px) {
  #mbs-cta .ctab-link {
    margin: 30px auto;
  }
}
#mbs-cta .ctab-content {
  position: absolute;
}
@media (max-width: 992px) {
  #mbs-cta .ctab-content {
    position: relative;
  }
}
#mbs-cta .ctab-content p {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  #mbs-cta .ctab-content p {
    text-align: center;
  }
}

#panel-1 .panel-cta-button {
  border: 1px solid #fff;
}

.text-color-default {
  color: #464646;
}
.text-color-white {
  color: #ffffff;
}
.text-color-black {
  color: #464646;
}
.text-color-light-blue {
  color: #0081a4;
}
.text-color-mid-blue {
  color: #0071ae;
}
.text-color-dark-blue {
  color: #09547f;
}
.text-color-light-green {
  color: #7dc142;
}
.text-color-mid-green {
  color: #4db759;
}
.text-color-dark-green {
  color: #03b872;
}

.bg-color-default {
  background-color: #ffffff;
}
.bg-color-black {
  background-color: #464646;
}
.bg-color-light-blue {
  background-color: #0081a4;
}
.bg-color-mid-blue {
  background-color: #0071ae;
}
.bg-color-dark-blue {
  background-color: #09547f;
}
.bg-color-light-green {
  background-color: #7dc142;
}
.bg-color-mid-green {
  background-color: #4db759;
}
.bg-color-dark-green {
  background-color: #03b872;
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.hero-cta-button {
  border-radius: 10px;
  box-shadow: 8px 14px 17px 1px rgba(36, 48, 72, 0.75);
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 80px;
  background-color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .hero-cta-button {
    padding: 20px 20px 10px 20px;
  }
}
.hero-cta-button h1 {
  font-size: 2.25rem;
  line-height: 1.4;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .hero-cta-button h1 {
    display: block;
    text-align: center;
  }
}
.hero-cta-button h1 span {
  margin-left: 10px;
}
.hero-cta-paragraph .lead {
  font-size: 36px !important;
  line-height: 1.4;
  margin: 50px 0;
}
.hero-cta-link {
  font-size: 1.5rem;
  text-decoration: underline;
  transition: all 400ms ease-in-out;
}
.hero-cta-primary-text {
  display: flex;
}
@media (max-width: 992px) {
  .hero-cta-primary-text {
    justify-content: center;
  }
}
.hero-cta-primary-text span {
  opacity: 0;
  overflow: hidden;
  animation-name: fadeInWord;
  animation-direction: linear;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.hero-cta-primary-text span:nth-child(1n) {
  animation-delay: 0.6666666667s;
}
.hero-cta-primary-text span:nth-child(2n) {
  animation-delay: 1.3333333333s;
}
.hero-cta-primary-text span:nth-child(3n) {
  animation-delay: 2s;
}
.hero-cta-primary-text span:nth-child(4n) {
  animation-delay: 2.6666666667s;
}
.hero-cta-primary-text span:nth-child(5n) {
  animation-delay: 3.3333333333s;
}
.hero-cta-primary-text span:nth-child(6n) {
  animation-delay: 4s;
}
.hero-cta-primary-text span:nth-child(7n) {
  animation-delay: 4.6666666667s;
}
.hero-cta-primary-text span:nth-child(8n) {
  animation-delay: 5.3333333333s;
}
.hero-cta-primary-text span:nth-child(9n) {
  animation-delay: 6s;
}
.hero-cta-button-cycle-text {
  height: 60px;
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .hero-cta-button-cycle-text {
    width: 100% !important;
    align-items: center;
  }
}
.hero-cta-button-cycle-text span {
  white-space: pre;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  animation-name: rotateWord;
  animation-direction: linear;
  animation-fill-mode: forwards;
  animation-duration: 6s;
}
.hero-cta-button-cycle-text span:nth-child(1n) {
  animation-delay: 0.5s;
}
.hero-cta-button-cycle-text span:nth-child(2n) {
  animation-delay: 1.5s;
}
.hero-cta-button-cycle-text span:nth-child(3n) {
  animation-delay: 2.5s;
}
.hero-cta-button-cycle-text span:nth-child(4n) {
  animation-delay: 3.5s;
}
.hero-cta-button-cycle-text span:nth-child(5n) {
  animation-delay: 4.5s;
}
.hero-cta-button-cycle-text span:nth-child(6n) {
  animation-delay: 5.5s;
}
.hero-cta-button-cycle-text span:nth-child(7n) {
  animation-delay: 6.5s;
}
.hero-cta-button-cycle-text span:nth-child(8n) {
  animation-delay: 7.5s;
}
.hero-cta-button-cycle-text span:nth-child(9n) {
  animation-delay: 8.5s;
}
.hero-cta-button-cycle-text span:last-child {
  animation-duration: 800ms;
  animation-name: zoomInWord;
}
.hero-cta-paragraph .lead {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta-paragraph .lead span {
  opacity: 0;
  overflow: hidden;
  animation-name: fadeInWord;
  animation-direction: linear;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}

@keyframes turnOnOpacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomInWord {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  80% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInWord {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotateWord {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  4% {
    opacity: 1;
    transform: rotateX(0deg);
  }
  16% {
    opacity: 1;
    transform: rotateX(0deg);
  }
  20% {
    opacity: 0;
    transform: rotateX(90deg);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.intro {
  padding: 100px 0;
}
.intro-title h3 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0 0 30px 0;
  padding: 0;
}
.intro-content a {
  color: #7dc142;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .intro-content .row div:first-child {
    order: 2 !important;
  }
}
@media (max-width: 992px) {
  .intro-content .row div:last-child {
    order: 1 !important;
  }
}

.features {
  padding: 100px 0;
  position: relative;
}
.features-overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.features-title h3 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0 0 30px 0;
  padding: 0;
}
.features-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 4px 2px 4px 2px rgba(36, 48, 72, 0.2);
  padding: 20px 20px 20px 0;
  margin-top: 40px;
  width: 98%;
  float: right;
}
@media (max-width: 992px) {
  .features-card {
    width: 90%;
    float: none;
    padding: 20px;
    margin: 20px auto;
  }
}
.features-card p {
  font-size: 1.125rem;
  margin-bottom: 0;
}
.features-card-oval {
  font-size: 1.25rem;
  background-size: 80% 89px;
  background-repeat: no-repeat;
  background-position: center;
  height: 89px;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 400;
  line-height: 0;
  text-shadow: 2px 2px rgba(36, 48, 72, 0.5);
  position: relative;
  left: -60px;
}
@media (max-width: 992px) {
  .features-card-oval {
    min-width: auto;
    margin: 0 auto 20px auto;
    left: auto;
    position: initial;
  }
}
.features-cta-button {
  text-align: center;
}
.features-cta-button a {
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: all 400ms ease-in-out;
}
.features-cta-button a:hover, .features-cta-button a:active {
  color: #ffffff !important;
  text-decoration: none;
  background-color: #4db759;
}
@media (max-width: 992px) {
  .features-cards.hide-on-mobile {
    display: none;
  }
}
.features-carousel {
  display: none;
}
@media (max-width: 992px) {
  .features-carousel {
    display: block;
  }
}
.features .carousel-inner {
  padding-bottom: 30px;
}
.features .carousel-indicators {
  bottom: -19px;
}
.features .carousel-indicators li {
  background-color: #464646;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

.solutions {
  padding: 100px 0 50px 0;
  position: relative;
}
.solutions-overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.solutions-title h3 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0 0 30px 0;
  padding: 0;
}
@media (max-width: 992px) {
  .solutions-title h3 {
    margin: 0;
  }
}
.solutions-content {
  padding: 50px 0 40px 0;
}
.solutions-content p {
  font-size: 1.125rem;
  color: #ffffff;
}
.solutions-img {
  position: absolute;
  top: 15px;
  left: 5px;
  width: 100%;
  text-align: center;
}
.solutions-card {
  background: url(../images/solutions-box-bg.png) no-repeat top left;
  position: relative;
  padding: 120px 10px 20px 10px;
  margin: 0px auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 284px;
  height: 355px;
}
@media (max-width: 992px) {
  .solutions-card {
    max-width: 280px;
  }
}
.solutions-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin: -50px auto 0 auto;
  display: block;
  padding: 0;
  max-width: 66%;
}
.solutions-card-button {
  position: absolute;
  bottom: 70px;
  width: 95%;
  text-align: center;
}
.solutions-card-button a {
  text-transform: uppercase;
  padding: 5px 30px;
  display: inline-block;
  transition: all 400ms ease-in-out;
}
.solutions-card-button a:hover, .solutions-card-button a:active {
  color: #ffffff !important;
  text-decoration: none;
  background-color: #4db759;
}
@media (max-width: 992px) {
  .solutions-cards.hide-on-mobile {
    display: none;
  }
}
.solutions-cards-2-2 {
  width: 600px;
  margin: 0 auto;
}
.solutions-carousel {
  display: none;
}
@media (max-width: 992px) {
  .solutions-carousel {
    display: block;
  }
}
.solutions-carousel .solutions-card {
  max-width: 280px;
  margin-top: 79px;
}
.solutions .carousel-indicators {
  bottom: -19px;
}
.solutions .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

.videos {
  padding: 100px 0 100px 0;
  position: relative;
}
.videos-overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.videos-title h2 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0 0 60px 0;
  padding: 0;
}
.videos-sub-title h3 {
  font-size: 2.5rem;
  line-height: 1.4;
  margin: 0 0 20px 0;
  padding: 0;
}
.videos-content {
  background-color: #0a8f91;
  margin: 0 auto 60px auto;
  max-width: 360px;
  text-align: center;
  padding: 0 20px;
}
.videos-content p {
  font-size: 32px !important;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 992px) {
  .videos-content p {
    font-size: 26px !important;
  }
}
.videos-card {
  flex: 0 0 20%;
}
.videos-cards {
  background: url(../images/gradient-bg.png) no-repeat top left;
  background-size: cover;
  padding: 25px;
}
.videos-cards-inner {
  box-shadow: 6px 3px 6px 3px rgba(36, 48, 72, 0.5);
  background-color: #ffffff;
  padding: 40px 0 20px 0;
}
.videos-cards-outer {
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .videos-cards-outer {
    flex-direction: column;
    align-items: center;
  }
}
.videos-card-button {
  position: relative;
  top: -25px;
}
.videos-card-name {
  font-weight: 400;
}
.videos-card-name, .videos-card-position {
  position: relative;
  top: -25px;
  font-size: 0.875rem;
}
.videos-img {
  max-width: 140px;
  margin: 0 auto;
}
.videos .modal-content {
  position: relative;
}
.videos .modal-close {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #f2f2f2;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  z-index: 99;
  cursor: pointer;
}
@media (max-width: 992px) {
  .videos .modal-close {
    top: 0;
    right: 0;
  }
}

.image-text-panel {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.horizontal-drawers-panel {
  background-color: #eee;
  padding: 80px 0;
}
.horizontal-drawers-panel .drawer {
  position: relative;
}
.horizontal-drawers-panel .drawer-bg-color-fruit-salad {
  background-color: #62b74d;
  border-top: 10px solid #4e953c;
}
.horizontal-drawers-panel .drawer-bg-color-sushi {
  background-color: #3a9f8b;
  border-top: 10px solid #2c7a6a;
}
.horizontal-drawers-panel .drawer-bg-color-eastern-blue {
  background-color: #12809a;
  border-top: 10px solid #0d5a6c;
}
.horizontal-drawers-panel .drawer-bg-color-deep-cerulean {
  background-color: #0f71a2;
  border-top: 10px solid #0b5073;
}
.horizontal-drawers-panel .drawer-bg-color-matisse {
  background-color: #09547f;
  border-top: 10px solid #06354f;
}
.horizontal-drawers-panel .drawer-bg-color-tory-blue {
  background-color: #145096;
  border-top: 10px solid #0e3869;
}
.horizontal-drawers-panel .drawer-txt-color-fruit-salad {
  color: #8bc040;
}
.horizontal-drawers-panel .drawer-txt-color-sushi {
  color: #4ca84d;
}
.horizontal-drawers-panel .drawer-txt-color-eastern-blue {
  color: #199496;
}
.horizontal-drawers-panel .drawer-txt-color-deep-cerulean {
  color: #0087A8;
}
.horizontal-drawers-panel .drawer-txt-color-matisse {
  color: #2367ac;
}
.horizontal-drawers-panel .drawer-txt-color-tory-blue {
  color: #145096;
}
.horizontal-drawers-panel .drawer-outer-container {
  display: flex;
  align-items: start;
}
@media (max-width: 992px) {
  .horizontal-drawers-panel .drawer-outer-container {
    flex-direction: column;
  }
}
.horizontal-drawers-panel .drawer-container {
  flex: 1 1;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 0;
  box-shadow: -4px 4px 8px 4px rgba(0, 0, 0, 0.15);
}
@media (max-width: 992px) {
  .horizontal-drawers-panel .drawer-container {
    max-width: 283px;
    margin: 0 auto 30px auto;
  }
}
.horizontal-drawers-panel .drawer-button {
  cursor: pointer;
  position: relative;
  min-height: 360px;
}
@media (max-width: 992px) {
  .horizontal-drawers-panel .drawer-button {
    min-height: 380px;
  }
}
.horizontal-drawers-panel .drawer-button > div {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.horizontal-drawers-panel .drawer-button span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.horizontal-drawers-panel .drawer-content.collapse.show {
  min-height: 385px;
}
@media (max-width: 992px) {
  .horizontal-drawers-panel .drawer-content.collapse.show {
    min-height: unset;
  }
}
.horizontal-drawers-panel .drawer-number {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.horizontal-drawers-panel .drawer-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.horizontal-drawers-panel .drawer-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
.horizontal-drawers-panel .drawer-sign {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  display: block;
  transition: all 400ms ease-in-out;
}
.horizontal-drawers-panel .drawer-sign:after {
  content: "+";
  display: inline-block;
  color: #333333;
  font-size: 32px;
}
.horizontal-drawers-panel .drawer-button:not(.collapsed) {
  height: auto;
}
.horizontal-drawers-panel .drawer-button:not(.collapsed) .drawer-sign {
  bottom: 5px;
}
.horizontal-drawers-panel .drawer-button:not(.collapsed) .drawer-sign:after {
  content: "-";
  font-size: 42px;
}

.flexible-columns-with-image-panel .text-center p {
  text-align: center;
  padding: 0 30px;
}
.flexible-columns-with-image-panel .row-boxed {
  gap: 0;
}
.flexible-columns-with-image-panel .col-lg {
  padding-left: 10px;
  padding-right: 10px;
}
.flexible-columns-with-image-panel .fc-panel-column-boxed {
  background-color: #fff;
  border: 1px solid #cacaca;
  box-shadow: 4px 2px 4px 2px rgba(36, 48, 72, 0.2);
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px 40px 10px;
}
@media (max-width: 1024px) {
  .flexible-columns-with-image-panel .fc-panel-column-boxed {
    max-width: 320px;
    min-height: auto;
    margin: 20px auto;
    padding: 40px;
  }
}
.flexible-columns-with-image-panel .fc-panel-column-boxed p {
  padding: 0;
  margin-bottom: 0;
}
.flexible-columns-with-image-panel .fc-panel-column-boxed h3 {
  color: #09547f;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}
@media (max-width: 1024px) {
  .flexible-columns-with-image-panel .fc-panel-column-boxed h3 {
    margin-bottom: 20px;
  }
}
.flexible-columns-with-image-panel .fc-panel-column-boxed img {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .flexible-columns-with-image-panel .fc-panel-column-boxed img {
    max-width: 240px;
  }
}
.flexible-columns-with-image-panel .fc-panel-column-inner {
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media (max-width: 1024px) {
  .flexible-columns-with-image-panel .fc-panel-column-inner {
    align-items: center;
    justify-content: center;
  }
}
.flexible-columns-with-image-panel .fc-panel-column-inner img {
  margin: 30px 0;
}
@media (max-width: 1024px) {
  .flexible-columns-with-image-panel .fc-panel-column-inner img {
    max-width: 180px;
  }
}
.flexible-columns-with-image-panel .fc-panel-column-inner:after {
  content: "";
  display: inline-block;
  flex: 0 0 4px;
  width: 4px;
  height: 100%;
  margin-left: 10px;
  background-image: url(../images/story-sep.png);
  background-size: 4px 100%;
  background-position: right 30px;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .flexible-columns-with-image-panel .fc-panel-column-inner:after {
    background: transparent;
    margin: 0;
  }
}
.flexible-columns-with-image-panel .fc-panel-column-inner:last-of-type:after {
  background: transparent;
}

.customer-press-kit {
  background-image: url(../images/horizontal-white-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.customer-press-kit h2 {
  margin: 40px 0;
  padding: 0;
  font-weight: 400;
}
@media (max-width: 992px) {
  .customer-press-kit h2 {
    font-size: 24px;
  }
}
.customer-press-kit h2 a {
  margin-left: 10px;
}
@media (max-width: 992px) {
  .customer-press-kit h2 a {
    margin-left: 5px;
  }
}
.customer-press-kit h2 a img {
  height: 32px;
}
@media (max-width: 992px) {
  .customer-press-kit h2 a img {
    height: 32px;
  }
}
.customer-press-kit h2 a.toggle-link-open img {
  content: url(../images/minus-icon.svg);
}
.customer-press-kit-files {
  display: flex;
  flex-direction: column;
}
.customer-press-kit-files a {
  display: flex;
  align-items: center;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
  font-size: 18px;
}
@media (max-width: 992px) {
  .customer-press-kit-files a {
    font-size: 16px;
  }
}
.customer-press-kit .word-doc-file:before {
  content: "";
  display: inline-block;
  background-image: url(../images/word-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.customer-press-kit .word-doc-file:after {
  content: "";
  display: inline-block;
  background-image: url(../images/download-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  width: 32px;
  height: 32px;
  margin-left: 10px;
}
.customer-press-kit .pdf-doc-file:before {
  content: "";
  display: inline-block;
  background-image: url(../images/acrobat-reader-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.customer-press-kit .pdf-doc-file:after {
  content: "";
  display: inline-block;
  background-image: url(../images/download-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  width: 32px;
  height: 32px;
  margin-left: 10px;
}

.flexible-columns-boxed {
  margin: 20px;
}
.flexible-columns-boxed .fc-panel-row {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.flexible-columns-boxed .boxed-content {
  position: relative;
}
.flexible-columns-boxed .boxed-content img {
  max-width: 470px;
}
@media (max-width: 540px) {
  .flexible-columns-boxed .boxed-content img {
    max-width: 100%;
  }
}
.flexible-columns-boxed .boxed-content span {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px 70px 0 70px;
}
@media (max-width: 992px) {
  .flexible-columns-boxed .boxed-content span {
    padding: 20px 40px 0 40px;
  }
}
.flexible-columns-boxed .boxed-content span p {
  font-size: 20px !important;
}
@media (max-width: 540px) {
  .flexible-columns-boxed .boxed-content span p {
    font-size: 15px !important;
  }
}

.cta-person-card .card-container {
  background-color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 75%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cta-person-card .card-container {
    flex-direction: column;
    max-width: 100%;
    padding: 20px;
    align-items: space-between;
  }
}
.cta-person-card .card-container h3 {
  font-size: 24px;
}
@media (max-width: 992px) {
  .cta-person-card .card-container h3 {
    text-align: center;
    margin: 0;
  }
}

.flexible-columns-features .flex-feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 4px 2px 4px 2px rgba(36, 48, 72, 0.2);
  padding: 40px 40px 40px 0;
  margin: 0 auto 40px auto;
  width: 85%;
}
@media (max-width: 992px) {
  .flexible-columns-features .flex-feature-card {
    width: 100%;
    padding: 15px;
  }
}
.flexible-columns-features .flex-feature-card p, .flexible-columns-features .flex-feature-card ol, .flexible-columns-features .flex-feature-card ul {
  font-size: 1.125rem;
  margin-bottom: 0;
}
.flexible-columns-features .flex-feature-card li {
  font-size: 1.125rem;
  margin: 10px 0;
}
.flexible-columns-features .feature-card-oval {
  position: relative;
  left: -90px;
}
@media (max-width: 1200px) {
  .flexible-columns-features .feature-card-oval {
    left: -120px;
  }
}
@media (max-width: 992px) {
  .flexible-columns-features .feature-card-oval {
    left: unset;
    text-align: center;
  }
}
.flexible-columns-features .feature-card-oval img {
  width: 180px;
  max-width: 180px;
  height: 180px;
}
.flexible-columns-features .feature-card-text {
  position: relative;
  left: -90px;
  width: 115%;
}
@media (max-width: 992px) {
  .flexible-columns-features .feature-card-text {
    left: unset;
    padding: 0 20px 20px 20px;
    width: 100%;
  }
}

.flexible-columns-features-oval .flex-feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 4px 2px 4px 2px rgba(36, 48, 72, 0.2);
  padding: 40px 40px 40px 0;
  margin: 30px auto;
  width: 85%;
}
@media (max-width: 992px) {
  .flexible-columns-features-oval .flex-feature-card {
    width: 100%;
    padding: 15px;
    margin: 60px auto;
  }
}
.flexible-columns-features-oval .flex-feature-card p, .flexible-columns-features-oval .flex-feature-card ol, .flexible-columns-features-oval .flex-feature-card ul {
  font-size: 1.125rem;
  margin-bottom: 0;
}
.flexible-columns-features-oval .flex-feature-card .feature-card-oval {
  position: relative;
  left: -60px;
}
@media (max-width: 1200px) {
  .flexible-columns-features-oval .flex-feature-card .feature-card-oval {
    left: -90px;
  }
}
@media (max-width: 992px) {
  .flexible-columns-features-oval .flex-feature-card .feature-card-oval {
    left: unset;
    text-align: center;
    margin: 20px 0;
  }
}
.flexible-columns-features-oval .flex-feature-card .feature-card-oval img {
  width: 200px;
  max-width: 200px;
}
.flexible-columns-features-oval .flex-feature-card .feature-card-text {
  position: relative;
  left: -30px;
  width: 115%;
}
@media (max-width: 992px) {
  .flexible-columns-features-oval .flex-feature-card .feature-card-text {
    left: unset;
    padding: 0 20px 20px 20px;
    width: 100%;
  }
}

.risk-solutions-hero .risk-section-mobile {
  display: none;
}
@media (max-width: 992px) {
  .risk-solutions-hero .risk-section-mobile {
    display: block;
  }
}
.risk-solutions-hero .section-headings h1 {
  animation-name: zoomIn;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 1s;
  transform: scale(0);
  opacity: 0;
}
.risk-solutions-hero .section-headings h3 {
  display: none;
}
.risk-solutions-hero h3 {
  font-size: 1.125rem;
  font-weight: 400;
}
.risk-solutions-hero .risk-section-outer {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.risk-solutions-hero .risk-section-top-shields,
.risk-solutions-hero .risk-section-bot-shields {
  height: 340px;
}
.risk-solutions-hero .risk-section-top-shields .container,
.risk-solutions-hero .risk-section-bot-shields .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.risk-solutions-hero .risk-section-top-shields .risk-section-panel-shield {
  position: relative;
}
.risk-solutions-hero .risk-section-top-shields .risk-section-panel-shield:nth-child(1n) {
  animation-delay: 2s;
}
.risk-solutions-hero .risk-section-top-shields .risk-section-panel-shield:nth-child(2n) {
  animation-delay: 4s;
}
.risk-solutions-hero .risk-section-top-shields .risk-section-panel-shield:nth-child(3n) {
  animation-delay: 6s;
}
.risk-solutions-hero .risk-section-bot-shields .risk-section-panel-shield {
  position: relative;
}
.risk-solutions-hero .risk-section-bot-shields .risk-section-panel-shield:nth-child(1n) {
  animation-delay: 3s;
}
.risk-solutions-hero .risk-section-bot-shields .risk-section-panel-shield:nth-child(2n) {
  animation-delay: 5s;
}
.risk-solutions-hero .risk-section-bot-shields .risk-section-panel-shield:nth-child(3n) {
  animation-delay: 7s;
}
.risk-solutions-hero .risk-section-top-shields {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .risk-solutions-hero .risk-section-top-shields {
    display: none;
  }
}
.risk-solutions-hero .risk-section-top-shields .risk-section-panel-shield {
  top: -340px;
  animation-name: scrollDown;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.risk-solutions-hero .risk-section-top-shields .risk-section-panel-shield:before {
  content: "";
  position: absolute;
  z-index: 11;
  bottom: -70px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #b5d242;
}
.risk-solutions-hero .risk-section-top-shields .risk-section-panel-shield:after {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: -70px;
  width: 3px;
  height: 160px;
  background-color: #ffffff;
}
.risk-solutions-hero .risk-section-bot-shields {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 992px) {
  .risk-solutions-hero .risk-section-bot-shields {
    display: none;
  }
}
.risk-solutions-hero .risk-section-bot-shields .risk-section-panel-shield {
  bottom: -410px;
  animation-name: scrollUp;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.risk-solutions-hero .risk-section-bot-shields .risk-section-panel-shield:before {
  content: "";
  position: absolute;
  z-index: 11;
  top: -80px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #b5d242;
}
.risk-solutions-hero .risk-section-bot-shields .risk-section-panel-shield:after {
  content: "";
  position: absolute;
  z-index: 10;
  top: -80px;
  width: 3px;
  height: 120px;
  background-color: #ffffff;
}
.risk-solutions-hero .risk-section-panel-shield {
  background: url(../images/badge.png) no-repeat center;
  padding: 0 77px 30px 43px;
  width: 240px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.risk-solutions-hero .risk-section-panel-shield-mobile {
  background: url(../images/badge.png) no-repeat center;
  padding: 0 77px 30px 43px;
  width: 240px;
  height: 270px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.risk-solutions-hero .risk-section-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.risk-solutions-hero .risk-section-subtitle h2 {
  border-top: 5px solid #b5cad3;
  border-bottom: 5px solid #b5cad3;
  animation-name: growUp;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  transform: scale(0);
  height: 40px;
  width: 540px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .risk-solutions-hero .risk-section-subtitle h2 {
    font-size: 1.625rem;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes growUp {
  0% {
    height: 40px;
    width: 540px;
    transform: scale(0);
  }
  100% {
    height: 130px;
    width: 100%;
    transform: scale(1);
  }
}
@keyframes scrollUp {
  0% {
    bottom: -320px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes scrollDown {
  0% {
    top: -320px;
  }
  100% {
    top: 10px;
  }
}
.hero-intro-card .our-story-container {
  background-color: #1c6a92;
  padding: 60px 60px 30px 60px;
}
@media (max-width: 992px) {
  .hero-intro-card .our-story-container {
    padding: 20px 20px 15px 20px;
  }
}
.hero-intro-card .our-story-container-inner {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 992px) {
  .hero-intro-card .our-story-container-inner {
    flex-direction: column;
  }
}
.hero-intro-card .our-story-container-inner p {
  margin-bottom: 0;
}
.hero-intro-card hr {
  border: 0;
  border-top: 4px solid #5b8eab;
  background-color: transparent;
  margin-top: 30px;
}
.hero-intro-card img {
  width: auto;
  height: 150px;
}
@media (max-width: 992px) {
  .hero-intro-card img {
    width: auto;
    height: auto;
  }
}
.hero-intro-card blockquote img {
  width: 16px;
  height: 10px;
  top: -5px;
  position: relative;
}

.lms .section-content {
  display: none;
}
.lms .text-center p {
  text-align: center;
}
.lms .lms-desktop {
  display: block;
  background-color: #fff;
  padding: 40px 40px 20px 40px;
  margin-bottom: 40px;
  border-radius: 2px;
  box-shadow: 4px 2px 4px 2px rgba(36, 48, 72, 0.2);
}
@media (max-width: 992px) {
  .lms .lms-desktop {
    display: none;
  }
}
.lms .lms-desktop ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  top: -20px;
  display: flex;
  align-items: center;
}
.lms .lms-desktop ul li {
  color: #09547f;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-block;
  width: 19.7%;
  text-align: center;
}
.lms .lms-mobile {
  display: none;
}
@media (max-width: 992px) {
  .lms .lms-mobile {
    display: block;
  }
}
.lms .lms-mobile ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.lms .lms-mobile ul li {
  background-color: #f9f9f9;
  border-radius: 50%;
  width: 290px;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
}
.lms .lms-mobile ul li span {
  margin-top: 20px;
  color: #09547f;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-block;
}

.flexible-columns-features-lms .flex-feature-card {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 2px 1px 2px 1px rgba(36, 48, 72, 0.1);
  height: 125px;
  display: flex;
  margin: 30px auto;
  width: 100%;
}
.flexible-columns-features-lms .flex-feature-card .row {
  width: 120%;
}
@media (max-width: 992px) {
  .flexible-columns-features-lms .flex-feature-card {
    width: 100%;
    height: auto;
    padding: 15px;
    margin: 60px auto;
  }
}
.flexible-columns-features-lms .flex-feature-card .col-lg-3 {
  position: static;
}
.flexible-columns-features-lms .flex-feature-card p, .flexible-columns-features-lms .flex-feature-card ol, .flexible-columns-features-lms .flex-feature-card ul {
  font-size: 1.125rem;
  margin-bottom: 0;
}
.flexible-columns-features-lms .flex-feature-card .feature-card-lms {
  position: static;
}
@media (max-width: 992px) {
  .flexible-columns-features-lms .flex-feature-card .feature-card-lms {
    text-align: center;
    margin: 20px 0;
  }
}
.flexible-columns-features-lms .flex-feature-card .feature-card-lms img {
  top: 0;
  height: 100%;
  max-width: 100%;
  width: auto;
  position: absolute;
}
@media (max-width: 992px) {
  .flexible-columns-features-lms .flex-feature-card .feature-card-lms img {
    position: static;
    max-width: 240px;
    margin: 0 auto;
  }
}
.flexible-columns-features-lms .flex-feature-card .feature-card-text {
  position: relative;
  left: 100px;
  width: 85%;
}
@media (max-width: 1200px) {
  .flexible-columns-features-lms .flex-feature-card .feature-card-text {
    left: 140px;
    width: 75%;
  }
}
@media (max-width: 992px) {
  .flexible-columns-features-lms .flex-feature-card .feature-card-text {
    left: unset;
    padding: 0 20px 20px 20px;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .flexible-columns-features-lms .panel-cta-button.w-50 {
    width: 100% !important;
  }
}

.lms-checkmarks {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.lms-checkmarks li {
  position: relative;
  display: flex;
  align-items: center;
}
.lms-checkmarks li:before {
  content: "";
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background: url("/wp-content/themes/benchmarkanalytics2019/assets/dev/images/checkmark.png") no-repeat center;
  background-size: 32px 32px;
  margin-right: 10px;
}

.flexible-columns-cards {
  height: 100%;
}
.flexible-columns-cards .col-md-6 {
  margin: 25px 0;
}
.flexible-columns-cards .flex-column-card {
  height: 100%;
  box-shadow: 4px 2px 4px 2px rgba(36, 48, 72, 0.2);
  background-color: #fff;
}
@media (max-width: 992px) {
  .flexible-columns-cards .flex-column-card {
    max-width: 320px;
    margin: 0 auto;
  }
}
.flexible-columns-cards .flex-column-card .column-card-title {
  text-align: center;
  color: #fff;
  background-color: #118bc9;
  padding: 10px;
  font-size: 1.375rem;
  font-weight: 400;
}
.flexible-columns-cards .flex-column-card .column-card-text {
  padding: 20px;
  min-height: 320px;
}
.flexible-columns-cards .flex-column-card .column-card-text.mh0 {
  min-height: auto;
}
@media (max-width: 992px) {
  .flexible-columns-cards .flex-column-card .column-card-text {
    min-height: auto;
  }
}
.flexible-columns-cards .flex-column-card .column-card-text p {
  text-align: center;
}

.paradot-form .form-container {
  max-width: 50%;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .paradot-form .form-container {
    max-width: 90%;
  }
}

.home-hero-video {
  position: relative;
  text-align: center;
}
.home-hero-video .hero-video {
  width: 100%;
  height: auto;
}
.home-hero-video .hero-cta {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25%;
  display: inline-block;
  cursor: pointer;
}

.customer-spotlight .customer-spotlight-contianer {
  background-color: #c7e0ed;
  border-radius: 8px;
  padding: 15px;
  display: block;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (min-width: 992px) {
  .customer-spotlight .customer-spotlight-contianer {
    display: flex;
  }
}
@media (min-width: 576px) {
  .customer-spotlight .customer-spotlight-contianer {
    padding: 35px 45px 35px 45px;
  }
}
.customer-spotlight .customer-info {
  flex: 0 0 50%;
}
.customer-spotlight .customer-card {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.customer-spotlight .customer-card > img {
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 15px 30px;
}
.customer-spotlight .customer-card .customer-video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.customer-spotlight .customer-card .customer-video-placeholder img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.customer-spotlight .customer-card .customer-video-placeholder:before {
  content: "";
  position: absolute;
  z-index: 10;
  background-image: url(../images/video-play-button-2.png);
  background-size: 96px 96px;
  width: 96px;
  height: 96px;
}
.customer-spotlight .customer-card .customer-details {
  text-align: center;
  padding: 15px;
}
@media (min-width: 576px) {
  .customer-spotlight .customer-card .customer-details {
    padding: 45px;
  }
}
.customer-spotlight .customer-card .customer-details h3 {
  color: #184784;
  font-size: 28px;
  font-weight: 500;
}
.customer-spotlight .customer-card .customer-details h4 {
  color: #4d4d4d;
  font-size: 26px;
}
.customer-spotlight .customer-addon {
  font-size: 28px;
  color: #818286;
  margin: 30px 15px 0 15px;
}
.customer-spotlight .customer-quotes {
  flex: 0 0 50%;
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
}
@media (min-width: 576px) {
  .customer-spotlight .customer-quotes {
    padding: 30px 30px 15px 30px;
  }
}
.customer-spotlight .customer-quotes .quote-containter h5 {
  font-size: 22px;
  font-weight: 500;
  border: 5px solid transparent;
  -o-border-image: linear-gradient(45deg, #a9aaab, #7b7c7c);
     border-image: linear-gradient(45deg, #a9aaab, #7b7c7c);
  border-image-slice: 1;
  color: #fff;
  width: 100%;
  padding: 15px 20px;
  box-shadow: inset 0 0 8px #000;
}
@media (min-width: 576px) {
  .customer-spotlight .customer-quotes .quote-containter h5 {
    width: 320px;
  }
}
.customer-spotlight .customer-quotes .quote-containter .quote-text p {
  font-size: 20px !important;
  color: #4d4d4d;
}
.customer-spotlight .customer-quotes .quote-containter .quote-text p:before {
  content: "❝";
  font-size: 40px;
  top: 15px;
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
.customer-spotlight .customer-quotes .quote-containter .quote-text p:after {
  content: "❞";
  font-size: 40px;
  top: 15px;
  margin-left: 5px;
  position: relative;
  display: inline-block;
}
.customer-spotlight .customer-quotes .quote-color-sea-blue h5 {
  background: #118bc9;
  background: radial-gradient(circle, #118bc9 0%, #0f7bb1 50%, #139be1 75%);
}
.customer-spotlight .customer-quotes .quote-color-sea-blue .quote-text p:before, .customer-spotlight .customer-quotes .quote-color-sea-blue .quote-text p:after {
  color: #118bc9;
}
.customer-spotlight .customer-quotes .quote-color-deep-blue h5 {
  background: #264ca0;
  background: radial-gradient(circle, #264ca0 0%, #21428b 50%, #2b56b5 75%);
}
.customer-spotlight .customer-quotes .quote-color-deep-blue .quote-text p:before, .customer-spotlight .customer-quotes .quote-color-deep-blue .quote-text p:after {
  color: #264ca0;
}
.customer-spotlight .customer-quotes .quote-color-darkblue h5 {
  background: #32449E;
  background: radial-gradient(circle, #32449E 0%, #2c3c8b 50%, #384cb1 75%);
}
.customer-spotlight .customer-quotes .quote-color-darkblue .quote-text p:before, .customer-spotlight .customer-quotes .quote-color-darkblue .quote-text p:after {
  color: #32449E;
}
.customer-spotlight .customer-quotes .quote-color-royal-blue h5 {
  background: #234c82;
  background: radial-gradient(circle, #234c82 0%, #1e406e 50%, #285896 75%);
}
.customer-spotlight .customer-quotes .quote-color-royal-blue .quote-text p:before, .customer-spotlight .customer-quotes .quote-color-royal-blue .quote-text p:after {
  color: #234c82;
}
.customer-spotlight .customer-quotes .quote-color-dark-cerulean h5 {
  background: #09547f;
  background: radial-gradient(circle, #09547f 0%, #074467 50%, #0b6497 75%);
}
.customer-spotlight .customer-quotes .quote-color-dark-cerulean .quote-text p:before, .customer-spotlight .customer-quotes .quote-color-dark-cerulean .quote-text p:after {
  color: #09547f;
}
.customer-spotlight .customer-quotes .quote-color-navyblue h5 {
  background: #184784;
  background: radial-gradient(circle, #184784 0%, #143b6e 50%, #1c539a 75%);
}
.customer-spotlight .customer-quotes .quote-color-navyblue .quote-text p:before, .customer-spotlight .customer-quotes .quote-color-navyblue .quote-text p:after {
  color: #09547f;
}
.customer-spotlight .customer-quotes .quote-color-mint h5 {
  background: #009497;
  background: radial-gradient(circle, #009497 0%, #007b7e 50%, #00adb1 75%);
}
.customer-spotlight .customer-quotes .quote-color-mint .quote-text p:before, .customer-spotlight .customer-quotes .quote-color-mint .quote-text p:after {
  color: #009497;
}
.customer-spotlight .customer-quotes .quote-color-core-brand-color h5 {
  background: #81b10d;
  background: radial-gradient(circle, #81b10d 0%, #70990b 50%, #92c90f 75%);
}
.customer-spotlight .customer-quotes .quote-color-core-brand-color .quote-text p:before, .customer-spotlight .customer-quotes .quote-color-core-brand-color .quote-text p:after {
  color: #81b10d;
}
.customer-spotlight .customer-quotes .quote-color-blue h5 {
  background: #2083B6;
  background: radial-gradient(circle, #2083B6 0%, #1c73a0 50%, #2493cc 75%);
}
.customer-spotlight .customer-quotes .quote-color-blue .quote-text p:before, .customer-spotlight .customer-quotes .quote-color-blue .quote-text p:after {
  color: #2083B6;
}

.blurb-image-text .blurb-container {
  display: block;
  align-items: center;
  justify-content: center;
  padding: 45px;
  gap: 60px;
  background-color: #fff;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .blurb-image-text .blurb-container {
    display: flex;
  }
}
.blurb-image-text .blurb-image {
  flex: 0 0 35%;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .blurb-image-text .blurb-image {
    margin-bottom: 0px;
  }
}
.blurb-image-text .blurb-content {
  flex: 1 1;
}
.blurb-image-text .blurb-content p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Iacp event schedule module.
--------------------------------------------------------------*/
.schedule-tab-wrapper {
  border: 1px solid #cbcbca;
  background-color: #fff;
  padding: 0;
  max-height: 510px;
  overflow-x: scroll;
  margin-right: 50px;
}
@media (max-width: 991px) {
  .schedule-tab-wrapper {
    margin-right: 0;
  }
}
.schedule-tab-wrapper #event_schedule_tabs {
  padding: 22px 32px;
  border-bottom: 1px solid #cbcbca;
}
@media (max-width: 414px) {
  .schedule-tab-wrapper #event_schedule_tabs {
    padding: 22px 15px;
  }
}
.schedule-tab-wrapper #event_schedule_tabs li.nav-item {
  margin: 0;
  padding: 0;
}
.schedule-tab-wrapper #event_schedule_tabs li.nav-item + li.nav-item {
  margin-left: 40px;
}
@media (max-width: 414px) {
  .schedule-tab-wrapper #event_schedule_tabs li.nav-item + li.nav-item {
    margin-left: 10px;
  }
}
.schedule-tab-wrapper #event_schedule_tabs li.nav-item .nav-link {
  font-size: 24px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #5ea746;
  border: none;
  border-radius: 0;
  padding: 0 10px;
}
@media (max-width: 414px) {
  .schedule-tab-wrapper #event_schedule_tabs li.nav-item .nav-link {
    font-size: 18px;
  }
}
.schedule-tab-wrapper #event_schedule_tabs li.nav-item .nav-link.active {
  color: #fff;
  background-color: #104583;
}
.schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions {
  padding: 0;
  margin: 0;
}
.schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions li.session {
  padding: 14px 32px 10px;
  border-bottom: 1px solid #cbcbca;
}
@media (max-width: 414px) {
  .schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions li.session {
    justify-content: flex-start !important;
    display: flex !important;
    flex-wrap: wrap;
  }
}
.schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions li.session:last-child {
  border-bottom: 0;
}
.schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions li.session .session-thumbnail {
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 414px) {
  .schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions li.session .session-thumbnail {
    margin: 0 auto 15px auto;
  }
}
.schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions li.session .session-thumbnail + .session-details {
  margin-left: 20px;
}
@media (max-width: 414px) {
  .schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions li.session .session-thumbnail + .session-details {
    margin-left: 0;
    flex: 1 0 100%;
    max-width: 100%;
    justify-content: center;
    display: flex !important;
    flex-wrap: wrap;
  }
}
.schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions li.session .session-details {
  width: calc(100% - 140px);
}
@media (max-width: 414px) {
  .schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions li.session .session-details .session-info {
    text-align: center;
  }
}
@media (max-width: 414px) {
  .schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions li.session .session-details .session-info .session-title {
    font-size: 16px;
  }
}
.schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions li.session .session-details .session-cta {
  justify-self: flex-end;
  margin-left: auto;
}
@media (max-width: 414px) {
  .schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions li.session .session-details .session-cta {
    flex: 1 0 100%;
    max-width: 100%;
    text-align: center;
  }
}
.schedule-tab-wrapper #event_schedule_tabs_content .tab-pane .sessions li.session .session-details .session-cta .btn {
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  background-color: #5ea746;
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 8px 12px;
}

.custom-container .container {
  background-color: #fff;
  padding: 60px;
  max-width: 980px;
  border-radius: 10px;
  box-shadow: -2px 2px 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .custom-container .container {
    padding: 20px;
    margin: 0 15px;
    width: auto;
    max-width: auto;
  }
}
.custom-container .container .section-headings {
  text-align: left !important;
  padding-top: 0;
}

.image-custom-container .image-outer-container {
  position: relative;
}
.image-custom-container .image-outer-container > p {
  font-size: 1.25rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .image-custom-container .image-outer-container > p {
    position: relative;
  }
}

.steps-outer-container {
  background-image: url(../images/horizontal-blue-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.steps-icon-1-container .container,
.steps-icon-2-container .container,
.steps-icon-3-container .container {
  background-color: #fff;
  padding: 60px;
  max-width: 980px;
  border-radius: 10px;
  box-shadow: -2px 2px 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .steps-icon-1-container .container,
  .steps-icon-2-container .container,
  .steps-icon-3-container .container {
    padding: 20px;
    margin: 0 15px;
    width: auto;
    max-width: auto;
  }
}
.steps-icon-1-container .section-headings,
.steps-icon-2-container .section-headings,
.steps-icon-3-container .section-headings {
  text-align: left !important;
  padding-top: 0;
}
.steps-icon-1-container .section-headings h3,
.steps-icon-2-container .section-headings h3,
.steps-icon-3-container .section-headings h3 {
  text-align: left !important;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0;
  margin: 0 0 30px 0 !important;
}
@media (max-width: 992px) {
  .steps-icon-1-container .section-headings h3,
  .steps-icon-2-container .section-headings h3,
  .steps-icon-3-container .section-headings h3 {
    display: block;
  }
}
.steps-icon-1-container .section-headings h3:before,
.steps-icon-2-container .section-headings h3:before,
.steps-icon-3-container .section-headings h3:before {
  content: "";
  display: inline-block;
  background-size: 60px 60px;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  flex: 0 0 60px;
}
@media (max-width: 992px) {
  .steps-icon-1-container .section-headings h3:before,
  .steps-icon-2-container .section-headings h3:before,
  .steps-icon-3-container .section-headings h3:before {
    float: left;
  }
}

.steps-icon-1-container .section-headings h3:before {
  background-image: url(../images/1.png);
}

.steps-icon-2-container .section-headings h3:before {
  background-image: url(../images/2.png);
}

.steps-icon-3-container .section-headings h3:before {
  background-image: url(../images/3.png);
}

.carousel-control-next-icon:before {
  right: -5px;
  left: auto;
}

.mission-outer-container {
  background-image: url(../images/vertical-white-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.mission-outer-container .mission-container-custom .tril-container,
.mission-outer-container .mission-container-custom .tlir-container {
  box-shadow: 0px 4px 6px 2px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  padding: 15px;
}
@media (max-width: 992px) {
  .mission-outer-container .mission-container-custom .tril-container,
  .mission-outer-container .mission-container-custom .tlir-container {
    padding: 30px;
  }
}
.mission-outer-container .mission-container-custom .tril-container p,
.mission-outer-container .mission-container-custom .tlir-container p {
  margin-bottom: 0;
}
.mission-outer-container .mission-container .tril-text-col {
  padding-right: 15px;
}
@media (max-width: 992px) {
  .mission-outer-container .mission-container .tril-text-col {
    margin-bottom: 30px;
  }
}
.mission-outer-container .mission-container .tlir-text-col {
  padding-left: 15px;
}
@media (max-width: 992px) {
  .mission-outer-container .mission-container .tlir-text-col {
    margin-bottom: 30px;
    padding-left: 0;
  }
}

.state-agency-container h2 {
  margin-bottom: 0 !important;
}
@media (max-width: 992px) {
  .state-agency-container .container {
    overflow: hidden;
  }
}
.state-agency-container .section-headings {
  position: relative;
  text-align: left;
}
.state-agency-container .section-headings:after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 1;
  margin: 0 -50%;
  width: 200%;
}
@media (max-width: 992px) {
  .state-agency-container .section-headings:after {
    bottom: 10px;
  }
}
.state-agency-container .panel-img-before-title {
  box-shadow: none !important;
  background-color: transparent !important;
  max-width: unset !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-block;
}
.state-agency-container .panel-img-before-title img {
  height: 100px;
  position: relative;
  top: 10px;
  z-index: 9;
}
@media (max-width: 992px) {
  .state-agency-container .panel-img-before-title img {
    height: 80px;
  }
}
.state-agency-container .panel-img-before-title + h2 {
  display: inline-block;
  font-size: 28px;
}
@media (max-width: 1200px) {
  .state-agency-container .panel-img-before-title + h2 {
    width: calc(100% - 150px);
  }
}
@media (max-width: 768px) {
  .state-agency-container .panel-img-before-title + h2 {
    width: calc(100% - 100px);
    font-size: 24px;
  }
}

.state-agency-line-color-green .section-headings:after {
  background-color: #1ea551;
}
.state-agency-line-color-teal .section-headings:after {
  background-color: #32a485;
}
.state-agency-line-color-white .section-headings:after {
  background-color: #ffffff;
}
.state-agency-line-color-blue .section-headings:after {
  background-color: #0c6794;
}
.state-agency-line-color-blue-alt .section-headings:after {
  background-color: #1e8ead;
}

#global-hero-wrapper {
  background: url("../images/horizontal-blue-bg.jpg") no-repeat center center;
  background-size: cover;
}

.panel-background-image {
  background-size: cover !important;
}/*# sourceMappingURL=style.css.map */