/* ---------------------------------------------------
    BASE.CSS IS ANY STYLE THAT IS THE BASE STRUCTURE OF THE WEB PAGE, TEMPLATE ELEMENTS OR FOUNDATIONAL ELEMENTS OF BOOTSTRAP.
    EXAMPLE: HTML,BODY, H2, H3, CONTAINER, BTN, BTN-PRIMARY, BTN-SECONDARY, ETC.
   
----------------------------------------------------- */
:root {
    --dot-fs-7px: 0.438rem;
    --dot-fs-8px: 0.5rem;
    --dot-fs-10px: 0.625rem;
    --dot-fs-11px: 0.688rem;
    --dot-fs-12px: 0.75rem;
    --dot-fs-14px: 0.875rem;
    --dot-fs-15px: 0.938rem;
    --dot-fs-16px: 1rem;
    --dot-fs-18px: 1.125rem;
    --dot-fs-20px: 1.25rem;
    --dot-fs-22px: 1.375rem;
    --dot-fs-24px: 1.5rem;
    --dot-fs-28px: 1.75rem;
    --dot-fs-30px: 1.875rem;
    --dot-fs-32px: 2rem;
    --dot-fs-mobile-32px: 1.5rem;
    --dot-fs-34px: 2.125rem;
    --dot-fs-mobile-34px: 1.875rem;
    --dot-fs-36px: 2.25rem;
    --dot-fs-40px: 2.5rem;
    --dot-fs-42px: 2.625rem;
    --dot-fs-48px: 3rem;
    --dot-fs-a-top-right: 1rem;
    --dot-orange-rgb: rgb(187,97,40);
    --dot-orange-hover-rgb: rgb(199, 103, 43);
    --dot-blue-rgb: rgb(3, 97, 122);
    --btn-blue: rgb(3,97,122);
    --dot-deep-blue-rgb: rgb(25, 64, 91);
    --dot-blue-hover-rgb: rgb(39, 106, 131);
    --dot-green-rgb: rgb(42, 99, 87);
    --dot-green-hover-rgb: rgb(44, 129, 79);
    --dot-gray-rgb: rgb(83, 86, 90);
    --dot-gray-hover-rgb: rgb(93, 96, 101);
    --dot-red-rgb: rgb(226, 62, 45);
    --dot-gold-rgb: rgb(224, 166, 36);
    --dot-light-gray-rgb: rgb(248, 249, 250);
    --dot-light-gray-hover: rgb(242, 242, 242);
    --dot-light-gray-text: rgb(0,0,0);
    --dot-solid-gray-rgb: rgb(204,204,204);
    --dot-sidebtn-border-rgb: rgb(37,76,90);
    --dot-sidemenu-dropdown-rgb: rgb(237,235,235);
    --dot-white-rgb: rgb(255,255,255);
    --dot-topnav-rgb: rgb(255,255,255);
    --dot-topnavhover-rgb: rgb(244,177,32);
    --dot-accordion: rgb(83, 86, 90);
    --dot-accordion-active: rgb(34, 96, 119);
    --dot-accordion-active-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
    --dot-accordion-hover: rgb(42, 99, 87);
    --dot-accordion-text: rgb(255, 255, 255);
    --dot-accordion-content: rgb(247, 247, 247);
    --dot-accordion-img-rotate: rotate(0deg);
    --dot-accordion-padding: .5rem;
    --dot-tabs-border-width: 4px;
    --dot-tabs-border-color: rgb(34, 96, 119);
    --dot-tabs-nav-link-color: rgb(255,255,255);
    --dot-btn-textprint: rgb(255,255,255);
    --dot-btn-texthover-color: rgb(255,255,255);
    --dot-bar-color: rgb(0,0,0);
    --dot-navbar-color: rgb(25,64,91);
    --dot-bar-hover-color: rgb(242,242,242);
    --dot-primary-btn-top-color: rgb(243,177,31);
    --dot-primary-btn-top-color-hover: rgb(254,194,61);
    --dot-primary-btn-color: rgb(155,153,135);
    --dot-primary-btn-color-hover: rgb(255,255,255);
    --dotd-topnav-burger-menu: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    --dot-sidebar-btn-radius: 8px;
    --dot-offcanvas-width: 350px;
    --dot-pathsbtns-color: rgb(25,64,91);
    --dot-topnav-color: rgb(25,64,91);
    --dot-footer-color: rgb(25,64,91);
}

