/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
}

/* Scaffolding */
html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font: normal 400 1rem/1.6 "Roboto", "Open Sans", Helvetica, Arial, sans-serif;
    color: #404040;
    background: white;
}

p,
ol,
ul,
dl,
table {
    margin: 0 0 1rem;
}

    ul li ul,
    ol li ol {
        margin-bottom: 0;
    }

h1:first-of-type,
h2:first-of-type {
    margin-top: 1rem;
}

/* Typography and fonts */
html *,
h1,
h2,
h3,
h4,
h5,
h6,
h2 span,
h3 span {
    font-family: "Roboto", "Open Sans", sans-serif; /* "Raleway" */
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.625rem;
}

h3 {
    font-size: 1.375rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

@media (max-width: 600px) {
    h1.large,
    h1.lead-head,
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.3125rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.125rem;
    }

    h5 {
        font-size: 1rem;
    }
}

a {
    color: var(--vc-blue);
    text-decoration: none;
}

    a:hover,
    a:active,
    a:focus {
        text-decoration: underline;
        text-decoration-color: #0246a2;
    }

hr {
    height: 0;
    border: 0;
    border-top: 1px solid #dedede;
}

/* Containers */

.container-full {
    max-width: 100%;
    padding: 0 1rem;
}

.container,
.container-xs,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    /*min-height: 384px;*/
    max-width: 1600px;
    padding: 0 1rem;
    margin-left: auto;
    margin-right: auto;
}

.container-xs {
    max-width: 540px;
}

.container-sm {
    max-width: 1000px;
}

.container-md {
    max-width: 1200px;
}

.container-lg {
    max-width: 1400px;
}

.container-xl {
    max-width: 1600px;
}

/* Flex containers, rows and columns */

/* Flex container basic, no margins, etc. */

.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

    .flex > [class^="flex-"] {
        flex: 0 1 100%; /* unit on third item, flex-basis i.e. width, needed for IE 11 */
        flex-grow: 0;
        flex-shrink: 1;
        flex-basis: 100%;
        max-width: 100%; /* max-width needed for IE 11 */
        margin-bottom: 0;
    }

    .flex > .flex-1-2 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .flex > .flex-1-4 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .flex > .flex-3-4 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .flex > .flex-1-3 {
        flex-basis: calc(100% / 3 * 1);
        max-width: calc(100% / 3 * 1);
    }

    .flex > .flex-2-3 {
        flex-basis: calc(100% / 3 * 2);
        max-width: calc(100% / 3 * 2);
    }

    .flex > .flex-inline {
        flex: 0 1 auto; /* width of content */
    }

.align-center {
    align-items: center;
}

/* Flex container as row, margins, stacking, etc. */

.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

/* flex items as columns */

.flex-column {
    display: flex;
    flex-flow: column nowrap;
}

/* Flex items (columns) ordering for Small Screens */

@media (max-width: 800px) {
    .order-1 {
        order: 1;
    }

    .order-2 {
        order: 2;
    }
}

