
  .fade-out {
    opacity: 0;
    transition: opacity 0.6s ease-out;
  }

.custom-offcanvas {
  width: 270px;
  background: #ffffff;
  border-left: 1px solid #eaf0f6;
}

.custom-offcanvas .offcanvas-header {
  background: #f8faff;
}

.custom-offcanvas .nav-link {
  padding: 10px 12px;
  border-radius: 8px;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.custom-offcanvas .nav-link:hover {
  background: #f0f6ff;
  color: #0d6efd;
  transform: translateX(3px);
}

.custom-offcanvas .btn-primary {
  font-weight: 600;
}


/* === FIX 1: kill Bootstrap's default caret (no .navbar prefix) === */
nav .dropdown-toggle::after {
  content: none !important;   /* more robust than display:none */
}

/* === Arrow we control === */
.mega-dropdown > .nav-link .bi {
  transition: transform .25s ease;
}
.mega-dropdown:hover > .nav-link .bi,
.mega-dropdown.show > .nav-link .bi {
  transform: rotate(180deg);
}

/* === Links + underline indicator (use consistent selector) === */
nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.75rem 1rem;
  position: relative;
  transition: color .3s ease;
  display: inline-flex;       /* keeps underline width tied to text */
  align-items: center;
  gap: .25rem;
}
nav .nav-link:hover,
nav .nav-link.active {
  color: #007bff;
}

/* underline — centered under text, then expands */
nav .nav-link::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 50%;
  bottom: -6px;               /* <- removed duplicate bottom */
  transform: translateX(-50%);
  background: #007bff;
  transition: width .25s ease, left .25s ease, transform .25s ease;
}
nav .nav-link:hover::after,
nav .nav-link.active::after {
  width: 100%;
  left: 0;
  transform: none;
}

/* === Mega menu placement === */
.mega-dropdown { position: static !important; }
.mega-menu {
  position: absolute;
  left: auto; right: auto; 
  top: 100%;
  margin: auto;
  background: #fff;
  border-radius: .5rem;
  z-index: 1050;
  display: none;
}
.mega-dropdown:hover .mega-menu { display: inline; max-width: fit-content;}

/* Dropdown item polish */
.dropdown-item {
  font-size: .95rem;
  padding: .5rem 0;
  transition: transform .2s ease, color .2s ease;
}
.dropdown-item:hover {
  color: #007bff;
  background: transparent;
  transform: translateX(5px);
}

/* (Optional) If you want to keep images circular, use Bootstrap's class */
.rounded-full { border-radius: 9999px; } /* or replace with .rounded-circle */

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid\9;
    content: ""
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px
}

@media (min-width:769px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }
    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto
    }
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.btn-group-vertical>.btn,
.btn-group>.btn {
    position: relative;
    float: left
}

.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:hover,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus,
.btn-group>.btn:hover {
    z-index: 2
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group {
    margin-left: -1px
}

.btn-toolbar {
    margin-left: -5px
}

.btn-toolbar:after,
.btn-toolbar:before {
    content: " ";
    display: table
}

.btn-toolbar:after {
    clear: both
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
    float: left
}

.btn-toolbar>.btn,
.btn-toolbar>.btn-group,
.btn-toolbar>.input-group {
    margin-left: 5px
}

.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group>.btn:first-child {
    margin-left: 0
}

.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group>.btn:last-child:not(:first-child),
.btn-group>.dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group>.btn-group {
    float: left
}

.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group>.btn+.dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px
}

.btn-group-lg.btn-group>.btn+.dropdown-toggle,
.btn-group>.btn-lg+.dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn .caret {
    margin-left: 0
}

.btn-group-lg>.btn .caret,
.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-group-lg>.btn .caret,
.dropup .btn-lg .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group,
.btn-group-vertical>.btn-group>.btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.btn-group-vertical>.btn-group:after,
.btn-group-vertical>.btn-group:before {
    content: " ";
    display: table
}

.btn-group-vertical>.btn-group:after {
    clear: both
}

.btn-group-vertical>.btn-group>.btn {
    float: none
}

.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn+.btn-group,
.btn-group-vertical>.btn-group+.btn,
.btn-group-vertical>.btn-group+.btn-group {
    margin-top: -1px;
    margin-left: 0
}

.btn-group-vertical>.btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.btn-group-vertical>.btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group-justified>.btn,
.btn-group-justified>.btn-group {
    float: none;
    display: table-cell;
    width: 1%
}

.btn-group-justified>.btn-group .btn {
    width: 100%
}

.btn-group-justified>.btn-group .dropdown-menu {
    left: auto
}

[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],
[data-toggle=buttons]>.btn-group>.btn input[type=radio],
[data-toggle=buttons]>.btn input[type=checkbox],
[data-toggle=buttons]>.btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group[class*=col-] {
    float: none;
    padding-left: 0;
    padding-right: 0
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group .form-control:focus {
    z-index: 3
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #666;
    border-radius: 4px
}

.input-group-addon.input-sm,
.input-group-sm>.input-group-addon,
.input-group-sm>.input-group-btn>.input-group-addon.btn {
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 3px
}

.input-group-addon.input-lg,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.input-group-addon.btn {
    padding: 10px 16px;
    font-size: 23px;
    border-radius: 6px
}

.input-group-addon input[type=checkbox],
.input-group-addon input[type=radio] {
    margin-top: 0
}

.input-group-addon:first-child,
.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group>.btn,
.input-group-btn:first-child>.dropdown-toggle,
.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,
.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group .form-control:first-child {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group-addon:last-child,
.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,
.input-group-btn:first-child>.btn:not(:first-child),
.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group>.btn,
.input-group-btn:last-child>.dropdown-toggle,
.input-group .form-control:last-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    font-size: 0;
    white-space: nowrap
}

.input-group-btn,
.input-group-btn>.btn {
    position: relative
}

.input-group-btn>.btn+.btn {
    margin-left: -1px
}

.input-group-btn>.btn:active,
.input-group-btn>.btn:focus,
.input-group-btn>.btn:hover {
    z-index: 2
}

.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group {
    margin-right: -1px
}

.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group {
    z-index: 2;
    margin-left: -1px
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none
}

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

.nav:after {
    clear: both
}

.nav>li,
.nav>li>a {
    position: relative;
    display: block
}

.nav>li>a {
    padding: 10px 15px
}

.nav>li>a:focus,
.nav>li>a:hover {
    text-decoration: none;
    /* background-color: #f7f4f4 */
}

.nav>li.disabled>a {
    color: #777
}

.nav>li.disabled>a:focus,
.nav>li.disabled>a:hover {
    color: #777;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
    background-color: #eee;
    border-color: #2C83EC
}

.nav .nav-divider {
    height: 1px;
    margin: 13px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.nav>li>a>img {
    max-width: none
}

.nav-tabs {
    border-bottom: 1px solid #ddd
}

.nav-tabs>li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.6;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0
}

.nav-tabs>li>a:hover {
    border-color: #eee #eee #ddd
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default
}

.nav-pills>li {
    float: left
}

.nav-pills>li>a {
    border-radius: 4px
}

.nav-pills>li+li {
    margin-left: 2px
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
    color: #fff;
    background-color: #2C83EC
}

.nav-stacked>li {
    float: none
}

.nav-stacked>li+li {
    margin-top: 2px;
    margin-left: 0
}

.nav-justified,
.nav-tabs.nav-justified {
    width: 100%
}

.nav-justified>li,
.nav-tabs.nav-justified>li {
    float: none
}

.nav-justified>li>a,
.nav-tabs.nav-justified>li>a {
    text-align: center;
    margin-bottom: 5px
}

.nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width:769px) {
    .nav-justified>li,
    .nav-tabs.nav-justified>li {
        display: table-cell;
        width: 1%
    }
    .nav-justified>li>a,
    .nav-tabs.nav-justified>li>a {
        margin-bottom: 0
    }
}

.nav-tabs-justified,
.nav-tabs.nav-justified {
    border-bottom: 0
}

.nav-tabs-justified>li>a,
.nav-tabs.nav-justified>li>a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs-justified>.active>a,
.nav-tabs-justified>.active>a:focus,
.nav-tabs-justified>.active>a:hover,
.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:focus,
.nav-tabs.nav-justified>.active>a:hover {
    border: 1px solid #ddd
}

@media (min-width:769px) {
    .nav-tabs-justified>li>a,
    .nav-tabs.nav-justified>li>a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }
    .nav-tabs-justified>.active>a,
    .nav-tabs-justified>.active>a:focus,
    .nav-tabs-justified>.active>a:hover,
    .nav-tabs.nav-justified>.active>a,
    .nav-tabs.nav-justified>.active>a:focus,
    .nav-tabs.nav-justified>.active>a:hover {
        border-bottom-color: #fff
    }
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 28px;
    border: 1px solid transparent
}

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

.navbar:after {
    clear: both
}

@media (min-width:769px) {
    .navbar {
        border-radius: 4px
    }
}

.navbar-header:after,
.navbar-header:before {
    content: " ";
    display: table
}

.navbar-header:after {
    clear: both
}

@media (min-width:769px) {
    .navbar-header {
        float: left
    }
}

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .1);
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .1);
    -webkit-overflow-scrolling: touch
}

.navbar-collapse:after,
.navbar-collapse:before {
    content: " ";
    display: table
}

.navbar-collapse:after {
    clear: both
}

.navbar-collapse.in {
    overflow-y: auto
}

@media (min-width:769px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }
    .navbar-collapse.collapse {
        display: block!important;
        height: auto!important;
        padding-bottom: 0;
        overflow: visible!important
    }
    .navbar-collapse.in {
        overflow-y: visible
    }
    .navbar-fixed-bottom .navbar-collapse,
    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse {
        padding-left: 0;
        padding-right: 0
    }
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
    max-height: 340px
}

@media (max-device-width:480px) and (orientation:landscape) {
    .navbar-fixed-bottom .navbar-collapse,
    .navbar-fixed-top .navbar-collapse {
        max-height: 200px
    }
}

.container-fluid>.navbar-collapse,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container>.navbar-header {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width:769px) {
    .container-fluid>.navbar-collapse,
    .container-fluid>.navbar-header,
    .container>.navbar-collapse,
    .container>.navbar-header {
        margin-right: 0;
        margin-left: 0
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

@media (min-width:769px) {
    .navbar-static-top {
        border-radius: 0
    }
}

.navbar-fixed-bottom,
.navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030
}

@media (min-width:769px) {
    .navbar-fixed-bottom,
    .navbar-fixed-top {
        border-radius: 0
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0
}

.navbar-brand {
    float: left;
    padding: 11px 15px;
    font-size: 23px;
    line-height: 28px;
    height: 50px
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none
}

.navbar-brand>img {
    display: block
}

@media (min-width:769px) {
    .navbar>.container-fluid .navbar-brand,
    .navbar>.container .navbar-brand {
        margin-left: -15px
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px
}

.navbar-toggle:focus {
    outline: 0
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px
}

@media (min-width:769px) {
    .navbar-toggle {
        display: none
    }
}

.navbar-nav {
    margin: 5.5px -15px
}

.navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 28px
}

@media (max-width:768px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }
    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu>li>a {
        padding: 5px 15px 5px 25px
    }
    .navbar-nav .open .dropdown-menu>li>a {
        line-height: 28px
    }
    .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-nav .open .dropdown-menu>li>a:hover {
        background-image: none
    }
}

@media (min-width:769px) {
    .navbar-nav {
        float: left;
        margin: 0
    }
    .navbar-nav>li {
        float: left
    }
    .navbar-nav>li>a {
        padding-top: 11px;
        padding-bottom: 11px
    }
}

.navbar-form {
    margin: 4px -15px;
    padding: 10px 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .1), 0 1px 0 hsla(0, 0%, 100%, .1);
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .1), 0 1px 0 hsla(0, 0%, 100%, .1)
}

@media (min-width:769px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }
    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }
    .navbar-form .form-control-static {
        display: inline-block
    }
    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle
    }
    .navbar-form .input-group .form-control,
    .navbar-form .input-group .input-group-addon,
    .navbar-form .input-group .input-group-btn {
        width: auto
    }
    .navbar-form .input-group>.form-control {
        width: 100%
    }
    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }
    .navbar-form .checkbox,
    .navbar-form .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }
    .navbar-form .checkbox label,
    .navbar-form .radio label {
        padding-left: 0
    }
    .navbar-form .checkbox input[type=checkbox],
    .navbar-form .radio input[type=radio] {
        position: relative;
        margin-left: 0
    }
    .navbar-form .has-feedback .form-control-feedback {
        top: 0
    }
}

@media (max-width:768px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }
    .navbar-form .form-group:last-child {
        margin-bottom: 0
    }
}

@media (min-width:769px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.navbar-nav>li>.dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
    margin-bottom: 0;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.navbar-btn {
    margin-top: 4px;
    margin-bottom: 4px
}

.btn-group-sm>.navbar-btn.btn,
.navbar-btn.btn-sm {
    margin-top: 7px;
    margin-bottom: 7px
}

.btn-group-xs>.navbar-btn.btn,
.navbar-btn.btn-xs {
    margin-top: 14px;
    margin-bottom: 14px
}

.navbar-text {
    margin-top: 11px;
    margin-bottom: 11px
}

@media (min-width:769px) {
    .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px
    }
}

@media (min-width:769px) {
    .navbar-left {
        float: left!important
    }
    .navbar-right {
        float: right!important;
        margin-right: -15px
    }
    .navbar-right~.navbar-right {
        margin-right: 0
    }
}

.navbar-default {
    background-color: #2C83EC;
    border-color: #f23d00
}

.navbar-default .navbar-brand {
    color: #777
}

.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
    color: #5e5d5d;
    background-color: transparent
}

.navbar-default .navbar-nav>li>a,
.navbar-default .navbar-text {
    color: #777
}

.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
    color: #333;
    background-color: transparent
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    color: #555;
    background-color: #2C83EC
}

.navbar-default .navbar-nav>.disabled>a,
.navbar-default .navbar-nav>.disabled>a:focus,
.navbar-default .navbar-nav>.disabled>a:hover {
    color: #ccc;
    background-color: transparent
}

.navbar-default .navbar-toggle {
    border-color: #ddd
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: #ddd
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #f23d00
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    background-color: #2C83EC;
    color: #555
}

@media (max-width:768px) {
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #777
    }
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #333;
        background-color: transparent
    }
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover {
        color: #555;
        background-color: #2C83EC
    }
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover {
        color: #ccc;
        background-color: transparent
    }
}

.navbar-default .navbar-link {
    color: #777
}

.navbar-default .navbar-link:hover {
    color: #333
}

.navbar-default .btn-link {
    color: #777
}

.navbar-default .btn-link:focus,
.navbar-default .btn-link:hover {
    color: #333
}

.navbar-default .btn-link[disabled]:focus,
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:focus,
fieldset[disabled] .navbar-default .btn-link:hover {
    color: #ccc
}

.navbar-inverse {
    background-color: #222;
    border-color: #090909
}

.navbar-inverse .navbar-brand {
    color: #9d9d9d
}

.navbar-inverse .navbar-brand:focus,
.navbar-inverse .navbar-brand:hover {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav>li>a,
.navbar-inverse .navbar-text {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav>li>a:focus,
.navbar-inverse .navbar-nav>li>a:hover {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:focus,
.navbar-inverse .navbar-nav>.active>a:hover {
    color: #fff;
    background-color: #090909
}

.navbar-inverse .navbar-nav>.disabled>a,
.navbar-inverse .navbar-nav>.disabled>a:focus,
.navbar-inverse .navbar-nav>.disabled>a:hover {
    color: #444;
    background-color: transparent
}

.navbar-inverse .navbar-toggle {
    border-color: #333
}

.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
    background-color: #333
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010
}

.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:focus,
.navbar-inverse .navbar-nav>.open>a:hover {
    background-color: #090909;
    color: #fff
}

@media (max-width:768px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
        border-color: #090909
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #090909
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
        color: #9d9d9d
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #fff;
        background-color: transparent
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover {
        color: #fff;
        background-color: #090909
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover {
        color: #444;
        background-color: transparent
    }
}

.navbar-inverse .navbar-link {
    color: #9d9d9d
}

.navbar-inverse .navbar-link:hover {
    color: #fff
}

.navbar-inverse .btn-link {
    color: #9d9d9d
}

.navbar-inverse .btn-link:focus,
.navbar-inverse .btn-link:hover {
    color: #fff
}

.navbar-inverse .btn-link[disabled]:focus,
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover {
    color: #444
}

.nav-pills>li>a>.badge {
    margin-left: 3px
}

button:active,
button:focus {
    outline: 0!important
}

.animarrow,
.animated-arrow,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
    position: relative;
    padding-right: 20px;
    color: #000
}

.animarrow:after,
.animated-arrow:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a:after {
    position: absolute;
    margin-left: 0;
    top: 2px;
    content: ".";
    color: transparent;
    font-size: 100%;
    line-height: 100%;
    width: 16px;
    background: url() no-repeat;
    background-size: 7px 12px;
    background-position-y: 5px;
    background-position-x: 6px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}

.animarrow:hover:after,
.animated-arrow:hover:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a:hover:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a:hover:after {
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
    -webkit-animation: arrowanimation .8s infinite;
    animation: arrowanimation .8s infinite
}

@-webkit-keyframes arrowanimation {
    0%,
    to {
        margin-left: 0
    }
    50% {
        margin-left: 3px
    }
}

@keyframes arrowanimation {
    0%,
    to {
        margin-left: 0
    }
    50% {
        margin-left: 3px
    }
}

@-webkit-keyframes arrow-vertical-animation {
    0%,
    to {
        margin-bottom: 3px
    }
    50% {
        margin-bottom: 0
    }
}

@keyframes arrow-vertical-animation {
    0%,
    to {
        margin-bottom: 3px
    }
    50% {
        margin-bottom: 0
    }
}

.animated-arrow,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
    padding-right: 20px
}

.animated-arrow:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a:after {
    position: absolute;
    height: 20px;
    background: url() no-repeat;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    background-size: 9px 7px;
    background-position: 50%;
    opacity: .7
}

.action-btn,
.excerpt-grid-block.featured>div.row>div:first-of-type .cta,
.search-controls .ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
    background: #2C83EC;
    border: 1px solid transparent;
    color: #ffff!important;
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    width: 260px;
    display: inline-block;
    margin: 18px auto;
    text-align: center;
    white-space: inherit
}

@media (max-width:769px) {
    .action-btn,
    .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
    .search-controls .ais-clear-all--link,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
        padding-top: 20px;
        padding-bottom: 20px;
        font-weight: 700;
        width: 270px
    }
}

@media (min-width:769px) {
    .action-btn,
    .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
    .search-controls .ais-clear-all--link,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        min-width: 270px
    }
}

@media (max-width:769px) {
    .action-btn.btn-sm-fit,
    .excerpt-grid-block.featured>div.row>div:first-of-type .btn-sm-fit.cta,
    .search-controls .btn-sm-fit.ais-clear-all--link,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .btn-sm-fit.mktoButton {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        min-width: auto;
        padding-right: 5%;
        padding-left: 5%
    }
}

@media (max-width:769px) {
    .action-btn.btn-sm-arrow,
    .excerpt-grid-block.featured>div.row>div:first-of-type .btn-sm-arrow.cta,
    .search-controls .btn-sm-arrow.ais-clear-all--link,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .btn-sm-arrow.mktoButton {
        position: relative;
        display: block;
        text-align: inherit;
        border: none!important;
        background: none!important;
        padding: 0!important;
        margin-top: 0!important;
        margin-bottom: 0!important;
        width: auto!important;
        text-decoration: underline!important;
        color: #ffff!important
    }
    .action-btn.btn-sm-arrow:after,
    .excerpt-grid-block.featured>div.row>div:first-of-type .btn-sm-arrow.cta:after,
    .search-controls .btn-sm-arrow.ais-clear-all--link:after,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .btn-sm-arrow.mktoButton:after {
        content: "";
        width: 13px;
        height: 12px;
        display: inline-block;
        margin-left: 5px;
        background-image: url();
        background-repeat: no-repeat;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }
    .action-btn.btn-sm-arrow.white:after,
    .excerpt-grid-block.featured>div.row>div:first-of-type .btn-sm-arrow.white.cta:after,
    .search-controls .btn-sm-arrow.white.ais-clear-all--link:after,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .btn-sm-arrow.white.mktoButton:after {
        background-image: url()
    }
}

.action-btn.btn-sm-arrow:hover,
.excerpt-grid-block.featured>div.row>div:first-of-type .btn-sm-arrow.cta:hover,
.search-controls .btn-sm-arrow.ais-clear-all--link:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .btn-sm-arrow.mktoButton:hover {
    -webkit-transform: none;
    transform: none
}

.action-btn:hover,
.excerpt-grid-block.featured>div.row>div:first-of-type .cta:hover,
.search-controls .ais-clear-all--link:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover {
    background: #2C83EC;
    color: #000
}

.action-btn.standard-width,
.excerpt-grid-block.featured>div.row>div:first-of-type .standard-width.cta,
.search-controls .standard-width.ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .standard-width.mktoButton {
    display: block;
    width: 260px;
    margin: 18px auto
}

@media (min-width:769px) {
    .action-btn.standard-width,
    .excerpt-grid-block.featured>div.row>div:first-of-type .standard-width.cta,
    .search-controls .standard-width.ais-clear-all--link,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .standard-width.mktoButton {
        width: 320px
    }
}

.action-btn.btn-white,
.action-btn[class*=btn-white],
.cta-strip .action-btn,
.cta-strip .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
.cta-strip body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
.excerpt-grid-block.featured>div.row>div:first-of-type .btn-white.cta,
.excerpt-grid-block.featured>div.row>div:first-of-type .cta-strip .cta,
.excerpt-grid-block.featured>div.row>div:first-of-type .cta[class*=btn-white],
.excerpt-grid-block.featured>div.row>div:first-of-type .search-controls .cta.ais-clear-all--link,
.search-controls .ais-clear-all--link,
.search-controls .ais-clear-all--link[class*=btn-white],
.search-controls .excerpt-grid-block.featured>div.row>div:first-of-type .cta.ais-clear-all--link,
.search-controls body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton.ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .btn-white.mktoButton,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .cta-strip .mktoButton,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton[class*=btn-white],
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .search-controls .mktoButton.ais-clear-all--link {
    background: #fff;
    color: #000;
    border: 1px solid transparent
}

.action-btn.btn-white:hover,
.action-btn[class*=btn-white]:hover,
.cta-strip .action-btn:hover,
.cta-strip .excerpt-grid-block.featured>div.row>div:first-of-type .cta:hover,
.cta-strip body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover,
.excerpt-grid-block.featured>div.row>div:first-of-type .btn-white.cta:hover,
.excerpt-grid-block.featured>div.row>div:first-of-type .cta-strip .cta:hover,
.excerpt-grid-block.featured>div.row>div:first-of-type .cta[class*=btn-white]:hover,
.excerpt-grid-block.featured>div.row>div:first-of-type .search-controls .cta.ais-clear-all--link:hover,
.search-controls .ais-clear-all--link:hover,
.search-controls .ais-clear-all--link[class*=btn-white]:hover,
.search-controls .excerpt-grid-block.featured>div.row>div:first-of-type .cta.ais-clear-all--link:hover,
.search-controls body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton.ais-clear-all--link:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .btn-white.mktoButton:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .cta-strip .mktoButton:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton[class*=btn-white]:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .search-controls .mktoButton.ais-clear-all--link:hover {
    border-color: #000;
    background: transparent;
    color: #000
}

.action-btn.btn-white[class*=hover-white]:hover,
.action-btn[class*=btn-white][class*=hover-white]:hover,
.cta-strip .action-btn[class*=hover-white]:hover,
.cta-strip .excerpt-grid-block.featured>div.row>div:first-of-type .cta[class*=hover-white]:hover,
.cta-strip body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton[class*=hover-white]:hover,
.excerpt-grid-block.featured>div.row>div:first-of-type .btn-white.cta[class*=hover-white]:hover,
.excerpt-grid-block.featured>div.row>div:first-of-type .cta-strip .cta[class*=hover-white]:hover,
.excerpt-grid-block.featured>div.row>div:first-of-type .cta[class*=btn-white][class*=hover-white]:hover,
.excerpt-grid-block.featured>div.row>div:first-of-type .search-controls .cta.ais-clear-all--link[class*=hover-white]:hover,
.search-controls .ais-clear-all--link[class*=btn-white][class*=hover-white]:hover,
.search-controls .ais-clear-all--link[class*=hover-white]:hover,
.search-controls .excerpt-grid-block.featured>div.row>div:first-of-type .cta.ais-clear-all--link[class*=hover-white]:hover,
.search-controls body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton.ais-clear-all--link[class*=hover-white]:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .btn-white.mktoButton[class*=hover-white]:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .cta-strip .mktoButton[class*=hover-white]:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton[class*=btn-white][class*=hover-white]:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .search-controls .mktoButton.ais-clear-all--link[class*=hover-white]:hover {
    border-color: #fff!important;
    color: #fff!important
}

.action-btn.btn-black,
.action-btn.is-style-btn-black,
.excerpt-grid-block.featured>div.row>div:first-of-type .btn-black.cta,
.excerpt-grid-block.featured>div.row>div:first-of-type .is-style-btn-black.cta,
.excerpt-grid-block.featured>div.row>div:first-of-type .marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox .mktoButton.cta,
.excerpt-grid-block.featured>div.row>div:first-of-type body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox .mktoButton.cta,
.excerpt-grid-block.featured>div.row>div:first-of-type body:not(.page-template-partner-form) .mktoFormBox.dark .mktoButton.cta,
.marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox .action-btn.mktoButton,
.marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox .excerpt-grid-block.featured>div.row>div:first-of-type .mktoButton.cta,
.marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
.marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox .search-controls .mktoButton.ais-clear-all--link,
.search-controls .btn-black.ais-clear-all--link,
.search-controls .is-style-btn-black.ais-clear-all--link,
.search-controls .marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox .mktoButton.ais-clear-all--link,
.search-controls body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox .mktoButton.ais-clear-all--link,
.search-controls body:not(.page-template-partner-form) .mktoFormBox.dark .mktoButton.ais-clear-all--link,
body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox .action-btn.mktoButton,
body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox .excerpt-grid-block.featured>div.row>div:first-of-type .mktoButton.cta,
body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox .search-controls .mktoButton.ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox.dark .action-btn.mktoButton,
body:not(.page-template-partner-form) .mktoFormBox.dark .excerpt-grid-block.featured>div.row>div:first-of-type .mktoButton.cta,
body:not(.page-template-partner-form) .mktoFormBox.dark .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
body:not(.page-template-partner-form) .mktoFormBox.dark .search-controls .mktoButton.ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .btn-black.mktoButton,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .is-style-btn-black.mktoButton {
    background: #000;
    color: #fff!important;
    font-weight: 300
}

header#main-nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000
}

header#main-nav-bar .main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    position: relative;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 60px;
    padding: 0 50px;
    -webkit-transition: background-color .2s;
    transition: background-color .2s
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu:before {
        content: "";
        z-index: 0;
        position: absolute;
        left: 50px;
        right: 50px;
        height: 1px;
        background: #000;
        bottom: 0
    }
}

header#main-nav-bar .main-menu:hover {
    background-color: #fff
}

.excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar .main-menu:hover li.cta a,
.search-controls header#main-nav-bar .main-menu:hover li.ais-clear-all--link a,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar .main-menu:hover li.mktoButton a,
header#main-nav-bar .main-menu:hover .excerpt-grid-block.featured>div.row>div:first-of-type li.cta a,
header#main-nav-bar .main-menu:hover .search-controls li.ais-clear-all--link a,
header#main-nav-bar .main-menu:hover body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap li.mktoButton a,
header#main-nav-bar .main-menu:hover li.action-btn a {
    background: #2C83EC!important
}

.excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar .main-menu:hover li.cta a:hover,
.search-controls header#main-nav-bar .main-menu:hover li.ais-clear-all--link a:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar .main-menu:hover li.mktoButton a:hover,
header#main-nav-bar .main-menu:hover .excerpt-grid-block.featured>div.row>div:first-of-type li.cta a:hover,
header#main-nav-bar .main-menu:hover .search-controls li.ais-clear-all--link a:hover,
header#main-nav-bar .main-menu:hover body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap li.mktoButton a:hover,
header#main-nav-bar .main-menu:hover li.action-btn a:hover {
    background-color: #2C83EC!important
}

