
:root {
    --primary: #EA6224;
    --primary-rgb: 234, 98, 36;
    --primary-active: #BA3200;
    --primary-text-colour: var(--white);
    --secondary: #2F2F2F;
    --secondary-rgb: 47, 47, 47;
    --secondary-active: #151515;
    --secondary-text-colour: var(--white);
    --tertiary: #1d8590;
    --tertiary-rgb: 29, 133, 144;
    --tertiary-active: #0c555c;
    --black: #000;
    --border-grey: #666666;
    --grey-background: #e0e0e0;
    --light-orange: #f69f48;
    --light-orange-rgb: 246, 159, 72;
    --light-grey: #c4c4c4;
    --offwhite: #f7f7f7;
    --OpenSans: "Open Sans", sans-serif;
    --orange: #ea6224;
    --orange-rgb: 234, 98, 36;
    --other-grey: #1f313f;
    --purple: #674a80;
    --purple-rgb: 103, 74, 128;
    --text-grey: #b3b3b3;
    --white: #ffffff;
}

*, html {
    font-family: var(--OpenSans);
}

/*-----------------------------------------------------------------------------------------------*/

h1 {
    margin: 1rem 0rem;
    font-size: 2.5em;
    line-height: 1.1em;
}

h2 {
    margin: 1rem 0rem;
    font-size: 2em;
    line-height: 1.15em;
}

h3 {
    margin: 1rem 0rem;
    font-size: 1.5em;
    line-height: 1.25em;
}

h4 {
    margin: 1rem 0rem;
    font-size: 1.3em;
    line-height: 1.35em;
}

h5 {
    margin: 14px 0px;
    font-size: 1.2em;
    line-height: 1.4em;
}

h6 {
    margin: 14px 0px;
    font-size: 1.1em;
    line-height: 1.4em;
}

p {
    margin: 1rem 0rem;
}

.notice {
    clear: both;
    padding: 10px 15px;
    font-weight: 600;
    background-color: #D8D8D8;
}

    .notice a {
        text-decoration: underline;
    }

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
p:first-child {
    margin-top: 0px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
    margin-bottom: 0px;
}

/*--------------------------------------------*/

a:link,
a:active,
a:visited {
    text-decoration: none;
}

a.btn.btn-primary,
a.btn.btn-danger,
a.btn.btn-warning,
a.btn.btn-info,
a.btn.btn-success {
    color: white;
}

a:hover {
    text-decoration: underline;
}

h1 a:not([href]),
h2 a:not([href]),
h3 a:not([href]),
h4 a:not([href]),
h5 a:not([href]),
h6 a:not([href]) {
    color: inherit;
}

    h1 a:not([href]):hover,
    h2 a:not([href]):hover,
    h3 a:not([href]):hover,
    h4 a:not([href]):hover,
    h5 a:not([href]):hover,
    h6 a:not([href]):hover {
        text-decoration: none;
    }

