/*/////////////////////////*/
/*                         */
/*         COLORS          */
/*                         */
/*/////////////////////////*/

:root {
    --very-lt-blue: #bff1f9;
    --med-lt-blue: #A5EBF7;
    --lt-blue: #83DFF3;
    --blue: #33d4f1;
    --med-blue: #19ABC5;
    --dark-blue: #003962;
    --green: #84C341;
    --yellow: #FFF664;
    --ultra-lt-gray: #EEE;
    --lt-gray: #D8D8D8;
    --gray: #B7B7B7;
    --dark-gray: #707070;
    --ultra-gray: #272727;
    --white: #fff;
    --off-white: #F8F8F8;
    --black: #000;
  }

/* Backgrounds & Overlays */
.bg-very-lt-blue {
    background-color: var(--very-lt-blue);
    color: var(--ultra-gray);
}

.bg-lt-blue {
    background-color: var(--lt-blue);
    color: var(--ultra-gray);
}

.bg-blue {
    background-color: var(--blue);
    color: var(--black);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
    color: var(--white);
}
.bg-green {
    background-color: var(--green);
    color: var(--black);
}

.bg-yellow {
    background-color: var(--yellow);
    color: var(--black);
}

.color-overlay .overlay {
    background-color: inherit;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0.75;
}
    .color-overlay .overlay-content {
        position: relative;
        z-index: 2;
    }

.bg-white {
    background-color: var(--white);
    color: var(--dark-gray);
}

.bg-off-white {
    background-color: var(--off-white);
    color: var(--ultra-gray);
}

.bg-ultra-lt-gray {
    background-color: var(--ultra-lt-gray);
    color: var(--ultra-gray);
}

.bg-lt-gray {
    background-color: var(--lt-gray);
    color: var(--ultra-gray);
}

.bg-gray {
    background-color: var(--gray);
    color: var(--ultra-gray);
}

.bg-dark-gray {
    background-color: var(--dark-gray);
    color: var(--white);
}

.bg-ultra-gray {
    background-color: var(--ultra-gray);
    color: var(--white);
}

.bg-black {
    background-color: var(--black);
    color: var(--lt-gray);
}

.bg-just-off-white {
    background-color: #fbfbfb;
}

/* Text Colors */

.text-white {
    color: var(--white) !important;
}

.text-off-white {
    color: var(--off-white) !important;
}

.text-lt-blue {
    color: var(--lt-blue) !important;
}

.text-blue {
    color: var(--blue) !important;
}

.text-dark-blue {
    color: var(--dark-blue) !important;
}

.text-green {
    color: var(--green) !important;
}

.text-yellow {
    color: var(--yellow) !important;
}

.text-lt-gray {
    color: var(--lt-gray) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.text-dark-gray {
    color: var(--dark-gray) !important;
}

.text-ultra-gray {
    color: var(--ultra-gray) !important;
}

.text-black {
    color: var(--black) !important;
}

/*/////////////////////////*/
/*                         */
/*          TYPE           */
/*                         */
/*/////////////////////////*/

body, html {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
}

#product-versions ul {
    padding-top:0px!important;
    padding-left: 20px!important;
    margin-bottom: 0px!important;
    top: -26px;
    position: relative;
}

@media (min-width: 576px) {
    body, html {
        font-size: calc(16px + 4 * ((100vw - 320px) / 680));
    }
}

@media (min-width: 1280px) {
    body, html {
        font-size: 21px;
    }
}
@media (min-width: 1780px) {
    body, html {
        font-size: 24px;
    }
}

/* Headings */

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--dark-blue);
}

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

.h1-plus {
    font-size: 2.5em!important;
}

h2, .h2 {
    font-size: 2em;
    text-transform: none!important;
}

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

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

h5, .h5 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.125em;
}

.testimonial-text {
    font-size: 1.5em;
}

@media(max-width:1479px) {
    h1, .h1 {
        font-size: 2em;
    }
}

@media(max-width:1279px) {
    h1, .h1,
    h2, .h2 {
        font-size: 1.75em;
    }
}

@media(max-width:1199px) {
    h1, .h1,
    h2, .h2,
    h3, .h3 {
        font-size: 1.5em;
    }
}

@media(max-width:991px) {
    h1, .h1 {
        font-size: 1.75em;
    }
}

@media(max-width:767px) {
    h1, .h1 {
        font-size: 2.25em;
    }
}

/* Text Defaults */

.normal-text {
    font-family: 'Source Sans Pro', sans-serif!important;
    font-size: 1em!important;
    font-weight: 400!important;
    line-height: 1.4em!important;
    text-transform: none!important;
}

.normal-text-plus {
    font-size: 1.4em!important;
}

.uppercase {
    text-transform: uppercase;
}

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

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

.no-wrap {
    white-space: nowrap;
}

b, strong {
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
}
    a:hover {
        text-decoration: none;
    }

article p a {
    text-decoration: underline;
}
    article p a:hover {
        text-decoration: none;
    }

.sr-only,
.slick-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/*/////////////////////////*/
/*                         */
/*        BUTTONS          */
/*                         */
/*/////////////////////////*/