header#main-nav-bar .main-menu:hover:before {
    background: #cbcbcb
}

header#main-nav-bar .main-menu a.top-header-logo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    width: 130px;
    height: 100%;
    position: relative
}

header#main-nav-bar .main-menu a.top-header-logo:hover:before {
    -webkit-animation: sprite-animate-go 1.2s steps(36);
    animation: sprite-animate-go 1.2s steps(36)
}

header#main-nav-bar .main-menu a.top-header-logo img {
    width: 120%;
    margin-top: 10px;
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu a.top-header-logo:before {
        top: calc(50% - 58px);
        left: -254px;
        -webkit-transform: scale(.21);
        transform: scale(.21)
    }
}

@-webkit-keyframes sprite-animate-go {
    to {
        background-position: 0 -4068px
    }
}

@keyframes sprite-animate-go {
    to {
        background-position: 0 -4068px
    }
}

header#main-nav-bar .main-menu nav.menu-items {
    height: 100%;
    width: 100%;
    z-index: 1
}

header#main-nav-bar .main-menu nav.menu-items ul {
    list-style: none;
    margin: 0
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding-left: 65px;
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu a {
    display: block;
    color: #000;
    font-weight: 400;
    font-size: 90% !important;
    line-height: 20px;
    text-decoration: none
}

@media (min-width:992px) and (max-width:1200px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu a {
        font-size: 14px
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li {
    position: static;
    height: 100%
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.no-arrows .sub-menu li a:after {
    content: none!important
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 1.3vw;
    position: relative
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu a:hover {
    color: #2C83EC;
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>a:after {
        opacity: 1;
        content: "";
        background-color: #2C83EC;
        position: absolute;
        left: 1vw;
        right: 1vw;
        bottom: 0;
        height: 5px;
        font-size: 0;
        line-height: 0;
        color: transparent;
        opacity: 0;
        -webkit-transform: skew(-40deg);
        transform: skew(-40deg);
        -webkit-transition: opacity .2s;
        transition: opacity .2s
    }
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li:hover ul.sub-menu {
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
        padding-top: 30px
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li:hover a:after {
        opacity: 1
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    opacity: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 30px;
    -webkit-box-shadow: 0 17px 25px -14px rgba(0, 0, 0, .3);
    box-shadow: 0 17px 25px -14px rgba(0, 0, 0, .3);
    -webkit-transition: visibility 0s linear .5s, opacity .2s ease-in-out, padding-top .2s ease-in-out;
    transition: visibility 0s linear .5s, opacity .2s ease-in-out, padding-top .2s ease-in-out;
    padding-top: 0
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu {
        pointer-events: none
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu:before {
    content: "";
    height: 1px;
    background: #cbcbcb;
    left: 50px;
    right: 50px;
    position: absolute;
    top: -1px
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li {
    margin-right: 105px;
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:last-child {
    margin-right: 0px;
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a:after {
    height: 24px
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li>a {
    font-size: 14px;
    line-height: 24px
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li>a:before {
    display: block;
    position: relative;
    left: 0;
    content: "";
    height: 60px;
    width: 70px;
    background-image: url();
    background-repeat: no-repeat;
    background-position: 0
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li>a strong {
    display: block;
    margin: 8px 0 10px;
    font-size: 18px;
    font-weight: 500;
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children {
    width: auto;
    margin: 0 5.5vw
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu {
    padding: 0;
    -webkit-padding-start: 0;
    padding-inline-start: 0
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li {
    width: auto;
    margin: 10px 0
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
    font-size: 14px;
    line-height: 24px
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a:after {
    height: 24px
}

.excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .cta,
.search-controls header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .mktoButton,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .action-btn,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .search-controls .ais-clear-all--link,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent!important;
    padding-right: 0;
    margin: initial;
    margin-left: auto!important;
    width: auto!important;
    min-width: auto!important
}

@media (min-width:992px) {
    .excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .cta,
    .search-controls header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .ais-clear-all--link,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .mktoButton,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .action-btn,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .search-controls .ais-clear-all--link,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
        max-width: 165px
    }
}

@media (max-width:769px) {
    .excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .cta,
    .search-controls header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .ais-clear-all--link,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .mktoButton,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .action-btn,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .search-controls .ais-clear-all--link,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
        width: 100%!important;
        padding-left: 0
    }
}

.excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .cta a,
.search-controls header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .ais-clear-all--link a,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .mktoButton a,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .action-btn a,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .excerpt-grid-block.featured>div.row>div:first-of-type .cta a,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .search-controls .ais-clear-all--link a,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton a {
    background: #fff;
    height: auto!important;
    padding: 20px 10px;
    border-radius: 4px!important
}

@media (min-width:992px) {
    .excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .cta a,
    .search-controls header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .ais-clear-all--link a,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .mktoButton a,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .action-btn a,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .excerpt-grid-block.featured>div.row>div:first-of-type .cta a,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .search-controls .ais-clear-all--link a,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton a {
        font-size: 16px;
        padding: 10px!important
    }
}

.excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .cta a:after,
.search-controls header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .ais-clear-all--link a:after,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .mktoButton a:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .action-btn a:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .excerpt-grid-block.featured>div.row>div:first-of-type .cta a:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .search-controls .ais-clear-all--link a:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton a:after {
    content: none
}

header#main-nav-bar.align-right ul#menu-top-main-menu {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar.align-right ul#menu-top-main-menu .cta,
.search-controls header#main-nav-bar.align-right ul#menu-top-main-menu .ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar.align-right ul#menu-top-main-menu .mktoButton,
header#main-nav-bar.align-right ul#menu-top-main-menu .action-btn,
header#main-nav-bar.align-right ul#menu-top-main-menu .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
header#main-nav-bar.align-right ul#menu-top-main-menu .search-controls .ais-clear-all--link,
header#main-nav-bar.align-right ul#menu-top-main-menu body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
    margin-left: 90px!important
}

header#main-nav-bar nav.menu-items.menu-basic ul#menu-top-main-menu {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar nav.menu-items.menu-basic ul#menu-top-main-menu .cta,
.search-controls header#main-nav-bar nav.menu-items.menu-basic ul#menu-top-main-menu .ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar nav.menu-items.menu-basic ul#menu-top-main-menu .mktoButton,
header#main-nav-bar nav.menu-items.menu-basic ul#menu-top-main-menu .action-btn,
header#main-nav-bar nav.menu-items.menu-basic ul#menu-top-main-menu .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
header#main-nav-bar nav.menu-items.menu-basic ul#menu-top-main-menu .search-controls .ais-clear-all--link,
header#main-nav-bar nav.menu-items.menu-basic ul#menu-top-main-menu body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
    margin-left: 90px!important
}

body:not(.home) header#main-nav-bar .hp-top-header-menu {
    /* display: none */
}

body:not(.home) header#main-nav-bar .main-menu {
    background-color: #fff
}

.excerpt-grid-block.featured>div.row>div:first-of-type body:not(.home) header#main-nav-bar .main-menu li.cta a,
.search-controls body:not(.home) header#main-nav-bar .main-menu li.ais-clear-all--link a,
body:not(.home) header#main-nav-bar .main-menu .excerpt-grid-block.featured>div.row>div:first-of-type li.cta a,
body:not(.home) header#main-nav-bar .main-menu .search-controls li.ais-clear-all--link a,
body:not(.home) header#main-nav-bar .main-menu body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap li.mktoButton a,
body:not(.home) header#main-nav-bar .main-menu li.action-btn a,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap body:not(.home) header#main-nav-bar .main-menu li.mktoButton a {
    background: #2C83EC!important;
}

.excerpt-grid-block.featured>div.row>div:first-of-type body:not(.home) header#main-nav-bar .main-menu li.cta a:hover,
.search-controls body:not(.home) header#main-nav-bar .main-menu li.ais-clear-all--link a:hover,
body:not(.home) header#main-nav-bar .main-menu .excerpt-grid-block.featured>div.row>div:first-of-type li.cta a:hover,
body:not(.home) header#main-nav-bar .main-menu .search-controls li.ais-clear-all--link a:hover,
body:not(.home) header#main-nav-bar .main-menu body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap li.mktoButton a:hover,
body:not(.home) header#main-nav-bar .main-menu li.action-btn a:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap body:not(.home) header#main-nav-bar .main-menu li.mktoButton a:hover {
    background-color: #2C83EC!important;
}

body:not(.home) header#main-nav-bar .main-menu:before {
    background: #cbcbcb
}

header#main-nav-bar.scrolled .main-menu {
    background-color: #fff
}

.excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar.scrolled .main-menu li.cta a,
.search-controls header#main-nav-bar.scrolled .main-menu li.ais-clear-all--link a,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar.scrolled .main-menu li.mktoButton a,
header#main-nav-bar.scrolled .main-menu .excerpt-grid-block.featured>div.row>div:first-of-type li.cta a,
header#main-nav-bar.scrolled .main-menu .search-controls li.ais-clear-all--link a,
header#main-nav-bar.scrolled .main-menu body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap li.mktoButton a,
header#main-nav-bar.scrolled .main-menu li.action-btn a {
    background: #2C83EC!important
}

.excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar.scrolled .main-menu li.cta a:hover,
.search-controls header#main-nav-bar.scrolled .main-menu li.ais-clear-all--link a:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar.scrolled .main-menu li.mktoButton a:hover,
header#main-nav-bar.scrolled .main-menu .excerpt-grid-block.featured>div.row>div:first-of-type li.cta a:hover,
header#main-nav-bar.scrolled .main-menu .search-controls li.ais-clear-all--link a:hover,
header#main-nav-bar.scrolled .main-menu body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap li.mktoButton a:hover,
header#main-nav-bar.scrolled .main-menu li.action-btn a:hover {
    background-color: #2C83EC!important
}

header#main-nav-bar.scrolled .main-menu:before {
    background: #cbcbcb
}

header#main-nav-bar #nav-search {
    position: absolute;
    width: 65px;
    right: 190px;
    top: 0;
    height: 97%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
    z-index: 10
}

@media (max-width:992px) {
    header#main-nav-bar #nav-search {
        height: 100%;
        right: 0;
        width: 105px;
        top: 0
    }
}

header#main-nav-bar #nav-search .search-box--magnifier-wrapper {
    display: none
}

header#main-nav-bar #nav-search>:not(button) {
    visibility: hidden;
    opacity: 1;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    -webkit-transition-delay: .7s;
    transition-delay: .7s
}

header#main-nav-bar #nav-search .search-box-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0
}

header#main-nav-bar #nav-search input {
    font-family: "Arial";
    border: none;
    font-size: 18px;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    display: inline-block;
    -webkit-transition: background .4s ease, -webkit-box-shadow .4s ease;
    transition: background .4s ease, -webkit-box-shadow .4s ease;
    transition: box-shadow .4s ease, background .4s ease;
    transition: box-shadow .4s ease, background .4s ease, -webkit-box-shadow .4s ease;
    padding: 10px 10px 10px 50px;
    vertical-align: middle;
    white-space: normal;
    height: 100%;
    width: 100%
}

header#main-nav-bar #nav-search input::-webkit-input-placeholder {
    color: #a9a9a9
}

header#main-nav-bar #nav-search input:focus {
    outline: none
}

header#main-nav-bar #nav-search button.btn-open-search {
    position: absolute;
    left: calc(100% - 60px);
    top: 0;
    border: none;
    width: 60px;
    height: 100%;
    -webkit-transition: none;
    transition: none;
    z-index: 1;
    background-color: transparent
}

header#main-nav-bar #nav-search button.btn-open-search .icon {
    position: absolute;
    width: 25px;
    height: 22px;
    top: 146%;
    left: 193%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

header#main-nav-bar #nav-search button.btn-open-search .icon:before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    background: transparent;
    top: 0;
    left: 0;
    border: 3px solid #2C83EC;
    border-radius: 50%
}

header#main-nav-bar #nav-search button.btn-open-search .icon:after {
    content: "";
    width: 3px;
    height: 9px;
    display: block;
    position: absolute;
    background: #2C83EC;
    top: 14px;
    left: 20px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
    border-radius: 1px
}

@media (max-width:992px) {
    header#main-nav-bar #nav-search button.btn-open-search .icon {
        -webkit-transform: translate(-50%, -50%) scale(.85);
        transform: translate(-50%, -50%) scale(.85);
        margin-left: 10px
    }
}

@media (max-width:992px) {
    header#main-nav-bar #nav-search button.btn-open-search {
        left: calc(100% - 120px)
    }
}

header#main-nav-bar #nav-search .exit-unified-search {
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    height: 100%;
    text-align: center;
    width: 50px;
    font-weight: 600;
    cursor: pointer;
    color: #000;
    opacity: .44;
    position: absolute;
    font-size: 24px;
    right: -2px;
    top: 0;
}

@media (max-width:992px) {
    header#main-nav-bar #nav-search .exit-unified-search {
        right: 5px
    }
}

header#main-nav-bar #nav-search .exit-unified-search:after,
header#main-nav-bar #nav-search .exit-unified-search:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 25px;
    background: #000;
    top: 26px;
    left: 50%
}

@media (max-width:992px) {
    header#main-nav-bar #nav-search .exit-unified-search:after,
    header#main-nav-bar #nav-search .exit-unified-search:before {
        top: 21px;
        width: 2px
    }
}

header#main-nav-bar #nav-search .exit-unified-search:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

header#main-nav-bar #nav-search .exit-unified-search:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

header#main-nav-bar #nav-search .search-box-container {
    width: 100%;
    display: inline-block
}

header#main-nav-bar #nav-search .search-box {
    width: 100%;
    max-width: 100%;
    color: #000;
    margin: 0 auto;
    height: 53px;
    display: inline-block;
    position: relative;
    height: 46px;
    white-space: nowrap;
    font-size: 14px
}

header#main-nav-bar #nav-search .search-box-container-container>.container .search-box input {
    font-size: 18px;
    padding: 0 39px 0 45px
}

header#main-nav-bar #nav-search .search-box--input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font: inherit;
    background: #fff;
    display: inline-block;
    border: 1px solid #d4d8e3;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px 0 rgba(85, 95, 110, .2);
    box-shadow: 0 1px 1px 0 rgba(85, 95, 110, .2);
    -webkit-transition: background .4s ease, -webkit-box-shadow .4s ease;
    transition: background .4s ease, -webkit-box-shadow .4s ease;
    transition: box-shadow .4s ease, background .4s ease;
    transition: box-shadow .4s ease, background .4s ease, -webkit-box-shadow .4s ease;
    padding: 10px 10px 10px 35px;
    vertical-align: middle;
    white-space: normal;
    height: 100%;
    width: 100%
}

header#main-nav-bar #nav-search .search-box--magnifier-wrapper {
    position: absolute;
    left: 0;
    top: 10px
}

header#main-nav-bar #nav-search .search-box-container-container>.container .search-box .search-box--magnifier {
    height: 100%;
    top: 14px;
    fill: #b8b8b8;
    left: 12px;
    position: absolute
}

header#main-nav-bar #nav-search .search-box .search-box--magnifier svg {
    width: 25px;
    height: 25px
}

header#main-nav-bar.searching {
    background-color: #fff
}

.excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar.searching li.cta a,
.search-controls header#main-nav-bar.searching li.ais-clear-all--link a,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar.searching li.mktoButton a,
header#main-nav-bar.searching .excerpt-grid-block.featured>div.row>div:first-of-type li.cta a,
header#main-nav-bar.searching .search-controls li.ais-clear-all--link a,
header#main-nav-bar.searching body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap li.mktoButton a,
header#main-nav-bar.searching li.action-btn a {
    background: #2C83EC!important
}

.excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar.searching li.cta a:hover,
.search-controls header#main-nav-bar.searching li.ais-clear-all--link a:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar.searching li.mktoButton a:hover,
header#main-nav-bar.searching .excerpt-grid-block.featured>div.row>div:first-of-type li.cta a:hover,
header#main-nav-bar.searching .search-controls li.ais-clear-all--link a:hover,
header#main-nav-bar.searching body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap li.mktoButton a:hover,
header#main-nav-bar.searching li.action-btn a:hover {
    background-color: #2C83EC!important
}

header#main-nav-bar.searching:before {
    background: #cbcbcb
}

header#main-nav-bar.searching #nav-search {
    background: #fff;
    z-index: 10;
    left: 205px;
    width: auto
}

@media (max-width:992px) {
    header#main-nav-bar.searching #nav-search {
        left: 0;
        right: 0;
        z-index: 999999
    }
}

header#main-nav-bar.searching #nav-search .exit-unified-search,
header#main-nav-bar.searching #nav-search .search-box-container {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-transition-delay: .5s;
    transition-delay: .5s
}

header#main-nav-bar.searching #nav-search button.btn-open-search {
    left: -12px;
    -webkit-transition: left .4s ease-in-out;
    transition: left .4s ease-in-out
}

