:root {
    --white: #ffffff;
    --offwhite: #f7f7f7;
    --black: #000000;
    --light-grey: #f7f7f7;
    --dark-grey: #666a6c;
    --primary: #0097b2;
    --secondary: #014c7c;
    --footerBlue: #13395c;
    --gold: #d6bb6d;
    --font-primary: "Nunito", Sans-Serif;
    --form-color: var(--dark-blue);
    --form-color-focus: var(--light-blue);
    --title-blue: #5C72B5;
    --title-grey: #666666;
}

h1 {
    margin: 1.5rem 0rem;
    color: #5C72B5;
    font-weight: normal;
    font-size: 2.6em;
    line-height: 1.05em;
}

h2 {
    margin: 1.5rem 0rem 1rem 0rem;
    color: var(--black);
    font-weight: normal;
    font-size: 1.8em;
    line-height: 1.25em;
}

h3 {
    margin: 1.25rem 0rem 1rem 0rem;
    color: #666666;
    /*font-weight: bold;*/
    font-size: 1.5em;
    line-height: 1.5em;
}

h4 {
    margin: 1.25rem 0rem 1rem 0rem;
    font-weight: normal;
    font-size: 1.4em;
    line-height: 1em;
}

h5 {
    font-size: 1.3em;
    line-height: 1em;
}

h6 {
    font-size: 1.2em;
    line-height: 1em;
}

h1.alt {
    color: var(--title-grey);
}

h2.alt {
    color: var(--title-grey);
}

h3.alt {
    color: var(--title-blue);
}

h4.alt {
    color: var(--title-blue);
}

h5.alt {
    color: var(--title-blue);
}

h6.alt {
    color: var(--title-blue);
}

p {
    margin: 1rem 0rem;
}

    h1:first-child,
    h2:first-child,
    h3:first-child,
    h4:first-child,
    p:first-child {
        margin-top: 0px;
    }

    h1:last-child,
    h2:last-child,
    h3:last-child,
    h4:last-child,
    p:last-child {
        margin-bottom: 0px;
    }

a:link,
a:active,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Sticky Quote Box */
.sticky-quote-box {
    position: fixed;
    right: 0;
    top: 42%;
    transform: translateY(-50%);
    z-index: 1000;
    overflow: visible;
    transition: transform 0.3s ease;
}

.sticky-quote-box:hover {
    transform: translateY(-50%) translateX(0);
}

.sticky-quote-box .btn.gold-btn {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 250px;
    min-height: 150px;
    max-width: none;
    max-height: none;
    height: auto;
    padding: 24px 68px 28px 24px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    background-color: var(--gold);
    border: none;
    border-radius: 8px 0 0 8px;
    white-space: normal;
    box-shadow: -2px 3px 8px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}

.sticky-quote-box .btn.gold-btn:hover {
    background-color: var(--gold);
    color: var(--white);
    text-decoration: none;
}

.sticky-quote-box .btn.gold-btn::before {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 8px;
    width: 46px;
    height: 46px;
    background: var(--secondary);
    border-radius: 50%;
}

.sticky-quote-box .btn.gold-btn::after {
    content: "";
    position: absolute;
    right: 34px;
    bottom: 23px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 12px solid var(--white);
}

@media (max-width: 767px) {
    .sticky-quote-box {
        display: none; /* Hide on mobile if it interferes with UI */
    }
}

a img {
    border: 0px;
}

/*a.pdf {
    display: inline-block;
    padding-left: 22px;
    background: url('../../images/pdf.png') left 2px no-repeat;
}

a.word {
    display: inline-block;
    padding-left: 22px;
    background: url('../../images/doc.png') left 2px no-repeat;
}*/