a.external_link:after {
    position: relative;
    display: inline-block;
    content: "\e164";
    top: 1px;
    padding-left: 5px;
    font-weight: 400;
    font-style: normal;
    font-size: 0.9em;
    line-height: 1em;
    font-family: 'Glyphicons Halflings';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a.pdf,
a.word,
a.ppt,
a.video,
a.document,
a.audio {
    display: inline-block;
    padding-left: 22px;
}

a.pdf {
    background: url("../../images/pdf.png") left 2px no-repeat;
}

a.word {
    background: url("../../images/icon_doc.png") left 2px no-repeat;
}

a.ppt {
    background: url("../../images/icon_ppt.png") left 2px no-repeat;
}

a.video {
    background: url("../../images/icon_youtube.png") left 2px no-repeat;
}

a.document {
    background: url("../../images/icon_document.png") left 2px no-repeat;
}

a.audio {
    background: url("../../images/icon_audio.png") left 2px no-repeat;
}

.btn_block {
    clear: both;
    display: block;
    float: none;
}

a.link_block {
    clear: both;
    position: relative;
    display: block;
    margin-top: 5px;
    padding: 8px 15px;
    text-decoration: none;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

    a.link_block:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }

    a.link_block .glyphicon-chevron-right,
    a.link_block_lg .glyphicon-chevron-right,
    a.link_block_md .glyphicon-chevron-right,
    a.link_block_sm .glyphicon-chevron-right,
    a.link_block_xs .glyphicon-chevron-right {
        position: absolute;
        top: 50%;
        right: 10px;
        margin-top: -0.5em;
    }

/*--------------------------------------------*/

.btn,
[class*="btn-"]:not(.btn-group) {
    border: none;
    text-shadow: none;
    transition: background .3s linear, color .3s linear;
}

.btn-default {
    color: var(--secondary-text-colour);
    background: var(--secondary);
}

    .btn-default:hover,
    .btn-default:focus,
    .btn-default.active {
        background: var(--secondary-active);
    }

    .btn-default.disabled,
    .btn-default:disabled,
    .btn-default[disabled] {
        background-color: rgba(var(--secondary-rgb), 0.75);
        border-color: rgba(var(--secondary-rgb), 0.75);
    }

.btn-primary {
    color: var(--primary-text-colour);
    background: var(--primary);
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary.active {
        background: var(--primary-active);
    }

    .btn-primary.disabled,
    .btn-primary:disabled,
    .btn-primary[disabled] {
        background-color: rgba(var(--primary-rgb), 0.75);
        border-color: rgba(var(--primary-rgb), 0.75);
    }

.btn-secondary {
    color: var(--secondary-text-colour);
    background: var(--secondary);
}

.btn-success,
.btn.success {
    background: #5CB85C;
}

    .btn-success:hover,
    .btn-success:focus,
    .btn-success.active,
    .btn.success:hover,
    .btn.success:focus,
    .btn.success.active {
        background: #419641;
    }

    .btn-success.disabled,
    .btn-success:disabled,
    .btn-success[disabled],
    .btn.success.disabled,
    .btn.success:disabled,
    .btn.success[disabled] {
        background-color: rgba(92, 184, 92, 0.75);
        border-color: rgba(92, 184, 92, 0.75);
    }

.btn-danger,
.btn.danger {
    background: #c9302c;
}

    .btn-danger:hover,
    .btn-danger:focus,
    .btn-danger.active,
    .btn.danger:hover,
    .btn.danger:focus,
    .btn.danger.active {
        background: #9b1815;
    }

.btn.success,
.btn.danger {
    color: var(--white);
}

.btn.light {
    color: var(--black);
    background: var(--grey-light);
}

    .btn.light:hover {
        color: var(--black);
        background: var(--grey-mid);
    }

.btn.neutral {
    color: var(--black);
    background: var(--grey-mid);
}

    .btn.neutral:hover {
        color: var(--black);
        background: var(--grey-dark);
    }

.btn.themed {
    color: var(--theme-text-color);
    background: var(--theme-color);
}

    .btn.themed:hover {
        background: var(--theme-color-dark);
    }

.btn.themed-alt {
    color: var(--theme-text-color-alt);
    background: var(--theme-color-alt);
}

    .btn.themed-alt:hover {
        background: var(--theme-color-alt-dark);
    }

.btn.icon::before {
    font-family: bootstrap-icons !important;
    position: relative;
    top: 3px;
    margin-right: 5px;
    margin-left: -3px;
    font-weight: 500;
    line-height: 0;
    font-size: 1.2em;
}

.btn.icon i {
    margin-right: 5px;
}

.btn.arrow::after {
    content: "\F138";
    font-family: bootstrap-icons !important;
    position: relative;
    top: 5px;
    font-weight: 500;
    font-size: 1.4em;
    line-height: 0;
}

.btn.arrow:not(:empty):after {
    margin-left: 8px;
}

/*--------------------------------------------*/

.clearer {
    clear: both;
    height: 0px;
    overflow: hidden;
    font-size: 0px;
    line-height: 0px;
}

.clear:after {
    content: " ";
    clear: both;
    display: block;
}

hr {
    height: 1px;
    overflow: hidden;
    color: #666666;
    border: none;
    background-color: #666666;
}

.popover {
    min-width: 300px;
}

.popover_trigger {
    cursor: help;
    outline: none !important;
}

/*--------------------------------------------*/

.spacing {
    margin-top: 15px;
    margin-bottom: 15px;
}

.spacing_top {
    margin-top: 15px;
}

.spacing_bottom {
    margin-bottom: 15px;
}

.padding {
    padding-left: 15px;
    padding-right: 15px;
}

.padding_left {
    padding-left: 15px;
}

.padding_right {
    padding-right: 15px;
}

.padding_top {
    padding-top: 15px;
}

.padding_bottom {
    padding-bottom: 15px;
}

.nopadding {
    padding: 0px;
}

.nopadding_right {
    padding-right: 0px;
}

.nopadding_left {
    padding-left: 0px;
}

/*--------------------------------------------*/

.push_right {
    float: right;
}

.push_left {
    float: left;
}

/*--------------------------------------------*/

img.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 4px;
    display: block;
}

img.aligncenter {
    text-align: center;
    margin: 1em auto 5px auto;
    clear: both;
    display: block;
}

img.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 4px;
    display: block;
}