header#main-nav-bar.searching .main-menu {
    background: #fff!important
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.business-teams>a:before {
    background-image: url()
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.business-teams>a:before {
        background-position: 0 100%
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.enterprise>a:before {
    background-image: url()
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.enterprise>a:before {
        background-position: 0 100%
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.product-analysis>a:before {
    background-image: url()
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.product-analysis>a:before {
        background-position: 0 100%
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.data-teams>a:before {
    background-image: url()
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.data-teams>a:before {
        background-position: 0 100%;
        background-size: 50px 40px!important
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.analyze>a:before {
    background-image: url()
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.impact>a:before {
    background-image: url()
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.deploy>a:before {
    background-image: url()
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.embed>a:before {
    background-image: url()
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.control>a:before {
    background-image: url()
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.application>a:before {
    background-image: url()
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.application>a:before {
        background-position-y: 7px!important
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.builders>a:before {
    background-image: url();
    background-size: 39px 47px
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.builders>a:before {
        background-position: 0 100%
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.industry>a:before {
    background-image: url()
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.department>a:before {
    background-image: url()
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.department>a:before {
        background-position-y: 7px!important
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.resource-customers>a:before {
    background-image: url("../images/home/case-studies.png")
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.resource-blog>a:before {
    background-image: url("../images/home/whitepaper.png")
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.resource-dashboard-examples>a:before {
    background-image: url("../images/home/blogs.png")
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.resource-webinars>a:before {
    background-image: url()
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.resource-glossary>a:before {
    background-image: url("../images/home/webinars.png")
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.resource-brochures>a:before {
    background-image: url();
    background-size: 34px
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.resource-brochures>a:before {
        background-size: 40px
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul>li {
    width: 180px;
    margin: 0 1vw
}

@media (min-width:769px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul li:not(.misc-items) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: -15px
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul li:not(.misc-items) a:after {
    top: auto!important
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul .misc-items {
    background: #f3f3f3;
    min-width: 25%
}

@media (min-width:769px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul .misc-items {
        padding: 0 35px
    }
}

@media (max-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul .misc-items:before {
        content: none!important
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul .misc-items>a {
    color: transparent
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul .misc-items>a:before {
    content: none!important
}

@media (max-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul .misc-items>a {
        display: none!important
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul .misc-items>ul {
    margin-top: -20px
}

@media (max-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul .misc-items>ul {
        display: block!important;
        margin-top: 0;
        margin-bottom: 30px
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul .misc-items>ul li a {
    display: block;
    width: 100%;
    font-size: 18px!important;
    line-height: 30px!important;
    padding-bottom: 15px;
    margin-bottom: 15px
}

@media (min-width:992px) {
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul .misc-items>ul li a {
        border-bottom: 1px solid #cbcbcb
    }
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul .misc-items>ul li a:after {
    right: 0;
    top: 13px!important;
    background-size: contain!important;
    height: 8px!important;
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul .misc-items>ul li:hover a:after {
    -webkit-animation: misc-arrow-animate .8s infinite!important;
    animation: misc-arrow-animate .8s infinite!important
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li.platform>ul .misc-items>ul>li:last-of-type a {
    border-bottom: none;
    padding-bottom: 0
}

@-webkit-keyframes misc-arrow-animate {
    0%,
    to {
        right: 0
    }
    50% {
        right: -5px
    }
}

@keyframes misc-arrow-animate {
    0%,
    to {
        right: 0
    }
    50% {
        right: -5px
    }
}

@media (max-width:992px) {
    header#main-nav-bar {
        background: #fff;
        -webkit-transition: height 1s;
        transition: height 1s;
        height: 68px;
        border-bottom: 2px solid #cbcbcb
    }
    header#main-nav-bar .main-menu {
        display: block;
        padding: 0;
        height: 100%
    }
    header#main-nav-bar .main-menu a.top-header-logo {
        margin: 0 0 0 15px;
        width: 150px
    }
    header#main-nav-bar .main-menu a.top-header-logo:before {
        background-image: url();
        background-size: contain;
        background-position: 50%;
        width: 100%;
        height: 100%
    }
    header#main-nav-bar .main-menu nav.menu-items {
        width: 100%;
        position: relative;
        background: #fff;
        height: 100vh;
        display: none;
        padding-bottom: 20px;
        overflow: scroll;
        top: -5px;
        border-top: 2px solid #cbcbcb
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu {
        display: block;
        padding-left: 0;
        -webkit-transition: background-color .5s;
        transition: background-color .5s;
        height: auto;
        margin-bottom: 75px
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li:not(.menu-item-has-children) a:active {
        background: #f3f3f3
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li.menu-item-has-children {
        margin: 0;
        position: relative;
        -webkit-transition: background-color .5s;
        transition: background-color .5s
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li.menu-item-has-children>a {
        width: 75%
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li.menu-item-has-children:before {
        content: "";
        background-image: url();
        background-repeat: no-repeat;
        height: 14px;
        width: 20px;
        position: absolute;
        right: 23px;
        top: 34px;
        -webkit-transition: -webkit-transform .5s;
        transition: -webkit-transform .5s;
        transition: transform .5s;
        transition: transform .5s, -webkit-transform .5s;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li.menu-item-has-children.resources ul.sub-menu li strong {
        padding-top: 15px
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu ul.sub-menu {
        background: transparent!important
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu ul.sub-menu a:active {
        background: #ddd
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li {
        border-top: 2px solid #cbcbcb;
        height: 7%;
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li:first-child {
        border-top: none
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li.open {
        background-color: #f3f3f3
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li.open:before {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li.open>a {
        font-weight: 600
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>a {
        font-size: 20px;
        font-weight: 400;
        padding-left: 21px;
        /* padding: 30px 0 30px 30px */
    }
    .excerpt-grid-block.featured>div.row>div:first-of-type header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li.cta a,
    .search-controls header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li.ais-clear-all--link a,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li.mktoButton a,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .excerpt-grid-block.featured>div.row>div:first-of-type li.cta a,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu .search-controls li.ais-clear-all--link a,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap li.mktoButton a,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li.action-btn a {
        width: 50%;
        background: #2C83EC;
        padding: 12px 0;
        text-align: center;
        display: inline-block;
        margin-top: 15px;
        margin-left: 20px;
        /* left: 25%; */
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        top: auto;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0;
        display: none;
        visibility: visible;
        opacity: 1
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu:before {
        content: none
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li {
        width: auto;
        margin: 0;
        height: 74px;
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li:first-child {
        padding-top: 0
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li:last-child {
        border-bottom: 0
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li>a {
        padding: 16px 30px
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li:not(.menu-item-has-children) a:after {
        content: none
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li.menu-item-has-children {
        margin: 0
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li.menu-item-has-children:before {
        top: 36px
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li.menu-item-has-children>a strong {
        margin-bottom: 0
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li.menu-item-has-children>a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-height: 100px
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li a {
        font-size: 18px!important;
        padding-left: 100px;
        position: relative
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li a strong {
        margin: 0 0 8px;
        font-size: 20px!important
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li a:before {
        width: 50px;
        height: 50px;
        background-size: contain;
        background-position: 50%;
        margin-right: 20px;
        position: absolute;
        left: 30px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li>ul.sub-menu {
        display: none;
        width: 100%
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li>ul.sub-menu>li {
        margin: 0 55px 0 35px!important
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li>ul.sub-menu>li a {
        margin: 0 -55px 0 -35px;
        padding: 30px 30px 30px 35px
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li>ul.sub-menu>li>ul.sub-menu>li a:after {
        background: none!important
    }
}

.hp-top-header-menu {
    position: relative;
    padding: 0 10px;
    text-align: right;
    height: 50px;
    background: #2C83EC;
    width: 100%
}

.hp-top-header-menu .special-announcement {
    position: absolute;
    background: inherit;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    color: #fefefe;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.hp-top-header-menu .special-announcement a {
    color: #ffff!important
}

.hp-top-header-menu .special-announcement button.btn-close {
    position: absolute;
    right: 40px;
    top: 10px;
    border: none;
    width: 40px;
    height: 40px;
    opacity: 1;
    background: none
}

.hp-top-header-menu .special-announcement button.btn-close:after,
.hp-top-header-menu .special-announcement button.btn-close:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 40px;
    background: #ffff;
    top: 30%;
    left: 50%
}

.hp-top-header-menu .special-announcement button.btn-close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.hp-top-header-menu .special-announcement button.btn-close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.hp-top-header-menu .special-announcement button.btn-close:after,
.hp-top-header-menu .special-announcement button.btn-close:before {
    background: #fff;
    top: 15%
}

.hp-top-header-menu ul {
    list-style: none;
    margin: 0
}

.hp-top-header-menu ul li {
    display: inline-block;
    padding: 14px 0 14px 18px
}

.hp-top-header-menu ul li a {
    color: #fff;
    font-size: 16px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    display: block;
    font-family: "Arial";
}

.hp-top-header-menu ul li a:hover {
    color: #c7c7c7;
    text-decoration: none
}

#nav-icon3 {
    width: 40px;
    height: 100%;
    position: relative;
    margin: 5px 97px 0;
    float: right;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 1010
}

#nav-icon3,
#nav-icon3 span {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 20px;
    background: #000;
    border-radius: 1px;
    opacity: 1;
    left: 10px;
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

#nav-icon3 span:first-child {
    top: 20px
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 27px
}

#nav-icon3 span:nth-child(4) {
    top: 34px
}

#nav-icon3.open span:first-child {
    top: 27px;
    width: 0;
    left: 50%
}

#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#nav-icon3.open span:nth-child(4) {
    top: 27px;
    width: 0;
    left: 50%
}

.marketo-subscribe-blog body.page-template-events .event-excerpts .site-footer .footer-links h4.widget-title,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .site-footer .footer-links h4.widget-title,
.site-footer .footer-links .marketo-subscribe-blog body.page-template-events .event-excerpts h4.widget-title,
.site-footer .footer-links .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4.widget-title,
.site-footer .footer-links body.page-template-events .event-excerpts .marketo-subscribe-blog h4.widget-title,
.site-footer .footer-links body.page-template-events .event-excerpts h2.widget-title,
.site-footer .footer-links body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4.widget-title,
.site-footer .footer-links body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2.widget-title,
.site-footer .footer-links h3.widget-title,
body.page-template-events .event-excerpts .marketo-subscribe-blog .site-footer .footer-links h4.widget-title,
body.page-template-events .event-excerpts .site-footer .footer-links h2.widget-title,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .site-footer .footer-links h4.widget-title,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .site-footer .footer-links h2.widget-title {
    font-family: "Arial";
    color: #2C83EC;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    margin-top: 18px
}

@media (max-width:769px) {
    .marketo-subscribe-blog body.page-template-events .event-excerpts .site-footer .footer-links h4.widget-title,
    .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .site-footer .footer-links h4.widget-title,
    .site-footer .footer-links .marketo-subscribe-blog body.page-template-events .event-excerpts h4.widget-title,
    .site-footer .footer-links .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4.widget-title,
    .site-footer .footer-links body.page-template-events .event-excerpts .marketo-subscribe-blog h4.widget-title,
    .site-footer .footer-links body.page-template-events .event-excerpts h2.widget-title,
    .site-footer .footer-links body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4.widget-title,
    .site-footer .footer-links body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2.widget-title,
    .site-footer .footer-links h3.widget-title,
    body.page-template-events .event-excerpts .marketo-subscribe-blog .site-footer .footer-links h4.widget-title,
    body.page-template-events .event-excerpts .site-footer .footer-links h2.widget-title,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .site-footer .footer-links h4.widget-title,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .site-footer .footer-links h2.widget-title {
        border-bottom: 1px solid #151515;
        color: #fff;
        text-transform: uppercase;
        padding-bottom: 20px
    }
}

@media (min-width:769px) {
    .site-footer .verticalDivider {
        float: left;
        position: relative;
        border-left: 1px solid #000;
        color: #000;
        font-size: 0;
        height: 180px;
        margin-top: 68px;
        margin-right: 18px
    }
    .site-footer .verticalDivider:before {
        position: absolute;
        content: "\2022";
        font-size: 28px;
        top: -16px;
        left: -6px
    }
    .site-footer .verticalDivider:after {
        position: absolute;
        content: "\2022";
        font-size: 28px;
        bottom: -16px;
        left: -6px
    }
    .site-footer {
        padding: 32px 0 0
    }
    .marketo-subscribe-blog body.page-template-events .event-excerpts .site-footer h4.widget-title,
    .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .site-footer h4.widget-title,
    .site-footer .marketo-subscribe-blog body.page-template-events .event-excerpts h4.widget-title,
    .site-footer .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4.widget-title,
    .site-footer body.page-template-events .event-excerpts .marketo-subscribe-blog h4.widget-title,
    .site-footer body.page-template-events .event-excerpts h2.widget-title,
    .site-footer body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4.widget-title,
    .site-footer body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2.widget-title,
    .site-footer h3.widget-title,
    body.page-template-events .event-excerpts .marketo-subscribe-blog .site-footer h4.widget-title,
    body.page-template-events .event-excerpts .site-footer h2.widget-title,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .site-footer h4.widget-title,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .site-footer h2.widget-title {
        margin-bottom: 0;
        border-bottom: none
    }
    .marketo-subscribe-blog body.page-template-events .event-excerpts .site-footer h4.widget-title i,
    .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .site-footer h4.widget-title i,
    .site-footer .marketo-subscribe-blog body.page-template-events .event-excerpts h4.widget-title i,
    .site-footer .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4.widget-title i,
    .site-footer body.page-template-events .event-excerpts .marketo-subscribe-blog h4.widget-title i,
    .site-footer body.page-template-events .event-excerpts h2.widget-title i,
    .site-footer body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4.widget-title i,
    .site-footer body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2.widget-title i,
    .site-footer h3.widget-title i,
    body.page-template-events .event-excerpts .marketo-subscribe-blog .site-footer h4.widget-title i,
    body.page-template-events .event-excerpts .site-footer h2.widget-title i,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .site-footer h4.widget-title i,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .site-footer h2.widget-title i {
        display: none
    }
    .site-footer nav.footer-column {
        display: block
    }
    .site-footer .footer-cols {
        padding-bottom: 86px
    }
}

@media (min-width:769px) and (min-width:992px) {
    .site-footer .footer-cols>.row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media (min-width:769px) {
    .site-footer .footer-cols ul {
        list-style: none;
        padding: 0;
        margin: 0
    }
    .site-footer .footer-cols ul li {
        display: inline-block;
        vertical-align: top;
        width: 100%;
        padding: 0 2px
    }
    .site-footer .footer-cols ul li a {
        color: #fff;
        line-height: 18px
    }
    .site-footer .footer-cols ul li a:hover {
        text-shadow: 0 1px 0 #fff
    }
}

@media (min-width:769px) and (min-width:992px) {
    .site-footer .footer-cols .footer-links:after {
        content: "";
        background: #fff;
        width: 1px;
        height: 95%;
        position: absolute;
        top: 30px;
        right: -8%
    }
}

@media (min-width:769px) {
    .copyright {
        text-align: left;
        padding: 24px 0 18px 30px
    }
    ul[id^=menu-footer-menu] {
        text-align: right;
        padding: 18px 15px 18px 0
    }
    ul[id^=menu-footer-menu]>li {
        padding-top: 6px;
        margin-left: 1.6vw;
        width: auto
    }
    ul[id^=menu-footer-menu]>li>a:hover {
        text-shadow: 0 1px 0 #fff
    }
    .excerpt-grid-block.featured>div.row>div:first-of-type ul[id^=menu-footer-menu]>li.cta,
    .search-controls ul[id^=menu-footer-menu]>li.ais-clear-all--link,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap ul[id^=menu-footer-menu]>li.mktoButton,
    ul[id^=menu-footer-menu]>li.action-btn {
        background: #2C83EC;
        line-height: 18px;
        height: 32px;
        min-width: auto!important;
        padding: 0;
        margin: 6px 6px 6px 1.6vw
    }
    .excerpt-grid-block.featured>div.row>div:first-of-type ul[id^=menu-footer-menu]>li.cta:hover,
    .search-controls ul[id^=menu-footer-menu]>li.ais-clear-all--link:hover,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap ul[id^=menu-footer-menu]>li.mktoButton:hover,
    ul[id^=menu-footer-menu]>li.action-btn:hover {
        background: #2C83EC
    }
    .excerpt-grid-block.featured>div.row>div:first-of-type ul[id^=menu-footer-menu]>li.cta>a,
    .search-controls ul[id^=menu-footer-menu]>li.ais-clear-all--link>a,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap ul[id^=menu-footer-menu]>li.mktoButton>a,
    ul[id^=menu-footer-menu]>li.action-btn>a {
        padding: 4px 8px;
        display: block;
        color: #ffff
    }
    .excerpt-grid-block.featured>div.row>div:first-of-type ul[id^=menu-footer-menu]>li.cta>a:hover,
    .search-controls ul[id^=menu-footer-menu]>li.ais-clear-all--link>a:hover,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap ul[id^=menu-footer-menu]>li.mktoButton>a:hover,
    ul[id^=menu-footer-menu]>li.action-btn>a:hover {
        text-shadow: none
    }
}

.scrollTop {
    cursor: pointer;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 35px;
    font-size: 0;
    height: 40px;
    width: 40px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 2px 0 0 rgba(0, 0, 0, .1), 0 0 0 .5px rgba(0, 0, 0, .04);
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, .1), 0 0 0 .5px rgba(0, 0, 0, .04);
    z-index: 10000
}

.scrollTop:before {
    content: "";
    background-image: url();
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    background-size: contain;
    display: block;
    background-position: 50%;
    margin: 10px auto
}

.scrollTop:hover:before {
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
    -webkit-animation: scrollTopAnimation .8s infinite;
    animation: scrollTopAnimation .8s infinite
}

@media (max-width:769px) {
    .scrollTop {
        right: 15px
    }
}

@-webkit-keyframes scrollTopAnimation {
    0%,
    to {
        margin-top: 10px
    }
    50% {
        margin-top: 8px
    }
}

@keyframes scrollTopAnimation {
    0%,
    to {
        margin-top: 10px
    }
    50% {
        margin-top: 8px
    }
}

.social-footer {
    text-align: center
}

.marketo-subscribe-blog body.page-template-events .event-excerpts .social-footer h4.social-title,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .social-footer h4.social-title,
.social-footer .marketo-subscribe-blog body.page-template-events .event-excerpts h4.social-title,
.social-footer .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4.social-title,
.social-footer body.page-template-events .event-excerpts .marketo-subscribe-blog h4.social-title,
.social-footer body.page-template-events .event-excerpts h2.social-title,
.social-footer body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4.social-title,
.social-footer body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2.social-title,
.social-footer h3.social-title,
body.page-template-events .event-excerpts .marketo-subscribe-blog .social-footer h4.social-title,
body.page-template-events .event-excerpts .social-footer h2.social-title,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .social-footer h4.social-title,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .social-footer h2.social-title {
    text-transform: uppercase;
    color: #fff;
    font-size: 45px
}

.social-footer>a {
    display: inline-block;
    margin: 0 4px;
    background-size: 207px;
    width: 50px;
    height: 50px;
    background-image: url();
    background-repeat: no-repeat;
    -webkit-transition: none;
    transition: none
}

.social-footer>a.bg-facebook {
    background-position: -2px -2px
}

.social-footer>a.bg-facebook:hover {
    background-position: -2px -53px
}

.social-footer>a.bg-instagram {
    background-position: -52px -2px
}

.social-footer>a.bg-instagram:hover {
    background-position: -52px -53px
}

.social-footer>a.bg-linkedin {
    background-position: -104px -2px
}

.social-footer>a.bg-linkedin:hover {
    background-position: -104px -53px
}

.social-footer>a.bg-twitter {
    background-position: -155px -2px
}

.social-footer>a.bg-twitter:hover {
    background-position: -155px -53px
}

@media (min-width:769px) {
    .social-container {
        padding-left: 48px
    }
    .social-container .verticalDivider {
        height: 180px;
        margin-top: 78px
    }
    .social-footer {
        text-align: center
    }
    .marketo-subscribe-blog body.page-template-events .event-excerpts .social-footer h4.social-title,
    .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .social-footer h4.social-title,
    .social-footer .marketo-subscribe-blog body.page-template-events .event-excerpts h4.social-title,
    .social-footer .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4.social-title,
    .social-footer body.page-template-events .event-excerpts .marketo-subscribe-blog h4.social-title,
    .social-footer body.page-template-events .event-excerpts h2.social-title,
    .social-footer body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4.social-title,
    .social-footer body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2.social-title,
    .social-footer h3.social-title,
    body.page-template-events .event-excerpts .marketo-subscribe-blog .social-footer h4.social-title,
    body.page-template-events .event-excerpts .social-footer h2.social-title,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .social-footer h4.social-title,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .social-footer h2.social-title {
        text-transform: uppercase;
        color: #fff
    }
}

main#template-canvas-margin {
    position: relative;
    background: #f3f3f3!important
}

main#template-canvas-margin article {
    padding-bottom: 100px
}

main#template-canvas-margin article .break-out {
    position: relative
}

@media (min-width:769px) {
    main#template-canvas-margin article .break-out {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 750px
    }
}

@media (min-width:992px) {
    main#template-canvas-margin article .break-out {
        width: 970px
    }
}

@media (min-width:1200px) {
    main#template-canvas-margin article .break-out {
        width: 1170px
    }
}

main#template-canvas-margin article>div:first-of-type {
    background: #fff!important;
    padding-bottom: 70px
}

main#template-canvas-margin article h1 {
    font-size: 60px;
    line-height: 70px
}

@media (max-width:769px) {
    main#template-canvas-margin article h1 {
        font-size: 45px;
        line-height: 55px
    }
}

.marketo-subscribe-blog main#template-canvas-margin article h4,
main#template-canvas-margin article .marketo-subscribe-blog h4,
main#template-canvas-margin article h2 {
    margin-top: 70px;
    font-size: 30px;
    line-height: 40px
}

@media (max-width:992px) {
    .marketo-subscribe-blog main#template-canvas-margin article h4,
    main#template-canvas-margin article .marketo-subscribe-blog h4,
    main#template-canvas-margin article h2 {
        margin-top: 60px
    }
}

.marketo-subscribe-blog body.page-template-events .event-excerpts main#template-canvas-margin article h4,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form main#template-canvas-margin article h4,
body.page-template-events .event-excerpts .marketo-subscribe-blog main#template-canvas-margin article h4,
body.page-template-events .event-excerpts main#template-canvas-margin article h2,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog main#template-canvas-margin article h4,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form main#template-canvas-margin article h2,
main#template-canvas-margin article .marketo-subscribe-blog body.page-template-events .event-excerpts h4,
main#template-canvas-margin article .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4,
main#template-canvas-margin article body.page-template-events .event-excerpts .marketo-subscribe-blog h4,
main#template-canvas-margin article body.page-template-events .event-excerpts h2,
main#template-canvas-margin article body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4,
main#template-canvas-margin article body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2,
main#template-canvas-margin article h3 {
    margin-top: 50px
}

@media (max-width:992px) {
    .marketo-subscribe-blog body.page-template-events .event-excerpts main#template-canvas-margin article h4,
    .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form main#template-canvas-margin article h4,
    body.page-template-events .event-excerpts .marketo-subscribe-blog main#template-canvas-margin article h4,
    body.page-template-events .event-excerpts main#template-canvas-margin article h2,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog main#template-canvas-margin article h4,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form main#template-canvas-margin article h2,
    main#template-canvas-margin article .marketo-subscribe-blog body.page-template-events .event-excerpts h4,
    main#template-canvas-margin article .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4,
    main#template-canvas-margin article body.page-template-events .event-excerpts .marketo-subscribe-blog h4,
    main#template-canvas-margin article body.page-template-events .event-excerpts h2,
    main#template-canvas-margin article body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4,
    main#template-canvas-margin article body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2,
    main#template-canvas-margin article h3 {
        margin-top: 40px
    }
}

.marketo-subscribe-blog body.page-template-events .event-excerpts main#template-canvas-margin article h2+h4,
.marketo-subscribe-blog body.page-template-events .event-excerpts main#template-canvas-margin article h4+h4,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form main#template-canvas-margin article h2+h4,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form main#template-canvas-margin article h4+h4,
.marketo-subscribe-blog main#template-canvas-margin article body.page-template-events .event-excerpts h4+h2,
.marketo-subscribe-blog main#template-canvas-margin article body.page-template-events .event-excerpts h4+h4,
.marketo-subscribe-blog main#template-canvas-margin article body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4+h2,
.marketo-subscribe-blog main#template-canvas-margin article body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4+h4,
.marketo-subscribe-blog main#template-canvas-margin article h4+h3,
body.page-template-events .event-excerpts .marketo-subscribe-blog main#template-canvas-margin article h2+h4,
body.page-template-events .event-excerpts .marketo-subscribe-blog main#template-canvas-margin article h4+h2,
body.page-template-events .event-excerpts .marketo-subscribe-blog main#template-canvas-margin article h4+h4,
body.page-template-events .event-excerpts main#template-canvas-margin article .marketo-subscribe-blog h4+h2,
body.page-template-events .event-excerpts main#template-canvas-margin article .marketo-subscribe-blog h4+h4,
body.page-template-events .event-excerpts main#template-canvas-margin article h2+h2,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog main#template-canvas-margin article h2+h4,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog main#template-canvas-margin article h4+h2,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog main#template-canvas-margin article h4+h4,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form main#template-canvas-margin article .marketo-subscribe-blog h4+h2,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form main#template-canvas-margin article .marketo-subscribe-blog h4+h4,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form main#template-canvas-margin article h2+h2,
main#template-canvas-margin article .marketo-subscribe-blog body.page-template-events .event-excerpts h2+h4,
main#template-canvas-margin article .marketo-subscribe-blog body.page-template-events .event-excerpts h4+h2,
main#template-canvas-margin article .marketo-subscribe-blog body.page-template-events .event-excerpts h4+h4,
main#template-canvas-margin article .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2+h4,
main#template-canvas-margin article .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4+h2,
main#template-canvas-margin article .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4+h4,
main#template-canvas-margin article .marketo-subscribe-blog h4+h3,
main#template-canvas-margin article body.page-template-events .event-excerpts .marketo-subscribe-blog h2+h4,
main#template-canvas-margin article body.page-template-events .event-excerpts .marketo-subscribe-blog h4+h4,
main#template-canvas-margin article body.page-template-events .event-excerpts h2+h2,
main#template-canvas-margin article body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h2+h4,
main#template-canvas-margin article body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4+h4,
main#template-canvas-margin article body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2+h2,
main#template-canvas-margin article h2+h3 {
    margin-top: 0
}

main#template-canvas-margin article p {
    line-height: 30px;
    padding-bottom: 0;
    margin-bottom: 20px
}

main#template-canvas-margin article ul {
    margin-bottom: 50px
}

main#template-canvas-margin article ul li {
    margin-bottom: 20px;
    line-height: 30px
}

@media (max-width:769px) {
    main#template-canvas-margin article ul li {
        margin-bottom: 0
    }
}

main#template-canvas-margin article figure {
    margin-bottom: 40px
}

main#template-canvas-margin article .margin-top-0 {
    margin-top: 0
}

main#template-canvas-margin article .margin-bottom-0 {
    margin-bottom: 0
}

main#template-canvas-margin article .padding-top-0 {
    padding-top: 0
}

main#template-canvas-margin article .padding-bottom-0 {
    padding-bottom: 0
}

body.page-template-partner-form {
    padding-top: 0;
    background-color: transparent;
    overflow: hidden
}

body.page-template-partner-form .mktoFormBox:not(.partners-marketo-form),
body.page-template-partner-form footer,
body.page-template-partner-form header {
    display: none
}

body.page-template-partner-form .mktoFormBox.partners-marketo-form {
    display: none;
    margin: 0 auto;
    width: 300px
}

body.page-template-partner-form .mktoFormBox.partners-marketo-form .mktoAsterix,
body.page-template-partner-form .mktoFormBox.partners-marketo-form .thePrivacy,
body.page-template-partner-form .mktoFormBox.partners-marketo-form label[for=FirstName],
body.page-template-partner-form .mktoFormBox.partners-marketo-form label[for=LastName] {
    display: none
}

body.page-template-devx.has-special-announcement {
    padding-top: 136px
}

@media (max-width:769px) {
    body.page-template-devx header#main-nav-bar a.top-header-logo {
        display: inline-block
    }
}

body.page-template-devx header#main-nav-bar a.top-header-logo+a {
    margin-left: 10px;
    color: #000;
    font-weight: 700;
    font-size: 20px;
    line-height: 21px
}

@media (max-width:769px) {
    body.page-template-devx header#main-nav-bar a.top-header-logo+a {
        top: -25px;
        position: relative
    }
}

body.page-template-devx header#main-nav-bar .special-announcement-header {
    height: 60px;
    background: #000
}

body.page-template-devx header#main-nav-bar .special-announcement-header .slick-list,
body.page-template-devx header#main-nav-bar .special-announcement-header .slick-slide>div,
body.page-template-devx header#main-nav-bar .special-announcement-header .slick-track {
    height: 100%
}

body.page-template-devx header#main-nav-bar .special-announcement-header .announcement {
    color: #fff;
    height: 100%;
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px
}

body.page-template-devx header#main-nav-bar .special-announcement-header .announcement p {
    height: 100%;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

body.page-template-devx header#main-nav-bar .special-announcement-header .announcement p img {
    width: auto;
    max-height: 90%
}

body.page-template-devx header#main-nav-bar .special-announcement-header .announcement p a:not(:hover) {
    color: #fff
}

body.page-template-devx footer.site-footer {
    padding-top: 70px
}

@media (max-width:769px) {
    body.page-template-devx footer.site-footer {
        padding-left: 20px;
        padding-right: 20px
    }
}

body.page-template-devx footer.site-footer nav.footer-column {
    width: 100%;
    max-width: 600px
}

@media (max-width:769px) {
    body.page-template-devx footer.site-footer nav.footer-column {
        display: block!important
    }
}

body.page-template-devx footer.site-footer nav.footer-column #menu-dev-x-footer-menu {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 0
}

@media (max-width:769px) {
    body.page-template-devx footer.site-footer nav.footer-column #menu-dev-x-footer-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

body.page-template-devx footer.site-footer nav.footer-column #menu-dev-x-footer-menu>li {
    padding-left: 0!important
}

@media (max-width:769px) {
    body.page-template-devx footer.site-footer nav.footer-column #menu-dev-x-footer-menu>li {
        width: auto
    }
}

@media (min-width:769px) {
    body.page-template-devx footer.site-footer nav.footer-column #menu-dev-x-footer-menu>li+li {
        margin-left: 40px
    }
}

body.page-template-devx footer.site-footer nav.footer-column #menu-dev-x-footer-menu>li>a {
    text-transform: uppercase;
    font-weight: 600;
    color: #2C83EC;
    cursor: text;
    pointer-events: none
}

body.page-template-devx footer.site-footer nav.footer-column #menu-dev-x-footer-menu>li>a:hover {
    text-shadow: none
}

@media (max-width:769px) {
    body.page-template-devx footer.site-footer nav.footer-column #menu-dev-x-footer-menu>li>a {
        display: block
    }
}

@media (max-width:1200px) {
    body.page-template-devx footer.site-footer nav.footer-column #menu-dev-x-footer-menu ul.sub-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
    body.page-template-devx footer.site-footer nav.footer-column #menu-dev-x-footer-menu ul.sub-menu li+li {
        margin-left: 20px
    }
}

body.page-template-devx footer.site-footer nav.footer-column #menu-dev-x-footer-menu ul.sub-menu li {
    margin-top: 10px
}

@media (max-width:769px) {
    body.page-template-devx footer.site-footer nav.footer-column #menu-dev-x-footer-menu ul.sub-menu li {
        width: auto
    }
}

body.page-template-devx footer.site-footer .copyright {
    padding-top: 0
}

body.template-logo-excerpt-default .hero {
    margin-bottom: 50px
}

body.template-logo-excerpt-default #excerpt-list {
    margin-bottom: 5vw
}

body.template-logo-excerpt-default #excerpt-list .excerpt {
    text-align: center;
    z-index: 1;
    margin: 10px 0;
    padding-bottom: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    height: 150px;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .16)
}

body.template-logo-excerpt-default #excerpt-list .excerpt,
body.template-logo-excerpt-default #excerpt-list .excerpt .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

body.template-logo-excerpt-default #excerpt-list .excerpt .logo {
    height: 80px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 10px;
    padding-bottom: 20px
}

body.template-logo-excerpt-default #excerpt-list .excerpt .logo img {
    max-width: 140px;
    max-height: 100%;
    width: auto;
    height: auto
}

@media (max-width:769px) {
    body.template-logo-excerpt-default #excerpt-list .excerpt .logo img {
        max-width: 80%
    }
}

body.template-logo-excerpt-default #excerpt-list .excerpt .tag-ribbon-wrapper {
    display: none
}

body.template-logo-excerpt-default #excerpt-list .excerpt .title {
    padding: 0 10px;
    margin: 0;
    line-height: 20px
}

body.template-logo-excerpt-default #excerpt-list .excerpt .title:before {
    content: "";
    background: #dcdcdc;
    display: block;
    margin: 0 auto 10px;
    width: 75px;
    height: 1px
}

body.template-logo-excerpt-default #excerpt-list .excerpt .overlay {
    display: none;
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0
}

body.template-logo-excerpt-default #excerpt-list .excerpt .overlay .anchor {
    position: absolute;
    top: 63%;
    bottom: 0;
    right: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    color: #000;
    background: #2C83EC;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

body.template-logo-excerpt-default #excerpt-list .excerpt:hover .overlay,
body.template-logo-excerpt-default #excerpt-list .excerpt:hover .tag-ribbon-wrapper {
    display: block
}

.filter-search-container {
    margin-bottom: 70px;
    margin-top: 20px
}

.filter-search-container .open-search {
    border: none!important;
    margin-top: 0!important;
    cursor: text
}

.filter-search-container .open-search>div {
    border: 1px solid #cbcbcb;
    border-radius: 4px;
    height: 100%
}

.filter-search-container .open-search>div .search-container {
    right: 10px;
    background-color: transparent
}

@media (max-width:769px) {
    .filter-search-container .open-search>div .search-container {
        left: 0
    }
}

@media (min-width:769px) {
    .filter-search-container .open-search>div .search-container.searching {
        left: 20px
    }
}

.filter-search-container .open-search>div .search-container.searching .search-box-container {
    background: transparent;
    width: 95%
}

.filter-search-container .open-search>div .search-container .exit-search {
    right: 5px
}

body.template-single-with-sidebar main {
    margin-top: 40px
}

@media (min-width:992px) {
    body.template-single-with-sidebar main>div.row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

body.template-single-with-sidebar main .content h1 span {
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
    display: block
}

@media (max-width:769px) {
    body.template-single-with-sidebar main .content h1 span {
        font-size: 24px
    }
}

body.template-single-with-sidebar main .content h1+hr {
    margin-top: 4vw;
    margin-bottom: 3vw
}

@media (max-width:769px) {
    body.template-single-with-sidebar main .content h1+hr {
        margin-top: 7vw
    }
}

.marketo-subscribe-blog body.template-single-with-sidebar main .content h4,
body.template-single-with-sidebar main .content .marketo-subscribe-blog h4,
body.template-single-with-sidebar main .content h2 {
    font-size: 30px;
    line-height: 40px
}

.marketo-subscribe-blog body.template-single-with-sidebar main .content h4+ul,
body.template-single-with-sidebar main .content .marketo-subscribe-blog h4+ul,
body.template-single-with-sidebar main .content h2+ul {
    margin-top: -20px
}

.marketo-subscribe-blog body.template-single-with-sidebar main .content h4:not(first-of-type),
body.template-single-with-sidebar main .content .marketo-subscribe-blog h4:not(first-of-type),
body.template-single-with-sidebar main .content h2:not(first-of-type) {
    margin-top: 50px
}

body.template-single-with-sidebar main .logo {
    position: relative;
    border: 1px solid #cbcbcb;
    border-radius: 4px;
    padding: 70px 50px;
    margin-bottom: 30px;
    text-align: center
}

@media (max-width:769px) {
    body.template-single-with-sidebar main .logo {
        padding: 40px 65px
    }
}

@media (min-width:769px) {
    .excerpt-grid-block.featured>div.row>div:first-of-type .search-controls body.template-single-with-sidebar main .sidebar .ais-clear-all--link+.cta,
    .excerpt-grid-block.featured>div.row>div:first-of-type body.template-single-with-sidebar main .sidebar .action-btn+.cta,
    .excerpt-grid-block.featured>div.row>div:first-of-type body.template-single-with-sidebar main .sidebar .cta+.action-btn,
    .excerpt-grid-block.featured>div.row>div:first-of-type body.template-single-with-sidebar main .sidebar .cta+.cta,
    .excerpt-grid-block.featured>div.row>div:first-of-type body.template-single-with-sidebar main .sidebar .search-controls .ais-clear-all--link+.cta,
    .excerpt-grid-block.featured>div.row>div:first-of-type body.template-single-with-sidebar main .sidebar .search-controls .cta+.ais-clear-all--link,
    .excerpt-grid-block.featured>div.row>div:first-of-type body.template-single-with-sidebar main .sidebar body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .cta+.mktoButton,
    .excerpt-grid-block.featured>div.row>div:first-of-type body.template-single-with-sidebar main .sidebar body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton+.cta,
    .excerpt-grid-block.featured>div.row>div:first-of-type body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap body.template-single-with-sidebar main .sidebar .mktoButton+.cta,
    .search-controls .excerpt-grid-block.featured>div.row>div:first-of-type body.template-single-with-sidebar main .sidebar .cta+.ais-clear-all--link,
    .search-controls body.template-single-with-sidebar main .sidebar .action-btn+.ais-clear-all--link,
    .search-controls body.template-single-with-sidebar main .sidebar .ais-clear-all--link+.action-btn,
    .search-controls body.template-single-with-sidebar main .sidebar .ais-clear-all--link+.ais-clear-all--link,
    .search-controls body.template-single-with-sidebar main .sidebar .excerpt-grid-block.featured>div.row>div:first-of-type .ais-clear-all--link+.cta,
    .search-controls body.template-single-with-sidebar main .sidebar .excerpt-grid-block.featured>div.row>div:first-of-type .cta+.ais-clear-all--link,
    .search-controls body.template-single-with-sidebar main .sidebar body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .ais-clear-all--link+.mktoButton,
    .search-controls body.template-single-with-sidebar main .sidebar body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton+.ais-clear-all--link,
    .search-controls body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap body.template-single-with-sidebar main .sidebar .mktoButton+.ais-clear-all--link,
    body.template-single-with-sidebar main .sidebar .action-btn+.action-btn,
    body.template-single-with-sidebar main .sidebar .excerpt-grid-block.featured>div.row>div:first-of-type .action-btn+.cta,
    body.template-single-with-sidebar main .sidebar .excerpt-grid-block.featured>div.row>div:first-of-type .cta+.action-btn,
    body.template-single-with-sidebar main .sidebar .excerpt-grid-block.featured>div.row>div:first-of-type .cta+.cta,
    body.template-single-with-sidebar main .sidebar .excerpt-grid-block.featured>div.row>div:first-of-type .search-controls .cta+.ais-clear-all--link,
    body.template-single-with-sidebar main .sidebar .excerpt-grid-block.featured>div.row>div:first-of-type body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .cta+.mktoButton,
    body.template-single-with-sidebar main .sidebar .search-controls .action-btn+.ais-clear-all--link,
    body.template-single-with-sidebar main .sidebar .search-controls .ais-clear-all--link+.action-btn,
    body.template-single-with-sidebar main .sidebar .search-controls .ais-clear-all--link+.ais-clear-all--link,
    body.template-single-with-sidebar main .sidebar .search-controls .excerpt-grid-block.featured>div.row>div:first-of-type .ais-clear-all--link+.cta,
    body.template-single-with-sidebar main .sidebar .search-controls body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .ais-clear-all--link+.mktoButton,
    body.template-single-with-sidebar main .sidebar body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .action-btn+.mktoButton,
    body.template-single-with-sidebar main .sidebar body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .excerpt-grid-block.featured>div.row>div:first-of-type .mktoButton+.cta,
    body.template-single-with-sidebar main .sidebar body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton+.action-btn,
    body.template-single-with-sidebar main .sidebar body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton+.mktoButton,
    body.template-single-with-sidebar main .sidebar body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .search-controls .mktoButton+.ais-clear-all--link,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .excerpt-grid-block.featured>div.row>div:first-of-type body.template-single-with-sidebar main .sidebar .cta+.mktoButton,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .search-controls body.template-single-with-sidebar main .sidebar .ais-clear-all--link+.mktoButton,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap body.template-single-with-sidebar main .sidebar .action-btn+.mktoButton,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap body.template-single-with-sidebar main .sidebar .excerpt-grid-block.featured>div.row>div:first-of-type .cta+.mktoButton,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap body.template-single-with-sidebar main .sidebar .excerpt-grid-block.featured>div.row>div:first-of-type .mktoButton+.cta,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap body.template-single-with-sidebar main .sidebar .mktoButton+.action-btn,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap body.template-single-with-sidebar main .sidebar .mktoButton+.mktoButton,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap body.template-single-with-sidebar main .sidebar .search-controls .ais-clear-all--link+.mktoButton,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap body.template-single-with-sidebar main .sidebar .search-controls .mktoButton+.ais-clear-all--link {
        margin-left: 0
    }
}

body.template-single-with-sidebar footer.site-footer {
    margin-top: 70px
}

@media (min-width:769px) {
    body.template-single-with-sidebar footer.site-footer {
        margin-top: 150px
    }
}

.logos-strip {
    border-top: 1px solid #cbcbcb;
    padding-top: 25px;
    padding-bottom: 25px
}

.logos-strip .logos {
    margin: 0 auto;
    width: 1200px;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:769px) {
    .logos-strip .logos {
        -ms-flex-flow: wrap;
        flex-flow: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.logos-strip .logos figure {
    max-width: 100px;
    margin-bottom: 0
}

@media (max-width:769px) {
    .logos-strip .logos figure {
        margin: 10px 15px
    }
}

.logos-strip .logos figure img {
    max-height: 55px
}

.lp-customer-logos {
    width: 100%;
    background: #f2f2f2;
    border-bottom: 1px solid #ddd
}

.lp-customer-logos>.row {
    margin: 0
}

.lp-customer-logos>.row>.container {
    padding: 28px 1vw
}

.lp-customer-logos>.row>.container>.row>div {
    text-align: center
}

.lp-customer-logos>.row>.container>.row>div a {
    cursor: default
}

.lp-customer-logos>.row>.container>.row>div img {
    margin: 1vw auto;
    height: 32px;
    width: auto
}

.lp-customer-logos p {
    font-size: 14px;
    color: #000
}

body:not(.page-template-partner-form) .mktoFormBox {
    color: #000
}

body:not(.page-template-partner-form) .mktoFormBox .theTitle {
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm {
    width: 100%!important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm.fullNameForm input:not(.mktoInvalid)+.mktoError {
    display: none!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm div {
    width: 100%
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFormCol {
    width: 100%;
    float: none
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFormRow {
    margin-bottom: 15px
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoField {
    float: none
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap {
    position: relative;
    float: none!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap label {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 18px;
    font-weight: 400!important;
    color: #717171;
    width: auto!important;
    -webkit-transition: all .3s;
    transition: all .3s;
    pointer-events: none;
    z-index: 10
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap label .mktoAsterix {
    display: none
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap label[for=customer] {
    position: relative
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap select,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap textarea {
    height: 60px;
    width: 100%!important;
    border: 1px solid #cbcbcb;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
    font-size: 18px;
    color: #000;
    float: none!important;
    padding-left: 20px!important;
    padding-right: 20px!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input.mktoInvalid,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap select.mktoInvalid,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap textarea.mktoInvalid {
    border-color: #dc3840;
    border: 1px solid red!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input:focus,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap select:focus,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap textarea:focus {
    outline: none!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap select:hover,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap textarea:hover {
    border: 1px solid #000!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap textarea {
    padding-top: 35px!important;
    padding-bottom: 20px!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input:-webkit-autofill,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input:-webkit-autofill:active,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input:-webkit-autofill:focus,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 30px #fff inset!important;
    box-shadow: inset 0 0 0 30px #fff!important;
    border: 1px solid #cbcbcb!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input::-webkit-input-placeholder {
    color: transparent
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input:-moz-placeholder,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input::-moz-placeholder {
    color: transparent
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input:-ms-input-placeholder {
    color: transparent
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input.mktoInvalid:focus {
    border: 1px solid #cbcbcb!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input.mktoInvalid:focus+.mktoError {
    display: none!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap input[type=checkbox] {
    height: auto!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap select {
    background-image: url()!important;
    background-repeat: no-repeat!important;
    background-size: 11px 7px!important;
    background-position: calc(100% - 20px) 50%!important;
    padding-top: 13px!important;
    padding-right: 40px!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap textarea {
    min-height: 110px
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap.hideLabel label {
    top: 0;
    font-size: 14px
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap.hideLabel select {
    color: #000
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap .mktoError {
    position: relative!important;
    top: auto!important;
    bottom: auto!important;
    right: auto!important;
    margin-top: 10px
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap .mktoError .mktoErrorArrowWrap {
    position: relative!important;
    top: auto!important;
    left: auto!important;
    display: none!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoFieldWrap .mktoError .mktoErrorMsg {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%!important;
    padding: 10px 10px 10px 40px;
    background-image: url();
    background-repeat: no-repeat;
    background-position: 15px;
    background-color: #dc3840;
    border: 0!important;
    border-radius: 0!important;
    border-style: solid!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
    text-shadow: none!important;
    color: #fff!important;
    text-align: left;
    line-height: 18px
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow {
    width: 100%!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap {
    width: 100%!important;
    margin-left: 0!important;
    display: block
}

body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
    margin: 30px auto 10px!important;
    display: block;
    font-weight: 400!important
}

body:not(.page-template-partner-form) .mktoFormBox .gdpr-privacy {
    margin-bottom: 20px;
    font-family: "Arial"
}

body:not(.page-template-partner-form) .mktoFormBox .gdpr-privacy label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 15px;
    font-weight: 400
}

@media (max-width:769px) {
    body:not(.page-template-partner-form) .mktoFormBox .gdpr-privacy label {
        font-size: 18px;
        line-height: 30px
    }
}

body:not(.page-template-partner-form) .mktoFormBox .gdpr-privacy label input {
    margin-top: 1px
}

@media (max-width:769px) {
    body:not(.page-template-partner-form) .mktoFormBox .gdpr-privacy label input {
        margin-top: 6px;
        width: 20px;
        height: 20px
    }
}

body:not(.page-template-partner-form) .mktoFormBox .gdpr-privacy label .gdpr-label {
    margin-left: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

body:not(.page-template-partner-form) .mktoFormBox .gdpr-privacy .privacy {
    line-height: 24px;
    display: block
}

@media (max-width:769px) {
    body:not(.page-template-partner-form) .mktoFormBox .gdpr-privacy .privacy br {
        display: none
    }
}

body:not(.page-template-partner-form) .mktoFormBox .gdpr-privacy.has-error .gdpr-label:after {
    content: "Required";
    color: #fff;
    padding: 10px 10px 10px 40px;
    display: block;
    margin-top: 5px;
    text-align: left;
    background-image: url();
    background-repeat: no-repeat;
    background-position: 15px;
    background-color: #dc3840
}

body:not(.page-template-partner-form) .mktoFormBox .thePrivacy {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 30px;
    margin-bottom: 0;
    display: none
}

body:not(.page-template-partner-form) .mktoFormBox .thePrivacy br {
    display: none
}

body:not(.page-template-partner-form) .mktoFormBox .thePrivacy a {
    color: #000!important;
    text-decoration: underline;
    font-weight: 600
}

body:not(.page-template-partner-form) .mktoFormBox.visible .thePrivacy {
    display: block
}

.marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox,
body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox,
body:not(.page-template-partner-form) .mktoFormBox.dark {
    background: #2C83EC
}

.marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox:not(.no-padding),
body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox:not(.no-padding),
body:not(.page-template-partner-form) .mktoFormBox.dark:not(.no-padding) {
    padding: 50px 15%
}

.marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox input,
.marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox select,
body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox input,
body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox select,
body:not(.page-template-partner-form) .mktoFormBox.dark input,
body:not(.page-template-partner-form) .mktoFormBox.dark select {
    border: 0!important
}

.marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox.clipped,
body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox.clipped,
body:not(.page-template-partner-form) .mktoFormBox.dark.clipped {
    -webkit-clip-path: polygon(0 0, 0 15%, 6% 19%, 0 23%, 0 100%, 100% 100%, 100% 0);
    clip-path: polygon(0 0, 0 15%, 6% 19%, 0 23%, 0 100%, 100% 100%, 100% 0)
}

.marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox .mktoFormRow,
body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox .mktoFormRow,
body:not(.page-template-partner-form) .mktoFormBox.three-column .mktoFormRow,
body:not(.page-template-partner-form) .mktoFormBox.two-column .mktoFormRow {
    margin-bottom: 30px
}

.marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox .mktoForm:not(.fullNameForm),
body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox .mktoForm:not(.fullNameForm),
body:not(.page-template-partner-form) .mktoFormBox.three-column .mktoForm:not(.fullNameForm),
body:not(.page-template-partner-form) .mktoFormBox.two-column .mktoForm:not(.fullNameForm) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
body:not(.page-template-partner-form) .mktoFormBox.three-column .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
body:not(.page-template-partner-form) .mktoFormBox.two-column .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
    margin-top: 0!important
}

@media (min-width:769px) {
    .marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox .mktoForm:not(.fullNameForm) .mktoFormRow,
    body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox .mktoForm:not(.fullNameForm) .mktoFormRow,
    body:not(.page-template-partner-form) .mktoFormBox.two-column .mktoForm:not(.fullNameForm) .mktoFormRow {
        width: 47.8%
    }
}

.marketo-container.vertical body:not(.page-template-partner-form) .mktoFormBox.first-field-full-width form>div:first-of-type,
body:not(.page-template-partner-form) .marketo-container.vertical .mktoFormBox.first-field-full-width form>div:first-of-type,
body:not(.page-template-partner-form) .mktoFormBox.two-column.first-field-full-width form>div:first-of-type {
    width: 100%!important
}

@media (min-width:769px) {
    body:not(.page-template-partner-form) .mktoFormBox.three-column .mktoForm:not(.fullNameForm) .mktoFormRow {
        width: 31%
    }
}

body:not(.page-template-partner-form) .mktoFormBox:not(.two-column):not(.three-column) .mktoButton {
    width: 100%!important
}

body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form {
    padding-top: 60px;
    padding-bottom: 60px
}

.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4:empty,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4:empty,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2:empty {
    display: none
}

@media (min-width:769px) {
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form {
        padding-left: 100px;
        padding-right: 100px
    }
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form form.mktoForm {
        position: relative
    }
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form form.mktoForm>div:first-of-type {
        width: calc(100% - 170px)
    }
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form form.mktoForm .mktoButtonRow {
        position: absolute;
        top: 0;
        right: 0;
        width: 170px!important;
        margin-top: 0!important
    }
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form form.mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton {
        margin-top: 0!important;
        border-radius: 0;
        min-width: auto!important
    }
}

body:not(.page-template-partner-form) .mktoFormBox.login-form div.checkbox .mktoFieldWrap.mktoRequiredField {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

body:not(.page-template-partner-form) .mktoFormBox.login-form div.checkbox .mktoFieldWrap.mktoRequiredField label {
    display: inline-block;
    left: -10px;
    top: -5px
}

body:not(.page-template-partner-form) .mktoFormBox .mktoFormRow.textarea {
    width: 100%!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoFormRow.select select {
    color: transparent
}

body:not(.page-template-partner-form) .mktoFormBox .mktoFormRow.checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 10px
}

body:not(.page-template-partner-form) .mktoFormBox .mktoFormRow.checkbox .mktoFieldDescriptor.mktoFormCol {
    width: auto!important
}

body:not(.page-template-partner-form) .mktoFormBox .mktoFormRow.checkbox .mktoHtmlText {
    text-align: left;
    line-height: 21px
}

body:not(.page-template-partner-form) .mktoFormBox .mktoFormRow.checkbox input {
    width: auto!important
}

@media (min-width:769px) {
    .marketo-container.vertical .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
        width: 270px!important
    }
}

.modal-box {
    display: none
}

.modal-box .mktoFormBox {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 30px 37px
}

@media (min-width:769px) {
    .modal-box .mktoFormBox {
        width: 470px!important
    }
}

.modal-box .mktoFormBox .thePrivacy br {
    display: block!important
}

.modal-box .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
    width: 270px!important
}

.hero .lp-hero-form .mktoFormBox {
    max-width: 100%;
    background: #fff;
    padding: 20px;
    display: inline-block
}

@media (min-width:769px) {
    .hero .lp-hero-form .mktoFormBox {
        width: 470px!important;
        padding: 40px
    }
}

.hero .lp-hero-form .mktoFormBox .mktoForm .mktoFormRow {
    margin-bottom: 15px
}

@media (min-width:769px) {
    .hero .lp-hero-form .mktoFormBox .thePrivacy br {
        display: block
    }
}

.floatCTA .title {
    position: fixed;
    top: 280px;
    left: 0;
    z-index: 510;
    display: block;
    font-size: 17px;
    line-height: 42px!important;
    background: #2C83EC;
    padding: 0 20px;
    margin: 0;
    border-radius: 5px 5px 0 0;
    -webkit-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, .2);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0 100% 0;
    transform-origin: 0 100% 0
}

.floatCTA .title a {
    display: block;
    color: #000
}

.floatCTA .content {
    position: fixed;
    top: 360px;
    left: 0;
    z-index: 500;
    background: #dfdfdf;
    color: #000;
    padding: 15px 20px;
    margin: 0;
    border: 1px solid #d2d2d2;
    border-radius: 0 3px 3px 0;
    width: 150px;
    -webkit-transition: -webkit-transform 375ms ease-in-out 0ms;
    transition: -webkit-transform 375ms ease-in-out 0ms;
    transition: transform 375ms ease-in-out 0ms;
    transition: transform 375ms ease-in-out 0ms, -webkit-transform 375ms ease-in-out 0ms;
    -webkit-transform: translate(-100%);
    transform: translate(-100%)
}

.floatCTA:hover .content {
    -webkit-transform: translate(42px);
    transform: translate(42px)
}

.floatCTA .content a {
    color: #f16327
}

.floatCTA .content a:hover {
    color: #f23d00
}

.content-carousel {
    position: relative;
    text-align: center;
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-flow: wrap!important;
    flex-flow: wrap!important
    /* ! carousel-item */
}

.content-carousel .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap
}

.content-carousel .carousel-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:992px) {
    .content-carousel .carousel-item {
        margin-bottom: 36px
    }
}

.content-carousel .carousel-item span.text {
    display: block;
    font-size: 18px!important
}

.content-carousel .carousel-item p,
.content-carousel .carousel-item span.text {
    padding-bottom: 0
}

.content-carousel .carousel-item .animarrow,
.content-carousel .carousel-item .animated-arrow,
.content-carousel .carousel-item header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
.content-carousel .carousel-item header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a,
header#main-nav-bar .main-menu nav.menu-items .content-carousel .carousel-item ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li .content-carousel .carousel-item a {
    position: absolute;
    text-align: left;
    right: 10%;
    bottom: 6%;
    color: #000;
    font-weight: 600;
    font-size: 16px
}

.content-carousel .carousel-item .animarrow:after,
.content-carousel .carousel-item .animated-arrow:after,
.content-carousel .carousel-item header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a:after,
.content-carousel .carousel-item header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a:after,
header#main-nav-bar .main-menu nav.menu-items .content-carousel .carousel-item ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li .content-carousel .carousel-item a:after {
    background-position-y: 3px
}

@media (min-width:769px) {
    .content-carousel .carousel-item .animarrow,
    .content-carousel .carousel-item .animated-arrow,
    .content-carousel .carousel-item header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
    .content-carousel .carousel-item header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a,
    header#main-nav-bar .main-menu nav.menu-items .content-carousel .carousel-item ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li .content-carousel .carousel-item a {
        right: inherit;
        margin-left: 52%;
        bottom: 6px
    }
}

@media (min-width:1200px) {
    .content-carousel .carousel-item .animarrow,
    .content-carousel .carousel-item .animated-arrow,
    .content-carousel .carousel-item header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
    .content-carousel .carousel-item header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a,
    header#main-nav-bar .main-menu nav.menu-items .content-carousel .carousel-item ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li .content-carousel .carousel-item a {
        margin-left: 60%;
        bottom: 8px
    }
}

.content-carousel .carousel-item>a:first-child {
    margin: 4vw;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    color: #000;
    position: relative;
    padding-bottom: 48px
}

.content-carousel .carousel-item>a:first-child>img {
    width: 100%;
    height: auto
}

.content-carousel .carousel-item>a:first-child>p {
    margin: 1vw 2vw;
    width: 70vw;
    text-align: left
}

.content-carousel .carousel-item>a:first-child>span {
    display: block;
    font-size: 12px;
    float: right;
    margin: 2vw
}

.content-carousel .carousel-item:hover>a:first-child:after {
    content: "";
    height: 6px;
    background: #2C83EC;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0
}

.content-carousel .carousel-item:hover>.animarrow:after,
.content-carousel .carousel-item:hover>.animated-arrow:after,
.content-carousel header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li.carousel-item:not(.menu-item-has-children):hover>a:after,
.content-carousel header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li .carousel-item:hover>a:after,
header#main-nav-bar .main-menu nav.menu-items .content-carousel ul#menu-top-main-menu>li>ul.sub-menu>li.carousel-item:not(.menu-item-has-children):hover>a:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li .content-carousel .carousel-item:hover>a:after {
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
    -webkit-animation: arrowanimation .8s infinite;
    animation: arrowanimation .8s infinite
}

.content-carousel .carousel-item.read-more-link .content {
    width: 100%;
    padding-top: 200px
}

.content-carousel .carousel-item.read-more-link .content img {
    position: absolute;
    top: 0
}

.content-carousel .carousel-item.read-more-link .content span {
    float: none;
    position: relative;
    background: #fff;
    margin: 0!important;
    width: 100%!important;
    padding: 10px
}

.content-carousel .carousel-item.read-more-link .animarrow,
.content-carousel .carousel-item.read-more-link .animated-arrow,
.content-carousel .carousel-item.read-more-link header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
.content-carousel .carousel-item.read-more-link header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a,
header#main-nav-bar .main-menu nav.menu-items .content-carousel .carousel-item.read-more-link ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li .content-carousel .carousel-item.read-more-link a {
    margin: 0;
    right: 0;
    display: block;
    width: 100%;
    text-align: right;
    margin-right: 11%
}

.content-carousel .carousel-item.read-more-link .animarrow:after,
.content-carousel .carousel-item.read-more-link .animated-arrow:after,
.content-carousel .carousel-item.read-more-link header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a:after,
.content-carousel .carousel-item.read-more-link header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a:after,
header#main-nav-bar .main-menu nav.menu-items .content-carousel .carousel-item.read-more-link ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li .content-carousel .carousel-item.read-more-link a:after {
    position: absolute;
    top: 7px
}

@media (min-width:769px) {
    .content-carousel {
        text-align: center
    }
    .content-carousel .carousel-item>a:first-child {
        margin: 0;
        border-radius: .6vw
    }
    .content-carousel .carousel-item>a:first-child>p,
    .content-carousel .carousel-item>a:first-child>span.text {
        margin: 18px 14px 0;
        width: calc(100% - 28px);
        text-align: left
    }
    .content-carousel .carousel-item>a:first-child>span {
        display: block;
        font-size: 14px;
        float: right;
        margin: 12px
    }
}

.excerpt-grid {
    padding: 10px 0 50px;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap
}

.excerpt-grid>div {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.excerpt-grid .posts-pagination>div {
    padding-bottom: 50px;
    display: block;
    width: 100%;
    color: #2C83EC
}

.excerpt-grid .posts-pagination>div a {
    color: #000
}

.excerpt-grid .content-excerpt a.img-link {
    position: relative;
    display: block;
    margin-bottom: 20px;
    padding-top: 51.75%;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #cbcbcb;
    overflow: hidden
}

.excerpt-grid .content-excerpt a.img-link img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    max-width: inherit;
    width: inherit;
    height: 100%
}

.excerpt-grid .content-excerpt a.img-link:after {
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute
}

.excerpt-grid .content-excerpt .author,
.excerpt-grid .content-excerpt .meta .primary-category,
.fifty-fifty {
    position: relative
}

.fifty-fifty {
    margin: 8vw -15px
}

.fifty-fifty video {
    width: 100%
}

.fifty-fifty .marketo-subscribe-blog body.page-template-events .event-excerpts h4,
.fifty-fifty .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4,
.fifty-fifty body.page-template-events .event-excerpts .marketo-subscribe-blog h4,
.fifty-fifty body.page-template-events .event-excerpts h2,
.fifty-fifty body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4,
.fifty-fifty body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2,
.fifty-fifty h3,
.marketo-subscribe-blog body.page-template-events .event-excerpts .fifty-fifty h4,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .fifty-fifty h4,
body.page-template-events .event-excerpts .fifty-fifty h2,
body.page-template-events .event-excerpts .marketo-subscribe-blog .fifty-fifty h4,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .fifty-fifty h2,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .fifty-fifty h4 {
    margin: 32px 0 18px
}

.fifty-fifty .media {
    margin-top: 14px
}

.excerpt-grid-block.featured>div.row>div:first-of-type .fifty-fifty .cta,
.fifty-fifty .action-btn,
.fifty-fifty .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
.fifty-fifty .search-controls .ais-clear-all--link,
.fifty-fifty body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
.search-controls .fifty-fifty .ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .fifty-fifty .mktoButton {
    display: block
}

@media (min-width:769px) {
    .fifty-fifty {
        padding: 36px 0;
        margin-top: 3.6vw;
        margin-bottom: 3.6vw;
        direction: rtl
    }
    .fifty-fifty .marketo-subscribe-blog body.page-template-events .event-excerpts h4,
    .fifty-fifty .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4,
    .fifty-fifty body.page-template-events .event-excerpts .marketo-subscribe-blog h4,
    .fifty-fifty body.page-template-events .event-excerpts h2,
    .fifty-fifty body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4,
    .fifty-fifty body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2,
    .fifty-fifty h3,
    .marketo-subscribe-blog body.page-template-events .event-excerpts .fifty-fifty h4,
    .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .fifty-fifty h4,
    body.page-template-events .event-excerpts .fifty-fifty h2,
    body.page-template-events .event-excerpts .marketo-subscribe-blog .fifty-fifty h4,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .fifty-fifty h2,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .fifty-fifty h4 {
        margin: 18px 0
    }
    .fifty-fifty.media-first,
    .fifty-fifty>div {
        direction: ltr
    }
    .fifty-fifty .media {
        width: 49%;
        margin: 0
    }
    .excerpt-grid-block.featured>div.row>div:first-of-type .fifty-fifty .cta,
    .fifty-fifty .action-btn,
    .fifty-fifty .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
    .fifty-fifty .search-controls .ais-clear-all--link,
    .fifty-fifty body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
    .search-controls .fifty-fifty .ais-clear-all--link,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .fifty-fifty .mktoButton {
        margin: 18px 0
    }
}

.fifty-fifty-slider .fifty-fifty {
    padding: 0 18px
}

.fifty-fifty-slider button.slick-next.slick-arrow {
    z-index: 2
}

.fifty-fifty-slider button.slick-next.slick-arrow:before {
    display: none
}

.fifty-fifty-slider button.slick-prev.slick-arrow {
    z-index: 2
}

.fifty-fifty-slider button.slick-prev.slick-arrow:before {
    display: none
}

@media (min-width:769px) {
    .fifty-fifty-slider .fifty-fifty {
        padding: 0 54px
    }
}

.hero,
.hero-banner {
    position: relative;
    color: #fff;
    overflow: hidden;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 70px;
    padding-top: 50px;
    padding-bottom: 60px
}

@media (min-width:1200px) {
    .hero,
    .hero-banner {
        min-height: 430px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media (max-width:769px) {
    .hero,
    .hero-banner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 50px 0;
        margin-bottom: 40px
    }
}

.hero-banner:not(.hero-banner),
.hero:not(.hero-banner) {
    text-align: center
}

.hero-banner .copy,
.hero .copy {
    text-align: left
}

.hero-banner h1,
.hero h1 {
    margin-top: 0;
    font-weight: 600
}

.hero-banner h1 span[style*="color: #000000;"],
.hero-banner h1.black,
.hero h1 span[style*="color: #000000;"],
.hero h1.black {
    font-weight: 700
}

@media (min-width:769px) {
    .hero-banner h1,
    .hero h1 {
        font-size: 60px;
        line-height: 70px
    }
}

.hero-banner h1 span.small,
.hero h1 span.small {
    font-weight: 600
}

.hero-banner p.subtitle,
.hero p.subtitle {
    font-size: 30px;
    line-height: 40px;
    font-weight: 300
}

.hero-banner p.subtitle.black,
.hero-banner p.subtitle span[style*="color: #000000;"],
.hero p.subtitle.black,
.hero p.subtitle span[style*="color: #000000;"] {
    font-weight: 400
}

@media (max-width:769px) {
    .hero-banner p.subtitle,
    .hero p.subtitle {
        font-size: 24px;
        line-height: 30px
    }
}

.hero-banner p,
.hero p {
    font-size: 24px;
    line-height: 35px;
    font-weight: 300
}

@media (max-width:769px) {
    .hero-banner p,
    .hero p {
        font-size: 18px;
        line-height: 30px
    }
}

.hero-banner p.black,
.hero-banner p span[style*="color: #000000;"],
.hero p.black,
.hero p span[style*="color: #000000;"] {
    font-weight: 400
}

.hero-banner p .smaller,
.hero p .smaller {
    display: block;
    font-size: 14px;
    line-height: 21px;
    margin-top: 8px
}

.hero-banner:not(.hero-banner)>.container,
.hero:not(.hero-banner)>.container {
    z-index: 3;
    position: relative
}

.hero-banner:not(.hero-banner)>.container>.row,
.hero:not(.hero-banner)>.container>.row {
    font-size: 24px
}

.hero-banner:not(.hero-banner)>.container>.row>.div,
.hero:not(.hero-banner)>.container>.row>.div {
    padding: 0
}

.hero-banner.straight>.container,
.hero.straight>.container {
    position: relative;
    -webkit-transform: none;
    transform: none;
    top: inherit;
    left: inherit
}

.hero-banner .video-container,
.hero .video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

@media (max-width:769px) {
    .hero-banner .video-container,
    .hero .video-container {
        position: absolute
    }
}

.hero-banner .video-container video,
.hero .video-container video {
    min-width: 100%;
    min-height: 100%;
    -webkit-filter: brightness(.6);
    filter: brightness(.6);
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media (min-width:769px) and (max-width:999px) {
    .hero-banner .video-container video,
    .hero .video-container video {
        min-width: 200%;
        min-height: 200%
    }
}

@media (min-width:1000px) and (max-width:1500px) {
    .hero-banner .video-container video,
    .hero .video-container video {
        min-width: 150%;
        min-height: 150%
    }
}

@media (min-width:992px) {
    .hero-banner .mktoFormBox,
    .hero .mktoFormBox {
        margin-top: 0;
        margin-bottom: 0
    }
}

.hero {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#1c546d), to(#1c546d));
    background-image: linear-gradient(#1c546d, #1c546d)
}

.hero-banner p.has-black-color {
    font-weight: 400!important
}

.hero-banner:not([class*=bg-]) {
    background-color: #1c546d
}

.hero-banner.has-bkg-img {
    background-repeat: no-repeat;
    background-position: 50%
}

@media (max-width:769px) {
    .hero-banner.bkg-img-sm-hidden,
    .hero-banner.bkg-img-sm-hidden:before {
        background-image: none!important
    }
}

.hero-banner[class*=has-bkg-img-opacity] {
    position: relative
}

.hero-banner[class*=has-bkg-img-opacity]:before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    font-size: 0;
    z-index: 0
}

@media (max-width:769px) {
    .hero-banner[class*=has-bkg-img-opacity-]:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .7)), to(rgba(0, 0, 0, .7)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .7))
    }
}

@media (min-width:769px) {
    .hero-banner.has-bkg-img-opacity-1:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(50%, rgba(0, 0, 0, .1)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .1) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.bkg-opacity-dir-leftToRight.has-bkg-img-opacity-1:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(25%, rgba(0, 0, 0, .1)), color-stop(50%, rgba(0, 0, 0, .1)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .1) 25%, rgba(0, 0, 0, .1) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.has-bkg-img-opacity-2:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(50%, rgba(0, 0, 0, .2)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.bkg-opacity-dir-leftToRight.has-bkg-img-opacity-2:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(25%, rgba(0, 0, 0, .2)), color-stop(50%, rgba(0, 0, 0, .2)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 25%, rgba(0, 0, 0, .2) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.has-bkg-img-opacity-3:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(50%, rgba(0, 0, 0, .3)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .3) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.bkg-opacity-dir-leftToRight.has-bkg-img-opacity-3:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(25%, rgba(0, 0, 0, .3)), color-stop(50%, rgba(0, 0, 0, .3)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .3) 25%, rgba(0, 0, 0, .3) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.has-bkg-img-opacity-4:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(50%, rgba(0, 0, 0, .4)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .4) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.bkg-opacity-dir-leftToRight.has-bkg-img-opacity-4:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(25%, rgba(0, 0, 0, .4)), color-stop(50%, rgba(0, 0, 0, .4)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .4) 25%, rgba(0, 0, 0, .4) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.has-bkg-img-opacity-5:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(50%, rgba(0, 0, 0, .5)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .5) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.bkg-opacity-dir-leftToRight.has-bkg-img-opacity-5:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(25%, rgba(0, 0, 0, .5)), color-stop(50%, rgba(0, 0, 0, .5)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .5) 25%, rgba(0, 0, 0, .5) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.has-bkg-img-opacity-6:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(50%, rgba(0, 0, 0, .6)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .6) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.bkg-opacity-dir-leftToRight.has-bkg-img-opacity-6:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(25%, rgba(0, 0, 0, .6)), color-stop(50%, rgba(0, 0, 0, .6)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .6) 25%, rgba(0, 0, 0, .6) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.has-bkg-img-opacity-7:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(50%, rgba(0, 0, 0, .7)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .7) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.bkg-opacity-dir-leftToRight.has-bkg-img-opacity-7:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(25%, rgba(0, 0, 0, .7)), color-stop(50%, rgba(0, 0, 0, .7)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .7) 25%, rgba(0, 0, 0, .7) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.has-bkg-img-opacity-8:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(50%, rgba(0, 0, 0, .8)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .8) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.bkg-opacity-dir-leftToRight.has-bkg-img-opacity-8:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(25%, rgba(0, 0, 0, .8)), color-stop(50%, rgba(0, 0, 0, .8)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .8) 25%, rgba(0, 0, 0, .8) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.has-bkg-img-opacity-9:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(50%, rgba(0, 0, 0, .9)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .9) 50%, rgba(255, 0, 0, 0))
    }
}

@media (min-width:769px) {
    .hero-banner.bkg-opacity-dir-leftToRight.has-bkg-img-opacity-9:before {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .2)), color-stop(25%, rgba(0, 0, 0, .9)), color-stop(50%, rgba(0, 0, 0, .9)), to(rgba(255, 0, 0, 0)));
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .9) 25%, rgba(0, 0, 0, .9) 50%, rgba(255, 0, 0, 0))
    }
}

.hero-banner .container>.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: wrap;
    flex-flow: wrap
}

.hero-banner .mktoFormBox {
    background: #fff;
    padding: 50px 10%
}

.pull-quote {
    text-align: center;
    font-size: 24px;
    line-height: 36px
}

.pull-quote img {
    width: 56px
}

.pull-quote img.pull-quote-logo {
    width: 120px
}

.pull-quote P {
    max-width: 800px;
    margin: 22px auto 0;
    padding-bottom: 0;
    font-style: italic
}

.pull-quote p:after {
    content: ".";
    display: block;
    font-size: 0;
    height: 1px;
    border-bottom: 1px solid #2C83EC;
    width: 54px;
    margin: 32px auto 16px
}

.info-box,
.pricing-box {
    padding: 0 16px;
    margin-bottom: 36px
}

@media (min-width:769px) {
    .info-box,
    .pricing-box {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex
    }
}

.info-box>a>h3,
.marketo-subscribe-blog body.page-template-events .event-excerpts .info-box>a>h4,
.marketo-subscribe-blog body.page-template-events .event-excerpts .pricing-box>a>h4,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .info-box>a>h4,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .pricing-box>a>h4,
.pricing-box>a>h3,
body.page-template-events .event-excerpts .info-box>a>h2,
body.page-template-events .event-excerpts .marketo-subscribe-blog .info-box>a>h4,
body.page-template-events .event-excerpts .marketo-subscribe-blog .pricing-box>a>h4,
body.page-template-events .event-excerpts .pricing-box>a>h2,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .info-box>a>h2,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .info-box>a>h4,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .pricing-box>a>h4,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .pricing-box>a>h2 {
    margin-bottom: 20px
}

.info-box h4,
.pricing-box h4 {
    font-size: 24px;
    margin: 4px 0;
    line-height: 30px
}

@media (max-width:769px) {
    .info-box h4,
    .pricing-box h4 {
        font-size: 18px
    }
}

.emphasized.pricing-box>a,
.emphasized.pricing-box>div,
.info-box.emphasized>a,
.info-box.emphasized>div {
    border: 1px solid #cbcbcb
}

.info-box>a,
.info-box>div,
.pricing-box>a,
.pricing-box>div {
    width: 100%;
    position: relative;
    display: block;
    color: #000;
    background: #fff;
    -webkit-box-shadow: 0 2px 14px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, .12);
    border-radius: 4px
}

.info-box[class*=border-color]>a,
.pricing-box[class*=border-color]>a {
    border-width: 5px;
    border-style: solid;
    border-right: none;
    border-bottom: none
}

@media (min-width:769px) {
    .info-box[class*=border-color]>a,
    .pricing-box[class*=border-color]>a {
        border-left: none
    }
}

@media (max-width:769px) {
    .info-box[class*=border-color]>a,
    .pricing-box[class*=border-color]>a {
        border-top: none
    }
}

.info-box[class*=border-color-purple]>a,
.pricing-box[class*=border-color-purple]>a {
    border-color: #4e0e77
}

.info-box[class*=border-color-pink]>a,
.pricing-box[class*=border-color-pink]>a {
    border-color: #efa190
}

.info-box[class*=border-color-light-blue]>a,
.pricing-box[class*=border-color-light-blue]>a {
    border-color: #87b0c8
}

.info-box[class*=border-color-green]>a,
.pricing-box[class*=border-color-green]>a {
    border-color: #3ab482
}

.info-box[class*=border-color-red]>a,
.pricing-box[class*=border-color-red]>a {
    border-color: #dc3840
}

@media (min-width:769px) {
    .content-tabs {
        margin-bottom: -35px
    }
}

@media (max-width:769px) {
    .content-tabs {
        border-top: 2px solid #cbcbcb
    }
}

.content-tabs>.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap
}

.content-tabs .info-box,
.content-tabs .pricing-box {
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

@media (max-width:769px) {
    .content-tabs .info-box,
    .content-tabs .pricing-box {
        margin-bottom: 0
    }
}

.content-tabs .info-box>a:after,
.content-tabs .pricing-box>a:after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.content-tabs .info-box>a:hover:after,
.content-tabs .pricing-box>a:hover:after {
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
    -webkit-animation: arrowanimation .8s infinite;
    animation: arrowanimation .8s infinite
}

.content-tabs .info-box>a.scrollTo:hover:after,
.content-tabs .pricing-box>a.scrollTo:hover:after {
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
    -webkit-animation: arrow-vertical-animation .8s infinite;
    animation: arrow-vertical-animation .8s infinite
}

@media (max-width:769px) {
    .content-tabs .info-box:after,
    .content-tabs .pricing-box:after {
        height: 2px;
        content: "";
        left: -15px;
        right: -15px;
        bottom: 0;
        position: absolute;
        background: #cbcbcb;
        z-index: 1
    }
}

.content-tabs .info-box>div,
.content-tabs .pricing-box>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.content-tabs .info-box>div>:first-child:not(img),
.content-tabs .pricing-box>div>:first-child:not(img) {
    margin-top: 30px
}

@media (max-width:769px) {
    .content-tabs .info-box>div>:first-child:not(img),
    .content-tabs .pricing-box>div>:first-child:not(img) {
        margin-top: 0
    }
}

@media (max-width:769px) {
    .content-tabs .info-box>div,
    .content-tabs .pricing-box>div {
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding-bottom: 27px
    }
}

@media (min-width:769px) {
    .content-tabs .info-box>div,
    .content-tabs .pricing-box>div {
        border: 1px solid transparent;
        border-top: 6px solid transparent
    }
}

.content-tabs .info-box>a,
.content-tabs .info-box>div,
.content-tabs .pricing-box>a,
.content-tabs .pricing-box>div {
    padding: 27px 27px 92px;
    position: relative;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    color: #000!important
}

@media (max-width:769px) {
    .content-tabs .info-box>a,
    .content-tabs .info-box>div,
    .content-tabs .pricing-box>a,
    .content-tabs .pricing-box>div {
        padding: 17px 16px
    }
}

.content-tabs .info-box>a:after,
.content-tabs .info-box>div:after,
.content-tabs .pricing-box>a:after,
.content-tabs .pricing-box>div:after {
    width: 15px;
    height: 9px;
    background: url;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 39px;
    left: calc(50% - 8px);
    content: ".";
    font-size: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media (max-width:769px) {
    .content-tabs .info-box>a:after,
    .content-tabs .info-box>div:after,
    .content-tabs .pricing-box>a:after,
    .content-tabs .pricing-box>div:after {
        bottom: auto;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 20px;
        left: auto;
        width: 16px;
        height: 9px
    }
}

.content-tabs .info-box>a>img,
.content-tabs .info-box>div>img,
.content-tabs .pricing-box>a>img,
.content-tabs .pricing-box>div>img {
    height: 80px;
    width: auto
}

.content-tabs .clicked.pricing-box,
.content-tabs .info-box.clicked {
    cursor: default
}

.content-tabs .clicked.pricing-box:after,
.content-tabs .info-box.clicked:after {
    display: block
}

.content-tabs .clicked.pricing-box>div,
.content-tabs .info-box.clicked>div {
    -webkit-box-shadow: none;
    box-shadow: none
}

@media (min-width:769px) {
    .content-tabs .clicked.pricing-box>div,
    .content-tabs .info-box.clicked>div {
        border: 1px solid #cbcbcb;
        border-top: 6px solid #2C83EC;
        border-bottom: 1px solid transparent;
        border-radius: 4px 4px 0 0
    }
}

@media (max-width:769px) {
    .content-tabs .clicked.pricing-box>div,
    .content-tabs .info-box.clicked>div {
        border-bottom: none
    }
}

.content-tabs .clicked.pricing-box>div:after,
.content-tabs .info-box.clicked>div:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}

.content-tabs .info-box span,
.content-tabs .pricing-box span {
    font-size: 24px;
    line-height: 35px
}

@media (max-width:769px) {
    .content-tabs .info-box span,
    .content-tabs .pricing-box span {
        margin-top: 0!important;
        padding-right: 90px;
        text-align: left;
        font-weight: 700;
        font-size: 18px;
        line-height: 30px
    }
}

.content-tabs .info-box h4+span,
.content-tabs .pricing-box h4+span {
    display: none;
    font-size: 18px;
    line-height: 30px
}

@media (min-width:769px) {
    .content-tabs .info-box h4+span,
    .content-tabs .pricing-box h4+span {
        display: block
    }
}

.content-tabs .info-box img.open-content-tab,
.content-tabs .pricing-box img.open-content-tab {
    width: 28px;
    position: absolute;
    bottom: 18px;
    left: calc(50% - 14px)
}

.content-tabs .info-box:not(.clicked):hover>div:after,
.content-tabs .pricing-box:not(.clicked):hover>div:after {
    bottom: 20px;
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
    -webkit-animation: infobox-arrow-animation .8s infinite;
    animation: infobox-arrow-animation .8s infinite
}

@-webkit-keyframes infobox-arrow-animation {
    0%,
    to {
        bottom: 39px
    }
    50% {
        bottom: 30px
    }
}

.content-tabs .cta.pricing-box>a:after,
.content-tabs .info-box.cta>a:after {
    content: none
}

.content-tabs .cta.pricing-box>a .cta,
.content-tabs .info-box.cta>a .cta {
    position: absolute;
    bottom: 18px;
    font-weight: 600;
    border-bottom: 1px solid #2C83EC;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%)
}

.content-tabs .info-box.simplified h4,
.content-tabs .simplified.pricing-box h4 {
    line-height: 35px
}

.content-tabs .info-box.simplified h4 strong,
.content-tabs .simplified.pricing-box h4 strong {
    font-weight: 400
}

.content-tabs .currentTabDetails {
    display: none
}

.content-tabs .content-tab-details {
    text-align: left
}

.content-tabs .content-tab-details>.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.content-tabs .content-tab-details>.row>div {
    padding-left: 30px!important;
    padding-right: 30px!important
}

@media (max-width:769px) {
    .content-tabs .content-tab-details p {
        margin-bottom: 15px
    }
}

.content-tabs .content-tab-details .animarrow,
.content-tabs .content-tab-details .animated-arrow,
.content-tabs .content-tab-details header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
.content-tabs .content-tab-details header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a,
header#main-nav-bar .main-menu nav.menu-items .content-tabs .content-tab-details ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li .content-tabs .content-tab-details a {
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    text-decoration: underline
}

@media (max-width:769px) {
    .content-tabs .content-tab-details .animarrow,
    .content-tabs .content-tab-details .animated-arrow,
    .content-tabs .content-tab-details header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
    .content-tabs .content-tab-details header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a,
    header#main-nav-bar .main-menu nav.menu-items .content-tabs .content-tab-details ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a,
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li .content-tabs .content-tab-details a {
        display: inline-block;
        max-width: 90%
    }
}

.content-tabs .content-tab-details .animarrow:after,
.content-tabs .content-tab-details .animated-arrow:after,
.content-tabs .content-tab-details header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a:after,
.content-tabs .content-tab-details header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li a:after,
header#main-nav-bar .main-menu nav.menu-items .content-tabs .content-tab-details ul#menu-top-main-menu>li>ul.sub-menu>li:not(.menu-item-has-children)>a:after,
header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li>ul.sub-menu li.menu-item-has-children ul.sub-menu li .content-tabs .content-tab-details a:after {
    background-position-y: 3px
}

.content-tabs .content-tab-details .media img {
    max-height: 400px
}

.content-tabs .content-tab-details>div {
    clear: both;
    overflow: hidden;
    padding: 40px 0 0
}

@media (max-width:769px) {
    .content-tabs .content-tab-details>div {
        background: #f3f3f3
    }
}

@media (min-width:992px) {
    .content-tabs .content-tab-details>div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

@media (min-width:769px) {
    .content-tabs .content-tab-details>div {
        padding-top: 38px;
        padding-bottom: 18px
    }
}

.content-tabs .content-tab-details .marketo-subscribe-blog body.page-template-events .event-excerpts h4,
.content-tabs .content-tab-details .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4,
.content-tabs .content-tab-details body.page-template-events .event-excerpts .marketo-subscribe-blog h4,
.content-tabs .content-tab-details body.page-template-events .event-excerpts h2,
.content-tabs .content-tab-details body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4,
.content-tabs .content-tab-details body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2,
.content-tabs .content-tab-details h3,
.marketo-subscribe-blog body.page-template-events .event-excerpts .content-tabs .content-tab-details h4,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .content-tabs .content-tab-details h4,
body.page-template-events .event-excerpts .content-tabs .content-tab-details h2,
body.page-template-events .event-excerpts .marketo-subscribe-blog .content-tabs .content-tab-details h4,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .content-tabs .content-tab-details h2,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .content-tabs .content-tab-details h4 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 25px
}

@media (max-width:769px) {
    .content-tabs .content-tab-details .marketo-subscribe-blog body.page-template-events .event-excerpts h4,
    .content-tabs .content-tab-details .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4,
    .content-tabs .content-tab-details body.page-template-events .event-excerpts .marketo-subscribe-blog h4,
    .content-tabs .content-tab-details body.page-template-events .event-excerpts h2,
    .content-tabs .content-tab-details body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4,
    .content-tabs .content-tab-details body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2,
    .content-tabs .content-tab-details h3,
    .marketo-subscribe-blog body.page-template-events .event-excerpts .content-tabs .content-tab-details h4,
    .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .content-tabs .content-tab-details h4,
    body.page-template-events .event-excerpts .content-tabs .content-tab-details h2,
    body.page-template-events .event-excerpts .marketo-subscribe-blog .content-tabs .content-tab-details h4,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .content-tabs .content-tab-details h2,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .content-tabs .content-tab-details h4 {
        margin-top: 40px;
        margin-bottom: 15px
    }
}

.content-tabs .content-tab-details p.subtitle {
    margin-top: -25px;
    margin-bottom: 30px
}

.content-tabs .content-tab-details .copy {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 0
}

@media (min-width:769px) {
    .content-tabs .content-tab-details .copy {
        float: left;
        display: block;
        width: calc(45% - 18px);
        padding: 18px 0 12px 24px
    }
}

.content-tabs .content-tab-details .copy .marketo-subscribe-blog body.page-template-events .event-excerpts h4,
.content-tabs .content-tab-details .copy .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4,
.content-tabs .content-tab-details .copy body.page-template-events .event-excerpts .marketo-subscribe-blog h4,
.content-tabs .content-tab-details .copy body.page-template-events .event-excerpts h2,
.content-tabs .content-tab-details .copy body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4,
.content-tabs .content-tab-details .copy body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2,
.content-tabs .content-tab-details .copy h3,
.marketo-subscribe-blog body.page-template-events .event-excerpts .content-tabs .content-tab-details .copy h4,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .content-tabs .content-tab-details .copy h4,
body.page-template-events .event-excerpts .content-tabs .content-tab-details .copy h2,
body.page-template-events .event-excerpts .marketo-subscribe-blog .content-tabs .content-tab-details .copy h4,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .content-tabs .content-tab-details .copy h2,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .content-tabs .content-tab-details .copy h4 {
    font-weight: 600
}

.content-tabs .content-tab-details .copy span {
    display: block;
    font-size: 24px;
    margin: 12px 0 18px
}

@media (max-width:769px) {
    .content-tabs .content-tab-details .copy span {
        font-weight: 700
    }
}

.content-tabs .content-tab-details .copy p {
    margin: 0;
    padding: 0;
    width: 100%
}

.content-tabs .content-tab-details .details-img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%
}

@media (min-width:769px) {
    .content-tabs .content-tab-details .details-img {
        float: right;
        display: block;
        width: calc(54% - 18px)
    }
}

.content-tabs .content-tab-details hr {
    width: 100%;
    margin-top: 70px;
    margin-bottom: 28px
}

@media (max-width:769px) {
    .content-tabs .content-tab-details hr {
        display: none
    }
}

.content-tabs.no-details {
    border-top: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap
}

@media (max-width:769px) {
    .content-tabs.no-details .info-box,
    .content-tabs.no-details .pricing-box {
        margin-bottom: 20px
    }
}

@media (max-width:769px) {
    .content-tabs.no-details .info-box>a,
    .content-tabs.no-details .pricing-box>a {
        text-align: left
    }
    .content-tabs.no-details .info-box>a>*,
    .content-tabs.no-details .pricing-box>a>* {
        padding-right: 30px
    }
    .content-tabs.no-details .info-box>a .marketo-subscribe-blog body.page-template-events .event-excerpts h4,
    .content-tabs.no-details .info-box>a .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4,
    .content-tabs.no-details .info-box>a .marketo-subscribe-blog h4,
    .content-tabs.no-details .info-box>a body.page-template-events .event-excerpts .marketo-subscribe-blog h4,
    .content-tabs.no-details .info-box>a body.page-template-events .event-excerpts h2,
    .content-tabs.no-details .info-box>a body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4,
    .content-tabs.no-details .info-box>a body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2,
    .content-tabs.no-details .info-box>a h2,
    .content-tabs.no-details .info-box>a h3,
    .content-tabs.no-details .info-box>a h4,
    .content-tabs.no-details .pricing-box>a .marketo-subscribe-blog body.page-template-events .event-excerpts h4,
    .content-tabs.no-details .pricing-box>a .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4,
    .content-tabs.no-details .pricing-box>a .marketo-subscribe-blog h4,
    .content-tabs.no-details .pricing-box>a body.page-template-events .event-excerpts .marketo-subscribe-blog h4,
    .content-tabs.no-details .pricing-box>a body.page-template-events .event-excerpts h2,
    .content-tabs.no-details .pricing-box>a body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4,
    .content-tabs.no-details .pricing-box>a body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2,
    .content-tabs.no-details .pricing-box>a h2,
    .content-tabs.no-details .pricing-box>a h3,
    .content-tabs.no-details .pricing-box>a h4,
    .marketo-subscribe-blog .content-tabs.no-details .info-box>a h4,
    .marketo-subscribe-blog .content-tabs.no-details .pricing-box>a h4,
    .marketo-subscribe-blog body.page-template-events .event-excerpts .content-tabs.no-details .info-box>a h4,
    .marketo-subscribe-blog body.page-template-events .event-excerpts .content-tabs.no-details .pricing-box>a h4,
    .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .content-tabs.no-details .info-box>a h4,
    .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .content-tabs.no-details .pricing-box>a h4,
    body.page-template-events .event-excerpts .content-tabs.no-details .info-box>a h2,
    body.page-template-events .event-excerpts .content-tabs.no-details .pricing-box>a h2,
    body.page-template-events .event-excerpts .marketo-subscribe-blog .content-tabs.no-details .info-box>a h4,
    body.page-template-events .event-excerpts .marketo-subscribe-blog .content-tabs.no-details .pricing-box>a h4,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .content-tabs.no-details .info-box>a h2,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .content-tabs.no-details .pricing-box>a h2,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .content-tabs.no-details .info-box>a h4,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .content-tabs.no-details .pricing-box>a h4 {
        font-size: 18px;
        line-height: 30px;
        margin: 5px 0
    }
}

.content-tabs.no-details .info-box>a p,
.content-tabs.no-details .pricing-box>a p {
    margin-bottom: 0
}

.content-tabs.no-details .info-box>a:after,
.content-tabs.no-details .pricing-box>a:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

@media (max-width:769px) {
    .content-tabs.no-details .info-box>a>:not(h2):not(h3):not(h4),
    .content-tabs.no-details .pricing-box>a>:not(h2):not(h3):not(h4) {
        display: none
    }
}

.content-tabs.no-details .info-box>a.scrollTo:after,
.content-tabs.no-details .pricing-box>a.scrollTo:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.content-tabs.no-details .info-box:after,
.content-tabs.no-details .pricing-box:after {
    content: none
}

.link-boxes {
    margin-bottom: -36px!important
}

.marketo-subscribe-blog body.page-template-events .event-excerpts .page-sidebar h4,
.marketo-subscribe-blog body.page-template-events .event-excerpts .page-sidebar h4.widget-title,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .page-sidebar h4,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .page-sidebar h4.widget-title,
.page-sidebar .marketo-subscribe-blog body.page-template-events .event-excerpts h4,
.page-sidebar .marketo-subscribe-blog body.page-template-events .event-excerpts h4.widget-title,
.page-sidebar .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4,
.page-sidebar .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4.widget-title,
.page-sidebar body.page-template-events .event-excerpts .marketo-subscribe-blog h4,
.page-sidebar body.page-template-events .event-excerpts .marketo-subscribe-blog h4.widget-title,
.page-sidebar body.page-template-events .event-excerpts h2,
.page-sidebar body.page-template-events .event-excerpts h2.widget-title,
.page-sidebar body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4,
.page-sidebar body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4.widget-title,
.page-sidebar body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2,
.page-sidebar body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2.widget-title,
.page-sidebar h3,
.page-sidebar h3.widget-title,
body.page-template-events .event-excerpts .marketo-subscribe-blog .page-sidebar h4,
body.page-template-events .event-excerpts .marketo-subscribe-blog .page-sidebar h4.widget-title,
body.page-template-events .event-excerpts .page-sidebar h2,
body.page-template-events .event-excerpts .page-sidebar h2.widget-title,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .page-sidebar h4,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .page-sidebar h4.widget-title,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .page-sidebar h2,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .page-sidebar h2.widget-title {
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 8px;
    font-weight: 600
}

.page-sidebar a.entry-link {
    position: relative;
    display: block;
    padding: 16px 0;
    color: #000;
    width: 100%;
    font-weight: 600;
    border-bottom: 1px solid #2C83EC
}

.page-sidebar a.entry-link:after {
    display: block;
    position: absolute;
    content: "";
    right: 0;
    top: 16px;
    font-weight: 600;
    width: 20px;
    height: 32px;
    background-image: url();
    background-repeat: no-repeat;
    background-position: 50%
}

.page-sidebar a.entry-link.border-top {
    border-top: 1px solid #2C83EC
}

.page-sidebar .textwidget:not(.custom-html-widget) {
    position: relative;
    padding: 18px 0 18px 76px;
    border-bottom: 1px solid #2C83EC
}

.page-sidebar .textwidget:not(.custom-html-widget):before {
    display: block;
    content: ".";
    font-size: 0;
    width: 65px;
    height: 65px;
    background: url();
    position: absolute;
    left: 0;
    top: 12px
}

.page-sidebar .textwidget:not(.custom-html-widget) a {
    padding: 0;
    margin: 0;
    border: none;
    color: #000
}

.page-sidebar .textwidget:not(.custom-html-widget) a:after {
    display: none
}

.page-sidebar .textwidget:not(.custom-html-widget) a.cta {
    font-weight: 600;
    display: block;
    margin-top: 8px;
    font-size: 16px
}

.page-template-default .page-sidebar {
    position: relative;
    padding-top: 40px
}


/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */

.fancybox-image,
.fancybox-inner,
.fancybox-nav,
.fancybox-nav span,
.fancybox-outer,
.fancybox-skin,
.fancybox-tmp,
.fancybox-wrap,
.fancybox-wrap iframe,
.fancybox-wrap object {
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    vertical-align: top
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020
}

.fancybox-skin {
    position: relative;
    background: #f9f9f9;
    color: #444;
    text-shadow: none;
    border-radius: 4px
}

.fancybox-opened {
    z-index: 8030
}

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .5)
}

.fancybox-inner,
.fancybox-outer {
    position: relative
}

.fancybox-inner {
    overflow: hidden
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scrolling: touch
}

.fancybox-error {
    color: #444;
    font: 14px/20px Arial, Helvetica Neue, Helvetica, sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap
}

.fancybox-iframe,
.fancybox-image {
    display: block;
    width: 100%;
    height: 100%
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%
}

#fancybox-loading,
.fancybox-close,
.fancybox-next span,
.fancybox-prev span {
    background-image: url("/images/fancybox_sprite.png")
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background-position: 0 -108px;
    opacity: .8;
    cursor: pointer;
    z-index: 8060
}

#fancybox-loading div {
    width: 44px;
    height: 44px;
    background: url() 50% no-repeat
}

.fancybox-close {
    position: absolute;
    cursor: pointer;
    z-index: 8040;
    background: #fff;
    border-radius: 50%;
    width: 68px;
    height: 68px;
    top: -21px;
    right: -27px
}

.fancybox-close:after,
.fancybox-close:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 25px;
    background: #000;
    top: 30%;
    left: 50%
}

.fancybox-close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.fancybox-close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.fancybox-type-iframe .fancybox-close {
    width: 45px;
    height: 45px;
    top: -23px;
    right: -23px
}

.fancybox-type-iframe .fancybox-close:after,
.fancybox-type-iframe .fancybox-close:before {
    top: 10px;
    left: 21px
}

.fancybox-nav {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    background: transparent url();
    -webkit-tap-highlight-color: transparent;
    z-index: 8040
}

.fancybox-prev {
    left: 0
}

.fancybox-next {
    right: 0
}

.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 8040;
    visibility: hidden
}

.fancybox-prev span {
    left: 10px;
    background-position: 0 -36px
}

.fancybox-next span {
    right: 10px;
    background-position: 0 -72px
}

.fancybox-nav:hover span {
    visibility: visible
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible!important
}

.fancybox-lock {
    overflow: visible!important;
    width: auto
}

.fancybox-lock body {
    overflow: hidden!important
}

.fancybox-lock-test {
    overflow-y: hidden!important
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: url("/images/fancybox_overlay.png")
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll
}

.fancybox-title {
    visibility: hidden;
    font: normal 13px/20px Arial, Helvetica Neue, Helvetica, sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8050
}

.fancybox-opened .fancybox-title {
    visibility: visible
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center
}

.fancybox-title-float-wrap .child {
    display: inline-block;
    margin-right: -100%;
    padding: 2px 20px;
    background: transparent;
    background: rgba(0, 0, 0, .8);
    border-radius: 15px;
    text-shadow: 0 1px 2px #222;
    color: #fff;
    font-weight: 700;
    line-height: 24px;
    white-space: nowrap
}

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #fff
}

.fancybox-title-inside-wrap {
    padding-top: 10px
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    background: #000;
    background: rgba(0, 0, 0, .8)
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
    #fancybox-loading,
    .fancybox-next span,
    .fancybox-prev span {
        background-image: url();
        background-size: 44px 152px
    }
    #fancybox-loading div {
        background-image: url();
        background-size: 24px 24px
    }
    .fancybox-close {
        width: 60px;
        height: 60px;
        right: -15px
    }
}

.fancybox-skin {
    background: #fff
}

.excerpt-grid-block.featured>div.row>div:first-of-type .fancybox-title-float-wrap .child .cta,
.fancybox-title-float-wrap .child .action-btn,
.fancybox-title-float-wrap .child .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
.fancybox-title-float-wrap .child .search-controls .ais-clear-all--link,
.fancybox-title-float-wrap .child body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
.search-controls .fancybox-title-float-wrap .child .ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .fancybox-title-float-wrap .child .mktoButton {
    text-shadow: none;
    font-family: "Arial";
    font-size: 18px
}

@media (max-width:769px) {
    .fancybox-title-float-wrap {
        bottom: -60px
    }
}

.IconsContainer {
    width: 3000px;
    height: 460px;
    margin: 1.2vw 0 9.4vw;
    position: relative;
    left: 50px
}

.Icon {
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, .1), 0 3px 10px rgba(0, 0, 0, .07);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1), 0 3px 10px rgba(0, 0, 0, .07)
}

.Icon,
.Icon span {
    position: absolute;
    will-change: transform, opacity
}

.Icon span {
    left: 50%;
    bottom: -40px;
    padding: 5px 12px;
    background: #fff;
    -webkit-box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07);
    box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07);
    border-radius: 50px;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    color: #566b78;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px);
    opacity: 0;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    -webkit-transition-duration: .25s;
    transition-duration: .25s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.Icon:hover {
    z-index: 9999
}

.Icon:hover span {
    opacity: .9;
    -webkit-transform: translate(-50%);
    transform: translate(-50%)
}

.Header-title {
    text-align: center;
    margin: 0;
    padding: .2em .2em 2em
}

.Header-subTitle {
    color: #7795f8
}

@media (min-width:670px) {
    .Header-subTitle {
        display: block
    }
}

.Header-intro {
    text-align: center;
    padding-bottom: 40px!important
}

.Icon {
    background-size: 1064px 912px;
    background-image: url()
}

.Icon-img0 {
    background-position: -153px -1px
}

.Icon-img1 {
    background-position: -609px -457px
}

.Icon-img2 {
    background-position: -1px -153px
}

.Icon-img3 {
    background-position: -305px -1px
}

.Icon-img4 {
    background-position: -153px -153px
}

.Icon-img5 {
    background-position: -305px -153px
}

.Icon-img6 {
    background-position: -1px -305px
}

.Icon-img7 {
    background-position: -153px -305px
}

.Icon-img8 {
    background-position: -305px -305px
}

.Icon-img9 {
    background-position: -457px -1px
}

.Icon-img10 {
    background-position: -457px -153px
}

.Icon-img11 {
    background-position: -457px -305px
}

.Icon-img12 {
    background-position: -1px -457px
}

.Icon-img13 {
    background-position: -153px -457px
}

.Icon-img14 {
    background-position: -305px -457px
}

.Icon-img15 {
    background-position: -457px -457px
}

.Icon-img16 {
    background-position: -609px -1px
}

.Icon-img17 {
    background-position: -609px -153px
}

.Icon-img18 {
    background-position: -609px -305px
}

.Icon-img19 {
    background-position: -1px -1px
}

.Icon-img20 {
    background-position: -1px -609px
}

.Icon-img21 {
    background-position: -153px -609px
}

.Icon-img22 {
    background-position: -457px -609px
}

.Icon-img23 {
    background-position: -305px -609px
}

.Icon-img24 {
    background-position: -609px -609px
}

.Icon-img25 {
    background-position: -761px -1px
}

.Icon-img26 {
    background-position: -761px -153px
}

.Icon-img27 {
    background-position: -761px -305px
}

.Icon-img28 {
    background-position: -761px -457px
}

.Icon-img29 {
    background-position: -761px -609px
}

.Icon-img30 {
    background-position: -1px -761px
}

.Icon-img31 {
    background-position: -153px -761px
}

.Icon-img32 {
    background-position: -305px -761px
}

.Icon-img33 {
    background-position: -457px -761px
}

.Icon-img34 {
    background-position: -609px -761px
}

.Icon-img35 {
    background-position: -761px -761px
}

.Icon-img36 {
    background-position: -913px -1px
}

.Icon-img37 {
    background-position: -913px -153px
}

.Icon-img38 {
    background-position: -913px -305px
}

.loading,
.loading-vue-component {
    margin: 32px auto;
    width: 70px;
    height: 30px;
    text-align: center;
    font-size: 10px
}

.loading-vue-component>div,
.loading>div {
    background-color: #000;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: stretchdelay .7s infinite ease-in-out;
    animation: stretchdelay .7s infinite ease-in-out
}

.loading-vue-component .circ2,
.loading .circ2 {
    -webkit-animation-delay: -.6s;
    animation-delay: -.6s
}

.loading-vue-component .circ3,
.loading .circ3 {
    -webkit-animation-delay: -.5s;
    animation-delay: -.5s
}

.loading-vue-component .circ4,
.loading .circ4 {
    -webkit-animation-delay: -.4s;
    animation-delay: -.4s
}

.loading-vue-component .circ5,
.loading .circ5 {
    -webkit-animation-delay: -.3s;
    animation-delay: -.3s
}

@-webkit-keyframes stretchdelay {
    0%,
    40%,
    to {
        -webkit-transform: translateY(-10px)
    }
    20% {
        -webkit-transform: translateY(-20px)
    }
}

@keyframes stretchdelay {
    0%,
    40%,
    to {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px)
    }
    20% {
        transform: translateY(-20px);
        -webkit-transform: translateY(-20px)
    }
}

#fancybox-loading div {
    position: unset;
    top: unset;
    left: unset;
    width: unset;
    height: unset;
    background: none
}

.prompt-and-answers {
    margin-top: 56px;
    margin-bottom: 56px
}

.prompt-and-answers .answers {
    margin-top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap
}

.prompt-and-answers .answers>div {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.prompt-and-answers .answers .prompt {
    position: relative
}

.prompt-and-answers .answers .prompt .border {
    background-color: #2C83EC;
    top: 0;
    left: 15px;
    height: 2px;
    width: 96px
}

@media (max-width:769px) {
    .prompt-and-answers .answers .prompt .border {
        width: 100%
    }
}

.prompt-and-answers .answers .prompt>div {
    height: 100%;
    width: 100%
}

.prompt-and-answers .answers .prompt>div>h4 {
    font-size: 74px;
    line-height: 78px;
    color: #2C83EC;
    font-family: "Arial";
    font-weight: 800;
    letter-spacing: -3px
}

@media (max-width:769px) {
    .prompt-and-answers .answers .prompt>div>h4 {
        text-align: center;
        font-size: 25vw
    }
}

.prompt-and-answers .answers .info-box,
.prompt-and-answers .answers .pricing-box {
    padding-top: 18px;
    margin: 0
}

@media (min-width:992px) {
    .prompt-and-answers .answers .info-box,
    .prompt-and-answers .answers .pricing-box {
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 18px
    }
}

.prompt-and-answers .answers .info-box>a,
.prompt-and-answers .answers .pricing-box>a {
    padding: 10px 36px 10px 18px;
    font-size: 20px
}

.prompt-and-answers .answers .info-box>a:after,
.prompt-and-answers .answers .pricing-box>a:after {
    top: calc(50% - 6px);
    left: 91%;
    bottom: auto;
    width: 20px;
    height: 13px;
    background-size: cover
}

.icon-grid {
    margin-top: 96px;
    margin-bottom: 56px
}

.icon-grid>.icon-grid-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media (min-width:992px) {
    .icon-grid>.icon-grid-container {
        margin-left: -7%
    }
}

.icon-grid>.icon-grid-container>div {
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.icon-grid>.icon-grid-container>div>a {
    display: block;
    margin: 0 auto;
    color: #000
}

.icon-grid>.icon-grid-container>div>a div.padding {
    -webkit-box-shadow: 0 2px 14px 0 transparent;
    box-shadow: 0 2px 14px 0 transparent;
    border-radius: 50%;
    height: 170px;
    width: 170px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}

.icon-grid>.icon-grid-container>div>a div.padding img {
    height: auto;
    margin: 27px auto 0
}

.icon-grid>.icon-grid-container>div>a:hover>div.padding {
    -webkit-box-shadow: 0 2px 14px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, .12)
}

.icon-grid>.icon-grid-container h5 {
    font-size: 22px
}

#nprogress {
    pointer-events: none
}

#nprogress .bar {
    background: #2C83EC;
    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px
}