body {
    position: relative; /* we need this for the scrollspy */
    font-size: var(--dot-fs-18px);
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

html, body {
    width: 100%;
    font-family: sans-serif;
}

/*----- Bootstrap Button Restyle -----*/


.btn {
    --bs-btn-color: var(--dot-btn-textprint);
    margin: 0 2px;
}

.active > .page-link, .page-link.active {
    --bs-pagination-active-bg: var(--dot-blue-rgb);
    --bs-pagination-active-border-color: var(--dot-blue-rgb);
}

.btn-primary,
.btn-primary:hover,
.btn.btn-primary:active {
    --bs-btn-bg: var(--dot-orange-rgb);
    --bs-btn-border-color: var(--dot-orange-rgb);
    --bs-btn-hover-bg: var(--dot-orange-hover-rgb);
    --bs-btn-hover-border-color: var(--dot-orange-hover-rgb);
    --bs-btn-active-bg: var(--dot-orange-rgb);
    --bs-btn-active-border-color: var(--dot-orange-rgb);
}

.btn-secondary,
.btn-secondary:hover,
.btn.btn-secondary:active {
    --bs-btn-bg: var(--dot-blue-rgb);
    --bs-btn-border-color: var(--dot-blue-rgb);
    --bs-btn-hover-bg: var(--dot-blue-hover-rgb);
    --bs-btn-hover-border-color: var(--dot-blue-hover-rgb);
    --bs-btn-active-bg: var(--dot-blue-rgb);
    --bs-btn-active-border-color: var(--dot-blue-rgb);
}

.btn-success,
.btn-success:hover,
.btn.btn-success:active {
    --bs-btn-bg: var(--dot-green-rgb);
    --bs-btn-border-color: var(--dot-green-rgb);
    --bs-btn-hover-bg: var(--dot-green-hover-rgb);
    --bs-btn-hover-border-color: var(--dot-green-hover-rgb);
    --bs-btn-active-bg: var(--dot-green-rgb);
    --bs-btn-active-border-color: var(--dot-green-rgb);
}

.btn-success,
.btn-success:hover,
.btn.btn-success:active {
    --bs-btn-bg: var(--dot-green-rgb);
    --bs-btn-border-color: var(--dot-green-rgb);
    --bs-btn-hover-bg: var(--dot-green-hover-rgb);
    --bs-btn-hover-border-color: var(--dot-green-hover-rgb);
    --bs-btn-active-bg: var(--dot-green-rgb);
    --bs-btn-active-border-color: var(--dot-green-rgb);
}

.btn-light,
.btn-light:hover,
.btn.btn-light:active {
    color: var(--dot-light-gray-text);
    --bs-btn-bg: var( --dot-light-gray-rgb);
    --bs-btn-border-color: var( --dot-solid-gray-rgb);
    --bs-btn-hover-bg: var(--dot-light-gray-hover);
    --bs-btn-active-border-color: var(--dot-solid-gray-rgb);
    font-size: var(--dot-fs-16px);
}

.btn-dark,
.btn-dark:hover,
.btn.btn-dark:active {
    --bs-btn-bg: var(--dot-gray-rgb);
    --bs-btn-border-color: var(--dot-gray-rgb);
    --bs-btn-hover-bg: var(--dot-gray-hover-rgb);
    --bs-btn-hover-border-color: var(--dot-gray-hover-rgb);
    --bs-btn-active-bg: var(--dot-gray-rgb);
    --bs-btn-active-border-color: var(--dot-gray-rgb);
}

.btn-gray,
.btn-gray:hover,
.btn.btn-gray:active {
    --bs-btn-bg: var(--dot-gray-rgb);
    --bs-btn-border-color: var(--dot-gray-rgb);
    --bs-btn-hover-bg: var(--dot-gray-hover-rgb);
    --bs-btn-hover-border-color: var(--dot-gray-hover-rgb);
    --bs-btn-active-bg: var(--dot-gray-rgb);
    --bs-btn-active-border-color: var(--dot-gray-rgb);
    color: var(--dot-btn-textprint);
}

.btn-close {
    width: .45em;
    height: .25em;
}

/*----- Accordion base button styles -----*/

.accordion {
    --bs-accordion-btn-bg: var(--dot-accordion);
    --bs-accordion-active-bg: var(--dot-accordion-active);
    --bs-accordion-active-color: var(--dot-accordion-text);
    --bs-accordion-btn-color: var(--dot-accordion-text);
    --bs-accordion-bg: var(--dot-accordion-content);
    --bs-accordion-border-color: var(--dot-accordion-content);
}

.accordion-button {
    font-size: var(--dot-fs-18px);
    --bs-accordion-btn-padding-y: var(--dot-accordion-padding);
}

    .accordion-button::after {
        font-size: var(--dot-fs-32px);
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
    }

    .accordion-button:focus {
        --bs-accordion-btn-focus-box-shadow: var(--dot-accordion-active);
    }

    .accordion-button:not(.collapsed) {
        content: '';
        --bs-accordion-btn-focus-border-color: var(--dot-accordion-active);
    }

        .accordion-button:not(.collapsed)::after {
            --bs-accordion-btn-active-icon: var(--dot-accordion-active-icon);
        }

    .accordion-button:hover {
        --bs-accordion-btn-bg: var(--dot-accordion-hover);
    }

/*----- Tabs base button styles -----*/
.nav-tabs {
    --bs-nav-tabs-border-width: var(--dot-tabs-border-width);
    --bs-nav-tabs-border-color: var(--dot-tabs-border-color);
}

    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        --bs-nav-tabs-link-active-bg: var(--dot-blue-hover-rgb);
        --bs-nav-tabs-link-active-border-color: var(--dot-blue-hover-rgb);
        --bs-nav-tabs-link-active-color: rgb(255,255,255);
    }

    .nav-tabs .nav-item {
        margin: 0;
    }