img.fullwidth {
    margin: 0px;
    display: block;
}

img.drop_shadow {
    border: 1px solid #AAAAAA;
    -webkit-box-shadow: 5px 5px 5px #AAAAAA;
    -moz-box-shadow: 5px 5px 5px #AAAAAA;
    box-shadow: 5px 5px 5px #AAAAAA;
}

/*--------------------------------------------*/

.section {
    padding-bottom: 50px;
    padding-top: 50px;
}

    .section header {
        margin-bottom: 25px;
    }

/*--------------------------------------------*/

[data-twttr-id] .twitterborderhide {
    position: relative;
    top: -6px;
    border-top: 1px solid #fff;
}

/*-----------------------------------------------------------------------------------------------*/

html {
    font-size: 16px;
}

body {
    margin: 0px;
    color: #000000;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.5em;
    font-family: Helvetica, Arial, Sans-Serif;
}

    body > form {
        margin: 0px;
    }

.blur {
    -webkit-filter: blur(7px);
    -moz-filter: blur(7px);
    filter: blur(7px);
}

.page_inset {
    padding: 30px;
    background-color: #FFFFFF;
    border: 1px solid rgba(156, 175, 176, 0.8);
}

/*-----------------------------------------------------------------------------------------------*/

.alert-bar {
    border: 1px solid var(--orange);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    background: var(--white);
    color: var(--orange);
    padding: .75em;
    text-align: center;
    gap: 1.5em;
    position: absolute;
    top: 0;
    z-index: 500;
}

    .alert-bar a {
        color: #fff;
        font-weight: bold;
    }

    .alert-bar .buttons {
        display: flex;
        flex-direction: row;
    }

    .alert-bar .btn + .btn {
        margin-left: 5px;
    }

/*-----------------------------------------------------------------------------------------------*/

#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    background: #000;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    transition: background .5s ease;
}

    #back-to-top:hover {
        background: var(--orange);
    }

    #back-to-top.show {
        opacity: 1;
    }

/*-----------------------------------------------------------------------------------------------*/
/* Header styles */
/*-----------------------------------------------------------------------------------------------*/