.btn {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 45px;
    border-radius: 25px;
    border: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

@media(max-width:1199px) {
    .btn {
        padding: 10px 30px;
    }
}

@media(max-width:767px) {
    .btn {
        font-size: 14px;
    }
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--black);
}
    .btn-primary:hover {
        background-color: var(--black);
        color: var(--white);

    }
    .bg-dark-blue .btn-primary:hover,
    .bg-gray .btn-primary:hover,
    .bg-ultra-gray .btn-primary:hover,
    .bg-black .btn-primary:hover {
        background-color: var(--white);
        color: var(--black);
    }

.btn-secondary {
    background-color: var(--blue);
    color: var(--black);
    
}
    .btn-secondary:hover {
        background-color: var(--black);
        color: var(--white);
    }
    .bg-lt-blue .btn-secondary:hover,
    .bg-blue .btn-secondary:hover,
    .bg-off-white .btn-secondary:hover,
    .bg-lt-gray .btn-secondary:hover {
        background-color: var(--black);
        color: var(--white);
    }

.btn--black {
    background-color: var(--black);
    color: var(--white);
}
    .btn--black:hover {
        background-color: var(--blue);
        color: var(--black);
    }

.btn--white {
    background-color: var(--white);
    color: var(--dark-blue);
}
    .btn--white:hover,
    .btn--white.active {
        background-color: var(--dark-blue);
        color: var(--white);
    }

/* Arrow Links */

.arrow-link {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

    .arrow-link:after {
        font-family: "Font Awesome 5 Pro";
        font-size: 0.8em;
        font-weight: 600;
        content: "\f054";
        margin-left: 5px;
        transition: all 0.25s ease;
    }

    .arrow-link.back:after {
        content: "";
        margin-left: 0;
    }

    .arrow-link.back:before {
        font-family: "Font Awesome 5 Pro";
        font-size: 0.8em;
        font-weight: 600;
        content: "\f053";
        margin-right: 5px;
        transition: all 0.25s ease;
    }

.arrow-link:hover::after {
    margin-left: 15px;
}
    .arrow-link.back:hover::after {
        margin-left: 0;
    }
    .arrow-link.back:hover::before {
        margin-right: 15px;
    }

    .arrow-link.no-hover:after {
        content: "";
    }


/*/////////////////////////*/
/*                         */
/*         GLOBAL          */
/*                         */
/*/////////////////////////*/

.sb-active #sb-site {
    position: fixed;
    height: 100vh;
    overflow: hidden;
}

.JumpNav {
    position: absolute;
    top: -200px;
    z-index: 500;
    color: #ffffff;
    background: #666666;
    padding: 5px;
}

    .JumpNav:focus {
        top: 0;
        left: 0;
        color: #ffffff;
    }

.flex-row {
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    clear: both;
}

    .flex-row.container:before, 
    .flex-row.container:after, 
    .flex-row.row:before, 
    .flex-row.row:after {
        content: normal;
    }

.flex-column {
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    clear: both;
    height: 100%;
}

.flex-column_bottom {
    margin-top: auto;
}

.flex-center {
    display: flex;
    align-items: center;
    height: 100%;
}

.flex-1 {
    flex: 1;
}

#home--featured-clients img {
    opacity: .6;
}