a.pdf,
a.word,
a.ppt,
a.sheet,
a.audio,
a.mobile,
a.email,
a.video,
a.document,
a.website,
a.link {
    color: var(--secondary);
    padding-left: 8px;
}

    a.pdf::before, a.word::before, a.ppt::before, a.sheet::before, a.audio::before, a.mobile::before, a.email::before, a.video::before, a.document::before, a.website::before, a.link::before {
        display: inline-block;
        font-family: bootstrap-icons !important;
        font-style: normal;
        font-weight: 400 !important;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        vertical-align: -0.24em;
        position: relative;
        left: -8px;
        font-size: 1.1em;
        transition: all .3s ease;
    }

    a.pdf::before {
        content: "\F63D";
        color: #DA291C;
    }

    a.word::before {
        content: "\F38C";
        color: #4c92fd;
    }

    a.ppt::before {
        content: "\F380";
        color: #DA5A1C;
    }

    a.sheet::before {
        content: "\F388";
        color: #0E8256;
    }

    a.audio::before {
        content: "\F37A";
    }

    a.mobile::before {
        content: "\F5C1";
    }

    a.email::before {
        content: "\F84C";
    }

    a.website::before {
        content: "\F3EF";
    }

    a.link::before {
        content: "\F471";
    }


    a.pdf:active::before,
    a.pdf:focus::before,
    a.pdf:hover::before,
    a.pdf:active,
    a.pdf:focus,
    a.pdf:hover,
    a.word:active::before,
    a.word:focus::before,
    a.word:hover::before,
    a.word:active,
    a.word:focus,
    a.word:hover,
    a.ppt:active::before,
    a.ppt:focus::before,
    a.ppt:hover::before,
    a.ppt:active,
    a.ppt:focus,
    a.ppt:hover,
    a.sheet:active::before,
    a.sheet:focus::before,
    a.sheet:hover::before,
    a.sheet:active,
    a.sheet:focus,
    a.sheet:hover,
    a.audio:active,
    a.audio:focus,
    a.audio:hover,
    a.mobile:active,
    a.mobile:focus,
    a.mobile:hover,
    a.email:active,
    a.email:focus,
    a.email:hover,
    a.video:active,
    a.video:focus,
    a.video:hover,
    a.document:active,
    a.document:focus,
    a.document:hover,
    a.website:active,
    a.website:focus,
    a.website:hover,
    a.link:active,
    a.link:focus,
    a.link:hover {
        color: var(--gold);
    }
/*-----------------------------------------------------------------------------------------------*/
.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;
}

.spacer {
    margin-top: 15px;
    margin-bottom: 15px;
}

.spacer_top {
    margin-top: 15px;
}

.spacer_bottom {
    margin-bottom: 15px;
}

.padder {
    padding-left: 15px;
    padding-right: 15px;
}

.padder_left {
    padding-left: 15px;
}

.padder_right {
    padding-right: 15px;
}

.nopadding {
    padding: 0px !important;
}

.nopadding_right {
    padding-right: 0px !important;
}

.nopadding_left {
    padding-left: 0px !important;
}

.push_right {
    float: right;
}

.push_left {
    float: left;
}

img.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 4px;
    display: block;
}

img.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 4px;
    display: block;
}

img.aligncenter {
    text-align: center;
    margin: 1em auto 5px auto;
    clear: both;
    display: block;
}

img.fullwidth {
    margin: 0px;
    display: block;
}
/*-----------------------------------------------------------------------------------------------*/

html {
    font-size: 16px;
}

body {
    margin: 0px;
    color: #666666;
    font-size: 1rem;
    line-height: 1.5em;
    /*font-family: Arial, Helvetica, Tahoma, Geneva, Verdana, Sans-Serif;*/
}

    body > form {
        margin: 0px;
    }


html, body {
    font-family: var(--font-primary);
}

.blur {
    -webkit-filter: blur(7px);
    -moz-filter: blur(7px);
    filter: blur(7px);
}
/*-----------------------------------------------------------------------------------------------*/
/* Header styles */
/*-----------------------------------------------------------------------------------------------*/