#nprogress .peg {
    display: block;
    position: absolute;
    right: 0;
    width: 100px;
    height: 100%;
    -webkit-box-shadow: 0 0 10px #2C83EC, 0 0 5px #2C83EC;
    box-shadow: 0 0 10px #2C83EC, 0 0 5px #2C83EC;
    opacity: 1;
    -webkit-transform: rotate(3deg) translateY(-4px);
    transform: rotate(3deg) translateY(-4px)
}

#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: 15px;
    right: 15px
}

#nprogress .spinner-icon {
    width: 18px;
    height: 18px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid transparent;
    border-top-color: #29d;
    border-left-color: #29d;
    border-radius: 50%;
    -webkit-animation: nprogress-spinner .4s linear infinite;
    animation: nprogress-spinner .4s linear infinite
}

.nprogress-custom-parent {
    overflow: hidden;
    position: relative
}

.nprogress-custom-parent #nprogress .bar,
.nprogress-custom-parent #nprogress .spinner {
    position: absolute
}

@-webkit-keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(1turn)
    }
}

@keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.profile {
    margin-bottom: 50px
}

.profile .photo {
    border-radius: 50%;
    border: 1px solid #000;
    padding: 5px;
    margin-bottom: 10px;
    width: 175px;
    height: 175px;
    margin: 0 auto 20px
}