#header {
    background: var(--white);
    padding: 35px 0px 40px;
    width: 100%;
}

    #header .container {
        position: relative;
    }

    #header .logo {
        display: block;
        float: left;
        line-height: 0px;
    }

    #header .header-actions {
        float: right;
        margin-bottom: 6px;
    }

        #header .header-actions .header-actions-inner {
            align-items: flex-end;
            display: flex;
            flex-direction: row;
            justify-content: flex-end;
        }

            #header .header-actions .header-actions-inner .header-list {
                list-style: none;
                margin-bottom: 0;
                margin-right: 75px;
                padding: 0;
            }

            #header .header-actions .header-actions-inner ul {
                line-height: 1.5;
            }

                #header .header-actions .header-actions-inner ul li {
                    border-right: 1px solid var(--orange);
                    line-height: 1;
                }

                    #header .header-actions .header-actions-inner ul li a {
                        /*border-bottom: 1px solid white;*/
                        font-size: 18px;
                        height: 100%;
                        line-height: 1;
                        position: relative;
                        transition: all ease-in-out 0.5s;
                    }

                        #header .header-actions .header-actions-inner ul li a::after {
                            content: '';
                            background: linear-gradient(to left, white 51%, var(--orange) 50%) right;
                            background-size: 200%;
                            bottom: -3px;
                            display: flex;
                            height: 2px;
                            left: 0;
                            margin: 0 auto;
                            /*padding: 0 15px;*/
                            position: absolute;
                            right: 0;
                            transition: all ease-in-out 0.5s;
                            width: 102%;
                        }

                        #header .header-actions .header-actions-inner ul li a:active,
                        #header .header-actions .header-actions-inner ul li a:focus,
                        #header .header-actions .header-actions-inner ul li a:hover {
                            background: none;
                            /*border-bottom: 2px solid var(--orange);*/
                            /*color: var(--black);*/
                        }

                            #header .header-actions .header-actions-inner ul li a:active::after,
                            #header .header-actions .header-actions-inner ul li a:focus::after,
                            #header .header-actions .header-actions-inner ul li a:hover::after {
                                background-position: left;
                            }

                #header .header-actions .header-actions-inner ul:last-of-type li:last-of-type {
                    border-right: none;
                }

        #header .header-actions .header-title p {
            color: var(--orange);
            font-size: 50px;
            line-height: 1;
        }

            #header .header-actions .header-title p strong {
                color: var(--orange);
                font-weight: 600;
                /*font-size: 94px;*/
                font-size: 60px;
                line-height: 1;
            }

        #header .header-actions a {
            /*padding: 3px 15px;*/
            color: var(--orange);
            font-size: 0.9em;
            margin: 0 15px;
            padding: 3px 0;
            text-decoration: none;
        }

            /*            #header .header-actions a:last-of-type {
                border-right: none;
            }*/

            #header .header-actions a.open-search {
                font-size: 1.2em;
            }

#content {
    /*margin-top: 30px;*/
}

.homepage-text-content,
#Body_Body_text_section {
}

    .homepage-text-content h1,
    #Body_Body_text_section h1 {
        color: var(--orange);
        font-size: 48px;
        margin-bottom: 40px;
    }

    .homepage-text-content p,
    #Body_Body_text_section p {
        color: var(--other-grey);
        font-size: 20px;
        line-height: 1.6;
    }

        .homepage-text-content p a,
        #Body_Body_text_section p a {
            color: var(--orange);
            font-weight: 600;
        }


/*-----------------------------------------------------------------------------------------------*/
.lower_banner {
    position: relative;
    left: 0;
    height: 300px;
    overflow: hidden;
    /*background-color: rgba(0, 0, 0, 0.1);*/
    background-size: cover;
    background-repeat: no-repeat;
    /*background-position: left top;*/
    background-position: center;
}

    .lower_banner::before {
        background-image: url(../../images/banner_lower_2.png);
        content: "";
        position: absolute;
        width: 100%;
        height: 200px;
        left: 0;
        /*top: 250px;*/
        /*top: 100px;*/
        top: 115px;
        background-size: cover;
        z-index: 0;
    }

    .lower_banner .container {
        position: relative;
        height: 100%;
        text-align: center;
    }

        .lower_banner .container h1,
        .lower_banner .container p,
        .lower_banner .container span {
            position: absolute;
            bottom: 100px;
            display: block;
            margin: 0px;
            padding: 8px 15px;
            /*left: 15px;*/
            left: 0;
            /*bottom: 20px;*/
            /*bottom: -7%;*/
            /*top: 310px;*/
            max-width: 90%;
            color: var(--white);
            font-size: 2.4em;
            line-height: 1.1em;
            /*background: var(--orange);*/
        }

    .lower_banner .image_upload_instructions {
        margin-top: 100px;
        z-index: 999;
    }

    .lower_banner.grey_lower_banner {
    }

        .lower_banner.grey_lower_banner::before {
            background-image: url(../../images/grey_banner_lower_2.png);
        }