#header {
    padding: 45px 0px 0px;
    /*padding: 66px 0px 0px;*/
}

    #header .header_inner {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
    }

        #header .header_inner .header_inner_left {
            display: flex;
            flex-direction: column;
        }

            #header .header_inner .header_inner_left .header_inner_left-content {
                display: block;
                min-height: 44px;
                min-width: 150px;
            }

                #header .header_inner .header_inner_left .header_inner_left-content p {
                    margin: 0;
                }

                #header .header_inner .header_inner_left .header_inner_left-content span,
                #header .header_inner .header_inner_left .header_inner_left-content a {
                    color: var(--black);
                    display: block;
                    /*font-family: var(--font-primary);*/
                    font-size: 40px;
                    font-weight: 700;
                    line-height: 1.1;
                    text-align: left;
                    text-transform: uppercase;
                }

                    #header .header_inner .header_inner_left .header_inner_left-content a:active,
                    #header .header_inner .header_inner_left .header_inner_left-content a:focus,
                    #header .header_inner .header_inner_left .header_inner_left-content a:hover {
                        color: var(--primary);
                        text-decoration: none;
                    }

        #header .header_inner .header_inner_right {
        }

            #header .header_inner .header_inner_right .header_inner_right__locations {
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
            }

            #header .header_inner .header_inner_right .header_inner_right_inner {
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
                margin-top: 50px;
            }

                #header .header_inner .header_inner_right .header_inner_right_inner .bi.bi-search {
                    font-size: 24px;
                }

                #header .header_inner .header_inner_right .header_inner_right_inner .open-search {
                    margin-left: 25px;
                }

    #header .container {
        position: relative;
    }

    #header .logo {
        /*display: block;*/
        /*float: left;*/
        line-height: 0px;
    }

        #header .logo img {
            height: auto;
            width: 100%;
            margin-bottom: 20px;
            max-height: 147px;
            max-width: 406px;
        }
/*-----------------------------------------------------------------------------------------------*/

#content {
    /*margin-top: 30px;*/
}

.flex.even_items .flex-item {
    flex: 1 1 0px;
}


/*#region -- Text Blocks */

.text_block {
    --padding: 70px;
    --margin: 60px;
    width: 100%;
    margin-top: var(--margin);
    margin-bottom: var(--margin);
}


    .text_block .text {
        background: var(--light-grey);
    }

    .text_block.dark-blue .text,
    .text_block[data-color="dark-blue"] .text {
        background: var(--primary);
    }

        .text_block.dark-blue .text p,
        .text_block[data-color="dark-blue"] .text p {
            color: var(--white);
        }

        .text_block.dark-blue .text h1,
        .text_block[data-color="dark-blue"] .text h1,
        .text_block.dark-blue .text h2,
        .text_block[data-color="dark-blue"] .text h2,
        .text_block.dark-blue .text h3,
        .text_block[data-color="dark-blue"] .text h3,
        .text_block.dark-blue .text h4,
        .text_block[data-color="dark-blue"] .text h4,
        .text_block.dark-blue .text h5,
        .text_block[data-color="dark-blue"] .text h5,
        .text_block.dark-blue .text h6,
        .text_block[data-color="dark-blue"] .text h6 {
            color: var(--secondary);
        }

    .text_block.light-blue .text,
    .text_block[data-color="light-blue"] .text {
        background: var(--secondary);
    }

        .text_block.light-blue .text p,
        .text_block[data-color="light-blue"] .text p {
            color: var(--white);
        }

        .text_block.light-blue .text h1,
        .text_block[data-color="light-blue"] .text h1,
        .text_block.light-blue .text h2,
        .text_block[data-color="light-blue"] .text h2,
        .text_block.light-blue .text h3,
        .text_block[data-color="light-blue"] .text h3,
        .text_block.light-blue .text h4,
        .text_block[data-color="light-blue"] .text h4,
        .text_block.light-blue .text h5,
        .text_block[data-color="light-blue"] .text h5,
        .text_block.light-blue .text h6,
        .text_block[data-color="light-blue"] .text h6 {
            color: var(--gold);
        }

    .text_block.grey .text,
    .text_block[data-color="grey"] .text {
        background: var(--dark-grey);
    }

        .text_block.grey .text p,
        .text_block[data-color="grey"] .text p {
            color: var(--white);
        }

        .text_block.grey .text h1,
        .text_block[data-color="grey"] .text h1,
        .text_block.grey .text h2,
        .text_block[data-color="grey"] .text h2,
        .text_block.grey .text h3,
        .text_block[data-color="grey"] .text h3,
        .text_block.grey .text h4,
        .text_block[data-color="grey"] .text h4,
        .text_block.grey .text h5,
        .text_block[data-color="grey"] .text h5,
        .text_block.grey .text h6,
        .text_block[data-color="grey"] .text h6 {
            color: var(--secondary);
        }

    .text_block .text .manual_container_left {
        padding: var(--padding) 30px var(--padding) 30px;
    }

    .text_block .image {
        margin-top: -15px;
        margin-bottom: -15px;
        background-size: cover;
        background-position: center;
    }

    .text_block.style_2 .text,
    .text_block[data-style="two"] .text {
        z-index: 2;
    }

    .text_block.style_2 .image,
    .text_block[data-style="two"] .image {
        margin-left: -100px;
    }

    .text_block .image .text_block_image,
    .text_block .image .text_block_image p,
    .text_block .image .text_block_image p img {
        height: 100%;
    }

        .text_block .image .text_block_image p img {
            object-fit: cover;
            height: 100% !important;
            width: 100% !important;
        }

    .text_block + .text_block {
        margin-top: 100px;
    }