.profile .photo div {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%
}

.profile .photo div img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    width: 100%;
    height: 100%
}

.profile p {
    padding: 0;
    margin: 0
}

.profile .name {
    font-size: 23px;
    font-weight: 600
}

.profile .role {
    font-size: 20px;
    line-height: 20px
}

body.embedded-pdf footer.site-footer {
    display: none
}

.embeddedPdf.pdfobject-container {
    position: fixed;
    top: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2
}

@media (min-width:769px) {
    .embeddedPdf.pdfobject-container {
        top: 80px
    }
}

.gallery-carousel-slider {
    visibility: hidden;
    margin: 100px 0
}

.gallery-carousel-slider .slick-slide {
    height: inherit
}

.gallery-carousel-slider .slick-slide>div {
    max-width: 870px;
    margin: 0 5vw;
    height: 400px;
    border: 1px solid #000;
    border-radius: 5px;
    overflow: hidden
}

@media (max-width:769px) {
    .gallery-carousel-slider .slick-slide>div {
        height: 200px
    }
}

.gallery-carousel-slider .slick-slide>div img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%
}

.gallery-carousel-slider.slick-initialized {
    visibility: visible
}

.gallery-carousel-slider .slick-dots {
    bottom: -70px
}

.gallery-carousel-slider .slick-dots li button:before {
    background: transparent;
    border-radius: 50%;
    border: 1px solid #000
}