@media(min-width: 992px) {

    /* Same Height Row */

    .row.match-height {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
      }
      .row.match-height > [class*='col-'] {
           display: flex;
           flex-direction: column;
      }

/*
* And with max cross-browser enabled.
* Nobody should ever write this by hand. 
* Use a preprocesser with autoprefixing.
*/
    .row.match-height {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .row.match-height > [class*='col-'] {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
        }
}

.absolute {
    position: absolute;
    z-index: 9;
}

.relative {
    position: relative;
}

.absolute.centerX {
    left: 50%;
    transform: translateX(-50%);
}

.absolute.centerY {
    top: 50%;
    transform: translateY(-50%);
}

.absolute.center {
    left: 50%!important;
    top: 50%!important;
    transform: translate(-50%, -50%)!important;
}

.parallax {
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.img-left {
  width: auto;
  max-width: 50%;
  margin: 0 20px 20px 0;
  float: left;
}

.img-right {
  width: auto;
  max-width: 50%;
  margin: 0 20px 20px 0;
  float: right;
}

.img-full {
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px 0;
}

@media (max-width:991px) {
    .img-left, .img-right {
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px 0;
    }
}

.list-inline {
    margin: 0;
}
    .list-inline li {
        display: inline-block;
        padding: 0 10px;
    }

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

.clickable {
    cursor: pointer;
}

.blurImg {
    position: relative;
    width: 100%;
    height: 540px;
    z-index: -1;
    top: 0;
    left: 0;
}

    .blurImg > div {
        position: fixed;
        width: 100%;
        height: 540px;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        background-position: center center;
    }

.blur {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.w100 {
    width: 100%;
}

.nav-tabs {
    border: 0;
}

.nav-tabs .nav-link {
    border: 0;
    border-radius: 0;
    background-color: var(--lt-blue);
    margin-right: 5px;
    color: var(--dark-blue);
    font-weight: bold;
}
@media(max-width:575px) {
    .nav-tabs .nav-link {
        font-size: 0.85em;
    }
}
@media(max-width:349px) {
    .nav-tabs .nav-link {
        margin-right: 2px;
        font-size: 0.725em;
    }
}

.nav-tabs .nav-link.active {
    background-color: var(--lt-gray);
}

/*/////////////////////////*/
/*                         */
/*        PADDING          */
/*                         */
/*/////////////////////////*/

.pad-lg {
    padding: 7.5em 5em;
}

.pad-md {
    padding: 5em;
}

.pad-sm {
    padding: 2.5em;
}

.pad-xs {
    padding: 1.25em;
}

.pad-xxs {
    padding: .75em;
}

.pt-lg {
    padding-top: 7.5em;
}

.pb-lg {
    padding-bottom: 7.5em;
}

@media(max-width:1479px) {
    .pad-lg,
    .pad-md {
        padding: 5em 2.5em;
    }

    .pt-lg {
        padding-top: 5em;
    }
    
    .pb-lg {
        padding-bottom: 5em;
    }
}

.pt-md {
    padding-top: 5em;
}

.pb-md {
    padding-bottom: 5em;
}

@media(max-width:991px) {
    .pad-lg,
    .pad-md {
        padding: 2.5em;
    }

    .pt-lg,
    .pt-md {
        padding-top: 2.5em;
    }
    
    .pb-lg,
    .pb-md {
        padding-bottom: 2.5em;
    }
}

.pt-sm {
    padding-top: 2.5em;
}

.pb-sm {
    padding-bottom: 2.5em;
}

@media(max-width:767px) {
    .pad-lg,
    .pad-md,
    .pad-sm {
        padding: 1.25em;
    }

    .pt-lg,
    .pt-md,
    .pt-sm {
        padding-top: 1.25em;
    }
    
    .pb-lg,
    .pb-md,
    .pb-sm {
        padding-bottom: 1.25em;
    }
}


.pt-xs {
    padding-top: 1em;
}

.pb-xs {
    padding-bottom: 1em;
}

@media(max-width:575px) {
    .pad-lg,
    .pad-md,
    .pad-sm,
    .pad-xs {
        padding: 1em;
    }

    .pt-lg,
    .pt-md,
    .pt-sm,
    .pt-xs {
        padding-top: 1em;
    }
    
    .pb-lg,
    .pb-md,
    .pb-sm,
    .pb-xs {
        padding-bottom: 1em;
    }
}

.pt-xxs {
    padding-top: 0.5em;
}

.pb-xxs {
    padding-bottom: 0.5em;
}

.pad-0 {
    padding: 0;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.margin-xxs {
    margin: 0.75em;
}

.mt-20-negative {
    margin-top: -20em;
}
    @media(max-width:991px) {
        .mt-20-negative {
            margin-top: -12.5em;
        }
    }
    @media(max-width:767px) {
        .mt-20-negative {
            margin-top: -7.5em;
        }
    }
    @media(max-width:575px) {
        .mt-20-negative {
            margin-top: -4.5em;
        }
    }


/*/////////////////////////*/
/*                         */
/*         HEADER          */
/*                         */
/*/////////////////////////*/

#header {
    position: fixed;
    width: 100%;
    z-index: 9;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.25);
}

#header .logo {
    height: 60px;
}
    #header.scrolled .logo {
        height: 50px;
    }
    @media(max-width:991px) {
        #header .logo,
        #header.scrolled .logo {
            height: 40px;
        }
    }

.utility-nav {
    position: absolute;
    top: 10px;
    right: 1.75em;
    font-size: 14px;
}
    .utility-nav li:nth-child(2n) {
        color: var(--blue);
    }
    .utility-nav a:hover {
        color: var(--dark-blue);
    }

#main-navigation {
    height: 105px;
    padding-left: 1rem;
    transition: all 0.5s ease !important;
}
    #main-navigation .navigation {
        position: absolute;
        right: 6px;
        bottom: .5em;
    }
    #header.scrolled #main-navigation .navigation {
        bottom: 0;
    }
    
    @media(max-width:991px) {
        #main-navigation .navigation,
        #utility-navigation {
            display: none;
        }
    }

#header.scrolled #main-navigation {
    height: 80px;
    padding: 0;
}

.navbar-brand {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.25rem;
    white-space: nowrap;
}


@media(max-width:991px) {
    #main-navigation,
    #header.scrolled #main-navigation {
        height: 60px !important;
        padding: 0 !important;
    }
}

.hamburger {
    display: block;
    width: 70px;
    padding: 20px 20px;
    margin-right: 60px;
}

    .hamburger .icon-bar {
        width: 100%;
        height: 2px;
        display: block;
        background-color: #fff;
        margin-bottom: 5px;
    }

        .hamburger .icon-bar:last-child {
            margin-bottom: 0;
        }

.navigation {
    margin: 0 -5px;
    padding: 0;
    text-align: right;
}

    .navigation > li {
        display: inline-block;
        position: relative;
        transition: all .3s;
    }
    .navigation > li.last {
        margin-right: 1.5em;
    }

        .navigation > li > a {
            color: var(--dark-blue);
            display: block;
            font-size: 16px;
            font-weight: 600;
            -moz-transition: all .15s;
            -o-transition: all .15s;
            -webkit-transition: all .15s;
            transition: all .15s;
            text-decoration: none;
            padding: 15px 25px;
        }

            .navigation > li:hover > a,
            .navigation > li > a:hover, 
            .navigation > li > a:focus {
                color: var(--dark-gray) !important;
            }

        .navigation > li.dropdown-open .dropdown-menu {
            display: block;
            animation: dropdownOpen 0.2s forwards;
            left: calc(75% + 1em);
        }
        .navigation > li.last.dropdown-open .dropdown-menu {
            left: calc(50% - 1em);
        }