/*#region Cards*/

.widget_cards .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

    .widget_cards .cards .card {
        flex: 1 1 0px;
        padding: 15px;
    }

.widget_cards[data-color="grey"] .card {
    background: var(--dark-grey);
}

    .widget_cards[data-color="grey"] .card h1,
    .widget_cards[data-color="grey"] .card h2,
    .widget_cards[data-color="grey"] .card h3,
    .widget_cards[data-color="grey"] .card h4,
    .widget_cards[data-color="grey"] .card h5,
    .widget_cards[data-color="grey"] .card h6 {
        color: var(--secondary);
    }

    .widget_cards[data-color="grey"] .card p {
        color: var(--white);
    }
/*.widget_cards[data-color="warmgrey"] .card {
    background: var(--warm-grey);
}*/
/*
.widget_cards[data-color="gradient"] .card {
    background: linear-gradient(var(--dark-blue), var(--light-blue));
}

    .widget_cards[data-color="gradient"] .card h1,
    .widget_cards[data-color="gradient"] .card h2,
    .widget_cards[data-color="gradient"] .card h3,
    .widget_cards[data-color="gradient"] .card h4,
    .widget_cards[data-color="gradient"] .card h5,
    .widget_cards[data-color="gradient"] .card h6,
    .widget_cards[data-color="gradient"] .card p {
        color: var(--white);
    }
*/


.widget_cards[data-color="dark-blue"] .card {
    background: var(--primary);
}

    .widget_cards[data-color="dark-blue"] .card h1,
    .widget_cards[data-color="dark-blue"] .card h2,
    .widget_cards[data-color="dark-blue"] .card h3,
    .widget_cards[data-color="dark-blue"] .card h4,
    .widget_cards[data-color="dark-blue"] .card h5,
    .widget_cards[data-color="dark-blue"] .card h6,
    .widget_cards[data-color="dark-blue"] .card p {
        color: var(--white);
    }

        .widget_cards[data-color="dark-blue"] .card h1 a,
        .widget_cards[data-color="dark-blue"] .card h2 a,
        .widget_cards[data-color="dark-blue"] .card h3 a,
        .widget_cards[data-color="dark-blue"] .card h4 a,
        .widget_cards[data-color="dark-blue"] .card h5 a,
        .widget_cards[data-color="dark-blue"] .card h6 a,
        .widget_cards[data-color="dark-blue"] .card p a {
            color: var(--white);
        }

            .widget_cards[data-color="dark-blue"] .card h1 a:active,
            .widget_cards[data-color="dark-blue"] .card h1 a:focus,
            .widget_cards[data-color="dark-blue"] .card h1 a:hover,
            .widget_cards[data-color="dark-blue"] .card h2 a:active,
            .widget_cards[data-color="dark-blue"] .card h2 a:focus,
            .widget_cards[data-color="dark-blue"] .card h2 a:hover,
            .widget_cards[data-color="dark-blue"] .card h3 a:active,
            .widget_cards[data-color="dark-blue"] .card h3 a:focus,
            .widget_cards[data-color="dark-blue"] .card h3 a:hover,
            .widget_cards[data-color="dark-blue"] .card h4 a:active,
            .widget_cards[data-color="dark-blue"] .card h4 a:focus,
            .widget_cards[data-color="dark-blue"] .card h4 a:hover,
            .widget_cards[data-color="dark-blue"] .card h5 a:active,
            .widget_cards[data-color="dark-blue"] .card h5 a:focus,
            .widget_cards[data-color="dark-blue"] .card h5 a:hover,
            .widget_cards[data-color="dark-blue"] .card h6 a:active,
            .widget_cards[data-color="dark-blue"] .card h6 a:focus,
            .widget_cards[data-color="dark-blue"] .card h6 a:hover,
            .widget_cards[data-color="dark-blue"] .card p a:active,
            .widget_cards[data-color="dark-blue"] .card p a:focus,
            .widget_cards[data-color="dark-blue"] .card p a:hover {
                color: var(--secondary);
            }