.gallery-carousel-slider .slick-dots li.slick-active button:before {
    background: #fff
}

.gallery-carousel-slider.slick-dotted.slick-slider {
    margin-bottom: 100px
}

body:not(.page-template-partner-form) .form-group {
    position: relative
}

#trd-articleslideshow {
    margin-top: 40px
}

#trd-articleslideshow .trd-show-container span.trd-show-title-text {
    line-height: 1!important
}

#trd-articleslideshow .trd-show-container span.trd-show-title-text-inner {
    font-size: 35px!important;
    line-height: 45px!important
}

#trd-articleslideshow .trd-show-container span.trd-show-title-text-inner strong {
    font-weight: inherit!important
}

#trd-articleslideshow .trd-show-container .trd-show-items {
    margin: 0!important;
    width: 100%!important;
    height: auto!important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

@media (max-width:769px) {
    #trd-articleslideshow .trd-show-container .trd-show-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto!important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

#trd-articleslideshow .trd-show-container .trd-show-items .trd-show-item {
    border-radius: .6vw!important;
    border: 1px solid #cbcbcb!important;
    position: relative!important;
    display: inline-block!important;
    width: 30%!important;
    left: inherit!important;
    top: inherit!important;
    height: auto!important
}

@media (max-width:769px) {
    #trd-articleslideshow .trd-show-container .trd-show-items .trd-show-item {
        width: 90%!important;
        position: relative!important;
        top: inherit!important;
        left: inherit!important;
        margin-bottom: 20px
    }
}

@media (max-width:769px) {
    #trd-articleslideshow .trd-show-container .trd-show-items .trd-show-item .trd-show-title-text {
        line-height: 52px
    }
}

#trd-articleslideshow .trd-show-container .trd-show-items .trd-show-item .trd-show-item-link,
#trd-articleslideshow .trd-show-container .trd-show-items .trd-show-item .trd-show-item-link img {
    width: 100%!important
}

#trd-articleslideshow .trd-show-container .trd-show-items .trd-show-item:hover:after {
    width: 100%;
    height: 6px;
    background: #2C83EC;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0
}

#trd-articleslideshow .trd-show-container .trd-show-items .trd-show-item .trd-show-descr-under {
    height: 130px!important;
    border-bottom: 6px solid transparent!important
}

#trd-articleslideshow .trd-show-container .trd-show-items .trd-show-item .trd-show-descr-under .trd-show-item-link-text {
    height: 100%!important;
    display: block
}

#trd-articleslideshow .trd-show-container .trd-show-items .trd-show-item .trd-show-descr-under .trd-show-item-link-text span.trd-show-text {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    display: block;
    margin: 0 14%;
    height: 95%!important;
    padding-top: 5%!important;
    font-family: "Arial"!important;
    font-size: 14px!important;
    font-weight: 400
}

#trd-articleslideshow .trd-show-container .trd-show-items .trd-show-item .trd-show-descr-under .trd-show-item-link-text span.trd-show-text:after {
    content: "Read More"!important;
    bottom: 9px!important;
    background-image: url()!important;
    background-size: 6px!important;
    background-position: 72px;
    right: -7px!important
}

#trd-exitintentbox #trd-exitintent-close {
    top: -22px!important
}

#trd-exitintentbox #trd-exitintent-close:after,
#trd-exitintentbox #trd-exitintent-close:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 25px;
    top: 30%;
    left: 50%
}

#trd-exitintentbox #trd-exitintent-close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

#trd-exitintentbox #trd-exitintent-close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#trd-exitintentbox #trd-exitintent-close:after,
#trd-exitintentbox #trd-exitintent-close:before {
    content: ""!important;
    background: #000;
    top: 23%!important;
    left: 51%;
    padding-left: 0!important
}

.unified-search {
    min-height: 530px;
    position: relative;
    background: #fff;
    z-index: 0;
    display: none
}

.unified-search .vertical-header {
    display: none
}

@media (min-width:769px) {
    .unified-search .vertical-header {
        display: block;
        top: 18vw
    }
}

.unified-search.open {
    display: block;
    z-index: 1
}

.resource-center {
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    position: relative;
    background: #fff;
    display: block
}

.resource-center.closed {
    display: none;
    z-index: 0
}

.resource-center .hero {
    margin-bottom: 26px
}

.resource-center .hero h1 {
    margin-bottom: 36px
}

.resource-center .hero .popular-searches {
    font-size: 18px
}

.resource-center .hero .popular-searches a:hover {
    text-shadow: 0 1px 0 #fff
}

.unified-search-fake-input {
    width: 90%;
    max-width: 850px;
    height: 55px;
    border-radius: 4px;
    background: url() no-repeat #fff;
    background-position: 14px;
    -webkit-box-shadow: 0 2px 14px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, .12);
    margin: 36px auto 12px;
    cursor: text;
    position: relative;
    margin-top: 5%;
    margin-bottom: 20px;
    padding: 0 50px;
    font-size: 18px;
    padding: 0 39px 0 45px;
    color: #000
}

.unified-search-fake-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0
}

.unified-search-fake-input::-webkit-input-placeholder {
    color: #b8b8b8
}

.unified-search-fake-input:-ms-input-placeholder,
.unified-search-fake-input::-ms-input-placeholder {
    color: #b8b8b8
}

.unified-search-fake-input::placeholder {
    color: #b8b8b8
}

@media (max-width:769px) {
    .unified-search-fake-input {
        background-size: 22px;
        font-size: 14px;
        padding-left: 37px
    }
}

.resource-center-search-box-container {
    background: #000;
    position: relative
}

.resource-center-search-box-container:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .56);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0
}

.resource-center-search-box-container .search-box-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    padding: 12px 0 0;
    cursor: pointer
}

.resource-center-search-box-container .exit-unified-search {
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    height: 100%;
    text-align: center;
    width: 50px;
    font-weight: 600;
    cursor: pointer;
    color: #000;
    opacity: .44;
    position: absolute;
    font-size: 24px;
    right: 15px;
    top: 0
}

.resource-center-search-box-container .exit-unified-search:after,
.resource-center-search-box-container .exit-unified-search:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 25px;
    background: #000;
    top: 30%;
    left: 50%
}

.resource-center-search-box-container .exit-unified-search:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.resource-center-search-box-container .exit-unified-search:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.resource-center-search-box-container .exit-unified-search:after,
.resource-center-search-box-container .exit-unified-search:before {
    top: 32%;
    height: 20px
}

.resource-center-search-box-container .exit-unified-search:hover {
    opacity: .86
}

.resource-center-search-box-container>.container {
    padding-top: 30px;
    padding-bottom: 30px
}

.resource-center-search-box-container>.container .resource-center-search-box {
    width: 100%;
    display: inline-block
}

.resource-center-search-box-container>.container .ais-search-box {
    width: 100%;
    max-width: 100%;
    color: #000;
    margin: 0 auto;
    height: 53px
}

.resource-center-search-box-container>.container .ais-search-box .algolia-autocomplete {
    width: 100%
}

.resource-center-search-box-container>.container .ais-search-box input {
    font-size: 18px;
    padding: 0 39px 0 45px
}

@media (max-width:769px) {
    .resource-center-search-box-container>.container .ais-search-box input {
        font-size: 14px;
        padding-left: 37px
    }
}

.resource-center-search-box-container>.container .ais-search-box input::-webkit-input-placeholder {
    color: #b8b8b8
}

.resource-center-search-box-container>.container .ais-search-box input:-ms-input-placeholder,
.resource-center-search-box-container>.container .ais-search-box input::-ms-input-placeholder {
    color: #b8b8b8
}

.resource-center-search-box-container>.container .ais-search-box input::placeholder {
    color: #b8b8b8
}

.resource-center-search-box-container>.container .ais-search-box .ais-search-box--magnifier {
    height: 100%;
    top: 14px;
    fill: #b8b8b8
}

.resource-center-search-box-container>.container .ais-search-box .ais-search-box--loading-indicator-wrapper svg,
.resource-center-search-box-container>.container .ais-search-box .ais-search-box--magnifier svg {
    width: 25px;
    height: 25px
}

@media (max-width:769px) {
    .resource-center-search-box-container>.container .ais-search-box .ais-search-box--loading-indicator-wrapper svg,
    .resource-center-search-box-container>.container .ais-search-box .ais-search-box--magnifier svg {
        width: 20px
    }
}

.ais-stats {
    margin: 30px 0;
    color: #000;
    opacity: 1;
    text-align: center;
    font-size: 18px
}

@media (min-width:769px) {
    .ais-stats {
        text-align: left
    }
}

.ais-stats .marketo-subscribe-blog body.page-template-events .event-excerpts h4,
.ais-stats .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4,
.ais-stats body.page-template-events .event-excerpts .marketo-subscribe-blog h4,
.ais-stats body.page-template-events .event-excerpts h2,
.ais-stats body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4,
.ais-stats body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2,
.ais-stats h3,
.marketo-subscribe-blog body.page-template-events .event-excerpts .ais-stats h4,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .ais-stats h4,
body.page-template-events .event-excerpts .ais-stats h2,
body.page-template-events .event-excerpts .marketo-subscribe-blog .ais-stats h4,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .ais-stats h2,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .ais-stats h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    color: #000
}

.search-controls {
    padding: 0 0 24px
}

@media (min-width:769px) {
    .search-controls>div {
        margin-right: 16px;
        display: inline-block
    }
}

.search-controls .ais-clear-all--link {
    border-color: #000;
    margin: 6px 6px 6px 18px;
    padding: 4px 6px;
    width: 148px
}

.search-controls .ais-root {
    position: relative
}

.search-controls .ais-header {
    position: absolute;
    top: -6px;
    left: 0;
    background: #fff;
    font-size: 12px;
    height: 14px;
    line-height: 14px;
    padding: 0 4px 0 0;
    font-weight: 600;
    margin: 0;
    text-transform: none;
    border: none
}

.search-controls select {
    cursor: pointer;
    height: 50px;
    width: 100%;
    margin: 0 auto 12px;
    background: transparent;
    outline: none;
    border: 1px solid #ccc!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
    border-radius: 4px;
    padding: 0 8px!important;
    line-height: 36px;
    font-size: 18px
}

@media (min-width:769px) {
    .search-controls select {
        min-width: 270px;
        margin: 0 0 12px
    }
}

.search-results {
    padding: 0
}

.search-results em {
    font-style: normal;
    background: #dff1ff
}

.search-results .ais-infinite-hits--item {
    padding: 0;
    width: 100%
}

.search-results .ais-infinite-hits--showmore {
    text-align: center;
    margin: 48px 0
}

.search-results .ais-infinite-hits--showmore button:disabled {
    display: none
}

@media (min-width:769px) {
    .search-results .ais-infinite-hits--showmore {
        text-align: left
    }
}

.search-result {
    padding: 0;
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    margin-bottom: 36px
}

.search-result h4 {
    margin: 2px 0
}

.search-result h4 a {
    color: #000;
    font-size: 24px;
    line-height: 32px
}

.search-result .meta {
    -webkit-mask-image: -webkit-gradient(linear, 64% top, right top, from(#000), to(transparent));
    line-height: 14px;
    font-size: 14px;
    height: 18px;
    white-space: nowrap;
    width: 100%;
    padding-top: 0;
    overflow: hidden;
    text-transform: capitalize;
    color: #464646
}

.search-result .meta strong {
    color: #000
}

.search-result .search-result-image {
    margin-bottom: 12px;
    padding: 0
}

@media (min-width:769px) {
    .search-result .search-result-image {
        margin-bottom: 0
    }
}

.search-result .search-result-image a {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    width: 100%
}

@media (min-width:769px) {
    .search-result .search-result-image a {
        max-height: 116px
    }
}

.search-result .search-result-image a img {
    min-width: 100%;
    min-height: 100%;
    height: auto
}

.icon-box-link {
    position: relative;
    width: 204px;
    height: 170px;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid transparent;
    display: inline-block;
    -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .16);
    color: #000;
    cursor: pointer;
    margin: 10px
}

.icon-box-link * {
    display: block;
    margin: 0 auto
}

.icon-box-link img {
    height: 80px
}

.icon-box-link:hover {
    border: 1px solid #cbcbcb;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #000
}

.icon-box-link:hover:after {
    content: "";
    height: 5px;
    background: #2C83EC;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0
}

.excerpt-grid-block,
.featured-content-container {
    margin-top: 100px;
    margin-bottom: 100px
}

@media (min-width:992px) {
    .excerpt-grid-block>.row,
    .featured-content-container>.row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .excerpt-grid-block>.row.highlighted,
    .featured-content-container>.row.highlighted {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
    .excerpt-grid-block>.row:not(.highlighted)>div,
    .featured-content-container>.row:not(.highlighted)>div {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex
    }
}

.excerpt-grid-block.simplified.featured-content-container>div.row>div h4,
.excerpt-grid-block.simplified>div.row>div h4,
.excerpt-grid-block>.row .col-md-3 h4,
.featured-content-container>.row .col-md-3 h4 {
    font-size: 18px;
    line-height: 30px
}

@media (max-width:769px) {
    .excerpt-grid-block>.row>div article,
    .featured-content-container>.row>div article {
        border-top: 1px solid #cbcbcb;
        padding-top: 25px;
        margin-bottom: 0
    }
}

@media (max-width:769px) {
    .excerpt-grid-block>.row>div:last-of-type article,
    .featured-content-container>.row>div:last-of-type article {
        border-bottom: 1px solid #cbcbcb;
        padding-top: 25px
    }
}

@media (min-width:769px) {
    .excerpt-grid-block .content-excerpt,
    .featured-content-container .content-excerpt {
        position: relative
    }
    .excerpt-grid-block .content-excerpt:before,
    .featured-content-container .content-excerpt:before {
        content: "";
        height: 1px;
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: 0;
        background-color: #cbcbcb
    }
    .excerpt-grid-block .content-excerpt:after,
    .featured-content-container .content-excerpt:after {
        content: "";
        height: 4px;
        position: absolute;
        left: 15px;
        right: 100%;
        bottom: 0;
        -webkit-transition: all .3s;
        transition: all .3s;
        background-color: #2C83EC
    }
    .excerpt-grid-block .content-excerpt:hover:after,
    .featured-content-container .content-excerpt:hover:after {
        right: 0
    }
}

@media (max-width:769px) {
    .excerpt-grid-block .content-excerpt,
    .featured-content-container .content-excerpt {
        margin-bottom: 0!important
    }
}

.excerpt-grid-block .content-excerpt:after,
.excerpt-grid-block .content-excerpt:before,
.featured-content-container .content-excerpt:after,
.featured-content-container .content-excerpt:before {
    left: 0
}

.excerpt-grid-block .content-excerpt:before,
.featured-content-container .content-excerpt:before {
    right: 0
}

@media (max-width:769px) {
    .excerpt-grid-block .content-excerpt,
    .featured-content-container .content-excerpt {
        text-align: left
    }
}

.excerpt-grid-block .content-excerpt .meta,
.featured-content-container .content-excerpt .meta {
    text-transform: capitalize
}

.excerpt-grid-block .content-excerpt h4,
.featured-content-container .content-excerpt h4 {
    margin-bottom: 20px
}

.excerpt-grid-block .content-excerpt h4 a,
.featured-content-container .content-excerpt h4 a {
    color: #000!important
}

.excerpt-grid-block .content-excerpt h4 a:after,
.featured-content-container .content-excerpt h4 a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0
}

.excerpt-grid-block .content-excerpt p.cta,
.featured-content-container .content-excerpt p.cta {
    margin-top: auto;
    padding-bottom: 0;
    margin-bottom: 0
}

.excerpt-grid-block .content-excerpt .featured-img,
.featured-content-container .content-excerpt .featured-img {
    position: relative;
    display: block;
    padding-top: 55%;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #cbcbcb;
    overflow: hidden
}

.excerpt-grid-block .content-excerpt .featured-img img,
.featured-content-container .content-excerpt .featured-img img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    max-width: inherit;
    width: inherit;
    height: 100%;
    border: none!important
}