ul.nav-tabs .nav-link {
    background-color: var(--dot-gray-rgb);
    --bs-nav-link-color: var(--dot-tabs-nav-link-color);
    margin: 0 1px;
}

ul.nav-tabs li {
    padding: 0 0 1px 0;
}

.nav-tabs .nav-link:hover {
    --bs-nav-tabs-link-active-bg: var(--dot-green-rgb);
    background-color: var(--dot-green-rgb);
    border-color: var(--dot-green-rgb);
    --bs-nav-link-hover-color: rgb(255,255,255);
}
/*----- Footer button styles -----*/
.btn2 {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    display: -webkit-box;
    display: flex;
    align-self: center;
    line-height: 1.3em;
    width: 100%;
    margin: 0px;
    padding: .7em .5em .7em .5em;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
}

.btn3 {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    display: -webkit-box;
    display: flex;
    align-self: center;
    font-size: var(--dot-fs-18px);
    line-height: 1.3em;
    width: 100%;
    margin: 0px;
    padding: .6em .3em .5em .3em;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
}

.pathsbutton {
    border-color: var(--dot-pathsbtns-color);
    text-align: center;
    letter-spacing: -.5px;
    color: #fff;
    background: var(--dot-pathsbtns-color);
    position: absolute;
    margin: 0px auto;
    bottom: 20px;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: color 300ms ease-in-out;
    transition: color 300ms ease-in-out;
}

    .pathsbutton:after {
        content: '';
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 0;
        height: 100%;
        background: #fff;
        z-index: -1;
        -webkit-transition: width 300ms ease-in-out;
        transition: width 300ms ease-in-out;
    }


    .pathsbutton:hover {
        color: var(--dot-blue-rgb);
    }

.contentbutton:hover {
    color: var(--dot-deep-blue-rgb);
}



.pathsbutton:visited {
    color: #B86125;
}


.pathsbutton:hover:after {
    width: 110%;
}


.primary-button-top a, .primary-button-top a:visited {
    display: block;
    background-color: var(--dot-primary-btn-top-color);
    opacity: 1;
    padding: 15px 15px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: var(--dot-fs-11px);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

    .primary-button-top a:hover {
        background-color: var(--dot-primary-btn-top-color-hover);
        opacity: 1;
        transition-timing-function: ease;
        -webkit-transition: .5s; /* Safari */
        transition: .5s;
        border-radius: 3px;
    }

.primary-button a {
    display: inline-block;
    background-color: var(--dot-primary-btn-color);
    padding: 11px 20px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: var(--dot-fs-14px);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.5px;
}

    .primary-button a:hover {
        background-color: var(--dot-primary-btn-color-hover);
        color: #9b9987;
    }

/*----- CONTAINERS START-----*/
::-webkit-input-placeholder {
    color: blue;
}

::-moz-placeholder {
    color: blue;
}

::-ms-placeholder {
    color: blue;
}

::placeholder {
    color: blue;
}

p {
    font-size: var(--dot-fs-18px);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

hr {
    display: block;
    -webkit-margin-before: 0.5em;
    -webkit-margin-after: 0.5em;
    -webkit-margin-start: auto;
    -webkit-margin-end: auto;
    border-style: inset;
    height: 1px;
    border: 0;
    border-top: 1px solid var(--dot-gray-rgb);
    margin: 1em 0;
    padding: 0;
}

/* Added for ASP.NET Core to add class-specific colors for validation. */
.field-validation-error, .validation-summary-errors {
    color: var(--bs-danger);
}

/*----- CONTAINERS START-----*/
.maincontent {
    padding: 3% 0 0 0;
    display: block;
    position: relative;
}

.container1 {
    display: block;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}

footer .container1 {
    display: flex;
}

.container2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
    padding-right: 15px;
    padding-left: 15px;
}

.container3 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0px;
    padding-left: 0px;
}