.widget_cards[data-color="light-blue"] .card {
    background: var(--secondary);
}

    .widget_cards[data-color="light-blue"] .card h1,
    .widget_cards[data-color="light-blue"] .card h2,
    .widget_cards[data-color="light-blue"] .card h3,
    .widget_cards[data-color="light-blue"] .card h4,
    .widget_cards[data-color="light-blue"] .card h5,
    .widget_cards[data-color="light-blue"] .card h6 {
        color: var(--primary);
    }

    .widget_cards[data-color="light-blue"] .card p {
        color: var(--white);
    }


.widget_cards[data-color="orange"] .card {
    background: var(--orange);
}

/*.widget_cards[data-color="light-blue"] .card h1,
    .widget_cards[data-color="light-blue"] .card h2,
    .widget_cards[data-color="light-blue"] .card h3,
    .widget_cards[data-color="light-blue"] .card h4,
    .widget_cards[data-color="light-blue"] .card h5,
    .widget_cards[data-color="light-blue"] .card h6,
    .widget_cards[data-color="light-blue"] .card p {
        color: var(--white);
    }*/

.widget_cards[data-dropshadow="true"] .card {
    box-shadow: rgba(0,0,0,0.1) 5px 5px 5px;
}

.widget_cards[data-borders="true"] .card {
    border-radius: 10px;
}

.widget_cards[data-amount="two"] .card.two,
.widget_cards[data-amount="three"] .card.two,
.widget_cards[data-amount="four"] .card.two {
    display: flex !important;
}

.widget_cards[data-amount="three"] .card.three,
.widget_cards[data-amount="four"] .card.three {
    display: flex !important;
}

.widget_cards[data-amount="four"] .card.four {
    display: flex !important;
}

.notice {
    background-color: var(--light-grey);
    border-bottom: 3px solid var(--primary);
    font-weight: 500;
}

.well {
    background-image: none;
    background: var(--light-grey);
    box-shadow: none;
    border: none;
    border-radius: 15px;
}


/*#region -- Spacings/Elements*/
.flex {
    display: flex;
}

    .flex::before, .flex::after {
        content: none;
    }

    .flex.flex-wrap {
        flex-wrap: wrap;
    }

    .flex.center {
        justify-content: center;
        align-items: center;
    }

    .flex.space-between {
        justify-content: space-between;
    }

    .flex.justify-end {
        justify-content: end;
    }

    .flex.align-center {
        align-items: center;
    }

    .flex.align-end {
        align-items: end;
    }

    .flex.even_items .flex-item {
        flex: 1 1 0px;
    }

    .flex.col {
        flex-flow: column;
    }

    .flex.gap_1 {
        gap: 1em;
    }

    .flex.gap_2 {
        gap: 1em 2em;
    }

    .flex.wrap {
        flex-wrap: wrap;
    }

    .flex .grow {
        flex-grow: 1;
    }


    .flex > .form-group {
        margin-bottom: 0;
    }

/*#region -- Tables */
.table,
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > th,
.table > thead > tr > td {
    /*border-color: var(--text-grey) !important;*/
    border-color: var(--light-grey) !important;
}

    .table > thead > tr > th {
        background: var(--secondary);
        /*color: var(--light-blue);*/
        color: var(--white);
        font-weight: 500;
    }

    .table > tbody > tr > td a {
        font-weight: 600;
    }

        .table > tbody > tr > td a i {
            margin-right: 5px;
        }

    .table.dark-blue_header > thead > tr > th {
        background: var(--primary);
        color: var(--secondary);
    }

    .table.grey_header > thead > tr > th {
        background: var(--dark-grey);
        color: var(--white);
    }