.excerpt-grid-block .content-excerpt.case-study .featured-img img,
.featured-content-container .content-excerpt.case-study .featured-img img {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 200px;
    max-height: 101px
}

@media (max-width:769px) {
    .excerpt-grid-block .highlighted,
    .featured-content-container .highlighted {
        width: auto
    }
}

.excerpt-grid-block .highlighted .info,
.featured-content-container .highlighted .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media (min-width:992px) {
    .excerpt-grid-block .highlighted .info .meta,
    .featured-content-container .highlighted .info .meta {
        padding-top: 0;
        margin-bottom: 10px
    }
}

@media (min-width:992px) {
    .excerpt-grid-block .highlighted .info h4,
    .featured-content-container .highlighted .info h4 {
        font-size: 35px;
        line-height: 45px;
        margin-top: -10px
    }
}

.excerpt-grid-block .highlighted .info .cta,
.featured-content-container .highlighted .info .cta {
    margin-top: auto;
    margin-bottom: 20px
}

.excerpt-grid-block.featured>div.row>div:first-of-type .featured-content-container .highlighted .info .cta .cta,
.excerpt-grid-block.featured>div.row>div:first-of-type .highlighted .info .cta .cta,
.excerpt-grid-block .highlighted .info .cta .action-btn,
.excerpt-grid-block .highlighted .info .cta .search-controls .ais-clear-all--link,
.excerpt-grid-block .highlighted .info .cta body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
.featured-content-container .highlighted .info .cta .action-btn,
.featured-content-container .highlighted .info .cta .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
.featured-content-container .highlighted .info .cta .search-controls .ais-clear-all--link,
.featured-content-container .highlighted .info .cta body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
.search-controls .excerpt-grid-block .highlighted .info .cta .ais-clear-all--link,
.search-controls .featured-content-container .highlighted .info .cta .ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .excerpt-grid-block .highlighted .info .cta .mktoButton,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .featured-content-container .highlighted .info .cta .mktoButton {
    padding-right: 55px;
    padding-left: 55px;
    margin: 0;
    min-width: auto
}

.excerpt-grid-block .highlighted .info .border-container,
.featured-content-container .highlighted .info .border-container {
    width: auto;
    left: 15px;
    right: 15px
}

@media (max-width:769px) {
    .excerpt-grid-block.simplified>div.row>div,
    .featured-content-container.simplified>div.row>div {
        padding-left: 30px!important;
        padding-right: 30px!important
    }
}

@media (max-width:769px) {
    .excerpt-grid-block.simplified .content-excerpt,
    .featured-content-container.simplified .content-excerpt {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-bottom: 30px!important;
        margin-bottom: 0!important
    }
    .excerpt-grid-block.simplified .content-excerpt:after,
    .featured-content-container.simplified .content-excerpt:after {
        content: "";
        background-image: url();
        background-repeat: no-repeat;
        width: 20px;
        height: 9px;
        top: 50%;
        -webkit-transform: translateY(calc(50% - 2px)) rotate(90deg);
        transform: translateY(calc(50% - 2px)) rotate(90deg);
        position: absolute;
        right: 0;
        left: auto
    }
}

.excerpt-grid-block.simplified .content-excerpt .cta,
.excerpt-grid-block.simplified .content-excerpt .meta,
.featured-content-container.simplified .content-excerpt .cta,
.featured-content-container.simplified .content-excerpt .meta {
    display: none
}

.excerpt-grid-block.simplified .content-excerpt h4,
.featured-content-container.simplified .content-excerpt h4 {
    margin: 10px 0;
    font-weight: 400
}

@media (max-width:769px) {
    .excerpt-grid-block.simplified .content-excerpt h4,
    .featured-content-container.simplified .content-excerpt h4 {
        margin-top: 0;
        margin-bottom: 0;
        padding-right: 30px
    }
}

@media (max-width:769px) {
    .excerpt-grid-block.simplified .content-excerpt .featured-img,
    .featured-content-container.simplified .content-excerpt .featured-img {
        padding-top: 15%;
        margin-right: 10px;
        width: 110px;
        height: 55px;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
}

section>div.container>div.row>div>.featured-content-container {
    margin-top: 0
}

.excerpt-grid-block {
    margin-top: 0;
    margin-bottom: -40px!important
}

.excerpt-grid-block .excerpt {
    display: none
}

@media (max-width:769px) {
    .excerpt-grid-block.featured>div.row>div:first-of-type .info {
        padding-left: 0;
        padding-right: 0
    }
}

@media (max-width:769px) {
    .excerpt-grid-block.featured>div.row>div:first-of-type .cta {
        background: none;
        padding: 0;
        display: inline;
        font-weight: 400
    }
}

@media (min-width:769px) {
    .excerpt-grid-block.featured>div.row>div:first-of-type {
        width: 100%
    }
    .excerpt-grid-block.featured>div.row>div:first-of-type article {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
    .excerpt-grid-block.featured>div.row>div:first-of-type article .featured-img {
        padding-top: 33%
    }
    .excerpt-grid-block.featured>div.row>div:first-of-type article .featured-img img {
        width: 100%;
        -o-object-fit: fill;
        object-fit: fill
    }
    .excerpt-grid-block.featured>div.row>div:first-of-type article .info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media (min-width:769px) and (min-width:992px) {
    .excerpt-grid-block.featured>div.row>div:first-of-type article .info .meta {
        padding-top: 0;
        margin-bottom: 10px
    }
}

@media (min-width:769px) and (min-width:992px) {
    .excerpt-grid-block.featured>div.row>div:first-of-type article .info h4 {
        font-size: 35px;
        line-height: 45px;
        margin-top: -10px
    }
}

@media (min-width:769px) {
    .excerpt-grid-block.featured>div.row>div:first-of-type article .info .excerpt {
        display: block
    }
    .excerpt-grid-block.featured>div.row>div:first-of-type article .info .cta {
        margin-top: auto;
        margin-bottom: 20px;
        padding-right: 55px;
        padding-left: 55px;
        margin: 0;
        margin-top: auto!important;
        min-width: auto
    }
    .excerpt-grid-block.featured>div.row>div:first-of-type article .info .border-container {
        width: auto;
        left: 15px;
        right: 15px
    }
}

.excerpt-grid-block.vertical {
    padding: 0 35px;
    margin-top: 30px;
    margin-bottom: 0!important
}

@media (max-width:769px) {
    .excerpt-grid-block.vertical {
        padding: 0 15px
    }
}

.excerpt-grid-block.vertical>.row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.excerpt-grid-block.vertical>.row>div {
    width: 100%
}

.excerpt-grid-block.vertical>.row>div .content-excerpt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px!important
}

.excerpt-grid-block.vertical>.row>div .content-excerpt .featured-img {
    width: 70px;
    height: 70px;
    padding-top: 0;
    border-radius: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.excerpt-grid-block.vertical>.row>div .content-excerpt .featured-img img {
    border-radius: 0
}

.excerpt-grid-block.vertical>.row>div .content-excerpt h4 {
    margin: 0;
    margin-left: 30px;
    font-size: 16px;
    line-height: 25px
}

.excerpt-grid-block.vertical>.row>div .content-excerpt .info .cta,
.excerpt-grid-block.vertical>.row>div .content-excerpt .info .meta {
    display: none
}

.featured-blog-posts .content-excerpt {
    padding: 10px 10px 40px;
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    height: 100%;
    visibility: hidden;
    margin-bottom: 0
}

.featured-blog-posts .content-excerpt div.border-container {
    width: 95%
}

.featured-blog-posts .content-excerpt .excerpt {
    margin-bottom: 10px
}

@media (max-width:1350px) {
    .featured-blog-posts .slick-slider {
        margin: 0 2%
    }
}

@media (max-width:1200px) {
    .featured-blog-posts .slick-slider {
        margin: 0 5%
    }
}

.featured-blog-posts .slick-slider.slick-initialized .content-excerpt {
    visibility: visible
}

.featured-blog-posts .slick-slider .slick-track {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    height: 100%
}

.featured-blog-posts .slick-slider .slick-arrow:before {
    content: none
}

.featured-blog-posts .slick-slider .slick-slide {
    height: auto!important
}

.featured-blog-posts .slick-slider .slick-slide>div {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    height: 100%!important
}

.featured-blog-posts .slick-slider .slick-next,
.featured-blog-posts .slick-slider .slick-prev {
    top: 22%;
    z-index: 3
}

.featured-blog-posts .slick-slider .slick-prev {
    left: -6vw
}

.featured-blog-posts .slick-slider .slick-next {
    right: -6vw
}

@media (max-width:992px) {
    .featured-blog-posts .slick-slider article {
        text-align: center
    }
    .featured-blog-posts .slick-slider .img-link img {
        margin-left: auto;
        margin-right: auto
    }
}

@media (max-width:769px) {
    .featured-blog-posts .slick-slider .slick-arrow {
        background-size: 20px;
        width: 20px
    }
    .featured-blog-posts .slick-slider .wp-post-image {
        max-width: 100%;
        margin: 0 auto;
        z-index: 0
    }
    .featured-blog-posts .slick-slider .slick-prev {
        left: -5vw
    }
    .featured-blog-posts .slick-slider .slick-next {
        right: -5vw
    }
}

.search-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 65px;
    height: 97%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
    z-index: 10
}

@media (max-width:992px) {
    .search-container {
        height: 100%;
        right: 0;
        width: 105px;
        top: 0
    }
}

.search-container .search-box--magnifier-wrapper {
    display: none
}

@media (min-width:769px) {
    .search-container>:not(button) {
        visibility: hidden;
        opacity: 1;
        -webkit-transition: opacity .5s;
        transition: opacity .5s;
        -webkit-transition-delay: .7s;
        transition-delay: .7s
    }
}

.search-container .search-box-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0
}

.search-container input {
    border: none;
    font-size: 18px;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    display: inline-block;
    -webkit-transition: background .4s ease, -webkit-box-shadow .4s ease;
    transition: background .4s ease, -webkit-box-shadow .4s ease;
    transition: box-shadow .4s ease, background .4s ease;
    transition: box-shadow .4s ease, background .4s ease, -webkit-box-shadow .4s ease;
    padding: 10px 10px 10px 50px;
    vertical-align: middle;
    white-space: normal;
    height: 100%;
    width: 100%
}

.search-container input::-webkit-input-placeholder {
    color: #a9a9a9
}

.search-container input:focus {
    outline: none
}

.search-container button.btn-open-search {
    position: absolute;
    left: calc(100% - 60px);
    top: 0;
    border: none;
    width: 60px;
    height: 100%;
    -webkit-transition: none;
    transition: none;
    z-index: 1;
    background-color: transparent
}

.search-container button.btn-open-search .icon {
    position: absolute;
    width: 25px;
    height: 22px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.search-container button.btn-open-search .icon:before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    background: transparent;
    top: 0;
    left: 0;
    border: 1px solid #000;
    border-radius: 50%
}

@media (max-width:992px) {
    .search-container button.btn-open-search .icon:before {
        border-width: 2px
    }
}

.search-container button.btn-open-search .icon:after {
    content: "";
    width: 1px;
    height: 9px;
    display: block;
    position: absolute;
    background: #000;
    top: 14px;
    left: 21px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
    border-radius: 1px
}

@media (max-width:992px) {
    .search-container button.btn-open-search .icon:after {
        width: 2px;
        left: 20px
    }
}

@media (max-width:992px) {
    .search-container button.btn-open-search .icon {
        -webkit-transform: translate(-50%, -50%) scale(.85);
        transform: translate(-50%, -50%) scale(.85);
        margin-left: 10px
    }
}

@media (max-width:992px) {
    .search-container button.btn-open-search {
        left: calc(100% - 120px)
    }
}

.search-container .exit-search {
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    height: 100%;
    width: 50px;
    cursor: pointer;
    opacity: .44;
    font-weight: 600;
    font-size: 24px;
    color: #000;
    text-align: center
}

@media (max-width:992px) {
    .search-container .exit-search {
        right: 5px
    }
}

.search-container .exit-search:after,
.search-container .exit-search:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 25px;
    background: #000;
    top: 12px;
    left: 50%
}

@media (max-width:992px) {
    .search-container .exit-search:after,
    .search-container .exit-search:before {
        top: 21px;
        width: 2px
    }
}

.search-container .exit-search:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.search-container .exit-search:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.search-container .search-box-container {
    width: 100%;
    display: inline-block
}

.search-container .search-box {
    width: 100%;
    max-width: 100%;
    color: #000;
    margin: 0 auto;
    height: 53px;
    display: inline-block;
    position: relative;
    height: 46px;
    white-space: nowrap;
    font-size: 14px
}

.search-container .search-box-container-container>.container .search-box input {
    font-size: 18px;
    padding: 0 39px 0 45px
}

.search-container .search-box--input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font: inherit;
    background: #fff;
    display: inline-block;
    border: 1px solid #d4d8e3;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px 0 rgba(85, 95, 110, .2);
    box-shadow: 0 1px 1px 0 rgba(85, 95, 110, .2);
    -webkit-transition: background .4s ease, -webkit-box-shadow .4s ease;
    transition: background .4s ease, -webkit-box-shadow .4s ease;
    transition: box-shadow .4s ease, background .4s ease;
    transition: box-shadow .4s ease, background .4s ease, -webkit-box-shadow .4s ease;
    padding: 10px 10px 10px 35px;
    vertical-align: middle;
    white-space: normal;
    height: 100%;
    width: 100%
}

.search-container .search-box--magnifier-wrapper {
    position: absolute;
    left: 0;
    top: 10px
}

.search-container .search-box-container-container>.container .search-box .search-box--magnifier {
    height: 100%;
    top: 14px;
    fill: #b8b8b8;
    left: 12px;
    position: absolute
}

.search-container .search-box .search-box--magnifier svg {
    width: 25px;
    height: 25px
}

.search-container.searching {
    background-color: #fff;
    background: #fff;
    z-index: 10;
    left: 0;
    width: auto
}

@media (max-width:992px) {
    .search-container.searching {
        left: 0;
        right: 0;
        z-index: 999
    }
}

.search-container.searching .exit-search,
.search-container.searching .search-box-container {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-transition-delay: .5s;
    transition-delay: .5s
}

.search-container.searching button.btn-open-search {
    left: 0;
    -webkit-transition: left .4s ease-in-out;
    transition: left .4s ease-in-out
}

@media (max-width:769px) {
    .search-container {
        position: relative;
        width: 100%
    }
    .search-container input {
        padding-left: 60px
    }
    .search-container .search-box-container {
        opacity: 1
    }
    .search-container button.btn-open-search {
        left: 0
    }
    .search-container .exit-search {
        display: none
    }
}

[class*=col-].open-search {
    margin-top: 10px;
    height: 49px;
    border: 1px solid #cbcbcb;
    border-radius: 4px
}

@media (max-width:769px) {
    [class*=col-].open-search .btn-open-search {
        width: 20px!important
    }
    [class*=col-].open-search .search-container input {
        padding-left: 40px!important
    }
}

@media (min-width:992px) {
    section.resources-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 50px;
        overflow: hidden
    }
}

section.resources-container.all .excerpt .share-buttons,
section.resources-container.all .excerpt p.content-type {
    display: block!important
}

#resources-search-filter>div {
    z-index: -1
}

@media (min-width:992px) {
    #resources-search-filter {
        width: 290px;
        padding-right: 40px
    }
}

@media (max-width:769px) {
    #resources-search-filter {
        display: none;
        position: fixed;
        z-index: 10000;
        background: #fff;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        overflow-y: scroll;
        padding: 25px
    }
}

#resources-search-filter sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    padding-top: 50px
}

@media (max-width:769px) {
    #resources-search-filter sidebar {
        height: 100%
    }
}

#resources-search-filter sidebar div.filters {
    overflow-y: scroll
}

@media (min-width:992px) {
    #resources-search-filter sidebar div.filters {
        height: calc(100vh - 80px);
        width: 289px
    }
}

#resources-search-filter sidebar div.filters::-webkit-scrollbar {
    width: 6px
}

#resources-search-filter sidebar div.filters::-webkit-scrollbar-track {
    border-radius: 10px
}

#resources-search-filter sidebar div.filters::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #cbcbcb
}

#resources-search-filter sidebar .search-input-container {
    margin-bottom: 50px
}

#resources-search-filter sidebar .search-input-container input {
    border: none;
    border-bottom: 1px solid #cbcbcb;
    width: 100%;
    padding-left: 0;
    padding-bottom: 5px
}

@media (min-width:992px) {
    #resources-search-filter sidebar .search-input-container input {
        font-size: 14px
    }
}

#resources-search-filter sidebar .search-input-container input::-webkit-input-placeholder {
    color: #cbcbcb;
    text-transform: uppercase
}

#resources-search-filter sidebar .search-input-container input:-ms-input-placeholder,
#resources-search-filter sidebar .search-input-container input::-ms-input-placeholder {
    color: #cbcbcb;
    text-transform: uppercase
}

#resources-search-filter sidebar .search-input-container input::placeholder {
    color: #cbcbcb;
    text-transform: uppercase
}

#resources-search-filter sidebar .search-input-container input:focus {
    outline: none!important
}

#resources-search-filter sidebar .search-input-container .ais-search-box {
    max-width: 100%
}

#resources-search-filter sidebar .search-input-container .ais-search-box .ais-search-box--magnifier {
    left: auto;
    right: 6px;
    top: 9px
}

#resources-search-filter sidebar .search-input-container .ais-search-box .ais-search-box--magnifier:before {
    content: "";
    width: 13px;
    height: 13px;
    display: block;
    position: absolute;
    background: transparent;
    top: 0;
    left: 0;
    border: 1px solid #000;
    border-radius: 50%
}

#resources-search-filter sidebar .search-input-container .ais-search-box .ais-search-box--magnifier:after {
    content: "";
    width: 1px;
    height: 5px;
    display: block;
    position: absolute;
    background: #000;
    top: 10px;
    left: 13px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
    border-radius: 1px
}

#resources-search-filter sidebar .search-input-container .ais-search-box .ais-search-box--magnifier svg {
    visibility: hidden
}

#resources-search-filter sidebar .search-input-container .ais-search-box .ais-search-box--reset {
    top: 8px;
    bottom: 8px;
    right: 0;
    width: 20px;
    height: 20px
}

#resources-search-filter sidebar .search-input-container .ais-search-box .ais-search-box--reset:after,
#resources-search-filter sidebar .search-input-container .ais-search-box .ais-search-box--reset:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 25px;
    background: #000;
    top: 30%;
    left: 50%
}

#resources-search-filter sidebar .search-input-container .ais-search-box .ais-search-box--reset:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

#resources-search-filter sidebar .search-input-container .ais-search-box .ais-search-box--reset:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#resources-search-filter sidebar .search-input-container .ais-search-box .ais-search-box--reset:after,
#resources-search-filter sidebar .search-input-container .ais-search-box .ais-search-box--reset:before {
    height: 12px
}

#resources-search-filter sidebar .search-input-container .ais-search-box .ais-search-box--reset svg {
    display: none
}

#resources-search-filter sidebar .filter-list {
    font-size: 14px;
    margin-bottom: 30px
}

@media (min-width:992px) {
    #resources-search-filter sidebar .filter-list {
        width: 250px
    }
}

@media (max-width:769px) {
    #resources-search-filter sidebar .filter-list {
        padding-right: 15px
    }
}

#resources-search-filter sidebar .filter-list .heading {
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    margin-bottom: 12px
}

#resources-search-filter sidebar .filter-list .heading:after {
    content: "";
    height: 10px;
    width: 10px;
    display: block;
    position: absolute;
    top: 13px;
    right: 0;
    background-image: url();
    background-repeat: no-repeat;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

#resources-search-filter sidebar .filter-list ul {
    padding-left: 0;
    list-style-type: none
}

#resources-search-filter sidebar .filter-list ul li {
    cursor: pointer;
    position: relative;
    border-radius: 4px;
    padding: 0 30px 0 15px;
    margin-bottom: 5px;
    font-size: 14px
}

@media (max-width:769px) {
    #resources-search-filter sidebar .filter-list ul li {
        padding: 10px 30px 10px 15px
    }
}

#resources-search-filter sidebar .filter-list ul li:hover {
    background: #f3f3f3
}

#resources-search-filter sidebar .filter-list ul li.selected {
    background: #f3f3f3;
    font-weight: 600
}

#resources-search-filter sidebar .filter-list ul li.selected:after,
#resources-search-filter sidebar .filter-list ul li.selected:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 25px;
    background: #000;
    top: 30%;
    left: 50%
}

#resources-search-filter sidebar .filter-list ul li.selected:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

#resources-search-filter sidebar .filter-list ul li.selected:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#resources-search-filter sidebar .filter-list ul li.selected:after,
#resources-search-filter sidebar .filter-list ul li.selected:before {
    height: 10px;
    left: auto;
    right: 15px;
    top: 36%
}

#resources-search-filter sidebar .filter-list.closed .heading:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

#resources-search-filter sidebar .close-filters {
    display: none
}

#resources-search-filter sidebar .close-filters:after,
#resources-search-filter sidebar .close-filters:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 25px;
    background: #000;
    top: 30%;
    left: 50%
}

#resources-search-filter sidebar .close-filters:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

#resources-search-filter sidebar .close-filters:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

@media (max-width:769px) {
    #resources-search-filter sidebar .close-filters {
        display: block;
        position: absolute;
        right: -8px;
        top: -20px;
        width: 40px;
        height: 40px
    }
    #resources-search-filter sidebar .close-filters:after,
    #resources-search-filter sidebar .close-filters:before {
        top: 19%
    }
}

#resources-search-filter sidebar .action-btn,
#resources-search-filter sidebar .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
#resources-search-filter sidebar .search-controls .ais-clear-all--link,
#resources-search-filter sidebar body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
.excerpt-grid-block.featured>div.row>div:first-of-type #resources-search-filter sidebar .cta,
.search-controls #resources-search-filter sidebar .ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap #resources-search-filter sidebar .mktoButton {
    margin-top: auto;
    margin-left: 0;
    margin-right: 0;
    width: 250px;
    min-width: auto;
    display: none
}

#resources-results-container {
    padding-top: 30px
}

@media (min-width:992px) {
    #resources-results-container {
        max-width: calc(100% - 290px);
        min-height: 800px;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        border-left: 1px solid #cbcbcb;
        padding-left: 45px
    }
}

#resources-results-container .featured-items {
    margin-bottom: 10vw
}

@media (max-width:1200px) {
    #resources-results-container .featured-items {
        margin-bottom: 20vw
    }
}

#resources-results-container .featured-items .excerpt {
    margin-bottom: 50px;
    position: relative
}

@media (min-width:992px) {
    #resources-results-container .featured-items .excerpt {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important
    }
}

@media (max-width:769px) {
    #resources-results-container .featured-items .excerpt {
        padding-bottom: 25px
    }
}

@media (min-width:992px) {
    #resources-results-container .featured-items .excerpt>div {
        min-width: 305px
    }
}

@media (min-width:992px) {
    #resources-results-container .featured-items .excerpt .featured-img {
        margin-bottom: 0
    }
}

#resources-results-container .featured-items .excerpt .action-btn,
#resources-results-container .featured-items .excerpt .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
#resources-results-container .featured-items .excerpt .search-controls .ais-clear-all--link,
#resources-results-container .featured-items .excerpt body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
.excerpt-grid-block.featured>div.row>div:first-of-type #resources-results-container .featured-items .excerpt .cta,
.search-controls #resources-results-container .featured-items .excerpt .ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap #resources-results-container .featured-items .excerpt .mktoButton {
    display: inline-block;
    width: auto;
    min-width: auto;
    margin: 0
}

@media (min-width:992px) {
    #resources-results-container .featured-items .excerpt .action-btn,
    #resources-results-container .featured-items .excerpt .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
    #resources-results-container .featured-items .excerpt .search-controls .ais-clear-all--link,
    #resources-results-container .featured-items .excerpt body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
    .excerpt-grid-block.featured>div.row>div:first-of-type #resources-results-container .featured-items .excerpt .cta,
    .search-controls #resources-results-container .featured-items .excerpt .ais-clear-all--link,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap #resources-results-container .featured-items .excerpt .mktoButton {
        padding-left: 35px;
        padding-right: 35px
    }
}

@media (max-width:769px) {
    #resources-results-container .featured-items .excerpt .action-btn,
    #resources-results-container .featured-items .excerpt .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
    #resources-results-container .featured-items .excerpt .search-controls .ais-clear-all--link,
    #resources-results-container .featured-items .excerpt body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
    .excerpt-grid-block.featured>div.row>div:first-of-type #resources-results-container .featured-items .excerpt .cta,
    .search-controls #resources-results-container .featured-items .excerpt .ais-clear-all--link,
    body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap #resources-results-container .featured-items .excerpt .mktoButton {
        width: 100%
    }
}

#resources-results-container .featured-items .excerpt .webinar-date {
    text-transform: uppercase;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative
}

#resources-results-container .featured-items .excerpt .webinar-date span {
    display: block;
    padding-left: 40px;
    background-image: url();
    background-position: 0;
    background-repeat: no-repeat;
    background-size: 30px 30px
}

#resources-results-container .featured-items .excerpt .webinar-date span:not(:first-of-type) {
    margin-top: 10px
}

@media (min-width:1500px) {
    #resources-results-container .featured-items .excerpt .webinar-date {
        font-size: 18px
    }
}

#resources-results-container .featured-items .excerpt .excerpt-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

#resources-results-container .featured-items .excerpt .excerpt-info .webinar-info {
    margin-top: auto
}

@media (min-width:769px) {
    #resources-results-container .featured-items .excerpt .excerpt-info:after {
        content: "";
        background: #cbcbcb;
        display: block;
        height: 1px;
        margin-top: 20px
    }
}

@media (min-width:992px) {
    #resources-results-container .featured-items .excerpt.first-featured-item h4 {
        font-size: 35px;
        line-height: 45px;
        margin-top: -10px
    }
}

@media (min-width:1500px) {
    #resources-results-container .featured-items .excerpt.first-featured-item .webinar-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media (min-width:1500px) {
    #resources-results-container .featured-items .excerpt.first-featured-item .webinar-info .webinar-date {
        margin: 0;
        font-weight: 600
    }
}

#resources-results-container .featured-items .excerpt.first-featured-item .webinar-info .action-btn,
#resources-results-container .featured-items .excerpt.first-featured-item .webinar-info .excerpt-grid-block.featured>div.row>div:first-of-type .cta,
#resources-results-container .featured-items .excerpt.first-featured-item .webinar-info .search-controls .ais-clear-all--link,
#resources-results-container .featured-items .excerpt.first-featured-item .webinar-info body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton,
.excerpt-grid-block.featured>div.row>div:first-of-type #resources-results-container .featured-items .excerpt.first-featured-item .webinar-info .cta,
.search-controls #resources-results-container .featured-items .excerpt.first-featured-item .webinar-info .ais-clear-all--link,
body:not(.page-template-partner-form) .mktoFormBox .mktoForm .mktoButtonRow .mktoButtonWrap #resources-results-container .featured-items .excerpt.first-featured-item .webinar-info .mktoButton {
    padding-right: 55px;
    padding-left: 55px;
    margin: 0;
    min-width: auto
}

#resources-results-container h1 {
    margin-top: 50px
}

#resources-results-container h5 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 30px
}

#resources-results-container #selected-filters {
    min-height: 37px
}

#resources-results-container #selected-filters button.clear-all {
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: underline;
    color: #cbcbcb;
    font-weight: 400;
    font-size: 14px;
    display: none
}

@media (min-width:992px) {
    #resources-results-container .filter-drop-down {
        display: none
    }
}

#resources-results-container ul {
    list-style-type: none;
    padding-left: 0;
    display: inline-block
}

#resources-results-container ul li {
    cursor: pointer;
    position: relative;
    border-radius: 4px;
    padding: 0 30px 0 15px;
    margin-bottom: 5px;
    font-size: 14px;
    display: inline-block
}

@media (max-width:769px) {
    #resources-results-container ul li {
        padding: 10px 30px 10px 15px
    }
}

#resources-results-container ul li:hover {
    background: #f3f3f3
}

#resources-results-container ul li.selected {
    background: #f3f3f3;
    font-weight: 600
}

#resources-results-container ul li.selected:after,
#resources-results-container ul li.selected:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 25px;
    background: #000;
    top: 30%;
    left: 50%
}

#resources-results-container ul li.selected:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