/* Mobile small screens first */
/* Flex items stack on small screens */
.flex-row > [class^="flex-"] {
    flex: 0 1 100%; /* unit on third item, flex-basis i.e. width, needed for IE 11 */
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
/* nested flex-row margins */
.flex-row .flex-row > [class^="flex-"] {
    margin-bottom: 0;
}

/* Small screen breakpoint */
@media (min-width: 520px) {
    /* flex-row items have bottom margins */
    .flex-row > [class^="flex-"] {
        margin-bottom: 0.5rem;
    }
    /* nested flex-row no margins */
    .flex-row .flex-row > [class^="flex-"] {
        margin-bottom: 0 !important;
    }

    .flex-row > .flex-small {
        flex-basis: 50%;
        max-width: 50%;
    }

    .flex-row > .flex-1-2 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .flex-row > .flex-qtr {
        flex-basis: 25%;
        max-width: 25%;
    }

    .flex-row > .flex-three-qtr {
        flex-basis: 75%;
        max-width: 75%;
    }

    .flex-row > .flex-1-4 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .flex-row > .flex-2-4 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .flex-row > .flex-3-4 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .flex-row > .flex-2-5 {
        flex-basis: 40%;
        max-width: 40%;
    }

    .flex-row > .flex-3-5 {
        flex-basis: 60%;
        max-width: 60%;
    }

    .flex-row > .flex-1-3 {
        flex-basis: calc(100% / 3 * 1);
        max-width: calc(100% / 3 * 1);
    }

    .flex-row > .flex-2-3 {
        flex-basis: calc(100% / 3 * 2);
        max-width: calc(100% / 3 * 2);
    }

    .flex-row > .flex-auto {
        flex: 0 1 auto; /* width of content */
    }
}

/* Medium screen breakpoint */
@media (min-width: 798px) {
    .flex-row > .flex-1-3-md {
        flex-basis: calc(100% / 3 * 1);
        max-width: calc(100% / 3 * 1);
        margin-bottom: 0.5rem;
    }

    .flex-row > .flex-2-3-md {
        flex-basis: calc(100% / 3 * 2);
        max-width: calc(100% / 3 * 2);
    }

    .flex-row > .flex-1-2-md {
        flex-basis: 50%;
        max-width: 50%;
        margin-bottom: 0.5rem;
    }

    .flex-row > .flex-md {
        flex-basis: 50%;
        max-width: 50%;
        margin-bottom: 0.5rem;
    }
}

/* Layout */

/* Page content styles */

#content,
.page-content {
    min-height: calc(100vh - 90px); /* Sticky footer */
}

article {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.5rem;
}

/* Footer styles */

footer {
    margin: 0 auto;
    padding: 2rem 1rem 1rem;
}

    footer p {
        font-size: 0.825rem;
        color: #eee;
    }

/* Panels for content groups, sidebars */

.panel {
    background-color: #f0f3f5;
    background: radial-gradient(#fff 50%, #f0f3f5);
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    overflow: hidden;
}

.panel-head {
    padding: 0.25rem;
    min-height: 1.5rem;
}

.panel-body {
    padding: 1rem;
}

/* Tables */
table,
.table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    max-width: 100%;
}

table {
    margin: 0.5rem 0 1rem;
}

th,
td {
    padding: 0.5rem;
}

.table thead {
    line-height: 1.2;
    font-weight: bold;
}

.table td {
    border-bottom: 1px solid #dedede;
}

.table th,
.table td {
    padding: 0.5rem;
}

/* Striped tables */
.table-striped tbody tr:nth-child(odd) {
    background-color: #f8f8f8;
}

.table-sm,
.table-sm th,
.table-sm td {
    padding: 0.25rem;
}

/* Hover tables */
.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

/* Responsive tables - wrap table in div with overflow-x */

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* Navigation */

/* Section for page header and nav wrappers */
#navigation {
    position: fixed; /* Nav can be fixed or absolute */
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    z-index: 1000;
}