/*-----------------------------------------------------------------------------------------------*/
.breadcrumb {
    background-color: transparent;
    /*margin-top: 20px;*/
    padding: 0px;
}

    .breadcrumb > li + li:before {
        color: #000000;
    }

    .breadcrumb > .active {
        color: var(--orange);
        font-weight: 600;
    }

    .breadcrumb li a {
        color: var(--black);
    }

        .breadcrumb li a:hover {
            color: var(--orange);
            font-weight: 600;
        }


/*-----------------------------------------------------------------------------------------------*/

.expandable {
    clear: both;
    margin-bottom: 15px;
}

.expandable_heading .expandable_title {
    margin: 0px;
    color: #FFFFFF !important;
    text-align: center;
}

    .expandable_heading .expandable_title a {
        display: block;
        padding: 10px;
        color: #FFFFFF !important;
        text-decoration: none;
    }

        .expandable_heading .expandable_title a.collapsed {
            background: none;
        }

            .expandable_heading .expandable_title a,
            .expandable_heading .expandable_title a.collapsed:hover {
                background: rgba(0, 0, 0, 0.2);
            }

    .expandable_heading .expandable_title .glyphicon {
        float: right;
        transition: transform 0.5s;
        transform: rotate(180deg);
    }

    .expandable_heading .expandable_title .collapsed .glyphicon {
        transform: rotate(0deg);
    }

.expandable_collapse {
    overflow: hidden;
}

.expandable_body {
    padding: 15px;
    font-size: 0.9em;
}

    .expandable_body h3.media-heading a {
        color: #000000;
    }

/*--------------------------------------------*/

.editable_expandable {
    clear: both;
    margin: 15px 0px;
}

    .editable_expandable .expandable_heading,
    .editable_expandable .expandable_heading .expandable_title,
    .editable_expandable .expandable_heading .expandable_title a {
        background: #F1F1F1 !important;
        color: #444444 !important;
    }

    .editable_expandable .expandable_heading {
        padding: 10px;
    }

        .editable_expandable .expandable_heading h4 {
            margin: 0px;
        }

    .editable_expandable .expandable_title {
        text-align: left;
    }

    .editable_expandable .expandable_body {
        font-size: 1em;
        border: 1px dashed #CCCCCC;
    }

        .editable_expandable .expandable_body > :first-child {
            margin-top: 0px;
        }

/*--------------------------------------------*/

.master_lower .editable_expandable .expandable_heading,
.lmeditor_inline .editable_expandable .expandable_heading {
    padding: 0px;
}

.master_lower .editable_expandable .expandable_body,
.lmeditor_inline .editable_expandable .expandable_body {
    border: none;
}

/*-----------------------------------------------------------------------------------------------*/
/* Footer Styles */
/*-----------------------------------------------------------------------------------------------*/

#footer {
    margin-top: 50px;
    padding: 30px 0;
    color: #1f1f1f;
    font-size: 0.8em;
}

.page_home #footer {
    margin-top: 0px;
}

#footer .logo img {
    max-width: 300px;
}

#footer ul {
    padding: 0;
    /*border-bottom: 1px solid white;
    width: fit-content;*/
}