.table-responsive .table {
}

    .table-responsive .table > thead > tr > th {
        color: var(--white);
    }

    .table-responsive .table thead tr th:last-child {
        text-align: right;
    }

    .table-responsive .table tbody tr td:last-child {
        text-align: right;
    }

    .table-responsive .table .btn {
        /*min-width: auto;*/
        min-width: 100px;
    }

    .table-responsive .table td:first-child i {
        padding-right: 10px;
    }


/*-----------------------------------------------------------------------------------------------*/

.btn {
    display: inline-flex;
    font-size: 18px;
    height: 100%;
    max-height: 47px;
    padding: 5px 15px;
    max-width: fit-content;
    transition: 0.3s ease-in-out;
}

    .btn.gold-btn {
        background-color: var(--gold);
        border-radius: 7px;
        color: var(--white);
        text-transform: uppercase;
    }

        .btn.gold-btn:active,
        .btn.gold-btn:focus,
        .btn.gold-btn:hover {
            background-color: var(--white);
            /*border-radius: 7px;*/
            color: var(--gold);
            /*text-transform: uppercase;*/
        }


    .btn.blue-btn {
        background-color: var(--secondary);
        border-radius: 7px;
        color: var(--white);
        text-transform: uppercase;
    }

        .btn.blue-btn:active,
        .btn.blue-btn:focus,
        .btn.blue-btn:hover {
            background-color: var(--white);
            color: var(--secondary);
        }
/*-----------------------------------------------------------------------------------------------*/

.lower_banner {
    height: 250px;
    overflow: hidden;
}

    .lower_banner .container {
        height: 100%;
        position: relative;
        text-align: center;
    }

    .lower_banner img {
        width: auto !important;
        height: 100% !important;
        max-width: none !important;
    }

    .lower_banner .container h1,
    .lower_banner .container p {
        position: absolute;
        left: 15px;
        bottom: 15px;
        margin: 0px;
        padding: 15px;
        color: #FFFFFF;
        font-weight: normal;
        font-size: 2.6em;
        line-height: 1.05em;
        background-color: var(--primary);
    }
/*-----------------------------------------------------------------------------------------------*/

.breadcrumb {
    padding: 0px;
    background-color: transparent;
}

    .breadcrumb > li + li:before {
        color: #000000;
    }

    .breadcrumb > .active {
        color: #000000;
    }
/*-----------------------------------------------------------------------------------------------*/

.cyan-background {
    background: var(--primary);
    padding: 55px 0 50px;
}

    .cyan-background h1,
    .cyan-background h2,
    .cyan-background h3,
    .cyan-background h4,
    .cyan-background h5,
    .cyan-background h6,
    .cyan-background a,
    .cyan-background p {
        color: var(--white);
    }

    .cyan-background h2 {
        line-height: 1;
    }

    .cyan-background a {
        text-decoration: none;
    }

        .cyan-background a:active,
        .cyan-background a:focus,
        .cyan-background a:hover {
            color: var(--secondary);
        }

.intro_section {
}

    .intro_section h2:first-child {
        font-size: 42px;
    }

    .intro_section a.btn.gold-btn {
        max-height: 100%;
        font-size: 35px;
    }

    .intro_section .intro_section_bottom_left {
        margin-top: 10px;
    }
/*-----------------------------------------------------------------------------------------------*/
.double_blocks_section {
}


    .double_blocks_section .double_blocks_block {
        background: var(--secondary);
        border-radius: 15px;
        padding: 0 0 20px;
    }

        .double_blocks_section .double_blocks_block:first-child {
            margin-bottom: 20px;
        }

        .double_blocks_section .double_blocks_block h1,
        .double_blocks_section .double_blocks_block h2,
        .double_blocks_section .double_blocks_block p {
            color: var(--white);
        }

        .double_blocks_section .double_blocks_block .double_blocks_block_top {
            align-items: center;
            display: flex;
            flex-direction: row;
            /*justify-content: space-between;*/
            justify-content: space-around;
        }

            .double_blocks_section .double_blocks_block .double_blocks_block_top img {
                max-width: 30%;
            }

            .double_blocks_section .double_blocks_block .double_blocks_block_top h2 {
                /*font-size: 40px;*/
                font-size: 24px;
                line-height: 1;
                padding-right: 30px;
                margin: 0;
            }

        .double_blocks_section .double_blocks_block .double_blocks_block_content {
            padding: 0 20px;
        }

            .double_blocks_section .double_blocks_block .double_blocks_block_content p a {
                color: var(--white);
            }

                .double_blocks_section .double_blocks_block .double_blocks_block_content p a:active,
                .double_blocks_section .double_blocks_block .double_blocks_block_content p a:focus,
                .double_blocks_section .double_blocks_block .double_blocks_block_content p a:hover {
                    color: var(--secondary);
                }

        .double_blocks_section .double_blocks_block .double_blocks_block_link {
            display: flex;
            flex-direction: row;
            justify-content: flex-end;
            margin-top: 30px;
            padding: 0 30px;
        }