/* container to limit width of navs */
.nav-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* First nav wrapper for customer support */
.nav-contact {
    background: #1f56ad;
    background: linear-gradient(to left, #1f56ad 30%, #2870e3);
}

ul.nav-support {
    margin: 0 1.5rem 0 auto;
    padding: 0;
    list-style-type: none;
    text-align: center;
}

    ul.nav-support li {
        display: inline-block;
        margin: 0.5rem;
    }

        ul.nav-support li a,
        ul.nav-support li span {
            font-size: 0.875rem;
            font-weight: bold;
            text-decoration: none;
            color: #eee;
        }

/* Second nav wrapper for brand and nav-main */
.nav-primary {
    height: 60px;
    background: #fff; /* #004599 */
}

/* Brand logo - left side of nav-primary */
.brand {
    padding-left: 20px;
    float: left;
    line-height: 60px;
    /*font-size: 1.4em;*/
}

    .brand a,
    .brand a:visited {
        color: #ffffff;
        text-decoration: none;
    }

        .brand a img {
            max-height: 90px;
            max-width: 200px;
            vertical-align: text-bottom;
        }

/* Nav for solutions and products - right side of nav-primary */
nav.nav-main {
    float: right;
    background: #fff;
}

    nav.nav-main ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        nav.nav-main ul li {
            float: left;
            position: relative;
        }

            nav.nav-main ul li a,
            nav.nav-main ul li a:visited {
                display: block;
                padding: 0 12px;
                line-height: 60px;
                color: #42526e; /* #55595e */
                text-decoration: none;
                font-weight: 600;
            }

                nav.nav-main ul li a:hover,
                nav.nav-main ul li a:visited:hover {
                    background: #d1e8f8;
                    background: linear-gradient(to top, #d1e8f8, #e1effa);
                    color: #0052cc; /* #004599 */
                }

                nav.nav-main ul li a:not(:only-child):after,
                nav.nav-main ul li a:visited:not(:only-child):after {
                    padding-left: 4px;
                    content: "\25be"; /* CSS Code small down arrow, or Unicode U+25BE */
                }

            nav.nav-main ul li ul li {
                /*min-width: 180px;*/
                min-width: 100%;
            }

ul.nav-dropdown li a {
    line-height: 1.2rem !important;
    border-top: 1px solid #eee;
    white-space: nowrap; /* New Jan 2022 */
}

ul.nav-dropdown li:last-child a {
    border-bottom: 1px solid #eee;
}

nav.nav-main ul li ul li a {
    display: block;
    padding: 0.8125rem 1rem; /* to match 30px height */
}

.nav-dropdown {
    position: absolute;
    display: none;
    background: #fff;
    z-index: 1001;
    box-shadow: 0 6px 5px rgba(0, 0, 0, 0.15);
}

li:hover .nav-dropdown {
    display: block;
}

ul.nav-list li:last-child .nav-dropdown {
    right: 10px;
}

/* Mobile navigation */
.nav-mobile {
    display: none; /* Hide for large screens */
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 70px;
}

@media only screen and (max-width: 998px) {
    /* New Jan 2022 - max-width */
    .nav-mobile {
        display: block; /* Show for small screens */
    }

    nav.nav-main {
        width: 100%;
        max-height: calc(100vh - 90px); /* Screen less height of main header */
        overflow-y: auto;
    }

        nav.nav-main ul {
            display: none;
        }

            nav.nav-main ul li {
                float: none;
            }

                nav.nav-main ul li a {
                    padding: 0.5rem 1rem;
                }

                nav.nav-main ul li ul li a {
                    padding-left: 30px;
                }

                nav.nav-main ul li a,
                nav.nav-main ul li a:visited {
                    line-height: 30px;
                }

    .nav-dropdown {
        position: static;
        box-shadow: none;
    }
}

@media screen and (min-width: 999px) {
    .nav-list {
        display: block !important;
    }

    /* For inline main a tags, not blocks */
    nav.nav-main ul.nav-list > li > a,
    nav.nav-main ul.nav-list > li > a:visited {
        display: inline;
        background: transparent;
    }

        nav.nav-main ul.nav-list > li > a:hover,
        nav.nav-main ul.nav-list > li > a:visited:hover {
            color: #0052cc; /* #004599 */
        }
}

/* Styles for three bar mobile menu icon */
#nav-toggle {
    position: absolute;
    left: 18px;
    top: 18px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}

    #nav-toggle span,
    #nav-toggle span:before,
    #nav-toggle span:after {
        cursor: pointer;
        border-radius: 1px;
        height: 5px;
        width: 35px;
        background: #004599; /* #ffffff */
        position: absolute;
        display: block;
        content: "";
        transition: all 300ms ease-in-out;
    }

        #nav-toggle span:before {
            top: -10px;
        }

        #nav-toggle span:after {
            bottom: -10px;
        }

    #nav-toggle.active span {
        background-color: transparent;
    }

        #nav-toggle.active span:before,
        #nav-toggle.active span:after {
            top: 0;
        }

        #nav-toggle.active span:before {
            transform: rotate(45deg);
        }

        #nav-toggle.active span:after {
            transform: rotate(-45deg);
        }

/* Toggle sections and headings */

.heading-background {
    padding: 0.25rem;
    background: #e1e4e5;
}