.nav-item.dropdown:after {
    font-family: fontawesome;
    content: "\f078";
    position: absolute;
    font-size: 14px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.nav-item.dropdown:hover::after {
    color: var(--dark-gray);
}

.dropdown-menu {
    padding: 0 !important;
    top: calc(100% - 1px) !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    animation: dropdownOpen;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}

    .dropdown-menu:before {
        display: none;
    }

    .dropdown-menu > li {
        padding: 0;
        width: 100%;
    }

    .dropdown-menu > li > a {
        font-weight: 600;
        width: 100%;
        display: block;
        font-size: 14px;
        color: var(--dark-blue);
        background: var(--off-white) !important;
    }

    .dropdown-menu > li:last-of-type > a {
        border-bottom: 10px solid var(--blue) !important;
    }

    .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
        background: var(--lt-blue) !important;
    }

@keyframes dropdownOpen {
    0% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.dropdown-menu {
    margin: 0;
    padding: 10px 0 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    z-index: 9;
}
    .dropdown-menu > li > a {
        padding: 15px 20px;
        border: 0;
    }

    .dropdown-menu > li:first-of-type > a {
        border-top: 1px solid var(--dark-gray);
    }

.header.scrolled .navigation > li {
    padding-top: 13px;
    padding-bottom: 5px;
}

.dropdown, .dropup {
    position: relative;
}

@keyframes dropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


#header .toggle-mobile-menu {
    height: 70px;
    width: 70px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    z-index: 9;
}

#header.has-alert .toggle-mobile-menu {
    top: calc(50% + 25px);
}

@media(min-width:992px) {
    #header .toggle-mobile-menu {
        display: none;
    }
}

#header .toggle-mobile-menu .hamburger i {
    background: var(--dark-blue);
    height: 2px;
    width: 30px;
    margin: 0 auto;
    position: absolute;
    display: block;
    left: 25px;
    -webkit-transition: all .175s ease-out;
    -ms-transition: all .175s ease-out;
    -moz-transition: all .175s ease-out;
    -o-transition: all .175s ease-out;
    transition: all .175s ease-out;
}

    #header .toggle-mobile-menu .hamburger i:first-of-type {
        top: 25px;
    }

    #header .toggle-mobile-menu .hamburger i:nth-child(2) {
        top: 35px;
    }

    #header .toggle-mobile-menu .hamburger i:last-of-type {
        top: 45px;
    }

#header .toggle-mobile-menu:hover {
    cursor: pointer;
}

    #header .toggle-mobile-menu:hover .hamburger i:first-of-type {
        display: block;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        width: 15px;
        top: 29px;
        right: 0;
    }

    #header .toggle-mobile-menu:hover .hamburger i:last-of-type {
        display: block;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        width: 15px;
        top: 41px;
        right: 0;
    }

.sb-active #header .toggle-mobile-menu i {
    display: none;
}

.sb-active #header .toggle-mobile-menu .hamburger i:first-of-type,
.sb-active #header .toggle-mobile-menu:hover .hamburger i:first-of-type {
    display: block;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 10px;
    width: 30px;
    top: 25px;
    right: 30px;
}

.sb-active #header .toggle-mobile-menu .hamburger i:last-of-type,
.sb-active #header .toggle-mobile-menu:hover .hamburger i:last-of-type {
    display: block;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -10px;
    width: 30px;
    top: 45px;
    right: 30px;
}

/*--- SLIDEBAR/FLYOUT -------*/

.sb-slidebar {
    background-color: var(--off-white);
    color: var(--dark-blue);
    border-left: 1px solid var(--lt-gray);
    font-weight: 600;
}

.sb-slidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sb-slidebar .nav-primary {
    margin-top: 60px;
}

.sb-slidebar .menu-item {
    position: relative;
    font-size: 18px !important;
}
    .sb-slidebar .menu-item a {
        padding: 0.75rem 1.5rem;
        display: block;
        border-bottom: 1px solid #ccc;
    }

    .sb-slidebar .menu-item a:hover {
        background-color: var(--lt-blue);
    }

.sb-slidebar .toggle-submenu {
    height: 56px;
    width: 75px;
    position: absolute ;
    right: 0;
    top: 0;
    border-left: 1px solid #ccc;
}
@media(max-width:767px) {
    .sb-slidebar .toggle-submenu {
        height: 54px;
    }
}
@media(max-width:575px) {
    .sb-slidebar .toggle-submenu {
        height: 51px;
    }
}
    .sb-slidebar a.toggle-submenu {
        border-bottom: 0;
    }