#footer .footer-nav li a {
    font-weight: 600;
}

    #footer .footer-nav li a:active,
    #footer .footer-nav li a:focus,
    #footer .footer-nav li a:hover {
        color: var(--purple);
        /*font-weight: 800;*/
        text-decoration: none;
    }

#footer ul li {
    display: inline-block;
    padding: 8px 15px;
    border-bottom: 1px solid var(--text-grey);
}

#footer .footer_content {
    text-align: right;
}

#footer a {
    color: var(--orange);
}

#footer .footer_content p {
    margin: 2px 0;
}


#footer .footer_content div:last-child span {
    display: inline-block;
}

/*#footer .footer_content div {
        display: inline-block;
    }*/

#footer .footer_separator {
    padding: 0px 10px;
}

/*#footer a {
    color: #FFFFFF;
}*/

#footer .footer_socials img {
    filter: brightness(0);
    margin-left: 6px;
    max-width: 25px;
    margin-top: 10px;
    transition: all .05s ease;
}

    #footer .footer_socials img:hover {
        filter: brightness(1);
        cursor: pointer;
    }

#footer .footer_item {
    font-weight: bold;
    padding-left: 10px;
}

    #footer .footer_item a {
        font-weight: 600;
    }

        #footer .footer_item a:active,
        #footer .footer_item a:focus,
        #footer .footer_item a:hover {
            color: var(--purple);
            text-decoration: none;
        }


/*#footer {
    color: var(--orange);
    font-size: 0.8em;
    margin-top: 50px;
    padding: 120px 0px 60px;*/
/*background-color: #222222;*/
/*}

    #footer .row {
        align-items: flex-end;
        display: flex;
    }

    #footer .footer-left {
    }

        #footer .footer-left .footer-left-list {
            margin-bottom: 40px;
        }

    #footer .footer-right {
        align-items: flex-end;
        display: flex;
        flex-direction: column;
        text-align: right;
    }

        #footer .footer-right .top-nav-list {
            border-bottom: 2px solid var(--text-grey);
            margin-bottom: 10px;
            max-width: 660px;
            padding-bottom: 10px;
            width: 100%;
        }

            #footer .footer-right .top-nav-list .footer-nav {
                display: flex;
                justify-content: space-between;
                list-style: none;
                margin-bottom: 0;
                padding: 0;
            }

        #footer .footer-right .footer-nav li {
            text-align: center;
            width: 100%;
        }

            #footer .footer-right .footer-nav li a {
                font-weight: 700;
            }

        #footer .footer-right .social-links span {
            font-size: 40px;
        }

        #footer .footer-right .bottom-nav-list {
        }


            #footer .footer-right .bottom-nav-list .company-numbers {
                color: var(--text-grey);
                font-weight: 700;
            }


.page_home #footer {
    margin-top: 20px;
}

#footer .footer_separator {
    padding: 0px 10px;
}

#footer a {
    color: #FFFFFF;
}

/* carousel */