.toggle {
    float: right;
    cursor: pointer;
}

h2 > span.toggle,
h3 > span.toggle {
    font-size: 80%;
    line-height: 1.6;
}

.toggleHead {
    float: right;
}

h2 > span.toggle,
h3 > span.toggle {
    font-size: 80%;
    line-height: 1.6;
}

/* Scrolltop link at bottom of pages */

.back-to-top,
.back-to-top:focus,
.back-to-top:active,
.back-to-top:visited {
    display: none;
    padding: 0.5rem;
    border-radius: 0.25rem;
    background: rgba(0, 0, 0, 0.3);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: bold;
    z-index: 99;
    position: fixed;
    right: 20px;
    bottom: 20px;
}

    .back-to-top:hover {
        /*background: rgba(8,139,69,.9);*/ /* Default green */
        /*background: linear-gradient(45deg, #1de099, #1dc8cd);*/
        background: linear-gradient( 45deg, rgba(0, 191, 90, 1), rgba(31, 204, 113, 1) );
    }

/* Tabs, used for property content */

.tabs {
    /* container for tabs */
    margin: 0 auto;
    min-height: 320px; /*384px */
}

.Xtab-bkgd {
    margin: 0.5rem auto;
    padding: 0;
    overflow-x: auto;
    background-image: linear-gradient( to right, rgba(225, 228, 229, 0) 5%, rgba(225, 228, 229, 0.5) 15%, rgba(225, 228, 229, 0.9) 40%, rgba(225, 228, 229, 0.9) 60%, rgba(225, 228, 229, 0.5) 85%, rgba(225, 228, 229, 0) 95% );
}

.tabs ul.tab-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

    .tabs ul.tab-list li {
        display: inline-block;
    }

.tab-list {
    border-radius: 0.25rem;
    /*white-space: nowrap;*/ /* to use, also set min-width below */
}

    .tab-list a.active-tab {
        transition: box-shadow 0.15s ease-in-out;
    }

    .tab-list a.active-tab {
        color: #fff; /* #088b45 Default green */
        /*border-bottom-color: #088b45;*/
        box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.25);
    }

.tab-content {
    display: none;
    /*padding-top: 1.5rem;*/
}

.show-tab {
    display: block;
    /*padding-top: 1.5rem;*/
}

/* Responsive styles for tabs */

@media only screen and (max-width: 801px) {
    .tab-list a {
        white-space: -moz-pre-wrap !important;
        white-space: pre-wrap;
        word-break: keep-all; /*this stops the word breaking*/
    }
}

@media (max-width: 600px) {
    .tab-list a {
        padding: 0.25rem 0.125rem;
        font-size: 0.875rem;
    }

    .tab-bkgd {
        margin: 0.25rem auto 0;
    }
}

/* Misc
  =============== */

/* Custom Gradients */