.sb-slidebar .fa-caret-down,
.sb-slidebar .fa-caret-down:before {
    
    position: absolute;
    top: 50%;
    right: 35%;
    transform: translate(-50%,-50%);
}
.sb-slidebar .fa-caret-down:after {
    content: "\f0d7";
    position: absolute;
    top: 50%;
    right: 35%;
    transform: translate(-50%,-50%);
}
.sb-slidebar .sb-submenu-active .fa-caret-down:after {
    content: "";
}
.sb-slidebar .sb-submenu-active .fa-caret-down:before {
    content: "\f0d8";
}
.sb-slidebar ul.sb-submenu {
    display: none;
    font-size: 15px !important;
    border-bottom: 1px solid var(--lt-gray);
    padding: 0;
}
.sb-slidebar .submenu-item a {
    padding: 0.5rem 1.5rem;
    border-bottom: 0;
}
.sb-slidebar .submenu-item a:hover,
.sb-slidebar .submenu-item.active a {
    background-color: var(--lt-blue);
    font-weight: 600;
}

.sb-slidebar .nav-btns {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    padding-top: 1em;
}
    .sb-slidebar .nav-btns a.btn {
        display: block;
        margin: 0 auto;
        max-width: 70%;
        margin-top: 1.5em;
        padding: 0.25em 1.5em !important;
        font-size: 15px !important;
    }
    .sb-slidebar .nav-btns .nav-search {
        display: none;
    }

    @media (min-width: 768px) {
        .sb-width-wide {
            width: calc(50% + 30px);
        }
    }

/*/////////////////////////*/
/*                         */
/*         FOOTER          */
/*                         */
/*/////////////////////////*/
#footer {
    position: relative;
    left: -85px;
    width: 112%!important;
    margin-top: 45px;
}

#footer .logo {
    height: 60px;
    position: revert!important;
}

#footer .social {
    font-size: 1em;
    color: #707070;
}
    .social .fa-facebook:hover {
        color: #4267B2;
    }
    .social .fa-youtube:hover {
        color: #FF0000;
    }
    .social .fa-twitter:hover {
        color: #1DA1F2;
    }

.footer-nav {
    font-size: 0.85em;
    padding-bottom: 20px;
}
    .footer-nav a:hover {
        text-decoration: underline;
    }

footer a {
    color: #707070!important;
}


/*/////////////////////////*/
/*                         */
/*       ANIMATIONS        */
/*                         */
/*/////////////////////////*/