.heroleveltwo {
    margin-top: -15px;
    height: 340px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-color: #000;
}

    .heroleveltwo .container1 > div {
        flex: 1 1 350px;
        padding: 0em;
    }

.container1 > div {
    flex: 1 1 350px;
    padding: 0em 0em 0em 0em;
}

.container2 > div {
    flex: 1 1 350px;
    padding: 0em 0em 1em 0em;
}

.container3 > div {
    flex: 1 1 350px;
    padding: 0em;
}

.container2 > div.threepaths {
    flex: 1 1 220px;
    height: 60px;
    width: 100%;
    position: relative;
    margin: 2% 1% 2% 1%;
    padding: 0;
}

div.off {
    padding: 0em;
}

.container1 > .logo {
    flex: 1 1 auto;
    margin-top: 1.5%;
}

.container1 > .links {
    flex: 1 1 auto;
}

.container1 > .social {
    flex: 1 1 auto;
    justify-content: flex-end;
}

footer {
    background-color: var(--dot-footer-color);
    padding: 1.4% 0;
    height: 97px;
    border-top: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: auto;
    flex-grow: 1;
}

    footer .container1 > div {
        padding: 0 1em 0em 0em;
        display: flex;
        align-items: center;
    }

.container1 > .base {
    flex: 1 1 auto;
}

#baseline {
    background-color: #000;
    width: 100%;
    min-height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: auto;
}

.nav2 {
    padding: 0px;
    float: left;
    width: 21%;
    position: relative;
    color: #fff;
    height: 100% !important;
}

.nav3 {
    padding: 0%;
    position: relative;
    height: 100% !important;
}
/*----- CONTAINERS END-----*/
/*----- LINKS START-----*/
body a:link,
body a:visited {
    color: #B15B25;
    text-decoration: underline;
}

body a:hover {
    color: #999;
    text-decoration: underline;
}

body a:active {
    color: #B15B25;
    text-decoration: none;
}

/* Styles for links inside elements with class 'base' */
body .base a:link,
body .base a:visited {
    color: #fff;
    text-decoration: none;
}
/*----- LINKS END-----*/
/*----- HEADINGS START -----*/
h1 {
    color: #000;
    font-size: var(--dot-fs-34px);
    line-height: 1.2em;
    text-align: left;
    text-transform: uppercase;
    font-family: 'PT Sans', sans-serif;
    letter-spacing: 0px;
    padding: 0;
    margin: 0px 0 1.5rem 0;
    font-weight: bold;
}

h2 {
    color: var(--dot-blue-rgb);
    font-size: var(--dot-fs-30px);
    line-height: 1.2em;
    text-align: left;
    text-transform: uppercase;
    font-family: 'PT Sans', sans-serif;
    letter-spacing: 0px;
    padding: 0;
    margin: 0px 0 1.5rem 0;
    font-weight: bold;
}

h3 {
    color: var(--dot-blue-rgb);
    font-size: var(--dot-fs-24px);
    line-height: 1.15em;
    text-align: left;
    letter-spacing: normal;
    text-transform: uppercase;
    font-family: sans-serif;
    padding: 0;
    margin: 0px 0 1.5rem 0;
    font-weight: normal;
}

h4 {
    color: var(--dot-blue-rgb);
    font-size: var(--dot-fs-20px);
    line-height: 1.15em;
    text-align: left;
    letter-spacing: normal;
    text-transform: uppercase;
    padding: 0;
    margin: 0px 0 1.5rem 0;
}
/*----- HEADINGS END-----*/
/*----- TABLE START -----*/
table {
    margin: 0.5em 0 1em;
    width: 100%;
}