#resources-results-container ul li.selected:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#resources-results-container ul li.selected:after,
#resources-results-container ul li.selected:before {
    height: 10px;
    left: auto;
    right: 15px;
    top: 36%
}

#resources-results-container ul li:not(:last-child) {
    margin-right: 15px
}

#resources-results-container .items {
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

#resources-results-container .items.loading-results {
    opacity: .5
}

@media (min-width:992px) {
    #resources-results-container #results {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

@media (max-width:1600px) and (min-width:1170px) {
    #resources-results-container #results>div {
        width: 33.33333333%
    }
}

#resources-results-container #results>div {
    margin-bottom: 60px
}

@media (max-width:769px) {
    #resources-results-container .search-results-container .search-result .search-result-image {
        padding: 0
    }
}

@media (min-width:992px) {
    #resources-results-container .search-results-container .search-result .search-result-image {
        width: 200px;
        height: 110px
    }
}

#resources-results-container .search-results-container .search-result .search-result-image a {
    max-height: none!important
}

#resources-results-container.mobile-search {
    position: fixed;
    z-index: 1000000;
    top: 110px;
    bottom: 0;
    overflow: scroll;
    padding-top: 0;
    background: #fff
}

#resources-results-container .excerpt {
    height: 100%;
    padding-bottom: 5px
}

@media (min-width:992px) {
    #resources-results-container .excerpt {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#resources-results-container .excerpt .featured-img {
    position: relative;
    display: block;
    margin-bottom: 20px;
    padding-top: 66.25%;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #cbcbcb;
    overflow: hidden
}

#resources-results-container .excerpt .featured-img img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    max-width: inherit;
    width: inherit;
    height: 100%
}

#resources-results-container .excerpt .content-type {
    display: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0;
    margin: 0
}

#resources-results-container .excerpt h4 {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 20px
}

#resources-results-container .excerpt h4 a {
    color: #000!important
}

#resources-results-container .excerpt h4 a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2
}

#resources-results-container .excerpt .footer {
    margin-top: auto;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

#resources-results-container .excerpt .footer p {
    padding: 0;
    margin: 0
}

#resources-results-container .excerpt .footer .share-buttons {
    display: none;
    position: relative;
    top: 6px;
    z-index: 10
}

#resources-results-container .excerpt div.border-container {
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 5px
}

#resources-results-container .excerpt div.border-container .border {
    position: absolute;
    top: 0;
    left: 0
}

#resources-results-container .excerpt div.border-container .border-inactive {
    height: 1px;
    width: 100%;
    background-color: #cbcbcb
}

#resources-results-container .excerpt div.border-container .border-active {
    height: 5px;
    width: 0;
    background-color: #2C83EC;
    -webkit-transition: width .3s;
    transition: width .3s
}

@media (min-width:769px) {
    #resources-results-container .excerpt:hover .border-container .border-active {
        width: 100%
    }
}

#resources-results-container .excerpt.case-study .featured-img img {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 200px;
    max-height: 101px
}

body.scroll-progress-tracked {
    counter-reset: section
}

#TrackScrollProgress {
    height: 100%
}

#TrackScrollProgress .centerAll {
    margin: 0 auto;
    max-width: 960px
}

#TrackScrollProgress .trackThis hr {
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, .07);
    border-bottom: none
}

#TrackScrollProgress .mobileOnly {
    display: none!important
}

#TrackScrollProgress .hot {
    margin-left: 20px;
    font-family: "Arial";
    font-weight: 700;
    color: #e70000
}

#TrackScrollProgress .historyVersion,
#TrackScrollProgress .sourcecode {
    border: 1px solid rgba(0, 0, 0, .15);
    padding: 8px 16px;
    text-overflow: ellipsis;
    background-color: rgba(0, 0, 0, .05);
    overflow: hidden
}

#TrackScrollProgress .historyVersion .htmlTag,
#TrackScrollProgress .sourcecode .htmlTag {
    color: #00f
}

#TrackScrollProgress .historyVersion .htmlAttr,
#TrackScrollProgress .historyVersion .jsVal,
#TrackScrollProgress .sourcecode .htmlAttr,
#TrackScrollProgress .sourcecode .jsVal {
    color: red
}

#TrackScrollProgress .historyVersion .htmlVal,
#TrackScrollProgress .sourcecode .htmlVal {
    color: #8000ff
}

#TrackScrollProgress .historyVersion .htmlComment,
#TrackScrollProgress .historyVersion .jsComment,
#TrackScrollProgress .sourcecode .htmlComment,
#TrackScrollProgress .sourcecode .jsComment {
    color: green
}

#TrackScrollProgress .historyVersion .javascript,
#TrackScrollProgress .sourcecode .javascript {
    margin: 0 -16px;
    padding: 0 16px;
    background-color: rgba(106, 136, 169, .2)
}

#TrackScrollProgress .historyVersion .jsQuote,
#TrackScrollProgress .sourcecode .jsQuote {
    color: gray
}

#TrackScrollProgress .historyVersion .jsConst,
#TrackScrollProgress .sourcecode .jsConst {
    color: navy;
    text-shadow: .5px 0 0 navy;
    font-style: italic
}

#TrackScrollProgress .historyVersion {
    margin-bottom: 16px
}

#TrackScrollProgress .historyVersion:last-of-type {
    margin: 0
}

#TrackScrollProgress .horizontalScrollProgress {
    padding-top: 29px;
    height: 31px
}

#TrackScrollProgress .horizontalScrollProgress.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(hsla(0, 0%, 100%, 0)));
    background: linear-gradient(180deg, #fff 0, hsla(0, 0%, 100%, 0))
}

#TrackScrollProgress .horizontalScrollProgress.bottom,
#TrackScrollProgress .horizontalScrollProgress.fixed {
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="@color1", endColorstr="@color2", GradientType=0)
}

#TrackScrollProgress .horizontalScrollProgress.bottom {
    top: auto;
    bottom: 0;
    background: hsla(0, 0%, 100%, 0);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, hsla(0, 0%, 100%, 0)), to(#fff));
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, #fff)
}

#TrackScrollProgress .horizontalScrollProgress .scrollProgress {
    display: block;
    border: none;
    width: 100%;
    height: 2px;
    color: #fc8b00;
    background-color: rgba(0, 0, 0, .3);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

#TrackScrollProgress .horizontalScrollProgress .scrollProgress::-webkit-progress-bar {
    background-color: rgba(0, 0, 0, .3)
}

#TrackScrollProgress .horizontalScrollProgress .scrollProgress::-webkit-progress-value {
    background: #e70000;
    background: linear-gradient(90deg, #810000 0, #e70000 calc(100% - 10px), #000);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="@color2", endColorstr="@color3", GradientType=1)
}

#TrackScrollProgress .horizontalScrollProgress .scrollProgress::-moz-progress-bar {
    background: #e70000;
    background: linear-gradient(90deg, #810000 0, #e70000 calc(100% - 10px), #000);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="@color2", endColorstr="@color3", GradientType=1)
}

#TrackScrollProgress .horizontalScrollProgress .scrollProgress .scrollProgressContainer {
    display: block;
    margin-top: 29px;
    width: 100%;
    height: 2px;
    color: #fc8b00;
    background-color: rgba(0, 0, 0, .3)
}

#TrackScrollProgress .horizontalScrollProgress .scrollProgress .scrollProgressContainer .scrollProgressBar {
    display: block;
    width: 0;
    height: inherit;
    background-color: #e70000
}

#TrackScrollProgress .verticalScrollProgress {
    display: block;
    height: 80%;
    width: 200px
}

@media (max-width:1470px) {
    #TrackScrollProgress .verticalScrollProgress {
        width: 100%;
        height: 100vh
    }
}

#TrackScrollProgress .verticalScrollProgress.right {
    right: 50px;
    left: auto
}

#TrackScrollProgress .verticalScrollProgress.untitled {
    width: 20px
}

#TrackScrollProgress .verticalScrollProgress .verticalScrollProgressContainer {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 1px;
    height: 99%;
    background-color: rgba(0, 0, 0, .3)
}

@media (max-width:1470px) {
    #TrackScrollProgress .verticalScrollProgress .verticalScrollProgressContainer {
        left: 49px
    }
}

@media (max-width:992px) {
    #TrackScrollProgress .verticalScrollProgress .verticalScrollProgressContainer {
        left: 60px
    }
}

#TrackScrollProgress .verticalScrollProgress .verticalScrollProgressContainer .verticalScrollProgressBar {
    height: 0%;
    background: #2C83EC;
    width: 3px;
    left: -1px;
    position: relative
}

#TrackScrollProgress .scrollStopContainer,
#TrackScrollProgress .vertScrollStopContainer {
    position: relative
}

#TrackScrollProgress .scrollStopContainer .finalStopCircle,
#TrackScrollProgress .scrollStopContainer .stopCircle,
#TrackScrollProgress .vertScrollStopContainer .finalStopCircle,
#TrackScrollProgress .vertScrollStopContainer .stopCircle {
    position: absolute;
    border: 1px solid #707070;
    border-radius: 10px;
    width: 17px;
    height: 17px;
    text-align: center;
    text-decoration: none;
    line-height: 16px;
    color: rgba(0, 0, 0, .5);
    background-color: #f3f3f3;
    cursor: pointer
}

#TrackScrollProgress .scrollStopContainer .finalStopCircle.hover,
#TrackScrollProgress .scrollStopContainer .finalStopCircle.reached,
#TrackScrollProgress .scrollStopContainer .stopCircle.hover,
#TrackScrollProgress .scrollStopContainer .stopCircle.reached,
#TrackScrollProgress .vertScrollStopContainer .finalStopCircle.hover,
#TrackScrollProgress .vertScrollStopContainer .finalStopCircle.reached,
#TrackScrollProgress .vertScrollStopContainer .stopCircle.hover,
#TrackScrollProgress .vertScrollStopContainer .stopCircle.reached {
    color: #000;
    border-color: #2C83EC;
    border-width: 3px
}

#TrackScrollProgress .scrollStopContainer .finalStopCircle,
#TrackScrollProgress .vertScrollStopContainer .finalStopCircle {
    border-width: 3px;
    border-radius: 12px;
    width: 17px;
    height: 17px;
    line-height: 17px
}

#TrackScrollProgress .scrollStopContainer .stopCircle {
    top: -11px
}

#TrackScrollProgress .scrollStopContainer .finalStopCircle {
    top: -13px;
    right: -10px
}

#TrackScrollProgress .vertScrollStopContainer {
    height: 100%
}

#TrackScrollProgress .vertScrollStopContainer .stopCircle {
    left: -9px
}

#TrackScrollProgress .vertScrollStopContainer .finalStopCircle {
    left: -10px;
    bottom: -18px
}

#TrackScrollProgress .scrollStopTitles,
#TrackScrollProgress .vertScrollStopTitles {
    display: block;
    position: absolute;
    font-size: 12px;
    font-weight: 400
}

@media (max-width:992px) {
    #TrackScrollProgress .scrollStopTitles,
    #TrackScrollProgress .vertScrollStopTitles {
        font-size: 18px;
        line-height: 30px
    }
}

#TrackScrollProgress .scrollStopTitles .finalStopTitle,
#TrackScrollProgress .scrollStopTitles .stopTitle,
#TrackScrollProgress .vertScrollStopTitles .finalStopTitle,
#TrackScrollProgress .vertScrollStopTitles .stopTitle {
    position: absolute;
    color: #707070;
    cursor: pointer
}

#TrackScrollProgress .scrollStopTitles .finalStopTitle.ellipsis,
#TrackScrollProgress .scrollStopTitles .stopTitle.ellipsis,
#TrackScrollProgress .vertScrollStopTitles .finalStopTitle.ellipsis,
#TrackScrollProgress .vertScrollStopTitles .stopTitle.ellipsis {
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

#TrackScrollProgress .scrollStopTitles {
    top: 0;
    right: 0;
    left: 0
}

#TrackScrollProgress .stopTitle.active,
#TrackScrollProgress .stopTitle:hover {
    color: #000
}

#TrackScrollProgress .scrollStopTitles .finalStopTitle.invisible,
#TrackScrollProgress .scrollStopTitles .stopTitle.invisible {
    display: none
}

#TrackScrollProgress .scrollStopTitles .finalStopTitle {
    right: 0
}

#TrackScrollProgress .vertScrollStopTitles {
    top: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (min-width:992px) {
    #TrackScrollProgress .vertScrollStopTitles {
        width: 190px
    }
}

@media (max-width:1470px) {
    #TrackScrollProgress .vertScrollStopTitles {
        right: inherit;
        left: 60px;
        top: -7px;
        bottom: -9px
    }
}

#TrackScrollProgress .vertScrollStopTitles .finalStopTitle,
#TrackScrollProgress .vertScrollStopTitles .stopTitle {
    line-height: 14px;
    padding-left: 10px
}

@media (max-width:992px) {
    #TrackScrollProgress .vertScrollStopTitles .finalStopTitle,
    #TrackScrollProgress .vertScrollStopTitles .stopTitle {
        line-height: 30px
    }
}

#TrackScrollProgress .vertScrollStopTitles .finalStopTitle {
    bottom: -12px
}

#TrackScrollProgress .smallDevice.horizontalScrollProgress {
    background-color: hsla(0, 0%, 100%, .95)
}

#TrackScrollProgress .smallDevice.mobileOnly {
    display: block!important
}

#TrackScrollProgress .smallDevice.scrollProgress,
#TrackScrollProgress .smallDevice.scrollProgressContainer,
#TrackScrollProgress .smallDevice.scrollStopContainer,
#TrackScrollProgress .smallDevice.scrollStopTitles {
    margin-left: 16px;
    margin-right: 16px;
    width: calc(100% - 32px)!important
}

#TrackScrollProgress .stopCircle.stop1,
#TrackScrollProgress .stopCircle.stop1.reached,
#TrackScrollProgress .stopTitle.stop1,
#TrackScrollProgress .stopTitle.stop1.reached {
    top: 0!important
}

#TrackScrollProgress .stopTitle {
    text-align: left;
    padding-left: 14px!important;
    margin-left: -7px;
    max-width: 220px
}

@media (min-width:992px) {
    #TrackScrollProgress .stopTitle {
        max-width: 160px;
        line-height: 20px!important
    }
}

@media (max-width:992px) {
    #TrackScrollProgress .stopTitle {
        padding-left: 26px!important
    }
}

#TrackScrollProgress .stopTitle:before {
    counter-increment: section;
    content: "0" counter(section);
    display: inline-block;
    position: absolute;
    left: -44px;
    text-align: right;
    width: 26px
}

#TrackScrollProgress .verticalScrollProgress {
    position: relative
}

#TrackScrollProgress .stopTitle {
    top: inherit!important;
    position: relative!important
}

#TrackScrollProgress .verticalScrollProgressBar,
#TrackScrollProgress .vertScrollStopContainer {
    display: none!important
}

#TrackScrollProgress .stopTitle:after {
    content: "";
    display: block;
    position: absolute;
    height: 17px;
    width: 17px;
    background: #f3f3f3;
    border: 1px solid grey;
    border-radius: 50%;
    top: 0;
    left: -12px
}

@media (max-width:992px) {
    #TrackScrollProgress .stopTitle:after {
        top: 5px;
        left: -1px
    }
}

#TrackScrollProgress .stopTitle.reached:after {
    border: 3px solid #2C83EC;
    left: -12px
}

@media (max-width:992px) {
    #TrackScrollProgress .stopTitle.reached:after {
        left: -1px
    }
}

#TrackScrollProgress .btn-cta {
    position: relative
}

@media (min-width:1470px) {
    #TrackScrollProgress .btn-cta {
        left: -30px;
        position: absolute;
        bottom: 30px;
        min-width: 160px
    }
}

@media (max-width:1470px) {
    #TrackScrollProgress .btn-cta {
        margin-top: 60px;
        margin-left: 20px;
        width: auto;
        display: inline-block
    }
}

#TrackScrollProgress #sidebar .btn-close {
    position: absolute;
    top: 100px;
    right: 15px;
    background: #fff;
    border-radius: 50%;
    border: none;
    width: 55px;
    height: 55px
}

#TrackScrollProgress #sidebar .btn-close:after,
#TrackScrollProgress #sidebar .btn-close:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 25px;
    background: #000;
    top: 30%;
    left: 50%
}

#TrackScrollProgress #sidebar .btn-close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

#TrackScrollProgress #sidebar .btn-close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#TrackScrollProgress #sidebar .btn-close:after,
#TrackScrollProgress #sidebar .btn-close:before {
    width: 2px;
    height: 20px;
    top: 32%;
    left: 49%
}

@media (max-width:769px) {
    #TrackScrollProgress #sidebar .btn-close {
        top: 80px
    }
}

@media (min-width:1470px) {
    #TrackScrollProgress #sidebar .btn-close {
        display: none
    }
}

@media (min-width:1470px) {
    #TrackScrollProgress #sidebar {
        height: calc(100vh - 80px);
        left: 55px;
        float: left;
        width: 200px
    }
}

@media (max-width:1470px) {
    #TrackScrollProgress #sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -100vw;
        background: #f3f3f3;
        z-index: 100;
        height: auto;
        min-height: 100vh;
        width: 350px;
        padding-top: 140px;
        overflow: scroll;
        -webkit-transition: left .5s;
        transition: left .5s
    }
    #TrackScrollProgress #sidebar.is_stuck+div {
        display: none
    }
}

@media (max-width:769px) {
    #TrackScrollProgress #sidebar {
        width: 90vw
    }
}

#TrackScrollProgress #sidebar.open {
    left: 0
}

#TrackScrollProgress .btn-open-sidebar {
    background-image: url();
    background-position: 50%;
    background-color: transparent;
    position: fixed;
    top: 100px;
    left: 12px;
    z-index: 2;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none
}

@media (max-width:769px) {
    #TrackScrollProgress .btn-open-sidebar {
        top: 80px
    }
}

@media (min-width:1470px) {
    #TrackScrollProgress .btn-open-sidebar {
        display: none
    }
}

@media (max-width:1650px) and (min-width:1470px) {
    #TrackScrollProgress article {
        margin-right: 5vw
    }
}

.horizontalScrollProgress {
    display: none!important
}

.row.icon-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -70px
}

@media (max-width:769px) {
    .row.icon-columns {
        margin-bottom: -40px
    }
}

.row.icon-columns>div {
    margin-bottom: 70px
}

@media (max-width:769px) {
    .row.icon-columns>div {
        margin-bottom: 40px
    }
}

.row.icon-columns>div div.icon {
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px
}

@media (min-width:992px) {
    .row.icon-columns>div div.icon {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

@media (max-width:769px) {
    .row.icon-columns>div div.icon {
        float: left;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media (max-width:769px) {
    .row.icon-columns>div .content {
        padding-left: 100px
    }
}

.marketo-subscribe-blog body.page-template-events .event-excerpts .row.icon-columns>div h4,
.marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .row.icon-columns>div h4,
.row.icon-columns>div .marketo-subscribe-blog body.page-template-events .event-excerpts h4,
.row.icon-columns>div .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4,
.row.icon-columns>div body.page-template-events .event-excerpts .marketo-subscribe-blog h4,
.row.icon-columns>div body.page-template-events .event-excerpts h2,
.row.icon-columns>div body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4,
.row.icon-columns>div body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2,
.row.icon-columns>div h3,
body.page-template-events .event-excerpts .marketo-subscribe-blog .row.icon-columns>div h4,
body.page-template-events .event-excerpts .row.icon-columns>div h2,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .row.icon-columns>div h4,
body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .row.icon-columns>div h2 {
    margin-top: 18px
}

@media (max-width:769px) {
    .marketo-subscribe-blog body.page-template-events .event-excerpts .row.icon-columns>div h4,
    .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .row.icon-columns>div h4,
    .row.icon-columns>div .marketo-subscribe-blog body.page-template-events .event-excerpts h4,
    .row.icon-columns>div .marketo-subscribe-blog body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h4,
    .row.icon-columns>div body.page-template-events .event-excerpts .marketo-subscribe-blog h4,
    .row.icon-columns>div body.page-template-events .event-excerpts h2,
    .row.icon-columns>div body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog h4,
    .row.icon-columns>div body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form h2,
    .row.icon-columns>div h3,
    body.page-template-events .event-excerpts .marketo-subscribe-blog .row.icon-columns>div h4,
    body.page-template-events .event-excerpts .row.icon-columns>div h2,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .marketo-subscribe-blog .row.icon-columns>div h4,
    body:not(.page-template-partner-form) .mktoFormBox.content-subscription-form .row.icon-columns>div h2 {
        margin-top: 0
    }
}

.homepage-customer-strip {
    position: relative;
    margin-top: -14.8vw;
    z-index: 30
}

.homepage-customer-strip>.container {
    text-align: center
}

.homepage-customer-strip>.container>a {
    width: 40vw;
    height: 14vw;
    display: inline-block;
    vertical-align: top;
    position: relative
}

.homepage-customer-strip>.container>a.raised {
    padding-top: 18vw
}

.homepage-customer-strip>.container>a>img {
    max-height: 80px
}

@media (min-width:769px) {
    .homepage-customer-strip {
        margin-top: 0;
        position: relative
    }
    .homepage-customer-strip>.container>a {
        width: 18%;
        height: 5vw;
        line-height: 5vw;
        vertical-align: middle;
        padding-left: 1vw;
        padding-right: 1vw
    }
    .homepage-customer-strip>.container>a.raised {
        padding-top: 0
    }
    .homepage-customer-strip>.container>a>img {
        margin: auto;
        vertical-align: middle;
        display: inline-block
    }
}

#cs-slider {
    text-align: center;
    visibility: hidden;
    margin-bottom: 70px
}

#cs-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

#cs-slider .slick-slide {
    height: inherit!important
}

@media (min-width:992px) {
    #cs-slider {
        margin-left: -15px;
        margin-right: -15px
    }
}

@media (max-width:769px) {
    #cs-slider {
        margin-left: -15px;
        margin-right: -15px
    }
}

#cs-slider.slick-initialized {
    visibility: visible
}

#cs-slider .slick-list {
    padding-bottom: 18px
}

@media (max-width:769px) {
    #cs-slider .slick-dots {
        bottom: -55px
    }
}

#cs-slider .cs-testimonial {
    position: relative;
    height: inherit
}

@media (max-width:769px) {
    #cs-slider .cs-testimonial {
        padding: 0 10px
    }
}

#cs-slider .cs-testimonial>div {
    border: 1px solid #cbcbcb;
    border-radius: 4px;
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 25px
}

#cs-slider .cs-testimonial>div a.customer-link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

#cs-slider .cs-testimonial>div p {
    margin-bottom: 0;
    padding-bottom: 0
}

#cs-slider .cs-testimonial>div .featured-img {
    position: relative;
    overflow: hidden;
    display: block;
    margin-bottom: 20px;
    padding-top: 53%;
    width: 100%
}

#cs-slider .cs-testimonial>div .featured-img>* {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

#cs-slider .cs-testimonial>div .featured-img .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #cbcbcb
}

#cs-slider .cs-testimonial>div .featured-img .rating .si-review-stars {
    margin-bottom: 20px
}

#cs-slider .cs-testimonial>div .featured-img img.customer-img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center 0;
    object-position: center 0;
    display: block;
    max-width: inherit;
    width: inherit;
    height: 100%
}

#cs-slider .cs-testimonial>div .customer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 20px;
    padding-right: 20px
}

#cs-slider .cs-testimonial>div .customer-info .name {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    padding-bottom: 0
}

#cs-slider .cs-testimonial>div .customer-info .title {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400
}

#cs-slider .cs-testimonial>div .customer-info .quote {
    margin-bottom: 35px;
    margin-top: 25px
}

#cs-slider .cs-testimonial>div .customer-info .quote p {
    font-style: italic;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400
}

#cs-slider .cs-testimonial>div .customer-info .quote p:after,
#cs-slider .cs-testimonial>div .customer-info .quote p:before {
    content: '"'
}

#cs-slider .cs-testimonial>div .customer-info .logo {
    display: inline;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: auto;
    max-height: 40px;
    max-width: 150px
}

@media (max-width:769px) {
    #cs-slider .cs-testimonial>div .customer-info .logo {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-top: 20px;
        margin-bottom: 25px
    }
    #cs-slider .cs-testimonial>div .customer-info .name {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
    #cs-slider .cs-testimonial>div .customer-info .title {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
    #cs-slider .cs-testimonial>div .customer-info .quote {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
}

@media (min-width:992px) {
    .video-lightbox-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: wrap;
        flex-flow: wrap
    }
}

.video-lightbox-grid>div {
    margin-bottom: 60px;
    position: relative
}

.video-lightbox-grid>div:before {
    content: "";
    height: 1px;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    background-color: #cbcbcb
}

.video-lightbox-grid>div:after {
    content: "";
    height: 4px;
    position: absolute;
    left: 15px;
    right: 100%;
    bottom: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: #2C83EC
}

.video-lightbox-grid>div:hover:after {
    right: 0
}

@media (max-width:769px) {
    .video-lightbox-grid>div:before {
        left: 30px;
        right: 30px
    }
}

.video-lightbox-grid>div:hover:after {
    right: 15px
}

.video-lightbox-grid>div:hover .video-thumbnail:after {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

@media (max-width:769px) {
    .video-lightbox-grid>div:hover:after {
        content: none
    }
}

@media (min-width:992px) {
    .video-lightbox-grid>div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.video-lightbox-grid>div .video-thumbnail {
    width: 100%;
    padding-top: 56.25%;
    display: block;
    position: relative
}

.video-lightbox-grid>div .video-thumbnail:before {
    position: absolute;
    content: "";
    height: 70px;
    width: 70px;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
    z-index: 1;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(0, 0, 0, .3)
}

@media (max-width:769px) {
    .video-lightbox-grid>div .video-thumbnail:before {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }
}

.video-lightbox-grid>div .video-thumbnail:after {
    opacity: 1;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    position: absolute;
    content: "";
    font-size: 0;
    width: 15px;
    height: 18px;
    top: calc(50% - 7px);
    left: calc(50% - 5px);
    z-index: 1;
    background-image: url();
    background-repeat: no-repeat
}

.video-lightbox-grid>div .video-thumbnail:hover:after {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.video-lightbox-grid>div .video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    border: 1px solid #cbcbcb;
    border-radius: 4px
}

.video-lightbox-grid>div p.subtitle {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 0
}

header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu>li:last-child a:hover {
    color: #000;
}

@media (max-width: 992px) {
    header#main-nav-bar .main-menu {
        display: block;
        padding: 0;
        height: 100%;
        width: 100%;
    }
    .visible-lg,
    .visible-lg-block,
    .visible-lg-inline,
    .visible-lg-inline-block,
    .visible-md,
    .visible-md-block,
    .visible-md-inline,
    .visible-md-inline-block,
    .visible-phone,
    .visible-sm,
    .visible-sm-block,
    .visible-sm-inline,
    .visible-sm-inline-block,
    .visible-xs,
    .visible-xs-block,
    .visible-xs-inline,
    .visible-xs-inline-block {
        display: block !important;
    }
}

@media (max-width: 992px) {
    header#main-nav-bar #nav-search button.btn-open-search .icon {
        left: 0;
        top: 166%;
    }
    header#main-nav-bar #nav-search button.btn-open-search .icon {
        margin-left: 42px;
    }
}

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

@media (max-width: 575.98px) {
    header#main-nav-bar .main-menu a.top-header-logo {
        margin: 0 0 0 15px;
        width: 109px;
    }
    header#main-nav-bar .main-menu nav.menu-items ul#menu-top-main-menu li {
        border-top: 2px solid #cbcbcb;
        height: 7%;
    }
    .carousel-control-prev {
        left: -45px;
    }
    .carousel-control-next {
        right: -34px;
    }
    #nav-icon3 {
        margin: 0;
    }
}

.visible-lg,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-md,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-phone,
.visible-sm,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-xs,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block {
    display: none;
}

@media (min-width: 768px) and (max-width:1024px) {
    .carousel-control-prev {
        display: none;
    }
    .carousel-control-next {
        display: none;
    }
    header#main-nav-bar .main-menu a.top-header-logo img {
        width: 100%;
        margin-top: 10px;
    }
    .main-section {
        margin-top: 65px;
    }
    .platform-box {
        height: 500px !important;
    }
}

@media (max-width: 767.98px) {
    header#main-nav-bar .main-menu a.top-header-logo img {
        width: 100%;
        margin-top: 12px;
    }
    .main-section {
        margin-top: 65px;
    }
}