@media(min-width: 767px) {

    .popUp {
        -webkit-transform: translate3d(0,25px,0);
        -moz-transform: translate3d(0,25px,0);
        -ms-transform: translate3d(0,25px,0);
        -o-transform: translate3d(0,25px,0);
        transform: translate3d(0,25px,0);
        -moz-transition: all .4s;
        -o-transition: all .4s;
        -webkit-transition: all .4s;
        transition: all .4s;
    }

        .popUp.active {
            -webkit-transform: translate3d(0,0,0);
            -moz-transform: translate3d(0,0,0);
            -ms-transform: translate3d(0,0,0);
            -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
        }

    .dropDown {
        -webkit-transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        -o-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        -moz-transition: all .4s cubic-bezier(.3,.02,.3,1.01);
        -o-transition: all .4s cubic-bezier(.3,.02,.3,1.01);
        -webkit-transition: all .4s cubic-bezier(.3,.02,.3,1.01);
        transition: all .4s cubic-bezier(.3,.02,.3,1.01);
    }

        .dropDown.active {
            -webkit-transform: translate3d(0, 0, 0);
            -moz-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
            -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .textUp {
        -webkit-transform: translate3d(0,40px,0);
        -moz-transform: translate3d(0,40px,0);
        -ms-transform: translate3d(0,40px,0);
        -o-transform: translate3d(0,40px,0);
        transform: translate3d(0,40px,0);
        -moz-transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        -o-transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        -webkit-transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        transition: all 1.6s cubic-bezier(.075,.82,.165,1);
        opacity: 0;
    }

    .textUpLong {
        -webkit-transform: translate3d(0,120px,0);
        -moz-transform: translate3d(0,120px,0);
        -ms-transform: translate3d(0,120px,0);
        -o-transform: translate3d(0,120px,0);
        transform: translate3d(0,120px,0);
        -moz-transition: all 2s cubic-bezier(.075,.82,.165,1);
        -o-transition: all 2s cubic-bezier(.075,.82,.165,1);
        -webkit-transition: all 2s cubic-bezier(.075,.82,.165,1);
        transition: all 2s cubic-bezier(.075,.82,.165,1);
        opacity: 0;
    }

        .textUp.active,
        .textUpLong.active {
            -webkit-transform: translate3d(0,0,0);
            -moz-transform: translate3d(0,0,0);
            -ms-transform: translate3d(0,0,0);
            -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
            opacity: 1;
        }

    .fadeIn {
        -moz-transition: all .5s;
        -o-transition: all .5s;
        -webkit-transition: all .5s;
        transition: all .5s;
        opacity: 0;
    }

        .fadeIn.active, .animate.active .fadeIn {
            opacity: 1;
        }

    .fadeInLeft {
        -moz-transition: all .52s;
        -o-transition: all .52s;
        -webkit-transition: all .52s;
        transition: all .52s;
        -moz-transform: translate3d(-20px, 0, 0);
        -ms-transform: translate3d(-20px, 0, 0);
        -o-transform: translate3d(-20px, 0, 0);
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
        opacity: 0;
    }

        .fadeInLeft.active {
            opacity: 1;
            -moz-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
            -o-transform: translate3d(0, 0, 0);
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .fadeInRight {
        -moz-transition: all .52s;
        -o-transition: all .52s;
        -webkit-transition: all .52s;
        transition: all .52s;
        -moz-transform: translate3d(20px, 0, 0);
        -ms-transform: translate3d(20px, 0, 0);
        -o-transform: translate3d(20px, 0, 0);
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
        opacity: 0;
    }

        .fadeInRight.active {
            opacity: 1;
            -moz-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
            -o-transform: translate3d(0, 0, 0);
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .fadeInLeftLong {
        -moz-transition: all .52s;
        -o-transition: all .52s;
        -webkit-transition: all .52s;
        transition: all .52s;
        -moz-transform: translate3d(-35px, 0, 0);
        -ms-transform: translate3d(-35px, 0, 0);
        -o-transform: translate3d(-35px, 0, 0);
        -webkit-transform: translate3d(-35px, 0, 0);
        transform: translate3d(-35px, 0, 0);
        opacity: 0;
    }

        .fadeInLeftLong.active {
            opacity: 1;
            -moz-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
            -o-transform: translate3d(0, 0, 0);
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .fadeInRightLong {
        -moz-transition: all 1s;
        -o-transition: all 1s;
        -webkit-transition: all 1s;
        transition: all 1s;
        -moz-transform: translate3d(200%, 0, 0);
        -ms-transform: translate3d(200%, 0, 0);
        -o-transform: translate3d(200%, 0, 0);
        -webkit-transform: translate3d(200%, 0, 0);
        transform: translate3d(200%, 0, 0);
        opacity: 0;
    }

        .fadeInRightLong.active {
            opacity: 1;
            -moz-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
            -o-transform: translate3d(0, 0, 0);
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    .fadeDown {
        -moz-transition: all .52s;
        -o-transition: all .52s;
        -webkit-transition: all .52s;
        transition: all .52s;
        -moz-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        -o-transform: translate3d(0, -20px, 0);
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
        opacity: 0;
    }

        .fadeDown.active {
            opacity: 1;
            -moz-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
            -o-transform: translate3d(0, 0, 0);
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .textUpLong.slow {
        -webkit-transform: translate3d(0,40px,0);
        -moz-transform: translate3d(0,40px,0);
        -ms-transform: translate3d(0,40px,0);
        -o-transform: translate3d(0,40px,0);
        transform: translate3d(0,40px,0);
        opacity: 0;
        -moz-transition: all 3s cubic-bezier(.075,.82,.165,1);
        -o-transition: all 3s cubic-bezier(.075,.82,.165,1);
        -webkit-transition: all 3s cubic-bezier(.075,.82,.165,1);
        transition: all 3s cubic-bezier(.075,.82,.165,1);
    }

        .textUpLong.slow.active {
            -webkit-transform: translate3d(0,0,0);
            -moz-transform: translate3d(0,0,0);
            -ms-transform: translate3d(0,0,0);
            -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
            opacity: 1;
        }

    .slideDown {
        -webkit-transform: translate3d(0,-16px,0);
        -moz-transform: translate3d(0,-16px,0);
        -ms-transform: translate3d(0,-16px,0);
        -o-transform: translate3d(0,-16px,0);
        transform: translate3d(0,-16px,0);
        -moz-transition: all .6s cubic-bezier(.8,-0.93,.79,.94);
        -o-transition: all .6s cubic-bezier(.8,-0.93,.79,.94);
        -webkit-transition: all .6s cubic-bezier(.8,-0.93,.79,.94);
        transition: all .6s cubic-bezier(.8,-0.93,.79,.94);
    }


        .slideDown.active {
            -webkit-transform: translate3d(0,0,0);
            -moz-transform: translate3d(0,0,0);
            -ms-transform: translate3d(0,0,0);
            -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
        }

    .slideInLeft {
        -webkit-transform: translate3d(-200%,0,0);
        -moz-transform: translate3d(-200%,0,0);
        -ms-transform: translate3d(-200%,0,0);
        -o-transform: translate3d(-200%,0,0);
        transform: translate3d(-200%,0,0);
        -moz-transition: all 1s;
        -o-transition: all 1s;
        -webkit-transition: all 1s;
        transition: all 1s;
    }

        .slideInLeft.active {
            -webkit-transform: translate3d(0,0,0);
            -moz-transform: translate3d(0,0,0);
            -ms-transform: translate3d(0,0,0);
            -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
            -moz-transition: all 1s cubic-bezier(.075,.82,.165,1);
            -o-transition: all 1s cubic-bezier(.075,.82,.165,1);
            -webkit-transition: all 1s cubic-bezier(.075,.82,.165,1);
            transition: all 1s cubic-bezier(.075,.82,.165,1);
        }

    .slideInRight {
        -webkit-transform: translate3d(100vw,0,0);
        -moz-transform: translate3d(100vw,0,0);
        -ms-transform: translate3d(100vw,0,0);
        -o-transform: translate3d(100vw,0,0);
        transform: translate3d(100vw,0,0);
        -moz-transition: all 1s;
        -o-transition: all 1s;
        -webkit-transition: all 1s;
        transition: all 1s;
    }

        .slideInRight.active {
            -webkit-transform: translate3d(0,0,0);
            -moz-transform: translate3d(0,0,0);
            -ms-transform: translate3d(0,0,0);
            -o-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
        }

    .swing {
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        -webkit-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        -webkit-transform: rotatex(-90deg) translateZ(0);
        -ms-transform: rotatex(-90deg) translateZ(0);
        -moz-transform: rotatex(-90deg) translateZ(0);
        -o-transform: rotatex(-90deg) translateZ(0);
        transform: rotatex(-90deg) translateZ(0);
        -webkit-transform-origin: 0 0 0;
        -ms-transform-origin: 0 0 0;
        -moz-transform-origin: 0 0 0;
        -o-transform-origin: 0 0 0;
        transform-origin: 0 0 0;
        opacity: 0;
    }

        .swing.active {
            -webkit-transform: rotatex(0) translateZ(0);
            -ms-transform: rotatex(0) translateZ(0);
            -moz-transform: rotatex(0) translateZ(0);
            -o-transform: rotatex(0) translateZ(0);
            transform: rotatex(0) translateZ(0);
            opacity: 1;
        }

    .expand {
        -moz-transition: .45s;
        -o-transition: .45s;
        -webkit-transition: .45s;
        transition: .45s;
        -webkit-transform: scale(.75) translateZ(0);
        -ms-transform: scale(.75) translateZ(0);
        -moz-transform: scale(.75) translateZ(0);
        -o-transform: scale(.75) translateZ(0);
        transform: scale(.75) translateZ(0);
        opacity: .25;
    }

        .expand.active {
            -webkit-transform: scale(1) translateZ(0);
            -ms-transform: scale(1) translateZ(0);
            -moz-transform: scale(1) translateZ(0);
            -o-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
            opacity: 1;
        }

    .delay-1 {
        -moz-transition-delay: .15s;
        -o-transition-delay: .15s;
        -webkit-transition-delay: .15s;
        transition-delay: .15s;
    }

    .delay-2 {
        -moz-transition-delay: .3s;
        -o-transition-delay: .3s;
        -webkit-transition-delay: .3s;
        transition-delay: .3s;
    }

    .delay-3 {
        -moz-transition-delay: .45s;
        -o-transition-delay: .45s;
        -webkit-transition-delay: .45s;
        transition-delay: .45s;
    }

    .delay-4 {
        -moz-transition-delay: .6s;
        -o-transition-delay: .6s;
        -webkit-transition-delay: .6s;
        transition-delay: .6s;
    }

    .delay-5 {
        -moz-transition-delay: .75s;
        -o-transition-delay: .75s;
        -webkit-transition-delay: .75s;
        transition-delay: .75s;
    }

    .delay-6 {
        -moz-transition-delay: .9s;
        -o-transition-delay: .9s;
        -webkit-transition-delay: .9s;
        transition-delay: .9s;
    }
}


/*/////////////////////////*/
/*                         */
/*       PAGE STYLES       */
/*                         */
/*/////////////////////////*/

#main--banner {
    margin-top: 105px;
    max-height: 1000px;
    overflow: hidden;
}
@media(max-width:991px) {
    #main--banner {
        margin-top: 60px;
    }
}

#main--banner .h1 {
    font-weight: 800;
}

@media(max-width:767px) {
    #home #main--banner img {
        max-width: 60%;
        margin: 0 auto;
    }
}

#main--banner.overview-banner img {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 30vw;
    max-height: 500px;
}

@media(max-width:767px) {
    #main--banner.overview-banner img {
        position: relative !important;
        top: auto;
        left: auto;
        transform: none;
        height: auto;
        max-height: 100%;
        max-width: 100%;
    }
}