.table th {
    --bs-table-color-type: var(--dot-white-rgb);
    --bs-table-bg: var(--dot-blue-rgb);
}

table tr, table th, table td {
    border: none;
    border-bottom: 1px solid var(--dot-blue-rgb);
}

table th, table td {
    padding: 8px 12px;
    text-align: left;
}

table th {
    background: var(--dot-blue-rgb);
    color: #ffffff;
    text-transform: uppercase;
    line-height: 16px;
    font-size: var(--dot-fs-14px);
}

table tr td {
    background: #f7f7f8;
    color: #333;
    font-family: sans-serif;
    line-height: 1.5;
    padding: 8px 10px 8px 10px;
}

table tr:nth-of-type(2n+2) td {
    background: #ebeff5;
}
/*----- TABLE END -----*/
/*----- LIST STYLES START -----*/
ul li {
    padding: .3em 0;
    margin: 0 0 0 25px;
}

ul, ol {
    padding-left: 5%;
}

.content3 ol li {
    list-style: decimal;
    line-height: 24px;
    margin: 0 0px 12px 25px;
}

ul.check, ul.arrow {
    margin: 0px;
    list-style: none;
    padding: 0px 0px .5em;
}

    ul.check li {
        list-style: none;
        background-image: url(../images/icon_check.png);
        background-repeat: no-repeat;
        background-position: 0 .1em;
        padding: 0 0em 0 1.7em;
        margin: 0 0 16px 16px;
        border: 0px solid blue;
    }

    ul.arrow li {
        list-style: none;
        background-image: url(../images/icon_arrow.png);
        background-repeat: no-repeat;
        background-position: 0 .1em;
        padding: 0 0 0 1.5em;
        margin: 0 0 16px 16px;
        border: 0px solid blue;
    }

ul.pp {
    margin: 0px;
    list-style: none;
    padding: 0px;
}

    ul.pp li {
        list-style: none;
        background-image: url(../images/icon_pp2.png);
        background-repeat: no-repeat;
        background-position: 0 0.1em;
        padding: 0 0 0.2em 1.5em;
        margin: 0 0 12px 16px;
    }

ul.word {
    margin: 0px;
    list-style: none;
    padding: 0px;
}

    ul.word li {
        list-style: none;
        background-image: url(../images/icon_word2.png);
        background-repeat: no-repeat;
        background-position: 0 0.1em;
        padding: 0 0 0.2em 1.5em;
        margin: 0 0 12px 16px;
    }

ul.excel {
    margin: 0px;
    list-style: none;
    padding: 0px;
}

    ul.excel li {
        list-style: none;
        background-image: url(../images/icon_excel2.png);
        background-repeat: no-repeat;
        background-position: 0 0.1em;
        padding: 0 0 0.2em 1.5em;
        margin: 0 0 12px 16px;
    }

ul.pdf {
    margin: 0px;
    list-style: none;
    padding: 0px;
}

    ul.pdf li {
        list-style: none;
        background-image: url(../images/icon_pdf.png);
        background-repeat: no-repeat;
        background-position: 0 0.1em;
        padding: 0 0 0.2em 1.5em;
        margin: 0 0 12px 16px;
    }
/*----- LIST STYLES END-----*/
/************ ALERTS *****************/
div.alertred {
    max-width: 100%;
    padding: 20px 24px;
    margin: 0 0 20px 0;
    color: #000;
    border-top: 3px solid var(--dot-red-rgb);
    border-right: 3px solid var(--dot-red-rgb);
    border-bottom: 3px solid var(--dot-red-rgb);
    border-left: 40px solid var(--dot-red-rgb);
}

div.alertyellow {
    max-width: 100%;
    padding: 20px 24px;
    margin: 0 0 20px 0;
    color: #000;
    border-top: 3px solid var(--dot-gold-rgb);
    border-right: 3px solid var(--dot-gold-rgb);
    border-bottom: 3px solid var(--dot-gold-rgb);
    border-left: 40px solid var(--dot-gold-rgb);
}

div.alertgreen {
    max-width: 100%;
    padding: 20px 24px;
    margin: 0 0 20px 0;
    color: #000;
    border-top: 3px solid var(--dot-green-rgb);
    border-right: 3px solid var(--dot-green-rgb);
    border-bottom: 3px solid var(--dot-green-rgb);
    border-left: 40px solid var(--dot-green-rgb);
}