.services_carousel {
}

    .services_carousel:active .next_article:before,
    .services_carousel:active .prev_article:before,
    .services_carousel:focus .next_article:before,
    .services_carousel:focus .prev_article:before,
    .services_carousel:hover .next_article:before,
    .services_carousel:hover .prev_article:before {
        color: var(--orange);
    }

    .services_carousel:active .next_article,
    .services_carousel:active .prev_article {
        background: none;
        /*color: var(--orange);*/
    }

    .services_carousel:active .next_article {
        right: 0;
    }

    .services_carousel:active .prev_article {
        left: 0;
    }

    .services_carousel .slick-track {
        align-items: center;
        display: flex;
    }

    .services_carousel .slick-list {
        padding: 0 15px;
    }

    .services_carousel .services_carousel_item {
        padding: 30px 15px 30px 15px;
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

        .services_carousel .services_carousel_item .services_text {
            max-height: 35px;
            padding-top: 10px;
            font-size: 0.8em;
        }

        .services_carousel .services_carousel_item h2 {
            line-height: 1em;
        }

        .services_carousel .services_carousel_item img {
            filter: brightness(1);
            margin: auto;
            max-height: 100px;
            transition: all .05s ease;
        }

    .services_carousel .services_carousel_item {
        transition: all .05s ease;
    }

        .services_carousel .services_carousel_item:active img,
        .services_carousel .services_carousel_item:focus img,
        .services_carousel .services_carousel_item:hover img {
            filter: brightness(0);
        }


    .services_carousel .prev_article,
    .services_carousel .next_article {
        background-color: var(--secondary-color);
        color: #fff;
        font-size: 40px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        padding: 10px 15px;
        z-index: 10;
    }

        /*.services_carousel .prev_article:before,
        .services_carousel .next_article:before {
            font-size: 28px;
        }*/

        .services_carousel .prev_article:hover, .services_carousel .next_article:hover {
            background: var(--light-grey);
            cursor: pointer;
            /*background-color: #5c7197;*/
        }

    .services_carousel .next_article {
        left: auto;
        right: 0;
    }
/*    color: var(--orange);
}*/


.container.container-large {
    max-width: 1600px;
    width: 100%;
}

/*---------------------------------------------------------------------------*/
/* Generic */
/*---------------------------------------------------------------------------*/

.grey-background {
    background: var(--grey-background);
}
/*---------------------------------------------------------------------------*/
/* Text styles */
/*---------------------------------------------------------------------------*/

p {
    font-size: 16px;
    line-height: 24px;
    font-weight: lighter;
}

    p a {
        color: var(--orange);
        font-weight: 500;
    }

        p a:active,
        p a:focus,
        p a:hover {
            color: var(--purple);
            text-decoration: none;
        }

ul {
}

    ul li {
        font-weight: lighter;
    }

hr {
    background-color: var(--orange);
    color: var(--orange);
}

/*---------------------------------------------------------------------------*/
/* Header styles */
/*---------------------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    color: var(--orange);
    font-weight: 500;
}

/*---------------------------------------------------------------------------*/
/* Button styles */
/*---------------------------------------------------------------------------*/

.button, .btn {
    align-items: center;
    background: var(--black);
    border: 1px solid var(--black);
    border-radius: 0;
    color: var(--white);
    display: flex;
    max-width: max-content;
    padding: 15px 25px;
    width: 100%;
}

    .button span, .btn span {
        padding-right: 5px;
    }

    .btn.btn-black-orange {
        background: var(--black);
        color: var(--orange)
    }

        .btn.btn-black-orange:active,
        .btn.btn-black-orange:focus,
        .btn.btn-black-orange:hover {
            background: var(--orange);
            color: var(--black);
        }

    .btn.btn-orange {
        background: var(--orange);
        border: 1px solid var(--orange);
        color: var(--white);
    }

        .btn.btn-orange:active,
        .btn.btn-orange:focus,
        .btn.btn-orange:hover {
            background: var(--white);
            color: var(--orange);
        }

    .btn.btn-light-orange {
        background: var(--light-orange);
        border: 1px solid var(--light-orange);
        color: var(--white);
    }

        .btn.btn-light-orange:active,
        .btn.btn-light-orange:focus,
        .btn.btn-light-orange:hover {
            background: var(--white);
            color: var(--light-orange);
        }

    .btn.banner_btn {
    }

        .btn.banner_btn:active,
        .btn.banner_btn:focus,
        .btn.banner_btn:hover {
            background: var(--white);
            border-color: var(--white);
            color: var(--orange);
        }


    .btn.btn-purple {
        background: var(--purple);
        border: 1px solid var(--purple);
        color: var(--white);
    }

        .btn.btn-purple:active,
        .btn.btn-purple:focus,
        .btn.btn-purple:hover {
            background: var(--white);
            color: var(--purple);
        }

/*---------------------------------------------------------------------------*/
/* Form Group styles */
/*---------------------------------------------------------------------------*/

.form-group {
}

    .form-group label {
        color: var(--orange);
        font-weight: 500;
    }

        .form-group label a {
            color: var(--orange);
            font-weight: 600;
        }

            .form-group label a:active,
            .form-group label a:focus,
            .form-group label a:hover {
                color: var(--purple);
                text-decoration: none;
            }

    .form-group input[type="checkbox"]::checked {
        background: var(--black);
    }

    .form-group input,
    .form-group textarea {
        background: var(--offwhite);
        border: 1px solid var(--orange);
        color: var(--black);
    }

        .form-group textarea::placeholder {
            color: #4d4d4d;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            background: var(--white);
            border: 1px solid var(--purple);
            box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(var(--purple-rgb),.6);
        }

    .form-group .form-control[disabled],
    .form-group .form-control[readonly],
    fieldset[disabled] .form-control {
        /*background-color: #e0e0e0;*/
        /*color: #333333;*/
        background-color: #c8c8c8;
        color: #4d4d4d;
    }

    .form-group .input-group.date .input-group-addon {
        border-color: var(--orange);
        background: var(--orange);
    }

        .form-group .input-group.date .input-group-addon .glyphicon {
            color: var(--white);
        }

/*---------------------------------------------------------------------------*/
/* Table styles */
/*---------------------------------------------------------------------------*/

table.table.table-striped {
}

table.table thead {
}

    table.table thead tr th {
        color: var(--orange);
    }

table.table tbody {
}

    table.table tbody tr td {
        font-weight: lighter;
    }

    table.table tbody tr:nth-of-type(odd) {
        background-color: rgba(var(--orange-rgb), 0.4);
    }

/*---------------------------------------------------------------------------*/
/* Pagination styles */
/*---------------------------------------------------------------------------*/

.pagination {
}

    .pagination li.disabled .aspNetDisabled {
        background: var(--light-orange);
    }

    .pagination li.active span.data_pager_current {
        background: var(--orange);
    }

    .pagination li a.data_pager_button {
        color: var(--orange);
    }

/*---------------------------------------------------------------------------*/
/* Sidemenu styles */
/*---------------------------------------------------------------------------*/

.side-menu {
}

    .side-menu h3 {
    }

        .side-menu h3 a {
            color: var(--orange);
            text-decoration: none;
            transition: 0.4s ease-in-out;
        }

            .side-menu h3 a:active,
            .side-menu h3 a:focus,
            .side-menu h3 a:hover {
                color: var(--light-orange);
            }

    .side-menu .standard_menu {
        list-style: none;
        padding: 0;
    }

        .side-menu .standard_menu li {
            position: relative;
        }

            .side-menu .standard_menu li a {
                /*border-bottom: 1px solid var(--orange);*/
                color: var(--orange);
                /*background-color: rgba(var(--orange-rgb), 0.4);*/
                display: flex;
                font-weight: 500;
                padding: 10px;
                text-decoration: none;
                transition: 0.4s ease-in-out;
                width: 100%;
            }

                .side-menu .standard_menu li a b {
                    display: none !important;
                }

                .side-menu .standard_menu li a::after {
                    content: '';
                    background: linear-gradient(to left, var(--orange) 50%, var(--white) 50%) right;
                    background-size: 200%;
                    bottom: 0;
                    display: flex;
                    height: 2px;
                    left: 0;
                    margin: 0 auto;
                    /*padding: 0 15px;*/
                    position: absolute;
                    right: 0;
                    transition: all ease-in-out 0.5s;
                    width: 100%;
                }

                .side-menu .standard_menu li a:active,
                .side-menu .standard_menu li a:focus,
                .side-menu .standard_menu li a:hover {
                    background: var(--orange);
                    color: var(--white);
                }

                    .side-menu .standard_menu li a:active::after,
                    .side-menu .standard_menu li a:focus::after,
                    .side-menu .standard_menu li a:hover::after {
                        background-position: left;
                    }