.grad-lt-top {
    /*background: linear-gradient(to bottom, #c6e4f7, #fff 3rem);*/
    background: linear-gradient(to bottom, #bbdbfa, #fff 3rem);
}

.grad-brand-hz {
    background: #003980;
    background: linear-gradient(to right, #003576 10%, #005aa8 90%);
}

.grad-brand-alt-hz {
    background: #088b45;
    background: linear-gradient(to right, #088b45 10%, #0bb03c 90%);
}

/* Custom Headings - with backgrounds */

h2[class*="grad-"], /* headings with grad or bkgd need padding */
h3[class*="grad-"],
h2[class*="bkgd-"],
h3[class*="bkgd-"] {
    padding: 0.25rem;
}

    h2[class*="grad-"]:not([class*="-lt"]), /* headings with grad or bkgd need light text */
    h2[class*="grad-"]:not([class*="-lt"]) .toggle *,
    h3[class*="grad-"]:not([class*="-lt"]),
    h2[class*="bkgd-"]:not([class*="-lt"]),
    h2[class*="bkgd-"]:not([class*="-lt"]) .toggle *,
    h3[class*="bkgd-"]:not([class*="-lt"]) {
        color: #f2f2f2 !important;
    }

/*
h2[class*="grad-"] i, /* headings with grad or bkgd with icons need margin on icons * /
h3[class*="grad-"] i,
h2[class*="bkgd-"] i,
h3[class*="bkgd-"] i {
    /*margin-left: .25rem;*
	/*margin-right: .25rem;* /
}
*/

/* Animation and transitions for page content and tabs */

@-webkit-keyframes fadeIn {
    /* fade in content */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.page-content > div,
.page-content > form,
.page-content iframe,
.tab-content,
.slide-content,
.filter-bar {
    -webkit-animation: fadeIn 1.5s;
    animation: fadeIn 1.5s;
}

.page-content {
    -webkit-animation: fadeIn 1.5s;
    animation: fadeIn 1.5s;
}

    .page-content * {
        transition: font-size 0.5s linear, padding 0.5s linear, margin 0.5s linear;
    }

.shadow {
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}

/* Helpers
  =============== */
.clearfix::before,
.clearfix::after {
    content: " ";
    display: block;
}

.clearfix:after {
    clear: both;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline {
    /*display: inline;*/
}

.vertical-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.responsive-image {
    max-width: 100%;
    height: auto;
}

.show {
    display: block !important;
}

.hide {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.padding {
    padding: 0.5rem;
}

.padding-sm {
    padding: 0.25rem;
}

.padding-lg {
    padding: 0.75rem;
}

.no-padding-top {
    padding-top: 0;
}

.no-padding-bottom {
    padding-bottom: 0;
}

.padding-top {
    padding-top: 1rem;
}

.padding-bottom {
    padding-bottom: 1rem;
}

.margin {
    margin: 0.5rem;
}

.margin-lg {
    margin: 0.75rem;
}

.no-margin-top {
    margin-top: 0;
}

.no-margin-bottom {
    margin-bottom: 0;
}

.margin-top {
    margin-top: 2rem;
}

.margin-top-sm {
    margin-top: 0.5rem;
}

.margin-bottom {
    margin-bottom: 2rem;
}

.active {
    font-weight: 600;
}

.show {
    display: block;
}

.text-white {
    color: #fff;
}

.text-sm {
    font-size: 0.825rem;
}

.italic {
    /* New Jan 2022 */
    font-style: italic;
}

.text-italic {
    font-style: italic;
}

.capitalize {
    text-transform: capitalize;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

/*######### TitleSite Stuff ########*/

.sectionHead {
    cursor: pointer;
}

    .sectionHead:hover {
        box-shadow: inset 0 0 0 1.5rem rgba(0, 0, 0, 0.1);
    }

.itemHead {
    line-height: 3rem;
    transition: 0.5s;
}

    .itemHead:hover {
        cursor: pointer;
        color: #00a64e;
    }

.item-active {
    color: #00a64e;
}

/*######### NEW STUFF #########*/

.moreLink {
    cursor: pointer;
}

.hover {
    /*font-size: 36px;
  text-align: center;*/
    margin: 0 auto;
    padding: 0;
    transition: all 0.2s ease-in-out;
    position: relative;
}

    .hover:hover {
        cursor: pointer;
        color: #0052cc;
    }

    .hover:before,
    .hover:after {
        content: "";
        position: absolute;
        bottom: -8px;
        width: 0px;
        height: 4px;
        margin: 4px 0 0;
        transition: all 0.2s ease-in-out;
        transition-duration: 0.5s;
        opacity: 0;
        /*background: linear-gradient(to right, #1de099, #1dc8cd);*/
        background: linear-gradient( to right, rgba(0, 191, 90, 1), rgba(31, 204, 113, 1) );
    }

    .hover.hover-1:before,
    .hover.hover-1:after {
        left: 0;
    }

    .hover:hover:before,
    .hover:hover:after {
        width: 100%;
        opacity: 1;
    }

/* Misc additions */

/* Shadows */
.shadow-btm {
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.3);
}

.shadow-btm-lt {
    box-shadow: 0 6px 8px -6px rgba(0, 0, 0, 0.2);
}

.shadow-lt {
    box-shadow: 0 0 8px 6px rgba(0, 0, 0, 0.1);
}

/* End of CSS */