div.alertblue {
    max-width: 100%;
    padding: 20px 24px;
    margin: 0 0 20px 0;
    color: #000;
    border-top: 3px solid var(--dot-blue-rgb);
    border-right: 3px solid var(--dot-blue-rgb);
    border-bottom: 3px solid var(--dot-blue-rgb);
    border-left: 40px solid var(--dot-blue-rgb);
}

.alertgreen, .alertblue, .alertyellow, .alertred {
    background-color: #F3F3F3;
}

    .alertred h3, .alertgreen h3, .alertblue h3, .alertyellow h3 {
        margin: 0 auto;
        font-size: var(--dot-fs-24px);
        text-align: left;
        position: relative;
        color: #000;
    }

    .alertgreen p, .alertblue p, .alertyellow p, .alertred p {
        margin-top: 0;
        margin-bottom: 0rem;
    }

    .alertgreen a:link, .alertgreen a:visited, .alertgreen a:active, .alertblue a:link, .alertblue a:visited, .alertblue a:active, .alertred a:link, .alertred a:visited, .alertred a:active, .alertyellow a:link, .alertyellow a:visited, .alertyellow a:active {
        color: #A4511E;
    }

    .alertgreen a:hover, .alertblue a:hover, .alertred a:hover, .alertyellow a:hover {
        color: #999;
    }