.checkmark-list {
    list-style: none;
    padding-left: 0;
}
    .checkmark-list li {
        padding-left: 2.5em;
        margin-bottom: 1em;
        background-image: url(../img/check-lg.svg);
        background-repeat: no-repeat;
        background-size: 1.5em;
        background-position: 0 .5em;
    }
    .checkmark-list.small-mark li {
        background-size: 1em;
    }

@media(max-width:1199px) {
    #home--features .desktop-image img {
        max-height: 35vw;
    }
}

@media(min-width:1200px) {
    #home--integrations .col-xl-auto {
        width: 14.25%;
    }
}
.integration-logo img {
    max-height: 90px;
}
.doc-type--item:before {
    content: "";
    background: var(--dark-blue);
    position: absolute;
    bottom: -7px;
    right: -7px;
    height: 7px;
    width: 100%;
}
.doc-type--item:after {
    content: "";
    background: var(--dark-blue);
    position: absolute;
    bottom: 0;
    right: -7px;
    height: calc(100% - 7px);
    width: 7px;
}
    .doc-type--item img {
        max-height: 75px;
    }

    .testimonials-slider .slick-arrow {
        position: absolute;
        border: 0;
        font-family: fontawesome;
        font-size: 30px;
        color: var(--gray);
        height: 45px;
        width: 45px;
        background: none;
        top: 50%;
        transform: translateY(-50%);
    }
        .testimonials-slider .slick-arrow.slick-next {
            right: -1em;
        }
            .testimonials-slider .slick-arrow.slick-next:before {
                content: "\f054";
            }
        .testimonials-slider .slick-arrow.slick-prev {
            left: -1em;
        }
            .testimonials-slider .slick-arrow.slick-prev:before {
                content: "\f053";
            }

    .testimonials-slider .slick-dots {
        list-style: none !important;
        width: 100%;
        text-align: center;
        padding: 0;
        position: absolute;
    }
    .testimonials-slider  .slick-dots li {
        display: inline;
        width: auto;
        margin: 0 0.25em;
    }
    .testimonials-slider .slick-dots button {
        border: 0;
        background: var(--dark-gray);
        height: 20px;
        width: 20px;
        border-radius: 10px;
    }
    .testimonials-slider .slick-dots .slick-active button {
        background: var(--off-white);
    }
    
    .testimonials-slider  .slick-autoplay-toggle-button {
        display: none;
    }

    #product-details .laptop-frame {
        z-index: 10;
        position: relative;
    }
    #product-details .screenshot {
        max-width: 548px;
        margin-left: -10px;
        margin-top: 1px;
        border: 2px solid black;
    }
        @media(max-width:1399px) {
            #product-details .screenshot {
                max-width: 474px;
            }
        }
        @media(max-width:1199px) {
            #product-details .screenshot {
                max-width: 404px;
            }
        }
        @media(max-width:991px) {
            #product-details .screenshot {
                max-width: 374px;
            }
        }
        @media(max-width:767px) {
            #product-details .screenshot {
                max-width: 334px;
            }
        }
        @media(max-width:575px) {
            #product-details figure {
                text-align: center;
            }
            #product-details .laptop-frame {
                width: 320px;
            }
            #product-details .screenshot {
                max-width: 212px;
                margin-left: -4px;
                margin-top: 0;
            }
        }
        @media(max-width:375px) {
            #product-details .laptop-frame {
                width: 220px;
            }
            #product-details .screenshot {
                max-width: 144px;
                margin-left: -2px;
            }
        }