/*   .double_blocks_section .double_blocks_block .double_blocks_block_link a {
                align-items: center;
                justify-content: center;
                background: var(--gold);
                border-radius: 46px;
                color: var(--black);
                display: flex;
                height: 100%;
                max-height: 46px;
                max-width: 46px;
                min-height: 46px;
                min-width: 46px;
                text-decoration: none;
                width: 100%;
            }

                .double_blocks_section .double_blocks_block .double_blocks_block_link a:active,
                .double_blocks_section .double_blocks_block .double_blocks_block_link a:focus,
                .double_blocks_section .double_blocks_block .double_blocks_block_link a:active {
                    text-decoration: none;
                }*/

@media screen and (min-width : 767px) {
    /*.double_blocks_section .double_blocks_block .double_blocks_block_top img {
        max-width: 100%;
    }

    .double_blocks_section .double_blocks_block .double_blocks_block_top h2 {
        font-size: 40px;
        line-height: 1.4;
    }*/
}

@media screen and (min-width : 1440px) {
    .double_blocks_section .double_blocks_block .double_blocks_block_top img {
        max-width: 100%;
    }

    .double_blocks_section .double_blocks_block .double_blocks_block_top h2 {
        font-size: 40px;
        line-height: 1.4;
    }
}
/*-----------------------------------------------------------------------------------------------*/

.main-title-block {
    margin: 30px 0;
}

    .main-title-block h1,
    .main-title-block h2,
    .main-title-block h3,
    .main-title-block h4,
    .main-title-block h5,
    .main-title-block h6 {
        color: var(--black);
    }

.main-title {
    color: var(--black);
    font-size: 27px;
    line-height: 36px;
    text-transform: uppercase;
}

.editable_section {
}

    .editable_section .btn.blue-btn {
        text-transform: none;
    }
/*-----------------------------------------------------------------------------------------------*/
/* Footer styles */
/*-----------------------------------------------------------------------------------------------*/
#footer {
    margin-top: 50px;
    padding: 30px 0px;
    color: #FFFFFF;
    font-size: 0.8em;
    background-color: var(--footerBlue);
}

    #footer .footer_item {
        margin-right: 15px;
    }

        #footer .footer_item:last-child {
            margin-right: 0;
        }

    #footer.footer .footer-top {
        margin-bottom: 60px;
    }

        #footer.footer .footer-top .footer-text p {
            font-size: 16px;
        }

    #footer.footer .left p,
    #footer.footer .right p {
        /*font-size: 0.8em;*/
    }

    #footer.footer .footer-top .footer-logo {
        align-items: center;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    #footer.footer .right {
        text-align: right;
    }

.page_home #footer {
    margin-top: 20px;
}

#footer .footer_separator {
    padding: 0px 10px;
}

#footer .footer_item {
    padding-right: 15px;
}

#footer a {
    color: #FFFFFF;
}

.master_lower #content {
    margin-top: 30px;
}

a:link, a:active, a:visited, a:focus {
    outline: none;
}


a.circle {
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 46px;
    color: var(--black);
    display: flex;
    font-size: 0;
    height: 100%;
    max-height: 46px;
    max-width: 46px;
    min-height: 46px;
    min-width: 46px;
    position: relative;
    text-decoration: none;
    width: 100%;
}

    a.circle::before {
        content: "\e250";
        font-family: 'Glyphicons Halflings';
        color: var(--black);
        font-size: 20px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    a.circle:active,
    a.circle:focus,
    a.circle:active {
        text-decoration: none;
    }