img.attention {
    float: left;
    padding: 0 20px 4px 0;
    margin: 3px 0 0 0;
}
/*----- ALERTS END -----*/
/*----- PANELS START -----*/
.panelheading {
    max-width: 100%;
    min-height: 20px;
    padding: 11px 46px 8px 16px;
    margin: 0px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.panel_body_solid {
    background: var(--dot-light-gray-rgb);
    max-width: 100%;
    padding: 20px 30px;
    margin: 0px;
    border-top: 0px solid #fff;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.panel_body_gradient {
    max-width: 100%;
    padding: 20px;
    margin: 0px;
    border-top: 0px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f0f9ff), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #f2f2f2 0%, #ffffff 100%);
    background: linear-gradient(#F2F2F2, #fff);
}

.well_body_solid {
    background: var(--dot-light-gray-rgb);
    max-width: 100%;
    padding: 20px 30px 6px 30px;
    margin: 0px;
    border: 1px solid var(--dot-solid-gray-rgb);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.well_body_gradient {
    background: var(--dot-light-gray-rgb);
    max-width: 100%;
    padding: 20px 30px 6px 30px;
    margin: 0 0 5px 0;
    border: 1px solid var(--dot-solid-gray-rgb);
    border-radius: 5px;
    background: -moz-linear-gradient(top, #f2f2f2 0%, #f2f2f2 0%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(0%, #f2f2f2), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #f2f2f2 0%, #f2f2f2 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #f2f2f2 0%, #f2f2f2 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #f2f2f2 0%, #f2f2f2 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #f2f2f2 0%, #f2f2f2 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#ffffff', GradientType=0);
}
/*----- PANELS END -----*/

/*----- BACK TO TOP START-----*/
#backtotop {
    z-index: 1000000000;
    position: fixed;
    bottom: 86px;
    right: 40px;
    display: none;
    border-radius: 10px;
}

i.nav {
    border: solid #666;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin: 0 0 3px 6px;
}

i.navsub {
    border: solid #666;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin: 0 14px 1px -24px;
}

i.top {
    border: solid #fff;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 4px;
    margin: 3px 2px -4px 2px;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
/*----- BACK TO TOP END-----*/
/*----- GOOGLE SEARCH BOX START-----*/
.gsc-input table tr, table th, table td {
    border: none;
    border-bottom: 0px solid var(--dot-light-gray-rgb);
}

.gsc-control-searchbox-only table tr, table th, table td {
    border: none;
    border-bottom: 0px solid var(--dot-light-gray-rgb);
}

.heroleveltwo table tr td {
    background: transparent;
}
/*----- GOOGLE SEARCH BOX END-----*/
/* RESPONSIVE BELOW /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* RESPONSIVE BELOW //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* RESPONSIVE BELOW //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* RESPONSIVE BELOW /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* RESPONSIVE BELOW /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*----- IE 11 ONLY BUG FIX START -----*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #baseline {
        background-color: #812529;
        width: 100%;
        min-height: 57px;
        display: flex;
        align-items: center;
        justify-content: flex-start !important;
        position: relative;
    }

    footer .container1 > div {
        padding: 0 1.7em 0em 0em;
    }
}
/*----- IE 11 ONLY BUG FIX END-----*/
@media (max-width: 1590px) {
    .container1 > .social {
        flex: 1 1 auto;
        justify-content: flex-start;
    }

    .container1 > .logo {
        flex: 1 1 22%;
    }
}

@media (max-width: 1366px) {
    footer {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-top: auto;
        height: 97px;
    }
}

@media (min-width: 1060px) and (max-width: 1400px) {
    .window .header .logo {
        display: inline-block;
        position: absolute;
        color: #FFF;
        top: 32px;
        left: 2.5em;
        max-height: 40%
    }
}

@media only screen and (max-width: 1260px) {
    .container1 > .logo {
        display: none;
    }

    ul#footerlinks {
        margin: 2% auto 0 auto;
    }

    .container1 > .social {
        justify-content: flex-end;
    }
}

@media (max-width: 1200px) {
    .container1 > div.threepaths {
        flex: 1 1 340px;
    }
}

@media all and (max-width: 1100px) {
    .panel_body_solid, .content3 .panel_body_solid {
        margin: 0px 0 5% 0;
    }

    .panel_body_gradient, .content3 .panel_body_gradient {
        margin: 0px 0 5% 0;
    }

    .nav2 {
        padding: 0% 0 0% 0%;
        width: 100%;
        float: none;
        background-color: transparent;
        min-height: inherit;
    }

    .nav3 {
        border: 0px solid green;
        float: none;
        position: static;
        padding: 0% 3% 5% 4%;
        width: 98%;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }


    .content3 {
        padding: 0%;
        width: 100%;
        float: left;
        display: block;
        margin-bottom: 0px;
    }

    .contentmenu {
        height: 50px;
    }

    /*----- Footer button styles -----*/
    .btn2 {
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: transparent;
        border: 2px solid transparent;
        border-radius: 5px;
        cursor: pointer;
        display: -webkit-box;
        display: flex;
        align-self: center;
        line-height: 1.3em;
        width: 100%;
        margin: 0px;
        padding: .7em .5em .7em .5em;
        text-decoration: none;
        text-align: center;
        text-transform: uppercase;
    }

    .btn3 {
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: transparent;
        border: 2px solid transparent;
        border-radius: 5px;
        cursor: pointer;
        display: -webkit-box;
        display: flex;
        align-self: center;
        font-size: var(--dot-fs-18px);
        line-height: 1.3em;
        width: 100%;
        margin: 0px;
        padding: .6em .3em .5em .3em;
        text-decoration: none;
        text-align: center;
        text-transform: uppercase;
    }

    .pathsbutton {
        border-color: var(--dot-pathsbtns-color);
        text-align: center;
        letter-spacing: -.5px;
        color: #fff;
        background: var(--dot-pathsbtns-color);
        position: absolute;
        margin: 0px auto;
        bottom: 20px;
        overflow: hidden;
        z-index: 1;
        -webkit-transition: color 300ms ease-in-out;
        transition: color 300ms ease-in-out;
    }

        .pathsbutton:after {
            content: '';
            position: absolute;
            display: block;
            top: 0;
            left: 50%;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
            width: 0;
            height: 100%;
            background: #fff;
            z-index: -1;
            -webkit-transition: width 300ms ease-in-out;
            transition: width 300ms ease-in-out;
        }


        .pathsbutton:hover {
            color: var(--dot-deep-blue-rgb);
        }

    .contentbutton:hover {
        color: var(--dot-deep-blue-rgb);
    }

    .alertbutton:hover {
        color: #bb6128;
    }

    .pathsbutton:visited {
        color: #B86125;
    }


    .pathsbutton:hover:after {
        width: 110%;
    }


    .primary-button-top a, .primary-button-top a:visited {
        display: block;
        background-color: var(--dot-primary-btn-top-color);
        opacity: 1;
        padding: 15px 15px;
        border-radius: 3px;
        text-transform: uppercase;
        font-size: var(--dot-fs-11px);
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        letter-spacing: 0.5px;
    }

        .primary-button-top a:hover {
            background-color: var(--dot-primary-btn-top-color-hover);
            opacity: 1;
            transition-timing-function: ease;
            -webkit-transition: .5s; /* Safari */
            transition: .5s;
            border-radius: 3px;
        }

    .primary-button a {
        display: inline-block;
        background-color: var(--dot-primary-btn-color);
        padding: 11px 20px;
        border-radius: 3px;
        text-transform: uppercase;
        font-size: var(--dot-fs-14px);
        color: #fff;
        font-weight: 500;
        text-decoration: none;
        letter-spacing: 0.5px;
    }

        .primary-button a:hover {
            background-color: var(--dot-primary-btn-color-hover);
            color: #9b9987;
        }

    .btn2 {
        font-size: var(--dot-fs-14px);
    }
}

@media (max-width: 1100px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS devices */
    }

    .max-width-container {
        max-width: 100%; /* Ensures the table container doesn't exceed viewport width */
        overflow-x: auto; /* Allow horizontal scrolling for the container if necessary */
    }
}

@media (max-width: 1100px) {
    .heroleveltwo {
        margin-top: 187px;
        height: 150px;
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

    .maincontent {
        padding: 5% 0 2% 0;
    }
}

@media (max-width: 1059px) {
    .container1 > .social {
        justify-content: flex-start;
    }
}

@media (max-width: 990px) {
    footer .container1 > div {
        padding: 0em 1.8em 0em 0em;
    }

    .container1 > .base {
        flex: 1 1 500px;
    }
    /* IMPORTANT:OVERRIDES THE SCSS CREATED BY NEW BOOTSTRAP  /////////////////////////////////////////////////////////////////////////*/
}
/* Portrait and Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .container2 > div.threepaths {
        flex: 1 1 250px;
    }

    .container2 > div.threepaths {
        margin: 0% 1% 0% 1%;
    }
}

@media only screen and (max-width: 768px) {

    h1 {
        font-size: var(--dot-fs-mobile-34px);
    }

    h2 {
        font-size: var(--dot-fs-mobile-32px);
    }

    .container2 > div.threepaths {
        flex: 1 1 auto;
        margin: 0% 1% 0% 1%;
    }

    .herosearchbox > .container {
        margin-bottom: 0%;
    }

    .container1 {
        margin-bottom: 3%;
    }

        .container1 > div {
            padding: 1em 0em 0em 0em;
        }

    .herosearchbox .container1 {
        margin-bottom: 0%;
    }

    footer > .container1 {
        margin-bottom: 0%;
    }

    .container2 {
        margin-bottom: .2em;
    }

        .container2 > div {
            padding: 0em;
        }

    .container > .base {
        padding-right: 0px;
    }

    .heroleveltwo {
        height: 114px;
        margin-top: 166px;
    }

    footer .container1 > div {
        padding: 0px;
    }

    .container3 > div {
        padding: 0em;
    }

    #backtotop {
        bottom: 18px;
    }
}

@media (max-width: 428px) {
    .dot-header .container1 > div {
        flex: 1 1 350px;
        padding: 0em;
    }

    .maincontent {
        padding: 7% 0 2% 0;
    }

    .container2 > div.threepaths {
        margin: 0% 1% 0% 1%;
    }
}

@media (min-width: 200px) {
    .container1, .container2 {
        width: 96%;
    }
}

@media (min-width: 768px) {
    .container1, .container2 {
        width: 94%;
    }
}

@media (min-width:1366px) {
    .container1 {
        width: 84%;
    }
}

@media (min-width:1600px) {
    .container2 {
        width: 89%;
    }
}

@media (min-width: 1920px) {
    .container1, .container2 {
        max-width: 1599px;
    }
}
/* IPHONE AND ANDROID STYLES BELOW /////////////////////////////////////////////////////////////////////////*/
/* IPHONE AND ANDROID STYLES BELOW /////////////////////////////////////////////////////////////////////////*/
@media only screen and (min-device-width: 319px) and (max-device-width: 414px) and (-webkit-min-device-pixel-ratio: 2) {
    .burger-menu {
        position: absolute;
        top: 35px;
        left: 14px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 20px;
        height: 17px;
        cursor: pointer;
        transition: -webkit-transform 330ms ease-out;
        transition: transform 330ms ease-out;
        transition: transform 330ms ease-out, -webkit-transform 330ms ease-out;
    }
}

@media only screen and (min-device-width: 319px) and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .container3 {
        margin-top: 7%;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio: 2) {
    .hero {
        height: 280px;
    }

    ul#socialmedia {
        margin: 0% auto 0% auto;
    }

    .container1 > div {
        flex: 1 1 260px;
    }
}