@media(min-width: 1400px) {
    .product--jump-links .col-xl-auto {
        width: 20%;
    }
}
.product--jump-links img,
#product-more-info img {
    height: 100px;
}
    @media(max-width: 991px) {
        .product--jump-links img,
        #product-more-info img {
            height: 80px;
        }
    }

.product--jump-links figure:hover {
    cursor: pointer;
}
    .product--jump-links figure:hover img {
        background-color: var(--lt-blue);
    }
    .product--jump-links figure:hover small {
        color: var(--blue);
    }

@media(max-width: 575px) {
    .product--jump-links .no-wrap {
        white-space: normal;
    }
    .product--jump-links small,
    .product--jump-links .small {
        line-height: 1em;
    }
    .product--jump-links img,
    #product-more-info img {
        height: 60px;
    }
}

@media(min-width:1200px) {
    #product-versions .version--content {
        width: calc(33.33333333% - 1.5em);
    }
}
@media(max-width:1199px) {
    #product-versions .version--content {
        width: calc(100% - 1.5em);
    }
}

@media(min-width:1200px) {
    #product-guides .version--content {
        width: calc(24% - 1.5em);
    }
}

@media(min-width:1200px) {
    .chapter-link {
        width: calc(33% - 1.5em);
    }
}
@media(max-width:1199px) {
    .chapter-link {
        width: calc(100% - 1.5em);
    }
}

@media(min-width:1200px) {
    #product-system-requirements .version--content {
        width: calc(33.33333333% - 1.5em);
    }
}
@media(max-width:1199px) {
    #product-system-requirements .version--content {
        width: calc(100% - 1.5em);
    }
}

.version--content, .chapter-link {
    border-radius: 6px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.chapter-link {
    font-size: 14px;
}

#filterBtns .btn {
    font-size: 16px;
    padding: 10px 30px;
    margin: 0 10px 15px 0;
    text-transform: none;
}
    @media(max-width:1399px) {
        #filterBtns .btn {
            font-size: 15px;
            padding: 10px 25px;
        }
    }
    @media(max-width:1199px) {
        #filterBtns .btn {
            font-size: 14px;
            margin: 0 5px 10px 0;
        }
    }
    @media(max-width:991px) {
        #filterBtns .btn span {
            display: none;
        }
    }
    @media(max-width:767px) {
        #filterBtns .btn {
            padding: 5px 15px;
        }
    }

.filterDiv {
    display: none;
}
    .filterDiv.show {
        display: block;
    }

#who-we-help hr {
    border: 0;
    opacity: 1;
    background-color: var(--dark-blue); 
    display: block;
    height: 5px;
    width: 180px;
    margin-bottom: -1rem;
}

#banner-image {
    padding: 140px;
    height: 694px;
    background-image: url('/content/assets/img/background.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-position-x: center;
    background-position-y: center;
    left: -133px;
    position: relative;
}


/*/////////////////////////*/
/*                         */
/*       VIDEO MODAL       */
/*                         */
/*/////////////////////////*/

#video-modal .modal {
    background: rgba(0,0,0,0.65);
}
#video-modal .modal-dialog {
    max-width: 90vw;
    margin: 0 auto;
}
#video-modal .modal-content {
    background: transparent;
    border: 0;
    margin-top: 60px;
}
#video-modal .modal-content .close {
    background: transparent;
    border: 0;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    right: 0.25em;
    position: absolute;
    top: -1em;
}
